Will a SHA256 hash always have 64 characters?
- by Sergio Tapia
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,
);