//! Transparency-log verification primitives — the pure, network-free core any
//! verifier needs to check Merkle proofs against a signed checkpoint.
//!
//! These types are the wire contract between a transparency log
//! (`auths-transparency`, which builds trees, tiles, and proofs server-side)
//! and every verifier surface (native, FFI, browser WASM) that must check
//! that evidence offline. They live here — in the leaf verification crate all
//! surfaces share — so a browser can verify a log proof without linking the
//! log's storage or networking, and so there is exactly one implementation of
//! the RFC 6962 proof math. `auths-transparency` re-exports everything in
//! this module; downstream code keeps importing from either crate without a
//! second copy existing anywhere.
/// Log checkpoints (signed tree heads) and witness cosignatures.
/// The transparency-log error contract.
/// RFC 6962 Merkle tree hashing and proof verification.
/// Inclusion and consistency proofs.
/// Identifier and hash newtypes.
pub use ;
pub use TransparencyError;
pub use ;
pub use ;
pub use ;