Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,722 changes: 861 additions & 861 deletions src/test_vectors/asset_base.rs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/test_vectors/issuance_auth_sig.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// From https://github.com/zcash-hackworks/zcash-test-vectors/ (issuance_auth_sig)
// From https://github.com/zcash-hackworks/zcash-test-vectors/ (orchard_zsa_issuance_auth_sig)

pub(crate) struct TestVector {
pub(crate) isk: [u8; 32],
Expand Down
2 changes: 1 addition & 1 deletion src/test_vectors/keys.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// From https://github.com/zcash-hackworks/zcash-test-vectors/ (orchard_key_components)
// From https://github.com/zcash-hackworks/zcash-test-vectors/ (orchard_zsa_key_components)

pub(crate) struct TestVector {
pub(crate) sk: [u8; 32],
Expand Down
3 changes: 2 additions & 1 deletion src/test_vectors/merkle_path.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
// From https://github.com/zcash-hackworks/zcash-test-vectors/ (orchard_merkle_tree)

pub(crate) struct TestVector {
pub(crate) leaves: [[u8; 32]; 16],
pub(crate) paths: [[[u8; 32]; 4]; 16],
pub(crate) root: [u8; 32],
}

pub(crate) fn test_vectors() -> Vec<TestVector> {
// From https://github.com/zcash-hackworks/zcash-test-vectors/blob/master/orchard_merkle_tree.py
vec![
TestVector {
leaves: [
Expand Down
Loading