src/java.base/share/classes/sun/security/x509/AlgorithmId.java
changeset 58519 6e017b301287
parent 57950 4612a3cfb927
child 58679 9c3209ff7550
equal deleted inserted replaced
58518:705c3f88a409 58519:6e017b301287
    70      * The object identitifer being used for this algorithm.
    70      * The object identitifer being used for this algorithm.
    71      */
    71      */
    72     private ObjectIdentifier algid;
    72     private ObjectIdentifier algid;
    73 
    73 
    74     // The (parsed) parameters
    74     // The (parsed) parameters
       
    75     @SuppressWarnings("serial") // Not statically typed as Serializable
    75     private AlgorithmParameters algParams;
    76     private AlgorithmParameters algParams;
    76     private boolean constructedFromDer = true;
    77     private boolean constructedFromDer = true;
    77 
    78 
    78     /**
    79     /**
    79      * Parameters for this algorithm.  These are stored in unparsed
    80      * Parameters for this algorithm.  These are stored in unparsed
    80      * DER-encoded form; subclasses can be made to automaticaly parse
    81      * DER-encoded form; subclasses can be made to automaticaly parse
    81      * them so there is fast access to these parameters.
    82      * them so there is fast access to these parameters.
    82      */
    83      */
       
    84     @SuppressWarnings("serial") // Not statically typed as Serializable
    83     protected DerValue          params;
    85     protected DerValue          params;
    84 
    86 
    85 
    87 
    86     /**
    88     /**
    87      * Constructs an algorithm ID which will be initialized
    89      * Constructs an algorithm ID which will be initialized