Is there a good algorithm for this? after an amount of searching around I haven't been able to find any conclusive answers.
Basically in a system which collects various bits of data about its users, each user is identified by a 64 bit unique Id. this Id is used as a primary key to a data set which may include any amount of data collected from this user. as is, this works fine as the Id's are already unique, but for legal reasons I need to hash the Id's in a way that I cannot link them back to the actual person. but at the same time needing to guarantee the uniqueness of the ID.
Obviously with the values being unique it would be possible to reverse engineer the algorithm used. but I'm not so sure that it being 100% unbreakable is so much of an issue here rather than making it so there isn't an easy way of reversing it
thanks