jdk/src/java.base/share/classes/sun/security/rsa/RSAPrivateCrtKeyImpl.java
changeset 32649 2ee9017c7597
parent 25859 3317bb8137f4
child 44260 dd947f766e11
equal deleted inserted replaced
32648:1fa861caf840 32649:2ee9017c7597
    61     private BigInteger pe;      // prime exponent p
    61     private BigInteger pe;      // prime exponent p
    62     private BigInteger qe;      // prime exponent q
    62     private BigInteger qe;      // prime exponent q
    63     private BigInteger coeff;   // CRT coeffcient
    63     private BigInteger coeff;   // CRT coeffcient
    64 
    64 
    65     // algorithmId used to identify RSA keys
    65     // algorithmId used to identify RSA keys
    66     final static AlgorithmId rsaId =
    66     static final AlgorithmId rsaId =
    67         new AlgorithmId(AlgorithmId.RSAEncryption_oid);
    67         new AlgorithmId(AlgorithmId.RSAEncryption_oid);
    68 
    68 
    69     /**
    69     /**
    70      * Generate a new key from its encoding. Returns a CRT key if possible
    70      * Generate a new key from its encoding. Returns a CRT key if possible
    71      * and a non-CRT key otherwise. Used by RSAKeyFactory.
    71      * and a non-CRT key otherwise. Used by RSAKeyFactory.