vote up 2 vote down star

Hello,

I have somethings to store some data. Some of it information about how I'm implementing and other is some secure info like passwords,Activation code.

Now how do I store this info on a file (info.dat). I don't want user to see ANY of this data when he opens info.dat in a text editor.

  1. What do I need to do?
  2. How to do?
flag

2 Answers

vote up 0 vote down check

You could encrypt the sensitive data before writing it to the file.

link|flag
But when we write the encrypted data. I need to use some key, Which also should be stored. If user can find the encryption also. He can easily decrypt. So, again the problem is storing the key. – claws Nov 1 at 14:46
You have to store the key somewhere on that PC. So I can think of 2 options: 1, Hide the key somewhere(like registry). But user can still find this if they have enough information. 2, Using some system specific info as the key(like Mac ID, CPUID, etc). But again, user still can generate the key if they know what they are. – Ted Lee Nov 1 at 14:55
1  
You could store the actual key on your servers, and have e.g. a webservice that will return the key based on the user's ID or something, and uses it for encryption/decryption, but never stores it on the user's local machine – marc_s Nov 1 at 14:56
1  
Remember that no matter how hard you try if someone is determined to crack your software he will eventually succeed. – Darin Dimitrov Nov 1 at 15:09
1  
@Darin @marc_s I agree. I'm not aiming to make it impossible to crack. I'm just aiming for a difficult path. – claws Nov 1 at 16:00
show 2 more comments
vote up 0 vote down

You could use an xml configuration file to store your licensing information. Use a hash of the file to verify that it has not been modified by the user. We use a private key to prevent modifying and rehashing. This way you do not have to hide and/or encrypt the file (which is also nice, if you have to look into the file for debugging purposes).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.