fbpx
Wikipedia

Hash chain

A hash chain is the successive application of a cryptographic hash function to a piece of data. In computer security, a hash chain is a method to produce many one-time keys from a single key or password. 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   to a string  .

For example,

  gives a hash chain of length 4, often denoted  

Applications

Leslie Lamport[1] 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 plain text password and prevent theft of the password in transmission or theft from the server. For example, a server begins by storing   which is provided by the user. When the user wishes to authenticate, they supply   to the server. The server computes   and verifies this matches the hash chain it has stored. It then stores   for the next time the user wishes to authenticate.

An eavesdropper seeing   communicated to the server will be unable to re-transmit the same hash chain to the server for authentication since the server now expects  . 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

Winternitz chains (also known as function chains[2]) are used in hash-based cryptography. The chain is parameterized by the Winternitz parameter w (number of bits in a "digit" d) and security parameter n (number of bits in the hash value, typically double the security strength,[3] 256 or 512). The chain consists of   values that are results of repeated application of a one-way "chain" function F to a secret key sk:  . The chain function is typically based on a standard cryptographic hash, but needs to be parameterized ("randomized"[4]), so it involves few invocations of the underlying hash.[5] In the Winternitz signature scheme a chain is used to encode one digit of the m-bit message, so the Winternitz signature uses approximately   bits, its calculation takes about   applications of the function F.[3] Note that some signature standards (like Extended Merkle signature scheme, XMSS) define w as the number of possible values in a digit, so   in XMSS corresponds to   in standards (like Leighton-Micali Signature, LMS) that define w in the same way as above - as a number of bits in the digit.[6]

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 agreement around a public ledger (data), and incorporates a set of rules for encapsulation of data and associated data permissions.

See also

References

  1. ^ L. Lamport, “Password Authentication with Insecure Communication”, Communications of the ACM 24.11 (November 1981), pp 770-772. [1]
  2. ^ Hülsing 2013b, pp. 18–20.
  3. ^ a b Buchmann et al. 2011, p. 2.
  4. ^ Hülsing 2013b.
  5. ^ RFC 8391
  6. ^ NIST SP 800-208, Recommendation for Stateful Hash-Based Signature Schemes, p. 5

Sources

  • Buchmann, Johannes; Dahmen, Erik; Ereth, Sarah; Hülsing, Andreas; Rückert, Markus (2011). "On the Security of the Winternitz One-Time Signature Scheme" (PDF). Lecture Notes in Computer Science. Vol. 6737. Springer Berlin Heidelberg. pp. 363–378. doi:10.1007/978-3-642-21969-6_23. eISSN 1611-3349. ISBN 978-3-642-21968-9. ISSN 0302-9743.
  • Hülsing, Andreas (2013b). Practical Forward Secure Signatures using Minimal Security Assumptions (PDF) (PhD). TU Darmstadt.
  • Hülsing, Andreas (2013a). "W-OTS+ – Shorter Signatures for Hash-Based Signature Schemes" (PDF). Progress in Cryptology – AFRICACRYPT 2013. Lecture Notes in Computer Science. Vol. 7918. Springer Berlin Heidelberg. pp. 173–188. doi:10.1007/978-3-642-38553-7_10. eISSN 1611-3349. ISBN 978-3-642-38552-0. ISSN 0302-9743.

