Add test for resetting SM2 dist ID
authorTomas Mraz <tomas@openssl.org>
Wed, 6 Apr 2022 08:29:54 +0000 (10:29 +0200)
committerTomas Mraz <tomas@openssl.org>
Mon, 11 Apr 2022 09:45:04 +0000 (11:45 +0200)
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18052)

test/evp_extra_test.c

index caceb50fb61d07487edd390ef66f39b88bc2b010..d8dafef3a0184998acf9a3f70b574d24bd5bbff7 100644 (file)
@@ -1963,6 +1963,24 @@ static int test_EVP_SM2(void)
     if (!TEST_int_gt(EVP_DigestVerifyFinal(md_ctx_verify, sig, sig_len), 0))
         goto done;
 
+    /*
+     * Try verify again with non-matching 0 length id but ensure that it can
+     * be set on the context and overrides the previous value.
+     */
+
+    if (!TEST_true(EVP_DigestVerifyInit(md_ctx_verify, NULL, check_md, NULL,
+                                        pkey)))
+        goto done;
+
+    if (!TEST_int_gt(EVP_PKEY_CTX_set1_id(sctx, NULL, 0), 0))
+        goto done;
+
+    if (!TEST_true(EVP_DigestVerifyUpdate(md_ctx_verify, kMsg, sizeof(kMsg))))
+        goto done;
+
+    if (!TEST_int_eq(EVP_DigestVerifyFinal(md_ctx_verify, sig, sig_len), 0))
+        goto done;
+
     /* now check encryption/decryption */
 
     gparams[0] = OSSL_PARAM_construct_utf8_string(OSSL_ASYM_CIPHER_PARAM_DIGEST,