fast-fs-hash - v0.0.0-rc4
    Preparing search index...

    Variable digestBufferToConst

    digestBufferTo: <TOut extends Uint8Array = Buffer>(
        input: Uint8Array,
        out: TOut,
        outOffset?: number,
    ) => TOut = XxHash128Stream.digestBufferTo

    Hash an entire binary buffer and write the digest into out.

    Type Declaration

      • <TOut extends Uint8Array = Buffer>(
            input: Uint8Array,
            out: TOut,
            outOffset?: number,
        ): TOut
      • Type Parameters

        • TOut extends Uint8Array = Buffer

        Parameters

        • input: Uint8Array

          The buffer to hash.

        • out: TOut

          Destination buffer (must have at least 16 bytes from outOffset).

        • OptionaloutOffset: number

          Byte offset into out. Default 0.

        Returns TOut