jdk/src/java.base/share/classes/sun/security/rsa/RSAKeyFactory.java
changeset 37781 71ed5645f17c
parent 37593 824750ada3d6
equal deleted inserted replaced
37780:06f3783b338f 37781:71ed5645f17c
    82      */
    82      */
    83     public static final int MAX_MODLEN_RESTRICT_EXP = 3072;
    83     public static final int MAX_MODLEN_RESTRICT_EXP = 3072;
    84     public static final int MAX_RESTRICTED_EXPLEN = 64;
    84     public static final int MAX_RESTRICTED_EXPLEN = 64;
    85 
    85 
    86     private static final boolean restrictExpLen =
    86     private static final boolean restrictExpLen =
    87         "true".equalsIgnoreCase(GetPropertyAction.getProperty(
    87         "true".equalsIgnoreCase(GetPropertyAction.privilegedGetProperty(
    88                 "sun.security.rsa.restrictRSAExponent", "true"));
    88                 "sun.security.rsa.restrictRSAExponent", "true"));
    89 
    89 
    90     // instance used for static translateKey();
    90     // instance used for static translateKey();
    91     private static final RSAKeyFactory INSTANCE = new RSAKeyFactory();
    91     private static final RSAKeyFactory INSTANCE = new RSAKeyFactory();
    92 
    92