ssl.pod 24.7 KB
Newer Older
U
Ulf Möller 已提交
1 2 3 4 5 6 7 8 9

=pod

=head1 NAME

SSL - OpenSSL SSL/TLS library

=head1 SYNOPSIS

U
Ulf Möller 已提交
10
=head1 DESCRIPTION
U
Ulf Möller 已提交
11 12 13 14 15

The OpenSSL B<ssl> library implements the Secure Sockets Layer (SSL v2/v3) and
Transport Layer Security (TLS v1) protocols. It provides a rich API which is
documented here.

16 17
At first the library must be initialized; see
L<SSL_library_init(3)|SSL_library_init(3)>.
U
Ulf Möller 已提交
18

19 20 21 22
Then an B<SSL_CTX> object is created as a framework to establish
TLS/SSL enabled connections (see L<SSL_CTX_new(3)|SSL_CTX_new(3)>).
Various options regarding certificates, algorithms etc. can be set
in this object.
U
Ulf Möller 已提交
23

24 25 26 27 28
When a network connection has been created, it can be assigned to an
B<SSL> object. After the B<SSL> object has been created using
L<SSL_new(3)|SSL_new(3)>, L<SSL_set_fd(3)|SSL_set_fd(3)> or
L<SSL_set_bio(3)|SSL_set_bio(3)> can be used to associate the network
connection with the object.
U
Ulf Möller 已提交
29

30 31 32 33 34 35 36
Then the TLS/SSL handshake is performed using
L<SSL_accept(3)|SSL_accept(3)> or L<SSL_connect(3)|SSL_connect(3)>
respectively.
L<SSL_read(3)|SSL_read(3)> and L<SSL_write(3)|SSL_write(3)> are used
to read and write data on the TLS/SSL connection.
L<SSL_shutdown(3)|SSL_shutdown(3)> can be used to shut down the
TLS/SSL connection.
U
Ulf Möller 已提交
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65

=head1 DATA STRUCTURES

Currently the OpenSSL B<ssl> library functions deals with the following data
structures:

=over 4

=item B<SSL_METHOD> (SSL Method)

That's a dispatch structure describing the internal B<ssl> library
methods/functions which implement the various protocol versions (SSLv1, SSLv2
and TLSv1). It's needed to create an B<SSL_CTX>.

=item B<SSL_CIPHER> (SSL Cipher)

This structure holds the algorithm information for a particular cipher which
are a core part of the SSL/TLS protocol. The available ciphers are configured
on a B<SSL_CTX> basis and the actually used ones are then part of the
B<SSL_SESSION>.

=item B<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
B<SSL> structures which are later created for the connections.

=item B<SSL_SESSION> (SSL Session)

B
Bodo Möller 已提交
66
This is a structure containing the current TLS/SSL session details for a
U
Ulf Möller 已提交
67 68 69 70 71 72 73 74 75 76 77
connection: B<SSL_CIPHER>s, client and server certificates, keys, etc.

=item B<SSL> (SSL Connection)

That's the main SSL/TLS structure which is created by a server or client per
established connection. This actually is the core structure in the SSL API.
Under run-time the application usually deals with this structure which has
links to mostly all other structures.

=back

78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120

=head1 HEADER FILES

Currently the OpenSSL B<ssl> library provides the following C header files
containing the prototypes for the data structures and and functions:

=over 4

=item B<ssl.h>

That's the common header file for the SSL/TLS API.  Include it into your
program to make the API of the B<ssl> library available. It internally
includes both more private SSL headers and headers from the B<crypto> library.
Whenever you need hard-core details on the internals of the SSL API, look
inside this header file.

=item B<ssl2.h>

That's the sub header file dealing with the SSLv2 protocol only.
I<Usually you don't have to include it explicitly because
it's already included by ssl.h>.

=item B<ssl3.h>

That's the sub header file dealing with the SSLv3 protocol only.
I<Usually you don't have to include it explicitly because
it's already included by ssl.h>.

=item B<ssl23.h>

That's the sub header file dealing with the combined use of the SSLv2 and
SSLv3 protocols.
I<Usually you don't have to include it explicitly because
it's already included by ssl.h>.

=item B<tls1.h>

That's the sub header file dealing with the TLSv1 protocol only.
I<Usually you don't have to include it explicitly because
it's already included by ssl.h>.

=back

U
Ulf Möller 已提交
121 122 123 124 125 126 127 128 129 130 131 132
=head1 API FUNCTIONS

Currently the OpenSSL B<ssl> library exports 214 API functions.
They are documented in the following:

=head2 DEALING WITH PROTOCOL METHODS

Here we document the various API functions which deal with the SSL/TLS
protocol methods defined in B<SSL_METHOD> structures.

=over 4

133
=item const SSL_METHOD *B<SSLv2_client_method>(void);
U
Ulf Möller 已提交
134 135 136

Constructor for the SSLv2 SSL_METHOD structure for a dedicated client.

137
=item const SSL_METHOD *B<SSLv2_server_method>(void);
U
Ulf Möller 已提交
138 139 140

Constructor for the SSLv2 SSL_METHOD structure for a dedicated server.

