circu.js
    Preparing search index...

    Hash object for streaming hash computation

    interface Hash {
        digest(): ArrayBuffer;
        update(data: ArrayBuffer | Uint8Array<ArrayBufferLike>): this;
    }
    Index

    Methods

    Methods

    • Finalize hash and return digest

      Returns ArrayBuffer

      Hash digest as ArrayBuffer

    • Update hash with new data

      Parameters

      • data: ArrayBuffer | Uint8Array<ArrayBufferLike>

        Data to hash

      Returns this

      this for chaining