Interface CertDataOptions

interface CertDataOptions {
    cert: string;
    certificateTransparency?: boolean;
    countryName?: string;
    key: string;
    keyLength?: number;
    localityName?: string;
    organizationName?: string;
}

Hierarchy

  • BaseCAOptions
    • CertDataOptions

Properties

cert: string
certificateTransparency?: boolean

Whether to embed Signed Certificate Timestamps (SCTs) from derived CT log operators in generated leaf certificates.

countryName?: string

The countryName that will be used in the certificate for incoming TLS connections.

key: string
keyLength?: number

Minimum key length when generating certificates. Defaults to 2048.

localityName?: string

The localityName that will be used in the certificate for incoming TLS connections.

organizationName?: string

The organizationName that will be used in the certificate for incoming TLS connections.