how do i encrypt the password in a field if i have a table to contain a password for the users so that when i open the table i wont see the actual passwords? tnx
What type of program do you need the passwords for (what kind of languege)? Maybe you should consider to build the encryption into your client, and save the password encrypted. If the user enters his password at the client, you only have to encrypt it and compare it with the saved value (both are encrypted then). This way the users real password never appears in your system. In addition you can try a one way encryption method, where the original password can't be retrieved from its encrypted counterpart, this provides additional security. If the code of your client is public, all of this is of course can't be used. In this case it might be a good idea to let every user have his own account on the SQL-serve (with proper restrictions of course).
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.