Interface representing the PEM-formatted certificate components

interface pems {
    csr: string;
    privateKey: string;
    publicKey: string;
}

Properties

csr: string

The Certificate Signing Request (CSR) in PEM format

privateKey: string

The private key in PEM format

publicKey: string

The public key in PEM format