Update pHkdfCtx to PHkdfCtx, to follow the variable naming rule. Cc: Jian Wang <jian.j.w...@intel.com> Cc: Ting Ye <ting...@intel.com> Signed-off-by: Shenglei Zhang <shenglei.zh...@intel.com> --- .../Library/BaseCryptLib/Kdf/CryptHkdf.c | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/CryptoPkg/Library/BaseCryptLib/Kdf/CryptHkdf.c b/CryptoPkg/Library/BaseCryptLib/Kdf/CryptHkdf.c index f0fcef211d3f..488346a38b8c 100644 --- a/CryptoPkg/Library/BaseCryptLib/Kdf/CryptHkdf.c +++ b/CryptoPkg/Library/BaseCryptLib/Kdf/CryptHkdf.c @@ -39,7 +39,7 @@ HkdfSha256ExtractAndExpand ( IN UINTN OutSize ) { - EVP_PKEY_CTX *pHkdfCtx; + EVP_PKEY_CTX *PHkdfCtx; BOOLEAN Result; if (Key == NULL || Salt == NULL || Info == NULL || Out == NULL || @@ -47,29 +47,29 @@ HkdfSha256ExtractAndExpand ( return FALSE; } - pHkdfCtx = EVP_PKEY_CTX_new_id(EVP_PKEY_HKDF, NULL); - if (pHkdfCtx == NULL) { + PHkdfCtx = EVP_PKEY_CTX_new_id(EVP_PKEY_HKDF, NULL); + if (PHkdfCtx == NULL) { return FALSE; } - Result = EVP_PKEY_derive_init(pHkdfCtx) > 0; + Result = EVP_PKEY_derive_init(PHkdfCtx) > 0; if (Result) { - Result = EVP_PKEY_CTX_set_hkdf_md(pHkdfCtx, EVP_sha256()) > 0; + Result = EVP_PKEY_CTX_set_hkdf_md(PHkdfCtx, EVP_sha256()) > 0; } if (Result) { - Result = EVP_PKEY_CTX_set1_hkdf_salt(pHkdfCtx, Salt, (UINT32)SaltSize) > 0; + Result = EVP_PKEY_CTX_set1_hkdf_salt(PHkdfCtx, Salt, (UINT32)SaltSize) > 0; } if (Result) { - Result = EVP_PKEY_CTX_set1_hkdf_key(pHkdfCtx, Key, (UINT32)KeySize) > 0; + Result = EVP_PKEY_CTX_set1_hkdf_key(PHkdfCtx, Key, (UINT32)KeySize) > 0; } if (Result) { - Result = EVP_PKEY_CTX_add1_hkdf_info(pHkdfCtx, Info, (UINT32)InfoSize) > 0; + Result = EVP_PKEY_CTX_add1_hkdf_info(PHkdfCtx, Info, (UINT32)InfoSize) > 0; } if (Result) { - Result = EVP_PKEY_derive(pHkdfCtx, Out, &OutSize) > 0; + Result = EVP_PKEY_derive(PHkdfCtx, Out, &OutSize) > 0; } - EVP_PKEY_CTX_free(pHkdfCtx); - pHkdfCtx = NULL; + EVP_PKEY_CTX_free(PHkdfCtx); + PHkdfCtx = NULL; return Result; } -- 2.18.0.windows.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#45702): https://edk2.groups.io/g/devel/message/45702 Mute This Topic: https://groups.io/mt/32884778/21656 Group Owner: devel+ow...@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [arch...@mail-archive.com] -=-=-=-=-=-=-=-=-=-=-=-