No description
Find a file
2021-11-07 15:55:35 +01:00
benches inlined some function, small perf. increase 2021-11-07 15:55:35 +01:00
src inlined some function, small perf. increase 2021-11-07 15:55:35 +01:00
.gitignore Init commit 2021-10-26 16:20:30 +02:00
Cargo.lock inlined some function, small perf. increase 2021-11-07 15:55:35 +01:00
Cargo.toml inlined some function, small perf. increase 2021-11-07 15:55:35 +01: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

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");
}