I am trying to solve a one-way indentity problem, a group of authors want to publish something without reveal their own real username, so are there algorithm/library for hashing an unordered set of usernames?
Some people would suggest, sort the set alphabetically first, then join, finally hash, but that's not ideal solution for dynamic growing array.
Additionaly questions (not compulsory for the main question):
- If such algorithm exists, can we verify if a
usernameis one of the authors by hash? - If we already know the hash of a group of
usernames, then there is a new author added, can we get a new hash without knowing previous authorusernames?