Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Decrypt and encrypt CVS password in .cvspass

by merlyn (Sage)
on May 17, 2005 at 13:16 UTC ( [id://457788]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $s = "A$str";
    for (my $i = 1; $i < length($s) ; $i++) {
            substr($s, $i, 1, chr($shifts[ord(substr($s, $i, 1))]));
    }
    
  2. or download this
    my $s = "A" . pack "C*", map $shifts[$_], unpack "C*", $str;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (6)
As of 2024-03-28 20:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found