Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re^5: MD5-based Unique Session ID Generator

by ctilmes (Vicar)
on Aug 20, 2004 at 12:12 UTC ( [id://384582]=note: print w/replies, xml ) Need Help??


in reply to Re^4: MD5-based Unique Session ID Generator
in thread MD5-based Unique Session ID Generator

I would even go as far as to say that double hashing can actually make more collisions. If you get a collision with the first hash, you absolutely will get a collision with the second hash, but if you don't get a collision with the first hash, you still have a chance of getting a collision with the second hash.

say you start with X and Y.

hash(X) = X'
hash(Y) = Y'

hash(X') = X''
hash(Y') = Y''

if X' = Y' (collision with first hash), then X'' = Y'' (collision with second hash)
if X' != Y' (no collision with first hash), then X'' may = Y'' (possible collision with second hash)

  • Comment on Re^5: MD5-based Unique Session ID Generator

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://384582]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (4)
As of 2024-04-23 16:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found