Hash chain


A hash chain is the successive application of a cryptographic hash function to a piece of data. In , a hash chain is a method to produce many from a single or password. For a hash function can be applied successively to additional pieces of data in order to record the chronology of data’s existence.

Contents

Definition

A hash chain is a successive application of a cryptographic hash function <math>h</math> to a string <math>x</math>.

For example,

<math>h(h(h(h(x))))</math> gives a hash chain of length 4, often denoted <math>h^{4}(x)</math>

Applications

suggested the use of hash chains as a password protection scheme in an insecure environment. A server which needs to provide authentication may store a hash chain rather than a password and prevent theft of the password in transmission or theft from the server. For example, a server begins by storing <math>h^{1000}(password)</math> which is provided by the user. When the user wishes to authenticate, he supplies <math>h^{999}(password)</math> to the server. The server computes <math>h(h^{999}(password)) = h^{1000}(password)</math> and verifies this matches the hash chain it has stored. It then stores <math>h^{999}(password)</math> for the next time the user wishes to authenticate.

An eavesdropper seeing <math>h^{999}(password)</math> communicated to the server will be unable to re-transmit the same hash chain to the server for authentication since the server now expects <math>h^{998}(password)</math>. Due to the of cryptographically secure hash functions, it is infeasible for the eavesdropper to reverse the hash function and obtain an earlier piece of the hash chain. In this example, the user could authenticate 1000 times before the hash chain were exhausted. Each time the hash value is different, and thus cannot be duplicated by an attacker.

Binary hash chains

Binary hash chains are commonly used in association with a hash tree. A Binary hash chain takes two hash values as inputs, concatenates them and applies a hash function to the result, thereby producing a third hash value.

The above diagram shows a hash tree consisting of eight leaf nodes and the hash chain for the third leaf node. In addition to the hash values themselves the order of concatenation (right or left 1,0) or “order bits” are necessary to complete the hash chain.

Hash chain vs Blockchain

A hash chain is similar to a blockchain, as they both utilize a cryptographic hash function for creating a link between two nodes. However, a blockchain (as used by Bitcoin and related systems) is generally intended to support distributed consensus around a public ledger (data), and incorporates a set of rules for encapsulation of data and associated data permissions.

See Also on BitcoinWiki

  • Hash list – In contrast to the recursive structure of hash chains, the elements of a hash list are independent of each other.
  • – Binary hash chains are a key component in linked timestamping.

Source

http://wikipedia.org/