Interface GatewayCertificateIssuanceOptions

interface GatewayCertificateIssuanceOptions {
    issuerCertificate?: Certificate;
    issuerPrivateKey: CryptoKey;
    subjectPublicKey: CryptoKey;
    validityEndDate: Date;
    validityStartDate?: Date;
}

Hierarchy

  • BasicCertificateIssuanceOptions
    • GatewayCertificateIssuanceOptions

Properties

issuerCertificate?: Certificate
issuerPrivateKey: CryptoKey
subjectPublicKey: CryptoKey
validityEndDate: Date
validityStartDate?: Date

Generated using TypeDoc