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.

14 lines
647 B

1 year ago
  1. // Some countries have import limits on crypto strength. This policy file
  2. // is worldwide importable.
  3. grant {
  4. permission javax.crypto.CryptoPermission "DES", 64;
  5. permission javax.crypto.CryptoPermission "DESede", *;
  6. permission javax.crypto.CryptoPermission "RC2", 128,
  7. "javax.crypto.spec.RC2ParameterSpec", 128;
  8. permission javax.crypto.CryptoPermission "RC4", 128;
  9. permission javax.crypto.CryptoPermission "RC5", 128,
  10. "javax.crypto.spec.RC5ParameterSpec", *, 12, *;
  11. permission javax.crypto.CryptoPermission "RSA", *;
  12. permission javax.crypto.CryptoPermission *, 128;
  13. };