141
=item const SSL_METHOD *B<SSLv2_method>(void);
U
Ulf Möller 已提交
142 143 144

Constructor for the SSLv2 SSL_METHOD structure for combined client and server.

145
=item const SSL_METHOD *B<SSLv3_client_method>(void);
U
Ulf Möller 已提交
146 147 148

Constructor for the SSLv3 SSL_METHOD structure for a dedicated client.

149
=item const SSL_METHOD *B<SSLv3_server_method>(void);
U
Ulf Möller 已提交
150 151 152

Constructor for the SSLv3 SSL_METHOD structure for a dedicated server.

153
=item const SSL_METHOD *B<SSLv3_method>(void);
U
Ulf Möller 已提交
154 155 156

Constructor for the SSLv3 SSL_METHOD structure for combined client and server.

157
=item const SSL_METHOD *B<TLSv1_client_method>(void);
U
Ulf Möller 已提交
158 159 160

Constructor for the TLSv1 SSL_METHOD structure for a dedicated client.

B
Bodo Möller 已提交
161
=item const SSL_METHOD *B<TLSv1_server_method>(void);
U
Ulf Möller 已提交
162 163 164

Constructor for the TLSv1 SSL_METHOD structure for a dedicated server.

165
=item const SSL_METHOD *B<TLSv1_method>(void);
U
Ulf Möller 已提交
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188

Constructor for the TLSv1 SSL_METHOD structure for combined client and server.

=back

=head2 DEALING WITH CIPHERS

Here we document the various API functions which deal with the SSL/TLS
ciphers defined in B<SSL_CIPHER> structures.

=over 4

=item char *B<SSL_CIPHER_description>(SSL_CIPHER *cipher, char *buf, int len);

Write a string to I<buf> (with a maximum size of I<len>) containing a human
readable description of I<cipher>. Returns I<buf>.

=item int B<SSL_CIPHER_get_bits>(SSL_CIPHER *cipher, int *alg_bits);

Determine the number of bits in I<cipher>. Because of export crippled ciphers
there are two bits: The bits the algorithm supports in general (stored to
I<alg_bits>) and the bits which are actually used (the return value).

B
Bodo Möller 已提交
189
=item const char *B<SSL_CIPHER_get_name>(SSL_CIPHER *cipher);
U
Ulf Möller 已提交
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215

Return the internal name of I<cipher> as a string. These are the various
strings defined by the I<SSL2_TXT_xxx>, I<SSL3_TXT_xxx> and I<TLS1_TXT_xxx>
definitions in the header files.

=item char *B<SSL_CIPHER_get_version>(SSL_CIPHER *cipher);

Returns a string like "C<TLSv1/SSLv3>" or "C<SSLv2>" which indicates the
SSL/TLS protocol version to which I<cipher> belongs (i.e. where it was defined
in the specification the first time).

=back

=head2 DEALING WITH PROTOCOL CONTEXTS

Here we document the various API functions which deal with the SSL/TLS
protocol context defined in the B<SSL_CTX> structure.

=over 4

=item int B<SSL_CTX_add_client_CA>(SSL_CTX *ctx, X509 *x);

=item long B<SSL_CTX_add_extra_chain_cert>(SSL_CTX *ctx, X509 *x509);

=item int B<SSL_CTX_add_session>(SSL_CTX *ctx, SSL_SESSION *c);

216
=item int B<SSL_CTX_check_private_key>(const SSL_CTX *ctx);
U
Ulf Möller 已提交
217 218 219 220 221 222 223 224 225 226 227

=item long B<SSL_CTX_ctrl>(SSL_CTX *ctx, int cmd, long larg, char *parg);

=item void B<SSL_CTX_flush_sessions>(SSL_CTX *s, long t);

=item void B<SSL_CTX_free>(SSL_CTX *a);

=item char *B<SSL_CTX_get_app_data>(SSL_CTX *ctx);

=item X509_STORE *B<SSL_CTX_get_cert_store>(SSL_CTX *ctx);

228
=item STACK *B<SSL_CTX_get_client_CA_list>(const SSL_CTX *ctx);
U
Ulf Möller 已提交
229 230 231

=item int (*B<SSL_CTX_get_client_cert_cb>(SSL_CTX *ctx))(SSL *ssl, X509 **x509, EVP_PKEY **pkey);

232
=item char *B<SSL_CTX_get_ex_data>(const SSL_CTX *s, int idx);
U
Ulf Möller 已提交
233 234 235 236 237

=item int B<SSL_CTX_get_ex_new_index>(long argl, char *argp, int (*new_func);(void), int (*dup_func)(void), void (*free_func)(void))

=item void (*B<SSL_CTX_get_info_callback>(SSL_CTX *ctx))(SSL *ssl, int cb, int ret);

238
=item int B<SSL_CTX_get_quiet_shutdown>(const SSL_CTX *ctx);
U
Ulf Möller 已提交
239 240 241

=item int B<SSL_CTX_get_session_cache_mode>(SSL_CTX *ctx);

242
=item long B<SSL_CTX_get_timeout>(const SSL_CTX *ctx);
U
Ulf Möller 已提交
243

