summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorlan1120 <lanming@huawei.com>2023-12-13 19:02:29 +0800
committerTomas Mraz <tomas@openssl.org>2024-01-16 11:29:50 +0100
commit9ff970674b296f6b53f41e77d81beac7e8526cac (patch)
treeb914dc79a7e49b81d0beab7e4e01f242203d1ce7 /test
parentfc82a8f086470e00e6119a820c617337ed7de0e9 (diff)
Check whether the pubkey exists in ossl_ecx_key_dup
Signed-off-by: lan1120 <lanming@huawei.com> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22984) (cherry picked from commit aac531e5daa2edec5d47e702a7f115cf77fe07f9)
Diffstat (limited to 'test')
-rw-r--r--test/evp_pkey_provided_test.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/evp_pkey_provided_test.c b/test/evp_pkey_provided_test.c
index 3f490954ab..1f42959529 100644
--- a/test/evp_pkey_provided_test.c
+++ b/test/evp_pkey_provided_test.c
@@ -1130,6 +1130,12 @@ static int test_fromdata_ecx(int tst)
/* This should succeed because there are no parameters to copy */
|| !TEST_true(EVP_PKEY_copy_parameters(copy_pk, pk)))
goto err;
+ if (!TEST_ptr(ctx2 = EVP_PKEY_CTX_new_from_pkey(NULL, copy_pk, NULL))
+ /* This should fail because copy_pk has no pubkey */
+ || !TEST_int_le(EVP_PKEY_public_check(ctx2), 0))
+ goto err;
+ EVP_PKEY_CTX_free(ctx2);
+ ctx2 = NULL;
EVP_PKEY_free(copy_pk);
copy_pk = NULL;