Given a string how to create a unique identifier / hash for that string so that one can track the occurence of the string without actually logging the original string.
For example a URL "www.mylittlesecret.com" should show up as "xyz123" (hascode for that string). So that the url always translates into xyz123 but from xyz123 one can't determine the url.
Sorry if those are the wrong terms. I am happy to read more about "hashing" if somebody could provide me the right keywords.