Reputation: 1804
I see that the jre libs now include the limited and unlimited files. That is all fine and good.
But how do I enable unlimited?
Upvotes: 0
Views: 2522
Reputation: 718986
It is explained in the release note:
It says:
"To enable unlimited cryptography, one can use the new
crypto.policy
Security property. If the new Security property (crypto.policy
) is set in thejava.security
file, or has been set dynamically using theSecurity.setProperty()
call before the JCE framework has been initialized, that setting will be honored. By default, the property will be undefined. If the property is undefined and the legacy JCE jurisdiction files don't exist in the legacy lib/security directory, then the default cryptographic level will remain at 'limited'. To configure the JDK to use unlimited cryptography, set thecrypto.policy
to a value of 'unlimited'."
Upvotes: 1