in reply to Perl Catalyst
You seem to be configuring the DB column wrongly, at least, for DBIC. Try following this doc and ensuring you have the module installed: DBIx::Class::EncodedColumn::Crypt::PBKDF2. If that doesn't work, let us know and I'll try to dig deeper. Snippet from it–
__PACKAGE__->add_columns( 'password' => { data_type => 'text', encode_column => 1, encode_class => 'Crypt::PBKDF2', encode_args => { hash_class => 'HMACSHA1', iterations => 1000 }, encode_check_method => 'check_password', } )
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Perl Catalyst
by akuk (Beadle) on Oct 10, 2018 at 18:14 UTC | |
by akuk (Beadle) on Oct 10, 2018 at 19:15 UTC | |
by Your Mother (Archbishop) on Oct 10, 2018 at 20:27 UTC |