funkmasta55 has asked for the wisdom of the Perl Monks concerning the following question:
sub read_cookie { my $cookie = $_[0]; use My::Crypt; my $crypt = My::Crypt->new( debug => 0 ); my $den_cookie = $crypt->decrypt($cookie, 'lock it down'); my ($user_name,$user_id,$date,$first_name,$last_name) = split /\|/ +,$den_cookie; return ($user_name,$user_id,$date,$first_name,$last_name); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: unknown module My::Crypt
by agianni (Hermit) on Mar 28, 2007 at 20:47 UTC | |
|
Re: unknown module My::Crypt
by Anonymous Monk on Mar 28, 2007 at 20:52 UTC | |
|
Re: unknown module My::Crypt
by Anno (Deacon) on Mar 28, 2007 at 20:47 UTC | |
by Anonymous Monk on Mar 28, 2007 at 20:53 UTC | |
by Anno (Deacon) on Mar 28, 2007 at 21:00 UTC | |
|
Re: unknown module My::Crypt
by Khen1950fx (Canon) on Mar 28, 2007 at 23:09 UTC | |
by funkmasta55 (Initiate) on Mar 30, 2007 at 03:05 UTC |