jdk/make/data/cryptopolicy/limited/default_local.policy
changeset 40728 1ed235a29653
parent 40727 e9f4bcc8dfd3
parent 40568 fb5226b8ac7f
child 40729 aae3aa5fd024
equal deleted inserted replaced
40727:e9f4bcc8dfd3 40728:1ed235a29653
     1 // Some countries have import limits on crypto strength. This policy file
       
     2 // is worldwide importable.
       
     3 
       
     4 grant {
       
     5     permission javax.crypto.CryptoPermission "DES", 64;
       
     6     permission javax.crypto.CryptoPermission "DESede", *;
       
     7     permission javax.crypto.CryptoPermission "RC2", 128, 
       
     8                                      "javax.crypto.spec.RC2ParameterSpec", 128;
       
     9     permission javax.crypto.CryptoPermission "RC4", 128;
       
    10     permission javax.crypto.CryptoPermission "RC5", 128, 
       
    11           "javax.crypto.spec.RC5ParameterSpec", *, 12, *;
       
    12     permission javax.crypto.CryptoPermission "RSA", *;
       
    13     permission javax.crypto.CryptoPermission *, 128;
       
    14 };