aboutsummaryrefslogtreecommitdiff
path: root/verify.go
diff options
context:
space:
mode:
Diffstat (limited to 'verify.go')
-rw-r--r--verify.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/verify.go b/verify.go
index fbcf6df..50bd923 100644
--- a/verify.go
+++ b/verify.go
@@ -30,3 +30,7 @@ func (sdi *SignedDebugInfoV1) Verify(scheme tls.SignatureScheme, publicKey, mess
return fmt.Errorf("Unsupported public key: %s", t)
}
}
+
+func (sth *SignedTreeHeadV1) Verify(scheme tls.SignatureScheme, publicKey []byte) error {
+ return fmt.Errorf("TODO: verify signature")
+}