//! # quorum-crypto-core
//!
//! Cryptographic primitives and traits for agent signing and verification.
//!
//! - [`AuditSigner`] — sign messages (Ed25519, Secp256k1)
//! - [`AuditVerifier`] — verify signatures from unknown agents
//! - [`VerifierRegistry`] — route algorithm strings to verifier implementations
//! - [`AuditEnvelope`] — multi-signature chained envelope for any serializable payload
//! - [`ChainHasher`] — pluggable hash function for commitment chains
//!
//! Downstream crates can extend this surface with post-quantum signing
//! (e.g. ML-DSA-65), Poseidon-style hashing, commitment chains, and
//! settlement provers without changing the core trait shapes here.
pub use canonical_bytes;
pub use ChainHasher;
pub use ;
pub use CryptoError;
pub use AuditSigner;
pub use ;