Reputation: 259
How to store data in Encrypted format or binary format in any file?? in File Handling using JAVA.
Upvotes: 0
Views: 913
Reputation: 75456
I suggest you encrypt the file using Keyczar,
http://code.google.com/p/keyczar/
keyczar takes care of the details of ciphers and key management and it's also platform independent. You can encrypt in Java and decrypt in other languages.
Upvotes: 1
Reputation: 1549
I would suggest you try out first Jasypt to encrypt and decrypt strings or binaries, etc. But it really depends on the requirements.
Upvotes: 0