jdk/make/data/cryptopolicy/limited/exempt_local.policy
author ctornqvi
Fri, 19 Aug 2016 18:20:22 +0200
changeset 40632 8cf7f396360e
parent 21805 c7d7946239de
permissions -rw-r--r--
Merge
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. So this file
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
// will be useful.
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
    // There is no restriction to any algorithms if KeyRecovery is enforced.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
    permission javax.crypto.CryptoPermission *, "KeyRecovery"; 
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
    // There is no restriction to any algorithms if KeyEscrow is enforced.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
    permission javax.crypto.CryptoPermission *, "KeyEscrow"; 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
    // There is no restriction to any algorithms if KeyWeakening is enforced. 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
    permission javax.crypto.CryptoPermission *, "KeyWeakening";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
};