nullnet-wallguard-server 0.1.8

A centralized management system for network firewalls
Documentation
1
2
3
4
5
6
7
8
9
10
/// Computes the MD5 hash of a given string.
///
/// # Arguments
/// * `input` - A string slice (`&str`) to be hashed.
///
/// # Returns
/// A `String` representing the MD5 hash in hexadecimal format.
pub fn digest(input: &str) -> String {
    format!("{:x}", md5::compute(input))
}