mimekit-ts - v1.0.0
    Preparing search index...

    Interface IDigitalCertificate

    An interface for a digital certificate.

    interface IDigitalCertificate {
        publicKeyAlgorithm: PublicKeyAlgorithm;
        creationDate: Date;
        expirationDate: Date;
        fingerprint: string;
        email: string | null;
        name: string | null;
    }

    Implemented by

    Index
    publicKeyAlgorithm: PublicKeyAlgorithm

    The public key algorithm supported by the certificate.

    creationDate: Date

    The date the certificate was created.

    expirationDate: Date

    The expiration date of the certificate.

    fingerprint: string

    The fingerprint of the certificate.

    email: string | null

    The email address of the owner of the certificate.

    name: string | null

    The name of the owner of the certificate.