244
=item int (*B<SSL_CTX_get_verify_callback>(const SSL_CTX *ctx))(int ok, X509_STORE_CTX *ctx);
U
Ulf Möller 已提交
245 246 247 248 249 250 251

=item int B<SSL_CTX_get_verify_mode>(SSL_CTX *ctx);

=item int B<SSL_CTX_load_verify_locations>(SSL_CTX *ctx, char *CAfile, char *CApath);

=item long B<SSL_CTX_need_tmp_RSA>(SSL_CTX *ctx);

252
=item SSL_CTX *B<SSL_CTX_new>(const SSL_METHOD *meth);
U
Ulf Möller 已提交
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301

=item int B<SSL_CTX_remove_session>(SSL_CTX *ctx, SSL_SESSION *c);

=item int B<SSL_CTX_sess_accept>(SSL_CTX *ctx);

=item int B<SSL_CTX_sess_accept_good>(SSL_CTX *ctx);

=item int B<SSL_CTX_sess_accept_renegotiate>(SSL_CTX *ctx);

=item int B<SSL_CTX_sess_cache_full>(SSL_CTX *ctx);

=item int B<SSL_CTX_sess_cb_hits>(SSL_CTX *ctx);

=item int B<SSL_CTX_sess_connect>(SSL_CTX *ctx);

=item int B<SSL_CTX_sess_connect_good>(SSL_CTX *ctx);

=item int B<SSL_CTX_sess_connect_renegotiate>(SSL_CTX *ctx);

=item int B<SSL_CTX_sess_get_cache_size>(SSL_CTX *ctx);

=item SSL_SESSION *(*B<SSL_CTX_sess_get_get_cb>(SSL_CTX *ctx))(SSL *ssl, unsigned char *data, int len, int *copy);

=item int (*B<SSL_CTX_sess_get_new_cb>(SSL_CTX *ctx)(SSL *ssl, SSL_SESSION *sess);

=item void (*B<SSL_CTX_sess_get_remove_cb>(SSL_CTX *ctx)(SSL_CTX *ctx, SSL_SESSION *sess);

=item int B<SSL_CTX_sess_hits>(SSL_CTX *ctx);

=item int B<SSL_CTX_sess_misses>(SSL_CTX *ctx);

=item int B<SSL_CTX_sess_number>(SSL_CTX *ctx);

=item void B<SSL_CTX_sess_set_cache_size>(SSL_CTX *ctx,t);

=item void B<SSL_CTX_sess_set_get_cb>(SSL_CTX *ctx, SSL_SESSION *(*cb)(SSL *ssl, unsigned char *data, int len, int *copy));

=item void B<SSL_CTX_sess_set_new_cb>(SSL_CTX *ctx, int (*cb)(SSL *ssl, SSL_SESSION *sess));

=item void B<SSL_CTX_sess_set_remove_cb>(SSL_CTX *ctx, void (*cb)(SSL_CTX *ctx, SSL_SESSION *sess));

=item int B<SSL_CTX_sess_timeouts>(SSL_CTX *ctx);

=item LHASH *B<SSL_CTX_sessions>(SSL_CTX *ctx);

=item void B<SSL_CTX_set_app_data>(SSL_CTX *ctx, void *arg);

=item void B<SSL_CTX_set_cert_store>(SSL_CTX *ctx, X509_STORE *cs);

302
=item void B<SSL_CTX_set_cert_verify_cb>(SSL_CTX *ctx, int (*cb)(), char *arg)
U
Ulf Möller 已提交
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319

=item int B<SSL_CTX_set_cipher_list>(SSL_CTX *ctx, char *str);

=item void B<SSL_CTX_set_client_CA_list>(SSL_CTX *ctx, STACK *list);

=item void B<SSL_CTX_set_client_cert_cb>(SSL_CTX *ctx, int (*cb)(SSL *ssl, X509 **x509, EVP_PKEY **pkey));

=item void B<SSL_CTX_set_default_passwd_cb>(SSL_CTX *ctx, int (*cb);(void))

=item void B<SSL_CTX_set_default_read_ahead>(SSL_CTX *ctx, int m);

=item int B<SSL_CTX_set_default_verify_paths>(SSL_CTX *ctx);

=item int B<SSL_CTX_set_ex_data>(SSL_CTX *s, int idx, char *arg);

=item void B<SSL_CTX_set_info_callback>(SSL_CTX *ctx, void (*cb)(SSL *ssl, int cb, int ret));

320 321 322 323
=item void B<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));

=item void B<SSL_CTX_set_msg_callback_arg>(SSL_CTX *ctx, void *arg);

U
Ulf Möller 已提交
324 325 326 327 328 329
=item void B<SSL_CTX_set_options>(SSL_CTX *ctx, unsigned long op);

=item void B<SSL_CTX_set_quiet_shutdown>(SSL_CTX *ctx, int mode);

=item void B<SSL_CTX_set_session_cache_mode>(SSL_CTX *ctx, int mode);

330
=item int B<SSL_CTX_set_ssl_version>(SSL_CTX *ctx, const SSL_METHOD *meth);
U
Ulf Möller 已提交
331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353

