diff options
author | Enji Cooper <ngie@FreeBSD.org> | 2024-06-20 23:24:17 +0000 |
---|---|---|
committer | Enji Cooper <ngie@FreeBSD.org> | 2024-06-20 23:24:17 +0000 |
commit | 1070e7dca8223387baf5155524b28f62bfe7da3c (patch) | |
tree | eaa96223b0f6fd1e86ecd5165af26a4d85a3fff2 /doc/man3/EVP_PKEY_CTX_set_params.pod | |
parent | 9dd13e84fa8eca8f3462bd55485aa3da8c37f54a (diff) |
Import OpenSSL 3.0.14vendor/openssl/3.0.14
This release resolves 3 upstream found CVEs:
- Fixed potential use after free after SSL_free_buffers() is called (CVE-2024-4741)
- Fixed an issue where checking excessively long DSA keys or parameters may be very slow (CVE-2024-4603)
- Fixed unbounded memory growth with session handling in TLSv1.3 (CVE-2024-2511)
Diffstat (limited to 'doc/man3/EVP_PKEY_CTX_set_params.pod')
-rw-r--r-- | doc/man3/EVP_PKEY_CTX_set_params.pod | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/man3/EVP_PKEY_CTX_set_params.pod b/doc/man3/EVP_PKEY_CTX_set_params.pod index c02151654c3a..8947648ccbe6 100644 --- a/doc/man3/EVP_PKEY_CTX_set_params.pod +++ b/doc/man3/EVP_PKEY_CTX_set_params.pod @@ -23,7 +23,9 @@ The EVP_PKEY_CTX_get_params() and EVP_PKEY_CTX_set_params() functions allow transfer of arbitrary key parameters to and from providers. Not all parameters may be supported by all providers. See L<OSSL_PROVIDER(3)> for more information on providers. -See L<OSSL_PARAM(3)> for more information on parameters. +The I<params> field is a pointer to a list of B<OSSL_PARAM> structures, +terminated with a L<OSSL_PARAM_END(3)> struct. +See L<OSSL_PARAM(3)> for information about passing parameters. These functions must only be called after the EVP_PKEY_CTX has been initialised for use in an operation. These methods replace the EVP_PKEY_CTX_ctrl() mechanism. (EVP_PKEY_CTX_ctrl now @@ -84,7 +86,7 @@ All functions were added in OpenSSL 3.0. =head1 COPYRIGHT -Copyright 2020-2021 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2020-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 |