diff options
author | slontis <shane.lontis@oracle.com> | 2023-02-23 00:09:57 +0100 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2023-02-28 04:31:05 +0100 |
commit | 7066c57dce88994778daa10ba2c81490fc5cf0c7 (patch) | |
tree | 48c1d562a4ba4f17b410713d7c80533f4267167b /doc/man7 | |
parent | Add provider pre-fetching documentation (diff) | |
download | openssl-7066c57dce88994778daa10ba2c81490fc5cf0c7.tar.xz openssl-7066c57dce88994778daa10ba2c81490fc5cf0c7.zip |
Document the list of RAND algorithms in the default and fips providers.
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Hugo Landau <hlandau@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/20361)
Diffstat (limited to 'doc/man7')
-rw-r--r-- | doc/man7/OSSL_PROVIDER-FIPS.pod | 16 | ||||
-rw-r--r-- | doc/man7/OSSL_PROVIDER-default.pod | 16 |
2 files changed, 32 insertions, 0 deletions
diff --git a/doc/man7/OSSL_PROVIDER-FIPS.pod b/doc/man7/OSSL_PROVIDER-FIPS.pod index 23d53736ab..9396b5e431 100644 --- a/doc/man7/OSSL_PROVIDER-FIPS.pod +++ b/doc/man7/OSSL_PROVIDER-FIPS.pod @@ -170,6 +170,22 @@ The OpenSSL FIPS provider supports these operations and algorithms: =back +=head2 Random Number Generation + +=over 4 + +=item CTR-DRBG, see L<EVP_RAND-CTR-DRBG(7)> + +=item HASH-DRBG, see L<EVP_RAND-HASH-DRBG(7)> + +=item HMAC-DRBG, see L<EVP_RAND-HMAC-DRBG(7)> + +=item TEST-RAND, see L<EVP_RAND-TEST-RAND(7)> + +TEST-RAND is an unapproved algorithm. + +=back + =head1 SELF TESTING One of the requirements for the FIPS module is self testing. An optional callback diff --git a/doc/man7/OSSL_PROVIDER-default.pod b/doc/man7/OSSL_PROVIDER-default.pod index acb7bbb89a..5ac87ee6cc 100644 --- a/doc/man7/OSSL_PROVIDER-default.pod +++ b/doc/man7/OSSL_PROVIDER-default.pod @@ -227,6 +227,22 @@ The OpenSSL default provider supports these operations and algorithms: =back +=head2 Random Number Generation + +=over 4 + +=item CTR-DRBG, see L<EVP_RAND-CTR-DRBG(7)> + +=item HASH-DRBG, see L<EVP_RAND-HASH-DRBG(7)> + +=item HMAC-DRBG, see L<EVP_RAND-HMAC-DRBG(7)> + +=item SEED-SRC, see L<EVP_RAND-SEED-SRC(7)> + +=item TEST-RAND, see L<EVP_RAND-TEST-RAND(7)> + +=back + =head2 Asymmetric Key Encoder The default provider also includes all of the encoding algorithms |