=item void B<SSL_CTX_set_timeout>(SSL_CTX *ctx, long t);

=item long B<SSL_CTX_set_tmp_dh>(SSL_CTX* ctx, DH *dh);

=item long B<SSL_CTX_set_tmp_dh_callback>(SSL_CTX *ctx, DH *(*cb)(void));

=item long B<SSL_CTX_set_tmp_rsa>(SSL_CTX *ctx, RSA *rsa);

=item SSL_CTX_set_tmp_rsa_callback

C<long B<SSL_CTX_set_tmp_rsa_callback>(SSL_CTX *B<ctx>, RSA *(*B<cb>)(SSL *B<ssl>, int B<export>, int B<keylength>));>

Sets the callback which will be called when a temporary private key is
required. The B<C<export>> flag will be set if the reason for needing
a temp key is that an export ciphersuite is in use, in which case,
B<C<keylength>> will contain the required keylength in bits. Generate a key of
appropriate size (using ???) and return it.

=item SSL_set_tmp_rsa_callback

long B<SSL_set_tmp_rsa_callback>(SSL *ssl, RSA *(*cb)(SSL *ssl, int export, int keylength));

354
The same as B<SSL_CTX_set_tmp_rsa_callback>, except it operates on an SSL
U
Ulf Möller 已提交
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376
session instead of a context.

=item void B<SSL_CTX_set_verify>(SSL_CTX *ctx, int mode, int (*cb);(void))

=item int B<SSL_CTX_use_PrivateKey>(SSL_CTX *ctx, EVP_PKEY *pkey);

=item int B<SSL_CTX_use_PrivateKey_ASN1>(int type, SSL_CTX *ctx, unsigned char *d, long len);

=item int B<SSL_CTX_use_PrivateKey_file>(SSL_CTX *ctx, char *file, int type);

=item int B<SSL_CTX_use_RSAPrivateKey>(SSL_CTX *ctx, RSA *rsa);

=item int B<SSL_CTX_use_RSAPrivateKey_ASN1>(SSL_CTX *ctx, unsigned char *d, long len);

=item int B<SSL_CTX_use_RSAPrivateKey_file>(SSL_CTX *ctx, char *file, int type);

=item int B<SSL_CTX_use_certificate>(SSL_CTX *ctx, X509 *x);

=item int B<SSL_CTX_use_certificate_ASN1>(SSL_CTX *ctx, int len, unsigned char *d);

=item int B<SSL_CTX_use_certificate_file>(SSL_CTX *ctx, char *file, int type);

377 378 379 380 381 382 383 384 385
=item void B<SSL_CTX_set_psk_client_callback>(SSL_CTX *ctx, unsigned int (*callback)(SSL *ssl, const char *hint, char *identity, unsigned int max_identity_len, unsigned char *psk, unsigned int max_psk_len));

=item int B<SSL_CTX_use_psk_identity_hint>(SSL_CTX *ctx, const char *hint);

=item void B<SSL_CTX_set_psk_server_callback>(SSL_CTX *ctx, unsigned int (*callback)(SSL *ssl, const char *identity, unsigned char *psk, int max_psk_len));




U
Ulf Möller 已提交
386 387 388 389 390 391 392 393 394
=back

=head2 DEALING WITH SESSIONS

Here we document the various API functions which deal with the SSL/TLS
sessions defined in the B<SSL_SESSION> structures.

=over 4

395
=item int B<SSL_SESSION_cmp>(const SSL_SESSION *a, const SSL_SESSION *b);
U
Ulf Möller 已提交
396 397 398 399 400

=item void B<SSL_SESSION_free>(SSL_SESSION *ss);

=item char *B<SSL_SESSION_get_app_data>(SSL_SESSION *s);

401
=item char *B<SSL_SESSION_get_ex_data>(const SSL_SESSION *s, int idx);
U
Ulf Möller 已提交
402 403 404

=item int B<SSL_SESSION_get_ex_new_index>(long argl, char *argp, int (*new_func);(void), int (*dup_func)(void), void (*free_func)(void))

405
=item long B<SSL_SESSION_get_time>(const SSL_SESSION *s);
U
Ulf Möller 已提交
406

407
=item long B<SSL_SESSION_get_timeout>(const SSL_SESSION *s);
U
Ulf Möller 已提交
408

409
=item unsigned long B<SSL_SESSION_hash>(const SSL_SESSION *a);
U
Ulf Möller 已提交
410 411 412

=item SSL_SESSION *B<SSL_SESSION_new>(void);

413
=item int B<SSL_SESSION_print>(BIO *bp, const SSL_SESSION *x);
U
Ulf Möller 已提交
414

415
=item int B<SSL_SESSION_print_fp>(FILE *fp, const SSL_SESSION *x);
U
Ulf Möller 已提交
416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449

=item void B<SSL_SESSION_set_app_data>(SSL_SESSION *s, char *a);

=item int B<SSL_SESSION_set_ex_data>(SSL_SESSION *s, int idx, char *arg);

