Click to See Complete Forum and Search --> : SQL problem


dinal
May 23rd, 2006, 01:22 PM
hii Friends,
I want to know how to send password to SQL database with encryption and how to retrive it back to chek for a login .
Thank you

Corpse
May 23rd, 2006, 02:57 PM
I would encrypt the password in the software, then save it into the db.
If you need it for login, just do it the other way round.

gitter1226
June 5th, 2006, 04:49 PM
Corpse has it right. Encrypt it and store it in the database. When you have a user attempting to connect, encrypt *his* password and compare that to the encrypted password you stored in the db. If they don't match....well you get the idea.

hth, jeff