Where can you store a Password option?

FalconDEW

Freshman
Joined
Sep 18, 2003
Messages
42
I am writing an option in my app to require a password upon launch. I am using MD5 encryption to store the password since I don't need to decrypt it.

My question is - where can you store something as simple as a boolean option that the user has chosen to require a password at launch? I keep thinking that wherever I store the option - a person could just find it and delete it... giving them access to the program.

-Falcon
 
What I did is created a hiden file in some directory and upon load my project I check with that file. Make sure you calculate the Hash with some other prase to avoid password hacking.
 
Back
Top