aboutsummaryrefslogtreecommitdiff
path: root/cmd/sigsum-debug/key/hash/hash.go
diff options
context:
space:
mode:
authorRasmus Dahlberg <rasmus@mullvad.net>2022-04-23 18:19:25 +0200
committerRasmus Dahlberg <rasmus@mullvad.net>2022-04-23 18:29:31 +0200
commit047500ae23a12469ce3e458c6a58a642716041b7 (patch)
treedd8ab39910e623ff756532bd892fb2f8d2e5fef6 /cmd/sigsum-debug/key/hash/hash.go
parent4fc0ff2ec2f48519ee245d6d7edee1921cb3b8bc (diff)
add drafty tool named sigsum-debug
Meant to be used for debugging and tests only. Replaces cmd/tmp/* in log-go, expect for the DNS command which is redundant. Use `dig -t txt $domain_hint` to debug domain hints.
Diffstat (limited to 'cmd/sigsum-debug/key/hash/hash.go')
-rw-r--r--cmd/sigsum-debug/key/hash/hash.go29
1 files changed, 29 insertions, 0 deletions
diff --git a/cmd/sigsum-debug/key/hash/hash.go b/cmd/sigsum-debug/key/hash/hash.go
new file mode 100644
index 0000000..0431dfc
--- /dev/null
+++ b/cmd/sigsum-debug/key/hash/hash.go
@@ -0,0 +1,29 @@
+package hash
+
+import (
+ "fmt"
+ "strings"
+
+ "git.sigsum.org/sigsum-go/internal/fmtio"
+ "git.sigsum.org/sigsum-go/pkg/hex"
+ "git.sigsum.org/sigsum-go/pkg/types"
+)
+
+func Main(args []string) error {
+ if len(args) != 0 {
+ return fmt.Errorf("trailing arguments: %s", strings.Join(args, ", "))
+ }
+ s, err := fmtio.StringFromStdin()
+ if err != nil {
+ return fmt.Errorf("read stdin: %w", err)
+ }
+ pub, err := fmtio.PublicKeyFromHex(s)
+ if err != nil {
+ return fmt.Errorf("parse key: %w", err)
+ }
+
+ keyHash := types.HashFn(pub[:])
+
+ fmt.Printf("%s\n", hex.Serialize(keyHash[:]))
+ return nil
+}