//! Cryptographic primitives for authentication operations.
//!
//! All implementations are self-contained with zero external dependencies,
//! built from their respective specifications (FIPS 180-4, RFC 2104).
//! Every algorithm is validated against published test vectors from NIST
//! CAVP, IETF RFCs, or equivalent authoritative sources.
//!
//! Password hashing uses Argon2id via the [`argon2`] crate (see the
//! [`crate::local::password`] module). The primitives here (SHA, HMAC, CSPRNG)
//! support token generation, request signing, and other non-password
//! cryptographic operations.
//!
//! # Security
//!
//! These implementations prioritize correctness and auditability over
//! performance. They are suitable for authentication workloads (token
//! generation, HMAC verification) but are not optimized for bulk data
//! processing.
pub use ;
pub use ;
pub use Sha1;
pub use ;
pub use ;