aboutsummaryrefslogtreecommitdiff
path: root/crypto/self_test_core.c
AgeCommit message (Collapse)AuthorFilesLines
2020-04-28Rename FIPS_MODE to FIPS_MODULERichard Levitte1-2/+2
This macro is used to determine if certain pieces of code should become part of the FIPS module or not. The old name was confusing. Fixes #11538 Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/11539)
2020-03-03Add pairwise consistency self tests to asym keygeneratorsShane Lontis1-1/+107
Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/10952)
2020-01-15Add FIPS Self test kats for digestsShane Lontis1-0/+62
Added an API to optionally set a self test callback. The callback has the following 2 purposes (1) Output information about the KAT tests. (2) Allow the ability to corrupt one of the KAT's The fipsinstall program uses the API. Some KATS are not included in this PR since the required functionality did not yet exist in the provider. Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/10374)