merkle-lite

Crates.iomerkle-lite
lib.rsmerkle-lite
version0.1.0
sourcesrc
created_at2023-01-01 23:36:38.18716
updated_at2023-01-23 18:38:42.353189
descriptionA simple, fast, and composable binary Merkle tree and proof for Rust Crypto hash functions
homepagehttps://github.com/keithnoguchi/merkle-lite
repositoryhttps://github.com/keithnoguchi/merkle-lite
max_upload_size
id749077
size107,436
Keith Noguchi (keithnoguchi)

documentation

https://docs.rs/merkle-lite

README

merkle-lite

CI License Cargo Documentation

A simple, fast, and composable binary Merkle tree and proof for Rust Crypto hash functions.

Examples

It's super simple to compose MerkleTree from the ordered array of hashes and verify the proof of inclusion with MerkleProof:

use merkle_lite::MerkleTree;
use rand_core::RngCore;

// Composes MerkleTree from the 50,000 random hashes.
let tree: MerkleTree<sha3::Sha3_256> = std::iter::repeat([0u8; 32])
    .map(|mut leaf| {
        rand_core::OsRng.fill_bytes(&mut leaf);
        leaf
    })
    .take(50_000)
    .collect();

// Verifies the proof of inclusion for the arbitrary leaves.
let tree_leaves = tree.get_leaves();
let leaf_indices = [12, 0, 1, 1201, 13_903, 980];
let leaf_hashes: Vec<_> = leaf_indices
    .iter()
    .map(|index| (*index, tree_leaves[*index]))
    .collect();
assert_eq!(
    tree.proof(&leaf_indices)
        .expect("proof")
        .verify(&leaf_hashes)
        .expect("verify")
        .as_ref(),
    tree.root().expect("root"),
);

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Commit count: 21

cargo fmt