From af32851aa1fff10262eb83f379344948057d8e81 Mon Sep 17 00:00:00 2001 From: Deirdre Connolly Date: Tue, 27 Apr 2021 17:35:47 -0400 Subject: [PATCH] Add TODO to fill in the Sinsemilla test vectors from zcash-hackworks --- zebra-chain/src/orchard/sinsemilla.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zebra-chain/src/orchard/sinsemilla.rs b/zebra-chain/src/orchard/sinsemilla.rs index 8d53efaab..1c082f415 100644 --- a/zebra-chain/src/orchard/sinsemilla.rs +++ b/zebra-chain/src/orchard/sinsemilla.rs @@ -137,3 +137,7 @@ pub fn sinsemilla_commit(r: pallas::Scalar, D: &[u8], M: &BitVec) -> p pub fn sinsemilla_short_commit(r: pallas::Scalar, D: &[u8], M: &BitVec) -> pallas::Base { extract_p(sinsemilla_commit(r, D, M)) } + +// TODO: test the above correctness and compatibility with the zcash-hackworks test vectors +// https://github.com/ZcashFoundation/zebra/issues/2079 +// https://github.com/zcash-hackworks/zcash-test-vectors/pulls