vote up 1 vote down star
1

Is there a hash function where small changes in the input result in small changes in the output? For example, something like:

hash("Foo") => 9e107d9d372bb6826bd81d3542a419d6
hash("Foo!") => 9e107d9d372bb6826bd81d3542a419d7 <- note small difference
flag

60% accept rate
1  
That would be a really bad hash algorithm.... – skaffman Nov 6 at 11:41
For a cryptographic hash, yes, this would be bad, but I want to use it for something else. – Paul Wicks Nov 6 at 11:50
I think you need to provide more details as to what is the intended purpose of such a function. There is definitely no cryptographic hash function with that property, but maybe you are looking for something different? – Krystian Nov 6 at 11:51
3  
What is your definition of a "small change" in the output? Edit distance (treating hashes as strings) or mathematical distance of numbers (treating hashes as integers?) – RafaƂ Dowgird Nov 6 at 12:14

3 Answers

vote up 4 vote down

I wouldn't call this a hash because the point of a hash is exactly the opposite. However, with your stated goal of small changes in input producing small changes in output, I would look at using either a soundex function or the Ratcliff algorithm.

link|flag
vote up 1 vote down

I would recommend the simhash, algorithm by Mark Manasse.

link|flag
vote up 0 vote down

A trivial solution would be be to XOR all bytes module N. E.g. for a 64 bits hash, you'd XOR (input[0] ^ input[8] ^ input[16]) + 256*(input[1] ^ input[9] ^ input[17]) etc. So, "Foo" hashes to "Foo\0\0\0\0\0" and "Foo!" hashes to "Foo!\0\0\0\0".

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.