Reading this discussion , I am wondering about the pro/cons of SecureString vs hash when storing password in session. Any thoughts?
Reading this discussion , I am wondering about the pro/cons of SecureString vs hash
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You should not store a password in session.
Period.You should only ever store passwords as salted hashes in a database (preferably using bcrypt or scrypt).