Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Re: Re: Passing data from one script to another

by hardburn (Abbot)
on May 02, 2003 at 16:09 UTC ( [id://255059]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use Digest::MD5 qw(md5);
    my $password = "passwd";
    my $encr_pass = md5($password);
    
  2. or download this
    use Digest::SHA1 qw(sha1);
    my $password = "passwd";
    my $encr_pass = sha1($password);
    
  3. or download this
    use Digest;
    my $password = "passwd";
    my $digest = Digest->new("SHA1");
    $digest->add($password);
    my $encr_pass = $digest->digest();
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (4)
As of 2024-04-25 13:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found