=item long B<SSL_SESSION_set_time>(SSL_SESSION *s, long t);

=item long B<SSL_SESSION_set_timeout>(SSL_SESSION *s, long t);

=back

=head2 DEALING WITH CONNECTIONS

Here we document the various API functions which deal with the SSL/TLS
connection defined in the B<SSL> structure.

=over 4

=item int B<SSL_accept>(SSL *ssl);

=item int B<SSL_add_dir_cert_subjects_to_stack>(STACK *stack, const char *dir);

=item int B<SSL_add_file_cert_subjects_to_stack>(STACK *stack, const char *file);

=item int B<SSL_add_client_CA>(SSL *ssl, X509 *x);

=item char *B<SSL_alert_desc_string>(int value);

=item char *B<SSL_alert_desc_string_long>(int value);

=item char *B<SSL_alert_type_string>(int value);

=item char *B<SSL_alert_type_string_long>(int value);

450
=item int B<SSL_check_private_key>(const SSL *ssl);
U
Ulf Möller 已提交
451 452 453 454 455 456 457

=item void B<SSL_clear>(SSL *ssl);

=item long B<SSL_clear_num_renegotiations>(SSL *ssl);

=item int B<SSL_connect>(SSL *ssl);

458
=item void B<SSL_copy_session_id>(SSL *t, const SSL *f);
U
Ulf Möller 已提交
459 460 461 462 463 464 465 466 467 468 469

=item long B<SSL_ctrl>(SSL *ssl, int cmd, long larg, char *parg);

=item int B<SSL_do_handshake>(SSL *ssl);

=item SSL *B<SSL_dup>(SSL *ssl);

=item STACK *B<SSL_dup_CA_list>(STACK *sk);

=item void B<SSL_free>(SSL *ssl);

470
=item SSL_CTX *B<SSL_get_SSL_CTX>(const SSL *ssl);
U
Ulf Möller 已提交
471 472 473

=item char *B<SSL_get_app_data>(SSL *ssl);

474
=item X509 *B<SSL_get_certificate>(const SSL *ssl);
U
Ulf Möller 已提交
475

476
=item const char *B<SSL_get_cipher>(const SSL *ssl);
U
Ulf Möller 已提交
477

478
=item int B<SSL_get_cipher_bits>(const SSL *ssl, int *alg_bits);
U
Ulf Möller 已提交
479

480
=item char *B<SSL_get_cipher_list>(const SSL *ssl, int n);
U
Ulf Möller 已提交
481

482
=item char *B<SSL_get_cipher_name>(const SSL *ssl);
U
Ulf Möller 已提交
483

484
=item char *B<SSL_get_cipher_version>(const SSL *ssl);
U
Ulf Möller 已提交
485

486
=item STACK *B<SSL_get_ciphers>(const SSL *ssl);
U
Ulf Möller 已提交
487

488
=item STACK *B<SSL_get_client_CA_list>(const SSL *ssl);
U
Ulf Möller 已提交
489 490 491

=item SSL_CIPHER *B<SSL_get_current_cipher>(SSL *ssl);

492
=item long B<SSL_get_default_timeout>(const SSL *ssl);
U
Ulf Möller 已提交
493

494
=item int B<SSL_get_error>(const SSL *ssl, int i);
U
Ulf Möller 已提交
495

496
=item char *B<SSL_get_ex_data>(const SSL *ssl, int idx);
U
Ulf Möller 已提交
497 498 499 500 501

=item int B<SSL_get_ex_data_X509_STORE_CTX_idx>(void);

=item int B<SSL_get_ex_new_index>(long argl, char *argp, int (*new_func);(void), int (*dup_func)(void), void (*free_func)(void))

502
=item int B<SSL_get_fd>(const SSL *ssl);
U
Ulf Möller 已提交
503

504
=item void (*B<SSL_get_info_callback>(const SSL *ssl);)()
U
Ulf Möller 已提交
505

506
=item STACK *B<SSL_get_peer_cert_chain>(const SSL *ssl);
U
Ulf Möller 已提交
507

508
=item X509 *B<SSL_get_peer_certificate>(const SSL *ssl);
U
Ulf Möller 已提交
509 510 511

=item EVP_PKEY *B<SSL_get_privatekey>(SSL *ssl);

512
=item int B<SSL_get_quiet_shutdown>(const SSL *ssl);
U
Ulf Möller 已提交
513

514
=item BIO *B<SSL_get_rbio>(const SSL *ssl);
U
Ulf Möller 已提交
515

516
=item int B<SSL_get_read_ahead>(const SSL *ssl);
U
Ulf Möller 已提交
517

518
=item SSL_SESSION *B<SSL_get_session>(const SSL *ssl);
U
Ulf Möller 已提交
519

520
=item char *B<SSL_get_shared_ciphers>(const SSL *ssl, char *buf, int len);
U
Ulf Möller 已提交
521

522
=item int B<SSL_get_shutdown>(const SSL *ssl);
U
Ulf Möller 已提交
523

524
=item const SSL_METHOD *B<SSL_get_ssl_method>(SSL *ssl);
U
Ulf Möller 已提交
525

