No description
Find a file
2022-09-16 14:07:57 +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 Added example to readme 2021-10-26 16:22:45 +02:00
rust-toolchain added md2 and md4, updated API to v2 2022-09-16 14:07:57 +02:00

Lore

Hashing algorithms. Currently only implements md5.

Doesn't use any dependencies.

Performance/stability not guaranteed.

Example

use lore::md5;

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