In java platform documentation http://www.oracle.com/technetwork/java/javase/jrereadme-182762.html. Regarding the comment about
/lib/security/local_policy.jar /lib/security/US_export_policy.jar
Unlimited Strength Java Cryptography Extension
Due to import control restrictions for some countries, the Java Cryptography Extension (JCE) policy files shipped with the Java SE Development Kit and the Java SE Runtime Environment allow strong but limited cryptography to be used.
An unlimited strength version of these files indicating no restrictions on cryptographic strengths is available on the JDK web site for those living in eligible countries. Those living in eligible countries may download the unlimited strength version and replace the strong cryptography jar files with the unlimited strength files. Questions
- Does every JDK bundle comes with local_policy.jar and US_export_policy.jar ?
- What is the limitation in default local_policy.jar and US_export_policy.jar. Is it the key size ?
- If I need to use 128 bit keys does it required to go for Unlimited Strength Java Cryptography
Extension - Is there a way I can keep these two jars in external path and load it. Because I have more 50 servers rather than coping in each JDK I would prefer to maintain it in a central place.