//! CESR-compatible cryptographic signing, verification, and digest primitives.
use ;
/// Algorithm marker types and the `Algorithm` sealed trait.
/// Digest computation for all supported CESR hash algorithms.
/// Error types for signing, verification, key, and digest operations.
/// Generic `KeyPair<A>` for Ed25519, secp256k1, and secp256r1.
/// Standalone signature verification dispatching on `VerKeyCode` at runtime.
// Re-exports for convenience
pub use ;
pub use digest;
pub use ;
pub use KeyPair;
pub use verify;