diff options
author | Linus Nordberg <linus@nordberg.se> | 2022-03-28 13:18:52 +0200 |
---|---|---|
committer | Rasmus Dahlberg <rasmus@mullvad.net> | 2022-03-28 19:18:11 +0200 |
commit | 3f8010612c376ba9775101a3c823125ce9c82304 (patch) | |
tree | 4a806b3e4b452a28cbfab97e7412ed9182f4588d /pkg/db | |
parent | 4e1b2586576012a1be561a2337192ee517f13fbb (diff) |
follow SSHSIG changes in lib
Diffstat (limited to 'pkg/db')
-rw-r--r-- | pkg/db/trillian.go | 2 | ||||
-rw-r--r-- | pkg/db/trillian_test.go | 6 |
2 files changed, 3 insertions, 5 deletions
diff --git a/pkg/db/trillian.go b/pkg/db/trillian.go index 25b2fb3..453a884 100644 --- a/pkg/db/trillian.go +++ b/pkg/db/trillian.go @@ -26,7 +26,7 @@ func (c *TrillianClient) AddLeaf(ctx context.Context, req *requests.Leaf) error leaf := types.Leaf{ Statement: types.Statement{ ShardHint: req.ShardHint, - Checksum: req.Checksum, + Checksum: *types.HashFn(req.Preimage[:]), }, Signature: req.Signature, KeyHash: *types.HashFn(req.VerificationKey[:]), diff --git a/pkg/db/trillian_test.go b/pkg/db/trillian_test.go index 955fc46..4dc561d 100644 --- a/pkg/db/trillian_test.go +++ b/pkg/db/trillian_test.go @@ -20,10 +20,8 @@ import ( func TestAddLeaf(t *testing.T) { req := &requests.Leaf{ - Statement: types.Statement{ - ShardHint: 0, - Checksum: types.Hash{}, - }, + ShardHint: 0, + Preimage: types.Hash{}, Signature: types.Signature{}, VerificationKey: types.PublicKey{}, DomainHint: "example.com", |