Most voted "salt" questions
3 questions
Sort by count of
-
5
votes1
answer251
viewsDoes it make sense to store the salt of a password with the hash itself?
Looking at tables in a database of a certain product, I came across a structure similar to this: [LocalUsers] UserId Integer PasswordHash Byte[] Salt Byte[] If an intruder gets this list, it’s…
-
3
votes1
answer140
viewsUsing Hash, without adding a Salt string to the password, can make the password vulnerable?
A little while ago I needed to figure out which hash had been used to save passwords in the bank so that they were not directly saved according to what the user launches at the time of their…
-
0
votes0
answers60
viewscrypt without the use of salt
There is a system in PHP that was not developed by me, it uses crypt to encrypt the user’s password, thus: $senha = crypt($senha); With the PHP update on the server, crypt is asking for a salt when…