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" )