Will a SHA256 hash always have 64 characters?
Posted
by Sergio Tapia
on Stack Overflow
See other posts from Stack Overflow
or by Sergio Tapia
Published on 2010-06-17T17:40:58Z
Indexed on
2010/06/17
17:43 UTC
Read the original article
Hit count: 286
I'm setting up my database to receive hashed passwords and not accept plain text.
Would I go something like this?
create table User(
username varchar(20) not null,
password varchar(64) not null,
);
© Stack Overflow or respective owner