lore/README.md
2022-09-16 14:10:44 +02:00

17 lines
282 B
Markdown

# Lore
Hashing algorithms with a straight-forward API and no dependencies.
Currently implements:
- MD2, MD4, and MD5
## Example
```rust
fn main() {
let input = "lol xd";
let digest = lore::md5(input);
assert_eq!(digest, "982d7f24f8985a6baa5cf129acc73561");
}
```