hash, chain, this, article, multiple, issues, please, help, improve, discuss, these, issues, talk, page, learn, when, remove, these, template, messages, this, article, needs, additional, citations, verification, please, help, improve, this, article, adding, ci. This article has multiple issues Please help improve it or discuss these issues on the talk page Learn how and when to remove these template messages This article needs additional citations for verification Please help improve this article by adding citations to reliable sources Unsourced material may be challenged and removed Find sources Hash chain news newspapers books scholar JSTOR February 2019 Learn how and when to remove this template message The topic of this article may not meet Wikipedia s general notability guideline Please help to demonstrate the notability of the topic by citing reliable secondary sources that are independent of the topic and provide significant coverage of it beyond a mere trivial mention If notability cannot be shown the article is likely to be merged redirected or deleted Find sources Hash chain news newspapers books scholar JSTOR December 2020 Learn how and when to remove this template message Learn how and when to remove this template message A hash chain is the successive application of a cryptographic hash function to a piece of data In computer security a hash chain is a method to produce many one time keys from a single key or password 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 Contents 1 Definition 2 Applications 3 Binary hash chains 4 Winternitz chains 5 Hash chain vs blockchain 6 See also 7 References 8 SourcesDefinition EditA hash chain is a successive application of a cryptographic hash function h displaystyle h to a string x displaystyle x For example h h h h x displaystyle h h h h x gives a hash chain of length 4 often denoted h 4 x displaystyle h 4 x Applications EditMain article S KEY Leslie Lamport 1 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 plain text password and prevent theft of the password in transmission or theft from the server For example a server begins by storing h 1000 p a s s w o r d displaystyle h 1000 mathrm password which is provided by the user When the user wishes to authenticate they supply h 999 p a s s w o r d displaystyle h 999 mathrm password to the server The server computes h h 999 p a s s w o r d h 1000 p a s s w o r d displaystyle h h 999 mathrm password h 1000 mathrm password and verifies this matches the hash chain it has stored It then stores h 999 p a s s w o r d displaystyle h 999 mathrm password for the next time the user wishes to authenticate An eavesdropper seeing h 999 p a s s w o r d displaystyle h 999 mathrm password communicated to the server will be unable to re transmit the same hash chain to the server for authentication since the server now expects h 998 p a s s w o r d displaystyle h 998 mathrm password 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 EditMain article Merkle tree 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 EditWinternitz chains also known as function chains 2 are used in hash based cryptography The chain is parameterized by the Winternitz parameter w number of bits in a digit d and security parameter n number of bits in the hash value typically double the security strength 3 256 or 512 The chain consists of 2 w displaystyle 2 w values that are results of repeated application of a one way chain function F to a secret key sk s k F s k F F s k F 2 w 1 s k displaystyle sk F sk F F sk F 2 w 1 sk The chain function is typically based on a standard cryptographic hash but needs to be parameterized randomized 4 so it involves few invocations of the underlying hash 5 In the Winternitz signature scheme a chain is used to encode one digit of the m bit message so the Winternitz signature uses approximately m n w displaystyle mn w bits its calculation takes about 2 w m w displaystyle 2 w m w applications of the function F 3 Note that some signature standards like Extended Merkle signature scheme XMSS define w as the number of possible values in a digit so w 16 displaystyle w 16 in XMSS corresponds to w 4 displaystyle 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 6 Hash chain vs blockchain EditA 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 agreement around a public ledger data and incorporates a set of rules for encapsulation of data and associated data permissions See also EditChallenge response authentication 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 Key stretching Linked timestamping Binary hash chains are a key component in linked timestamping X 509References Edit L Lamport Password Authentication with Insecure Communication Communications of the ACM 24 11 November 1981 pp 770 772 1 Hulsing 2013b pp 18 20 a b Buchmann et al 2011 p 2 Hulsing 2013b RFC 8391 NIST SP 800 208 Recommendation for Stateful Hash Based Signature Schemes p 5Sources EditBuchmann Johannes Dahmen Erik Ereth Sarah Hulsing Andreas Ruckert Markus 2011 On the Security of the Winternitz One Time Signature Scheme PDF Lecture Notes in Computer Science Vol 6737 Springer Berlin Heidelberg pp 363 378 doi 10 1007 978 3 642 21969 6 23 eISSN 1611 3349 ISBN 978 3 642 21968 9 ISSN 0302 9743 Hulsing Andreas 2013b Practical Forward Secure Signatures using Minimal Security Assumptions PDF PhD TU Darmstadt Hulsing Andreas 2013a W OTS Shorter Signatures for Hash Based Signature Schemes PDF Progress in Cryptology AFRICACRYPT 2013 Lecture Notes in Computer Science Vol 7918 Springer Berlin Heidelberg pp 173 188 doi 10 1007 978 3 642 38553 7 10 eISSN 1611 3349 ISBN 978 3 642 38552 0 ISSN 0302 9743 Retrieved from https en wikipedia org w index php title Hash chain amp oldid 1137088355, wikipedia, wiki, book, books, library,

article

, read, download, free, free download, mp3, video, mp4, 3gp, jpg, jpeg, gif, png, picture, music, song, movie, book, game, games.