526
=item int B<SSL_get_state>(const SSL *ssl);
U
Ulf Möller 已提交
527

528
=item long B<SSL_get_time>(const SSL *ssl);
U
Ulf Möller 已提交
529

530
=item long B<SSL_get_timeout>(const SSL *ssl);
U
Ulf Möller 已提交
531

532
=item int (*B<SSL_get_verify_callback>(const SSL *ssl))(int,X509_STORE_CTX *)
U
Ulf Möller 已提交
533

534
=item int B<SSL_get_verify_mode>(const SSL *ssl);
U
Ulf Möller 已提交
535

536
=item long B<SSL_get_verify_result>(const SSL *ssl);
U
Ulf Möller 已提交
537

538
=item char *B<SSL_get_version>(const SSL *ssl);
U
Ulf Möller 已提交
539

540
=item BIO *B<SSL_get_wbio>(const SSL *ssl);
U
Ulf Möller 已提交
541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559

=item int B<SSL_in_accept_init>(SSL *ssl);

=item int B<SSL_in_before>(SSL *ssl);

=item int B<SSL_in_connect_init>(SSL *ssl);

=item int B<SSL_in_init>(SSL *ssl);

=item int B<SSL_is_init_finished>(SSL *ssl);

=item STACK *B<SSL_load_client_CA_file>(char *file);

=item void B<SSL_load_error_strings>(void);

=item SSL *B<SSL_new>(SSL_CTX *ctx);

=item long B<SSL_num_renegotiations>(SSL *ssl);

560
=item int B<SSL_peek>(SSL *ssl, void *buf, int num);
U
Ulf Möller 已提交
561

562
=item int B<SSL_pending>(const SSL *ssl);
U
Ulf Möller 已提交
563

564
=item int B<SSL_read>(SSL *ssl, void *buf, int num);
U
Ulf Möller 已提交
565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591

=item int B<SSL_renegotiate>(SSL *ssl);

=item char *B<SSL_rstate_string>(SSL *ssl);

=item char *B<SSL_rstate_string_long>(SSL *ssl);

=item long B<SSL_session_reused>(SSL *ssl);

=item void B<SSL_set_accept_state>(SSL *ssl);

=item void B<SSL_set_app_data>(SSL *ssl, char *arg);

=item void B<SSL_set_bio>(SSL *ssl, BIO *rbio, BIO *wbio);

=item int B<SSL_set_cipher_list>(SSL *ssl, char *str);

=item void B<SSL_set_client_CA_list>(SSL *ssl, STACK *list);

=item void B<SSL_set_connect_state>(SSL *ssl);

=item int B<SSL_set_ex_data>(SSL *ssl, int idx, char *arg);

=item int B<SSL_set_fd>(SSL *ssl, int fd);

=item void B<SSL_set_info_callback>(SSL *ssl, void (*cb);(void))

592 593 594 595
=item void B<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));

=item void B<SSL_set_msg_callback_arg>(SSL *ctx, void *arg);

U
Ulf Möller 已提交
596 597 598 599 600 601 602 603 604 605 606 607
=item void B<SSL_set_options>(SSL *ssl, unsigned long op);

=item void B<SSL_set_quiet_shutdown>(SSL *ssl, int mode);

=item void B<SSL_set_read_ahead>(SSL *ssl, int yes);

=item int B<SSL_set_rfd>(SSL *ssl, int fd);

=item int B<SSL_set_session>(SSL *ssl, SSL_SESSION *session);

=item void B<SSL_set_shutdown>(SSL *ssl, int mode);

608
=item int B<SSL_set_ssl_method>(SSL *ssl, const SSL_METHOD *meth);
U
Ulf Möller 已提交
609 610 611 612 613 614 615 616 617 618 619 620 621

=item void B<SSL_set_time>(SSL *ssl, long t);

=item void B<SSL_set_timeout>(SSL *ssl, long t);

=item void B<SSL_set_verify>(SSL *ssl, int mode, int (*callback);(void))

=item void B<SSL_set_verify_result>(SSL *ssl, long arg);

=item int B<SSL_set_wfd>(SSL *ssl, int fd);

=item int B<SSL_shutdown>(SSL *ssl);

622
=item int B<SSL_state>(const SSL *ssl);
U
Ulf Möller 已提交
623

624
=item char *B<SSL_state_string>(const SSL *ssl);
U
Ulf Möller 已提交
625

626
=item char *B<SSL_state_string_long>(const SSL *ssl);
U
Ulf Möller 已提交
627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647

=item long B<SSL_total_renegotiations>(SSL *ssl);

=item int B<SSL_use_PrivateKey>(SSL *ssl, EVP_PKEY *pkey);

=item int B<SSL_use_PrivateKey_ASN1>(int type, SSL *ssl, unsigned char *d, long len);

=item int B<SSL_use_PrivateKey_file>(SSL *ssl, char *file, int type);

=item int B<SSL_use_RSAPrivateKey>(SSL *ssl, RSA *rsa);

=item int B<SSL_use_RSAPrivateKey_ASN1>(SSL *ssl, unsigned char *d, long len);

