Interface X509CertificateCreateParamsBase

Base arguments for certificate creation

interface X509CertificateCreateParamsBase {
    extensions?: Extension[];
    notAfter?: Date;
    notBefore?: Date;
    serialNumber?: string;
    signingAlgorithm?: Algorithm | EcdsaParams;
}

Hierarchy

Properties

extensions?: Extension[]

List of extensions

notAfter?: Date

Date after which certificate can't be used. Default is 1 year from now

notBefore?: Date

Date before which certificate can't be used. Default is current date

serialNumber?: string

Hexadecimal serial number. If not specified, random value will be generated

signingAlgorithm?: Algorithm | EcdsaParams

Signing algorithm. Default is SHA-256 with key algorithm

Generated using TypeDoc