Rahul
Rahul

Reputation: 259

Store Data in Encrypted format in java files?

How to store data in Encrypted format or binary format in any file?? in File Handling using JAVA.

Upvotes: 0

Views: 913

Answers (2)

ZZ Coder
ZZ Coder

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

Balint Pato
Balint Pato

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

Related Questions