http://www.perlmonks.org?node_id=1223804


in reply to Re: Perl Catalyst
in thread Perl Catalyst

The password validation goes wrong. It's generating the wrong password than the legacy. But I am not sure why.

Legacy Password is generated by:

$pbk_crypt = Crypt::PBKDF2->new( hash_class => 'HMACSHA2', hash_args => { sha_size => 512, }, iterations => 10000, salt_len => 10, ); $pass = $pbk_crypt->generate('password');