From 5683ff1a9bd81dbacfc9587c8c437642c8f51f42 Mon Sep 17 00:00:00 2001 From: Rasmus Dahlberg Date: Sun, 27 Mar 2022 20:36:06 +0200 Subject: fix incorrect {Leaf,Interior}NodePrefix --- issues/bug-tree-prefixes | 9 --------- pkg/types/crypto.go | 4 ++-- 2 files changed, 2 insertions(+), 11 deletions(-) delete mode 100644 issues/bug-tree-prefixes diff --git a/issues/bug-tree-prefixes b/issues/bug-tree-prefixes deleted file mode 100644 index 30be740..0000000 --- a/issues/bug-tree-prefixes +++ /dev/null @@ -1,9 +0,0 @@ -The following constants should be reversed: - - pkg/types/crypto.go:13: InteriorNodePrefix = byte(0x00) - pkg/types/crypto.go:14: LeafNodePrefix = byte(0x01) - -(LeafNodePrefix should be 0x00 as we follow the RFC 6962 hash strategy.) - -Prints in sigsum-log-go are affected by this bug but not the log's Merkle tree -as it is computed by Trillian and not sigsum-log-go. Fix until next tag. diff --git a/pkg/types/crypto.go b/pkg/types/crypto.go index 72152bf..df93108 100644 --- a/pkg/types/crypto.go +++ b/pkg/types/crypto.go @@ -10,8 +10,8 @@ const ( SignatureSize = ed25519.SignatureSize PublicKeySize = ed25519.PublicKeySize - InteriorNodePrefix = byte(0x00) - LeafNodePrefix = byte(0x01) + LeafNodePrefix = byte(0x00) + InteriorNodePrefix = byte(0x01) ) type ( -- cgit v1.2.3