Skip to content

Commit

Permalink
fixup! Add additional EVP_SKEY helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
beldmit committed Feb 4, 2025
1 parent 09bdb9b commit 39a516e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/evp/kdf_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ int EVP_KDF_CTX_set_SKEY(EVP_KDF_CTX *ctx, EVP_SKEY *key, const char *paramname)
tmp_key = key;
}

ret = ctx->meth->set_skey(ctx->algctx, tmp_key->keydata, paramname);
ret = ctx->meth->set_skey(ctx->algctx, tmp_key->keydata, pname);
if (tmp_key != key)
EVP_SKEY_free(tmp_key);

Expand Down

0 comments on commit 39a516e

Please sign in to comment.