mini_functions/
md5.rs

1// Copyright © 2023 Mini Functions library. All rights reserved.
2// SPDX-License-Identifier: Apache-2.0 OR MIT
3
4//! Application MD5 hashing functionality
5//!
6//! Provides access to MD5 hashing functions and types.
7
8/// Re-exported main [`mdg`] module from mdg for MD5 hashing.
9pub use mdg::*;
10
11/// Re-exported [`constants`] module from mdg for MD5 hashing.
12pub use mdg::constants as mdg_constants;