Help for this page

Select Code to Download


  1. or download this
    # Depth-first search
    # Max length = 20
    ...
    1234b
    1234bb
    ...
    
  2. or download this
    # Breadth-first search
    1234
    ...
    1234ab
    1234ac
    ...
    
  3. or download this
    use strict;
    use warnings;
    ...
    
    print crack('12',   crypt('d12e',    'AA'), @chars), "\n";
    print crack('1234', crypt('aa12345', 'AA'), @chars), "\n";