CityHash
A CityHash implementation in pure Rust.
use City64Hasher;
use Hasher;
This project is licensed under either of
at your option.
CityHash
A CityHash implementation in pure Rust.
use cith::City64Hasher;
use std::hash::Hasher;
fn main() {
let mut hasher = City64Hasher::new_with_seed(42);
let data = b"Hash me!";
hasher.write(data);
let hash_value = hasher.finish();
println!("Hash: {}", hash_value);
}
This project is licensed under either of
at your option.