cryptotools 0.3.0

cryptotools is a cryptography library
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(test)]

use cryptotools::encrypt_md5::*;

#[test]
fn test_encrypt_md5() {
    let md5 = MD5::encrypt("9999");
    assert_eq!(md5, "fa246d0262c3925617b0c72bb20eeb1d");
}