Design an algorithm to calculate symmetrical characters and make them have the same hash

write an hash algorithm that calculates the hash of the string "ABC123" and the string "123ABC" (similar symmetric characters) so that their Hash is the same and ensures that the hash is unique

Mar.28,2021

  1. evaluate the hash of the string itself
  2. invert the string and calculate hash
  3. add up the above two hash
Menu