Package com.unboundid.util.ssl.cert
Class DecodedPrivateKey
java.lang.Object
com.unboundid.util.ssl.cert.DecodedPrivateKey
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
EllipticCurvePrivateKey,RSAPrivateKey
@NotExtensible
@ThreadSafety(level=INTERFACE_THREADSAFE)
public abstract class DecodedPrivateKey
extends Object
implements Serializable
This class defines the parent class for a decoded private key that may appear
in a PKCS #8 private key object.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal StringtoString()Retrieves a string representation of this decoded private key.abstract voidtoString(StringBuilder buffer) Appends a string representation of this decoded private key to the provided buffer.
-
Constructor Details
-
DecodedPrivateKey
public DecodedPrivateKey()
-
-
Method Details
-
toString
Retrieves a string representation of this decoded private key. -
toString
Appends a string representation of this decoded private key to the provided buffer.- Parameters:
buffer- The buffer to which the information should be appended.
-