Skip to main content

Crate sigstore_merkle

Crate sigstore_merkle 

Source
Expand description

RFC 6962 Merkle tree verification for Sigstore

This crate implements Merkle tree operations as specified in RFC 6962, including inclusion proof and consistency proof verification.

Re-exports§

pub use error::Error;
pub use error::Result;
pub use proof::verify_consistency_proof;
pub use proof::verify_inclusion_proof;
pub use tree::hash_children;
pub use tree::hash_leaf;
pub use tree::LEAF_HASH_PREFIX;
pub use tree::NODE_HASH_PREFIX;

Modules§

error
Error types for sigstore-merkle
proof
Merkle proof verification
tree
Merkle tree hashing utilities