diff options
author | Todd Short <tshort@akamai.com> | 2019-04-11 16:47:13 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2020-07-16 09:08:21 +0200 |
commit | 8c2bfd25129aea1b1f1b66ec753b21955f8ed523 (patch) | |
tree | 530798b60ed46a10265c5a061dedfd2694918ce3 /util | |
parent | Configure: fix minor typo in apitable comment (diff) | |
download | openssl-8c2bfd25129aea1b1f1b66ec753b21955f8ed523.tar.xz openssl-8c2bfd25129aea1b1f1b66ec753b21955f8ed523.zip |
Add SSL_get[01]_peer_certificate()
Deprecate SSL_get_peer_certificte() and replace with
SSL_get1_peer_certificate().
Add SSL_get0_peer_certificate.
Reviewed-by: Paul Dale <paul.dale@oracle.com>
Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/8730)
Diffstat (limited to 'util')
-rw-r--r-- | util/libssl.num | 4 | ||||
-rw-r--r-- | util/other.syms | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/util/libssl.num b/util/libssl.num index d638088dde..637e088704 100644 --- a/util/libssl.num +++ b/util/libssl.num @@ -79,7 +79,7 @@ SSL_SESSION_print 79 3_0_0 EXIST::FUNCTION: SSL_get_client_ciphers 80 3_0_0 EXIST::FUNCTION: SSL_get_srtp_profiles 81 3_0_0 EXIST::FUNCTION:SRTP SSL_use_certificate_ASN1 82 3_0_0 EXIST::FUNCTION: -SSL_get_peer_certificate 83 3_0_0 EXIST::FUNCTION: +SSL_get_peer_certificate 83 3_0_0 NOEXIST::FUNCTION: DTLSv1_2_server_method 84 3_0_0 EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_2_METHOD SSL_set_cert_cb 85 3_0_0 EXIST::FUNCTION: SSL_CTX_set_cookie_verify_cb 86 3_0_0 EXIST::FUNCTION: @@ -514,3 +514,5 @@ SSL_CTX_load_verify_store ? 3_0_0 EXIST::FUNCTION: SSL_CTX_set_tlsext_ticket_key_evp_cb ? 3_0_0 EXIST::FUNCTION: SSL_CTX_new_with_libctx ? 3_0_0 EXIST::FUNCTION: 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: diff --git a/util/other.syms b/util/other.syms index ab60424a8f..351cffa933 100644 --- a/util/other.syms +++ b/util/other.syms @@ -505,6 +505,7 @@ SSL_get_max_cert_list define SSL_get_max_proto_version define SSL_get_min_proto_version define SSL_get_mode define +SSL_get_peer_certificate define deprecated 3.0.0 SSL_get_peer_signature_nid define SSL_get_peer_tmp_key define SSL_get_secure_renegotiation_support define |