Interface ICertificate

interface ICertificate {
    caCert?: string;
    caKey?: string;
    clientCert?: string;
    clientKey?: string;
    clientReq?: string;
    serverCert?: string;
    serverKey?: string;
    serverReq?: string;
}

Hierarchy (view full)

Properties

caCert?: string
caKey?: string
clientCert?: string
clientKey?: string
clientReq?: string
serverCert?: string
serverKey?: string
serverReq?: string