1
2
3
4
5
6
7
8
9
10
11
12
// Copyright © 2023 Mini Functions library. All rights reserved.
// SPDX-License-Identifier: Apache-2.0 OR MIT

//! Application MD5 hashing functionality
//!
//! Provides access to MD5 hashing functions and types.

/// Re-exported main [`mdg`] module from mdg for MD5 hashing.
pub use mdg::*;

/// Re-exported [`constants`] module from mdg for MD5 hashing.
pub use mdg::constants as mdg_constants;