Utility class for basic binary hash calculation and binary equality comparison.

用于基本的二进制哈希计算和二进制相等性判断的工具类。

构造函数

方法

构造函数

方法

  • 参数

    • buffer: Uint8Array

      The binary data to hash.

    • start: number

      The starting position within the buffer.

    • len: number

      The length of data to consider for the hash calculation.

    • magic: number = 9191891

      A large prime number used as the modulus in the hash calculation, defaults to 9191891.

    返回 number

    The calculated hash value as a number.

    Calculates the hash value of a binary buffer.

    计算二进制缓冲区的哈希值。

  • 参数

    • buffer1: Uint8Array

      The first binary data buffer.

    • start1: number

      The starting position within the first buffer.

    • len1: number

      The length of data to compare in the first buffer.

    • buffer2: Uint8Array

      The second binary data buffer.

    • start2: number

      The starting position within the second buffer.

    • len2: number

      The length of data to compare in the second buffer.

    返回 boolean

    True if the data segments are equal, false otherwise.

    Compares two binary data segments for equality.

    比较两段二进制数据是否相等。