fuzzyhash-rs icon indicating copy to clipboard operation
fuzzyhash-rs copied to clipboard

Pure Rust fuzzy hash implementation

Results 5 fuzzyhash-rs issues
Sort by recently updated
recently updated
newest added

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...