From cc9bb6a069d62ed37b7f4866d6dfe37049dc1cf1 Mon Sep 17 00:00:00 2001 From: Rasmus Dahlberg Date: Sat, 23 Apr 2022 18:44:09 +0200 Subject: remove sigsum-debug (pending merge in sigsum-go) --- cmd/sigsum-debug/pubkey/pubkey.go | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 cmd/sigsum-debug/pubkey/pubkey.go (limited to 'cmd/sigsum-debug/pubkey') diff --git a/cmd/sigsum-debug/pubkey/pubkey.go b/cmd/sigsum-debug/pubkey/pubkey.go deleted file mode 100644 index 8f3b467..0000000 --- a/cmd/sigsum-debug/pubkey/pubkey.go +++ /dev/null @@ -1,28 +0,0 @@ -package pubkey - -import ( - "crypto/ed25519" - "fmt" - - "git.sigsum.org/sigsum-go/pkg/hex" - "git.sigsum.org/sigsum-tools-go/internal/util" -) - -func Main(_ []string) error { - b, err := util.HexFromStdin() - if err != nil { - return err - } - if len(b) != ed25519.PrivateKeySize { - return fmt.Errorf("pubkey: invalid key size %d", len(b)) - } - - priv := ed25519.PrivateKey(b) - pub, ok := priv.Public().(ed25519.PublicKey) - if !ok { - return fmt.Errorf("pubkey: must parse as ed25519") - } - - fmt.Printf("%s\n", hex.Serialize(pub[:])) - return nil -} -- cgit v1.2.3