| Crates.io | md2 |
| lib.rs | md2 |
| version | 0.11.0-rc.1 |
| created_at | 2017-01-09 13:42:09.406091+00 |
| updated_at | 2026-01-24 17:23:35.145305+00 |
| description | MD2 hash function |
| homepage | |
| repository | https://github.com/RustCrypto/hashes |
| max_upload_size | |
| id | 8002 |
| size | 26,825 |
Pure Rust implementation of the MD2 cryptographic hash algorithm.
use md2::{Md2, Digest};
use hex_literal::hex;
let mut hasher = Md2::new();
hasher.update(b"hello world");
let hash = hasher.finalize();
assert_eq!(hash, hex!("d9cce882ee690a5c1ce70beff3a78c77"));
// Hex-encode hash using https://docs.rs/base16ct
let hex_hash = base16ct::lower::encode_string(&hash);
assert_eq!(hex_hash, "d9cce882ee690a5c1ce70beff3a78c77");
Also, see the examples section in the RustCrypto/hashes readme.
The crate is licensed under either of:
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.