I am storing passwords in a database at the minute, by using an scrypt algorithm and then storing that string.
I am then doing the password check, by then hashing the password provided, and checking it against that.
My question is, do I want to be adding more security than that? Should I be salting the encrypted string, too?