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

    Interface OpenPgpVerification

    The result of verifying a single OpenPGP signature.

    interface OpenPgpVerification {
        keyId: string;
        verified: boolean;
        created: Date | null;
        digestAlgorithm: DigestAlgorithm;
    }
    Index
    keyId: string

    The hex key id of the signing key.

    verified: boolean

    Whether the signature is cryptographically valid.

    created: Date | null

    The signature creation time, when available.

    digestAlgorithm: DigestAlgorithm

    The digest algorithm the signature was made with, when known.