From 41403f5fdd520e2ca1bae367567459cda4e45157 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20Fr=C3=B6hle?= Date: Thu, 13 Dec 2018 17:46:03 +0100 Subject: [PATCH] update --- go.mod | 1 + signature.go | 1 + xmlenc/decrypt_test.go | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 go.mod diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..594e04f --- /dev/null +++ b/go.mod @@ -0,0 +1 @@ +module git.deineagentur.com/DeineAgenturUG/go-xmlsec2 diff --git a/signature.go b/signature.go index 7eb3ab1..518a7f6 100644 --- a/signature.go +++ b/signature.go @@ -40,6 +40,7 @@ type SignedInfo struct { // buf, _ = Sign(key, buf) // +// Signature represents Signature type Signature struct { XMLName xml.Name `xml:"http://www.w3.org/2000/09/xmldsig# Signature"` SignedInfo SignedInfo diff --git a/xmlenc/decrypt_test.go b/xmlenc/decrypt_test.go index 37bb23d..fa57df8 100644 --- a/xmlenc/decrypt_test.go +++ b/xmlenc/decrypt_test.go @@ -8,7 +8,7 @@ import ( . "gopkg.in/check.v1" - "github.com/crewjam/go-xmlsec" + xmlsec "git.deineagentur.com/DeineAgenturUG/go-xmlsec" "github.com/ma314smith/signedxml" )