diff options
author | Tomas Mraz <tomas@openssl.org> | 2021-07-13 17:41:02 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2021-07-15 02:54:25 +0200 |
commit | 11f18ef1f5ea92ba32a3efeb0eaf1af6a1f35e13 (patch) | |
tree | 1723663621af31d1c4172edde7b2a425ea764bf2 /doc | |
parent | doc: Document that incomplete certificates return error (diff) | |
download | openssl-11f18ef1f5ea92ba32a3efeb0eaf1af6a1f35e13.tar.xz openssl-11f18ef1f5ea92ba32a3efeb0eaf1af6a1f35e13.zip |
Make EVP_PKEY_check() be an alias for EVP_PKEY_pairwise_check()
The implementation of EVP_PKEY_pairwise_check() is also changed
to handle the legacy keys.
Fixes #16046
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/16069)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man3/EVP_PKEY_check.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/man3/EVP_PKEY_check.pod b/doc/man3/EVP_PKEY_check.pod index dc03671498..1ba656fd22 100644 --- a/doc/man3/EVP_PKEY_check.pod +++ b/doc/man3/EVP_PKEY_check.pod @@ -44,7 +44,7 @@ EVP_PKEY_private_check() validates the private component of the key given by B<c EVP_PKEY_pairwise_check() validates that the public and private components have the correct mathematical relationship to each other for the key given by B<ctx>. -EVP_PKEY_check() validates all components of a key given by B<ctx>. +EVP_PKEY_check() is an alias for the EVP_PKEY_pairwise_check() function. =head1 NOTES |