-
Posts
1066 -
Joined
-
Last visited
Unity+'s Achievements
Organism (8/13)
101
Reputation
Single Status Update
-
I managed to develop a hashcode equation that decrease the amount of collisions of a large book from 79192 collisions to 28 collisions. I'm proud.
- Show previous comments 3 more
-
Well, my hash function isn't meant for security purposes, but is meant for putting entries into a list without having to search through the whole list of items. Hashcodes assign an index of an entry into a particular index of an array. Since a hashcode % arraysize can have similarities, there are collisions.
-
http://en.wikipedia.org/wiki/Cryptographic_hash_function I think the way it works is the hashcode function is one-way, therefore the hash values are not decryptable. That is just my interpretation of it, though.