1

Possible Duplicate:
How to best store user information and user login and password
Best way to store password in database

I'm looking for the best methods to securely store passwords on a web-based application using C# and MySql.

I'd love any advice on the best way to implement this, if there are existing dll's i can tap into or things already built into the .net framework.

Also - i'm looking for the way to best store the password while following PCI compliance rules.

Thanks very much... Loren

Community
  • 1
  • 1
99823
  • 2,407
  • 7
  • 38
  • 60

2 Answers2

3

asp.net has it's own Membership class and it can do a lot of the work for you.

here's a quick guide i found regarding asp.net membership

2

Never store the passwords themselves. Salt and hash them before storing.

Keith Randall
  • 22,985
  • 2
  • 35
  • 54