From 32d3360f33cf1d74c6a506ec73f772264c6d349e Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Fri, 29 May 2020 21:35:26 +0300 Subject: [PATCH] DPP: Fix a typo in a comment Signed-off-by: Jouni Malinen --- src/common/dpp_crypto.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)