• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

What is Salt?

Bill3000

New Member
Joined
Jul 26, 2010
Messages
106
Reaction score
1
I always see at the forum people asking about "salt", but...
What is it? What is salt?

Thx!
 
It is a part of the hashing algorithm to make it safer.
For short passwords the chance is high that they are available in password databases.
To prevent that you basically add the salt to the actual password and then create the sha1 hash out of it.

So when you check if the password is correct you have to check if SHA1(password + salt) == savedPassword
 
Back
Top