Files
treasure-chest/backend/src/hash/mod.rs
2025-11-19 23:09:59 +01:00

10 lines
225 B
Rust

//! Hash module.
//!
//! This module provides hashing functionalities. It includes submodules
//! for Argon2 hashing and hash definitions.
mod argon2;
mod definitions;
pub use argon2::Argon2 as Hash;
pub use definitions::*;