Update fipsld to use external signature for fips_premain.c . Update build system
[openssl.git] / ssl / ssl_ciph.c
1 /* ssl/ssl_ciph.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  * Copyright (c) 1998-2006 The OpenSSL Project.  All rights reserved.
60  *
61  * Redistribution and use in source and binary forms, with or without
62  * modification, are permitted provided that the following conditions
63  * are met:
64  *
65  * 1. Redistributions of source code must retain the above copyright
66  *    notice, this list of conditions and the following disclaimer. 
67  *
68  * 2. Redistributions in binary form must reproduce the above copyright
69  *    notice, this list of conditions and the following disclaimer in
70  *    the documentation and/or other materials provided with the
71  *    distribution.
72  *
73  * 3. All advertising materials mentioning features or use of this
74  *    software must display the following acknowledgment:
75  *    "This product includes software developed by the OpenSSL Project
76  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
77  *
78  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
79  *    endorse or promote products derived from this software without
80  *    prior written permission. For written permission, please contact
81  *    openssl-core@openssl.org.
82  *
83  * 5. Products derived from this software may not be called "OpenSSL"
84  *    nor may "OpenSSL" appear in their names without prior written
85  *    permission of the OpenSSL Project.
86  *
87  * 6. Redistributions of any form whatsoever must retain the following
88  *    acknowledgment:
89  *    "This product includes software developed by the OpenSSL Project
90  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
91  *
92  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
93  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
94  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
95  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
96  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
97  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
98  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
99  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
100  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
101  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
102  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
103  * OF THE POSSIBILITY OF SUCH DAMAGE.
104  * ====================================================================
105  *
106  * This product includes cryptographic software written by Eric Young
107  * (eay@cryptsoft.com).  This product includes software written by Tim
108  * Hudson (tjh@cryptsoft.com).
109  *
110  */
111 /* ====================================================================
112  * Copyright (c) 1998-2006 The OpenSSL Project.  All rights reserved.
113  *
114  * Redistribution and use in source and binary forms, with or without
115  * modification, are permitted provided that the following conditions
116  * are met:
117  *
118  * 1. Redistributions of source code must retain the above copyright
119  *    notice, this list of conditions and the following disclaimer. 
120  *
121  * 2. Redistributions in binary form must reproduce the above copyright
122  *    notice, this list of conditions and the following disclaimer in
123  *    the documentation and/or other materials provided with the
124  *    distribution.
125  *
126  * 3. All advertising materials mentioning features or use of this
127  *    software must display the following acknowledgment:
128  *    "This product includes software developed by the OpenSSL Project
129  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
130  *
131  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
132  *    endorse or promote products derived from this software without
133  *    prior written permission. For written permission, please contact
134  *    openssl-core@openssl.org.
135  *
136  * 5. Products derived from this software may not be called "OpenSSL"
137  *    nor may "OpenSSL" appear in their names without prior written
138  *    permission of the OpenSSL Project.
139  *
140  * 6. Redistributions of any form whatsoever must retain the following
141  *    acknowledgment:
142  *    "This product includes software developed by the OpenSSL Project
143  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
144  *
145  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
146  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
147  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
148  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
149  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
150  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
151  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
152  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
153  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
154  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
155  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
156  * OF THE POSSIBILITY OF SUCH DAMAGE.
157  * ====================================================================
158  *
159  * This product includes cryptographic software written by Eric Young
160  * (eay@cryptsoft.com).  This product includes software written by Tim
161  * Hudson (tjh@cryptsoft.com).
162  *
163  */
164 /* ====================================================================
165  * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
166  * ECC cipher suite support in OpenSSL originally developed by 
167  * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
168  */
169 #include <stdio.h>
170 #include <openssl/objects.h>
171 #include <openssl/comp.h>
172 #include <openssl/fips.h>
173 #include "ssl_locl.h"
174
175 #define SSL_ENC_DES_IDX         0
176 #define SSL_ENC_3DES_IDX        1
177 #define SSL_ENC_RC4_IDX         2
178 #define SSL_ENC_RC2_IDX         3
179 #define SSL_ENC_IDEA_IDX        4
180 #define SSL_ENC_eFZA_IDX        5
181 #define SSL_ENC_NULL_IDX        6
182 #define SSL_ENC_AES128_IDX      7
183 #define SSL_ENC_AES256_IDX      8
184 #define SSL_ENC_NUM_IDX         9
185
186 static const EVP_CIPHER *ssl_cipher_methods[SSL_ENC_NUM_IDX]={
187         NULL,NULL,NULL,NULL,NULL,NULL,
188         };
189
190 static STACK_OF(SSL_COMP) *ssl_comp_methods=NULL;
191
192 #define SSL_MD_MD5_IDX  0
193 #define SSL_MD_SHA1_IDX 1
194 #define SSL_MD_NUM_IDX  2
195 static const EVP_MD *ssl_digest_methods[SSL_MD_NUM_IDX]={
196         NULL,NULL,
197         };
198
199 #define CIPHER_ADD      1
200 #define CIPHER_KILL     2
201 #define CIPHER_DEL      3
202 #define CIPHER_ORD      4
203 #define CIPHER_SPECIAL  5
204
205 typedef struct cipher_order_st
206         {
207         SSL_CIPHER *cipher;
208         int active;
209         int dead;
210         struct cipher_order_st *next,*prev;
211         } CIPHER_ORDER;
212
213 static const SSL_CIPHER cipher_aliases[]={
214         /* Don't include eNULL unless specifically enabled. */
215         {0,SSL_TXT_ALL, 0,SSL_ALL & ~SSL_eNULL, SSL_ALL ,0,0,0,SSL_ALL,SSL_ALL}, /* must be first */
216         {0,SSL_TXT_CMPALL,0,SSL_eNULL,0,0,0,0,SSL_ENC_MASK,0},  /* COMPLEMENT OF ALL */
217         {0,SSL_TXT_CMPDEF,0,SSL_ADH, 0,0,0,0,SSL_AUTH_MASK,0},
218         {0,SSL_TXT_kKRB5,0,SSL_kKRB5,0,0,0,0,SSL_MKEY_MASK,0},  /* VRS Kerberos5 */
219         {0,SSL_TXT_kRSA,0,SSL_kRSA,  0,0,0,0,SSL_MKEY_MASK,0},
220         {0,SSL_TXT_kDHr,0,SSL_kDHr,  0,0,0,0,SSL_MKEY_MASK,0},
221         {0,SSL_TXT_kDHd,0,SSL_kDHd,  0,0,0,0,SSL_MKEY_MASK,0},
222         {0,SSL_TXT_kEDH,0,SSL_kEDH,  0,0,0,0,SSL_MKEY_MASK,0},
223         {0,SSL_TXT_kFZA,0,SSL_kFZA,  0,0,0,0,SSL_MKEY_MASK,0},
224         {0,SSL_TXT_DH,  0,SSL_DH,    0,0,0,0,SSL_MKEY_MASK,0},
225         {0,SSL_TXT_EDH, 0,SSL_EDH,   0,0,0,0,SSL_MKEY_MASK|SSL_AUTH_MASK,0},
226
227         {0,SSL_TXT_aKRB5,0,SSL_aKRB5,0,0,0,0,SSL_AUTH_MASK,0},  /* VRS Kerberos5 */
228         {0,SSL_TXT_aRSA,0,SSL_aRSA,  0,0,0,0,SSL_AUTH_MASK,0},
229         {0,SSL_TXT_aDSS,0,SSL_aDSS,  0,0,0,0,SSL_AUTH_MASK,0},
230         {0,SSL_TXT_aFZA,0,SSL_aFZA,  0,0,0,0,SSL_AUTH_MASK,0},
231         {0,SSL_TXT_aNULL,0,SSL_aNULL,0,0,0,0,SSL_AUTH_MASK,0},
232         {0,SSL_TXT_aDH, 0,SSL_aDH,   0,0,0,0,SSL_AUTH_MASK,0},
233         {0,SSL_TXT_DSS, 0,SSL_DSS,   0,0,0,0,SSL_AUTH_MASK,0},
234
235         {0,SSL_TXT_DES, 0,SSL_DES,   0,0,0,0,SSL_ENC_MASK,0},
236         {0,SSL_TXT_3DES,0,SSL_3DES,  0,0,0,0,SSL_ENC_MASK,0},
237         {0,SSL_TXT_RC4, 0,SSL_RC4,   0,0,0,0,SSL_ENC_MASK,0},
238         {0,SSL_TXT_RC2, 0,SSL_RC2,   0,0,0,0,SSL_ENC_MASK,0},
239 #ifndef OPENSSL_NO_IDEA
240         {0,SSL_TXT_IDEA,0,SSL_IDEA,  0,0,0,0,SSL_ENC_MASK,0},
241 #endif
242         {0,SSL_TXT_eNULL,0,SSL_eNULL,0,0,0,0,SSL_ENC_MASK,0},
243         {0,SSL_TXT_eFZA,0,SSL_eFZA,  0,0,0,0,SSL_ENC_MASK,0},
244         {0,SSL_TXT_AES, 0,SSL_AES,   0,0,0,0,SSL_ENC_MASK,0},
245
246         {0,SSL_TXT_MD5, 0,SSL_MD5,   0,0,0,0,SSL_MAC_MASK,0},
247         {0,SSL_TXT_SHA1,0,SSL_SHA1,  0,0,0,0,SSL_MAC_MASK,0},
248         {0,SSL_TXT_SHA, 0,SSL_SHA,   0,0,0,0,SSL_MAC_MASK,0},
249
250         {0,SSL_TXT_NULL,0,SSL_NULL,  0,0,0,0,SSL_ENC_MASK,0},
251         {0,SSL_TXT_KRB5,0,SSL_KRB5,  0,0,0,0,SSL_AUTH_MASK|SSL_MKEY_MASK,0},
252         {0,SSL_TXT_RSA, 0,SSL_RSA,   0,0,0,0,SSL_AUTH_MASK|SSL_MKEY_MASK,0},
253         {0,SSL_TXT_ADH, 0,SSL_ADH,   0,0,0,0,SSL_AUTH_MASK|SSL_MKEY_MASK,0},
254         {0,SSL_TXT_FZA, 0,SSL_FZA,   0,0,0,0,SSL_AUTH_MASK|SSL_MKEY_MASK|SSL_ENC_MASK,0},
255
256         {0,SSL_TXT_SSLV2, 0,SSL_SSLV2, 0,0,0,0,SSL_SSL_MASK,0},
257         {0,SSL_TXT_SSLV3, 0,SSL_SSLV3, 0,0,0,0,SSL_SSL_MASK,0},
258         {0,SSL_TXT_TLSV1, 0,SSL_TLSV1, 0,0,0,0,SSL_SSL_MASK,0},
259
260         {0,SSL_TXT_EXP   ,0, 0,SSL_EXPORT, 0,0,0,0,SSL_EXP_MASK},
261         {0,SSL_TXT_EXPORT,0, 0,SSL_EXPORT, 0,0,0,0,SSL_EXP_MASK},
262         {0,SSL_TXT_EXP40, 0, 0, SSL_EXP40, 0,0,0,0,SSL_STRONG_MASK},
263         {0,SSL_TXT_EXP56, 0, 0, SSL_EXP56, 0,0,0,0,SSL_STRONG_MASK},
264         {0,SSL_TXT_LOW,   0, 0,   SSL_LOW, 0,0,0,0,SSL_STRONG_MASK},
265         {0,SSL_TXT_MEDIUM,0, 0,SSL_MEDIUM, 0,0,0,0,SSL_STRONG_MASK},
266         {0,SSL_TXT_HIGH,  0, 0,  SSL_HIGH, 0,0,0,0,SSL_STRONG_MASK},
267         {0,SSL_TXT_FIPS,  0, 0,  SSL_FIPS, 0,0,0,0,SSL_FIPS|SSL_STRONG_NONE},
268         };
269
270 static int init_ciphers=1;
271
272 static void load_ciphers(void)
273         {
274         ssl_cipher_methods[SSL_ENC_DES_IDX]= 
275                 EVP_get_cipherbyname(SN_des_cbc);
276         ssl_cipher_methods[SSL_ENC_3DES_IDX]=
277                 EVP_get_cipherbyname(SN_des_ede3_cbc);
278         ssl_cipher_methods[SSL_ENC_RC4_IDX]=
279                 EVP_get_cipherbyname(SN_rc4);
280         ssl_cipher_methods[SSL_ENC_RC2_IDX]= 
281                 EVP_get_cipherbyname(SN_rc2_cbc);
282 #ifndef OPENSSL_NO_IDEA
283         ssl_cipher_methods[SSL_ENC_IDEA_IDX]= 
284                 EVP_get_cipherbyname(SN_idea_cbc);
285 #else
286         ssl_cipher_methods[SSL_ENC_IDEA_IDX]= NULL;
287 #endif
288         ssl_cipher_methods[SSL_ENC_AES128_IDX]=
289           EVP_get_cipherbyname(SN_aes_128_cbc);
290         ssl_cipher_methods[SSL_ENC_AES256_IDX]=
291           EVP_get_cipherbyname(SN_aes_256_cbc);
292
293         ssl_digest_methods[SSL_MD_MD5_IDX]=
294                 EVP_get_digestbyname(SN_md5);
295         ssl_digest_methods[SSL_MD_SHA1_IDX]=
296                 EVP_get_digestbyname(SN_sha1);
297         init_ciphers=0;
298         }
299
300 int ssl_cipher_get_evp(const SSL_SESSION *s, const EVP_CIPHER **enc,
301              const EVP_MD **md, SSL_COMP **comp)
302         {
303         int i;
304         SSL_CIPHER *c;
305
306         c=s->cipher;
307         if (c == NULL) return(0);
308         if (comp != NULL)
309                 {
310                 SSL_COMP ctmp;
311
312                 if (s->compress_meth == 0)
313                         *comp=NULL;
314                 else if (ssl_comp_methods == NULL)
315                         {
316                         /* bad */
317                         *comp=NULL;
318                         }
319                 else
320                         {
321
322                         ctmp.id=s->compress_meth;
323                         i=sk_SSL_COMP_find(ssl_comp_methods,&ctmp);
324                         if (i >= 0)
325                                 *comp=sk_SSL_COMP_value(ssl_comp_methods,i);
326                         else
327                                 *comp=NULL;
328                         }
329                 }
330
331         if ((enc == NULL) || (md == NULL)) return(0);
332
333         switch (c->algorithms & SSL_ENC_MASK)
334                 {
335         case SSL_DES:
336                 i=SSL_ENC_DES_IDX;
337                 break;
338         case SSL_3DES:
339                 i=SSL_ENC_3DES_IDX;
340                 break;
341         case SSL_RC4:
342                 i=SSL_ENC_RC4_IDX;
343                 break;
344         case SSL_RC2:
345                 i=SSL_ENC_RC2_IDX;
346                 break;
347         case SSL_IDEA:
348                 i=SSL_ENC_IDEA_IDX;
349                 break;
350         case SSL_eNULL:
351                 i=SSL_ENC_NULL_IDX;
352                 break;
353         case SSL_AES:
354                 switch(c->alg_bits)
355                         {
356                 case 128: i=SSL_ENC_AES128_IDX; break;
357                 case 256: i=SSL_ENC_AES256_IDX; break;
358                 default: i=-1; break;
359                         }
360                 break;
361         default:
362                 i= -1;
363                 break;
364                 }
365
366         if ((i < 0) || (i > SSL_ENC_NUM_IDX))
367                 *enc=NULL;
368         else
369                 {
370                 if (i == SSL_ENC_NULL_IDX)
371                         *enc=EVP_enc_null();
372                 else
373                         *enc=ssl_cipher_methods[i];
374                 }
375
376         switch (c->algorithms & SSL_MAC_MASK)
377                 {
378         case SSL_MD5:
379                 i=SSL_MD_MD5_IDX;
380                 break;
381         case SSL_SHA1:
382                 i=SSL_MD_SHA1_IDX;
383                 break;
384         default:
385                 i= -1;
386                 break;
387                 }
388         if ((i < 0) || (i > SSL_MD_NUM_IDX))
389                 *md=NULL;
390         else
391                 *md=ssl_digest_methods[i];
392
393         if ((*enc != NULL) && (*md != NULL))
394                 return(1);
395         else
396                 return(0);
397         }
398
399 #define ITEM_SEP(a) \
400         (((a) == ':') || ((a) == ' ') || ((a) == ';') || ((a) == ','))
401
402 static void ll_append_tail(CIPHER_ORDER **head, CIPHER_ORDER *curr,
403              CIPHER_ORDER **tail)
404         {
405         if (curr == *tail) return;
406         if (curr == *head)
407                 *head=curr->next;
408         if (curr->prev != NULL)
409                 curr->prev->next=curr->next;
410         if (curr->next != NULL) /* should always be true */
411                 curr->next->prev=curr->prev;
412         (*tail)->next=curr;
413         curr->prev= *tail;
414         curr->next=NULL;
415         *tail=curr;
416         }
417
418 static unsigned long ssl_cipher_get_disabled(void)
419         {
420         unsigned long mask;
421
422         mask = SSL_kFZA;
423 #ifdef OPENSSL_NO_RSA
424         mask |= SSL_aRSA|SSL_kRSA;
425 #endif
426 #ifdef OPENSSL_NO_DSA
427         mask |= SSL_aDSS;
428 #endif
429 #ifdef OPENSSL_NO_DH
430         mask |= SSL_kDHr|SSL_kDHd|SSL_kEDH|SSL_aDH;
431 #endif
432 #ifdef OPENSSL_NO_KRB5
433         mask |= SSL_kKRB5|SSL_aKRB5;
434 #endif
435
436 #ifdef SSL_FORBID_ENULL
437         mask |= SSL_eNULL;
438 #endif
439
440         mask |= (ssl_cipher_methods[SSL_ENC_DES_IDX ] == NULL) ? SSL_DES :0;
441         mask |= (ssl_cipher_methods[SSL_ENC_3DES_IDX] == NULL) ? SSL_3DES:0;
442         mask |= (ssl_cipher_methods[SSL_ENC_RC4_IDX ] == NULL) ? SSL_RC4 :0;
443         mask |= (ssl_cipher_methods[SSL_ENC_RC2_IDX ] == NULL) ? SSL_RC2 :0;
444         mask |= (ssl_cipher_methods[SSL_ENC_IDEA_IDX] == NULL) ? SSL_IDEA:0;
445         mask |= (ssl_cipher_methods[SSL_ENC_eFZA_IDX] == NULL) ? SSL_eFZA:0;
446         mask |= (ssl_cipher_methods[SSL_ENC_AES128_IDX] == NULL) ? SSL_AES:0;
447
448         mask |= (ssl_digest_methods[SSL_MD_MD5_IDX ] == NULL) ? SSL_MD5 :0;
449         mask |= (ssl_digest_methods[SSL_MD_SHA1_IDX] == NULL) ? SSL_SHA1:0;
450
451         return(mask);
452         }
453
454 static void ssl_cipher_collect_ciphers(const SSL_METHOD *ssl_method,
455                 int num_of_ciphers, unsigned long mask, CIPHER_ORDER *co_list,
456                 CIPHER_ORDER **head_p, CIPHER_ORDER **tail_p)
457         {
458         int i, co_list_num;
459         SSL_CIPHER *c;
460
461         /*
462          * We have num_of_ciphers descriptions compiled in, depending on the
463          * method selected (SSLv2 and/or SSLv3, TLSv1 etc).
464          * These will later be sorted in a linked list with at most num
465          * entries.
466          */
467
468         /* Get the initial list of ciphers */
469         co_list_num = 0;        /* actual count of ciphers */
470         for (i = 0; i < num_of_ciphers; i++)
471                 {
472                 c = ssl_method->get_cipher(i);
473                 /* drop those that use any of that is not available */
474 #ifdef OPENSSL_FIPS
475                 if ((c != NULL) && c->valid && !(c->algorithms & mask)
476                         && (!FIPS_mode() || (c->algo_strength & SSL_FIPS)))
477 #else
478                 if ((c != NULL) && c->valid && !(c->algorithms & mask))
479 #endif
480                         {
481                         co_list[co_list_num].cipher = c;
482                         co_list[co_list_num].next = NULL;
483                         co_list[co_list_num].prev = NULL;
484                         co_list[co_list_num].active = 0;
485                         co_list_num++;
486 #ifdef KSSL_DEBUG
487                         printf("\t%d: %s %lx %lx\n",i,c->name,c->id,c->algorithms);
488 #endif  /* KSSL_DEBUG */
489                         /*
490                         if (!sk_push(ca_list,(char *)c)) goto err;
491                         */
492                         }
493                 }
494
495         /*
496          * Prepare linked list from list entries
497          */     
498         for (i = 1; i < co_list_num - 1; i++)
499                 {
500                 co_list[i].prev = &(co_list[i-1]);
501                 co_list[i].next = &(co_list[i+1]);
502                 }
503         if (co_list_num > 0)
504                 {
505                 (*head_p) = &(co_list[0]);
506                 (*head_p)->prev = NULL;
507                 (*head_p)->next = &(co_list[1]);
508                 (*tail_p) = &(co_list[co_list_num - 1]);
509                 (*tail_p)->prev = &(co_list[co_list_num - 2]);
510                 (*tail_p)->next = NULL;
511                 }
512         }
513
514 static void ssl_cipher_collect_aliases(SSL_CIPHER **ca_list,
515                         int num_of_group_aliases, unsigned long mask,
516                         CIPHER_ORDER *head)
517         {
518         CIPHER_ORDER *ciph_curr;
519         SSL_CIPHER **ca_curr;
520         int i;
521
522         /*
523          * First, add the real ciphers as already collected
524          */
525         ciph_curr = head;
526         ca_curr = ca_list;
527         while (ciph_curr != NULL)
528                 {
529                 *ca_curr = ciph_curr->cipher;
530                 ca_curr++;
531                 ciph_curr = ciph_curr->next;
532                 }
533
534         /*
535          * Now we add the available ones from the cipher_aliases[] table.
536          * They represent either an algorithm, that must be fully
537          * supported (not match any bit in mask) or represent a cipher
538          * strength value (will be added in any case because algorithms=0).
539          */
540         for (i = 0; i < num_of_group_aliases; i++)
541                 {
542                 if ((i == 0) ||         /* always fetch "ALL" */
543                     !(cipher_aliases[i].algorithms & mask))
544                         {
545                         *ca_curr = (SSL_CIPHER *)(cipher_aliases + i);
546                         ca_curr++;
547                         }
548                 }
549
550         *ca_curr = NULL;        /* end of list */
551         }
552
553 static void ssl_cipher_apply_rule(unsigned long cipher_id, unsigned long ssl_version,
554                 unsigned long algorithms, unsigned long mask,
555                 unsigned long algo_strength, unsigned long mask_strength,
556                 int rule, int strength_bits, CIPHER_ORDER *co_list,
557                 CIPHER_ORDER **head_p, CIPHER_ORDER **tail_p)
558         {
559         CIPHER_ORDER *head, *tail, *curr, *curr2, *tail2;
560         SSL_CIPHER *cp;
561         unsigned long ma, ma_s;
562
563 #ifdef CIPHER_DEBUG
564         printf("Applying rule %d with %08lx %08lx %08lx %08lx (%d)\n",
565                 rule, algorithms, mask, algo_strength, mask_strength,
566                 strength_bits);
567 #endif
568
569         curr = head = *head_p;
570         curr2 = head;
571         tail2 = tail = *tail_p;
572         for (;;)
573                 {
574                 if ((curr == NULL) || (curr == tail2)) break;
575                 curr = curr2;
576                 curr2 = curr->next;
577
578                 cp = curr->cipher;
579
580                 /* If explicit cipher suite, match only that one for its own protocol version.
581                  * Usual selection criteria will be used for similar ciphersuites from other version! */
582
583                 if (cipher_id && (cp->algorithms & SSL_SSL_MASK) == ssl_version)
584                         {
585                         if (cp->id != cipher_id)
586                                 continue;
587                         }
588
589                 /*
590                  * Selection criteria is either the number of strength_bits
591                  * or the algorithm used.
592                  */
593                 else if (strength_bits == -1)
594                         {
595                         ma = mask & cp->algorithms;
596                         ma_s = mask_strength & cp->algo_strength;
597
598 #ifdef CIPHER_DEBUG
599                         printf("\nName: %s:\nAlgo = %08lx Algo_strength = %08lx\nMask = %08lx Mask_strength %08lx\n", cp->name, cp->algorithms, cp->algo_strength, mask, mask_strength);
600                         printf("ma = %08lx ma_s %08lx, ma&algo=%08lx, ma_s&algos=%08lx\n", ma, ma_s, ma&algorithms, ma_s&algo_strength);
601 #endif
602                         /*
603                          * Select: if none of the mask bit was met from the
604                          * cipher or not all of the bits were met, the
605                          * selection does not apply.
606                          */
607                         if (((ma == 0) && (ma_s == 0)) ||
608                             ((ma & algorithms) != ma) ||
609                             ((ma_s & algo_strength) != ma_s))
610                                 continue; /* does not apply */
611                         }
612                 else if (strength_bits != cp->strength_bits)
613                         continue;       /* does not apply */
614
615 #ifdef CIPHER_DEBUG
616                 printf("Action = %d\n", rule);
617 #endif
618
619                 /* add the cipher if it has not been added yet. */
620                 if (rule == CIPHER_ADD)
621                         {
622                         if (!curr->active)
623                                 {
624                                 ll_append_tail(&head, curr, &tail);
625                                 curr->active = 1;
626                                 }
627                         }
628                 /* Move the added cipher to this location */
629                 else if (rule == CIPHER_ORD)
630                         {
631                         if (curr->active)
632                                 {
633                                 ll_append_tail(&head, curr, &tail);
634                                 }
635                         }
636                 else if (rule == CIPHER_DEL)
637                         curr->active = 0;
638                 else if (rule == CIPHER_KILL)
639                         {
640                         if (head == curr)
641                                 head = curr->next;
642                         else
643                                 curr->prev->next = curr->next;
644                         if (tail == curr)
645                                 tail = curr->prev;
646                         curr->active = 0;
647                         if (curr->next != NULL)
648                                 curr->next->prev = curr->prev;
649                         if (curr->prev != NULL)
650                                 curr->prev->next = curr->next;
651                         curr->next = NULL;
652                         curr->prev = NULL;
653                         }
654                 }
655
656         *head_p = head;
657         *tail_p = tail;
658         }
659
660 static int ssl_cipher_strength_sort(CIPHER_ORDER *co_list,
661                                     CIPHER_ORDER **head_p,
662                                     CIPHER_ORDER **tail_p)
663         {
664         int max_strength_bits, i, *number_uses;
665         CIPHER_ORDER *curr;
666
667         /*
668          * This routine sorts the ciphers with descending strength. The sorting
669          * must keep the pre-sorted sequence, so we apply the normal sorting
670          * routine as '+' movement to the end of the list.
671          */
672         max_strength_bits = 0;
673         curr = *head_p;
674         while (curr != NULL)
675                 {
676                 if (curr->active &&
677                     (curr->cipher->strength_bits > max_strength_bits))
678                     max_strength_bits = curr->cipher->strength_bits;
679                 curr = curr->next;
680                 }
681
682         number_uses = OPENSSL_malloc((max_strength_bits + 1) * sizeof(int));
683         if (!number_uses)
684         {
685                 SSLerr(SSL_F_SSL_CIPHER_STRENGTH_SORT,ERR_R_MALLOC_FAILURE);
686                 return(0);
687         }
688         memset(number_uses, 0, (max_strength_bits + 1) * sizeof(int));
689
690         /*
691          * Now find the strength_bits values actually used
692          */
693         curr = *head_p;
694         while (curr != NULL)
695                 {
696                 if (curr->active)
697                         number_uses[curr->cipher->strength_bits]++;
698                 curr = curr->next;
699                 }
700         /*
701          * Go through the list of used strength_bits values in descending
702          * order.
703          */
704         for (i = max_strength_bits; i >= 0; i--)
705                 if (number_uses[i] > 0)
706                         ssl_cipher_apply_rule(0, 0, 0, 0, 0, 0, CIPHER_ORD, i,
707                                         co_list, head_p, tail_p);
708
709         OPENSSL_free(number_uses);
710         return(1);
711         }
712
713 static int ssl_cipher_process_rulestr(const char *rule_str,
714                 CIPHER_ORDER *co_list, CIPHER_ORDER **head_p,
715                 CIPHER_ORDER **tail_p, SSL_CIPHER **ca_list)
716         {
717         unsigned long algorithms, mask, algo_strength, mask_strength;
718         const char *l, *start, *buf;
719         int j, multi, found, rule, retval, ok, buflen;
720         unsigned long cipher_id = 0, ssl_version = 0;
721         char ch;
722
723         retval = 1;
724         l = rule_str;
725         for (;;)
726                 {
727                 ch = *l;
728
729                 if (ch == '\0')
730                         break;          /* done */
731                 if (ch == '-')
732                         { rule = CIPHER_DEL; l++; }
733                 else if (ch == '+')
734                         { rule = CIPHER_ORD; l++; }
735                 else if (ch == '!')
736                         { rule = CIPHER_KILL; l++; }
737                 else if (ch == '@')
738                         { rule = CIPHER_SPECIAL; l++; }
739                 else
740                         { rule = CIPHER_ADD; }
741
742                 if (ITEM_SEP(ch))
743                         {
744                         l++;
745                         continue;
746                         }
747
748                 algorithms = mask = algo_strength = mask_strength = 0;
749
750                 start=l;
751                 for (;;)
752                         {
753                         ch = *l;
754                         buf = l;
755                         buflen = 0;
756 #ifndef CHARSET_EBCDIC
757                         while ( ((ch >= 'A') && (ch <= 'Z')) ||
758                                 ((ch >= '0') && (ch <= '9')) ||
759                                 ((ch >= 'a') && (ch <= 'z')) ||
760                                  (ch == '-'))
761 #else
762                         while ( isalnum(ch) || (ch == '-'))
763 #endif
764                                  {
765                                  ch = *(++l);
766                                  buflen++;
767                                  }
768
769                         if (buflen == 0)
770                                 {
771                                 /*
772                                  * We hit something we cannot deal with,
773                                  * it is no command or separator nor
774                                  * alphanumeric, so we call this an error.
775                                  */
776                                 SSLerr(SSL_F_SSL_CIPHER_PROCESS_RULESTR,
777                                        SSL_R_INVALID_COMMAND);
778                                 retval = found = 0;
779                                 l++;
780                                 break;
781                                 }
782
783                         if (rule == CIPHER_SPECIAL)
784                                 {
785                                 found = 0; /* unused -- avoid compiler warning */
786                                 break;  /* special treatment */
787                                 }
788
789                         /* check for multi-part specification */
790                         if (ch == '+')
791                                 {
792                                 multi=1;
793                                 l++;
794                                 }
795                         else
796                                 multi=0;
797
798                         /*
799                          * Now search for the cipher alias in the ca_list. Be careful
800                          * with the strncmp, because the "buflen" limitation
801                          * will make the rule "ADH:SOME" and the cipher
802                          * "ADH-MY-CIPHER" look like a match for buflen=3.
803                          * So additionally check whether the cipher name found
804                          * has the correct length. We can save a strlen() call:
805                          * just checking for the '\0' at the right place is
806                          * sufficient, we have to strncmp() anyway. (We cannot
807                          * use strcmp(), because buf is not '\0' terminated.)
808                          */
809                          j = found = 0;
810                          cipher_id = 0;
811                          ssl_version = 0;
812                          while (ca_list[j])
813                                 {
814                                 if (!strncmp(buf, ca_list[j]->name, buflen) &&
815                                     (ca_list[j]->name[buflen] == '\0'))
816                                         {
817                                         found = 1;
818                                         break;
819                                         }
820                                 else
821                                         j++;
822                                 }
823                         if (!found)
824                                 break;  /* ignore this entry */
825
826                         /* New algorithms:
827                          *  1 - any old restrictions apply outside new mask
828                          *  2 - any new restrictions apply outside old mask
829                          *  3 - enforce old & new where masks intersect
830                          */
831                         algorithms = (algorithms & ~ca_list[j]->mask) |         /* 1 */
832                                      (ca_list[j]->algorithms & ~mask) |         /* 2 */
833                                      (algorithms & ca_list[j]->algorithms);     /* 3 */
834                         mask |= ca_list[j]->mask;
835                         algo_strength = (algo_strength & ~ca_list[j]->mask_strength) |
836                                         (ca_list[j]->algo_strength & ~mask_strength) |
837                                         (algo_strength & ca_list[j]->algo_strength);
838                         mask_strength |= ca_list[j]->mask_strength;
839
840                         /* explicit ciphersuite found */
841                         if (ca_list[j]->valid)
842                                 {
843                                 cipher_id = ca_list[j]->id;
844                                 ssl_version = ca_list[j]->algorithms & SSL_SSL_MASK;
845                                 break;
846                                 }
847
848                         if (!multi) break;
849                         }
850
851                 /*
852                  * Ok, we have the rule, now apply it
853                  */
854                 if (rule == CIPHER_SPECIAL)
855                         {       /* special command */
856                         ok = 0;
857                         if ((buflen == 8) &&
858                                 !strncmp(buf, "STRENGTH", 8))
859                                 ok = ssl_cipher_strength_sort(co_list,
860                                         head_p, tail_p);
861                         else
862                                 SSLerr(SSL_F_SSL_CIPHER_PROCESS_RULESTR,
863                                         SSL_R_INVALID_COMMAND);
864                         if (ok == 0)
865                                 retval = 0;
866                         /*
867                          * We do not support any "multi" options
868                          * together with "@", so throw away the
869                          * rest of the command, if any left, until
870                          * end or ':' is found.
871                          */
872                         while ((*l != '\0') && ITEM_SEP(*l))
873                                 l++;
874                         }
875                 else if (found)
876                         {
877                         ssl_cipher_apply_rule(cipher_id, ssl_version, algorithms, mask,
878                                 algo_strength, mask_strength, rule, -1,
879                                 co_list, head_p, tail_p);
880                         }
881                 else
882                         {
883                         while ((*l != '\0') && ITEM_SEP(*l))
884                                 l++;
885                         }
886                 if (*l == '\0') break; /* done */
887                 }
888
889         return(retval);
890         }
891
892 STACK_OF(SSL_CIPHER) *ssl_create_cipher_list(const SSL_METHOD *ssl_method,
893                 STACK_OF(SSL_CIPHER) **cipher_list,
894                 STACK_OF(SSL_CIPHER) **cipher_list_by_id,
895                 const char *rule_str)
896         {
897         int ok, num_of_ciphers, num_of_alias_max, num_of_group_aliases;
898         unsigned long disabled_mask;
899         STACK_OF(SSL_CIPHER) *cipherstack, *tmp_cipher_list;
900         const char *rule_p;
901         CIPHER_ORDER *co_list = NULL, *head = NULL, *tail = NULL, *curr;
902         SSL_CIPHER **ca_list = NULL;
903
904         /*
905          * Return with error if nothing to do.
906          */
907         if (rule_str == NULL || cipher_list == NULL || cipher_list_by_id == NULL)
908                 return NULL;
909
910         if (init_ciphers)
911                 {
912                 CRYPTO_w_lock(CRYPTO_LOCK_SSL);
913                 if (init_ciphers) load_ciphers();
914                 CRYPTO_w_unlock(CRYPTO_LOCK_SSL);
915                 }
916
917         /*
918          * To reduce the work to do we only want to process the compiled
919          * in algorithms, so we first get the mask of disabled ciphers.
920          */
921         disabled_mask = ssl_cipher_get_disabled();
922
923         /*
924          * Now we have to collect the available ciphers from the compiled
925          * in ciphers. We cannot get more than the number compiled in, so
926          * it is used for allocation.
927          */
928         num_of_ciphers = ssl_method->num_ciphers();
929 #ifdef KSSL_DEBUG
930         printf("ssl_create_cipher_list() for %d ciphers\n", num_of_ciphers);
931 #endif    /* KSSL_DEBUG */
932         co_list = (CIPHER_ORDER *)OPENSSL_malloc(sizeof(CIPHER_ORDER) * num_of_ciphers);
933         if (co_list == NULL)
934                 {
935                 SSLerr(SSL_F_SSL_CREATE_CIPHER_LIST,ERR_R_MALLOC_FAILURE);
936                 return(NULL);   /* Failure */
937                 }
938
939         ssl_cipher_collect_ciphers(ssl_method, num_of_ciphers, disabled_mask,
940                                    co_list, &head, &tail);
941
942         /*
943          * We also need cipher aliases for selecting based on the rule_str.
944          * There might be two types of entries in the rule_str: 1) names
945          * of ciphers themselves 2) aliases for groups of ciphers.
946          * For 1) we need the available ciphers and for 2) the cipher
947          * groups of cipher_aliases added together in one list (otherwise
948          * we would be happy with just the cipher_aliases table).
949          */
950         num_of_group_aliases = sizeof(cipher_aliases) / sizeof(SSL_CIPHER);
951         num_of_alias_max = num_of_ciphers + num_of_group_aliases + 1;
952         ca_list =
953                 (SSL_CIPHER **)OPENSSL_malloc(sizeof(SSL_CIPHER *) * num_of_alias_max);
954         if (ca_list == NULL)
955                 {
956                 OPENSSL_free(co_list);
957                 SSLerr(SSL_F_SSL_CREATE_CIPHER_LIST,ERR_R_MALLOC_FAILURE);
958                 return(NULL);   /* Failure */
959                 }
960         ssl_cipher_collect_aliases(ca_list, num_of_group_aliases, disabled_mask,
961                                    head);
962
963         /*
964          * If the rule_string begins with DEFAULT, apply the default rule
965          * before using the (possibly available) additional rules.
966          */
967         ok = 1;
968         rule_p = rule_str;
969         if (strncmp(rule_str,"DEFAULT",7) == 0)
970                 {
971                 ok = ssl_cipher_process_rulestr(SSL_DEFAULT_CIPHER_LIST,
972                         co_list, &head, &tail, ca_list);
973                 rule_p += 7;
974                 if (*rule_p == ':')
975                         rule_p++;
976                 }
977
978         if (ok && (strlen(rule_p) > 0))
979                 ok = ssl_cipher_process_rulestr(rule_p, co_list, &head, &tail,
980                                                 ca_list);
981
982         OPENSSL_free(ca_list);  /* Not needed anymore */
983
984         if (!ok)
985                 {       /* Rule processing failure */
986                 OPENSSL_free(co_list);
987                 return(NULL);
988                 }
989         /*
990          * Allocate new "cipherstack" for the result, return with error
991          * if we cannot get one.
992          */
993         if ((cipherstack = sk_SSL_CIPHER_new_null()) == NULL)
994                 {
995                 OPENSSL_free(co_list);
996                 return(NULL);
997                 }
998
999         /*
1000          * The cipher selection for the list is done. The ciphers are added
1001          * to the resulting precedence to the STACK_OF(SSL_CIPHER).
1002          */
1003         for (curr = head; curr != NULL; curr = curr->next)
1004                 {
1005 #ifdef OPENSSL_FIPS
1006                 if (curr->active && (!FIPS_mode() || curr->cipher->algo_strength & SSL_FIPS))
1007 #else
1008                 if (curr->active)
1009 #endif
1010                         {
1011                         sk_SSL_CIPHER_push(cipherstack, curr->cipher);
1012 #ifdef CIPHER_DEBUG
1013                         printf("<%s>\n",curr->cipher->name);
1014 #endif
1015                         }
1016                 }
1017         OPENSSL_free(co_list);  /* Not needed any longer */
1018
1019         tmp_cipher_list = sk_SSL_CIPHER_dup(cipherstack);
1020         if (tmp_cipher_list == NULL)
1021                 {
1022                 sk_SSL_CIPHER_free(cipherstack);
1023                 return NULL;
1024                 }
1025         if (*cipher_list != NULL)
1026                 sk_SSL_CIPHER_free(*cipher_list);
1027         *cipher_list = cipherstack;
1028         if (*cipher_list_by_id != NULL)
1029                 sk_SSL_CIPHER_free(*cipher_list_by_id);
1030         *cipher_list_by_id = tmp_cipher_list;
1031         sk_SSL_CIPHER_set_cmp_func(*cipher_list_by_id,ssl_cipher_ptr_id_cmp);
1032
1033         return(cipherstack);
1034         }
1035
1036 char *SSL_CIPHER_description(SSL_CIPHER *cipher, char *buf, int len)
1037         {
1038         int is_export,pkl,kl;
1039         char *ver,*exp_str;
1040         char *kx,*au,*enc,*mac;
1041         unsigned long alg,alg2,alg_s;
1042 #ifdef KSSL_DEBUG
1043         static char *format="%-23s %s Kx=%-8s Au=%-4s Enc=%-9s Mac=%-4s%s AL=%lx\n";
1044 #else
1045         static char *format="%-23s %s Kx=%-8s Au=%-4s Enc=%-9s Mac=%-4s%s\n";
1046 #endif /* KSSL_DEBUG */
1047
1048         alg=cipher->algorithms;
1049         alg_s=cipher->algo_strength;
1050         alg2=cipher->algorithm2;
1051
1052         is_export=SSL_C_IS_EXPORT(cipher);
1053         pkl=SSL_C_EXPORT_PKEYLENGTH(cipher);
1054         kl=SSL_C_EXPORT_KEYLENGTH(cipher);
1055         exp_str=is_export?" export":"";
1056
1057         if (alg & SSL_SSLV2)
1058                 ver="SSLv2";
1059         else if (alg & SSL_SSLV3)
1060                 ver="SSLv3";
1061         else
1062                 ver="unknown";
1063
1064         switch (alg&SSL_MKEY_MASK)
1065                 {
1066         case SSL_kRSA:
1067                 kx=is_export?(pkl == 512 ? "RSA(512)" : "RSA(1024)"):"RSA";
1068                 break;
1069         case SSL_kDHr:
1070                 kx="DH/RSA";
1071                 break;
1072         case SSL_kDHd:
1073                 kx="DH/DSS";
1074                 break;
1075         case SSL_kKRB5:         /* VRS */
1076         case SSL_KRB5:          /* VRS */
1077             kx="KRB5";
1078             break;
1079         case SSL_kFZA:
1080                 kx="Fortezza";
1081                 break;
1082         case SSL_kEDH:
1083                 kx=is_export?(pkl == 512 ? "DH(512)" : "DH(1024)"):"DH";
1084                 break;
1085         default:
1086                 kx="unknown";
1087                 }
1088
1089         switch (alg&SSL_AUTH_MASK)
1090                 {
1091         case SSL_aRSA:
1092                 au="RSA";
1093                 break;
1094         case SSL_aDSS:
1095                 au="DSS";
1096                 break;
1097         case SSL_aDH:
1098                 au="DH";
1099                 break;
1100         case SSL_aKRB5:         /* VRS */
1101         case SSL_KRB5:          /* VRS */
1102             au="KRB5";
1103             break;
1104         case SSL_aFZA:
1105         case SSL_aNULL:
1106                 au="None";
1107                 break;
1108         default:
1109                 au="unknown";
1110                 break;
1111                 }
1112
1113         switch (alg&SSL_ENC_MASK)
1114                 {
1115         case SSL_DES:
1116                 enc=(is_export && kl == 5)?"DES(40)":"DES(56)";
1117                 break;
1118         case SSL_3DES:
1119                 enc="3DES(168)";
1120                 break;
1121         case SSL_RC4:
1122                 enc=is_export?(kl == 5 ? "RC4(40)" : "RC4(56)")
1123                   :((alg2&SSL2_CF_8_BYTE_ENC)?"RC4(64)":"RC4(128)");
1124                 break;
1125         case SSL_RC2:
1126                 enc=is_export?(kl == 5 ? "RC2(40)" : "RC2(56)"):"RC2(128)";
1127                 break;
1128         case SSL_IDEA:
1129                 enc="IDEA(128)";
1130                 break;
1131         case SSL_eFZA:
1132                 enc="Fortezza";
1133                 break;
1134         case SSL_eNULL:
1135                 enc="None";
1136                 break;
1137         case SSL_AES:
1138                 switch(cipher->strength_bits)
1139                         {
1140                 case 128: enc="AES(128)"; break;
1141                 case 192: enc="AES(192)"; break;
1142                 case 256: enc="AES(256)"; break;
1143                 default: enc="AES(?""?""?)"; break;
1144                         }
1145                 break;
1146         default:
1147                 enc="unknown";
1148                 break;
1149                 }
1150
1151         switch (alg&SSL_MAC_MASK)
1152                 {
1153         case SSL_MD5:
1154                 mac="MD5";
1155                 break;
1156         case SSL_SHA1:
1157                 mac="SHA1";
1158                 break;
1159         default:
1160                 mac="unknown";
1161                 break;
1162                 }
1163
1164         if (buf == NULL)
1165                 {
1166                 len=128;
1167                 buf=OPENSSL_malloc(len);
1168                 if (buf == NULL) return("OPENSSL_malloc Error");
1169                 }
1170         else if (len < 128)
1171                 return("Buffer too small");
1172
1173 #ifdef KSSL_DEBUG
1174         BIO_snprintf(buf,len,format,cipher->name,ver,kx,au,enc,mac,exp_str,alg);
1175 #else
1176         BIO_snprintf(buf,len,format,cipher->name,ver,kx,au,enc,mac,exp_str);
1177 #endif /* KSSL_DEBUG */
1178         return(buf);
1179         }
1180
1181 char *SSL_CIPHER_get_version(const SSL_CIPHER *c)
1182         {
1183         int i;
1184
1185         if (c == NULL) return("(NONE)");
1186         i=(int)(c->id>>24L);
1187         if (i == 3)
1188                 return("TLSv1/SSLv3");
1189         else if (i == 2)
1190                 return("SSLv2");
1191         else
1192                 return("unknown");
1193         }
1194
1195 /* return the actual cipher being used */
1196 const char *SSL_CIPHER_get_name(const SSL_CIPHER *c)
1197         {
1198         if (c != NULL)
1199                 return(c->name);
1200         return("(NONE)");
1201         }
1202
1203 /* number of bits for symmetric cipher */
1204 int SSL_CIPHER_get_bits(const SSL_CIPHER *c, int *alg_bits)
1205         {
1206         int ret=0;
1207
1208         if (c != NULL)
1209                 {
1210                 if (alg_bits != NULL) *alg_bits = c->alg_bits;
1211                 ret = c->strength_bits;
1212                 }
1213         return(ret);
1214         }
1215
1216 SSL_COMP *ssl3_comp_find(STACK_OF(SSL_COMP) *sk, int n)
1217         {
1218         SSL_COMP *ctmp;
1219         int i,nn;
1220
1221         if ((n == 0) || (sk == NULL)) return(NULL);
1222         nn=sk_SSL_COMP_num(sk);
1223         for (i=0; i<nn; i++)
1224                 {
1225                 ctmp=sk_SSL_COMP_value(sk,i);
1226                 if (ctmp->id == n)
1227                         return(ctmp);
1228                 }
1229         return(NULL);
1230         }
1231
1232 static int sk_comp_cmp(const SSL_COMP * const *a,
1233                         const SSL_COMP * const *b)
1234         {
1235         return((*a)->id-(*b)->id);
1236         }
1237
1238 STACK_OF(SSL_COMP) *SSL_COMP_get_compression_methods(void)
1239         {
1240         return(ssl_comp_methods);
1241         }
1242
1243 int SSL_COMP_add_compression_method(int id, COMP_METHOD *cm)
1244         {
1245         SSL_COMP *comp;
1246         STACK_OF(SSL_COMP) *sk;
1247
1248         if (cm == NULL || cm->type == NID_undef)
1249                 return 1;
1250
1251         MemCheck_off();
1252         comp=(SSL_COMP *)OPENSSL_malloc(sizeof(SSL_COMP));
1253         comp->id=id;
1254         comp->method=cm;
1255         if (ssl_comp_methods == NULL)
1256                 sk=ssl_comp_methods=sk_SSL_COMP_new(sk_comp_cmp);
1257         else
1258                 sk=ssl_comp_methods;
1259         if ((sk == NULL) || !sk_SSL_COMP_push(sk,comp))
1260                 {
1261                 MemCheck_on();
1262                 SSLerr(SSL_F_SSL_COMP_ADD_COMPRESSION_METHOD,ERR_R_MALLOC_FAILURE);
1263                 return(1);
1264                 }
1265         else
1266                 {
1267                 MemCheck_on();
1268                 return(0);
1269                 }
1270         }