jamroll has asked for the wisdom of the Perl Monks concerning the following question:
Use of uninitialized value in subroutine entry at /usr/local/share/perl/5.24.1/Crypt/PBKDF2/Hash/HMACSHA1.pm line 19.
i've done some "debugging" and have found the error happens on this line of "create_account.pl": $account{password} = $pb->generate($account{passwordagain});I even tried to change it to:
my $temp = $pb->generate($account{password}); no dice!yet, my "setstats.pl" script doesn't issue the error and the code is pretty much exactly the same stuff:
my $newdbpw = $pb->generate($newpw);so...do i need to post ALL of the code, or is this enough to get us started?
some system stats? ubuntu 17.04 and perl5.24.1Sincerely, Jarett
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: problem with Crypt::PBKDF2
by Athanasius (Archbishop) on Sep 16, 2017 at 03:38 UTC | |
by jamroll (Beadle) on Sep 16, 2017 at 04:01 UTC | |
by Athanasius (Archbishop) on Sep 16, 2017 at 08:19 UTC | |
by jamroll (Beadle) on Sep 16, 2017 at 18:33 UTC | |
by Athanasius (Archbishop) on Sep 17, 2017 at 06:24 UTC |