{"id":27328731,"url":"https://github.com/10d9e/rs-fast-merkle","last_synced_at":"2025-07-22T18:33:45.042Z","repository":{"id":209511085,"uuid":"618188351","full_name":"10d9e/rs-fast-merkle","owner":"10d9e","description":"Rust Implementation of Streaming Merkle Root, Proof, and Verify (single leaf) from Luke Champine's paper: Streaming Merkle Proofs within Binary Numeral Trees","archived":false,"fork":false,"pushed_at":"2023-03-24T01:04:26.000Z","size":3,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-12T12:17:02.225Z","etag":null,"topics":["cryptography","merkleproof","merkletree","rust"],"latest_commit_sha":null,"homepage":"https://eprint.iacr.org/2021/038.pdf","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/10d9e.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-03-23T23:50:35.000Z","updated_at":"2023-03-29T17:12:47.000Z","dependencies_parsed_at":"2023-11-27T19:28:44.429Z","dependency_job_id":"978b1f49-79a4-4452-acb9-1486e40fdf38","html_url":"https://github.com/10d9e/rs-fast-merkle","commit_stats":null,"previous_names":["10d9e/rs-fast-merkle"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/10d9e/rs-fast-merkle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/10d9e%2Frs-fast-merkle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/10d9e%2Frs-fast-merkle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/10d9e%2Frs-fast-merkle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/10d9e%2Frs-fast-merkle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/10d9e","download_url":"https://codeload.github.com/10d9e/rs-fast-merkle/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/10d9e%2Frs-fast-merkle/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266552540,"owners_count":23947174,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cryptography","merkleproof","merkletree","rust"],"created_at":"2025-04-12T12:16:55.498Z","updated_at":"2025-07-22T18:33:45.028Z","avatar_url":"https://github.com/10d9e.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# rs-fast-merkle\n\nRust Implementation of Streaming Merkle Root, Proof, and Verify (single leaf) from Luke Champine's paper: **Streaming Merkle Proofs within Binary Numeral Trees** @ https://eprint.iacr.org/2021/038.pdf\n\n## Usage\n\n```rust\nuse std::time::Instant;\nuse rs_fast_merkle::{merkle_root};\n\nfn main() {\n    let iterations = 33554432;\n    let mut blkstream = Vec::with_capacity(iterations);\n    for _i in 0..iterations {\n        blkstream.push(Vec::from(\"42\"));\n    }\n\n    let start = Instant::now();\n    let root = merkle_root(\u0026blkstream);\n    let elapsed = start.elapsed();\n    println!(\"Merkle root: {:?}\", root);\n    println!(\"Elapsed time: {:?}\", elapsed);\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F10d9e%2Frs-fast-merkle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F10d9e%2Frs-fast-merkle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F10d9e%2Frs-fast-merkle/lists"}