From: Jouni Malinen Date: Fri, 29 May 2020 18:35:26 +0000 (+0300) Subject: DPP: Fix a typo in a comment X-Git-Tag: hostap_2_10~1238 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=32d3360f33cf1d74c6a506ec73f772264c6d349e;p=thirdparty%2Fhostap.git DPP: Fix a typo in a comment Signed-off-by: Jouni Malinen --- diff --git a/src/common/dpp_crypto.c b/src/common/dpp_crypto.c index 8bf2a74a6..8f884fd61 100644 --- a/src/common/dpp_crypto.c +++ b/src/common/dpp_crypto.c @@ -855,7 +855,7 @@ int dpp_derive_bk_ke(struct dpp_authentication *auth) "DPP: bk = HKDF-Extract(I-nonce | R-nonce, M.x | N.x [| L.x])", auth->bk, hash_len); - /* ke = HKDF-Expand(bkK, "DPP Key", length) */ + /* ke = HKDF-Expand(bk, "DPP Key", length) */ res = dpp_hkdf_expand(hash_len, auth->bk, hash_len, info_ke, auth->ke, hash_len); if (res < 0)