Creating a secure hash?
#4
Unfortunately, that's not really all that secure. Especially if someone manages to leverage your source.
The best way to guarantee decent security is to assume that your source has already been compromised.

Personally, I would recommend using bcrypt with a high iteration count (lets say 10 or 12). Just make sure you are salting per user.


Messages In This Thread
Creating a secure hash? - by r0zzin - 01-21-2014, 03:18 AM
RE: Creating a secure hash? - by radix - 01-21-2014, 03:25 AM
RE: Creating a secure hash? - by r0zzin - 01-21-2014, 03:46 AM
RE: Creating a secure hash? - by unix-ninja - 01-21-2014, 03:49 AM
RE: Creating a secure hash? - by unix-ninja - 01-21-2014, 03:51 AM
RE: Creating a secure hash? - by epixoip - 01-21-2014, 08:09 AM
RE: Creating a secure hash? - by Incisive - 01-24-2014, 09:50 PM