Quote:
Originally Posted by Jeroen52
The best way to hash a password is to use a strong hashing algorithm like Whirlpool and use it the following method:
Hash=(Password+Salt)
Although it is just easier to use the bcrypt plugin as it also does hashing and iterations for you.
|
I'm working with hashing, I'm just not sure if Whirlpool is still decent or if there's some new algorithm that's more secure or better. I'll check out bcrypt thanks!