fuzzyhash-rs
fuzzyhash-rs copied to clipboard
impl Write for FuzzyHash
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 would be very simple, just forwarding write() to update()