=pod =head1 NAME EVP_RAND-CRNG-TEST - The FIPS health testing EVP_RAND filter =head1 DESCRIPTION This B object acts a filter between the entropy source and its users. It performs CRNG health tests as defined in L Section 4 "Health Tests". Most requests are forwarded to the entropy source, either via its parent reference or via the provider entropy upcalls. =head2 Identity "CRNG-TEST" is the name for this implementation; it can be used with the EVP_RAND_fetch() function. =head2 Supported parameters If a parent EVP_RAND is specified on context creation, the parent's parameters are supported because the request is forwarded to the parent seed source for processing. If no parent EVP_RAND is specified on context creation, the following parameters are supported: =over 4 =item "state" (B) =item "strength" (B) =item "max_request" (B) These parameters work as described in L. =item "fips-indicator" (B) This parameter works as described in L. =back =head1 NOTES This EVP_RAND is only implemented by the OpenSSL FIPS provider. A context for a health test filter can be obtained by calling: EVP_RAND *parent = ...; EVP_RAND *rand = EVP_RAND_fetch(NULL, "CRNG-TEST", NULL); EVP_RAND_CTX *rctx = EVP_RAND_CTX_new(rand, parent); =head1 SEE ALSO L, L =head1 HISTORY This functionality was added in OpenSSL 3.5. =head1 COPYRIGHT Copyright 2024 The OpenSSL Project Authors. All Rights Reserved. Licensed under the Apache License 2.0 (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at L. =cut