< prev index next >

src/java.base/share/classes/sun/security/rsa/RSAKeyFactory.java

Print this page
rev 14210 : 8154231: Simplify access to System properties from JDK code
Reviewed-by: rriggs

*** 82,94 **** */ public static final int MAX_MODLEN_RESTRICT_EXP = 3072; public static final int MAX_RESTRICTED_EXPLEN = 64; private static final boolean restrictExpLen = ! "true".equalsIgnoreCase(AccessController.doPrivileged( ! new GetPropertyAction( ! "sun.security.rsa.restrictRSAExponent", "true"))); // instance used for static translateKey(); private static final RSAKeyFactory INSTANCE = new RSAKeyFactory(); public RSAKeyFactory() { --- 82,93 ---- */ public static final int MAX_MODLEN_RESTRICT_EXP = 3072; public static final int MAX_RESTRICTED_EXPLEN = 64; private static final boolean restrictExpLen = ! "true".equalsIgnoreCase(GetPropertyAction.getProperty( ! "sun.security.rsa.restrictRSAExponent", "true")); // instance used for static translateKey(); private static final RSAKeyFactory INSTANCE = new RSAKeyFactory(); public RSAKeyFactory() {
< prev index next >