Can someone please clarify the Birthday Effect for me?
        Posted  
        
            by Mark
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Mark
        
        
        
        Published on 2010-05-04T16:02:46Z
        Indexed on 
            2010/05/04
            16:18 UTC
        
        
        Read the original article
        Hit count: 168
        
hash
Please help interpret the Birthday effect as described in Wikipedia:
A birthday attack works as follows:
- Pick any message m and compute h(m).
 - Update list L. Check if h(m) is in the list L.
 - if (h(m),m) is already in L, a colliding message pair has been found. else save the pair (h(m),m) in the list L and go back to step 1.
 From the birthday paradox we know that we can expect to find a matching entry, after performing about 2^(n/2) hash evaluations.
Does the above mean 2^(n/2) iterations through the above entire loop (i.e. 2^(n/2) returns to step 1), OR does it mean 2^(n/2) comparisons to individual items already in L.
© Stack Overflow or respective owner