ts-algochat
    Preparing search index...

    Interface PSKEnvelope

    PSK envelope wire format

    interface PSKEnvelope {
        ciphertext: Uint8Array;
        encryptedSenderKey: Uint8Array;
        ephemeralPublicKey: Uint8Array;
        nonce: Uint8Array;
        protocolId: number;
        ratchetCounter: number;
        senderPublicKey: Uint8Array;
        version: number;
    }
    Index

    Properties

    ciphertext: Uint8Array
    encryptedSenderKey: Uint8Array
    ephemeralPublicKey: Uint8Array
    nonce: Uint8Array
    protocolId: number
    ratchetCounter: number
    senderPublicKey: Uint8Array
    version: number