Skip to content

Commit

Permalink
Prepare for 1.0.9 (2.3.2.27) release (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericeberry authored Aug 21, 2023
1 parent fad2e3c commit 2d158bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/main/cpp/exchange.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ static Sec_Result hkdf(SEC_BYTE* key, SEC_SIZE key_len, SEC_BYTE* out, const SEC
return SEC_RESULT_FAILURE;
}

if (EVP_PKEY_CTX_set1_hkdf_key(pctx, key, key_len) <= 0) {
if (EVP_PKEY_CTX_set1_hkdf_key(pctx, key, static_cast<int>(key_len)) <= 0) {
EVP_PKEY_CTX_free(pctx);
return SEC_RESULT_FAILURE;
}
Expand Down

0 comments on commit 2d158bc

Please sign in to comment.