diff options
author | Matt Caswell <matt@openssl.org> | 2020-10-15 17:45:54 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2020-11-18 15:14:52 +0100 |
commit | 163f6dc1f70f30de46a68137c36e70cae4d95cd8 (patch) | |
tree | c7f1c37b230a8f226b716b65736c2b1cb236cfd4 /util/libssl.num | |
parent | Remove deprecated functionality from s_server (diff) | |
download | openssl-163f6dc1f70f30de46a68137c36e70cae4d95cd8.tar.xz openssl-163f6dc1f70f30de46a68137c36e70cae4d95cd8.zip |
Implement a replacement for SSL_set_tmp_dh()
The old function took a DH as a parameter. In the new version we pass
an EVP_PKEY instead. Similarly for the SSL_CTX version of this function.
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/13368)
Diffstat (limited to 'util/libssl.num')
-rw-r--r-- | util/libssl.num | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util/libssl.num b/util/libssl.num index 8b22c719e6..75e45bb17f 100644 --- a/util/libssl.num +++ b/util/libssl.num @@ -517,3 +517,5 @@ SSL_new_session_ticket ? 3_0_0 EXIST::FUNCTION: SSL_get0_peer_certificate ? 3_0_0 EXIST::FUNCTION: SSL_get1_peer_certificate ? 3_0_0 EXIST::FUNCTION: SSL_load_client_CA_file_ex ? 3_0_0 EXIST::FUNCTION: +SSL_set0_tmp_dh_pkey ? 3_0_0 EXIST::FUNCTION: +SSL_CTX_set0_tmp_dh_pkey ? 3_0_0 EXIST::FUNCTION: |