fix build with openssl 3.0.0

This commit is contained in:
orignal 2021-10-23 18:10:02 -04:00
parent f1990bc2ab
commit 921ec9ec12
2 changed files with 2 additions and 2 deletions

View file

@ -1277,7 +1277,7 @@ namespace crypto
EVP_PKEY_CTX_set1_hkdf_key (pctx, tempKey, len);
}
if (info.length () > 0)
EVP_PKEY_CTX_add1_hkdf_info (pctx, info.c_str (), info.length ());
EVP_PKEY_CTX_add1_hkdf_info (pctx, (const uint8_t *)info.c_str (), info.length ());
EVP_PKEY_derive (pctx, out, &outLen);
EVP_PKEY_CTX_free (pctx);
#else