Class PEMEncoder
PEMEncoder is a preview API of the Java platform.
PEMEncoder implements an encoder for Privacy-Enhanced Mail (PEM)
data. PEM is a textual encoding used to store and transfer cryptographic
objects, such as asymmetric keys, certificates, and certificate revocation
lists (CRLs). It is defined in RFC 1421 and RFC 7468. PEM consists of a
Base64-encoded binary encoding enclosed by a type-identifying header
and footer.
Encoding can be performed on cryptographic objects that
implement DEREncodablePREVIEW. The encode(DEREncodable)
and encodeToString(DEREncodable) methods encode a DEREncodable
into PEM and return the data in a byte array or String.
Private keys can be encrypted and encoded by configuring a
PEMEncoder with the withEncryption(char[]) method,
which takes a password and returns a new PEMEncoder instance
configured to encrypt the key with that password. Alternatively, a
private key encrypted as an EncryptedPrivateKeyInfo object can be encoded
directly to PEM by passing it to the encode or
encodeToString methods.
PKCS #8 v2.0 defines the ASN.1 OneAsymmetricKey structure, which may
contain both private and public keys.
KeyPair objects passed to the encode or
encodeToString methods are encoded as a
OneAsymmetricKey structure using the "PRIVATE KEY" type.
When encoding a PEMPREVIEW object, the API surrounds
PEM.content()PREVIEW with a PEM header and footer based on
PEM.type()PREVIEW. The value returned by PEM.leadingData()PREVIEW is not
included in the output.
The following lists the supported DEREncodable classes and
the PEM types they encode as:
X509Certificate: CERTIFICATEX509CRL: X509 CRLPublicKey: PUBLIC KEYPrivateKey: PRIVATE KEYEncryptedPrivateKeyInfo: ENCRYPTED PRIVATE KEYKeyPair: PRIVATE KEYX509EncodedKeySpec: PUBLIC KEYPKCS8EncodedKeySpec: PRIVATE KEYPEMPREVIEW :PEM.type()
When used with a PEMEncoder instance configured for encryption:
PrivateKey: ENCRYPTED PRIVATE KEYKeyPair: ENCRYPTED PRIVATE KEYPKCS8EncodedKeySpec: ENCRYPTED PRIVATE KEY
This class is immutable and thread-safe.
Example: encode a private key:
PEMEncoder pe = PEMEncoder.of();
byte[] pemData = pe.encode(privKey);
Example: encrypt and encode a private key using a password:
PEMEncoder pe = PEMEncoder.of().withEncryption(password);
byte[] pemData = pe.encode(privKey);
- Implementation Note:
- Implementations may support additional PEM types.
- Since:
- 25
- External Specifications
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionbyte[]Encodes the specifiedDEREncodableand returns a PEM-encoded byte array.Encodes the specifiedDEREncodableand returns a PEM-encoded string.static PEMEncoderPREVIEWof()Returns an instance ofPEMEncoder.withEncryption(char[] password) Returns a copy of this PEMEncoder that encrypts and encodes using the specified password and default encryption algorithm.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Method Details
-
of
-
encodeToString
Encodes the specifiedDEREncodableand returns a PEM-encoded string.- Parameters:
de- theDEREncodableto be encoded- Returns:
- a
Stringcontaining the PEM-encoded data - Throws:
IllegalArgumentException- if theDEREncodablecannot be encodedNullPointerException- ifdeisnull- See Also:
-
encode
Encodes the specifiedDEREncodableand returns a PEM-encoded byte array.- Parameters:
de- theDEREncodableto be encoded- Returns:
- a PEM-encoded byte array
- Throws:
IllegalArgumentException- if theDEREncodablecannot be encodedNullPointerException- ifdeisnull- See Also:
-
withEncryption
Returns a copy of this PEMEncoder that encrypts and encodes using the specified password and default encryption algorithm.Only
PrivateKey,KeyPair, andPKCS8EncodedKeySpecobjects can be encoded with this newly configured instance. Encoding otherDEREncodableobjects will throw anIllegalArgumentException.- Implementation Note:
- The
jdk.epkcs8.defaultAlgorithmsecurity property defines the default encryption algorithm. TheAlgorithmParameterSpecdefaults are determined by the provider. To use non-default encryption parameters, or to encrypt with a different encryption provider, useEncryptedPrivateKeyInfo.encrypt(DEREncodable, Key, String, AlgorithmParameterSpec, Provider, SecureRandom)PREVIEW and use the returned object withencode(DEREncodable). - Parameters:
password- the encryption password. The array is cloned and stored in the new instance.- Returns:
- a new
PEMEncoderinstance configured for encryption - Throws:
NullPointerException- if password isnullIllegalArgumentException- if generating the encryption key fails
-
PEMEncoderwhen preview features are enabled.