Change address now that we've the mailing lists established
[openssl.git] / ssl / s3_enc.c
1 /* ssl/s3_enc.c */
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 #include <stdio.h>
60 #include "evp.h"
61 #include "ssl_locl.h"
62
63 static unsigned char ssl3_pad_1[48]={
64         0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
65         0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
66         0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
67         0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
68         0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
69         0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36 };
70
71 static unsigned char ssl3_pad_2[48]={
72         0x5c,0x5c,0x5c,0x5c,0x5c,0x5c,0x5c,0x5c,
73         0x5c,0x5c,0x5c,0x5c,0x5c,0x5c,0x5c,0x5c,
74         0x5c,0x5c,0x5c,0x5c,0x5c,0x5c,0x5c,0x5c,
75         0x5c,0x5c,0x5c,0x5c,0x5c,0x5c,0x5c,0x5c,
76         0x5c,0x5c,0x5c,0x5c,0x5c,0x5c,0x5c,0x5c,
77         0x5c,0x5c,0x5c,0x5c,0x5c,0x5c,0x5c,0x5c };
78
79 #ifndef NO_PROTO
80 static int ssl3_handshake_mac(SSL *s, EVP_MD_CTX *in_ctx,
81         unsigned char *sender, int len, unsigned char *p);
82 #else
83 static int ssl3_handshake_mac();
84 #endif
85
86 static void ssl3_generate_key_block(s,km,num)
87 SSL *s;
88 unsigned char *km;
89 int num;
90         {
91         MD5_CTX m5;
92         SHA_CTX s1;
93         unsigned char buf[8],smd[SHA_DIGEST_LENGTH];
94         unsigned char c='A';
95         int i,j,k;
96
97         k=0;
98         for (i=0; i<num; i+=MD5_DIGEST_LENGTH)
99                 {
100                 k++;
101                 for (j=0; j<k; j++)
102                         buf[j]=c;
103                 c++;
104                 SHA1_Init(  &s1);
105                 SHA1_Update(&s1,buf,k);
106                 SHA1_Update(&s1,s->session->master_key,
107                         s->session->master_key_length);
108                 SHA1_Update(&s1,s->s3->server_random,SSL3_RANDOM_SIZE);
109                 SHA1_Update(&s1,s->s3->client_random,SSL3_RANDOM_SIZE);
110                 SHA1_Final( smd,&s1);
111
112                 MD5_Init(  &m5);
113                 MD5_Update(&m5,s->session->master_key,
114                         s->session->master_key_length);
115                 MD5_Update(&m5,smd,SHA_DIGEST_LENGTH);
116                 if ((i+MD5_DIGEST_LENGTH) > num)
117                         {
118                         MD5_Final(smd,&m5);
119                         memcpy(km,smd,(num-i));
120                         }
121                 else
122                         MD5_Final(km,&m5);
123
124                 km+=MD5_DIGEST_LENGTH;
125                 }
126         memset(smd,0,SHA_DIGEST_LENGTH);
127         }
128
129 int ssl3_change_cipher_state(s,which)
130 SSL *s;
131 int which;
132         {
133         unsigned char *p,*key_block,*mac_secret;
134         unsigned char exp_key[EVP_MAX_KEY_LENGTH];
135         unsigned char exp_iv[EVP_MAX_KEY_LENGTH];
136         unsigned char *ms,*key,*iv,*er1,*er2;
137         EVP_CIPHER_CTX *dd;
138         EVP_CIPHER *c;
139         COMP_METHOD *comp;
140         EVP_MD *m;
141         MD5_CTX md;
142         int exp,n,i,j,k;
143
144         exp=(s->s3->tmp.new_cipher->algorithms & SSL_EXPORT)?1:0;
145         c=s->s3->tmp.new_sym_enc;
146         m=s->s3->tmp.new_hash;
147         comp=s->s3->tmp.new_compression;
148         key_block=s->s3->tmp.key_block;
149
150         if (which & SSL3_CC_READ)
151                 {
152                 if ((s->enc_read_ctx == NULL) &&
153                         ((s->enc_read_ctx=(EVP_CIPHER_CTX *)
154                         Malloc(sizeof(EVP_CIPHER_CTX))) == NULL))
155                         goto err;
156                 dd= s->enc_read_ctx;
157                 s->read_hash=m;
158                 /* COMPRESS */
159                 if (s->expand != NULL)
160                         {
161                         COMP_CTX_free(s->expand);
162                         s->expand=NULL;
163                         }
164                 if (comp != NULL)
165                         {
166                         s->expand=COMP_CTX_new(comp);
167                         if (s->expand == NULL)
168                                 {
169                                 SSLerr(SSL_F_SSL3_CHANGE_CIPHER_STATE,SSL_R_COMPRESSION_LIBRARY_ERROR);
170                                 goto err2;
171                                 }
172                         s->s3->rrec.comp=(unsigned char *)
173                                 Malloc(SSL3_RT_MAX_PLAIN_LENGTH);
174                         if (s->s3->rrec.comp == NULL)
175                                 goto err;
176                         }
177                 memset(&(s->s3->read_sequence[0]),0,8);
178                 mac_secret= &(s->s3->read_mac_secret[0]);
179                 }
180         else
181                 {
182                 if ((s->enc_write_ctx == NULL) &&
183                         ((s->enc_write_ctx=(EVP_CIPHER_CTX *)
184                         Malloc(sizeof(EVP_CIPHER_CTX))) == NULL))
185                         goto err;
186                 dd= s->enc_write_ctx;
187                 s->write_hash=m;
188                 /* COMPRESS */
189                 if (s->compress != NULL)
190                         {
191                         COMP_CTX_free(s->compress);
192                         s->compress=NULL;
193                         }
194                 if (comp != NULL)
195                         {
196                         s->compress=COMP_CTX_new(comp);
197                         if (s->compress == NULL)
198                                 {
199                                 SSLerr(SSL_F_SSL3_CHANGE_CIPHER_STATE,SSL_R_COMPRESSION_LIBRARY_ERROR);
200                                 goto err2;
201                                 }
202                         }
203                 memset(&(s->s3->write_sequence[0]),0,8);
204                 mac_secret= &(s->s3->write_mac_secret[0]);
205                 }
206
207         EVP_CIPHER_CTX_init(dd);
208
209         p=s->s3->tmp.key_block;
210         i=EVP_MD_size(m);
211         /* Should be    j=exp?min(5,EVP_CIPHER_key_length(c)):EVP_CIPHER_key_length(c); ?? - Ben 30/12/98 */
212         j=(exp)?5:EVP_CIPHER_key_length(c);
213         k=EVP_CIPHER_iv_length(c);
214         if (    (which == SSL3_CHANGE_CIPHER_CLIENT_WRITE) ||
215                 (which == SSL3_CHANGE_CIPHER_SERVER_READ))
216                 {
217                 ms=  &(p[ 0]); n=i+i;
218                 key= &(p[ n]); n+=j+j;
219                 iv=  &(p[ n]); n+=k+k;
220                 er1= &(s->s3->client_random[0]);
221                 er2= &(s->s3->server_random[0]);
222                 }
223         else
224                 {
225                 n=i;
226                 ms=  &(p[ n]); n+=i+j;
227                 key= &(p[ n]); n+=j+k;
228                 iv=  &(p[ n]); n+=k;
229                 er1= &(s->s3->server_random[0]);
230                 er2= &(s->s3->client_random[0]);
231                 }
232
233         if (n > s->s3->tmp.key_block_length)
234                 {
235                 SSLerr(SSL_F_SSL3_CHANGE_CIPHER_STATE,SSL_R_INTERNAL_ERROR);
236                 goto err2;
237                 }
238
239         memcpy(mac_secret,ms,i);
240         if (exp)
241                 {
242                 /* In here I set both the read and write key/iv to the
243                  * same value since only the correct one will be used :-).
244                  */
245                 MD5_Init(&md);
246                 MD5_Update(&md,key,j);
247                 MD5_Update(&md,er1,SSL3_RANDOM_SIZE);
248                 MD5_Update(&md,er2,SSL3_RANDOM_SIZE);
249                 MD5_Final(&(exp_key[0]),&md);
250                 key= &(exp_key[0]);
251
252                 if (k > 0)
253                         {
254                         MD5_Init(&md);
255                         MD5_Update(&md,er1,SSL3_RANDOM_SIZE);
256                         MD5_Update(&md,er2,SSL3_RANDOM_SIZE);
257                         MD5_Final(&(exp_iv[0]),&md);
258                         iv= &(exp_iv[0]);
259                         }
260                 }
261
262         s->session->key_arg_length=0;
263
264         EVP_CipherInit(dd,c,key,iv,(which & SSL3_CC_WRITE));
265
266         memset(&(exp_key[0]),0,sizeof(exp_key));
267         memset(&(exp_iv[0]),0,sizeof(exp_iv));
268         return(1);
269 err:
270         SSLerr(SSL_F_SSL3_CHANGE_CIPHER_STATE,ERR_R_MALLOC_FAILURE);
271 err2:
272         return(0);
273         }
274
275 int ssl3_setup_key_block(s)
276 SSL *s;
277         {
278         unsigned char *p;
279         EVP_CIPHER *c;
280         EVP_MD *hash;
281         int num,exp;
282
283         if (s->s3->tmp.key_block_length != 0)
284                 return(1);
285
286         if (!ssl_cipher_get_evp(s->session->cipher,&c,&hash))
287                 {
288                 SSLerr(SSL_F_SSL3_SETUP_KEY_BLOCK,SSL_R_CIPHER_OR_HASH_UNAVAILABLE);
289                 return(0);
290                 }
291
292         s->s3->tmp.new_sym_enc=c;
293         s->s3->tmp.new_hash=hash;
294 #ifdef ZLIB
295         s->s3->tmp.new_compression=COMP_zlib();
296 #endif
297 /*      s->s3->tmp.new_compression=COMP_rle(); */
298 /*      s->session->compress_meth= xxxxx */
299
300         exp=(s->session->cipher->algorithms & SSL_EXPORT)?1:0;
301
302         num=EVP_CIPHER_key_length(c)+EVP_MD_size(hash)+EVP_CIPHER_iv_length(c);
303         num*=2;
304
305         ssl3_cleanup_key_block(s);
306
307         if ((p=(unsigned char *)Malloc(num)) == NULL)
308                 goto err;
309
310         s->s3->tmp.key_block_length=num;
311         s->s3->tmp.key_block=p;
312
313         ssl3_generate_key_block(s,p,num);
314
315         return(1);
316 err:
317         SSLerr(SSL_F_SSL3_SETUP_KEY_BLOCK,ERR_R_MALLOC_FAILURE);
318         return(0);
319         }
320
321 void ssl3_cleanup_key_block(s)
322 SSL *s;
323         {
324         if (s->s3->tmp.key_block != NULL)
325                 {
326                 memset(s->s3->tmp.key_block,0,
327                         s->s3->tmp.key_block_length);
328                 Free(s->s3->tmp.key_block);
329                 s->s3->tmp.key_block=NULL;
330                 }
331         s->s3->tmp.key_block_length=0;
332         }
333
334 int ssl3_enc(s,send)
335 SSL *s;
336 int send;
337         {
338         SSL3_RECORD *rec;
339         EVP_CIPHER_CTX *ds;
340         unsigned long l;
341         int bs,i;
342         EVP_CIPHER *enc;
343
344         if (send)
345                 {
346                 ds=s->enc_write_ctx;
347                 rec= &(s->s3->wrec);
348                 if (s->enc_write_ctx == NULL)
349                         enc=NULL;
350                 else
351                         enc=EVP_CIPHER_CTX_cipher(s->enc_write_ctx);
352                 }
353         else
354                 {
355                 ds=s->enc_read_ctx;
356                 rec= &(s->s3->rrec);
357                 if (s->enc_read_ctx == NULL)
358                         enc=NULL;
359                 else
360                         enc=EVP_CIPHER_CTX_cipher(s->enc_read_ctx);
361                 }
362
363         if ((s->session == NULL) || (ds == NULL) ||
364                 (enc == NULL))
365                 {
366                 memcpy(rec->data,rec->input,rec->length);
367                 rec->input=rec->data;
368                 }
369         else
370                 {
371                 l=rec->length;
372                 bs=EVP_CIPHER_block_size(ds->cipher);
373
374                 /* COMPRESS */
375
376                 /* This should be using (bs-1) and bs instead of 7 and 8 */
377                 if ((bs != 1) && send)
378                         {
379                         i=bs-((int)l%bs);
380
381                         /* we need to add 'i-1' padding bytes */
382                         l+=i;
383                         rec->length+=i;
384                         rec->input[l-1]=(i-1);
385                         }
386
387                 EVP_Cipher(ds,rec->data,rec->input,l);
388
389                 if ((bs != 1) && !send)
390                         {
391                         i=rec->data[l-1]+1;
392                         if (i > bs)
393                                 {
394                                 SSLerr(SSL_F_SSL3_ENC,SSL_R_BLOCK_CIPHER_PAD_IS_WRONG);
395                                 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_DECRYPT_ERROR);
396                                 return(0);
397                                 }
398                         rec->length-=i;
399                         }
400                 }
401         return(1);
402         }
403
404 void ssl3_init_finished_mac(s)
405 SSL *s;
406         {
407         EVP_DigestInit(&(s->s3->finish_dgst1),s->ctx->md5);
408         EVP_DigestInit(&(s->s3->finish_dgst2),s->ctx->sha1);
409         }
410
411 void ssl3_finish_mac(s,buf,len)
412 SSL *s;
413 unsigned char *buf;
414 int len;
415         {
416         EVP_DigestUpdate(&(s->s3->finish_dgst1),buf,len);
417         EVP_DigestUpdate(&(s->s3->finish_dgst2),buf,len);
418         }
419
420 int ssl3_cert_verify_mac(s,ctx,p)
421 SSL *s;
422 EVP_MD_CTX *ctx;
423 unsigned char *p;
424         {
425         return(ssl3_handshake_mac(s,ctx,NULL,0,p));
426         }
427
428 int ssl3_final_finish_mac(s,ctx1,ctx2,sender,len,p)
429 SSL *s;
430 EVP_MD_CTX *ctx1,*ctx2;
431 unsigned char *sender;
432 int len;
433 unsigned char *p;
434         {
435         int ret;
436
437         ret=ssl3_handshake_mac(s,ctx1,sender,len,p);
438         p+=ret;
439         ret+=ssl3_handshake_mac(s,ctx2,sender,len,p);
440         return(ret);
441         }
442
443 static int ssl3_handshake_mac(s,in_ctx,sender,len,p)
444 SSL *s;
445 EVP_MD_CTX *in_ctx;
446 unsigned char *sender;
447 int len;
448 unsigned char *p;
449         {
450         unsigned int ret;
451         int npad,n;
452         unsigned int i;
453         unsigned char md_buf[EVP_MAX_MD_SIZE];
454         EVP_MD_CTX ctx;
455
456         memcpy(&ctx,in_ctx,sizeof(EVP_MD_CTX));
457
458         n=EVP_MD_CTX_size(&ctx);
459         npad=(48/n)*n;
460
461         if (sender != NULL)
462                 EVP_DigestUpdate(&ctx,sender,len);
463         EVP_DigestUpdate(&ctx,s->session->master_key,
464                 s->session->master_key_length);
465         EVP_DigestUpdate(&ctx,ssl3_pad_1,npad);
466         EVP_DigestFinal(&ctx,md_buf,&i);
467
468         EVP_DigestInit(&ctx,EVP_MD_CTX_type(&ctx));
469         EVP_DigestUpdate(&ctx,s->session->master_key,
470                 s->session->master_key_length);
471         EVP_DigestUpdate(&ctx,ssl3_pad_2,npad);
472         EVP_DigestUpdate(&ctx,md_buf,i);
473         EVP_DigestFinal(&ctx,p,&ret);
474
475         memset(&ctx,0,sizeof(EVP_MD_CTX));
476
477         return((int)ret);
478         }
479
480 int ssl3_mac(ssl,md,send)
481 SSL *ssl;
482 unsigned char *md;
483 int send;
484         {
485         SSL3_RECORD *rec;
486         unsigned char *mac_sec,*seq;
487         EVP_MD_CTX md_ctx;
488         EVP_MD *hash;
489         unsigned char *p,rec_char;
490         unsigned int md_size;
491         int npad,i;
492
493         if (send)
494                 {
495                 rec= &(ssl->s3->wrec);
496                 mac_sec= &(ssl->s3->write_mac_secret[0]);
497                 seq= &(ssl->s3->write_sequence[0]);
498                 hash=ssl->write_hash;
499                 }
500         else
501                 {
502                 rec= &(ssl->s3->rrec);
503                 mac_sec= &(ssl->s3->read_mac_secret[0]);
504                 seq= &(ssl->s3->read_sequence[0]);
505                 hash=ssl->read_hash;
506                 }
507
508         md_size=EVP_MD_size(hash);
509         npad=(48/md_size)*md_size;
510
511         /* Chop the digest off the end :-) */
512
513         EVP_DigestInit(  &md_ctx,hash);
514         EVP_DigestUpdate(&md_ctx,mac_sec,md_size);
515         EVP_DigestUpdate(&md_ctx,ssl3_pad_1,npad);
516         EVP_DigestUpdate(&md_ctx,seq,8);
517         rec_char=rec->type;
518         EVP_DigestUpdate(&md_ctx,&rec_char,1);
519         p=md;
520         s2n(rec->length,p);
521         EVP_DigestUpdate(&md_ctx,md,2);
522         EVP_DigestUpdate(&md_ctx,rec->input,rec->length);
523         EVP_DigestFinal( &md_ctx,md,NULL);
524
525         EVP_DigestInit(  &md_ctx,hash);
526         EVP_DigestUpdate(&md_ctx,mac_sec,md_size);
527         EVP_DigestUpdate(&md_ctx,ssl3_pad_2,npad);
528         EVP_DigestUpdate(&md_ctx,md,md_size);
529         EVP_DigestFinal( &md_ctx,md,&md_size);
530
531         for (i=7; i>=0; i--)
532                 if (++seq[i]) break; 
533
534         return(md_size);
535         }
536
537 int ssl3_generate_master_secret(s,out,p,len)
538 SSL *s;
539 unsigned char *out;
540 unsigned char *p;
541 int len;
542         {
543         static unsigned char *salt[3]={
544                 (unsigned char *)"A",
545                 (unsigned char *)"BB",
546                 (unsigned char *)"CCC",
547                 };
548         unsigned char buf[EVP_MAX_MD_SIZE];
549         EVP_MD_CTX ctx;
550         int i,ret=0;
551         unsigned int n;
552
553         for (i=0; i<3; i++)
554                 {
555                 EVP_DigestInit(&ctx,s->ctx->sha1);
556                 EVP_DigestUpdate(&ctx,salt[i],strlen((char *)salt[i]));
557                 EVP_DigestUpdate(&ctx,p,len);
558                 EVP_DigestUpdate(&ctx,&(s->s3->client_random[0]),
559                         SSL3_RANDOM_SIZE);
560                 EVP_DigestUpdate(&ctx,&(s->s3->server_random[0]),
561                         SSL3_RANDOM_SIZE);
562                 EVP_DigestFinal(&ctx,buf,&n);
563
564                 EVP_DigestInit(&ctx,s->ctx->md5);
565                 EVP_DigestUpdate(&ctx,p,len);
566                 EVP_DigestUpdate(&ctx,buf,n);
567                 EVP_DigestFinal(&ctx,out,&n);
568                 out+=n;
569                 ret+=n;
570                 }
571         return(ret);
572         }
573
574 int ssl3_alert_code(code)
575 int code;
576         {
577         switch (code)
578                 {
579         case SSL_AD_CLOSE_NOTIFY:       return(SSL3_AD_CLOSE_NOTIFY);
580         case SSL_AD_UNEXPECTED_MESSAGE: return(SSL3_AD_UNEXPECTED_MESSAGE);
581         case SSL_AD_BAD_RECORD_MAC:     return(SSL3_AD_BAD_RECORD_MAC);
582         case SSL_AD_DECRYPTION_FAILED:  return(SSL3_AD_BAD_RECORD_MAC);
583         case SSL_AD_RECORD_OVERFLOW:    return(SSL3_AD_BAD_RECORD_MAC);
584         case SSL_AD_DECOMPRESSION_FAILURE:return(SSL3_AD_DECOMPRESSION_FAILURE);
585         case SSL_AD_HANDSHAKE_FAILURE:  return(SSL3_AD_HANDSHAKE_FAILURE);
586         case SSL_AD_NO_CERTIFICATE:     return(SSL3_AD_NO_CERTIFICATE);
587         case SSL_AD_BAD_CERTIFICATE:    return(SSL3_AD_BAD_CERTIFICATE);
588         case SSL_AD_UNSUPPORTED_CERTIFICATE:return(SSL3_AD_UNSUPPORTED_CERTIFICATE);
589         case SSL_AD_CERTIFICATE_REVOKED:return(SSL3_AD_CERTIFICATE_REVOKED);
590         case SSL_AD_CERTIFICATE_EXPIRED:return(SSL3_AD_CERTIFICATE_EXPIRED);
591         case SSL_AD_CERTIFICATE_UNKNOWN:return(SSL3_AD_CERTIFICATE_UNKNOWN);
592         case SSL_AD_ILLEGAL_PARAMETER:  return(SSL3_AD_ILLEGAL_PARAMETER);
593         case SSL_AD_UNKNOWN_CA:         return(SSL3_AD_BAD_CERTIFICATE);
594         case SSL_AD_ACCESS_DENIED:      return(SSL3_AD_HANDSHAKE_FAILURE);
595         case SSL_AD_DECODE_ERROR:       return(SSL3_AD_HANDSHAKE_FAILURE);
596         case SSL_AD_DECRYPT_ERROR:      return(SSL3_AD_HANDSHAKE_FAILURE);
597         case SSL_AD_EXPORT_RESTRICION:  return(SSL3_AD_HANDSHAKE_FAILURE);
598         case SSL_AD_PROTOCOL_VERSION:   return(SSL3_AD_HANDSHAKE_FAILURE);
599         case SSL_AD_INSUFFICIENT_SECURITY:return(SSL3_AD_HANDSHAKE_FAILURE);
600         case SSL_AD_INTERNAL_ERROR:     return(SSL3_AD_HANDSHAKE_FAILURE);
601         case SSL_AD_USER_CANCLED:       return(SSL3_AD_HANDSHAKE_FAILURE);
602         case SSL_AD_NO_RENEGOTIATION:   return(-1); /* Don't send it :-) */
603         default:                        return(-1);
604                 }
605         }
606