Probably the probability of a collision will be:
1 - ((2^160 - 1)/2^160) * ((2^160 - 2)/2^160) *... * ((2^160 - 99)/2^160)
Think about the probability of a collision of 2 objects in space 10. The first element is unique with a probability of 100%. The second is unique with a probability of 9/10. Thus, the probability that they are unique is 100% * 90% , and the probability of a collision:
1 - (100% * 90%), or 1 - ((10 - 0)/10) * ((10 - 1)/10), or 1 - ((10 - 1)/10)
This is rather unlikely. You must have many lines in order for this to be a distant opportunity.
Take a look at the table on this page on Wikipedia ; just interpolate between lines for 128 bits and 256 bits.
Anthony Mills Dec 08 '09 at 14:14 2009-12-08 14:14
source share