TLSSocket.prototype.getPeerX509Certificate - Node documentation
method TLSSocket.prototype.getPeerX509Certificate

Usage

import { TLSSocket } from "node:tls";

Returns the peer certificate as an X509Certificate object.

If there is no peer certificate, or the socket has been destroyed,undefined will be returned.

Return Type

X509Certificate | undefined