2个不稳定版本
0.2.0 | 2023年2月18日 |
---|---|
0.1.0 | 2023年2月15日 |
#1586 在 算法
10KB
122 行
jenkins_hash
Bob Jenkins的哈希算法的本地Rust实现。
Lookup2
参见:www.burtleburtle.net/bob/hash/doobs.html
请勿用于加密目的。
use jenkins_hash::lookup2;
fn main() {
let data = "Hello, this is a test string. It is just used to be hashed.".as_bytes();
let initial = 0x3875682; // start value - like a seed
println!("{}", lookup2(&data[..], initial));
}