No description
Find a file
2022-09-16 14:10:44 +02:00
src added md2 and md4, updated API to v2 2022-09-16 14:07:57 +02:00
.gitignore Init commit 2021-10-26 16:20:30 +02:00
Cargo.lock added md2 and md4, updated API to v2 2022-09-16 14:07:57 +02:00
Cargo.toml added md2 and md4, updated API to v2 2022-09-16 14:07:57 +02:00
LICENSE Init commit 2021-10-26 16:20:30 +02:00
README.md updated README 2022-09-16 14:10:44 +02:00
rust-toolchain added md2 and md4, updated API to v2 2022-09-16 14:07:57 +02:00

Lore

Hashing algorithms with a straight-forward API and no dependencies.

Currently implements:

  • MD2, MD4, and MD5

Example

fn main() {
    let input = "lol xd";
    let digest = lore::md5(input);
    assert_eq!(digest, "982d7f24f8985a6baa5cf129acc73561");
}