aboutsummaryrefslogtreecommitdiff
path: root/cmd/sigsum-debug/leaf/hash/hash.go
blob: 81531b54565e298dc9f983fc41b6982e24845660 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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, optKeyHash, optSignature string, optShardHint uint64) error {
	if len(args) != 0 {
		return fmt.Errorf("trailing arguments: %s", strings.Join(args, ", "))
	}
	data, err := fmtio.BytesFromStdin()
	if err != nil {
		return fmt.Errorf("read stdin: %w", err)
	}
	keyHash, err := fmtio.KeyHashFromHex(optKeyHash)
	if err != nil {
		return fmt.Errorf("parse key hash: %w", err)
	}
	sig, err := fmtio.SignatureFromHex(optSignature)
	if err != nil {
		return fmt.Errorf("parse signature: %w", err)
	}

	message := types.HashFn(data)
	leaf := types.Leaf{
		Statement: types.Statement{
			ShardHint: optShardHint,
			Checksum:  *types.HashFn(message[:]),
		},
		Signature: sig,
		KeyHash:   keyHash,
	}
	leafHash := types.LeafHash(leaf.ToBinary())

	fmt.Printf("%s\n", hex.Serialize(leafHash[:]))
	return nil
}