Interface RatchetMessage

interface RatchetMessage {
    data: {
        keyIndex?: number;
        material: CryptoKey;
        participantIdentity: string;
    };
    kind: "ratchetKey";
}

Hierarchy (View Summary)

Properties

Properties

data: { keyIndex?: number; material: CryptoKey; participantIdentity: string }
kind: "ratchetKey"