Rolling hash

A rolling hash (also known as recursive hashing or rolling checksum) is a hash function where the input is hashed in a window that moves through the input.

A few hash functions allow a rolling hash to be computed very quickly—the new hash value is rapidly calculated given only the old hash value, the old value removed from the window, and the new value added to the window—similar to the way a function can be computed much more quickly than other low-pass filters.

One of the main applications is the , which uses the rolling hash described below. Another popular application is the program, which uses a checksum based on Mark Adler’s adler-32 as its rolling hash. Low Bandwidth Network Filesystem (LBFS) uses a as its rolling hash.

At best, rolling hash values are or strongly universal. They cannot be 3-wise independent, for example.

Contents

Rabin–Karp rolling hash

The is normally used with a very simple rolling hash function that only uses multiplications and additions:

H = c_1 a^{k-1} + c_2 a^{k-2} + c_3 a^{k-3} + ... + c_k a^{0},

where a is a constant, and c_1, ..., c_k are the input characters.

In order to avoid manipulating huge H values, all math is done n. The choice of a and n is critical to get good hashing; see for more discussion.

Removing and adding characters simply involves adding or subtracting the first or last term. Shifting all characters by one position to the left requires multiplying the entire sum H by a. Shifting all characters by one position to the right requires dividing the entire sum H by a. Note that in modulo arithmetic, a can be chosen to have a a^{-1} by which H can be multiplied to get the result of the division without actually performing a division.

Content-based slicing using Rabin–Karp hash

One of the interesting use cases of the rolling hash function is that it can create dynamic, content-based chunks of a stream or file. This is especially useful when it is required to send only the changed chunks of a large file over a network and a simple byte addition at the front of the file would cause all the fixed size windows to become updated, while in reality, only the first “chunk” has been modified.

The simplest approach to calculate the dynamic chunks is to calculate the rolling hash and if it matches a pattern (like the lower N bits are all zeroes) then it’s a chunk boundary. This approach will ensure that any change in the file will only affect its current and possibly the next chunk, but nothing else.

When the boundaries are known, the chunks need to be compared by their hash values to detect which one was modified and needs transfer across the network.

Cyclic polynomial

Hashing by cyclic polynomial—sometimes called Buzhash—is also simple, but it has the benefit of avoiding multiplications, using instead. It is a form of tabulation hashing: it presumes that there is some hash function h from characters to integers in the interval [0,2^L). This hash function might be simply an array or a mapping characters to random integers. Let the function s be a cyclic binary rotation (or ): it rotates the bits by 1 to the left, pushing the latest bit in the first position. E.g., s(10011)=00111. Let oplus be the bitwise . The hash values are defined as

 H = s^{k-1}(h( c_1 )) oplus s^{k-2}( h(c_2) ) oplus ldots oplus s( h(c_{k-1}) ) oplus h(c_k),

where the multiplications by powers of two can be implemented by binary shifts. The result is a number in [0,2^L).

Computing the hash values in a rolling fashion is done as follows. Let H be the previous hash value. Rotate H once: H leftarrow s(H). If c_1 is the character to be removed, rotate it k times: s^{k}(h( c_1 )). Then simply set

H leftarrow s(H) oplus s^{k}(h( c_1 )) oplus h(c_{k+1}),

where c_{k+1} is the new character.

Hashing by cyclic polynomials is strongly universal or pairwise independent: simply keep the first L-k+1 bits. That is, take the result H and dismiss any k-1 consecutive bits.

S(n) = sum_{i = n - 8195}^{n} c_i,
H(n) = S(n) mod 4096,

where

  • S(n) is the sum of 8196 consecutive bytes ending with byte n (requires 21 bits of storage),
  • c_i is byte i of the file,
  • H(n) is a “hash value” consisting of the bottom 12 bits of S(n).

Shifting the window by one byte simply involves adding the new character to the sum and subtracting the oldest character (no longer in the window) from the sum.

For every n where H(n) == 0, these programs cut the file between n and n+1. This approach will ensure that any change in the file will only affect its current and possibly the next chunk, but no other chunk.

Computational complexity

All rolling hash functions are linear in the number of characters, but their complexity with respect to the length of the window (k) varies. Rabin–Karp rolling hash requires the multiplications of two k-bit numbers, is in O(k log k 2^{O(log^*k)}). Hashing by cyclic polynomials can be done in linear time.

Software

  • rollinghashcpp is a C++ implementation of several rolling hash functions
  • rollinghashjava is an Apache-licensed Java implementation of rolling hash functions

See Also on BitcoinWiki

External links

Footnotes


Source

http://wikipedia.org/