From 19937db0f2769bc9e4882b476901e446eaadb384 Mon Sep 17 00:00:00 2001 From: Tomas Mraz Date: Wed, 13 Sep 2023 16:56:58 +0200 Subject: [PATCH] Postponed further context duplication support for ciphers Reviewed-by: Matt Caswell Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/22094) --- test/evp_test.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/evp_test.c b/test/evp_test.c index f15b2c5a1732c..ff424eac729b4 100644 --- a/test/evp_test.c +++ b/test/evp_test.c @@ -735,9 +735,9 @@ static int cipher_test_enc(EVP_TEST *t, int enc, size_t out_misalign, int ok = 0, tmplen, chunklen, tmpflen, i; EVP_CIPHER_CTX *ctx_base = NULL; EVP_CIPHER_CTX *ctx = NULL, *duped; - int fips_dupctx_supported = (fips_provider_version_ge(libctx, 3, 0, 11) - && fips_provider_version_lt(libctx, 3, 1, 0)) - || fips_provider_version_ge(libctx, 3, 1, 3); + int fips_dupctx_supported = (fips_provider_version_ge(libctx, 3, 0, 12) + && fips_provider_version_lt(libctx, 3, 1, 0)) + || fips_provider_version_ge(libctx, 3, 1, 4); t->err = "TEST_FAILURE"; if (!TEST_ptr(ctx_base = EVP_CIPHER_CTX_new()))