method
tls.TLSSocket.getX509Certificate
Returns the local certificate as an X509Certificate object.
If there is no local certificate, or the socket has been destroyed,undefined will be returned.
Referenced types
class X509Certificate
Encapsulates an X509 certificate and provides read-only access to its information.
const { X509Certificate } = await import('node:crypto');
const x509 = new X509Certificate('{... pem encoded cert ...}');
console.log(x509.subject);- readonly fingerprint: string
The SHA-1 fingerprint of this certificate.
Because SHA-1 is cryptographically broken and because the security of SHA-1 is significantly worse than that of algorithms that are commonly used to sign certificates, consider using
x509.fingerprint256instead. - readonly fingerprint512: string
The SHA-512 fingerprint of this certificate.
Because computing the SHA-256 fingerprint is usually faster and because it is only half the size of the SHA-512 fingerprint,
x509.fingerprint256may be a better choice. While SHA-512 presumably provides a higher level of security in general, the security of SHA-256 matches that of most algorithms that are commonly used to sign certificates. - readonly infoAccess: undefined | string
A textual representation of the certificate's authority information access extension.
This is a line feed separated list of access descriptions. Each line begins with the access method and the kind of the access location, followed by a colon and the value associated with the access location.
After the prefix denoting the access method and the kind of the access location, the remainder of each line might be enclosed in quotes to indicate that the value is a JSON string literal. For backward compatibility, Node.js only uses JSON string literals within this property when necessary to avoid ambiguity. Third-party code should be prepared to handle both possible entry formats.
- readonly issuerCertificate: undefined | X509Certificate
The issuer certificate or
undefinedif the issuer certificate is not available. - readonly serialNumber: string
The serial number of this certificate.
Serial numbers are assigned by certificate authorities and do not uniquely identify certificates. Consider using
x509.fingerprint256as a unique identifier instead. - readonly signatureAlgorithm: undefined | string
The algorithm used to sign the certificate or
undefinedif the signature algorithm is unknown by OpenSSL. - readonly subjectAltName: undefined | string
The subject alternative name specified for this certificate.
This is a comma-separated list of subject alternative names. Each entry begins with a string identifying the kind of the subject alternative name followed by a colon and the value associated with the entry.
Earlier versions of Node.js incorrectly assumed that it is safe to split this property at the two-character sequence
', '(see CVE-2021-44532). However, both malicious and legitimate certificates can contain subject alternative names that include this sequence when represented as a string.After the prefix denoting the type of the entry, the remainder of each entry might be enclosed in quotes to indicate that the value is a JSON string literal. For backward compatibility, Node.js only uses JSON string literals within this property when necessary to avoid ambiguity. Third-party code should be prepared to handle both possible entry formats.
- readonly validFromDate: Date
The date/time from which this certificate is valid, encapsulated in a
Dateobject. - readonly validToDate: Date
The date/time until which this certificate is valid, encapsulated in a
Dateobject. - email: string,): undefined | string;
Checks whether the certificate matches the given email address.
If the
'subject'option is undefined or set to'default', the certificate subject is only considered if the subject alternative name extension either does not exist or does not contain any email addresses.If the
'subject'option is set to'always'and if the subject alternative name extension either does not exist or does not contain a matching email address, the certificate subject is considered.If the
'subject'option is set to'never', the certificate subject is never considered, even if the certificate contains no subject alternative names.@returnsReturns
emailif the certificate matches,undefinedif it does not. - name: string,): undefined | string;
Checks whether the certificate matches the given host name.
If the certificate matches the given host name, the matching subject name is returned. The returned name might be an exact match (e.g.,
foo.example.com) or it might contain wildcards (e.g.,*.example.com). Because host name comparisons are case-insensitive, the returned subject name might also differ from the givennamein capitalization.If the
'subject'option is undefined or set to'default', the certificate subject is only considered if the subject alternative name extension either does not exist or does not contain any DNS names. This behavior is consistent with RFC 2818 ("HTTP Over TLS").If the
'subject'option is set to'always'and if the subject alternative name extension either does not exist or does not contain a matching DNS name, the certificate subject is considered.If the
'subject'option is set to'never', the certificate subject is never considered, even if the certificate contains no subject alternative names.@returnsReturns a subject name that matches
name, orundefinedif no subject name matchesname. - ip: string): undefined | string;
Checks whether the certificate matches the given IP address (IPv4 or IPv6).
Only RFC 5280
iPAddresssubject alternative names are considered, and they must match the givenipaddress exactly. Other subject alternative names as well as the subject field of the certificate are ignored.@returnsReturns
ipif the certificate matches,undefinedif it does not. - ): boolean;
Checks whether this certificate was potentially issued by the given
otherCertby comparing the certificate metadata.This is useful for pruning a list of possible issuer certificates which have been selected using a more rudimentary filtering routine, i.e. just based on subject and issuer names.
Finally, to verify that this certificate's signature was produced by a private key corresponding to
otherCert's public key usex509.verify(publicKey)withotherCert's public key represented as aKeyObjectlike soif (!x509.verify(otherCert.publicKey)) { throw new Error('otherCert did not issue x509'); } - ): boolean;
Checks whether the public key for this certificate is consistent with the given private key.
@param privateKeyA private key.
There is no standard JSON encoding for X509 certificates. The
toJSON()method returns a string containing the PEM encoded certificate.Returns information about this certificate using the legacy
certificate objectencoding.Returns the PEM-encoded certificate.