in reply to Re^4: MD5-based Unique Session ID Generator
in thread MD5-based Unique Session ID Generator
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)
|
|---|