NOTES
If the session is resumed peers do not send certificates so a NULL pointer is returned by these functions. Applications can call SSL_session_reused() to determine whether a session is resumed.
The reference count of each certificate in the returned STACK_OF(X509) object is not incremented and the returned stack may be invalidated by renegotiation. If applications wish to use any certificates in the returned chain indefinitely they must increase the reference counts using X509_up_ref() or obtain a copy of the whole chain with X509_chain_up_ref().
RETURN VALUES
The following return values can occur:
- NULL
-
No certificate was presented by the peer or no connection was established or the certificate chain is no longer available when a session is reused.
- Pointer to a STACK_OF(X509)
-
The return value points to the certificate chain presented by the peer.
SEE ALSO
SSL_get_peer_certificate(3), X509_chain_up_ref(3)
COPYRIGHT
Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.
Licensed under the OpenSSL license (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.