in reply to Re: Integrating Password encryption into DBIx::UserDB
in thread Integrating Password encryption into DBIx::UserDB
Then use the digests as I would have used a plain text password. My only question here is, how large do my password fields need to be to accomodate a sha-256 hashed digest? What data types will allow all possible characters in the digest?use Digest::SHA; my $pw = Digest::SHA::sha256($password); my $pwc = Digest::SHA::sha256($passwordconfirm);
-- Hugh
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Integrating Password encryption into DBIx::UserDB
by tirwhan (Abbot) on Feb 01, 2006 at 12:33 UTC | |
by hesco (Deacon) on Feb 01, 2006 at 13:10 UTC |