circu.js
    Preparing search index...

    Cipher object for streaming encryption/decryption

    interface Cipher {
        final(): ArrayBuffer;
        update(data: ArrayBuffer | Uint8Array<ArrayBufferLike>): ArrayBuffer;
    }
    Index

    Methods

    Methods

    • Finalize cipher and return remaining data

      Returns ArrayBuffer

      Final block as ArrayBuffer

    • Update cipher with new data

      Parameters

      • data: ArrayBuffer | Uint8Array<ArrayBufferLike>

        Data to encrypt/decrypt

      Returns ArrayBuffer

      Processed data as ArrayBuffer