org.mozilla.jss.pkix.primitive
Class PrivateKeyInfo
java.lang.Object
|
+--org.mozilla.jss.pkix.primitive.PrivateKeyInfo
- public class PrivateKeyInfo
- extends java.lang.Object
- implements ASN1Value, java.security.PrivateKey
- See Also:
- Serialized Form
Fields inherited from interface java.security.PrivateKey |
serialVersionUID |
Fields inherited from interface java.security.Key |
serialVersionUID |
Methods inherited from class java.lang.Object |
equals,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
PrivateKeyInfo
public PrivateKeyInfo(INTEGER version,
AlgorithmIdentifier privateKeyAlgorithm,
OCTET_STRING privateKey,
SET attributes)
- Create a PrivateKeyInfo from its components.
- Parameters:
attributes
- May be null if there are no attributes, in which
case the attributes field will be omitted from the DER encoding.
Each element must be a org.mozilla.jss.pkix.primitive.Attribute.
getVersion
public INTEGER getVersion()
getPrivateKeyAlgorithm
public AlgorithmIdentifier getPrivateKeyAlgorithm()
getAlgorithm
public java.lang.String getAlgorithm()
getFormat
public java.lang.String getFormat()
getEncoded
public byte[] getEncoded()
getPrivateKey
public OCTET_STRING getPrivateKey()
getAttributes
public SET getAttributes()
- May return null if no attributes are present.
getTag
public Tag getTag()
- Description copied from interface: ASN1Value
- Returns the base tag for this type, not counting any tags
that may be imposed on it by its context.
- Specified by:
- getTag in interface ASN1Value
encode
public void encode(java.io.OutputStream ostream)
throws java.io.IOException
- Description copied from interface: ASN1Value
- Write this value's DER encoding to an output stream using
its own base tag.
- Specified by:
- encode in interface ASN1Value
encode
public void encode(Tag implicitTag,
java.io.OutputStream ostream)
throws java.io.IOException
- Description copied from interface: ASN1Value
- Write this value's DER encoding to an output stream using
an implicit tag.
- Specified by:
- encode in interface ASN1Value
getTemplate
public static PrivateKeyInfo.Template getTemplate()