aboutsummaryrefslogtreecommitdiff
path: root/cmd/sigsum-debug/leaf/verify/verify.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/sigsum-debug/leaf/verify/verify.go')
-rw-r--r--cmd/sigsum-debug/leaf/verify/verify.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/cmd/sigsum-debug/leaf/verify/verify.go b/cmd/sigsum-debug/leaf/verify/verify.go
new file mode 100644
index 0000000..a00791a
--- /dev/null
+++ b/cmd/sigsum-debug/leaf/verify/verify.go
@@ -0,0 +1,9 @@
+package verify
+
+import (
+ "fmt"
+)
+
+func Main(args []string, optPublicKey, optSignature string, optShardHint uint64) error {
+ return fmt.Errorf("TODO")
+}