Omniscient Monks,
iīm wondering about the following issue:
..
use Digest::MD5 qw(md5 md5_hex md5_base64);
..
# md5 salt
my $salt = "any_salt";
#constructor
sub new {
my ($class) = @_;
my $self = $class->SUPER::new();
$self->{_NAME} = $_[1];
$self->{_PASSWORD} = $_[2];
bless $self, $class and return $self;
}
sub ENCRYPT {
return "[" . md5_base64( md5_hex( md5( "[" . $salt . $_[0] ) ) ) .
+ "]";
}
...
IMHO this argument should be true
$user->ENCRYPT("test") eq User::ENCRYPT("test")
but it isnīt!
User::ENCRYPT = [pFEzt3UedzYAtjFwAGLDRQ]
$User->ENCRYPT = [TmLr4v17FTUVqcO+Gb2K/Q]
each time i execute it, $User->ENCRYPT returns another hash... so what happens?!
kindly perlig
$perlig =~ s/pec/cep/g if 'errors expected';
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.