What I need is a hashing function that operates on fixed data sizes, obviously for non security purposes. It needs to map similar strings to similar or equal hashes, in other words small changes in strings should make no or really small changes to hashes.
for example: my name is John, my name is Jon should have the same or really similar hashes. my name is John, your name is Liam should result in somewhat similar hashes. my name is John, I live in USA should give totally different hashes. and so on!
Is there a hashing function for similar purposes?