test/evp_extra_test.c: Add EVP_PKEY comparisons in test_EC_priv_pub()
authorRichard Levitte <levitte@openssl.org>
Fri, 10 Dec 2021 12:18:42 +0000 (13:18 +0100)
committerRichard Levitte <levitte@openssl.org>
Mon, 13 Dec 2021 06:52:53 +0000 (07:52 +0100)
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/16765)

test/evp_extra_test.c

index bd6ff414d09b22d062ab96b789e44c4eaaea7c65..0d5bd5e3f757ee871b768e21bd74357d6a2c6632 100644 (file)
@@ -980,6 +980,20 @@ static int test_EC_priv_pub(void)
     if (!test_selection(params_and_keypair, EVP_PKEY_KEYPAIR))
         goto err;
 
+    /* Try key equality */
+    if (!TEST_int_gt(EVP_PKEY_parameters_eq(just_params, just_params), 0)
+        || !TEST_int_gt(EVP_PKEY_parameters_eq(just_params, params_and_pub),
+                        0)
+        || !TEST_int_gt(EVP_PKEY_parameters_eq(just_params, params_and_priv),
+                        0)
+        || !TEST_int_gt(EVP_PKEY_parameters_eq(just_params, params_and_keypair),
+                        0)
+        || !TEST_int_gt(EVP_PKEY_eq(params_and_pub, params_and_pub), 0)
+        || !TEST_int_gt(EVP_PKEY_eq(params_and_priv, params_and_priv), 0)
+        || !TEST_int_gt(EVP_PKEY_eq(params_and_keypair, params_and_pub), 0)
+        || !TEST_int_gt(EVP_PKEY_eq(params_and_keypair, params_and_priv), 0))
+        goto err;
+
     ret = 1;
  err:
     OSSL_PARAM_free(params);