blob: 8dca0ab7bff9e720e126e571b5f1baa943a97907 (
plain)
1
2
3
4
5
6
7
8
|
package libebics
import "encoding/xml"
type DSIGX509Data struct {
XMLName xml.Name `xml:"ds:X509Data"`
DSIGX509Certificate string `xml:"ds:X509Certificate"` // TODO Properly marshal this
}
|