ssl.3 revision 279265
Automatically generated by Pod::Man 2.27 (Pod::Simple 3.28)

Standard preamble:
========================================================================
..
..
.. Set up some character translations and predefined strings. \*(-- will
give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
double quote, and \*(R" will give a right double quote. \*(C+ will
give a nicer C++. Capital omega is used to do unbreakable dashes and
therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
nothing in troff, for use with C<>.
.tr \(*W- . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\}
Escape single quotes in literal strings from groff's Unicode transform.

If the F register is turned on, we'll generate index entries on stderr for
titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
entries marked with X<> in POD. Of course, you'll have to process the
output yourself in some meaningful fashion.

Avoid warning from groff about undefined register 'F'.
.. .nr rF 0 . if \nF \{ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{ . nr % 0 . nr F 2 . \} . \} .\} .rr rF
Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
Fear. Run. Save yourself. No user-serviceable parts.
. \" fudge factors for nroff and troff . ds #H 0 . ds #V .8m . ds #F .3m . ds #[ \f1 . ds #] .\} . ds #H ((1u-(\\\\n(.fu%2u))*.13m) . ds #V .6m . ds #F 0 . ds #[ \& . ds #] \& .\} . \" simple accents for nroff and troff . ds ' \& . ds ` \& . ds ^ \& . ds , \& . ds ~ ~ . ds / .\} . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' . ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' . ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' .\} . \" troff and (daisy-wheel) nroff accents . \" corrections for vroff . \" for low resolution devices (crt and lpr) \{\ . ds : e . ds 8 ss . ds o a . ds d- d\h'-1'\(ga . ds D- D\h'-1'\(hy . ds th \o'bp' . ds Th \o'LP' . ds ae ae . ds Ae AE .\} ========================================================================

Title "ssl 3"
ssl 3 "2015-01-08" "0.9.8zd" "OpenSSL"
For nroff, turn off justification. Always turn off hyphenation; it makes
way too many mistakes in technical documents.
"NAME"
SSL - OpenSSL SSL/TLS library
"SYNOPSIS"
Header "SYNOPSIS"
"DESCRIPTION"
Header "DESCRIPTION" The OpenSSL ssl library implements the Secure Sockets Layer (\s-1SSL\s0 v2/v3) and Transport Layer Security (\s-1TLS\s0 v1) protocols. It provides a rich \s-1API\s0 which is documented here.

At first the library must be initialized; see \fISSL_library_init\|(3).

Then an \s-1SSL_CTX\s0 object is created as a framework to establish \s-1TLS/SSL\s0 enabled connections (see SSL_CTX_new\|(3)). Various options regarding certificates, algorithms etc. can be set in this object.

When a network connection has been created, it can be assigned to an \fB\s-1SSL\s0 object. After the \s-1SSL\s0 object has been created using \fISSL_new\|(3), SSL_set_fd\|(3) or \fISSL_set_bio\|(3) can be used to associate the network connection with the object.

Then the \s-1TLS/SSL\s0 handshake is performed using \fISSL_accept\|(3) or SSL_connect\|(3) respectively. \fISSL_read\|(3) and SSL_write\|(3) are used to read and write data on the \s-1TLS/SSL\s0 connection. \fISSL_shutdown\|(3) can be used to shut down the \s-1TLS/SSL\s0 connection.

"DATA STRUCTURES"
Header "DATA STRUCTURES" Currently the OpenSSL ssl library functions deals with the following data structures:
"\s-1SSL_METHOD\s0 (\s-1SSL\s0 Method)" 4
Item "SSL_METHOD (SSL Method)" That's a dispatch structure describing the internal ssl library methods/functions which implement the various protocol versions (SSLv1, SSLv2 and TLSv1). It's needed to create an \s-1SSL_CTX\s0.
"\s-1SSL_CIPHER\s0 (\s-1SSL\s0 Cipher)" 4
Item "SSL_CIPHER (SSL Cipher)" This structure holds the algorithm information for a particular cipher which are a core part of the \s-1SSL/TLS\s0 protocol. The available ciphers are configured on a \s-1SSL_CTX\s0 basis and the actually used ones are then part of the \fB\s-1SSL_SESSION\s0.
"\s-1SSL_CTX\s0 (\s-1SSL\s0 Context)" 4
Item "SSL_CTX (SSL Context)" That's the global context structure which is created by a server or client once per program life-time and which holds mainly default values for the \fB\s-1SSL\s0 structures which are later created for the connections.
"\s-1SSL_SESSION\s0 (\s-1SSL\s0 Session)" 4
Item "SSL_SESSION (SSL Session)" This is a structure containing the current \s-1TLS/SSL\s0 session details for a connection: \s-1SSL_CIPHER\s0s, client and server certificates, keys, etc.
"\s-1SSL\s0 (\s-1SSL\s0 Connection)" 4
Item "SSL (SSL Connection)" That's the main \s-1SSL/TLS\s0 structure which is created by a server or client per established connection. This actually is the core structure in the \s-1SSL API.\s0 Under run-time the application usually deals with this structure which has links to mostly all other structures.
"HEADER FILES"
Header "HEADER FILES" Currently the OpenSSL ssl library provides the following C header files containing the prototypes for the data structures and and functions:
"ssl.h" 4
Item "ssl.h" That's the common header file for the \s-1SSL/TLS API. \s0 Include it into your program to make the \s-1API\s0 of the ssl library available. It internally includes both more private \s-1SSL\s0 headers and headers from the crypto library. Whenever you need hard-core details on the internals of the \s-1SSL API,\s0 look inside this header file.
"ssl2.h" 4
Item "ssl2.h" That's the sub header file dealing with the SSLv2 protocol only. \fIUsually you don't have to include it explicitly because it's already included by ssl.h.
"ssl3.h" 4
Item "ssl3.h" That's the sub header file dealing with the SSLv3 protocol only. \fIUsually you don't have to include it explicitly because it's already included by ssl.h.
"ssl23.h" 4
Item "ssl23.h" That's the sub header file dealing with the combined use of the SSLv2 and SSLv3 protocols. \fIUsually you don't have to include it explicitly because it's already included by ssl.h.
"tls1.h" 4
Item "tls1.h" That's the sub header file dealing with the TLSv1 protocol only. \fIUsually you don't have to include it explicitly because it's already included by ssl.h.
"API FUNCTIONS"
Header "API FUNCTIONS" Currently the OpenSSL ssl library exports 214 \s-1API\s0 functions. They are documented in the following:
"\s-1DEALING WITH PROTOCOL METHODS\s0"
Subsection "DEALING WITH PROTOCOL METHODS" Here we document the various \s-1API\s0 functions which deal with the \s-1SSL/TLS\s0 protocol methods defined in \s-1SSL_METHOD\s0 structures.
"\s-1SSL_METHOD\s0 *SSLv2_client_method(void);" 4
Item "SSL_METHOD *SSLv2_client_method(void);" Constructor for the SSLv2 \s-1SSL_METHOD\s0 structure for a dedicated client.
"\s-1SSL_METHOD\s0 *SSLv2_server_method(void);" 4
Item "SSL_METHOD *SSLv2_server_method(void);" Constructor for the SSLv2 \s-1SSL_METHOD\s0 structure for a dedicated server.
"\s-1SSL_METHOD\s0 *SSLv2_method(void);" 4
Item "SSL_METHOD *SSLv2_method(void);" Constructor for the SSLv2 \s-1SSL_METHOD\s0 structure for combined client and server.
"\s-1SSL_METHOD\s0 *SSLv3_client_method(void);" 4
Item "SSL_METHOD *SSLv3_client_method(void);" Constructor for the SSLv3 \s-1SSL_METHOD\s0 structure for a dedicated client.
"\s-1SSL_METHOD\s0 *SSLv3_server_method(void);" 4
Item "SSL_METHOD *SSLv3_server_method(void);" Constructor for the SSLv3 \s-1SSL_METHOD\s0 structure for a dedicated server.
"\s-1SSL_METHOD\s0 *SSLv3_method(void);" 4
Item "SSL_METHOD *SSLv3_method(void);" Constructor for the SSLv3 \s-1SSL_METHOD\s0 structure for combined client and server.
"\s-1SSL_METHOD\s0 *TLSv1_client_method(void);" 4
Item "SSL_METHOD *TLSv1_client_method(void);" Constructor for the TLSv1 \s-1SSL_METHOD\s0 structure for a dedicated client.
"\s-1SSL_METHOD\s0 *TLSv1_server_method(void);" 4
Item "SSL_METHOD *TLSv1_server_method(void);" Constructor for the TLSv1 \s-1SSL_METHOD\s0 structure for a dedicated server.
"\s-1SSL_METHOD\s0 *TLSv1_method(void);" 4
Item "SSL_METHOD *TLSv1_method(void);" Constructor for the TLSv1 \s-1SSL_METHOD\s0 structure for combined client and server.
"\s-1DEALING WITH CIPHERS\s0"
Subsection "DEALING WITH CIPHERS" Here we document the various \s-1API\s0 functions which deal with the \s-1SSL/TLS\s0 ciphers defined in \s-1SSL_CIPHER\s0 structures.
"char *SSL_CIPHER_description(\s-1SSL_CIPHER\s0 *cipher, char *buf, int len);" 4
Item "char *SSL_CIPHER_description(SSL_CIPHER *cipher, char *buf, int len);" Write a string to buf (with a maximum size of len) containing a human readable description of cipher. Returns buf.
"int SSL_CIPHER_get_bits(\s-1SSL_CIPHER\s0 *cipher, int *alg_bits);" 4
Item "int SSL_CIPHER_get_bits(SSL_CIPHER *cipher, int *alg_bits);" Determine the number of bits in cipher. Because of export crippled ciphers there are two bits: The bits the algorithm supports in general (stored to \fIalg_bits) and the bits which are actually used (the return value).
"const char *SSL_CIPHER_get_name(\s-1SSL_CIPHER\s0 *cipher);" 4
Item "const char *SSL_CIPHER_get_name(SSL_CIPHER *cipher);" Return the internal name of cipher as a string. These are the various strings defined by the SSL2_TXT_xxx, SSL3_TXT_xxx and TLS1_TXT_xxx definitions in the header files.
"char *SSL_CIPHER_get_version(\s-1SSL_CIPHER\s0 *cipher);" 4
Item "char *SSL_CIPHER_get_version(SSL_CIPHER *cipher);" Returns a string like "\*(C`TLSv1/SSLv3\*(C'\*(L" or \*(R"\*(C`SSLv2\*(C'" which indicates the \s-1SSL/TLS\s0 protocol version to which cipher belongs (i.e. where it was defined in the specification the first time).
"\s-1DEALING WITH PROTOCOL CONTEXTS\s0"
Subsection "DEALING WITH PROTOCOL CONTEXTS" Here we document the various \s-1API\s0 functions which deal with the \s-1SSL/TLS\s0 protocol context defined in the \s-1SSL_CTX\s0 structure.
"int SSL_CTX_add_client_CA(\s-1SSL_CTX\s0 *ctx, X509 *x);" 4
Item "int SSL_CTX_add_client_CA(SSL_CTX *ctx, X509 *x);"

0

"long SSL_CTX_add_extra_chain_cert(\s-1SSL_CTX\s0 *ctx, X509 *x509);" 4
Item "long SSL_CTX_add_extra_chain_cert(SSL_CTX *ctx, X509 *x509);"
"int SSL_CTX_add_session(\s-1SSL_CTX\s0 *ctx, \s-1SSL_SESSION\s0 *c);" 4
Item "int SSL_CTX_add_session(SSL_CTX *ctx, SSL_SESSION *c);"
"int SSL_CTX_check_private_key(const \s-1SSL_CTX\s0 *ctx);" 4
Item "int SSL_CTX_check_private_key(const SSL_CTX *ctx);"
"long SSL_CTX_ctrl(\s-1SSL_CTX\s0 *ctx, int cmd, long larg, char *parg);" 4
Item "long SSL_CTX_ctrl(SSL_CTX *ctx, int cmd, long larg, char *parg);"
"void SSL_CTX_flush_sessions(\s-1SSL_CTX\s0 *s, long t);" 4
Item "void SSL_CTX_flush_sessions(SSL_CTX *s, long t);"
"void SSL_CTX_free(\s-1SSL_CTX\s0 *a);" 4
Item "void SSL_CTX_free(SSL_CTX *a);"
"char *SSL_CTX_get_app_data(\s-1SSL_CTX\s0 *ctx);" 4
Item "char *SSL_CTX_get_app_data(SSL_CTX *ctx);"
"X509_STORE *SSL_CTX_get_cert_store(\s-1SSL_CTX\s0 *ctx);" 4
Item "X509_STORE *SSL_CTX_get_cert_store(SSL_CTX *ctx);"
"\s-1STACK\s0 *SSL_CTX_get_client_CA_list(const \s-1SSL_CTX\s0 *ctx);" 4
Item "STACK *SSL_CTX_get_client_CA_list(const SSL_CTX *ctx);"
"int (*SSL_CTX_get_client_cert_cb(\s-1SSL_CTX\s0 *ctx))(\s-1SSL\s0 *ssl, X509 **x509, \s-1EVP_PKEY\s0 **pkey);" 4
Item "int (*SSL_CTX_get_client_cert_cb(SSL_CTX *ctx))(SSL *ssl, X509 **x509, EVP_PKEY **pkey);"
"char *SSL_CTX_get_ex_data(const \s-1SSL_CTX\s0 *s, int idx);" 4
Item "char *SSL_CTX_get_ex_data(const SSL_CTX *s, int idx);"
"int SSL_CTX_get_ex_new_index(long argl, char *argp, int (*new_func);(void), int (*dup_func)(void), void (*free_func)(void))" 4
Item "int SSL_CTX_get_ex_new_index(long argl, char *argp, int (*new_func);(void), int (*dup_func)(void), void (*free_func)(void))"
"void (*SSL_CTX_get_info_callback(\s-1SSL_CTX\s0 *ctx))(\s-1SSL\s0 *ssl, int cb, int ret);" 4
Item "void (*SSL_CTX_get_info_callback(SSL_CTX *ctx))(SSL *ssl, int cb, int ret);"
"int SSL_CTX_get_quiet_shutdown(const \s-1SSL_CTX\s0 *ctx);" 4
Item "int SSL_CTX_get_quiet_shutdown(const SSL_CTX *ctx);"
"int SSL_CTX_get_session_cache_mode(\s-1SSL_CTX\s0 *ctx);" 4
Item "int SSL_CTX_get_session_cache_mode(SSL_CTX *ctx);"
"long SSL_CTX_get_timeout(const \s-1SSL_CTX\s0 *ctx);" 4
Item "long SSL_CTX_get_timeout(const SSL_CTX *ctx);"
"int (*SSL_CTX_get_verify_callback(const \s-1SSL_CTX\s0 *ctx))(int ok, X509_STORE_CTX *ctx);" 4
Item "int (*SSL_CTX_get_verify_callback(const SSL_CTX *ctx))(int ok, X509_STORE_CTX *ctx);"
"int SSL_CTX_get_verify_mode(\s-1SSL_CTX\s0 *ctx);" 4
Item "int SSL_CTX_get_verify_mode(SSL_CTX *ctx);"
"int SSL_CTX_load_verify_locations(\s-1SSL_CTX\s0 *ctx, char *CAfile, char *CApath);" 4
Item "int SSL_CTX_load_verify_locations(SSL_CTX *ctx, char *CAfile, char *CApath);"
"long SSL_CTX_need_tmp_RSA(\s-1SSL_CTX\s0 *ctx);" 4
Item "long SSL_CTX_need_tmp_RSA(SSL_CTX *ctx);"
"\s-1SSL_CTX\s0 *SSL_CTX_new(\s-1SSL_METHOD\s0 *meth);" 4
Item "SSL_CTX *SSL_CTX_new(SSL_METHOD *meth);"
"int SSL_CTX_remove_session(\s-1SSL_CTX\s0 *ctx, \s-1SSL_SESSION\s0 *c);" 4
Item "int SSL_CTX_remove_session(SSL_CTX *ctx, SSL_SESSION *c);"
"int SSL_CTX_sess_accept(\s-1SSL_CTX\s0 *ctx);" 4
Item "int SSL_CTX_sess_accept(SSL_CTX *ctx);"
"int SSL_CTX_sess_accept_good(\s-1SSL_CTX\s0 *ctx);" 4
Item "int SSL_CTX_sess_accept_good(SSL_CTX *ctx);"
"int SSL_CTX_sess_accept_renegotiate(\s-1SSL_CTX\s0 *ctx);" 4
Item "int SSL_CTX_sess_accept_renegotiate(SSL_CTX *ctx);"
"int SSL_CTX_sess_cache_full(\s-1SSL_CTX\s0 *ctx);" 4
Item "int SSL_CTX_sess_cache_full(SSL_CTX *ctx);"
"int SSL_CTX_sess_cb_hits(\s-1SSL_CTX\s0 *ctx);" 4
Item "int SSL_CTX_sess_cb_hits(SSL_CTX *ctx);"
"int SSL_CTX_sess_connect(\s-1SSL_CTX\s0 *ctx);" 4
Item "int SSL_CTX_sess_connect(SSL_CTX *ctx);"
"int SSL_CTX_sess_connect_good(\s-1SSL_CTX\s0 *ctx);" 4
Item "int SSL_CTX_sess_connect_good(SSL_CTX *ctx);"
"int SSL_CTX_sess_connect_renegotiate(\s-1SSL_CTX\s0 *ctx);" 4
Item "int SSL_CTX_sess_connect_renegotiate(SSL_CTX *ctx);"
"int SSL_CTX_sess_get_cache_size(\s-1SSL_CTX\s0 *ctx);" 4
Item "int SSL_CTX_sess_get_cache_size(SSL_CTX *ctx);"
"\s-1SSL_SESSION\s0 *(*SSL_CTX_sess_get_get_cb(\s-1SSL_CTX\s0 *ctx))(\s-1SSL\s0 *ssl, unsigned char *data, int len, int *copy);" 4
Item "SSL_SESSION *(*SSL_CTX_sess_get_get_cb(SSL_CTX *ctx))(SSL *ssl, unsigned char *data, int len, int *copy);"
"int (*SSL_CTX_sess_get_new_cb(\s-1SSL_CTX\s0 *ctx)(\s-1SSL\s0 *ssl, \s-1SSL_SESSION\s0 *sess);" 4
Item "int (*SSL_CTX_sess_get_new_cb(SSL_CTX *ctx)(SSL *ssl, SSL_SESSION *sess);"
"void (*SSL_CTX_sess_get_remove_cb(\s-1SSL_CTX\s0 *ctx)(\s-1SSL_CTX\s0 *ctx, \s-1SSL_SESSION\s0 *sess);" 4
Item "void (*SSL_CTX_sess_get_remove_cb(SSL_CTX *ctx)(SSL_CTX *ctx, SSL_SESSION *sess);"
"int SSL_CTX_sess_hits(\s-1SSL_CTX\s0 *ctx);" 4
Item "int SSL_CTX_sess_hits(SSL_CTX *ctx);"
"int SSL_CTX_sess_misses(\s-1SSL_CTX\s0 *ctx);" 4
Item "int SSL_CTX_sess_misses(SSL_CTX *ctx);"
"int SSL_CTX_sess_number(\s-1SSL_CTX\s0 *ctx);" 4
Item "int SSL_CTX_sess_number(SSL_CTX *ctx);"
"void SSL_CTX_sess_set_cache_size(\s-1SSL_CTX\s0 *ctx,t);" 4
Item "void SSL_CTX_sess_set_cache_size(SSL_CTX *ctx,t);"
"void SSL_CTX_sess_set_get_cb(\s-1SSL_CTX\s0 *ctx, \s-1SSL_SESSION\s0 *(*cb)(\s-1SSL\s0 *ssl, unsigned char *data, int len, int *copy));" 4
Item "void SSL_CTX_sess_set_get_cb(SSL_CTX *ctx, SSL_SESSION *(*cb)(SSL *ssl, unsigned char *data, int len, int *copy));"
"void SSL_CTX_sess_set_new_cb(\s-1SSL_CTX\s0 *ctx, int (*cb)(\s-1SSL\s0 *ssl, \s-1SSL_SESSION\s0 *sess));" 4
Item "void SSL_CTX_sess_set_new_cb(SSL_CTX *ctx, int (*cb)(SSL *ssl, SSL_SESSION *sess));"
"void SSL_CTX_sess_set_remove_cb(\s-1SSL_CTX\s0 *ctx, void (*cb)(\s-1SSL_CTX\s0 *ctx, \s-1SSL_SESSION\s0 *sess));" 4
Item "void SSL_CTX_sess_set_remove_cb(SSL_CTX *ctx, void (*cb)(SSL_CTX *ctx, SSL_SESSION *sess));"
"int SSL_CTX_sess_timeouts(\s-1SSL_CTX\s0 *ctx);" 4
Item "int SSL_CTX_sess_timeouts(SSL_CTX *ctx);"
"\s-1LHASH\s0 *SSL_CTX_sessions(\s-1SSL_CTX\s0 *ctx);" 4
Item "LHASH *SSL_CTX_sessions(SSL_CTX *ctx);"
"void SSL_CTX_set_app_data(\s-1SSL_CTX\s0 *ctx, void *arg);" 4
Item "void SSL_CTX_set_app_data(SSL_CTX *ctx, void *arg);"
"void SSL_CTX_set_cert_store(\s-1SSL_CTX\s0 *ctx, X509_STORE *cs);" 4
Item "void SSL_CTX_set_cert_store(SSL_CTX *ctx, X509_STORE *cs);"
"void SSL_CTX_set_cert_verify_cb(\s-1SSL_CTX\s0 *ctx, int (*cb)(), char *arg)" 4
Item "void SSL_CTX_set_cert_verify_cb(SSL_CTX *ctx, int (*cb)(), char *arg)"
"int SSL_CTX_set_cipher_list(\s-1SSL_CTX\s0 *ctx, char *str);" 4
Item "int SSL_CTX_set_cipher_list(SSL_CTX *ctx, char *str);"
"void SSL_CTX_set_client_CA_list(\s-1SSL_CTX\s0 *ctx, \s-1STACK\s0 *list);" 4
Item "void SSL_CTX_set_client_CA_list(SSL_CTX *ctx, STACK *list);"
"void SSL_CTX_set_client_cert_cb(\s-1SSL_CTX\s0 *ctx, int (*cb)(\s-1SSL\s0 *ssl, X509 **x509, \s-1EVP_PKEY\s0 **pkey));" 4
Item "void SSL_CTX_set_client_cert_cb(SSL_CTX *ctx, int (*cb)(SSL *ssl, X509 **x509, EVP_PKEY **pkey));"
"void SSL_CTX_set_default_passwd_cb(\s-1SSL_CTX\s0 *ctx, int (*cb);(void))" 4
Item "void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx, int (*cb);(void))"
"void SSL_CTX_set_default_read_ahead(\s-1SSL_CTX\s0 *ctx, int m);" 4
Item "void SSL_CTX_set_default_read_ahead(SSL_CTX *ctx, int m);"
"int SSL_CTX_set_default_verify_paths(\s-1SSL_CTX\s0 *ctx);" 4
Item "int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx);"
"int SSL_CTX_set_ex_data(\s-1SSL_CTX\s0 *s, int idx, char *arg);" 4
Item "int SSL_CTX_set_ex_data(SSL_CTX *s, int idx, char *arg);"
"void SSL_CTX_set_info_callback(\s-1SSL_CTX\s0 *ctx, void (*cb)(\s-1SSL\s0 *ssl, int cb, int ret));" 4
Item "void SSL_CTX_set_info_callback(SSL_CTX *ctx, void (*cb)(SSL *ssl, int cb, int ret));"
"void SSL_CTX_set_msg_callback(\s-1SSL_CTX\s0 *ctx, void (*cb)(int write_p, int version, int content_type, const void *buf, size_t len, \s-1SSL\s0 *ssl, void *arg));" 4
Item "void SSL_CTX_set_msg_callback(SSL_CTX *ctx, void (*cb)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg));"
"void SSL_CTX_set_msg_callback_arg(\s-1SSL_CTX\s0 *ctx, void *arg);" 4
Item "void SSL_CTX_set_msg_callback_arg(SSL_CTX *ctx, void *arg);"
"void SSL_CTX_set_options(\s-1SSL_CTX\s0 *ctx, unsigned long op);" 4
Item "void SSL_CTX_set_options(SSL_CTX *ctx, unsigned long op);"
"void SSL_CTX_set_quiet_shutdown(\s-1SSL_CTX\s0 *ctx, int mode);" 4
Item "void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx, int mode);"
"void SSL_CTX_set_session_cache_mode(\s-1SSL_CTX\s0 *ctx, int mode);" 4
Item "void SSL_CTX_set_session_cache_mode(SSL_CTX *ctx, int mode);"
"int SSL_CTX_set_ssl_version(\s-1SSL_CTX\s0 *ctx, \s-1SSL_METHOD\s0 *meth);" 4
Item "int SSL_CTX_set_ssl_version(SSL_CTX *ctx, SSL_METHOD *meth);"
"void SSL_CTX_set_timeout(\s-1SSL_CTX\s0 *ctx, long t);" 4
Item "void SSL_CTX_set_timeout(SSL_CTX *ctx, long t);"
"long SSL_CTX_set_tmp_dh(SSL_CTX* ctx, \s-1DH\s0 *dh);" 4
Item "long SSL_CTX_set_tmp_dh(SSL_CTX* ctx, DH *dh);"
"long SSL_CTX_set_tmp_dh_callback(\s-1SSL_CTX\s0 *ctx, \s-1DH\s0 *(*cb)(void));" 4
Item "long SSL_CTX_set_tmp_dh_callback(SSL_CTX *ctx, DH *(*cb)(void));"
"long SSL_CTX_set_tmp_rsa(\s-1SSL_CTX\s0 *ctx, \s-1RSA\s0 *rsa);" 4
Item "long SSL_CTX_set_tmp_rsa(SSL_CTX *ctx, RSA *rsa);"
"SSL_CTX_set_tmp_rsa_callback" 4
Item "SSL_CTX_set_tmp_rsa_callback"

\f(CW\*(C`long \f(CBSSL_CTX_set_tmp_rsa_callback(SSL_CTX *\f(CBctx, RSA *(*\f(CBcb)(SSL *\f(CBssl, int \f(CBexport, int \f(CBkeylength));\*(C' .Sp Sets the callback which will be called when a temporary private key is required. The \f(CB\*(C`export\*(C' flag will be set if the reason for needing a temp key is that an export ciphersuite is in use, in which case, \fB\f(CB\*(C`keylength\*(C' will contain the required keylength in bits. Generate a key of appropriate size (using ???) and return it.

"SSL_set_tmp_rsa_callback" 4
Item "SSL_set_tmp_rsa_callback" long SSL_set_tmp_rsa_callback(\s-1SSL\s0 *ssl, \s-1RSA\s0 *(*cb)(\s-1SSL\s0 *ssl, int export, int keylength)); .Sp The same as SSL_CTX_set_tmp_rsa_callback, except it operates on an \s-1SSL\s0 session instead of a context.
"void SSL_CTX_set_verify(\s-1SSL_CTX\s0 *ctx, int mode, int (*cb);(void))" 4
Item "void SSL_CTX_set_verify(SSL_CTX *ctx, int mode, int (*cb);(void))"

0

"int SSL_CTX_use_PrivateKey(\s-1SSL_CTX\s0 *ctx, \s-1EVP_PKEY\s0 *pkey);" 4
Item "int SSL_CTX_use_PrivateKey(SSL_CTX *ctx, EVP_PKEY *pkey);"
"int SSL_CTX_use_PrivateKey_ASN1(int type, \s-1SSL_CTX\s0 *ctx, unsigned char *d, long len);" 4
Item "int SSL_CTX_use_PrivateKey_ASN1(int type, SSL_CTX *ctx, unsigned char *d, long len);"
"int SSL_CTX_use_PrivateKey_file(\s-1SSL_CTX\s0 *ctx, char *file, int type);" 4
Item "int SSL_CTX_use_PrivateKey_file(SSL_CTX *ctx, char *file, int type);"
"int SSL_CTX_use_RSAPrivateKey(\s-1SSL_CTX\s0 *ctx, \s-1RSA\s0 *rsa);" 4
Item "int SSL_CTX_use_RSAPrivateKey(SSL_CTX *ctx, RSA *rsa);"
"int SSL_CTX_use_RSAPrivateKey_ASN1(\s-1SSL_CTX\s0 *ctx, unsigned char *d, long len);" 4
Item "int SSL_CTX_use_RSAPrivateKey_ASN1(SSL_CTX *ctx, unsigned char *d, long len);"
"int SSL_CTX_use_RSAPrivateKey_file(\s-1SSL_CTX\s0 *ctx, char *file, int type);" 4
Item "int SSL_CTX_use_RSAPrivateKey_file(SSL_CTX *ctx, char *file, int type);"
"int SSL_CTX_use_certificate(\s-1SSL_CTX\s0 *ctx, X509 *x);" 4
Item "int SSL_CTX_use_certificate(SSL_CTX *ctx, X509 *x);"
"int SSL_CTX_use_certificate_ASN1(\s-1SSL_CTX\s0 *ctx, int len, unsigned char *d);" 4
Item "int SSL_CTX_use_certificate_ASN1(SSL_CTX *ctx, int len, unsigned char *d);"
"int SSL_CTX_use_certificate_file(\s-1SSL_CTX\s0 *ctx, char *file, int type);" 4
Item "int SSL_CTX_use_certificate_file(SSL_CTX *ctx, char *file, int type);"

"\s-1DEALING WITH SESSIONS\s0"
Subsection "DEALING WITH SESSIONS" Here we document the various \s-1API\s0 functions which deal with the \s-1SSL/TLS\s0 sessions defined in the \s-1SSL_SESSION\s0 structures.
"int SSL_SESSION_cmp(const \s-1SSL_SESSION\s0 *a, const \s-1SSL_SESSION\s0 *b);" 4
Item "int SSL_SESSION_cmp(const SSL_SESSION *a, const SSL_SESSION *b);"

0

"void SSL_SESSION_free(\s-1SSL_SESSION\s0 *ss);" 4
Item "void SSL_SESSION_free(SSL_SESSION *ss);"
"char *SSL_SESSION_get_app_data(\s-1SSL_SESSION\s0 *s);" 4
Item "char *SSL_SESSION_get_app_data(SSL_SESSION *s);"
"char *SSL_SESSION_get_ex_data(const \s-1SSL_SESSION\s0 *s, int idx);" 4
Item "char *SSL_SESSION_get_ex_data(const SSL_SESSION *s, int idx);"
"int SSL_SESSION_get_ex_new_index(long argl, char *argp, int (*new_func);(void), int (*dup_func)(void), void (*free_func)(void))" 4
Item "int SSL_SESSION_get_ex_new_index(long argl, char *argp, int (*new_func);(void), int (*dup_func)(void), void (*free_func)(void))"
"long SSL_SESSION_get_time(const \s-1SSL_SESSION\s0 *s);" 4
Item "long SSL_SESSION_get_time(const SSL_SESSION *s);"
"long SSL_SESSION_get_timeout(const \s-1SSL_SESSION\s0 *s);" 4
Item "long SSL_SESSION_get_timeout(const SSL_SESSION *s);"
"unsigned long SSL_SESSION_hash(const \s-1SSL_SESSION\s0 *a);" 4
Item "unsigned long SSL_SESSION_hash(const SSL_SESSION *a);"
"\s-1SSL_SESSION\s0 *SSL_SESSION_new(void);" 4
Item "SSL_SESSION *SSL_SESSION_new(void);"
"int SSL_SESSION_print(\s-1BIO\s0 *bp, const \s-1SSL_SESSION\s0 *x);" 4
Item "int SSL_SESSION_print(BIO *bp, const SSL_SESSION *x);"
"int SSL_SESSION_print_fp(\s-1FILE\s0 *fp, const \s-1SSL_SESSION\s0 *x);" 4
Item "int SSL_SESSION_print_fp(FILE *fp, const SSL_SESSION *x);"
"void SSL_SESSION_set_app_data(\s-1SSL_SESSION\s0 *s, char *a);" 4
Item "void SSL_SESSION_set_app_data(SSL_SESSION *s, char *a);"
"int SSL_SESSION_set_ex_data(\s-1SSL_SESSION\s0 *s, int idx, char *arg);" 4
Item "int SSL_SESSION_set_ex_data(SSL_SESSION *s, int idx, char *arg);"
"long SSL_SESSION_set_time(\s-1SSL_SESSION\s0 *s, long t);" 4
Item "long SSL_SESSION_set_time(SSL_SESSION *s, long t);"
"long SSL_SESSION_set_timeout(\s-1SSL_SESSION\s0 *s, long t);" 4
Item "long SSL_SESSION_set_timeout(SSL_SESSION *s, long t);"

"\s-1DEALING WITH CONNECTIONS\s0"
Subsection "DEALING WITH CONNECTIONS" Here we document the various \s-1API\s0 functions which deal with the \s-1SSL/TLS\s0 connection defined in the \s-1SSL\s0 structure.
"int SSL_accept(\s-1SSL\s0 *ssl);" 4
Item "int SSL_accept(SSL *ssl);"

0

"int SSL_add_dir_cert_subjects_to_stack(\s-1STACK\s0 *stack, const char *dir);" 4
Item "int SSL_add_dir_cert_subjects_to_stack(STACK *stack, const char *dir);"
"int SSL_add_file_cert_subjects_to_stack(\s-1STACK\s0 *stack, const char *file);" 4
Item "int SSL_add_file_cert_subjects_to_stack(STACK *stack, const char *file);"
"int SSL_add_client_CA(\s-1SSL\s0 *ssl, X509 *x);" 4
Item "int SSL_add_client_CA(SSL *ssl, X509 *x);"
"char *SSL_alert_desc_string(int value);" 4
Item "char *SSL_alert_desc_string(int value);"
"char *SSL_alert_desc_string_long(int value);" 4
Item "char *SSL_alert_desc_string_long(int value);"
"char *SSL_alert_type_string(int value);" 4
Item "char *SSL_alert_type_string(int value);"
"char *SSL_alert_type_string_long(int value);" 4
Item "char *SSL_alert_type_string_long(int value);"
"int SSL_check_private_key(const \s-1SSL\s0 *ssl);" 4
Item "int SSL_check_private_key(const SSL *ssl);"
"void SSL_clear(\s-1SSL\s0 *ssl);" 4
Item "void SSL_clear(SSL *ssl);"
"long SSL_clear_num_renegotiations(\s-1SSL\s0 *ssl);" 4
Item "long SSL_clear_num_renegotiations(SSL *ssl);"
"int SSL_connect(\s-1SSL\s0 *ssl);" 4
Item "int SSL_connect(SSL *ssl);"
"void SSL_copy_session_id(\s-1SSL\s0 *t, const \s-1SSL\s0 *f);" 4
Item "void SSL_copy_session_id(SSL *t, const SSL *f);"
"long SSL_ctrl(\s-1SSL\s0 *ssl, int cmd, long larg, char *parg);" 4
Item "long SSL_ctrl(SSL *ssl, int cmd, long larg, char *parg);"
"int SSL_do_handshake(\s-1SSL\s0 *ssl);" 4
Item "int SSL_do_handshake(SSL *ssl);"
"\s-1SSL\s0 *SSL_dup(\s-1SSL\s0 *ssl);" 4
Item "SSL *SSL_dup(SSL *ssl);"
"\s-1STACK\s0 *SSL_dup_CA_list(\s-1STACK\s0 *sk);" 4
Item "STACK *SSL_dup_CA_list(STACK *sk);"
"void SSL_free(\s-1SSL\s0 *ssl);" 4
Item "void SSL_free(SSL *ssl);"
"\s-1SSL_CTX\s0 *SSL_get_SSL_CTX(const \s-1SSL\s0 *ssl);" 4
Item "SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl);"
"char *SSL_get_app_data(\s-1SSL\s0 *ssl);" 4
Item "char *SSL_get_app_data(SSL *ssl);"
"X509 *SSL_get_certificate(const \s-1SSL\s0 *ssl);" 4
Item "X509 *SSL_get_certificate(const SSL *ssl);"
"const char *SSL_get_cipher(const \s-1SSL\s0 *ssl);" 4
Item "const char *SSL_get_cipher(const SSL *ssl);"
"int SSL_get_cipher_bits(const \s-1SSL\s0 *ssl, int *alg_bits);" 4
Item "int SSL_get_cipher_bits(const SSL *ssl, int *alg_bits);"
"char *SSL_get_cipher_list(const \s-1SSL\s0 *ssl, int n);" 4
Item "char *SSL_get_cipher_list(const SSL *ssl, int n);"
"char *SSL_get_cipher_name(const \s-1SSL\s0 *ssl);" 4
Item "char *SSL_get_cipher_name(const SSL *ssl);"
"char *SSL_get_cipher_version(const \s-1SSL\s0 *ssl);" 4
Item "char *SSL_get_cipher_version(const SSL *ssl);"
"\s-1STACK\s0 *SSL_get_ciphers(const \s-1SSL\s0 *ssl);" 4
Item "STACK *SSL_get_ciphers(const SSL *ssl);"
"\s-1STACK\s0 *SSL_get_client_CA_list(const \s-1SSL\s0 *ssl);" 4
Item "STACK *SSL_get_client_CA_list(const SSL *ssl);"
"\s-1SSL_CIPHER\s0 *SSL_get_current_cipher(\s-1SSL\s0 *ssl);" 4
Item "SSL_CIPHER *SSL_get_current_cipher(SSL *ssl);"
"long SSL_get_default_timeout(const \s-1SSL\s0 *ssl);" 4
Item "long SSL_get_default_timeout(const SSL *ssl);"
"int SSL_get_error(const \s-1SSL\s0 *ssl, int i);" 4
Item "int SSL_get_error(const SSL *ssl, int i);"
"char *SSL_get_ex_data(const \s-1SSL\s0 *ssl, int idx);" 4
Item "char *SSL_get_ex_data(const SSL *ssl, int idx);"
"int SSL_get_ex_data_X509_STORE_CTX_idx(void);" 4
Item "int SSL_get_ex_data_X509_STORE_CTX_idx(void);"
"int SSL_get_ex_new_index(long argl, char *argp, int (*new_func);(void), int (*dup_func)(void), void (*free_func)(void))" 4
Item "int SSL_get_ex_new_index(long argl, char *argp, int (*new_func);(void), int (*dup_func)(void), void (*free_func)(void))"
"int SSL_get_fd(const \s-1SSL\s0 *ssl);" 4
Item "int SSL_get_fd(const SSL *ssl);"
"void (*SSL_get_info_callback(const \s-1SSL\s0 *ssl);)()" 4
Item "void (*SSL_get_info_callback(const SSL *ssl);)()"
"\s-1STACK\s0 *SSL_get_peer_cert_chain(const \s-1SSL\s0 *ssl);" 4
Item "STACK *SSL_get_peer_cert_chain(const SSL *ssl);"
"X509 *SSL_get_peer_certificate(const \s-1SSL\s0 *ssl);" 4
Item "X509 *SSL_get_peer_certificate(const SSL *ssl);"
"\s-1EVP_PKEY\s0 *SSL_get_privatekey(\s-1SSL\s0 *ssl);" 4
Item "EVP_PKEY *SSL_get_privatekey(SSL *ssl);"
"int SSL_get_quiet_shutdown(const \s-1SSL\s0 *ssl);" 4
Item "int SSL_get_quiet_shutdown(const SSL *ssl);"
"\s-1BIO\s0 *SSL_get_rbio(const \s-1SSL\s0 *ssl);" 4
Item "BIO *SSL_get_rbio(const SSL *ssl);"
"int SSL_get_read_ahead(const \s-1SSL\s0 *ssl);" 4
Item "int SSL_get_read_ahead(const SSL *ssl);"
"\s-1SSL_SESSION\s0 *SSL_get_session(const \s-1SSL\s0 *ssl);" 4
Item "SSL_SESSION *SSL_get_session(const SSL *ssl);"
"char *SSL_get_shared_ciphers(const \s-1SSL\s0 *ssl, char *buf, int len);" 4
Item "char *SSL_get_shared_ciphers(const SSL *ssl, char *buf, int len);"
"int SSL_get_shutdown(const \s-1SSL\s0 *ssl);" 4
Item "int SSL_get_shutdown(const SSL *ssl);"
"\s-1SSL_METHOD\s0 *SSL_get_ssl_method(\s-1SSL\s0 *ssl);" 4
Item "SSL_METHOD *SSL_get_ssl_method(SSL *ssl);"
"int SSL_get_state(const \s-1SSL\s0 *ssl);" 4
Item "int SSL_get_state(const SSL *ssl);"
"long SSL_get_time(const \s-1SSL\s0 *ssl);" 4
Item "long SSL_get_time(const SSL *ssl);"
"long SSL_get_timeout(const \s-1SSL\s0 *ssl);" 4
Item "long SSL_get_timeout(const SSL *ssl);"
"int (*SSL_get_verify_callback(const \s-1SSL\s0 *ssl))(int,X509_STORE_CTX *)" 4
Item "int (*SSL_get_verify_callback(const SSL *ssl))(int,X509_STORE_CTX *)"
"int SSL_get_verify_mode(const \s-1SSL\s0 *ssl);" 4
Item "int SSL_get_verify_mode(const SSL *ssl);"
"long SSL_get_verify_result(const \s-1SSL\s0 *ssl);" 4
Item "long SSL_get_verify_result(const SSL *ssl);"
"char *SSL_get_version(const \s-1SSL\s0 *ssl);" 4
Item "char *SSL_get_version(const SSL *ssl);"
"\s-1BIO\s0 *SSL_get_wbio(const \s-1SSL\s0 *ssl);" 4
Item "BIO *SSL_get_wbio(const SSL *ssl);"
"int SSL_in_accept_init(\s-1SSL\s0 *ssl);" 4
Item "int SSL_in_accept_init(SSL *ssl);"
"int SSL_in_before(\s-1SSL\s0 *ssl);" 4
Item "int SSL_in_before(SSL *ssl);"
"int SSL_in_connect_init(\s-1SSL\s0 *ssl);" 4
Item "int SSL_in_connect_init(SSL *ssl);"
"int SSL_in_init(\s-1SSL\s0 *ssl);" 4
Item "int SSL_in_init(SSL *ssl);"
"int SSL_is_init_finished(\s-1SSL\s0 *ssl);" 4
Item "int SSL_is_init_finished(SSL *ssl);"
"\s-1STACK\s0 *SSL_load_client_CA_file(char *file);" 4
Item "STACK *SSL_load_client_CA_file(char *file);"
"void SSL_load_error_strings(void);" 4
Item "void SSL_load_error_strings(void);"
"\s-1SSL\s0 *SSL_new(\s-1SSL_CTX\s0 *ctx);" 4
Item "SSL *SSL_new(SSL_CTX *ctx);"
"long SSL_num_renegotiations(\s-1SSL\s0 *ssl);" 4
Item "long SSL_num_renegotiations(SSL *ssl);"
"int SSL_peek(\s-1SSL\s0 *ssl, void *buf, int num);" 4
Item "int SSL_peek(SSL *ssl, void *buf, int num);"
"int SSL_pending(const \s-1SSL\s0 *ssl);" 4
Item "int SSL_pending(const SSL *ssl);"
"int SSL_read(\s-1SSL\s0 *ssl, void *buf, int num);" 4
Item "int SSL_read(SSL *ssl, void *buf, int num);"
"int SSL_renegotiate(\s-1SSL\s0 *ssl);" 4
Item "int SSL_renegotiate(SSL *ssl);"
"char *SSL_rstate_string(\s-1SSL\s0 *ssl);" 4
Item "char *SSL_rstate_string(SSL *ssl);"
"char *SSL_rstate_string_long(\s-1SSL\s0 *ssl);" 4
Item "char *SSL_rstate_string_long(SSL *ssl);"
"long SSL_session_reused(\s-1SSL\s0 *ssl);" 4
Item "long SSL_session_reused(SSL *ssl);"
"void SSL_set_accept_state(\s-1SSL\s0 *ssl);" 4
Item "void SSL_set_accept_state(SSL *ssl);"
"void SSL_set_app_data(\s-1SSL\s0 *ssl, char *arg);" 4
Item "void SSL_set_app_data(SSL *ssl, char *arg);"
"void SSL_set_bio(\s-1SSL\s0 *ssl, \s-1BIO\s0 *rbio, \s-1BIO\s0 *wbio);" 4
Item "void SSL_set_bio(SSL *ssl, BIO *rbio, BIO *wbio);"
"int SSL_set_cipher_list(\s-1SSL\s0 *ssl, char *str);" 4
Item "int SSL_set_cipher_list(SSL *ssl, char *str);"
"void SSL_set_client_CA_list(\s-1SSL\s0 *ssl, \s-1STACK\s0 *list);" 4
Item "void SSL_set_client_CA_list(SSL *ssl, STACK *list);"
"void SSL_set_connect_state(\s-1SSL\s0 *ssl);" 4
Item "void SSL_set_connect_state(SSL *ssl);"
"int SSL_set_ex_data(\s-1SSL\s0 *ssl, int idx, char *arg);" 4
Item "int SSL_set_ex_data(SSL *ssl, int idx, char *arg);"
"int SSL_set_fd(\s-1SSL\s0 *ssl, int fd);" 4
Item "int SSL_set_fd(SSL *ssl, int fd);"
"void SSL_set_info_callback(\s-1SSL\s0 *ssl, void (*cb);(void))" 4
Item "void SSL_set_info_callback(SSL *ssl, void (*cb);(void))"
"void SSL_set_msg_callback(\s-1SSL\s0 *ctx, void (*cb)(int write_p, int version, int content_type, const void *buf, size_t len, \s-1SSL\s0 *ssl, void *arg));" 4
Item "void SSL_set_msg_callback(SSL *ctx, void (*cb)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg));"
"void SSL_set_msg_callback_arg(\s-1SSL\s0 *ctx, void *arg);" 4
Item "void SSL_set_msg_callback_arg(SSL *ctx, void *arg);"
"void SSL_set_options(\s-1SSL\s0 *ssl, unsigned long op);" 4
Item "void SSL_set_options(SSL *ssl, unsigned long op);"
"void SSL_set_quiet_shutdown(\s-1SSL\s0 *ssl, int mode);" 4
Item "void SSL_set_quiet_shutdown(SSL *ssl, int mode);"
"void SSL_set_read_ahead(\s-1SSL\s0 *ssl, int yes);" 4
Item "void SSL_set_read_ahead(SSL *ssl, int yes);"
"int SSL_set_rfd(\s-1SSL\s0 *ssl, int fd);" 4
Item "int SSL_set_rfd(SSL *ssl, int fd);"
"int SSL_set_session(\s-1SSL\s0 *ssl, \s-1SSL_SESSION\s0 *session);" 4
Item "int SSL_set_session(SSL *ssl, SSL_SESSION *session);"
"void SSL_set_shutdown(\s-1SSL\s0 *ssl, int mode);" 4
Item "void SSL_set_shutdown(SSL *ssl, int mode);"
"int SSL_set_ssl_method(\s-1SSL\s0 *ssl, \s-1SSL_METHOD\s0 *meth);" 4
Item "int SSL_set_ssl_method(SSL *ssl, SSL_METHOD *meth);"
"void SSL_set_time(\s-1SSL\s0 *ssl, long t);" 4
Item "void SSL_set_time(SSL *ssl, long t);"
"void SSL_set_timeout(\s-1SSL\s0 *ssl, long t);" 4
Item "void SSL_set_timeout(SSL *ssl, long t);"
"void SSL_set_verify(\s-1SSL\s0 *ssl, int mode, int (*callback);(void))" 4
Item "void SSL_set_verify(SSL *ssl, int mode, int (*callback);(void))"
"void SSL_set_verify_result(\s-1SSL\s0 *ssl, long arg);" 4
Item "void SSL_set_verify_result(SSL *ssl, long arg);"
"int SSL_set_wfd(\s-1SSL\s0 *ssl, int fd);" 4
Item "int SSL_set_wfd(SSL *ssl, int fd);"
"int SSL_shutdown(\s-1SSL\s0 *ssl);" 4
Item "int SSL_shutdown(SSL *ssl);"
"int SSL_state(const \s-1SSL\s0 *ssl);" 4
Item "int SSL_state(const SSL *ssl);"
"char *SSL_state_string(const \s-1SSL\s0 *ssl);" 4
Item "char *SSL_state_string(const SSL *ssl);"
"char *SSL_state_string_long(const \s-1SSL\s0 *ssl);" 4
Item "char *SSL_state_string_long(const SSL *ssl);"
"long SSL_total_renegotiations(\s-1SSL\s0 *ssl);" 4
Item "long SSL_total_renegotiations(SSL *ssl);"
"int SSL_use_PrivateKey(\s-1SSL\s0 *ssl, \s-1EVP_PKEY\s0 *pkey);" 4
Item "int SSL_use_PrivateKey(SSL *ssl, EVP_PKEY *pkey);"
"int SSL_use_PrivateKey_ASN1(int type, \s-1SSL\s0 *ssl, unsigned char *d, long len);" 4
Item "int SSL_use_PrivateKey_ASN1(int type, SSL *ssl, unsigned char *d, long len);"
"int SSL_use_PrivateKey_file(\s-1SSL\s0 *ssl, char *file, int type);" 4
Item "int SSL_use_PrivateKey_file(SSL *ssl, char *file, int type);"
"int SSL_use_RSAPrivateKey(\s-1SSL\s0 *ssl, \s-1RSA\s0 *rsa);" 4
Item "int SSL_use_RSAPrivateKey(SSL *ssl, RSA *rsa);"
"int SSL_use_RSAPrivateKey_ASN1(\s-1SSL\s0 *ssl, unsigned char *d, long len);" 4
Item "int SSL_use_RSAPrivateKey_ASN1(SSL *ssl, unsigned char *d, long len);"
"int SSL_use_RSAPrivateKey_file(\s-1SSL\s0 *ssl, char *file, int type);" 4
Item "int SSL_use_RSAPrivateKey_file(SSL *ssl, char *file, int type);"
"int SSL_use_certificate(\s-1SSL\s0 *ssl, X509 *x);" 4
Item "int SSL_use_certificate(SSL *ssl, X509 *x);"
"int SSL_use_certificate_ASN1(\s-1SSL\s0 *ssl, int len, unsigned char *d);" 4
Item "int SSL_use_certificate_ASN1(SSL *ssl, int len, unsigned char *d);"
"int SSL_use_certificate_file(\s-1SSL\s0 *ssl, char *file, int type);" 4
Item "int SSL_use_certificate_file(SSL *ssl, char *file, int type);"
"int SSL_version(const \s-1SSL\s0 *ssl);" 4
Item "int SSL_version(const SSL *ssl);"
"int SSL_want(const \s-1SSL\s0 *ssl);" 4
Item "int SSL_want(const SSL *ssl);"
"int SSL_want_nothing(const \s-1SSL\s0 *ssl);" 4
Item "int SSL_want_nothing(const SSL *ssl);"
"int SSL_want_read(const \s-1SSL\s0 *ssl);" 4
Item "int SSL_want_read(const SSL *ssl);"
"int SSL_want_write(const \s-1SSL\s0 *ssl);" 4
Item "int SSL_want_write(const SSL *ssl);"
"int SSL_want_x509_lookup(const \s-1SSL\s0 *ssl);" 4
Item "int SSL_want_x509_lookup(const SSL *ssl);"
"int SSL_write(\s-1SSL\s0 *ssl, const void *buf, int num);" 4
Item "int SSL_write(SSL *ssl, const void *buf, int num);"

"SEE ALSO"
Header "SEE ALSO" \fIopenssl\|(1), crypto\|(3), \fISSL_accept\|(3), SSL_clear\|(3), \fISSL_connect\|(3), \fISSL_CIPHER_get_name\|(3), \fISSL_COMP_add_compression_method\|(3), \fISSL_CTX_add_extra_chain_cert\|(3), \fISSL_CTX_add_session\|(3), \fISSL_CTX_ctrl\|(3), \fISSL_CTX_flush_sessions\|(3), \fISSL_CTX_get_ex_new_index\|(3), \fISSL_CTX_get_verify_mode\|(3), \fISSL_CTX_load_verify_locations\|(3) \fISSL_CTX_new\|(3), \fISSL_CTX_sess_number\|(3), \fISSL_CTX_sess_set_cache_size\|(3), \fISSL_CTX_sess_set_get_cb\|(3), \fISSL_CTX_sessions\|(3), \fISSL_CTX_set_cert_store\|(3), \fISSL_CTX_set_cert_verify_callback\|(3), \fISSL_CTX_set_cipher_list\|(3), \fISSL_CTX_set_client_CA_list\|(3), \fISSL_CTX_set_client_cert_cb\|(3), \fISSL_CTX_set_default_passwd_cb\|(3), \fISSL_CTX_set_generate_session_id\|(3), \fISSL_CTX_set_info_callback\|(3), \fISSL_CTX_set_max_cert_list\|(3), \fISSL_CTX_set_mode\|(3), \fISSL_CTX_set_msg_callback\|(3), \fISSL_CTX_set_options\|(3), \fISSL_CTX_set_quiet_shutdown\|(3), \fISSL_CTX_set_session_cache_mode\|(3), \fISSL_CTX_set_session_id_context\|(3), \fISSL_CTX_set_ssl_version\|(3), \fISSL_CTX_set_timeout\|(3), \fISSL_CTX_set_tmp_rsa_callback\|(3), \fISSL_CTX_set_tmp_dh_callback\|(3), \fISSL_CTX_set_verify\|(3), \fISSL_CTX_use_certificate\|(3), \fISSL_alert_type_string\|(3), \fISSL_do_handshake\|(3), \fISSL_get_SSL_CTX\|(3), \fISSL_get_ciphers\|(3), \fISSL_get_client_CA_list\|(3), \fISSL_get_default_timeout\|(3), \fISSL_get_error\|(3), \fISSL_get_ex_data_X509_STORE_CTX_idx\|(3), \fISSL_get_ex_new_index\|(3), \fISSL_get_fd\|(3), \fISSL_get_peer_cert_chain\|(3), \fISSL_get_rbio\|(3), \fISSL_get_session\|(3), \fISSL_get_verify_result\|(3), \fISSL_get_version\|(3), \fISSL_library_init\|(3), \fISSL_load_client_CA_file\|(3), \fISSL_new\|(3), \fISSL_pending\|(3), \fISSL_read\|(3), \fISSL_rstate_string\|(3), \fISSL_session_reused\|(3), \fISSL_set_bio\|(3), \fISSL_set_connect_state\|(3), \fISSL_set_fd\|(3), \fISSL_set_session\|(3), \fISSL_set_shutdown\|(3), \fISSL_shutdown\|(3), \fISSL_state_string\|(3), \fISSL_want\|(3), \fISSL_write\|(3), \fISSL_SESSION_free\|(3), \fISSL_SESSION_get_ex_new_index\|(3), \fISSL_SESSION_get_time\|(3), \fId2i_SSL_SESSION\|(3)
"HISTORY"
Header "HISTORY" The ssl\|(3) document appeared in OpenSSL 0.9.2