src/java.base/share/classes/sun/security/rsa/RSAPrivateCrtKeyImpl.java
changeset 58519 6e017b301287
parent 57950 4612a3cfb927
child 58679 9c3209ff7550
equal deleted inserted replaced
58518:705c3f88a409 58519:6e017b301287
    68     private BigInteger coeff;   // CRT coeffcient
    68     private BigInteger coeff;   // CRT coeffcient
    69 
    69 
    70     // Optional parameters associated with this RSA key
    70     // Optional parameters associated with this RSA key
    71     // specified in the encoding of its AlgorithmId.
    71     // specified in the encoding of its AlgorithmId.
    72     // Must be null for "RSA" keys.
    72     // Must be null for "RSA" keys.
       
    73     @SuppressWarnings("serial") // Not statically typed as Serializable
    73     private AlgorithmParameterSpec keyParams;
    74     private AlgorithmParameterSpec keyParams;
    74 
    75 
    75     /**
    76     /**
    76      * Generate a new key from its encoding. Returns a CRT key if possible
    77      * Generate a new key from its encoding. Returns a CRT key if possible
    77      * and a non-CRT key otherwise. Used by RSAKeyFactory.
    78      * and a non-CRT key otherwise. Used by RSAKeyFactory.