fuzzyhash-rs
fuzzyhash-rs copied to clipboard
Pure Rust fuzzy hash implementation
Need to be able to hash data via stream without loading the entire data set into memory (large file support, etc).
not to truncate the second part to SPAMSUM_LENGTH/2
eliminate repeating characters from hash
most "hasher" crates (eg. sha2) make their hashers also implement Write when the `std` feature is enabled, so you can just `io::copy` from a file to the hasher. the impl...