Class X509ChainBuilder

Represents a chain-building engine for X509Certificate certificates

Example

const chain = new x509.X509ChainBuilder({
certificates: [
new x509.X509Certificate(raw1),
new x509.X509Certificate(raw2),
// ...
new x509.X509Certificate(rawN),
],
});

const cert = x509.X509Certificate(raw);
const items = await chain.build(cert);

Constructors

Properties

Methods

Constructors

Properties

certificates: X509Certificate[] = []

Methods

Generated using TypeDoc