Add ifndef to seed-src_jitter too

Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Paul Dale <ppzgs1@gmail.com>
(Merged from https://github.com/openssl/openssl/pull/25930)
This commit is contained in:
Dimitri John Ledkov 2025-02-23 17:50:21 +00:00 committed by Neil Horman
parent aa5f1b4cf5
commit a7c0fa601e

View File

@ -295,6 +295,7 @@ static size_t jitter_get_seed(void *vseed, unsigned char **pout,
return ret;
}
# ifndef OPENSSL_NO_FIPS_JITTER
size_t ossl_rand_jitter_get_seed(unsigned char **pout, int entropy, size_t min_len, size_t max_len)
{
size_t ret = 0;
@ -310,6 +311,7 @@ size_t ossl_rand_jitter_get_seed(unsigned char **pout, int entropy, size_t min_l
jitter_free(s);
return ret;
}
# endif
static void jitter_clear_seed(ossl_unused void *vdrbg,
unsigned char *out, size_t outlen)