This Merkle Tree package provides a robust implementation for creating and verifying Merkle trees. Utilizing the Keccak hashing algorithm, this package is ideal for applications that require data integrity verification through cryptographic means, such as blockchains and other distributed ledger technologies.
- Generate Merkle trees from arbitrary data inputs.
- Verify the integrity of data using Merkle proofs.
- Utilize Keccak hashing for maximum security.
- Lightweight and efficient, suitable for high-performance applications.
- Rust 1.55 or newer
Clone the repository and build the project:
git clone git@github.com:Fiiii/merkle_tree.git
cd merkle_tree
cargo build --release