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.
 
Back
Top