Hi Guys,
lets say I hash a users password (no salt), then selecting every fourth character in the resulting hash, and use that as a SALT that I add to the original password and hash the resulting string (password + generated salt)
Would this be considered safe use of Hash & salt?
I have also added a random generated number that is used to re-hash the stored hash which is then compared to the login details supplied by the user. The random number is sms'ed to the client and he has to enter it on the login screen.
Would this further secure the application?
Any suggestions on making the app safer would be appreciated.
lets say I hash a users password (no salt), then selecting every fourth character in the resulting hash, and use that as a SALT that I add to the original password and hash the resulting string (password + generated salt)
Would this be considered safe use of Hash & salt?
I have also added a random generated number that is used to re-hash the stored hash which is then compared to the login details supplied by the user. The random number is sms'ed to the client and he has to enter it on the login screen.
Would this further secure the application?
Any suggestions on making the app safer would be appreciated.