Hello dears,
I'm trying to create an index for customer information.
The customer information has for example Name, Phone, Email, Address, and I want to create a string that concatenates all of the previous fields into one string and then generate a hash value of that string. So if any value changed in one of those fields, the hash function will produce a new value. And if nothing changed, the hash value produced should be the same (not changed).
What are available simple hash functions that I can pass to it a long string and gets me a hash value based on the string value passed?
Thanks in advance!