Question

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,
);
Was it helpful?

Solution

Yes, a SHA256 is always 256 bits long, equivalent to 32 bytes, or 64 bytes in an hexadecimal string format. You can even use char(64) instead of varchar(64) since the size won't change.

OTHER TIPS

Yes, it will always have 64 characters.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top