hashell 0.1.0

MRSL's hashing function ported to rust
Documentation
  • Coverage
  • 80%
    4 out of 5 items documented1 out of 5 items with examples
  • Size
  • Source code size: 42.64 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.62 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Grisshink/hashell
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Grisshink

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