lore/src/bin/sandbox.rs

11 lines
165 B
Rust
Raw Normal View History

2021-10-26 14:22:45 +00:00
use lore::md5;
fn main() {
let input = "lol xd";
assert_eq!(
md5::hash(input).to_hex_string(),
"982d7f24f8985a6baa5cf129acc73561"
);
2021-10-26 14:22:45 +00:00
}