diff options
author | Pauli <ppzgs1@gmail.com> | 2021-02-26 01:06:31 +0100 |
---|---|---|
committer | Pauli <ppzgs1@gmail.com> | 2021-02-28 08:25:49 +0100 |
commit | 05cdec396be03851e5a4eb9cca6205bdb970fd47 (patch) | |
tree | a2027ad93622fe6450d593edc2a17873b64d6aed /test/evp_test.c | |
parent | evp: add param argument to KDF derive call (diff) | |
download | openssl-05cdec396be03851e5a4eb9cca6205bdb970fd47.tar.xz openssl-05cdec396be03851e5a4eb9cca6205bdb970fd47.zip |
test: adjust tests to include extra argument to KDF derive call
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/14310)
Diffstat (limited to 'test/evp_test.c')
-rw-r--r-- | test/evp_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/evp_test.c b/test/evp_test.c index b9b1597be1..ef7ddd37fe 100644 --- a/test/evp_test.c +++ b/test/evp_test.c @@ -2464,7 +2464,7 @@ static int kdf_test_run(EVP_TEST *t) t->err = "INTERNAL_ERROR"; goto err; } - if (EVP_KDF_derive(expected->ctx, got, got_len) <= 0) { + if (EVP_KDF_derive(expected->ctx, got, got_len, NULL) <= 0) { t->err = "KDF_DERIVE_ERROR"; goto err; } |