From: Pauli Date: Wed, 13 Aug 2025 02:59:22 +0000 (+1000) Subject: ctr drbg: make indicator parameter conditional on FIPS X-Git-Tag: openssl-3.6.0-alpha1~110 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=226b5a5ea48ecf06aa985ef20da90bb99d57bb93;p=thirdparty%2Fopenssl.git ctr drbg: make indicator parameter conditional on FIPS Reviewed-by: Shane Lontis Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/28243) --- diff --git a/providers/implementations/rands/drbg_ctr.c.in b/providers/implementations/rands/drbg_ctr.c.in index 2a19f71a968..9d129ef9db3 100644 --- a/providers/implementations/rands/drbg_ctr.c.in +++ b/providers/implementations/rands/drbg_ctr.c.in @@ -689,7 +689,7 @@ static void drbg_ctr_free(void *vdrbg) ['DRBG_PARAM_RESEED_TIME', 'reseed_time', 'time_t'], ['DRBG_PARAM_RESEED_REQUESTS', 'reseed_req', 'uint'], ['DRBG_PARAM_RESEED_TIME_INTERVAL', 'reseed_int', 'uint64'], - ['KDF_PARAM_FIPS_APPROVED_INDICATOR', 'ind', 'int'], + ['KDF_PARAM_FIPS_APPROVED_INDICATOR', 'ind', 'int', 'fips'], )); -} static int drbg_ctr_get_ctx_params(void *vdrbg, OSSL_PARAM params[])