Password encryption

  • Thread starter Thread starter Bart Schelkens
  • Start date Start date
B

Bart Schelkens

Hi,

I'm using an Access-database to store my data.
I'm going to encrypt the user's password using MD5.
This will give me a password as a binary of 16 long.

Does anyone know what type I need to give to my column in my
Access-database?
I can seem to find the binary-type.

Thx
 
What you can do is use the
FormsAuthentication.HashPasswordForStoringInConfigFile() method.
This will returns you a ash of your password in a string format. It could be
easier to store it in dB.

José
 
Thanks for the info.

It works just great now.

José Joye said:
What you can do is use the
FormsAuthentication.HashPasswordForStoringInConfigFile() method.
This will returns you a ash of your password in a string format. It could be
easier to store it in dB.

José
 
Back
Top