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