I have seen that AES 256 Encryption Decryption works on Java 6 and above.
How can i achieve the same thing in Java 5 (apart from policy files)
|
I have seen that AES 256 Encryption Decryption works on Java 6 and above. How can i achieve the same thing in Java 5 (apart from policy files) |
|||||||||||||||||
|
|
The BouncyCastle library has support all the way back to 1.4. It includes AES256, and as long as you don't use it as JCE provider, I think you can use it without policy files. That said, the default Java 1.5 JCE (Java Cryptography Extension) does include AES256. As you noted in your question, you would need to deploy an unlimited policy file to actually use the 256-bit algorithm. This is unavoidable, but shouldn't be that difficult. The bouncycastle link above tells you how to do it. |
|||
|
|