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