Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: Tact and the Monastery

by kschwab (Vicar)
on Sep 14, 2002 at 15:02 UTC ( [id://197868]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    # crypt the password
    my @chars=(a..z,A..Z,0..9,'.','/');
    my $salt= $chars[rand(@chars)] . $chars[rand(@chars)];
    my $crypted=crypt($password,$salt);
    
  2. or download this
    my $crypted = crypt( $password, join( '', 
      ('.', '/', 0..9, 'A'..'Z', 'a'..'z')[rand 64, rand 64]));
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (4)
As of 2024-03-28 23:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found