Free the right thing.
[openssl.git] / ssl / ssl.h
1 /* ssl/ssl.h */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
5  * This package is an SSL implementation written
6  * by Eric Young (eay@cryptsoft.com).
7  * The implementation was written so as to conform with Netscapes SSL.
8  * 
9  * This library is free for commercial and non-commercial use as long as
10  * the following conditions are aheared to.  The following conditions
11  * apply to all code found in this distribution, be it the RC4, RSA,
12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13  * included with this distribution is covered by the same copyright terms
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15  * 
16  * Copyright remains Eric Young's, and as such any Copyright notices in
17  * the code are not to be removed.
18  * If this package is used in a product, Eric Young should be given attribution
19  * as the author of the parts of the library used.
20  * This can be in the form of a textual message at program startup or
21  * in documentation (online or textual) provided with the package.
22  * 
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the copyright
27  *    notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in the
30  *    documentation and/or other materials provided with the distribution.
31  * 3. All advertising materials mentioning features or use of this software
32  *    must display the following acknowledgement:
33  *    "This product includes cryptographic software written by
34  *     Eric Young (eay@cryptsoft.com)"
35  *    The word 'cryptographic' can be left out if the rouines from the library
36  *    being used are not cryptographic related :-).
37  * 4. If you include any Windows specific code (or a derivative thereof) from 
38  *    the apps directory (application code) you must include an acknowledgement:
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40  * 
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51  * SUCH DAMAGE.
52  * 
53  * The licence and distribution terms for any publically available version or
54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
55  * copied and put under another distribution licence
56  * [including the GNU Public Licence.]
57  */
58
59 #ifndef HEADER_SSL_H 
60 #define HEADER_SSL_H 
61
62 #ifdef  __cplusplus
63 extern "C" {
64 #endif
65
66 /* SSLeay version number for ASN.1 encoding of the session information */
67 /* Version 0 - initial version
68  * Version 1 - added the optional peer certificate
69  */
70 #define SSL_SESSION_ASN1_VERSION 0x0001
71
72 /* text strings for the ciphers */
73 #define SSL_TXT_NULL_WITH_MD5           SSL2_TXT_NULL_WITH_MD5                  
74 #define SSL_TXT_RC4_128_WITH_MD5        SSL2_TXT_RC4_128_WITH_MD5               
75 #define SSL_TXT_RC4_128_EXPORT40_WITH_MD5 SSL2_TXT_RC4_128_EXPORT40_WITH_MD5    
76 #define SSL_TXT_RC2_128_CBC_WITH_MD5    SSL2_TXT_RC2_128_CBC_WITH_MD5           
77 #define SSL_TXT_RC2_128_CBC_EXPORT40_WITH_MD5 SSL2_TXT_RC2_128_CBC_EXPORT40_WITH_MD5    
78 #define SSL_TXT_IDEA_128_CBC_WITH_MD5   SSL2_TXT_IDEA_128_CBC_WITH_MD5          
79 #define SSL_TXT_DES_64_CBC_WITH_MD5     SSL2_TXT_DES_64_CBC_WITH_MD5            
80 #define SSL_TXT_DES_64_CBC_WITH_SHA     SSL2_TXT_DES_64_CBC_WITH_SHA            
81 #define SSL_TXT_DES_192_EDE3_CBC_WITH_MD5 SSL2_TXT_DES_192_EDE3_CBC_WITH_MD5    
82 #define SSL_TXT_DES_192_EDE3_CBC_WITH_SHA SSL2_TXT_DES_192_EDE3_CBC_WITH_SHA    
83
84 #define SSL_MAX_SSL_SESSION_ID_LENGTH           32
85
86 #define SSL_MIN_RSA_MODULUS_LENGTH_IN_BYTES     (512/8)
87 #define SSL_MAX_KEY_ARG_LENGTH                  8
88 #define SSL_MAX_MASTER_KEY_LENGTH               48
89
90 /* These are used to specify which ciphers to use and not to use */
91 #define SSL_TXT_LOW             "LOW"
92 #define SSL_TXT_MEDIUM          "MEDIUM"
93 #define SSL_TXT_HIGH            "HIGH"
94 #define SSL_TXT_kFZA            "kFZA"
95 #define SSL_TXT_aFZA            "aFZA"
96 #define SSL_TXT_eFZA            "eFZA"
97 #define SSL_TXT_FZA             "FZA"
98
99 #define SSL_TXT_aNULL           "aNULL"
100 #define SSL_TXT_eNULL           "eNULL"
101 #define SSL_TXT_NULL            "NULL"
102
103 #define SSL_TXT_kRSA            "kRSA"
104 #define SSL_TXT_kDHr            "kDHr"
105 #define SSL_TXT_kDHd            "kDHd"
106 #define SSL_TXT_kEDH            "kEDH"
107 #define SSL_TXT_aRSA            "aRSA"
108 #define SSL_TXT_aDSS            "aDSS"
109 #define SSL_TXT_aDH             "aDH"
110 #define SSL_TXT_DSS             "DSS"
111 #define SSL_TXT_DH              "DH"
112 #define SSL_TXT_EDH             "EDH"
113 #define SSL_TXT_ADH             "ADH"
114 #define SSL_TXT_RSA             "RSA"
115 #define SSL_TXT_DES             "DES"
116 #define SSL_TXT_3DES            "3DES"
117 #define SSL_TXT_RC4             "RC4"
118 #define SSL_TXT_RC2             "RC2"
119 #define SSL_TXT_IDEA            "IDEA"
120 #define SSL_TXT_MD5             "MD5"
121 #define SSL_TXT_SHA1            "SHA1"
122 #define SSL_TXT_SHA             "SHA"
123 #define SSL_TXT_EXP             "EXP"
124 #define SSL_TXT_EXPORT          "EXPORT"
125 #define SSL_TXT_SSLV2           "SSLv2"
126 #define SSL_TXT_SSLV3           "SSLv3"
127 #define SSL_TXT_TLSV1           "TLSv1"
128 #define SSL_TXT_ALL             "ALL"
129
130 /* 'DEFAULT' at the start of the cipher list insert the following string
131  * in addition to this being the default cipher string */
132 #ifndef NO_RSA
133 #define SSL_DEFAULT_CIPHER_LIST "ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP"
134 #else
135 #define SSL_ALLOW_ADH
136 #define SSL_DEFAULT_CIPHER_LIST "HIGH:MEDIUM:LOW:ADH+3DES:ADH+RC4:ADH+DES:+EXP"
137 #endif
138
139 /* Used in SSL_set_shutdown()/SSL_get_shutdown(); */
140 #define SSL_SENT_SHUTDOWN       1
141 #define SSL_RECEIVED_SHUTDOWN   2
142
143 #include "crypto.h"
144 #include "lhash.h"
145 #include "buffer.h"
146 #include "bio.h"
147 #include "x509.h"
148
149 #define SSL_FILETYPE_ASN1       X509_FILETYPE_ASN1
150 #define SSL_FILETYPE_PEM        X509_FILETYPE_PEM
151
152 /* This is needed to stop compilers complaining about the
153  * 'struct ssl_st *' function parameters used to prototype callbacks
154  * in SSL_CTX. */
155 typedef struct ssl_st *ssl_crock_st;
156
157 /* used to hold info on the particular ciphers used */
158 typedef struct ssl_cipher_st
159         {
160         int valid;
161         char *name;                     /* text name */
162         unsigned long id;               /* id, 4 bytes, first is version */
163         unsigned long algorithms;       /* what ciphers are used */
164         unsigned long algorithm2;       /* Extra flags */
165         unsigned long mask;             /* used for matching */
166         } SSL_CIPHER;
167
168 /* Used to hold functions for SSLv2 or SSLv3/TLSv1 functions */
169 typedef struct ssl_method_st
170         {
171         int version;
172         int (*ssl_new)();
173         void (*ssl_clear)();
174         void (*ssl_free)();
175         int (*ssl_accept)();
176         int (*ssl_connect)();
177         int (*ssl_read)();
178         int (*ssl_peek)();
179         int (*ssl_write)();
180         int (*ssl_shutdown)();
181         int (*ssl_renegotiate)();
182         int (*ssl_renegotiate_check)();
183         long (*ssl_ctrl)();
184         long (*ssl_ctx_ctrl)();
185         SSL_CIPHER *(*get_cipher_by_char)();
186         int (*put_cipher_by_char)();
187         int (*ssl_pending)();
188         int (*num_ciphers)();
189         SSL_CIPHER *(*get_cipher)();
190         struct ssl_method_st *(*get_ssl_method)();
191         long (*get_timeout)();
192         struct ssl3_enc_method *ssl3_enc; /* Extra SSLv3/TLS stuff */
193         } SSL_METHOD;
194
195 /* Lets make this into an ASN.1 type structure as follows
196  * SSL_SESSION_ID ::= SEQUENCE {
197  *      version                 INTEGER,        -- structure version number
198  *      SSLversion              INTEGER,        -- SSL version number
199  *      Cipher                  OCTET_STRING,   -- the 3 byte cipher ID
200  *      Session_ID              OCTET_STRING,   -- the Session ID
201  *      Master_key              OCTET_STRING,   -- the master key
202  *      Key_Arg [ 0 ] IMPLICIT  OCTET_STRING,   -- the optional Key argument
203  *      Time [ 1 ] EXPLICIT     INTEGER,        -- optional Start Time
204  *      Timeout [ 2 ] EXPLICIT  INTEGER,        -- optional Timeout ins seconds
205  *      Peer [ 3 ] EXPLICIT     X509,           -- optional Peer Certificate
206  *      Compression [4] IMPLICIT ASN1_OBJECT    -- compression OID XXXXX
207  *      }
208  * Look in ssl/ssl_asn1.c for more details
209  * I'm using EXPLICIT tags so I can read the damn things using asn1parse :-).
210  */
211 typedef struct ssl_session_st
212         {
213         int ssl_version;        /* what ssl version session info is
214                                  * being kept in here? */
215
216         /* only really used in SSLv2 */
217         unsigned int key_arg_length;
218         unsigned char key_arg[SSL_MAX_KEY_ARG_LENGTH];
219         int master_key_length;
220         unsigned char master_key[SSL_MAX_MASTER_KEY_LENGTH];
221         /* session_id - valid? */
222         unsigned int session_id_length;
223         unsigned char session_id[SSL_MAX_SSL_SESSION_ID_LENGTH];
224
225         int not_resumable;
226
227         /* The cert is the certificate used to establish this connection */
228         struct cert_st /* CERT */ *cert;
229
230         /* This is the cert for the other end.  On servers, it will be
231          * the same as cert->x509 */
232         X509 *peer;
233
234         int references;
235         long timeout;
236         long time;
237
238 #ifdef HEADER_COMP_H
239         COMP_CTX *compress_meth;
240 #else
241         char *compress_meth;
242 #endif
243
244         SSL_CIPHER *cipher;
245         unsigned long cipher_id;        /* when ASN.1 loaded, this
246                                          * needs to be used to load
247                                          * the 'cipher' structure */
248
249         STACK /* SSL_CIPHER */ *ciphers; /* shared ciphers? */
250
251         CRYPTO_EX_DATA ex_data; /* application specific data */
252
253         /* These are used to make removal of session-ids more
254          * efficient and to implement a maximum cache size. */
255         struct ssl_session_st *prev,*next;
256         } SSL_SESSION;
257
258 #define SSL_OP_MICROSOFT_SESS_ID_BUG                    0x00000001L
259 #define SSL_OP_NETSCAPE_CHALLENGE_BUG                   0x00000002L
260 #define SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG         0x00000008L
261 #define SSL_OP_SSLREF2_REUSE_CERT_TYPE_BUG              0x00000010L
262 #define SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER               0x00000020L
263 #define SSL_OP_MSIE_SSLV2_RSA_PADDING                   0x00000040L
264 #define SSL_OP_SSLEAY_080_CLIENT_DH_BUG                 0x00000080L
265 #define SSL_OP_TLS_D5_BUG                               0x00000100L
266 #define SSL_OP_TLS_BLOCK_PADDING_BUG                    0x00000200L
267
268 /* If set, only use tmp_dh parameters once */
269 #define SSL_OP_SINGLE_DH_USE                            0x00100000L
270 /* Set to also use the tmp_rsa key when doing RSA operations. */
271 #define SSL_OP_EPHEMERAL_RSA                            0x00200000L
272
273 /* The next flag deliberatly changes the ciphertest, this is a check
274  * for the PKCS#1 attack */
275 #define SSL_OP_PKCS1_CHECK_1                            0x08000000L
276 #define SSL_OP_PKCS1_CHECK_2                            0x10000000L
277 #define SSL_OP_NETSCAPE_CA_DN_BUG                       0x20000000L
278 #define SSL_OP_NON_EXPORT_FIRST                         0x40000000L
279 #define SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG          0x80000000L
280 #define SSL_OP_ALL                                      0x000FFFFFL
281
282 #define SSL_CTX_set_options(ctx,op)     ((ctx)->options|=(op))
283 #define SSL_set_options(ssl,op)         ((ssl)->options|=(op))
284
285 #define SSL_OP_NO_SSLv2                                 0x01000000L
286 #define SSL_OP_NO_SSLv3                                 0x02000000L
287 #define SSL_OP_NO_TLSv1                                 0x04000000L
288
289 /* Normally you will only use these if your application wants to use
290  * the certificate store in other places, perhaps PKCS7 */
291 #define SSL_CTX_get_cert_store(ctx)     ((ctx)->cert_store)
292 #define SSL_CTX_set_cert_store(ctx,cs) \
293                 (X509_STORE_free((ctx)->cert_store),(ctx)->cert_store=(cs))
294
295
296 #define SSL_SESSION_CACHE_MAX_SIZE_DEFAULT      (1024*20)
297
298 typedef struct ssl_ctx_st
299         {
300         SSL_METHOD *method;
301         unsigned long options;
302
303         STACK /* SSL_CIPHER */ *cipher_list;
304         /* same as above but sorted for lookup */
305         STACK /* SSL_CIPHER */ *cipher_list_by_id;
306
307         struct x509_store_st /* X509_STORE */ *cert_store;
308         struct lhash_st /* LHASH */ *sessions;  /* a set of SSL_SESSION's */
309         /* Most session-ids that will be cached, default is
310          * SSL_SESSION_CACHE_SIZE_DEFAULT. 0 is unlimited. */
311         unsigned long session_cache_size;
312         struct ssl_session_st *session_cache_head;
313         struct ssl_session_st *session_cache_tail;
314
315         /* This can have one of 2 values, ored together,
316          * SSL_SESS_CACHE_CLIENT,
317          * SSL_SESS_CACHE_SERVER,
318          * Default is SSL_SESSION_CACHE_SERVER, which means only
319          * SSL_accept which cache SSL_SESSIONS. */
320         int session_cache_mode;
321
322         /* If timeout is not 0, it is the default timeout value set
323          * when SSL_new() is called.  This has been put in to make
324          * life easier to set things up */
325         long session_timeout;
326
327         /* If this callback is not null, it will be called each
328          * time a session id is added to the cache.  If this function
329          * returns 1, it means that the callback will do a
330          * SSL_SESSION_free() when it has finished using it.  Otherwise,
331          * on 0, it means the callback has finished with it.
332          * If remove_session_cb is not null, it will be called when
333          * a session-id is removed from the cache.  Again, a return
334          * of 0 mens that SSLeay should not SSL_SESSION_free() since
335          * the application is doing something with it. */
336 #ifndef NOPROTO
337         int (*new_session_cb)(struct ssl_st *ssl,SSL_SESSION *sess);
338         void (*remove_session_cb)(struct ssl_ctx_st *ctx,SSL_SESSION *sess);
339         SSL_SESSION *(*get_session_cb)(struct ssl_st *ssl,
340                 unsigned char *data,int len,int *copy);
341 #else
342         int (*new_session_cb)();
343         void (*remove_session_cb)();
344         SSL_SESSION *(*get_session_cb)();
345 #endif
346
347         int sess_connect;       /* SSL new connection - started */
348         int sess_connect_renegotiate;/* SSL renegotiatene  - requested */
349         int sess_connect_good;  /* SSL new connection/renegotiate - finished */
350         int sess_accept;        /* SSL new accept - started */
351         int sess_accept_renegotiate;/* SSL renegotiatene - requested */
352         int sess_accept_good;   /* SSL accept/renegotiate - finished */
353         int sess_miss;          /* session lookup misses  */
354         int sess_timeout;       /* session reuse attempt on timeouted session */
355         int sess_cache_full;    /* session removed due to full cache */
356         int sess_hit;           /* session reuse actually done */
357         int sess_cb_hit;        /* session-id that was not in the cache was
358                                  * passed back via the callback.  This
359                                  * indicates that the application is supplying
360                                  * session-id's from other processes -
361                                  * spooky :-) */
362
363         int references;
364
365         void (*info_callback)();
366
367         /* if defined, these override the X509_verify_cert() calls */
368         int (*app_verify_callback)();
369         char *app_verify_arg;
370
371         /* default values to use in SSL structures */
372         struct cert_st /* CERT */ *default_cert;
373         int default_read_ahead;
374         int default_verify_mode;
375         int (*default_verify_callback)();
376
377         /* Default password callback. */
378         int (*default_passwd_callback)();
379
380         /* get client cert callback */
381         int (*client_cert_cb)(/* SSL *ssl, X509 **x509, EVP_PKEY **pkey */);
382
383         /* what we put in client requests */
384         STACK *client_CA;
385
386         int quiet_shutdown;
387
388         CRYPTO_EX_DATA ex_data;
389
390         EVP_MD *rsa_md5;/* For SSLv2 - name is 'ssl2-md5' */
391         EVP_MD *md5;    /* For SSLv3/TLSv1 'ssl3-md5' */
392         EVP_MD *sha1;   /* For SSLv3/TLSv1 'ssl3->sha1' */
393
394         STACK *extra_certs;
395         } SSL_CTX;
396
397 #define SSL_SESS_CACHE_OFF                      0x0000
398 #define SSL_SESS_CACHE_CLIENT                   0x0001
399 #define SSL_SESS_CACHE_SERVER                   0x0002
400 #define SSL_SESS_CACHE_BOTH     (SSL_SESS_CACHE_CLIENT|SSL_SESS_CACHE_SERVER)
401 #define SSL_SESS_CACHE_NO_AUTO_CLEAR            0x0080
402 /* This one, when set, makes the server session-id lookup not look
403  * in the cache.  If there is an application get_session callback
404  * defined, this will still get called. */
405 #define SSL_SESS_CACHE_NO_INTERNAL_LOOKUP       0x0100
406
407 #define SSL_CTX_sessions(ctx)           ((ctx)->sessions)
408 /* You will need to include lhash.h to access the following #define */
409 #define SSL_CTX_sess_number(ctx)        ((ctx)->sessions->num_items)
410 #define SSL_CTX_sess_connect(ctx)       ((ctx)->sess_connect)
411 #define SSL_CTX_sess_connect_good(ctx)  ((ctx)->sess_connect_good)
412 #define SSL_CTX_sess_accept(ctx)        ((ctx)->sess_accept)
413 #define SSL_CTX_sess_accept_renegotiate(ctx)    ((ctx)->sess_accept_renegotiate)
414 #define SSL_CTX_sess_connect_renegotiate(ctx)   ((ctx)->sess_connect_renegotiate)
415 #define SSL_CTX_sess_accept_good(ctx)   ((ctx)->sess_accept_good)
416 #define SSL_CTX_sess_hits(ctx)          ((ctx)->sess_hit)
417 #define SSL_CTX_sess_cb_hits(ctx)       ((ctx)->sess_cb_hit)
418 #define SSL_CTX_sess_misses(ctx)        ((ctx)->sess_miss)
419 #define SSL_CTX_sess_timeouts(ctx)      ((ctx)->sess_timeout)
420 #define SSL_CTX_sess_cache_full(ctx)    ((ctx)->sess_cache_full)
421
422 #define SSL_CTX_sess_set_cache_size(ctx,t) ((ctx)->session_cache_size=(t))
423 #define SSL_CTX_sess_get_cache_size(ctx)   ((ctx)->session_cache_size)
424
425 #define SSL_CTX_sess_set_new_cb(ctx,cb) ((ctx)->new_session_cb=(cb))
426 #define SSL_CTX_sess_get_new_cb(ctx)    ((ctx)->new_session_cb)
427 #define SSL_CTX_sess_set_remove_cb(ctx,cb)      ((ctx)->remove_session_cb=(cb))
428 #define SSL_CTX_sess_get_remove_cb(ctx) ((ctx)->remove_session_cb)
429 #define SSL_CTX_sess_set_get_cb(ctx,cb) ((ctx)->get_session_cb=(cb))
430 #define SSL_CTX_sess_get_get_cb(ctx)    ((ctx)->get_session_cb)
431 #define SSL_CTX_set_session_cache_mode(ctx,m)   ((ctx)->session_cache_mode=(m))
432 #define SSL_CTX_get_session_cache_mode(ctx)     ((ctx)->session_cache_mode)
433 #define SSL_CTX_set_timeout(ctx,t)      ((ctx)->session_timeout=(t))
434 #define SSL_CTX_get_timeout(ctx)        ((ctx)->session_timeout)
435
436 #define SSL_CTX_set_info_callback(ctx,cb)       ((ctx)->info_callback=(cb))
437 #define SSL_CTX_get_info_callback(ctx)          ((ctx)->info_callback)
438 #define SSL_CTX_set_default_read_ahead(ctx,m) (((ctx)->default_read_ahead)=(m))
439
440 #define SSL_CTX_set_client_cert_cb(ctx,cb)      ((ctx)->client_cert_cb=(cb))
441 #define SSL_CTX_get_client_cert_cb(ctx)         ((ctx)->client_cert_cb)
442
443 #define SSL_NOTHING     1
444 #define SSL_WRITING     2
445 #define SSL_READING     3
446 #define SSL_X509_LOOKUP 4
447
448 /* These will only be used when doing non-blocking IO */
449 #define SSL_want(s)             ((s)->rwstate)
450 #define SSL_want_nothing(s)     ((s)->rwstate == SSL_NOTHING)
451 #define SSL_want_read(s)        ((s)->rwstate == SSL_READING)
452 #define SSL_want_write(s)       ((s)->rwstate == SSL_WRITING)
453 #define SSL_want_x509_lookup(s) ((s)->rwstate == SSL_X509_LOOKUP)
454
455 typedef struct ssl_st
456         {
457         /* procol version
458          * 2 for SSLv2
459          * 3 for SSLv3
460          * -3 for SSLv3 but accept SSLv2 */
461         int version;
462         int type; /* SSL_ST_CONNECT or SSL_ST_ACCEPT */
463
464         SSL_METHOD *method; /* SSLv3 */
465
466         /* There are 2 BIO's even though they are normally both the
467          * same.  This is so data can be read and written to different
468          * handlers */
469
470 #ifdef HEADER_BIO_H
471         BIO *rbio; /* used by SSL_read */
472         BIO *wbio; /* used by SSL_write */
473         BIO *bbio; /* used during session-id reuse to concatinate
474                     * messages */
475 #else
476         char *rbio; /* used by SSL_read */
477         char *wbio; /* used by SSL_write */
478         char *bbio;
479 #endif
480         /* This holds a variable that indicates what we were doing
481          * when a 0 or -1 is returned.  This is needed for
482          * non-blocking IO so we know what request needs re-doing when
483          * in SSL_accept or SSL_connect */
484         int rwstate;
485
486         /* true when we are actually in SSL_accept() or SSL_connect() */
487         int in_handshake;
488         int (*handshake_func)();
489
490 /*      int server;*/   /* are we the server side? */
491
492         int new_session;/* 1 if we are to use a new session */
493         int quiet_shutdown;/* don't send shutdown packets */
494         int shutdown;   /* we have shut things down, 0x01 sent, 0x02
495                          * for received */
496         int state;      /* where we are */
497         int rstate;     /* where we are when reading */
498
499         BUF_MEM *init_buf;      /* buffer used during init */
500         int init_num;           /* amount read/written */
501         int init_off;           /* amount read/written */
502
503         /* used internally to point at a raw packet */
504         unsigned char *packet;
505         unsigned int packet_length;
506
507         struct ssl2_ctx_st *s2; /* SSLv2 variables */
508         struct ssl3_ctx_st *s3; /* SSLv3 variables */
509
510         int read_ahead;         /* Read as many input bytes as possible */
511         int hit;                /* reusing a previous session */
512
513         /* crypto */
514         STACK /* SSL_CIPHER */ *cipher_list;
515         STACK /* SSL_CIPHER */ *cipher_list_by_id;
516
517         /* These are the ones being used, the ones is SSL_SESSION are
518          * the ones to be 'copied' into these ones */
519
520         EVP_CIPHER_CTX *enc_read_ctx;           /* cryptographic state */
521         EVP_MD *read_hash;                      /* used for mac generation */
522 #ifdef HEADER_COMP_H
523         COMP_CTX *expand;                       /* uncompress */
524 #else
525         char *expand;
526 #endif
527
528         EVP_CIPHER_CTX *enc_write_ctx;          /* cryptographic state */
529         EVP_MD *write_hash;                     /* used for mac generation */
530 #ifdef HEADER_COMP_H
531         COMP_CTX *compress;                     /* compression */
532 #else
533         char *compress; 
534 #endif
535
536         /* session info */
537
538         /* client cert? */
539         /* This is used to hold the server certificate used */
540         struct cert_st /* CERT */ *cert;
541
542         /* This can also be in the session once a session is established */
543         SSL_SESSION *session;
544
545         /* Used in SSL2 and SSL3 */
546         int verify_mode;        /* 0 don't care about verify failure.
547                                  * 1 fail if verify fails */
548         int (*verify_callback)(); /* fail if callback returns 0 */
549         void (*info_callback)(); /* optional informational callback */
550
551         int error;              /* error bytes to be written */
552         int error_code;         /* actual code */
553
554         SSL_CTX *ctx;
555         /* set this flag to 1 and a sleep(1) is put into all SSL_read()
556          * and SSL_write() calls, good for nbio debuging :-) */
557         int debug;      
558
559         /* extra application data */
560         long verify_result;
561         CRYPTO_EX_DATA ex_data;
562
563         /* for server side, keep the list of CA_dn we can use */
564         STACK /* X509_NAME */ *client_CA;
565
566         int references;
567         unsigned long options;
568         int first_packet;
569         } SSL;
570
571 #include "ssl2.h"
572 #include "ssl3.h"
573 #include "tls1.h" /* This is mostly sslv3 with a few tweaks */
574 #include "ssl23.h"
575
576 /* compatablity */
577 #define SSL_set_app_data(s,arg)         (SSL_set_ex_data(s,0,(char *)arg))
578 #define SSL_get_app_data(s)             (SSL_get_ex_data(s,0))
579 #define SSL_SESSION_set_app_data(s,a)   (SSL_SESSION_set_ex_data(s,0,(char *)a))
580 #define SSL_SESSION_get_app_data(s)     (SSL_SESSION_get_ex_data(s,0))
581 #define SSL_CTX_get_app_data(ctx)       (SSL_CTX_get_ex_data(ctx,0))
582 #define SSL_CTX_set_app_data(ctx,arg)   (SSL_CTX_set_ex_data(ctx,0,(char *)arg))
583
584 /* The following are the possible values for ssl->state are are
585  * used to indicate where we are upto in the SSL connection establishment.
586  * The macros that follow are about the only things you should need to use
587  * and even then, only when using non-blocking IO.
588  * It can also be useful to work out where you were when the connection
589  * failed */
590
591 #define SSL_ST_CONNECT                  0x1000
592 #define SSL_ST_ACCEPT                   0x2000
593 #define SSL_ST_MASK                     0x0FFF
594 #define SSL_ST_INIT                     (SSL_ST_CONNECT|SSL_ST_ACCEPT)
595 #define SSL_ST_BEFORE                   0x4000
596 #define SSL_ST_OK                       0x03
597 #define SSL_ST_RENEGOTIATE              (0x04|SSL_ST_INIT)
598
599 #define SSL_CB_LOOP                     0x01
600 #define SSL_CB_EXIT                     0x02
601 #define SSL_CB_READ                     0x04
602 #define SSL_CB_WRITE                    0x08
603 #define SSL_CB_ALERT                    0x4000 /* used in callback */
604 #define SSL_CB_READ_ALERT               (SSL_CB_ALERT|SSL_CB_READ)
605 #define SSL_CB_WRITE_ALERT              (SSL_CB_ALERT|SSL_CB_WRITE)
606 #define SSL_CB_ACCEPT_LOOP              (SSL_ST_ACCEPT|SSL_CB_LOOP)
607 #define SSL_CB_ACCEPT_EXIT              (SSL_ST_ACCEPT|SSL_CB_EXIT)
608 #define SSL_CB_CONNECT_LOOP             (SSL_ST_CONNECT|SSL_CB_LOOP)
609 #define SSL_CB_CONNECT_EXIT             (SSL_ST_CONNECT|SSL_CB_EXIT)
610 #define SSL_CB_HANDSHAKE_START          0x10
611 #define SSL_CB_HANDSHAKE_DONE           0x20
612
613 /* Is the SSL_connection established? */
614 #define SSL_get_state(a)                SSL_state(a)
615 #define SSL_is_init_finished(a)         (SSL_state(a) == SSL_ST_OK)
616 #define SSL_in_init(a)                  (SSL_state(a)&SSL_ST_INIT)
617 #define SSL_in_before(a)                (SSL_state(a)&SSL_ST_BEFORE)
618 #define SSL_in_connect_init(a)          (SSL_state(a)&SSL_ST_CONNECT)
619 #define SSL_in_accept_init(a)           (SSL_state(a)&SSL_ST_ACCEPT)
620
621 /* The following 2 states are kept in ssl->rstate when reads fail,
622  * you should not need these */
623 #define SSL_ST_READ_HEADER                      0xF0
624 #define SSL_ST_READ_BODY                        0xF1
625 #define SSL_ST_READ_DONE                        0xF2
626
627 /* use either SSL_VERIFY_NONE or SSL_VERIFY_PEER, the last 2 options
628  * are 'ored' with SSL_VERIFY_PEER if they are desired */
629 #define SSL_VERIFY_NONE                 0x00
630 #define SSL_VERIFY_PEER                 0x01
631 #define SSL_VERIFY_FAIL_IF_NO_PEER_CERT 0x02
632 #define SSL_VERIFY_CLIENT_ONCE          0x04
633
634 /* this is for backward compatablility */
635 #if 0 /* NEW_SSLEAY */
636 #define SSL_CTX_set_default_verify(a,b,c) SSL_CTX_set_verify(a,b,c)
637 #define SSL_set_pref_cipher(c,n)        SSL_set_cipher_list(c,n)
638 #define SSL_add_session(a,b)            SSL_CTX_add_session((a),(b))
639 #define SSL_remove_session(a,b)         SSL_CTX_remove_session((a),(b))
640 #define SSL_flush_sessions(a,b)         SSL_CTX_flush_sessions((a),(b))
641 #endif
642 /* More backward compatablity */
643 #define SSL_get_cipher(s) \
644                 SSL_CIPHER_get_name(SSL_get_current_cipher(s))
645 #define SSL_get_cipher_bits(s,np) \
646                 SSL_CIPHER_get_bits(SSL_get_current_cipher(s),np)
647 #define SSL_get_cipher_version(s) \
648                 SSL_CIPHER_get_version(SSL_get_current_cipher(s))
649 #define SSL_get_cipher_name(s) \
650                 SSL_CIPHER_get_name(SSL_get_current_cipher(s))
651 #define SSL_get_time(a)         SSL_SESSION_get_time(a)
652 #define SSL_set_time(a,b)       SSL_SESSION_set_time((a),(b))
653 #define SSL_get_timeout(a)      SSL_SESSION_get_timeout(a)
654 #define SSL_set_timeout(a,b)    SSL_SESSION_set_timeout((a),(b))
655
656 /* VMS linker has a 31 char name limit */
657 #define SSL_CTX_set_cert_verify_callback(a,b,c) \
658                 SSL_CTX_set_cert_verify_cb((a),(b),(c))
659
660 #if 1 /*SSLEAY_MACROS*/
661 #define d2i_SSL_SESSION_bio(bp,s_id) (SSL_SESSION *)ASN1_d2i_bio( \
662         (char *(*)())SSL_SESSION_new,(char *(*)())d2i_SSL_SESSION, \
663         (bp),(unsigned char **)(s_id))
664 #define i2d_SSL_SESSION_bio(bp,s_id) ASN1_i2d_bio(i2d_SSL_SESSION, \
665         bp,(unsigned char *)s_id)
666 #define PEM_read_SSL_SESSION(fp,x,cb) (SSL_SESSION *)PEM_ASN1_read( \
667         (char *(*)())d2i_SSL_SESSION,PEM_STRING_SSL_SESSION,fp,(char **)x,cb)
668 #define PEM_read_bio_SSL_SESSION(bp,x,cb) (SSL_SESSION *)PEM_ASN1_read_bio( \
669         (char *(*)())d2i_SSL_SESSION,PEM_STRING_SSL_SESSION,bp,(char **)x,cb)
670 #define PEM_write_SSL_SESSION(fp,x) \
671         PEM_ASN1_write((int (*)())i2d_SSL_SESSION, \
672                 PEM_STRING_SSL_SESSION,fp, (char *)x, NULL,NULL,0,NULL)
673 #define PEM_write_bio_SSL_SESSION(bp,x) \
674         PEM_ASN1_write_bio((int (*)())i2d_SSL_SESSION, \
675                 PEM_STRING_SSL_SESSION,bp, (char *)x, NULL,NULL,0,NULL)
676 #endif
677
678 #define SSL_AD_REASON_OFFSET            1000
679 /* These alert types are for SSLv3 and TLSv1 */
680 #define SSL_AD_CLOSE_NOTIFY             SSL3_AD_CLOSE_NOTIFY
681 #define SSL_AD_UNEXPECTED_MESSAGE       SSL3_AD_UNEXPECTED_MESSAGE /* fatal */
682 #define SSL_AD_BAD_RECORD_MAC           SSL3_AD_BAD_RECORD_MAC     /* fatal */
683 #define SSL_AD_DECRYPTION_FAILED        TLS1_AD_DECRYPTION_FAILED
684 #define SSL_AD_RECORD_OVERFLOW          TLS1_AD_RECORD_OVERFLOW
685 #define SSL_AD_DECOMPRESSION_FAILURE    SSL3_AD_DECOMPRESSION_FAILURE/* fatal */
686 #define SSL_AD_HANDSHAKE_FAILURE        SSL3_AD_HANDSHAKE_FAILURE/* fatal */
687 #define SSL_AD_NO_CERTIFICATE           SSL3_AD_NO_CERTIFICATE /* Not for TLS */
688 #define SSL_AD_BAD_CERTIFICATE          SSL3_AD_BAD_CERTIFICATE
689 #define SSL_AD_UNSUPPORTED_CERTIFICATE  SSL3_AD_UNSUPPORTED_CERTIFICATE
690 #define SSL_AD_CERTIFICATE_REVOKED      SSL3_AD_CERTIFICATE_REVOKED
691 #define SSL_AD_CERTIFICATE_EXPIRED      SSL3_AD_CERTIFICATE_EXPIRED
692 #define SSL_AD_CERTIFICATE_UNKNOWN      SSL3_AD_CERTIFICATE_UNKNOWN
693 #define SSL_AD_ILLEGAL_PARAMETER        SSL3_AD_ILLEGAL_PARAMETER   /* fatal */
694 #define SSL_AD_UNKNOWN_CA               TLS1_AD_UNKNOWN_CA      /* fatal */
695 #define SSL_AD_ACCESS_DENIED            TLS1_AD_ACCESS_DENIED   /* fatal */
696 #define SSL_AD_DECODE_ERROR             TLS1_AD_DECODE_ERROR    /* fatal */
697 #define SSL_AD_DECRYPT_ERROR            TLS1_AD_DECRYPT_ERROR
698 #define SSL_AD_EXPORT_RESTRICION        TLS1_AD_EXPORT_RESTRICION/* fatal */
699 #define SSL_AD_PROTOCOL_VERSION         TLS1_AD_PROTOCOL_VERSION /* fatal */
700 #define SSL_AD_INSUFFICIENT_SECURITY    TLS1_AD_INSUFFICIENT_SECURITY/* fatal */
701 #define SSL_AD_INTERNAL_ERROR           TLS1_AD_INTERNAL_ERROR  /* fatal */
702 #define SSL_AD_USER_CANCLED             TLS1_AD_USER_CANCLED
703 #define SSL_AD_NO_RENEGOTIATION         TLS1_AD_NO_RENEGOTIATION
704
705 #define SSL_ERROR_NONE                  0
706 #define SSL_ERROR_SSL                   1
707 #define SSL_ERROR_WANT_READ             2
708 #define SSL_ERROR_WANT_WRITE            3
709 #define SSL_ERROR_WANT_X509_LOOKUP      4
710 #define SSL_ERROR_SYSCALL               5 /* look at errno */
711 #define SSL_ERROR_ZERO_RETURN           6
712 #define SSL_ERROR_WANT_CONNECT          7
713
714 #define SSL_CTRL_NEED_TMP_RSA                   1
715 #define SSL_CTRL_SET_TMP_RSA                    2
716 #define SSL_CTRL_SET_TMP_DH                     3
717 #define SSL_CTRL_SET_TMP_RSA_CB                 4
718 #define SSL_CTRL_SET_TMP_DH_CB                  5
719 /* Add these ones */
720 #define SSL_CTRL_GET_SESSION_REUSED             6
721 #define SSL_CTRL_GET_CLIENT_CERT_REQUEST        7
722 #define SSL_CTRL_GET_NUM_RENEGOTIATIONS         8
723 #define SSL_CTRL_CLEAR_NUM_RENEGOTIATIONS       9
724 #define SSL_CTRL_GET_TOTAL_RENEGOTIATIONS       10
725 #define SSL_CTRL_GET_FLAGS                      11
726
727 #define SSL_CTRL_EXTRA_CHAIN_CERT               11
728
729 #define SSL_session_reused(ssl) \
730         SSL_ctrl((ssl),SSL_CTRL_GET_SESSION_REUSED,0,NULL)
731 #define SSL_num_renegotiations(ssl) \
732         SSL_ctrl((ssl),SSL_CTRL_GET_NUM_RENEGOTIATIONS,0,NULL)
733 #define SSL_clear_num_renegotiations(ssl) \
734         SSL_ctrl((ssl),SSL_CTRL_CLEAR_NUM_RENEGOTIATIONS,0,NULL)
735 #define SSL_total_renegotiations(ssl) \
736         SSL_ctrl((ssl),SSL_CTRL_GET_TOTAL_RENEGOTIATIONS,0,NULL)
737
738 #define SSL_CTX_need_tmp_RSA(ctx) \
739         SSL_CTX_ctrl(ctx,SSL_CTRL_NEED_TMP_RSA,0,NULL)
740 #define SSL_CTX_set_tmp_rsa(ctx,rsa) \
741         SSL_CTX_ctrl(ctx,SSL_CTRL_SET_TMP_RSA,0,(char *)rsa)
742 #define SSL_CTX_set_tmp_dh(ctx,dh) \
743         SSL_CTX_ctrl(ctx,SSL_CTRL_SET_TMP_DH,0,(char *)dh)
744
745 /* For the next 2, the callbacks are 
746  * RSA *tmp_rsa_cb(SSL *ssl,int export)
747  * DH *tmp_dh_cb(SSL *ssl,int export)
748  */
749 #define SSL_CTX_set_tmp_rsa_callback(ctx,cb) \
750         SSL_CTX_ctrl(ctx,SSL_CTRL_SET_TMP_RSA_CB,0,(char *)cb)
751 #define SSL_CTX_set_tmp_dh_callback(ctx,dh) \
752         SSL_CTX_ctrl(ctx,SSL_CTRL_SET_TMP_DH_CB,0,(char *)dh)
753
754 #define SSL_CTX_add_extra_chain_cert(ctx,x509) \
755         SSL_CTX_ctrl(ctx,SSL_CTRL_EXTRA_CHAIN_CERT,0,(char *)x509)
756
757 #ifndef NOPROTO
758
759 #ifdef HEADER_BIO_H
760 BIO_METHOD *BIO_f_ssl(void);
761 BIO *BIO_new_ssl(SSL_CTX *ctx,int client);
762 BIO *BIO_new_ssl_connect(SSL_CTX *ctx);
763 BIO *BIO_new_buffer_ssl_connect(SSL_CTX *ctx);
764 int BIO_ssl_copy_session_id(BIO *to,BIO *from);
765 void BIO_ssl_shutdown(BIO *ssl_bio);
766
767 #endif
768
769 int     SSL_CTX_set_cipher_list(SSL_CTX *,char *str);
770 SSL_CTX *SSL_CTX_new(SSL_METHOD *meth);
771 void    SSL_CTX_free(SSL_CTX *);
772 void    SSL_clear(SSL *s);
773 void    SSL_CTX_flush_sessions(SSL_CTX *ctx,long tm);
774
775 SSL_CIPHER *SSL_get_current_cipher(SSL *s);
776 int     SSL_CIPHER_get_bits(SSL_CIPHER *c,int *alg_bits);
777 char *  SSL_CIPHER_get_version(SSL_CIPHER *c);
778 char *  SSL_CIPHER_get_name(SSL_CIPHER *c);
779
780 int     SSL_get_fd(SSL *s);
781 char  * SSL_get_cipher_list(SSL *s,int n);
782 char *  SSL_get_shared_ciphers(SSL *s, char *buf, int len);
783 int     SSL_get_read_ahead(SSL * s);
784 int     SSL_pending(SSL *s);
785 #ifndef NO_SOCK
786 int     SSL_set_fd(SSL *s, int fd);
787 int     SSL_set_rfd(SSL *s, int fd);
788 int     SSL_set_wfd(SSL *s, int fd);
789 #endif
790 #ifdef HEADER_BIO_H
791 void    SSL_set_bio(SSL *s, BIO *rbio,BIO *wbio);
792 BIO *   SSL_get_rbio(SSL *s);
793 BIO *   SSL_get_wbio(SSL *s);
794 #endif
795 int     SSL_set_cipher_list(SSL *s, char *str);
796 void    SSL_set_read_ahead(SSL *s, int yes);
797 int     SSL_get_verify_mode(SSL *s);
798 int     (*SSL_get_verify_callback(SSL *s))();
799 void    SSL_set_verify(SSL *s, int mode, int (*callback) ());
800 int     SSL_use_RSAPrivateKey(SSL *ssl, RSA *rsa);
801 int     SSL_use_RSAPrivateKey_ASN1(SSL *ssl, unsigned char *d, long len);
802 int     SSL_use_PrivateKey(SSL *ssl, EVP_PKEY *pkey);
803 int     SSL_use_PrivateKey_ASN1(int pk,SSL *ssl, unsigned char *d, long len);
804 int     SSL_use_certificate(SSL *ssl, X509 *x);
805 int     SSL_use_certificate_ASN1(SSL *ssl, int len, unsigned char *d);
806
807 #ifndef NO_STDIO
808 int     SSL_use_RSAPrivateKey_file(SSL *ssl, char *file, int type);
809 int     SSL_use_PrivateKey_file(SSL *ssl, char *file, int type);
810 int     SSL_use_certificate_file(SSL *ssl, char *file, int type);
811 int     SSL_CTX_use_RSAPrivateKey_file(SSL_CTX *ctx, char *file, int type);
812 int     SSL_CTX_use_PrivateKey_file(SSL_CTX *ctx, char *file, int type);
813 int     SSL_CTX_use_certificate_file(SSL_CTX *ctx, char *file, int type);
814 STACK * SSL_load_client_CA_file(char *file);
815 #endif
816
817 void    ERR_load_SSL_strings(void );
818 void    SSL_load_error_strings(void );
819 char *  SSL_state_string(SSL *s);
820 char *  SSL_rstate_string(SSL *s);
821 char *  SSL_state_string_long(SSL *s);
822 char *  SSL_rstate_string_long(SSL *s);
823 long    SSL_SESSION_get_time(SSL_SESSION *s);
824 long    SSL_SESSION_set_time(SSL_SESSION *s, long t);
825 long    SSL_SESSION_get_timeout(SSL_SESSION *s);
826 long    SSL_SESSION_set_timeout(SSL_SESSION *s, long t);
827 void    SSL_copy_session_id(SSL *to,SSL *from);
828
829 SSL_SESSION *SSL_SESSION_new(void);
830 unsigned long SSL_SESSION_hash(SSL_SESSION *a);
831 int     SSL_SESSION_cmp(SSL_SESSION *a,SSL_SESSION *b);
832 #ifndef NO_FP_API
833 int     SSL_SESSION_print_fp(FILE *fp,SSL_SESSION *ses);
834 #endif
835 #ifdef HEADER_BIO_H
836 int     SSL_SESSION_print(BIO *fp,SSL_SESSION *ses);
837 #endif
838 void    SSL_SESSION_free(SSL_SESSION *ses);
839 int     i2d_SSL_SESSION(SSL_SESSION *in,unsigned char **pp);
840 int     SSL_set_session(SSL *to, SSL_SESSION *session);
841 int     SSL_CTX_add_session(SSL_CTX *s, SSL_SESSION *c);
842 int     SSL_CTX_remove_session(SSL_CTX *,SSL_SESSION *c);
843 SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a,unsigned char **pp,long length);
844
845 #ifdef HEADER_X509_H
846 X509 *  SSL_get_peer_certificate(SSL *s);
847 #endif
848
849 STACK * SSL_get_peer_cert_chain(SSL *s);
850
851 int SSL_CTX_get_verify_mode(SSL_CTX *ctx);
852 int (*SSL_CTX_get_verify_callback(SSL_CTX *ctx))();
853 void SSL_CTX_set_verify(SSL_CTX *ctx,int mode,int (*callback)());
854 void SSL_CTX_set_cert_verify_cb(SSL_CTX *ctx, int (*cb)(),char *arg);
855 int SSL_CTX_use_RSAPrivateKey(SSL_CTX *ctx, RSA *rsa);
856 int SSL_CTX_use_RSAPrivateKey_ASN1(SSL_CTX *ctx, unsigned char *d, long len);
857 int SSL_CTX_use_PrivateKey(SSL_CTX *ctx, EVP_PKEY *pkey);
858 int SSL_CTX_use_PrivateKey_ASN1(int pk,SSL_CTX *ctx,
859         unsigned char *d, long len);
860 int SSL_CTX_use_certificate(SSL_CTX *ctx, X509 *x);
861 int SSL_CTX_use_certificate_ASN1(SSL_CTX *ctx, int len, unsigned char *d);
862
863 void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx,int (*cb)());
864
865 int SSL_CTX_check_private_key(SSL_CTX *ctx);
866 int SSL_check_private_key(SSL *ctx);
867
868 SSL *   SSL_new(SSL_CTX *ctx);
869 void    SSL_clear(SSL *s);
870 void    SSL_free(SSL *ssl);
871 int     SSL_accept(SSL *ssl);
872 int     SSL_connect(SSL *ssl);
873 int     SSL_read(SSL *ssl,char *buf,int num);
874 int     SSL_peek(SSL *ssl,char *buf,int num);
875 int     SSL_write(SSL *ssl,char *buf,int num);
876 long    SSL_ctrl(SSL *ssl,int cmd, long larg, char *parg);
877 long    SSL_CTX_ctrl(SSL_CTX *ctx,int cmd, long larg, char *parg);
878
879 int     SSL_get_error(SSL *s,int ret_code);
880 char *  SSL_get_version(SSL *s);
881
882 /* This sets the 'default' SSL version that SSL_new() will create */
883 int SSL_CTX_set_ssl_version(SSL_CTX *ctx,SSL_METHOD *meth);
884
885 SSL_METHOD *SSLv2_method(void);         /* SSLv2 */
886 SSL_METHOD *SSLv2_server_method(void);  /* SSLv2 */
887 SSL_METHOD *SSLv2_client_method(void);  /* SSLv2 */
888
889 SSL_METHOD *SSLv3_method(void);         /* SSLv3 */
890 SSL_METHOD *SSLv3_server_method(void);  /* SSLv3 */
891 SSL_METHOD *SSLv3_client_method(void);  /* SSLv3 */
892
893 SSL_METHOD *SSLv23_method(void);        /* SSLv3 but can rollback to v2 */
894 SSL_METHOD *SSLv23_server_method(void); /* SSLv3 but can rollback to v2 */
895 SSL_METHOD *SSLv23_client_method(void); /* SSLv3 but can rollback to v2 */
896
897 SSL_METHOD *TLSv1_method(void);         /* TLSv1.0 */
898 SSL_METHOD *TLSv1_server_method(void);  /* TLSv1.0 */
899 SSL_METHOD *TLSv1_client_method(void);  /* TLSv1.0 */
900
901 STACK *SSL_get_ciphers(SSL *s);
902
903 int SSL_do_handshake(SSL *s);
904 int SSL_renegotiate(SSL *s);
905 int SSL_shutdown(SSL *s);
906
907 SSL_METHOD *SSL_get_ssl_method(SSL *s);
908 int SSL_set_ssl_method(SSL *s,SSL_METHOD *method);
909 char *SSL_alert_type_string_long(int value);
910 char *SSL_alert_type_string(int value);
911 char *SSL_alert_desc_string_long(int value);
912 char *SSL_alert_desc_string(int value);
913
914 void SSL_set_client_CA_list(SSL *s, STACK *list);
915 void SSL_CTX_set_client_CA_list(SSL_CTX *ctx, STACK *list);
916 STACK *SSL_get_client_CA_list(SSL *s);
917 STACK *SSL_CTX_get_client_CA_list(SSL_CTX *s);
918 int SSL_add_client_CA(SSL *ssl,X509 *x);
919 int SSL_CTX_add_client_CA(SSL_CTX *ctx,X509 *x);
920
921 void SSL_set_connect_state(SSL *s);
922 void SSL_set_accept_state(SSL *s);
923
924 long SSL_get_default_timeout(SSL *s);
925
926 void SSLeay_add_ssl_algorithms(void );
927
928 char *SSL_CIPHER_description(SSL_CIPHER *,char *buf,int size);
929 STACK *SSL_dup_CA_list(STACK *sk);
930
931 SSL *SSL_dup(SSL *ssl);
932
933 X509 *SSL_get_certificate(SSL *ssl);
934 /* EVP_PKEY */ struct evp_pkey_st *SSL_get_privatekey(SSL *ssl);
935
936 void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx,int mode);
937 int SSL_CTX_get_quiet_shutdown(SSL_CTX *ctx);
938 void SSL_set_quiet_shutdown(SSL *ssl,int mode);
939 int SSL_get_quiet_shutdown(SSL *ssl);
940 void SSL_set_shutdown(SSL *ssl,int mode);
941 int SSL_get_shutdown(SSL *ssl);
942 int SSL_version(SSL *ssl);
943 int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx);
944 int SSL_CTX_load_verify_locations(SSL_CTX *ctx,char *CAfile,char *CApath);
945 SSL_SESSION *SSL_get_session(SSL *ssl);
946 SSL_CTX *SSL_get_SSL_CTX(SSL *ssl);
947 void SSL_set_info_callback(SSL *ssl,void (*cb)());
948 void (*SSL_get_info_callback(SSL *ssl))();
949 int SSL_state(SSL *ssl);
950
951 void SSL_set_verify_result(SSL *ssl,long v);
952 long SSL_get_verify_result(SSL *ssl);
953
954 int SSL_set_ex_data(SSL *ssl,int idx,char *data);
955 char *SSL_get_ex_data(SSL *ssl,int idx);
956 int SSL_get_ex_new_index(long argl, char *argp, int (*new_func)(),
957         int (*dup_func)(), void (*free_func)());
958
959 int SSL_SESSION_set_ex_data(SSL_SESSION *ss,int idx,char *data);
960 char *SSL_SESSION_get_ex_data(SSL_SESSION *ss,int idx);
961 int SSL_SESSION_get_ex_new_index(long argl, char *argp, int (*new_func)(),
962         int (*dup_func)(), void (*free_func)());
963
964 int SSL_CTX_set_ex_data(SSL_CTX *ssl,int idx,char *data);
965 char *SSL_CTX_get_ex_data(SSL_CTX *ssl,int idx);
966 int SSL_CTX_get_ex_new_index(long argl, char *argp, int (*new_func)(),
967         int (*dup_func)(), void (*free_func)());
968
969 int SSL_get_ex_data_X509_STORE_CTX_idx(void );
970
971 #else
972
973 BIO_METHOD *BIO_f_ssl();
974 BIO *BIO_new_ssl();
975 BIO *BIO_new_ssl_connect();
976 BIO *BIO_new_buffer_ssl_connect();
977 int BIO_ssl_copy_session_id();
978 void BIO_ssl_shutdown();
979
980 int     SSL_CTX_set_cipher_list();
981 SSL_CTX *SSL_CTX_new();
982 void    SSL_CTX_free();
983 void    SSL_clear();
984 void    SSL_CTX_flush_sessions();
985
986 SSL_CIPHER *SSL_get_current_cipher();
987 int     SSL_CIPHER_get_bits();
988 char *  SSL_CIPHER_get_version();
989 char *  SSL_CIPHER_get_name();
990
991 int     SSL_get_fd();
992 char  * SSL_get_cipher_list();
993 char *  SSL_get_shared_ciphers();
994 int     SSL_get_read_ahead();
995 int     SSL_pending();
996 #ifndef NO_SOCK
997 int     SSL_set_fd();
998 int     SSL_set_rfd();
999 int     SSL_set_wfd();
1000 #endif
1001 #ifdef HEADER_BIO_H
1002 void    SSL_set_bio();
1003 BIO *   SSL_get_rbio();
1004 BIO *   SSL_get_wbio();
1005 #endif
1006 int     SSL_set_cipher_list();
1007 void    SSL_set_read_ahead();
1008 int     SSL_get_verify_mode();
1009
1010 void    SSL_set_verify();
1011 int     SSL_use_RSAPrivateKey();
1012 int     SSL_use_RSAPrivateKey_ASN1();
1013 int     SSL_use_PrivateKey();
1014 int     SSL_use_PrivateKey_ASN1();
1015 int     SSL_use_certificate();
1016 int     SSL_use_certificate_ASN1();
1017
1018 #ifndef NO_STDIO
1019 int     SSL_use_RSAPrivateKey_file();
1020 int     SSL_use_PrivateKey_file();
1021 int     SSL_use_certificate_file();
1022 int     SSL_CTX_use_RSAPrivateKey_file();
1023 int     SSL_CTX_use_PrivateKey_file();
1024 int     SSL_CTX_use_certificate_file();
1025 STACK * SSL_load_client_CA_file();
1026 #endif
1027
1028 void    ERR_load_SSL_strings();
1029 void    SSL_load_error_strings();
1030 char *  SSL_state_string();
1031 char *  SSL_rstate_string();
1032 char *  SSL_state_string_long();
1033 char *  SSL_rstate_string_long();
1034 long    SSL_SESSION_get_time();
1035 long    SSL_SESSION_set_time();
1036 long    SSL_SESSION_get_timeout();
1037 long    SSL_SESSION_set_timeout();
1038 void    SSL_copy_session_id();
1039
1040 SSL_SESSION *SSL_SESSION_new();
1041 unsigned long SSL_SESSION_hash();
1042 int     SSL_SESSION_cmp();
1043 #ifndef NO_FP_API
1044 int     SSL_SESSION_print_fp();
1045 #endif
1046 #ifdef HEADER_BIO_H
1047 int     SSL_SESSION_print();
1048 #endif
1049 void    SSL_SESSION_free();
1050 int     i2d_SSL_SESSION();
1051 int     SSL_set_session();
1052 int     SSL_CTX_add_session();
1053 int     SSL_CTX_remove_session();
1054 SSL_SESSION *d2i_SSL_SESSION();
1055
1056 #ifdef HEADER_X509_H
1057 X509 *  SSL_get_peer_certificate();
1058 #endif
1059
1060 STACK * SSL_get_peer_cert_chain();
1061
1062 int SSL_CTX_get_verify_mode();
1063 int (*SSL_CTX_get_verify_callback())();
1064 void SSL_CTX_set_verify();
1065 void SSL_CTX_set_cert_verify_cb();
1066 int SSL_CTX_use_RSAPrivateKey();
1067 int SSL_CTX_use_RSAPrivateKey_ASN1();
1068 int SSL_CTX_use_PrivateKey();
1069 int SSL_CTX_use_PrivateKey_ASN1();
1070 int SSL_CTX_use_certificate();
1071 int SSL_CTX_use_certificate_ASN1();
1072
1073 void SSL_CTX_set_default_passwd_cb();
1074
1075 int SSL_CTX_check_private_key();
1076 int SSL_check_private_key();
1077
1078 SSL *   SSL_new();
1079 void    SSL_clear();
1080 void    SSL_free();
1081 int     SSL_accept();
1082 int     SSL_connect();
1083 int     SSL_read();
1084 int     SSL_peek();
1085 int     SSL_write();
1086 long    SSL_ctrl();
1087 long    SSL_CTX_ctrl();
1088
1089 int     SSL_get_error();
1090 char *  SSL_get_version();
1091
1092 int SSL_CTX_set_ssl_version();
1093
1094 SSL_METHOD *SSLv2_method();
1095 SSL_METHOD *SSLv2_server_method();
1096 SSL_METHOD *SSLv2_client_method();
1097
1098 SSL_METHOD *SSLv3_method();
1099 SSL_METHOD *SSLv3_server_method();
1100 SSL_METHOD *SSLv3_client_method();
1101
1102 SSL_METHOD *SSLv23_method();
1103 SSL_METHOD *SSLv23_server_method();
1104 SSL_METHOD *SSLv23_client_method();
1105
1106 SSL_METHOD *TLSv1_method();
1107 SSL_METHOD *TLSv1_server_method();
1108 SSL_METHOD *TLSv1_client_method();
1109
1110 STACK *SSL_get_ciphers();
1111
1112 int SSL_do_handshake();
1113 int SSL_renegotiate();
1114 int SSL_shutdown();
1115
1116 SSL_METHOD *SSL_get_ssl_method();
1117 int SSL_set_ssl_method();
1118 char *SSL_alert_type_string_long();
1119 char *SSL_alert_type_string();
1120 char *SSL_alert_desc_string_long();
1121 char *SSL_alert_desc_string();
1122
1123 void SSL_set_client_CA_list();
1124 void SSL_CTX_set_client_CA_list();
1125 STACK *SSL_get_client_CA_list();
1126 STACK *SSL_CTX_get_client_CA_list();
1127 int SSL_add_client_CA();
1128 int SSL_CTX_add_client_CA();
1129
1130 void SSL_set_connect_state();
1131 void SSL_set_accept_state();
1132
1133 long SSL_get_default_timeout();
1134
1135 void SSLeay_add_ssl_algorithms();
1136
1137 char *SSL_CIPHER_description();
1138 STACK *SSL_dup_CA_list();
1139
1140 SSL *SSL_dup();
1141
1142 X509 *SSL_get_certificate();
1143 /* EVP * */ struct evp_pkey_st *SSL_get_privatekey();
1144
1145 #ifdef this_is_for_mk1mf_pl
1146 EVP *SSL_get_privatekey();
1147 #endif
1148
1149 void SSL_CTX_set_quiet_shutdown();
1150 int SSL_CTX_get_quiet_shutdown();
1151 void SSL_set_quiet_shutdown();
1152 int SSL_get_quiet_shutdown();
1153 void SSL_set_shutdown();
1154 int SSL_get_shutdown();
1155 int SSL_version();
1156 int SSL_CTX_set_default_verify_paths();
1157 int SSL_CTX_load_verify_locations();
1158 SSL_SESSION *SSL_get_session();
1159 SSL_CTX *SSL_get_SSL_CTX();
1160 void SSL_set_info_callback();
1161 void (*SSL_get_info_callback())();
1162 int SSL_state();
1163 void SSL_set_verify_result();
1164 long SSL_get_verify_result();
1165
1166 int SSL_set_ex_data();
1167 char *SSL_get_ex_data();
1168 int SSL_get_ex_new_index();
1169
1170 int SSL_SESSION_set_ex_data();
1171 char *SSL_SESSION_get_ex_data();
1172 int SSL_SESSION_get_ex_new_index();
1173
1174 int SSL_CTX_set_ex_data();
1175 char *SSL_CTX_get_ex_data();
1176 int SSL_CTX_get_ex_new_index();
1177
1178 int SSL_get_ex_data_X509_STORE_CTX_idx();
1179
1180 /* #endif */
1181
1182 #endif
1183
1184 /* BEGIN ERROR CODES */
1185 /* Error codes for the SSL functions. */
1186
1187 /* Function codes. */
1188 #define SSL_F_CLIENT_CERTIFICATE                         100
1189 #define SSL_F_CLIENT_HELLO                               101
1190 #define SSL_F_CLIENT_MASTER_KEY                          102
1191 #define SSL_F_D2I_SSL_SESSION                            103
1192 #define SSL_F_DO_SSL3_WRITE                              104
1193 #define SSL_F_GET_CLIENT_FINISHED                        105
1194 #define SSL_F_GET_CLIENT_HELLO                           106
1195 #define SSL_F_GET_CLIENT_MASTER_KEY                      107
1196 #define SSL_F_GET_SERVER_FINISHED                        108
1197 #define SSL_F_GET_SERVER_HELLO                           109
1198 #define SSL_F_GET_SERVER_VERIFY                          110
1199 #define SSL_F_I2D_SSL_SESSION                            111
1200 #define SSL_F_READ_N                                     112
1201 #define SSL_F_REQUEST_CERTIFICATE                        113
1202 #define SSL_F_SERVER_HELLO                               114
1203 #define SSL_F_SSL23_ACCEPT                               115
1204 #define SSL_F_SSL23_CLIENT_HELLO                         116
1205 #define SSL_F_SSL23_CONNECT                              117
1206 #define SSL_F_SSL23_GET_CLIENT_HELLO                     118
1207 #define SSL_F_SSL23_GET_SERVER_HELLO                     119
1208 #define SSL_F_SSL23_READ                                 120
1209 #define SSL_F_SSL23_WRITE                                121
1210 #define SSL_F_SSL2_ACCEPT                                122
1211 #define SSL_F_SSL2_CONNECT                               123
1212 #define SSL_F_SSL2_ENC_INIT                              124
1213 #define SSL_F_SSL2_READ                                  125
1214 #define SSL_F_SSL2_SET_CERTIFICATE                       126
1215 #define SSL_F_SSL2_WRITE                                 127
1216 #define SSL_F_SSL3_ACCEPT                                128
1217 #define SSL_F_SSL3_CHANGE_CIPHER_STATE                   129
1218 #define SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM              130
1219 #define SSL_F_SSL3_CLIENT_HELLO                          131
1220 #define SSL_F_SSL3_CONNECT                               132
1221 #define SSL_F_SSL3_CTX_CTRL                              133
1222 #define SSL_F_SSL3_ENC                                   134
1223 #define SSL_F_SSL3_GET_CERTIFICATE_REQUEST               135
1224 #define SSL_F_SSL3_GET_CERT_VERIFY                       136
1225 #define SSL_F_SSL3_GET_CLIENT_CERTIFICATE                137
1226 #define SSL_F_SSL3_GET_CLIENT_HELLO                      138
1227 #define SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE               139
1228 #define SSL_F_SSL3_GET_FINISHED                          140
1229 #define SSL_F_SSL3_GET_KEY_EXCHANGE                      141
1230 #define SSL_F_SSL3_GET_MESSAGE                           142
1231 #define SSL_F_SSL3_GET_RECORD                            143
1232 #define SSL_F_SSL3_GET_SERVER_CERTIFICATE                144
1233 #define SSL_F_SSL3_GET_SERVER_DONE                       145
1234 #define SSL_F_SSL3_GET_SERVER_HELLO                      146
1235 #define SSL_F_SSL3_OUTPUT_CERT_CHAIN                     147
1236 #define SSL_F_SSL3_READ_BYTES                            148
1237 #define SSL_F_SSL3_READ_N                                149
1238 #define SSL_F_SSL3_SEND_CERTIFICATE_REQUEST              150
1239 #define SSL_F_SSL3_SEND_CLIENT_CERTIFICATE               151
1240 #define SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE              152
1241 #define SSL_F_SSL3_SEND_CLIENT_VERIFY                    153
1242 #define SSL_F_SSL3_SEND_SERVER_CERTIFICATE               154
1243 #define SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE              155
1244 #define SSL_F_SSL3_SETUP_BUFFERS                         156
1245 #define SSL_F_SSL3_SETUP_KEY_BLOCK                       157
1246 #define SSL_F_SSL3_WRITE_BYTES                           158
1247 #define SSL_F_SSL3_WRITE_PENDING                         159
1248 #define SSL_F_SSL_BAD_METHOD                             160
1249 #define SSL_F_SSL_BYTES_TO_CIPHER_LIST                   161
1250 #define SSL_F_SSL_CERT_NEW                               162
1251 #define SSL_F_SSL_CHECK_PRIVATE_KEY                      163
1252 #define SSL_F_SSL_CREATE_CIPHER_LIST                     164
1253 #define SSL_F_SSL_CTX_CHECK_PRIVATE_KEY                  165
1254 #define SSL_F_SSL_CTX_NEW                                166
1255 #define SSL_F_SSL_CTX_SET_SSL_VERSION                    167
1256 #define SSL_F_SSL_CTX_USE_CERTIFICATE                    168
1257 #define SSL_F_SSL_CTX_USE_CERTIFICATE_ASN1               169
1258 #define SSL_F_SSL_CTX_USE_CERTIFICATE_FILE               170
1259 #define SSL_F_SSL_CTX_USE_PRIVATEKEY                     171
1260 #define SSL_F_SSL_CTX_USE_PRIVATEKEY_ASN1                172
1261 #define SSL_F_SSL_CTX_USE_PRIVATEKEY_FILE                173
1262 #define SSL_F_SSL_CTX_USE_RSAPRIVATEKEY                  174
1263 #define SSL_F_SSL_CTX_USE_RSAPRIVATEKEY_ASN1             175
1264 #define SSL_F_SSL_CTX_USE_RSAPRIVATEKEY_FILE             176
1265 #define SSL_F_SSL_DO_HANDSHAKE                           177
1266 #define SSL_F_SSL_GET_NEW_SESSION                        178
1267 #define SSL_F_SSL_GET_SERVER_SEND_CERT                   179
1268 #define SSL_F_SSL_GET_SIGN_PKEY                          180
1269 #define SSL_F_SSL_INIT_WBIO_BUFFER                       181
1270 #define SSL_F_SSL_LOAD_CLIENT_CA_FILE                    182
1271 #define SSL_F_SSL_NEW                                    183
1272 #define SSL_F_SSL_RSA_PRIVATE_DECRYPT                    184
1273 #define SSL_F_SSL_RSA_PUBLIC_ENCRYPT                     185
1274 #define SSL_F_SSL_SESSION_NEW                            186
1275 #define SSL_F_SSL_SESSION_PRINT_FP                       187
1276 #define SSL_F_SSL_SET_CERT                               188
1277 #define SSL_F_SSL_SET_FD                                 189
1278 #define SSL_F_SSL_SET_PKEY                               190
1279 #define SSL_F_SSL_SET_RFD                                191
1280 #define SSL_F_SSL_SET_SESSION                            192
1281 #define SSL_F_SSL_SET_WFD                                193
1282 #define SSL_F_SSL_UNDEFINED_FUNCTION                     194
1283 #define SSL_F_SSL_USE_CERTIFICATE                        195
1284 #define SSL_F_SSL_USE_CERTIFICATE_ASN1                   196
1285 #define SSL_F_SSL_USE_CERTIFICATE_FILE                   197
1286 #define SSL_F_SSL_USE_PRIVATEKEY                         198
1287 #define SSL_F_SSL_USE_PRIVATEKEY_ASN1                    199
1288 #define SSL_F_SSL_USE_PRIVATEKEY_FILE                    200
1289 #define SSL_F_SSL_USE_RSAPRIVATEKEY                      201
1290 #define SSL_F_SSL_USE_RSAPRIVATEKEY_ASN1                 202
1291 #define SSL_F_SSL_USE_RSAPRIVATEKEY_FILE                 203
1292 #define SSL_F_SSL_VERIFY_CERT_CHAIN                      204
1293 #define SSL_F_SSL_WRITE                                  205
1294 #define SSL_F_TLS1_CHANGE_CIPHER_STATE                   206
1295 #define SSL_F_TLS1_ENC                                   207
1296 #define SSL_F_TLS1_SETUP_KEY_BLOCK                       208
1297 #define SSL_F_WRITE_PENDING                              209
1298
1299 /* Reason codes. */
1300 #define SSL_R_APP_DATA_IN_HANDSHAKE                      100
1301 #define SSL_R_BAD_ALERT_RECORD                           101
1302 #define SSL_R_BAD_AUTHENTICATION_TYPE                    102
1303 #define SSL_R_BAD_CHANGE_CIPHER_SPEC                     103
1304 #define SSL_R_BAD_CHECKSUM                               104
1305 #define SSL_R_BAD_CLIENT_REQUEST                         105
1306 #define SSL_R_BAD_DATA_RETURNED_BY_CALLBACK              106
1307 #define SSL_R_BAD_DECOMPRESSION                          107
1308 #define SSL_R_BAD_DH_G_LENGTH                            108
1309 #define SSL_R_BAD_DH_PUB_KEY_LENGTH                      109
1310 #define SSL_R_BAD_DH_P_LENGTH                            110
1311 #define SSL_R_BAD_DIGEST_LENGTH                          111
1312 #define SSL_R_BAD_DSA_SIGNATURE                          112
1313 #define SSL_R_BAD_MAC_DECODE                             113
1314 #define SSL_R_BAD_MESSAGE_TYPE                           114
1315 #define SSL_R_BAD_PACKET_LENGTH                          115
1316 #define SSL_R_BAD_PROTOCOL_VERSION_NUMBER                116
1317 #define SSL_R_BAD_RESPONSE_ARGUMENT                      117
1318 #define SSL_R_BAD_RSA_DECRYPT                            118
1319 #define SSL_R_BAD_RSA_ENCRYPT                            119
1320 #define SSL_R_BAD_RSA_E_LENGTH                           120
1321 #define SSL_R_BAD_RSA_MODULUS_LENGTH                     121
1322 #define SSL_R_BAD_RSA_SIGNATURE                          122
1323 #define SSL_R_BAD_SIGNATURE                              123
1324 #define SSL_R_BAD_SSL_FILETYPE                           124
1325 #define SSL_R_BAD_SSL_SESSION_ID_LENGTH                  125
1326 #define SSL_R_BAD_STATE                                  126
1327 #define SSL_R_BAD_WRITE_RETRY                            127
1328 #define SSL_R_BIO_NOT_SET                                128
1329 #define SSL_R_BLOCK_CIPHER_PAD_IS_WRONG                  129
1330 #define SSL_R_BN_LIB                                     130
1331 #define SSL_R_CA_DN_LENGTH_MISMATCH                      131
1332 #define SSL_R_CA_DN_TOO_LONG                             132
1333 #define SSL_R_CCS_RECEIVED_EARLY                         133
1334 #define SSL_R_CERTIFICATE_VERIFY_FAILED                  134
1335 #define SSL_R_CERT_LENGTH_MISMATCH                       135
1336 #define SSL_R_CHALLENGE_IS_DIFFERENT                     136
1337 #define SSL_R_CIPHER_CODE_WRONG_LENGTH                   137
1338 #define SSL_R_CIPHER_OR_HASH_UNAVAILABLE                 138
1339 #define SSL_R_CIPHER_TABLE_SRC_ERROR                     139
1340 #define SSL_R_COMPRESSED_LENGTH_TOO_LONG                 140
1341 #define SSL_R_COMPRESSION_FAILURE                        141
1342 #define SSL_R_COMPRESSION_LIBRARY_ERROR                  142
1343 #define SSL_R_CONNECTION_ID_IS_DIFFERENT                 143
1344 #define SSL_R_CONNECTION_TYPE_NOT_SET                    144
1345 #define SSL_R_DATA_BETWEEN_CCS_AND_FINISHED              145
1346 #define SSL_R_DATA_LENGTH_TOO_LONG                       146
1347 #define SSL_R_DECRYPTION_FAILED                          147
1348 #define SSL_R_DH_PUBLIC_VALUE_LENGTH_IS_WRONG            148
1349 #define SSL_R_DIGEST_CHECK_FAILED                        149
1350 #define SSL_R_ENCRYPTED_LENGTH_TOO_LONG                  150
1351 #define SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST              151
1352 #define SSL_R_EXCESSIVE_MESSAGE_SIZE                     152
1353 #define SSL_R_EXTRA_DATA_IN_MESSAGE                      153
1354 #define SSL_R_GOT_A_FIN_BEFORE_A_CCS                     154
1355 #define SSL_R_HTTPS_PROXY_REQUEST                        155
1356 #define SSL_R_HTTP_REQUEST                               156
1357 #define SSL_R_INTERNAL_ERROR                             157
1358 #define SSL_R_INVALID_CHALLENGE_LENGTH                   158
1359 #define SSL_R_LENGTH_MISMATCH                            159
1360 #define SSL_R_LENGTH_TOO_SHORT                           160
1361 #define SSL_R_LIBRARY_HAS_NO_CIPHERS                     161
1362 #define SSL_R_MISSING_DH_DSA_CERT                        162
1363 #define SSL_R_MISSING_DH_KEY                             163
1364 #define SSL_R_MISSING_DH_RSA_CERT                        164
1365 #define SSL_R_MISSING_DSA_SIGNING_CERT                   165
1366 #define SSL_R_MISSING_EXPORT_TMP_DH_KEY                  166
1367 #define SSL_R_MISSING_EXPORT_TMP_RSA_KEY                 167
1368 #define SSL_R_MISSING_RSA_CERTIFICATE                    168
1369 #define SSL_R_MISSING_RSA_ENCRYPTING_CERT                169
1370 #define SSL_R_MISSING_RSA_SIGNING_CERT                   170
1371 #define SSL_R_MISSING_TMP_DH_KEY                         171
1372 #define SSL_R_MISSING_TMP_RSA_KEY                        172
1373 #define SSL_R_MISSING_TMP_RSA_PKEY                       173
1374 #define SSL_R_MISSING_VERIFY_MESSAGE                     174
1375 #define SSL_R_NON_SSLV2_INITIAL_PACKET                   175
1376 #define SSL_R_NO_CERTIFICATES_RETURNED                   176
1377 #define SSL_R_NO_CERTIFICATE_ASSIGNED                    177
1378 #define SSL_R_NO_CERTIFICATE_RETURNED                    178
1379 #define SSL_R_NO_CERTIFICATE_SET                         179
1380 #define SSL_R_NO_CERTIFICATE_SPECIFIED                   180
1381 #define SSL_R_NO_CIPHERS_AVAILABLE                       181
1382 #define SSL_R_NO_CIPHERS_PASSED                          182
1383 #define SSL_R_NO_CIPHERS_SPECIFIED                       183
1384 #define SSL_R_NO_CIPHER_LIST                             184
1385 #define SSL_R_NO_CIPHER_MATCH                            185
1386 #define SSL_R_NO_CLIENT_CERT_RECEIVED                    186
1387 #define SSL_R_NO_COMPRESSION_SPECIFIED                   187
1388 #define SSL_R_NO_PRIVATEKEY                              188
1389 #define SSL_R_NO_PRIVATE_KEY_ASSIGNED                    189
1390 #define SSL_R_NO_PROTOCOLS_AVAILABLE                     190
1391 #define SSL_R_NO_PUBLICKEY                               191
1392 #define SSL_R_NO_SHARED_CIPHER                           192
1393 #define SSL_R_NO_VERIFY_CALLBACK                         193
1394 #define SSL_R_NULL_SSL_CTX                               194
1395 #define SSL_R_NULL_SSL_METHOD_PASSED                     195
1396 #define SSL_R_OLD_SESSION_CIPHER_NOT_RETURNED            196
1397 #define SSL_R_PACKET_LENGTH_TOO_LONG                     197
1398 #define SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE          198
1399 #define SSL_R_PEER_ERROR                                 199
1400 #define SSL_R_PEER_ERROR_CERTIFICATE                     200
1401 #define SSL_R_PEER_ERROR_NO_CERTIFICATE                  201
1402 #define SSL_R_PEER_ERROR_NO_CIPHER                       202
1403 #define SSL_R_PEER_ERROR_UNSUPPORTED_CERTIFICATE_TYPE    203
1404 #define SSL_R_PRE_MAC_LENGTH_TOO_LONG                    204
1405 #define SSL_R_PROBLEMS_MAPPING_CIPHER_FUNCTIONS          205
1406 #define SSL_R_PROTOCOL_IS_SHUTDOWN                       206
1407 #define SSL_R_PUBLIC_KEY_ENCRYPT_ERROR                   207
1408 #define SSL_R_PUBLIC_KEY_IS_NOT_RSA                      208
1409 #define SSL_R_PUBLIC_KEY_NOT_RSA                         209
1410 #define SSL_R_READ_BIO_NOT_SET                           210
1411 #define SSL_R_READ_WRONG_PACKET_TYPE                     211
1412 #define SSL_R_RECORD_LENGTH_MISMATCH                     212
1413 #define SSL_R_RECORD_TOO_LARGE                           213
1414 #define SSL_R_REQUIRED_CIPHER_MISSING                    214
1415 #define SSL_R_REUSE_CERT_LENGTH_NOT_ZERO                 215
1416 #define SSL_R_REUSE_CERT_TYPE_NOT_ZERO                   216
1417 #define SSL_R_REUSE_CIPHER_LIST_NOT_ZERO                 217
1418 #define SSL_R_SHORT_READ                                 218
1419 #define SSL_R_SIGNATURE_FOR_NON_SIGNING_CERTIFICATE      219
1420 #define SSL_R_SSL3_SESSION_ID_TOO_SHORT                  220
1421 #define SSL_R_SSLV3_ALERT_BAD_CERTIFICATE                1042
1422 #define SSL_R_SSLV3_ALERT_BAD_RECORD_MAC                 1020
1423 #define SSL_R_SSLV3_ALERT_CERTIFICATE_EXPIRED            1045
1424 #define SSL_R_SSLV3_ALERT_CERTIFICATE_REVOKED            1044
1425 #define SSL_R_SSLV3_ALERT_CERTIFICATE_UNKNOWN            1046
1426 #define SSL_R_SSLV3_ALERT_DECOMPRESSION_FAILURE          1030
1427 #define SSL_R_SSLV3_ALERT_HANDSHAKE_FAILURE              1040
1428 #define SSL_R_SSLV3_ALERT_ILLEGAL_PARAMETER              1047
1429 #define SSL_R_SSLV3_ALERT_NO_CERTIFICATE                 1041
1430 #define SSL_R_SSLV3_ALERT_PEER_ERROR_CERTIFICATE         221
1431 #define SSL_R_SSLV3_ALERT_PEER_ERROR_NO_CERTIFICATE      222
1432 #define SSL_R_SSLV3_ALERT_PEER_ERROR_NO_CIPHER           223
1433 #define SSL_R_SSLV3_ALERT_PEER_ERROR_UNSUPPORTED_CERTIFICATE_TYPE 224
1434 #define SSL_R_SSLV3_ALERT_UNEXPECTED_MESSAGE             1010
1435 #define SSL_R_SSLV3_ALERT_UNKNOWN_REMOTE_ERROR_TYPE      225
1436 #define SSL_R_SSLV3_ALERT_UNSUPPORTED_CERTIFICATE        1043
1437 #define SSL_R_SSL_CTX_HAS_NO_DEFAULT_SSL_VERSION         226
1438 #define SSL_R_SSL_HANDSHAKE_FAILURE                      227
1439 #define SSL_R_SSL_LIBRARY_HAS_NO_CIPHERS                 228
1440 #define SSL_R_SSL_SESSION_ID_IS_DIFFERENT                229
1441 #define SSL_R_TLSV1_ALERT_ACCESS_DENIED                  1049
1442 #define SSL_R_TLSV1_ALERT_DECODE_ERROR                   1050
1443 #define SSL_R_TLSV1_ALERT_DECRYPTION_FAILED              1021
1444 #define SSL_R_TLSV1_ALERT_DECRYPT_ERROR                  1051
1445 #define SSL_R_TLSV1_ALERT_EXPORT_RESTRICION              1060
1446 #define SSL_R_TLSV1_ALERT_INSUFFICIENT_SECURITY          1071
1447 #define SSL_R_TLSV1_ALERT_INTERNAL_ERROR                 1080
1448 #define SSL_R_TLSV1_ALERT_NO_RENEGOTIATION               1100
1449 #define SSL_R_TLSV1_ALERT_PROTOCOL_VERSION               1070
1450 #define SSL_R_TLSV1_ALERT_RECORD_OVERFLOW                1022
1451 #define SSL_R_TLSV1_ALERT_UNKNOWN_CA                     1048
1452 #define SSL_R_TLSV1_ALERT_USER_CANCLED                   1090
1453 #define SSL_R_TLS_CLIENT_CERT_REQ_WITH_ANON_CIPHER       230
1454 #define SSL_R_TLS_PEER_DID_NOT_RESPOND_WITH_CERTIFICATE_LIST 231
1455 #define SSL_R_TLS_RSA_ENCRYPTED_VALUE_LENGTH_IS_WRONG    232
1456 #define SSL_R_TRIED_TO_USE_UNSUPPORTED_CIPHER            233
1457 #define SSL_R_UNABLE_TO_DECODE_DH_CERTS                  234
1458 #define SSL_R_UNABLE_TO_EXTRACT_PUBLIC_KEY               235
1459 #define SSL_R_UNABLE_TO_FIND_DH_PARAMETERS               236
1460 #define SSL_R_UNABLE_TO_FIND_PUBLIC_KEY_PARAMETERS       237
1461 #define SSL_R_UNABLE_TO_FIND_SSL_METHOD                  238
1462 #define SSL_R_UNABLE_TO_LOAD_SSL2_MD5_ROUTINES           239
1463 #define SSL_R_UNABLE_TO_LOAD_SSL3_MD5_ROUTINES           240
1464 #define SSL_R_UNABLE_TO_LOAD_SSL3_SHA1_ROUTINES          241
1465 #define SSL_R_UNEXPECTED_MESSAGE                         242
1466 #define SSL_R_UNEXPECTED_RECORD                          243
1467 #define SSL_R_UNKNOWN_ALERT_TYPE                         244
1468 #define SSL_R_UNKNOWN_CERTIFICATE_TYPE                   245
1469 #define SSL_R_UNKNOWN_CIPHER_RETURNED                    246
1470 #define SSL_R_UNKNOWN_CIPHER_TYPE                        247
1471 #define SSL_R_UNKNOWN_KEY_EXCHANGE_TYPE                  248
1472 #define SSL_R_UNKNOWN_PKEY_TYPE                          249
1473 #define SSL_R_UNKNOWN_PROTOCOL                           250
1474 #define SSL_R_UNKNOWN_REMOTE_ERROR_TYPE                  251
1475 #define SSL_R_UNKNOWN_SSL_VERSION                        252
1476 #define SSL_R_UNKNOWN_STATE                              253
1477 #define SSL_R_UNSUPPORTED_CIPHER                         254
1478 #define SSL_R_UNSUPPORTED_COMPRESSION_ALGORITHM          255
1479 #define SSL_R_UNSUPPORTED_PROTOCOL                       256
1480 #define SSL_R_UNSUPPORTED_SSL_VERSION                    257
1481 #define SSL_R_WRITE_BIO_NOT_SET                          258
1482 #define SSL_R_WRONG_CIPHER_RETURNED                      259
1483 #define SSL_R_WRONG_MESSAGE_TYPE                         260
1484 #define SSL_R_WRONG_NUMBER_OF_KEY_BITS                   261
1485 #define SSL_R_WRONG_SIGNATURE_LENGTH                     262
1486 #define SSL_R_WRONG_SIGNATURE_SIZE                       263
1487 #define SSL_R_WRONG_SSL_VERSION                          264
1488 #define SSL_R_WRONG_VERSION_NUMBER                       265
1489 #define SSL_R_X509_LIB                                   266
1490 #define SSL_R_X509_VERIFICATION_SETUP_PROBLEMS           267
1491  
1492 #ifdef  __cplusplus
1493 }
1494 #endif
1495 #endif
1496