I have make a login which stores the password in a access database. How can I encrypt the password in the database so no one can just open the database and see? Possible to encrypt to something like this ***** (see attach)? Please advice...
The best thing to do is have all your encryption done within your program, and then store the encrypted result in the database.
So when the user types a password to login, you see if the encryption for the entered password matches the stored one...
If my post has been helpful, then please rate it accordingly...
If it has solved your question(s), then don't forget to mark the thread as "[Resolved]"... thank you.
for a simple encryption
you can add some values to your ascii value of the password chars and save it in the db...i.e. if your pwd is password then add 250 to each chr and when you read it minus this value....you can have it in a loop
If you set the inputmask to Password, MS Access will show the text as asterisks.
This is not very secure, because when you read the data with another application the value is still readable.
Also the inputmask can be removed by anybody with the proper permissions, and everything is readable again.