This commit is contained in:
2018-12-13 17:46:03 +01:00
parent 982e82468a
commit 41403f5fdd
3 changed files with 3 additions and 1 deletions

1
go.mod Normal file
View File

@@ -0,0 +1 @@
module git.deineagentur.com/DeineAgenturUG/go-xmlsec2

View File

@@ -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

View File

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