=item int B<SSL_use_RSAPrivateKey_file>(SSL *ssl, char *file, int type);

=item int B<SSL_use_certificate>(SSL *ssl, X509 *x);

=item int B<SSL_use_certificate_ASN1>(SSL *ssl, int len, unsigned char *d);

=item int B<SSL_use_certificate_file>(SSL *ssl, char *file, int type);

648
=item int B<SSL_version>(const SSL *ssl);
U
Ulf Möller 已提交
649

650
=item int B<SSL_want>(const SSL *ssl);
U
Ulf Möller 已提交
651

652
=item int B<SSL_want_nothing>(const SSL *ssl);
U
Ulf Möller 已提交
653

654
=item int B<SSL_want_read>(const SSL *ssl);
U
Ulf Möller 已提交
655

656
=item int B<SSL_want_write>(const SSL *ssl);
U
Ulf Möller 已提交
657

658
=item int B<SSL_want_x509_lookup>(const SSL *ssl);
U
Ulf Möller 已提交
659

660
=item int B<SSL_write>(SSL *ssl, const void *buf, int num);
U
Ulf Möller 已提交
661

662 663 664 665 666 667 668 669 670 671
=item void B<SSL_set_psk_client_callback>(SSL *ssl, unsigned int (*callback)(SSL *ssl, const char *hint, char *identity, unsigned int max_identity_len, unsigned char *psk, unsigned int max_psk_len));

=item int B<SSL_use_psk_identity_hint>(SSL *ssl, const char *hint);

=item void B<SSL_set_psk_server_callback>(SSL *ssl, unsigned int (*callback)(SSL *ssl, const char *identity, unsigned char *psk, int max_psk_len));

=item const char *B<SSL_get_psk_identity_hint>(SSL *ssl);

=item const char *B<SSL_get_psk_identity>(SSL *ssl);

U
Ulf Möller 已提交
672 673 674 675
=back

=head1 SEE ALSO

