NAME
SSL_get_certificate,
SSL_get_privatekey —
get SSL certificate and private
key
SYNOPSIS
#include
<openssl/ssl.h>
X509 *
SSL_get_certificate(const SSL
*ssl);
EVP_PKEY *
SSL_get_privatekey(SSL
*ssl);
DESCRIPTION
These functions retrieve certificate and key data from an SSL object. They return internal pointers that must not be freed by the application program.
RETURN VALUES
SSL_get_certificate() returns the active
X.509 certificate currently used by ssl or
NULL if none is active.
SSL_get_privatekey() returns the active
private key currently used by ssl or
NULL if none is active.
SEE ALSO
HISTORY
SSL_get_certificate() and
SSL_get_privatekey() are available in all versions
of OpenSSL.