How do I encrypt/decrypt a string of text using 3DES in java?
|
|
|||||
|
|
|
We use this little helper class for password-based DES encryption from String to Hex String and back - not sure how to get this working with 3DES though:
You would use this class like this:
|
||
|
|
|
|
From an old code:
Notice than other usage of DESede are available in Java JDK 6:
There is also ECB mode available (but be carreful to not use it twice !!), you don't need to use iv part in this case:
To generate key for DESede:
Finally I recommand reading this document from SUN if you need to work on Java and Cryptography |
||||
|
|
|
I found my answer. Duplicate question that didn't show up when I asked this one. http://stackoverflow.com/questions/20227/how-do-i-use-3des-encryption-decryption-in-java |
||
|
|
|
|
I wrote an article on this sometimes back. Please visit the following link in my blog that has a working, completed code with explanations and diagram. View My Triple DES Encryption Article, Code Here Hopefully you will find it helpful. |
||
|
|
|
|
You may also consider using a stream cipher (e.g., OFB or CTR mode on top of a 3DES block encryption), so that you don't have to deal with padding the string to a multiple of the cipher blocksize. |
||
|
|
