You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hashable allows for passing a salt to use when hashing using the hashWithSalt method. Not using a default salt (which we do now) is good as it makes it harder for attackers of e.g. web servers that use HashMaps to store user supplied data to guess the hashes and create collisions. By allowing clients to provide this salt when creating the map such attacks could be avoided.
The text was updated successfully, but these errors were encountered:
Hashable
allows for passing a salt to use when hashing using thehashWithSalt
method. Not using a default salt (which we do now) is good as it makes it harder for attackers of e.g. web servers that useHashMap
s to store user supplied data to guess the hashes and create collisions. By allowing clients to provide this salt when creating the map such attacks could be avoided.The text was updated successfully, but these errors were encountered: