summaryrefslogtreecommitdiff
path: root/DSIG.go
diff options
context:
space:
mode:
authorMerlin Scholz <merlin@scholz.ruhr>2026-05-13 20:15:33 +0200
committerMerlin Scholz <merlin@scholz.ruhr>2026-05-13 20:15:33 +0200
commit60597296eb8b9df9ae8e6e77e0f44929c5ef2970 (patch)
treedc5bba83c3fd2269b6fcf1874329d1d5e980e4c5 /DSIG.go
parent57c9ff7ab110dc22c84993d54b52554bd79b86f1 (diff)
Move type definitions to proper files and rename according to ebics schema
Diffstat (limited to 'DSIG.go')
-rw-r--r--DSIG.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/DSIG.go b/DSIG.go
new file mode 100644
index 0000000..8dca0ab
--- /dev/null
+++ b/DSIG.go
@@ -0,0 +1,8 @@
+package libebics
+
+import "encoding/xml"
+
+type DSIGX509Data struct {
+ XMLName xml.Name `xml:"ds:X509Data"`
+ DSIGX509Certificate string `xml:"ds:X509Certificate"` // TODO Properly marshal this
+}