Today I have read this discussion about SHA-256 and SHA-512 and that we should not use any of them to store a password securely. And I have read here that instead we can use the PBKDF2 hashing function, because we can use salt and specify the number of iterations. That is great, but what about if I use a salt and iterating with SHA-512?
For example, consider this simple implementation:
string Password= "admin";
for(int I= 0; I<numberOfIterations, I++)
{
Password = sha512(Password+salt);
}
store(Password);
So is it possible to apply something like this?