matrix-js-sdk
    Preparing search index...

    Interface EventDecryptionResult

    The result of a (successful) call to CryptoBackend.decryptEvent

    interface EventDecryptionResult {
        claimedEd25519Key?: string;
        clearEvent: IClearEvent;
        forwardingCurve25519KeyChain?: string[];
        keyForwardedBy?: string;
        senderCurve25519Key?: string;
    }
    Index

    Properties

    claimedEd25519Key?: string

    ed25519 key claimed by the sender of this event. See MatrixEvent#getClaimedEd25519Key.

    clearEvent: IClearEvent

    The plaintext payload for the event (typically containing type and content fields).

    forwardingCurve25519KeyChain?: string[]
    keyForwardedBy?: string

    If another user forwarded the key to this message (eg via MSC4268), the ID of that user.

    senderCurve25519Key?: string

    Key owned by the sender of this event. See MatrixEvent#getSenderKey.