aboutsummaryrefslogtreecommitdiff
path: root/type.go
diff options
context:
space:
mode:
authorRasmus Dahlberg <rasmus.dahlberg@kau.se>2020-10-21 14:58:19 +0200
committerRasmus Dahlberg <rasmus.dahlberg@kau.se>2020-10-21 14:58:19 +0200
commit3296d1013c54ff336ce43fab835489305f23cb01 (patch)
treea408d9d3efe1ea5ad6df193822345a33f499bf35 /type.go
parent3098faa9ed66a1ccd0fbcbae36dfbff6afd1d1a6 (diff)
added StFormat, StItem, and basic ChecksumV1 examples
Diffstat (limited to 'type.go')
-rw-r--r--type.go76
1 files changed, 75 insertions, 1 deletions
diff --git a/type.go b/type.go
index 140a698..e9b5ef2 100644
--- a/type.go
+++ b/type.go
@@ -1,3 +1,77 @@
package stfe
-// Leaf definition and such goes here
+import (
+ "fmt"
+
+ "encoding/base64"
+
+ "github.com/google/certificate-transparency-go/tls"
+)
+
+// StFormat defines a particular StItem type that is versioned
+type StFormat tls.Enum
+
+const (
+ StFormatReserved StFormat = 0
+ StFormatSignedTreeHeadV1 StFormat = 1
+ StFormatSignedDebugInfoV1 StFormat = 2
+ StFormatConsistencyProofV1 StFormat = 3
+ StFormatInclusionProofV1 StFormat = 4
+ StFormatChecksumV1 = 5
+)
+
+func (f StFormat) String() string {
+ switch f {
+ case StFormatReserved:
+ return "reserved"
+ case StFormatSignedTreeHeadV1:
+ return "signed_tree_head_v1"
+ case StFormatSignedDebugInfoV1:
+ return "signed_debug_info_v1"
+ case StFormatConsistencyProofV1:
+ return "consistency_proof_v1"
+ case StFormatInclusionProofV1:
+ return "inclusion_proof_v1"
+ case StFormatChecksumV1:
+ return "checksum_v1"
+ default:
+ return fmt.Sprintf("Unknown StFormat: %d", f)
+ }
+}
+
+// StItem references a versioned item based on a given format specifier.
+type StItem struct {
+ Format StFormat `tls:"maxval:65535"`
+ ChecksumV1 *ChecksumV1 `tls:"selector:Format,val:5"`
+ // TODO: add more items
+}
+
+func (i StItem) String() string {
+ switch i.Format {
+ case StFormatChecksumV1:
+ return fmt.Sprintf("%s %s", i.Format, *i.ChecksumV1)
+ default:
+ return fmt.Sprintf("unknown StItem: %s", i.Format)
+ }
+}
+
+// ChecksumV1 associates a package name with an arbitrary checksum value
+type ChecksumV1 struct {
+ Package []byte `tls:"minlen:0,maxlen:255"`
+ Checksum []byte `tls:"minlen:32,maxlen:255"`
+}
+
+// NewChecksumV1 creates a new StItem of type checksum_v1
+func NewChecksumV1(name string, checksum []byte) (StItem, error) {
+ return StItem{
+ Format: StFormatChecksumV1,
+ ChecksumV1: &ChecksumV1{
+ Package: []byte(name),
+ Checksum: checksum,
+ },
+ }, nil // TODO: error handling
+}
+
+func (i ChecksumV1) String() string {
+ return fmt.Sprintf("%v %v", string(i.Package), base64.StdEncoding.EncodeToString(i.Checksum))
+}