U
Ulf Möller 已提交
676
L<openssl(1)|openssl(1)>, L<crypto(3)|crypto(3)>,
677
L<SSL_accept(3)|SSL_accept(3)>, L<SSL_clear(3)|SSL_clear(3)>,
678
L<SSL_connect(3)|SSL_connect(3)>,
679
L<SSL_CIPHER_get_name(3)|SSL_CIPHER_get_name(3)>,
680
L<SSL_COMP_add_compression_method(3)|SSL_COMP_add_compression_method(3)>,
681
L<SSL_CTX_add_extra_chain_cert(3)|SSL_CTX_add_extra_chain_cert(3)>,
682
L<SSL_CTX_add_session(3)|SSL_CTX_add_session(3)>,
L
Lutz Jänicke 已提交
683
L<SSL_CTX_ctrl(3)|SSL_CTX_ctrl(3)>,
684
L<SSL_CTX_flush_sessions(3)|SSL_CTX_flush_sessions(3)>,
685
L<SSL_CTX_get_ex_new_index(3)|SSL_CTX_get_ex_new_index(3)>,
686
L<SSL_CTX_get_verify_mode(3)|SSL_CTX_get_verify_mode(3)>,
687 688
L<SSL_CTX_load_verify_locations(3)|SSL_CTX_load_verify_locations(3)>
L<SSL_CTX_new(3)|SSL_CTX_new(3)>,
L
Lutz Jänicke 已提交
689
L<SSL_CTX_sess_number(3)|SSL_CTX_sess_number(3)>,
690
L<SSL_CTX_sess_set_cache_size(3)|SSL_CTX_sess_set_cache_size(3)>,
691
L<SSL_CTX_sess_set_get_cb(3)|SSL_CTX_sess_set_get_cb(3)>,
692
L<SSL_CTX_sessions(3)|SSL_CTX_sessions(3)>,
L
Lutz Jänicke 已提交
693
L<SSL_CTX_set_cert_store(3)|SSL_CTX_set_cert_store(3)>,
694
L<SSL_CTX_set_cert_verify_callback(3)|SSL_CTX_set_cert_verify_callback(3)>,
L
Lutz Jänicke 已提交
695
L<SSL_CTX_set_cipher_list(3)|SSL_CTX_set_cipher_list(3)>,
696
L<SSL_CTX_set_client_CA_list(3)|SSL_CTX_set_client_CA_list(3)>,
697
L<SSL_CTX_set_client_cert_cb(3)|SSL_CTX_set_client_cert_cb(3)>,
698
L<SSL_CTX_set_default_passwd_cb(3)|SSL_CTX_set_default_passwd_cb(3)>,
699
L<SSL_CTX_set_generate_session_id(3)|SSL_CTX_set_generate_session_id(3)>,
L
Lutz Jänicke 已提交
700
L<SSL_CTX_set_info_callback(3)|SSL_CTX_set_info_callback(3)>,
701
L<SSL_CTX_set_max_cert_list(3)|SSL_CTX_set_max_cert_list(3)>,
702
L<SSL_CTX_set_mode(3)|SSL_CTX_set_mode(3)>,
703
L<SSL_CTX_set_msg_callback(3)|SSL_CTX_set_msg_callback(3)>,
704
L<SSL_CTX_set_options(3)|SSL_CTX_set_options(3)>,
705
L<SSL_CTX_set_quiet_shutdown(3)|SSL_CTX_set_quiet_shutdown(3)>,
706
L<SSL_CTX_set_session_cache_mode(3)|SSL_CTX_set_session_cache_mode(3)>,
707
L<SSL_CTX_set_session_id_context(3)|SSL_CTX_set_session_id_context(3)>,
U
Ulf Möller 已提交
708
L<SSL_CTX_set_ssl_version(3)|SSL_CTX_set_ssl_version(3)>,
709
L<SSL_CTX_set_timeout(3)|SSL_CTX_set_timeout(3)>,
710 711
L<SSL_CTX_set_tmp_rsa_callback(3)|SSL_CTX_set_tmp_rsa_callback(3)>,
L<SSL_CTX_set_tmp_dh_callback(3)|SSL_CTX_set_tmp_dh_callback(3)>,
712
L<SSL_CTX_set_verify(3)|SSL_CTX_set_verify(3)>,
713
L<SSL_CTX_use_certificate(3)|SSL_CTX_use_certificate(3)>,
714
L<SSL_alert_type_string(3)|SSL_alert_type_string(3)>,
715
L<SSL_do_handshake(3)|SSL_do_handshake(3)>,
L
Lutz Jänicke 已提交
716
L<SSL_get_SSL_CTX(3)|SSL_get_SSL_CTX(3)>,
U
Ulf Möller 已提交
717
L<SSL_get_ciphers(3)|SSL_get_ciphers(3)>,
718
L<SSL_get_client_CA_list(3)|SSL_get_client_CA_list(3)>,
719
L<SSL_get_default_timeout(3)|SSL_get_default_timeout(3)>,
L
Lutz Jänicke 已提交
720 721 722 723
L<SSL_get_error(3)|SSL_get_error(3)>,
L<SSL_get_ex_data_X509_STORE_CTX_idx(3)|SSL_get_ex_data_X509_STORE_CTX_idx(3)>,
L<SSL_get_ex_new_index(3)|SSL_get_ex_new_index(3)>,
L<SSL_get_fd(3)|SSL_get_fd(3)>,
U
Ulf Möller 已提交
724
L<SSL_get_peer_cert_chain(3)|SSL_get_peer_cert_chain(3)>,
725
L<SSL_get_rbio(3)|SSL_get_rbio(3)>,
U
Ulf Möller 已提交
726 727
L<SSL_get_session(3)|SSL_get_session(3)>,
L<SSL_get_verify_result(3)|SSL_get_verify_result(3)>,
728
L<SSL_get_version(3)|SSL_get_version(3)>,
729 730 731
L<SSL_library_init(3)|SSL_library_init(3)>,
L<SSL_load_client_CA_file(3)|SSL_load_client_CA_file(3)>,
L<SSL_new(3)|SSL_new(3)>,
L
Lutz Jänicke 已提交
732 733
L<SSL_pending(3)|SSL_pending(3)>,
L<SSL_read(3)|SSL_read(3)>,
L
Lutz Jänicke 已提交
734
L<SSL_rstate_string(3)|SSL_rstate_string(3)>,
L
Lutz Jänicke 已提交
735 736
L<SSL_session_reused(3)|SSL_session_reused(3)>,
L<SSL_set_bio(3)|SSL_set_bio(3)>,
737
L<SSL_set_connect_state(3)|SSL_set_connect_state(3)>,
L
Lutz Jänicke 已提交
738
L<SSL_set_fd(3)|SSL_set_fd(3)>,
739
L<SSL_set_session(3)|SSL_set_session(3)>,
740
L<SSL_set_shutdown(3)|SSL_set_shutdown(3)>,
L
Lutz Jänicke 已提交
741
L<SSL_shutdown(3)|SSL_shutdown(3)>,
L
Lutz Jänicke 已提交
742
L<SSL_state_string(3)|SSL_state_string(3)>,
743
L<SSL_want(3)|SSL_want(3)>,
L
Lutz Jänicke 已提交
744
L<SSL_write(3)|SSL_write(3)>,
745
L<SSL_SESSION_free(3)|SSL_SESSION_free(3)>,
746
L<SSL_SESSION_get_ex_new_index(3)|SSL_SESSION_get_ex_new_index(3)>,
747
L<SSL_SESSION_get_time(3)|SSL_SESSION_get_time(3)>,
748 749 750 751
L<d2i_SSL_SESSION(3)|d2i_SSL_SESSION(3)>,
L<SSL_CTX_set_psk_client_callback(3)|SSL_CTX_set_psk_client_callback(3)>,
L<SSL_CTX_use_psk_identity_hint(3)|SSL_CTX_use_psk_identity_hint(3)>,
L<SSL_get_psk_identity(3)|SSL_get_psk_identity(3)>
U
Ulf Möller 已提交
752 753 754

=head1 HISTORY

755
The L<ssl(3)|ssl(3)> document appeared in OpenSSL 0.9.2
U
Ulf Möller 已提交
756 757 758

=cut