ClientCertificateResolver<T> = (req:T) =>Promise<string|undefined>
Callback that resolves a PEM-encoded client certificate from the incoming request.
The returned certificate can include or omit the -----BEGIN CERTIFICATE----- /
-----END CERTIFICATE----- delimiters.
| Type Parameter | Description |
|---|---|
T | Type of the request |
| Parameter | Type |
|---|---|
req | T |
Promise<string | undefined>