jw项目windows环境软件安装
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
566 B

1 year ago
  1. // Some countries have import limits on crypto strength, but may allow for
  2. // these exemptions if the exemption mechanism is used.
  3. grant {
  4. // There is no restriction to any algorithms if KeyRecovery is enforced.
  5. permission javax.crypto.CryptoPermission *, "KeyRecovery";
  6. // There is no restriction to any algorithms if KeyEscrow is enforced.
  7. permission javax.crypto.CryptoPermission *, "KeyEscrow";
  8. // There is no restriction to any algorithms if KeyWeakening is enforced.
  9. permission javax.crypto.CryptoPermission *, "KeyWeakening";
  10. };