diff options
author | slontis <shane.lontis@oracle.com> | 2022-05-04 12:04:43 +1000 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2022-05-09 10:08:07 +1000 |
commit | b40c753b6e09eb6df06c161cdf771c704898b050 (patch) | |
tree | 86165ecf2d5a9c538957e9b06f4df9e8189c3458 /doc/man7/OSSL_PROVIDER-FIPS.pod | |
parent | fcbd8be18229ef7aa32369d2e9c747348f7d6490 (diff) |
Add documentation for key validation that indicates the difference between the
EVP_PKEY_XXX_check() calls for the default and fips providers.
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18235)
(cherry picked from commit 0b3d2594d060dc19269d3740ad672f065ec6398a)
Diffstat (limited to 'doc/man7/OSSL_PROVIDER-FIPS.pod')
-rw-r--r-- | doc/man7/OSSL_PROVIDER-FIPS.pod | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/doc/man7/OSSL_PROVIDER-FIPS.pod b/doc/man7/OSSL_PROVIDER-FIPS.pod index 00ab7977f4..899185974e 100644 --- a/doc/man7/OSSL_PROVIDER-FIPS.pod +++ b/doc/man7/OSSL_PROVIDER-FIPS.pod @@ -34,7 +34,7 @@ make sure to get implementations of this provider and none other. The "fips=yes" property can be use to make sure only FIPS approved implementations are used for crypto operations. This may also include -other non-crypto support operations that are not in the fips provider, +other non-crypto support operations that are not in the FIPS provider, such as asymmetric key encoders, see L<OSSL_PROVIDER-default(7)/Asymmetric Key Management>. @@ -160,10 +160,18 @@ The OpenSSL FIPS provider supports these operations and algorithms: =item DH, see L<EVP_KEYMGMT-DH(7)> +=item DHX, see L<EVP_KEYMGMT-DHX(7)> + =item DSA, see L<EVP_KEYMGMT-DSA(7)> =item RSA, see L<EVP_KEYMGMT-RSA(7)> +=item EC, see L<EVP_KEYMGMT-EC(7)> + +=item X25519, see L<EVP_KEYMGMT-X25519(7)> + +=item X448, see L<EVP_KEYMGMT-X448(7)> + =back =head1 SELF TESTING |