Hi,
what is the best datatype to save user's passwordin an encrypted format Is there any ready datatype for that or i have to send the password enrypted to the database
Thanks..
Hi,
what is the best datatype to save user's passwordin an encrypted format Is there any ready datatype for that or i have to send the password enrypted to the database
Thanks..
best datatype to save password
paveyard
SHA256 would probably be stronger than most expect.
http://msdn2.microsoft.com/en-us/library/system.security.cryptography.sha256.aspx
Store it as varbinary(32)
Richard Michaels
If you send it in clear text to the server and then checks for it anyone that has access to the connection between your application and server would be able to have a look at the password. The best practive would be to use a recognized one way hashing algorithm and send only that over the connection.
This way it will be up to your application to hash and match password and snooping on the line will be less interesting for hackers.
Eric Kiersky
dose this mean SQL Server dosen't have a ready encrypted datatype
if yes, what would be the best way to encrypt if i am using C#
thanks.
Christian Liensberger - INACTIVE
Baumbart
Can nothing but agree, it is important to use strong passwords.
http://en.wikipedia.org/wiki/Password_strength