aboutsummaryrefslogtreecommitdiff
path: root/cmd/sigsum-debug/leaf/hash/hash.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/sigsum-debug/leaf/hash/hash.go')
-rw-r--r--cmd/sigsum-debug/leaf/hash/hash.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/sigsum-debug/leaf/hash/hash.go b/cmd/sigsum-debug/leaf/hash/hash.go
index 9bc845e..81531b5 100644
--- a/cmd/sigsum-debug/leaf/hash/hash.go
+++ b/cmd/sigsum-debug/leaf/hash/hash.go
@@ -26,11 +26,11 @@ func Main(args []string, optKeyHash, optSignature string, optShardHint uint64) e
return fmt.Errorf("parse signature: %w", err)
}
- preimage := types.HashFn(data)
+ message := types.HashFn(data)
leaf := types.Leaf{
Statement: types.Statement{
ShardHint: optShardHint,
- Checksum: *types.HashFn(preimage[:]),
+ Checksum: *types.HashFn(message[:]),
},
Signature: sig,
KeyHash: keyHash,