From: Tomas Mraz Date: Wed, 13 Sep 2023 14:56:58 +0000 (+0200) Subject: Postponed further context duplication support for ciphers X-Git-Tag: openssl-3.2.0-alpha2~60 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=19937db0f2769bc9e4882b476901e446eaadb384;p=thirdparty%2Fopenssl.git Postponed further context duplication support for ciphers Reviewed-by: Matt Caswell Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/22094) --- diff --git a/test/evp_test.c b/test/evp_test.c index f15b2c5a173..ff424eac729 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()))