// Copyright © 2023-2026 Hash (HSH) library contributors. All rights reserved.
// SPDX-License-Identifier: Apache-2.0 OR MIT
//! Password hashing algorithm wrappers built on the RustCrypto stack.
/// Argon2 family — `Argon2id` (recommended), `Argon2i`, `Argon2d`.
/// Re-export of the Argon2i marker for backwards compatibility with the
/// v0.0.x module layout. Deprecated — use [`argon2id::Argon2id`] instead.
/// Bcrypt with the 72-byte safety rail enforced.
/// PBKDF2-HMAC-SHA-256 / SHA-512 — the only KDF with a FIPS 140-3
/// validated implementation today (via the `fips` feature).
/// Scrypt with configurable parameters (default = OWASP-2025 minimum).