src/java.base/share/classes/sun/security/x509/X509Key.java
changeset 58519 6e017b301287
parent 57950 4612a3cfb927
child 58679 9c3209ff7550
equal deleted inserted replaced
58518:705c3f88a409 58519:6e017b301287
    82      */
    82      */
    83     @Deprecated
    83     @Deprecated
    84     private int unusedBits = 0;
    84     private int unusedBits = 0;
    85 
    85 
    86     /* BitArray form of key */
    86     /* BitArray form of key */
    87     private BitArray bitStringKey = null;
    87     private transient BitArray bitStringKey = null;
    88 
    88 
    89     /* The encoding for the key. */
    89     /* The encoding for the key. */
    90     protected byte[] encodedKey;
    90     protected byte[] encodedKey;
    91 
    91 
    92     /**
    92     /**