Password Storage for registered website users

Source: Internet
Author: User

I used to think about a problem when I was a computer. I entered my password when I went online. Will the website administrator see my password?
Recently, I started to register and log on to the system as a Website user. This problem occurs.

I checked the book and found that there are still some methods, as long as FormsAuthentication is used. hashPasswordForStoringInConfigFile method (namespace: System. web. security). It can generate a hash password suitable for storing in the configuration file based on the specified password and hash algorithm.

[MSDN] It is easy to use. For example, if we want to convert the string in the passWord textbox into a complicated hash passWord and store it in pwd, we can do this:
Using System. Web. Security;
String pwd = FormsAuthentication. HashPasswordForStoringInConfigFile (passWord. Text, "MD5 ");

Such a simple password is converted into a complex string of characters, so that the user's password cannot be seen in the database.
 

From Link_King_Jay

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.