hashell

Crates.iohashell
lib.rshashell
version0.1.0
sourcesrc
created_at2023-11-22 18:47:11.154952
updated_at2023-11-22 18:47:11.154952
descriptionMRSL's hashing function ported to rust
homepage
repositoryhttps://github.com/Grisshink/hashell
max_upload_size
id1045433
size27,114
(Grisshink)

documentation

README

Hashell

Implementation of hashing function made by Mark_Rus-Scratch-Lab in Rust. Some computations of this function were omitted for sake of performance, which means it can fail in certain untested scenarios or simply produce a different hash.

Example

use hashell::hash_string;

fn main() {
    assert_eq!(hash_string("some value", 16), "5149710603511119".to_owned());
}
Commit count: 9

cargo fmt