Help for this page

Select Code to Download


  1. or download this
    my $p = "howdy";
    my $salt = substr($p,0, 2); #define salt however you want
    my $crypted = crypt($p, $salt);
    print "Crypted form of $p is $crypted\n";
    
  2. or download this
    my $p="ho8dIXKikSTi2"; #better than displaying actual password
    my $password=param('password');
    ...
    } else {
      #try again
    }