开发者

Checking 3 random letters from a hashed password

开发者 https://www.devze.com 2023-01-16 19:50 出处:网络
I have a system where I salt and hash passwords before saving them to the database, using FormsAuthentication in asp.net

I have a system where I salt and hash passwords before saving them to the database, using FormsAuthentication in asp.net

What I want to do is, rather than ask the customer for their password each time, I just want 3 rand开发者_开发技巧om letters from their password. How can I compare this to the hash in the database? Will hashing still work in this case? From what I gather hashing is only designed to be a one way process and shouldn't be decrypted, so is checking 3 random letters for a hash even possible?


To achieve that, you'd need to know what the clear password is when you compare the letters, because you can't generate an identical hash with only 3 letters.

0

精彩评论

暂无评论...
验证码 换一张
取 消