Hash chain
   HOME

TheInfoList



OR:

A hash chain is the successive application of a
cryptographic hash function A cryptographic hash function (CHF) is a hash algorithm (a map (mathematics), map of an arbitrary binary string to a binary string with a fixed size of n bits) that has special properties desirable for a cryptography, cryptographic application: ...
to a piece of data. In
computer security Computer security (also cybersecurity, digital security, or information technology (IT) security) is a subdiscipline within the field of information security. It consists of the protection of computer software, systems and computer network, n ...
, a hash chain is a method used to produce many one-time keys from a single key or
password A password, sometimes called a passcode, is secret data, typically a string of characters, usually used to confirm a user's identity. Traditionally, passwords were expected to be memorized, but the large number of password-protected services t ...
. For non-repudiation, a hash function can be applied successively to additional pieces of data in order to record the chronology of data's existence.


Definition

A hash chain is a successive application of a
cryptographic hash function A cryptographic hash function (CHF) is a hash algorithm (a map (mathematics), map of an arbitrary binary string to a binary string with a fixed size of n bits) that has special properties desirable for a cryptography, cryptographic application: ...
h to a string x. For example, h(h(h(h(x)))) gives a hash chain of length 4, often denoted h^(x)


Applications

Leslie LamportL. Lamport, “Password Authentication with Insecure Communication”, Communications of the ACM 24.11 (November 1981), pp 770-772

/ref> suggested the use of hash chains as a password protection scheme in an insecure environment. A server which needs to provide
authentication Authentication (from ''authentikos'', "real, genuine", from αὐθέντης ''authentes'', "author") is the act of proving an Logical assertion, assertion, such as the Digital identity, identity of a computer system user. In contrast with iden ...
may store a hash chain rather than a
plain text In computing, plain text is a loose term for data (e.g. file contents) that represent only characters of readable material but not its graphical representation nor other objects ( floating-point numbers, images, etc.). It may also include a lim ...
password and prevent theft of the password in transmission or theft from the server. For example, a server begins by storing h^(\mathrm) which is provided by the user. When the user wishes to authenticate, they supply h^(\mathrm) to the server. The server computes h(h^(\mathrm)) = h^(\mathrm) and verifies this matches the hash chain it has stored. It then stores h^(\mathrm) for the next time the user wishes to authenticate. An eavesdropper seeing h^(\mathrm) communicated to the server will be unable to re-transmit the same hash chain to the server for
authentication Authentication (from ''authentikos'', "real, genuine", from αὐθέντης ''authentes'', "author") is the act of proving an Logical assertion, assertion, such as the Digital identity, identity of a computer system user. In contrast with iden ...
since the server now expects h^(\mathrm). Due to the one-way property 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.


Winternitz chains

(also known as function chains) are used in hash-based cryptography. The chain is parameterized by the ''w'' (number of bits in a "digit" ''d'') and ''security parameter'' ''n'' (number of bits in the hash value, typically double the security strength, 256 or 512). The chain consists of 2^w values that are results of repeated application of a one-way "chain" function ''F'' to a secret key ''sk'': sk, F(sk), F(F(sk)), ..., F^(sk). The chain function is typically based on a standard
cryptographic hash A cryptographic hash function (CHF) is a hash algorithm (a map of an arbitrary binary string to a binary string with a fixed size of n bits) that has special properties desirable for a cryptographic application: * the probability of a particu ...
, but needs to be parameterized ("randomized"), so it involves few invocations of the underlying hash. In the Winternitz signature scheme a chain is used to encode one digit of the ''m''-bit message, so the Winternitz signature uses approximately mn/w bits, its calculation takes about 2^wm/w applications of the function F. Note that some signature standards (like
Extended Merkle signature scheme Extension, extend or extended may refer to: Mathematics Logic or set theory * Axiom of extensionality * Extensible cardinal * Extension (model theory) * Extension (proof theory) * Extension (predicate logic), the set of tuples of values that ...
, XMSS) define ''w'' as the number of possible values in a digit, so w=16 in XMSS corresponds to w=4 in standards (like Leighton-Micali Signature, LMS) that define ''w'' in the same way as above - as a number of bits in the digit.NIST SP 800-208, Recommendation for Stateful Hash-Based Signature Schemes
p. 5


Hash chain vs. blockchain

A hash chain is similar to a
blockchain The blockchain is a distributed ledger with growing lists of Record (computer science), records (''blocks'') that are securely linked together via Cryptographic hash function, cryptographic hashes. Each block contains a cryptographic hash of th ...
, as they both utilize a
cryptographic hash function A cryptographic hash function (CHF) is a hash algorithm (a map (mathematics), map of an arbitrary binary string to a binary string with a fixed size of n bits) that has special properties desirable for a cryptography, cryptographic application: ...
for creating a link between two nodes. However, a blockchain (as used by
Bitcoin Bitcoin (abbreviation: BTC; Currency symbol, sign: ₿) is the first Decentralized application, decentralized cryptocurrency. Based on a free-market ideology, bitcoin was invented in 2008 when an unknown entity published a white paper under ...
and related systems) is generally intended to support distributed agreement around a public ledger (data), and incorporates a set of rules for encapsulation of data and associated data permissions.


See also

*
Challenge–response authentication In computer security, challenge-response authentication is a family of protocols in which one party presents a question ("challenge") and another party must provide a valid answer ("response") to be authentication, authenticated. The simplest exa ...
* Hash list – In contrast to the recursive structure of hash chains, the elements of a hash list are independent of each other. *
One-time password A one-time password (OTP), also known as a one-time PIN, one-time passcode, one-time authorization code (OTAC) or dynamic password, is a password that is valid for only one login session or transaction, on a computer system or other digital dev ...
*
Key stretching In cryptography, key stretching techniques are used to make a possibly weak key, typically a password or passphrase, more secure against a brute-force attack by increasing the resources (time and possibly space) it takes to test each possible ke ...
*
Linked timestamping Linked timestamping is a type of trusted timestamping where issued time-stamps are related to each other. Each time-stamp would contain data that authenticates the time-stamp before it, the authentication would be authenticating the entire message ...
– Binary hash chains are a key component in linked timestamping. * X.509


References


Sources

* * * {{cite book , title = Progress in Cryptology – AFRICACRYPT 2013 , last1 = Hülsing , first1 = Andreas , chapter = W-OTS+ – Shorter Signatures for Hash-Based Signature Schemes , series = Lecture Notes in Computer Science , date = 2013a , volume = 7918 , pages = 173–188 , publisher = Springer Berlin Heidelberg , issn = 0302-9743 , eissn = 1611-3349 , doi = 10.1007/978-3-642-38553-7_10 , isbn = 978-3-642-38552-0 , chapter-url = https://eprint.iacr.org/2017/965.pdf Cryptographic algorithms