diff options
author | Linus Nordberg <linus@nordberg.se> | 2022-04-29 15:08:53 +0200 |
---|---|---|
committer | Rasmus Dahlberg <rasmus@mullvad.net> | 2022-04-29 22:16:22 +0200 |
commit | cb5c579ae46ee0570f2f32408e0427f989bd33ab (patch) | |
tree | 3848d1e492a8d947062494d935b432f25b352370 /pkg/instance/handler_test.go | |
parent | 26a04562c886dd1c46e738e29d2754631ff33992 (diff) |
change 'preimage' to 'message'
Issue: #40
Diffstat (limited to 'pkg/instance/handler_test.go')
-rw-r--r-- | pkg/instance/handler_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/instance/handler_test.go b/pkg/instance/handler_test.go index b3af666..0b81f6c 100644 --- a/pkg/instance/handler_test.go +++ b/pkg/instance/handler_test.go @@ -662,7 +662,7 @@ func mustHandle(t *testing.T, i Instance, e types.Endpoint) Handler { return Handler{} } -func mustLeafBuffer(t *testing.T, shardHint uint64, preimage types.Hash, wantSig bool) io.Reader { +func mustLeafBuffer(t *testing.T, shardHint uint64, message types.Hash, wantSig bool) io.Reader { t.Helper() vk, sk, err := ed25519.GenerateKey(rand.Reader) @@ -671,7 +671,7 @@ func mustLeafBuffer(t *testing.T, shardHint uint64, preimage types.Hash, wantSig } msg := types.Statement{ ShardHint: shardHint, - Checksum: *types.HashFn(preimage[:]), + Checksum: *types.HashFn(message[:]), } sig := ed25519.Sign(sk, msg.ToBinary()) if !wantSig { @@ -680,7 +680,7 @@ func mustLeafBuffer(t *testing.T, shardHint uint64, preimage types.Hash, wantSig return bytes.NewBufferString(fmt.Sprintf( "%s=%d\n"+"%s=%x\n"+"%s=%x\n"+"%s=%x\n"+"%s=%s\n", "shard_hint", shardHint, - "preimage", preimage[:], + "message", message[:], "signature", sig, "verification_key", vk, "domain_hint", "example.com", |