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

    Interface OpenPgpDecryptResult

    The result of decrypting (and optionally verifying) an OpenPGP message.

    interface OpenPgpDecryptResult {
        data: Uint8Array;
        signatures: OpenPgpVerification[];
    }
    Index
    data: Uint8Array

    The decrypted plaintext bytes.

    signatures: OpenPgpVerification[]

    Signature verifications, when verification keys were supplied.