IN3D / Pokemon

Recreation of pokemon, in C#.
0 stars 0 forks source link

Give users a salt value #52

Closed IN3D closed 9 years ago

IN3D commented 9 years ago

The user document should now contain that users salt value.

Daxter304 commented 9 years ago

What's a salt value?

IN3D commented 9 years ago

The salt value is a random value generated uniquely to the user when the password is defined. It can be placed anywhere within the encrypted password. It throws off decryption algorithms because they don't actually align with the algorithm. They can defeat low quality decryption algorithms and at least significantly stall out the better ones.

IN3D commented 9 years ago

This has been completed on the database side.