in reply to Re^4: OT: Cracking hashes made easier
in thread OT: Cracking hashes made easier
That means that the odds that you are the shortest reverse lookup are about 99.5%, which qualifies as "probably" in my books.
At 16 characters the math gets much more complicated. The problem here is that the strings could map to all of the hash values if they spread out perfectly, but they clump. There are hash values that have multiple strings hashing onto them, and those clumps mean that elsewhere there are hash values that are not mapped onto. The distribution of how many strings hash to a single value is given by the Poisson Distribution with a rate around 1.005. So about 36.6% of the hash values only have one string map onto them, which means that a similar percentage of strings can theoretically be recovered from the hash value.
At 17 character strings the number of strings so overwhelms the number of hash values that there are always collisions, usually hundreds of them.
The typeable calculation is similar, except that you lose a bit over a bit per character because most characters are not typeable. I was too lazy the first time around to work out how much over a bit per character you lose.
|
|---|