nilsimsa
Implementation of the Nilsimsa locality-sensitive hashing algorithm.
Compared to "traditional" hash functions (cryptographic or not), a small modification to the input does not substantially change the resulting hash. This crate contains the Nilsimsa utility to calculate Nilsimsa hash digests, as well as a compare
function for given digests.
Usage
let mut hasher = new;
hasher.update;
hasher.update;
let digest = hasher.digest;