"BTW, I no longer have a wish for this. This was solved in other ways."
[openssl.git] / doc / ssl.pod
1
2 =pod
3
4 =head1 NAME
5
6 SSL - OpenSSL SSL/TLS library
7
8 =head1 SYNOPSIS
9
10 =head1 DESCRIPTION
11
12 The OpenSSL B<ssl> library implements the Secure Sockets Layer (SSL v2/v3) and
13 Transport Layer Security (TLS v1) protocols. It provides a rich API which is
14 documented here.
15
16 =head1 HEADER FILES
17
18 Currently the OpenSSL B<ssl> library provides the following C header files
19 containing the prototypes for the data structures and and functions:
20
21 =over 4
22
23 =item B<ssl.h>
24
25 That's the common header file for the SSL/TLS API.  Include it into your
26 program to make the API of the B<ssl> library available. It internally
27 includes both more private SSL headers and headers from the B<crypto> library.
28 Whenever you need hard-core details on the internals of the SSL API, look
29 inside this header file.
30
31 =item B<ssl2.h>
32
33 That's the sub header file dealing with the SSLv2 protocol only.
34 I<Usually you don't have to include it explicitly because
35 it's already included by ssl.h>.
36
37 =item B<ssl3.h>
38
39 That's the sub header file dealing with the SSLv3 protocol only.
40 I<Usually you don't have to include it explicitly because
41 it's already included by ssl.h>.
42
43 =item B<ssl23.h>
44
45 That's the sub header file dealing with the combined use of the SSLv2 and
46 SSLv3 protocols.
47 I<Usually you don't have to include it explicitly because
48 it's already included by ssl.h>.
49
50 =item B<tls1.h>
51
52 That's the sub header file dealing with the TLSv1 protocol only.
53 I<Usually you don't have to include it explicitly because
54 it's already included by ssl.h>.
55
56 =back
57
58 =head1 DATA STRUCTURES
59
60 Currently the OpenSSL B<ssl> library functions deals with the following data
61 structures:
62
63 =over 4
64
65 =item B<SSL_METHOD> (SSL Method)
66
67 That's a dispatch structure describing the internal B<ssl> library
68 methods/functions which implement the various protocol versions (SSLv1, SSLv2
69 and TLSv1). It's needed to create an B<SSL_CTX>.
70
71 =item B<SSL_CIPHER> (SSL Cipher)
72
73 This structure holds the algorithm information for a particular cipher which
74 are a core part of the SSL/TLS protocol. The available ciphers are configured
75 on a B<SSL_CTX> basis and the actually used ones are then part of the
76 B<SSL_SESSION>.
77
78 =item B<SSL_CTX> (SSL Context)
79
80 That's the global context structure which is created by a server or client
81 once per program life-time and which holds mainly default values for the
82 B<SSL> structures which are later created for the connections.
83
84 =item B<SSL_SESSION> (SSL Session)
85
86 This is a structure containing the current SSL session details for a
87 connection: B<SSL_CIPHER>s, client and server certificates, keys, etc.
88
89 =item B<SSL> (SSL Connection)
90
91 That's the main SSL/TLS structure which is created by a server or client per
92 established connection. This actually is the core structure in the SSL API.
93 Under run-time the application usually deals with this structure which has
94 links to mostly all other structures.
95
96 =back
97
98 =head1 API FUNCTIONS
99
100 Currently the OpenSSL B<ssl> library exports 214 API functions.
101 They are documented in the following:
102
103 =head2 DEALING WITH PROTOCOL METHODS
104
105 Here we document the various API functions which deal with the SSL/TLS
106 protocol methods defined in B<SSL_METHOD> structures.
107
108 =over 4
109
110 =item SSL_METHOD *B<SSLv2_client_method>(void);
111
112 Constructor for the SSLv2 SSL_METHOD structure for a dedicated client.
113
114 =item SSL_METHOD *B<SSLv2_server_method>(void);
115
116 Constructor for the SSLv2 SSL_METHOD structure for a dedicated server.
117
118 =item SSL_METHOD *B<SSLv2_method>(void);
119
120 Constructor for the SSLv2 SSL_METHOD structure for combined client and server.
121
122 =item SSL_METHOD *B<SSLv3_client_method>(void);
123
124 Constructor for the SSLv3 SSL_METHOD structure for a dedicated client.
125
126 =item SSL_METHOD *B<SSLv3_server_method>(void);
127
128 Constructor for the SSLv3 SSL_METHOD structure for a dedicated server.
129
130 =item SSL_METHOD *B<SSLv3_method>(void);
131
132 Constructor for the SSLv3 SSL_METHOD structure for combined client and server.
133
134 =item SSL_METHOD *B<TLSv1_client_method>(void);
135
136 Constructor for the TLSv1 SSL_METHOD structure for a dedicated client.
137
138 =item SSL_METHOD *B<TLSv1_server_method>(void);
139
140 Constructor for the TLSv1 SSL_METHOD structure for a dedicated server.
141
142 =item SSL_METHOD *B<TLSv1_method>(void);
143
144 Constructor for the TLSv1 SSL_METHOD structure for combined client and server.
145
146 =back
147
148 =head2 DEALING WITH CIPHERS
149
150 Here we document the various API functions which deal with the SSL/TLS
151 ciphers defined in B<SSL_CIPHER> structures.
152
153 =over 4
154
155 =item char *B<SSL_CIPHER_description>(SSL_CIPHER *cipher, char *buf, int len);
156
157 Write a string to I<buf> (with a maximum size of I<len>) containing a human
158 readable description of I<cipher>. Returns I<buf>.
159
160 =item int B<SSL_CIPHER_get_bits>(SSL_CIPHER *cipher, int *alg_bits);
161
162 Determine the number of bits in I<cipher>. Because of export crippled ciphers
163 there are two bits: The bits the algorithm supports in general (stored to
164 I<alg_bits>) and the bits which are actually used (the return value).
165
166 =item char *B<SSL_CIPHER_get_name>(SSL_CIPHER *cipher);
167
168 Return the internal name of I<cipher> as a string. These are the various
169 strings defined by the I<SSL2_TXT_xxx>, I<SSL3_TXT_xxx> and I<TLS1_TXT_xxx>
170 definitions in the header files.
171
172 =item char *B<SSL_CIPHER_get_version>(SSL_CIPHER *cipher);
173
174 Returns a string like "C<TLSv1/SSLv3>" or "C<SSLv2>" which indicates the
175 SSL/TLS protocol version to which I<cipher> belongs (i.e. where it was defined
176 in the specification the first time).
177
178 =back
179
180 =head2 DEALING WITH PROTOCOL CONTEXTS
181
182 Here we document the various API functions which deal with the SSL/TLS
183 protocol context defined in the B<SSL_CTX> structure.
184
185 =over 4
186
187 =item int B<SSL_CTX_add_client_CA>(SSL_CTX *ctx, X509 *x);
188
189 =item long B<SSL_CTX_add_extra_chain_cert>(SSL_CTX *ctx, X509 *x509);
190
191 =item int B<SSL_CTX_add_session>(SSL_CTX *ctx, SSL_SESSION *c);
192
193 =item int B<SSL_CTX_check_private_key>(SSL_CTX *ctx);
194
195 =item long B<SSL_CTX_ctrl>(SSL_CTX *ctx, int cmd, long larg, char *parg);
196
197 =item void B<SSL_CTX_flush_sessions>(SSL_CTX *s, long t);
198
199 =item void B<SSL_CTX_free>(SSL_CTX *a);
200
201 =item char *B<SSL_CTX_get_app_data>(SSL_CTX *ctx);
202
203 =item X509_STORE *B<SSL_CTX_get_cert_store>(SSL_CTX *ctx);
204
205 =item STACK *B<SSL_CTX_get_client_CA_list>(SSL_CTX *ctx);
206
207 =item int (*B<SSL_CTX_get_client_cert_cb>(SSL_CTX *ctx))(SSL *ssl, X509 **x509, EVP_PKEY **pkey);
208
209 =item char *B<SSL_CTX_get_ex_data>(SSL_CTX *s, int idx);
210
211 =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))
212
213 =item void (*B<SSL_CTX_get_info_callback>(SSL_CTX *ctx))(SSL *ssl, int cb, int ret);
214
215 =item int B<SSL_CTX_get_quiet_shutdown>(SSL_CTX *ctx);
216
217 =item int B<SSL_CTX_get_session_cache_mode>(SSL_CTX *ctx);
218
219 =item long B<SSL_CTX_get_timeout>(SSL_CTX *ctx);
220
221 =item int (*B<SSL_CTX_get_verify_callback>(SSL_CTX *ctx))(int ok, X509_STORE_CTX *ctx);
222
223 =item int B<SSL_CTX_get_verify_mode>(SSL_CTX *ctx);
224
225 =item int B<SSL_CTX_load_verify_locations>(SSL_CTX *ctx, char *CAfile, char *CApath);
226
227 =item long B<SSL_CTX_need_tmp_RSA>(SSL_CTX *ctx);
228
229 =item SSL_CTX *B<SSL_CTX_new>(SSL_METHOD *meth);
230
231 =item int B<SSL_CTX_remove_session>(SSL_CTX *ctx, SSL_SESSION *c);
232
233 =item int B<SSL_CTX_sess_accept>(SSL_CTX *ctx);
234
235 =item int B<SSL_CTX_sess_accept_good>(SSL_CTX *ctx);
236
237 =item int B<SSL_CTX_sess_accept_renegotiate>(SSL_CTX *ctx);
238
239 =item int B<SSL_CTX_sess_cache_full>(SSL_CTX *ctx);
240
241 =item int B<SSL_CTX_sess_cb_hits>(SSL_CTX *ctx);
242
243 =item int B<SSL_CTX_sess_connect>(SSL_CTX *ctx);
244
245 =item int B<SSL_CTX_sess_connect_good>(SSL_CTX *ctx);
246
247 =item int B<SSL_CTX_sess_connect_renegotiate>(SSL_CTX *ctx);
248
249 =item int B<SSL_CTX_sess_get_cache_size>(SSL_CTX *ctx);
250
251 =item SSL_SESSION *(*B<SSL_CTX_sess_get_get_cb>(SSL_CTX *ctx))(SSL *ssl, unsigned char *data, int len, int *copy);
252
253 =item int (*B<SSL_CTX_sess_get_new_cb>(SSL_CTX *ctx)(SSL *ssl, SSL_SESSION *sess);
254
255 =item void (*B<SSL_CTX_sess_get_remove_cb>(SSL_CTX *ctx)(SSL_CTX *ctx, SSL_SESSION *sess);
256
257 =item int B<SSL_CTX_sess_hits>(SSL_CTX *ctx);
258
259 =item int B<SSL_CTX_sess_misses>(SSL_CTX *ctx);
260
261 =item int B<SSL_CTX_sess_number>(SSL_CTX *ctx);
262
263 =item void B<SSL_CTX_sess_set_cache_size>(SSL_CTX *ctx,t);
264
265 =item void B<SSL_CTX_sess_set_get_cb>(SSL_CTX *ctx, SSL_SESSION *(*cb)(SSL *ssl, unsigned char *data, int len, int *copy));
266
267 =item void B<SSL_CTX_sess_set_new_cb>(SSL_CTX *ctx, int (*cb)(SSL *ssl, SSL_SESSION *sess));
268
269 =item void B<SSL_CTX_sess_set_remove_cb>(SSL_CTX *ctx, void (*cb)(SSL_CTX *ctx, SSL_SESSION *sess));
270
271 =item int B<SSL_CTX_sess_timeouts>(SSL_CTX *ctx);
272
273 =item LHASH *B<SSL_CTX_sessions>(SSL_CTX *ctx);
274
275 =item void B<SSL_CTX_set_app_data>(SSL_CTX *ctx, void *arg);
276
277 =item void B<SSL_CTX_set_cert_store>(SSL_CTX *ctx, X509_STORE *cs);
278
279 =item void B<SSL_CTX_set_cert_verify_cb>(SSL_CTX *ctx, int (*cb)(SSL_CTX *), char *arg)
280
281 =item int B<SSL_CTX_set_cipher_list>(SSL_CTX *ctx, char *str);
282
283 =item void B<SSL_CTX_set_client_CA_list>(SSL_CTX *ctx, STACK *list);
284
285 =item void B<SSL_CTX_set_client_cert_cb>(SSL_CTX *ctx, int (*cb)(SSL *ssl, X509 **x509, EVP_PKEY **pkey));
286
287 =item void B<SSL_CTX_set_default_passwd_cb>(SSL_CTX *ctx, int (*cb);(void))
288
289 =item void B<SSL_CTX_set_default_read_ahead>(SSL_CTX *ctx, int m);
290
291 =item int B<SSL_CTX_set_default_verify_paths>(SSL_CTX *ctx);
292
293 =item int B<SSL_CTX_set_ex_data>(SSL_CTX *s, int idx, char *arg);
294
295 =item void B<SSL_CTX_set_info_callback>(SSL_CTX *ctx, void (*cb)(SSL *ssl, int cb, int ret));
296
297 =item void B<SSL_CTX_set_options>(SSL_CTX *ctx, unsigned long op);
298
299 =item void B<SSL_CTX_set_quiet_shutdown>(SSL_CTX *ctx, int mode);
300
301 =item void B<SSL_CTX_set_session_cache_mode>(SSL_CTX *ctx, int mode);
302
303 =item int B<SSL_CTX_set_ssl_version>(SSL_CTX *ctx, SSL_METHOD *meth);
304
305 =item void B<SSL_CTX_set_timeout>(SSL_CTX *ctx, long t);
306
307 =item long B<SSL_CTX_set_tmp_dh>(SSL_CTX* ctx, DH *dh);
308
309 =item long B<SSL_CTX_set_tmp_dh_callback>(SSL_CTX *ctx, DH *(*cb)(void));
310
311 =item long B<SSL_CTX_set_tmp_rsa>(SSL_CTX *ctx, RSA *rsa);
312
313 =item SSL_CTX_set_tmp_rsa_callback
314
315 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>));>
316
317 Sets the callback which will be called when a temporary private key is
318 required. The B<C<export>> flag will be set if the reason for needing
319 a temp key is that an export ciphersuite is in use, in which case,
320 B<C<keylength>> will contain the required keylength in bits. Generate a key of
321 appropriate size (using ???) and return it.
322
323 =item SSL_set_tmp_rsa_callback
324
325 long B<SSL_set_tmp_rsa_callback>(SSL *ssl, RSA *(*cb)(SSL *ssl, int export, int keylength));
326
327 The same as L<"SSL_CTX_set_tmp_rsa_callback">, except it operates on an SSL
328 session instead of a context.
329
330 =item void B<SSL_CTX_set_verify>(SSL_CTX *ctx, int mode, int (*cb);(void))
331
332 =item int B<SSL_CTX_use_PrivateKey>(SSL_CTX *ctx, EVP_PKEY *pkey);
333
334 =item int B<SSL_CTX_use_PrivateKey_ASN1>(int type, SSL_CTX *ctx, unsigned char *d, long len);
335
336 =item int B<SSL_CTX_use_PrivateKey_file>(SSL_CTX *ctx, char *file, int type);
337
338 =item int B<SSL_CTX_use_RSAPrivateKey>(SSL_CTX *ctx, RSA *rsa);
339
340 =item int B<SSL_CTX_use_RSAPrivateKey_ASN1>(SSL_CTX *ctx, unsigned char *d, long len);
341
342 =item int B<SSL_CTX_use_RSAPrivateKey_file>(SSL_CTX *ctx, char *file, int type);
343
344 =item int B<SSL_CTX_use_certificate>(SSL_CTX *ctx, X509 *x);
345
346 =item int B<SSL_CTX_use_certificate_ASN1>(SSL_CTX *ctx, int len, unsigned char *d);
347
348 =item int B<SSL_CTX_use_certificate_file>(SSL_CTX *ctx, char *file, int type);
349
350 =back
351
352 =head2 DEALING WITH SESSIONS
353
354 Here we document the various API functions which deal with the SSL/TLS
355 sessions defined in the B<SSL_SESSION> structures.
356
357 =over 4
358
359 =item int B<SSL_SESSION_cmp>(SSL_SESSION *a, SSL_SESSION *b);
360
361 =item void B<SSL_SESSION_free>(SSL_SESSION *ss);
362
363 =item char *B<SSL_SESSION_get_app_data>(SSL_SESSION *s);
364
365 =item char *B<SSL_SESSION_get_ex_data>(SSL_SESSION *s, int idx);
366
367 =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))
368
369 =item long B<SSL_SESSION_get_time>(SSL_SESSION *s);
370
371 =item long B<SSL_SESSION_get_timeout>(SSL_SESSION *s);
372
373 =item unsigned long B<SSL_SESSION_hash>(SSL_SESSION *a);
374
375 =item SSL_SESSION *B<SSL_SESSION_new>(void);
376
377 =item int B<SSL_SESSION_print>(BIO *bp, SSL_SESSION *x);
378
379 =item int B<SSL_SESSION_print_fp>(FILE *fp, SSL_SESSION *x);
380
381 =item void B<SSL_SESSION_set_app_data>(SSL_SESSION *s, char *a);
382
383 =item int B<SSL_SESSION_set_ex_data>(SSL_SESSION *s, int idx, char *arg);
384
385 =item long B<SSL_SESSION_set_time>(SSL_SESSION *s, long t);
386
387 =item long B<SSL_SESSION_set_timeout>(SSL_SESSION *s, long t);
388
389 =back
390
391 =head2 DEALING WITH CONNECTIONS
392
393 Here we document the various API functions which deal with the SSL/TLS
394 connection defined in the B<SSL> structure.
395
396 =over 4
397
398 =item int B<SSL_accept>(SSL *ssl);
399
400 =item int B<SSL_add_dir_cert_subjects_to_stack>(STACK *stack, const char *dir);
401
402 =item int B<SSL_add_file_cert_subjects_to_stack>(STACK *stack, const char *file);
403
404 =item int B<SSL_add_client_CA>(SSL *ssl, X509 *x);
405
406 =item char *B<SSL_alert_desc_string>(int value);
407
408 =item char *B<SSL_alert_desc_string_long>(int value);
409
410 =item char *B<SSL_alert_type_string>(int value);
411
412 =item char *B<SSL_alert_type_string_long>(int value);
413
414 =item int B<SSL_check_private_key>(SSL *ssl);
415
416 =item void B<SSL_clear>(SSL *ssl);
417
418 =item long B<SSL_clear_num_renegotiations>(SSL *ssl);
419
420 =item int B<SSL_connect>(SSL *ssl);
421
422 =item void B<SSL_copy_session_id>(SSL *t, SSL *f);
423
424 =item long B<SSL_ctrl>(SSL *ssl, int cmd, long larg, char *parg);
425
426 =item int B<SSL_do_handshake>(SSL *ssl);
427
428 =item SSL *B<SSL_dup>(SSL *ssl);
429
430 =item STACK *B<SSL_dup_CA_list>(STACK *sk);
431
432 =item void B<SSL_free>(SSL *ssl);
433
434 =item SSL_CTX *B<SSL_get_SSL_CTX>(SSL *ssl);
435
436 =item char *B<SSL_get_app_data>(SSL *ssl);
437
438 =item X509 *B<SSL_get_certificate>(SSL *ssl);
439
440 =item SSL_CIPHER *B<SSL_get_cipher>(SSL *ssl);
441
442 =item int B<SSL_get_cipher_bits>(SSL *ssl, int *alg_bits);
443
444 =item char *B<SSL_get_cipher_list>(SSL *ssl, int n);
445
446 =item char *B<SSL_get_cipher_name>(SSL *ssl);
447
448 =item char *B<SSL_get_cipher_version>(SSL *ssl);
449
450 =item STACK *B<SSL_get_ciphers>(SSL *ssl);
451
452 =item STACK *B<SSL_get_client_CA_list>(SSL *ssl);
453
454 =item SSL_CIPHER *B<SSL_get_current_cipher>(SSL *ssl);
455
456 =item long B<SSL_get_default_timeout>(SSL *ssl);
457
458 =item int B<SSL_get_error>(SSL *ssl, int i);
459
460 =item char *B<SSL_get_ex_data>(SSL *ssl, int idx);
461
462 =item int B<SSL_get_ex_data_X509_STORE_CTX_idx>(void);
463
464 =item int B<SSL_get_ex_new_index>(long argl, char *argp, int (*new_func);(void), int (*dup_func)(void), void (*free_func)(void))
465
466 =item int B<SSL_get_fd>(SSL *ssl);
467
468 =item void (*B<SSL_get_info_callback>(SSL *ssl);)(void)
469
470 =item STACK *B<SSL_get_peer_cert_chain>(SSL *ssl);
471
472 =item X509 *B<SSL_get_peer_certificate>(SSL *ssl);
473
474 =item EVP_PKEY *B<SSL_get_privatekey>(SSL *ssl);
475
476 =item int B<SSL_get_quiet_shutdown>(SSL *ssl);
477
478 =item BIO *B<SSL_get_rbio>(SSL *ssl);
479
480 =item int B<SSL_get_read_ahead>(SSL *ssl);
481
482 =item SSL_SESSION *B<SSL_get_session>(SSL *ssl);
483
484 =item char *B<SSL_get_shared_ciphers>(SSL *ssl, char *buf, int len);
485
486 =item int B<SSL_get_shutdown>(SSL *ssl);
487
488 =item SSL_METHOD *B<SSL_get_ssl_method>(SSL *ssl);
489
490 =item int B<SSL_get_state>(SSL *ssl);
491
492 =item long B<SSL_get_time>(SSL *ssl);
493
494 =item long B<SSL_get_timeout>(SSL *ssl);
495
496 =item int (*B<SSL_get_verify_callback>(SSL *ssl);)(void)
497
498 =item int B<SSL_get_verify_mode>(SSL *ssl);
499
500 =item long B<SSL_get_verify_result>(SSL *ssl);
501
502 =item char *B<SSL_get_version>(SSL *ssl);
503
504 =item BIO *B<SSL_get_wbio>(SSL *ssl);
505
506 =item int B<SSL_in_accept_init>(SSL *ssl);
507
508 =item int B<SSL_in_before>(SSL *ssl);
509
510 =item int B<SSL_in_connect_init>(SSL *ssl);
511
512 =item int B<SSL_in_init>(SSL *ssl);
513
514 =item int B<SSL_is_init_finished>(SSL *ssl);
515
516 =item STACK *B<SSL_load_client_CA_file>(char *file);
517
518 =item void B<SSL_load_error_strings>(void);
519
520 =item SSL *B<SSL_new>(SSL_CTX *ctx);
521
522 =item long B<SSL_num_renegotiations>(SSL *ssl);
523
524 =item int B<SSL_peek>(SSL *ssl, char *buf, int num);
525
526 =item int B<SSL_pending>(SSL *ssl);
527
528 =item int B<SSL_read>(SSL *ssl, char *buf, int num);
529
530 =item int B<SSL_renegotiate>(SSL *ssl);
531
532 =item char *B<SSL_rstate_string>(SSL *ssl);
533
534 =item char *B<SSL_rstate_string_long>(SSL *ssl);
535
536 =item long B<SSL_session_reused>(SSL *ssl);
537
538 =item void B<SSL_set_accept_state>(SSL *ssl);
539
540 =item void B<SSL_set_app_data>(SSL *ssl, char *arg);
541
542 =item void B<SSL_set_bio>(SSL *ssl, BIO *rbio, BIO *wbio);
543
544 =item int B<SSL_set_cipher_list>(SSL *ssl, char *str);
545
546 =item void B<SSL_set_client_CA_list>(SSL *ssl, STACK *list);
547
548 =item void B<SSL_set_connect_state>(SSL *ssl);
549
550 =item int B<SSL_set_ex_data>(SSL *ssl, int idx, char *arg);
551
552 =item int B<SSL_set_fd>(SSL *ssl, int fd);
553
554 =item void B<SSL_set_info_callback>(SSL *ssl, void (*cb);(void))
555
556 =item void B<SSL_set_options>(SSL *ssl, unsigned long op);
557
558 =item void B<SSL_set_quiet_shutdown>(SSL *ssl, int mode);
559
560 =item void B<SSL_set_read_ahead>(SSL *ssl, int yes);
561
562 =item int B<SSL_set_rfd>(SSL *ssl, int fd);
563
564 =item int B<SSL_set_session>(SSL *ssl, SSL_SESSION *session);
565
566 =item void B<SSL_set_shutdown>(SSL *ssl, int mode);
567
568 =item int B<SSL_set_ssl_method>(SSL *ssl, SSL_METHOD *meth);
569
570 =item void B<SSL_set_time>(SSL *ssl, long t);
571
572 =item void B<SSL_set_timeout>(SSL *ssl, long t);
573
574 =item void B<SSL_set_verify>(SSL *ssl, int mode, int (*callback);(void))
575
576 =item void B<SSL_set_verify_result>(SSL *ssl, long arg);
577
578 =item int B<SSL_set_wfd>(SSL *ssl, int fd);
579
580 =item int B<SSL_shutdown>(SSL *ssl);
581
582 =item int B<SSL_state>(SSL *ssl);
583
584 =item char *B<SSL_state_string>(SSL *ssl);
585
586 =item char *B<SSL_state_string_long>(SSL *ssl);
587
588 =item long B<SSL_total_renegotiations>(SSL *ssl);
589
590 =item int B<SSL_use_PrivateKey>(SSL *ssl, EVP_PKEY *pkey);
591
592 =item int B<SSL_use_PrivateKey_ASN1>(int type, SSL *ssl, unsigned char *d, long len);
593
594 =item int B<SSL_use_PrivateKey_file>(SSL *ssl, char *file, int type);
595
596 =item int B<SSL_use_RSAPrivateKey>(SSL *ssl, RSA *rsa);
597
598 =item int B<SSL_use_RSAPrivateKey_ASN1>(SSL *ssl, unsigned char *d, long len);
599
600 =item int B<SSL_use_RSAPrivateKey_file>(SSL *ssl, char *file, int type);
601
602 =item int B<SSL_use_certificate>(SSL *ssl, X509 *x);
603
604 =item int B<SSL_use_certificate_ASN1>(SSL *ssl, int len, unsigned char *d);
605
606 =item int B<SSL_use_certificate_file>(SSL *ssl, char *file, int type);
607
608 =item int B<SSL_version>(SSL *ssl);
609
610 =item int B<SSL_want>(SSL *ssl);
611
612 =item int B<SSL_want_nothing>(SSL *ssl);
613
614 =item int B<SSL_want_read>(SSL *ssl);
615
616 =item int B<SSL_want_write>(SSL *ssl);
617
618 =item int B<SSL_want_x509_lookup>(s);
619
620 =item int B<SSL_write>(SSL *ssl, char *buf, int num);
621
622 =back
623
624 =head1 SEE ALSO
625
626 openssl(1), crypto(3)
627
628 =head1 HISTORY
629
630 The ssl(3) document appeared in OpenSSL 0.9.2
631
632 =cut
633