jdk/make/data/cryptopolicy/limited/default_local.policy
author ihse
Thu, 14 Nov 2013 11:19:32 +0100
changeset 21805 c7d7946239de
parent 2 jdk/make/javax/crypto/policy/limited/default_local.policy@90ce3da70b43
permissions -rw-r--r--
8027566: Remove the old build system Reviewed-by: erikj, tbell
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
// Some countries have import limits on crypto strength. This policy file
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
// is worldwide importable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
grant {
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
    permission javax.crypto.CryptoPermission "DES", 64;
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
    permission javax.crypto.CryptoPermission "DESede", *;
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
    permission javax.crypto.CryptoPermission "RC2", 128, 
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
                                     "javax.crypto.spec.RC2ParameterSpec", 128;
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
    permission javax.crypto.CryptoPermission "RC4", 128;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
    permission javax.crypto.CryptoPermission "RC5", 128, 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
          "javax.crypto.spec.RC5ParameterSpec", *, 12, *;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
    permission javax.crypto.CryptoPermission "RSA", *;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
    permission javax.crypto.CryptoPermission *, 128;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
};