sp4r53

Crates.iosp4r53
lib.rssp4r53
version0.1.4
sourcesrc
created_at2020-08-09 14:02:58.500228
updated_at2020-09-24 12:15:56.057988
descriptionSparse merkle tree with on demand flushing
homepagehttps://github.com/r3v2d0g/sp4r53
repositoryhttps://github.com/r3v2d0g/sp4r53.git
max_upload_size
id274635
size82,932
Matthieu Le brazidec (r3v2d0g) (r3v2d0g)

documentation

https://docs.rs/sp4r53

README

Sparse Merkle tree

img img img

A sparse Merkle tree implementation that only recomputes its branches’ hashes when asked.

Example

use sp4r53::{blake3, Proof, Tree};

let foo = blake3::hash(b"foo");
let bar = blake3::hash(b"bar");
let baz = blake3::hash(b"baz");

let mut tree = Tree::new();

tree.insert(foo);
tree.insert(bar);
tree.insert(baz);
assert_eq!(tree.is_valid(), false);

let root = tree.flush();
assert_eq!(tree.is_valid(), true);
assert_eq!(tree.root(), Some(root));

let proof = tree.proove(&[foo, baz]).unwrap();
assert_eq!(proof.verify(root), true);

let encoded = proof.as_bytes();
let decoded = Proof::from_bytes(&encoded).unwrap();
assert_eq!(decoded, proof);

tree.remove(bar);

let root = tree.flush();
assert_eq!(proof.verify(root), false);

License

This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.

Commit count: 15

cargo fmt