HKDF

HKDF is a simple key derivation function (KDF) based on a hash-based message authentication[1] code (HMAC).[2] It was initially proposed by its authors as a building block in various protocols and applications, as well as to discourage the proliferation of multiple KDF mechanisms.[2] The main approach HKDF follows is the "extract-then-expand" paradigm, where the KDF logically consists of two modules: the first stage takes the input keying material and "extracts" from it a fixed-length pseudorandom key, and then the second stage "expands" this key into several additional pseudorandom keys (the output of the KDF).[2]

It can be used, for example, to convert shared secrets exchanged via Diffie–Hellman into key material suitable for use in encryption, integrity checking or authentication.[1]

It is formally described in the RFC 5869.[2] One of its authors also described the algorithm in a companion paper in 2010.[1]

In November, 2011, NIST released SP 800-56C[3], superseded in April, 2018 by SP 800-56C Rev. 1[4]. Both state that HKDF's specification[2] is a conforming scheme and point to its paper[1] for the rationale for the recommendations' extract-and-expand mechanisms.

There are implementations of HKDF for C#, Go,[5] Java,[6] JavaScript,[7] Perl, PHP,[8] Python,[9] Ruby and other languages.

Mechanism

HKDF extracts a pseudorandom key (PRK) using an HMAC hash function (e.g. HMAC-SHA256) on an optional salt (acting as a key) and any potentially weak input key material (IKM) (acting as data). It then generates similarly cryptographically strong output key material (OKM) of any desired length by repeatedly generating PRK-keyed hash-blocks and then appending them into the output key material, finally truncating to the desired length.

For added security, the PRK-keyed HMAC-hashed blocks are chained during their generation by prepending the previous hash block to an incrementing 8-bit counter with an optional context string in the middle before being hashed by HMAC to generate the current hash block.

Note: HKDF does not amplify entropy but does allow a large source of weaker entropy to be utilised more evenly and effectively.

Uses

HKDF has two primary and potentially independent uses:

1. To "extract" (condense/blend) entropy from a larger random source to provide a more uniformly unbiased and higher entropy but smaller output (e.g., an encryption key). This is done by utilising the diffusion properties of cryptographic MACs.

2. To "expand" the generated output of an already reasonably random input such as an existing shared key into a larger cryptographically independent output, thereby producing multiple keys deterministically from that initial shared key, so that the same process may produce those same secret keys safely on multiple devices, as long as the same inputs are utilised.

These two functions may also be combined and used to form a PRNG to improve a random number generator's potentially-biased output, as well as to protect it from analysis and help defend the random number generation from malicious inputs.

Example: Python implementation

#!/usr/bin/env python3
import hashlib
import hmac
from math import ceil

hash_len = 32
def hmac_sha256(key, data):
    return hmac.new(key, data, hashlib.sha256).digest()

def hkdf(length: int, ikm, salt: bytes = b"", info: bytes = b"") -> bytes:
    if len(salt) == 0:
        salt = bytes([0]*hash_len)
    prk = hmac_sha256(salt, ikm)
    t = b""
    okm = b""
    for i in range(ceil(length / hash_len)):
        t = hmac_sha256(prk, t + info + bytes([1+i]))
        okm += t
    return okm[:length]

References

  1. Krawczyk, Hugo (2010). "Cryptographic Extraction and Key Derivation: The HKDF Scheme" (PDF). Cryptology ePrint Archive. International Association for Cryptologic Research.
  2. Krawczyk, H.; Eronen, P. (May 2010). "RFC 5869". Internet Engineering Task Force.
  3. Lily Chen (November 2011). "Recommendation for Key Derivation through Extraction-then-Expansion". NIST Special Publication 800-series. National Institute of Standards and Technology. Cite journal requires |journal= (help)
  4. Elaine Barker; Lily Chen; Richard Davis (April 2018). "Recommendation for Key-Derivation Methods in Key-Establishment Schemes". NIST Special Publication 800-series. National Institute of Standards and Technology. Cite journal requires |journal= (help)
  5. "package hkdf". godoc.org.
  6. "A standalone Java 7 implementation of HMAC-based key derivation function". github.com.
  7. "Node.js implementation of RFC5869: HMAC-based Extract-and-Expand Key Derivation Function". npmjs.com.
  8. "hash_hkdf — Generate a HKDF key derivation of a supplied key input". php.net.
  9. "HMAC-based Extract-and-Expand Key Derivation Function (HKDF) implemented in Python". github.com.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.