Interface RatchetMessage

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

Hierarchy (view full)

Properties

Properties

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

Type declaration

  • Optional keyIndex?: number
  • material: CryptoKey
  • participantIdentity: string
kind: "ratchetKey"