password?

  • Thread starter Thread starter blu3g85
  • Start date Start date
blu3g85 said:
how do u hash a pw and the save to the database?


using System.Web.Security;

string hashedPass =
FormsAuthentication.HashPasswordForStoringInConfigFile(txtPassword.Text,"MD5
");

and just save it to the db.
 
what does MD5 stands 4?
Sebastianwrote:
blu3g85 said:
how do u hash a pw and the save to the database?

using System.Web.Security;

string hashedPass =
FormsAuthentication.HashPasswordForStoringInConfigFile(txtPassword.Text,"MD5
");

and just save it to the db.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top