Komplettes G-Earth Paket inkl. JRE, Extensions und Tools. Extensions: - G-BuildTools, G-Click Ultimate, G-Loader, G-Manipulate - G-Presets, G-Translator, G-Trigger, G-itemViewer - Market Utils, Packet Info Explorer, Plants - RandomRoomVisitor, RoomLogger, Sanbovir Photo Inspector - SpyFriends, WallAligner, XabboScripter, xabbo
14 lines
566 B
Plaintext
14 lines
566 B
Plaintext
// Some countries have import limits on crypto strength, but may allow for
|
|
// these exemptions if the exemption mechanism is used.
|
|
|
|
grant {
|
|
// There is no restriction to any algorithms if KeyRecovery is enforced.
|
|
permission javax.crypto.CryptoPermission *, "KeyRecovery";
|
|
|
|
// There is no restriction to any algorithms if KeyEscrow is enforced.
|
|
permission javax.crypto.CryptoPermission *, "KeyEscrow";
|
|
|
|
// There is no restriction to any algorithms if KeyWeakening is enforced.
|
|
permission javax.crypto.CryptoPermission *, "KeyWeakening";
|
|
};
|