Questions tagged as 'salt'

1
answer

Does it make sense to store the salt of a password with the hash itself?

Looking at tables in a database for a certain product, I came across a structure similar to this: [LocalUsers] UserId Integer PasswordHash Byte[] Salt Byte[] If an attacker gets this list, is it sufficient for him...
asked by 04.08.2017 / 22:16
1
answer

Using Hash, without adding a Salt chain to the password, can make the password vulnerable? [duplicate]

Shortly you needed to find out which hash had been used to save the passwords in the database so that they were not saved directly according to what the user launches at the time of their registration. Searching I found the following websit...
asked by 22.05.2017 / 22:35
0
answers

crypt 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, like this: $senha = crypt($senha); With the PHP update on the server, crypt is asking for salt when creating new users...
asked by 22.12.2017 / 15:43