Skip to main content

sigstore_merkle/
lib.rs

1//! RFC 6962 Merkle tree verification for Sigstore
2//!
3//! This crate implements Merkle tree operations as specified in RFC 6962,
4//! including inclusion proof and consistency proof verification.
5
6pub mod error;
7pub mod proof;
8pub mod tree;
9
10pub use error::{Error, Result};
11pub use proof::{verify_consistency_proof, verify_inclusion_proof};
12pub use tree::{hash_children, hash_leaf, LEAF_HASH_PREFIX, NODE_HASH_PREFIX};