More CVS ignore stuff...
[openssl.git] / apps / speed.c
1 /* apps/speed.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 /* most of this code has been pilfered from my libdes speed.c program */
60
61 #undef SECONDS
62 #define SECONDS         3       
63 #define RSA_SECONDS     10
64 #define DSA_SECONDS     10
65
66 /* 11-Sep-92 Andrew Daviel   Support for Silicon Graphics IRIX added */
67 /* 06-Apr-92 Luke Brennan    Support for VMS and add extra signal calls */
68
69 #undef PROG
70 #define PROG speed_main
71
72 #include <stdio.h>
73 #include <stdlib.h>
74 #include <signal.h>
75 #include <string.h>
76 #include <math.h>
77 #include "apps.h"
78 #ifdef NO_STDIO
79 #define APPS_WIN16
80 #endif
81 #include "crypto.h"
82 #include "rand.h"
83 #include "err.h"
84
85 #ifndef MSDOS
86 #define TIMES
87 #endif
88
89 #ifndef VMS
90 #ifndef _IRIX
91 #include <time.h>
92 #endif
93 #ifdef TIMES
94 #include <sys/types.h>
95 #include <sys/times.h>
96 #endif
97 #else /* VMS */
98 #include <types.h>
99 struct tms {
100         time_t tms_utime;
101         time_t tms_stime;
102         time_t tms_uchild;      /* I dunno...  */
103         time_t tms_uchildsys;   /* so these names are a guess :-) */
104         }
105 #endif
106 #ifndef TIMES
107 #include <sys/timeb.h>
108 #endif
109
110 #if defined(sun) || defined(__ultrix)
111 #define _POSIX_SOURCE
112 #include <limits.h>
113 #include <sys/param.h>
114 #endif
115
116 #ifndef NO_DES
117 #include "des.h"
118 #endif
119 #ifndef NO_MD2
120 #include "md2.h"
121 #endif
122 #ifndef NO_MDC2
123 #include "mdc2.h"
124 #endif
125 #ifndef NO_MD5
126 #include "md5.h"
127 #include "hmac.h"
128 #include "evp.h"
129 #endif
130 #ifndef NO_SHA1
131 #include "sha.h"
132 #endif
133 #ifndef NO_RMD160
134 #include "ripemd.h"
135 #endif
136 #ifndef NO_RC4
137 #include "rc4.h"
138 #endif
139 #ifndef NO_RC5
140 #include "rc5.h"
141 #endif
142 #ifndef NO_RC2
143 #include "rc2.h"
144 #endif
145 #ifndef NO_IDEA
146 #include "idea.h"
147 #endif
148 #ifndef NO_BLOWFISH
149 #include "blowfish.h"
150 #endif
151 #ifndef NO_CAST
152 #include "cast.h"
153 #endif
154 #ifndef NO_RSA
155 #include "rsa.h"
156 #endif
157 #include "x509.h"
158 #include "./testrsa.h"
159 #ifndef NO_DSA
160 #include "./testdsa.h"
161 #endif
162
163 /* The following if from times(3) man page.  It may need to be changed */
164 #ifndef HZ
165 # ifndef CLK_TCK
166 #  ifndef _BSD_CLK_TCK_ /* FreeBSD hack */
167 #   ifndef VMS
168 #    define HZ  100.0
169 #   else /* VMS */
170 #    define HZ  100.0
171 #   endif
172 #  else /* _BSD_CLK_TCK_ */
173 #   define HZ ((double)_BSD_CLK_TCK_)
174 #  endif
175 # else /* CLK_TCK */
176 #  define HZ ((double)CLK_TCK)
177 # endif
178 #endif
179
180 #undef BUFSIZE
181 #define BUFSIZE ((long)1024*8+1)
182 int run=0;
183
184 #ifndef NOPROTO
185 static double Time_F(int s);
186 static void print_message(char *s,long num,int length);
187 static void pkey_print_message(char *str,char *str2,long num,int bits,int sec);
188 #else
189 static double Time_F();
190 static void print_message();
191 static void pkey_print_message();
192 #endif
193
194 #ifdef SIGALRM
195 #if defined(__STDC__) || defined(sgi) || defined(_AIX)
196 #define SIGRETTYPE void
197 #else
198 #define SIGRETTYPE int
199 #endif 
200
201 #ifndef NOPROTO
202 static SIGRETTYPE sig_done(int sig);
203 #else
204 static SIGRETTYPE sig_done();
205 #endif
206
207 static SIGRETTYPE sig_done(sig)
208 int sig;
209         {
210         signal(SIGALRM,sig_done);
211         run=0;
212 #ifdef LINT
213         sig=sig;
214 #endif
215         }
216 #endif
217
218 #define START   0
219 #define STOP    1
220
221 static double Time_F(s)
222 int s;
223         {
224         double ret;
225 #ifdef TIMES
226         static struct tms tstart,tend;
227
228         if (s == START)
229                 {
230                 times(&tstart);
231                 return(0);
232                 }
233         else
234                 {
235                 times(&tend);
236                 ret=((double)(tend.tms_utime-tstart.tms_utime))/HZ;
237                 return((ret < 1e-3)?1e-3:ret);
238                 }
239 #else /* !times() */
240         static struct timeb tstart,tend;
241         long i;
242
243         if (s == START)
244                 {
245                 ftime(&tstart);
246                 return(0);
247                 }
248         else
249                 {
250                 ftime(&tend);
251                 i=(long)tend.millitm-(long)tstart.millitm;
252                 ret=((double)(tend.time-tstart.time))+((double)i)/1000.0;
253                 return((ret < 0.001)?0.001:ret);
254                 }
255 #endif
256         }
257
258 int MAIN(argc,argv)
259 int argc;
260 char **argv;
261         {
262         unsigned char *buf=NULL,*buf2=NULL;
263         int ret=1;
264 #define ALGOR_NUM       14
265 #define SIZE_NUM        5
266 #define RSA_NUM         4
267 #define DSA_NUM         3
268         long count,rsa_count;
269         int i,j,k,rsa_num,rsa_num2;
270 #ifndef NO_MD2
271         unsigned char md2[MD2_DIGEST_LENGTH];
272 #endif
273 #ifndef NO_MDC2
274         unsigned char mdc2[MDC2_DIGEST_LENGTH];
275 #endif
276 #ifndef NO_MD5
277         unsigned char md5[MD5_DIGEST_LENGTH];
278         unsigned char hmac[MD5_DIGEST_LENGTH];
279 #endif
280 #ifndef NO_SHA1
281         unsigned char sha[SHA_DIGEST_LENGTH];
282 #endif
283 #ifndef NO_RMD160
284         unsigned char rmd160[RIPEMD160_DIGEST_LENGTH];
285 #endif
286 #ifndef NO_RC4
287         RC4_KEY rc4_ks;
288 #endif
289 #ifndef NO_RC5
290         RC5_32_KEY rc5_ks;
291 #endif
292 #ifndef NO_RC2
293         RC2_KEY rc2_ks;
294 #endif
295 #ifndef NO_IDEA
296         IDEA_KEY_SCHEDULE idea_ks;
297 #endif
298 #ifndef NO_BLOWFISH
299         BF_KEY bf_ks;
300 #endif
301 #ifndef NO_CAST
302         CAST_KEY cast_ks;
303 #endif
304         static unsigned char key16[16]=
305                 {0x12,0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,
306                  0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12};
307         unsigned char iv[8];
308 #ifndef NO_DES
309         static des_cblock key ={0x12,0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0};
310         static des_cblock key2={0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12};
311         static des_cblock key3={0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12,0x34};
312         des_key_schedule sch,sch2,sch3;
313 #endif
314 #define D_MD2           0
315 #define D_MDC2          1
316 #define D_MD5           2
317 #define D_HMAC          3
318 #define D_SHA1          4
319 #define D_RMD160        5
320 #define D_RC4           6
321 #define D_CBC_DES       7
322 #define D_EDE3_DES      8
323 #define D_CBC_IDEA      9
324 #define D_CBC_RC2       10
325 #define D_CBC_RC5       11
326 #define D_CBC_BF        12
327 #define D_CBC_CAST      13
328         double d,results[ALGOR_NUM][SIZE_NUM];
329         static int lengths[SIZE_NUM]={8,64,256,1024,8*1024};
330         long c[ALGOR_NUM][SIZE_NUM];
331         static char *names[ALGOR_NUM]={
332                 "md2","mdc2","md5","hmac(md5)","sha1","rmd160","rc4",
333                 "des cbc","des ede3","idea cbc",
334                 "rc2 cbc","rc5-32/12 cbc","blowfish cbc","cast cbc"};
335 #define R_DSA_512       0
336 #define R_DSA_1024      1
337 #define R_DSA_2048      2
338 #define R_RSA_512       0
339 #define R_RSA_1024      1
340 #define R_RSA_2048      2
341 #define R_RSA_4096      3
342         RSA *rsa_key[RSA_NUM];
343         long rsa_c[RSA_NUM][2];
344 #ifndef NO_RSA
345         double rsa_results[RSA_NUM][2];
346         static unsigned int rsa_bits[RSA_NUM]={512,1024,2048,4096};
347         static unsigned char *rsa_data[RSA_NUM]=
348                 {test512,test1024,test2048,test4096};
349         static int rsa_data_length[RSA_NUM]={
350                 sizeof(test512),sizeof(test1024),
351                 sizeof(test2048),sizeof(test4096)};
352 #endif
353 #ifndef NO_DSA
354         DSA *dsa_key[DSA_NUM];
355         long dsa_c[DSA_NUM][2];
356         double dsa_results[DSA_NUM][2];
357         static unsigned int dsa_bits[DSA_NUM]={512,1024,2048};
358 #endif
359         int rsa_doit[RSA_NUM];
360         int dsa_doit[DSA_NUM];
361         int doit[ALGOR_NUM];
362         int pr_header=0;
363
364         apps_startup();
365 #ifdef NO_DSA
366         memset(dsa_key,0,sizeof(dsa_key));
367 #endif
368
369         if (bio_err == NULL)
370                 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
371                         BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
372
373 #ifndef NO_RSA
374         memset(rsa_key,0,sizeof(rsa_key));
375         for (i=0; i<RSA_NUM; i++)
376                 rsa_key[i]=NULL;
377 #endif
378
379         if ((buf=(unsigned char *)Malloc((int)BUFSIZE)) == NULL)
380                 {
381                 BIO_printf(bio_err,"out of memory\n");
382                 goto end;
383                 }
384         if ((buf2=(unsigned char *)Malloc((int)BUFSIZE)) == NULL)
385                 {
386                 BIO_printf(bio_err,"out of memory\n");
387                 goto end;
388                 }
389
390         memset(c,0,sizeof(c));
391         memset(iv,0,sizeof(iv));
392
393         for (i=0; i<ALGOR_NUM; i++)
394                 doit[i]=0;
395         for (i=0; i<RSA_NUM; i++)
396                 rsa_doit[i]=0;
397         for (i=0; i<DSA_NUM; i++)
398                 dsa_doit[i]=0;
399         
400         j=0;
401         argc--;
402         argv++;
403         while (argc)
404                 {
405 #ifndef NO_MD2
406                 if      (strcmp(*argv,"md2") == 0) doit[D_MD2]=1;
407                 else
408 #endif
409 #ifndef NO_MDC2
410                         if (strcmp(*argv,"mdc2") == 0) doit[D_MDC2]=1;
411                 else
412 #endif
413 #ifndef NO_MD5
414                         if (strcmp(*argv,"md5") == 0) doit[D_MD5]=1;
415                 else
416 #endif
417 #ifndef NO_MD5
418                         if (strcmp(*argv,"hmac") == 0) doit[D_HMAC]=1;
419                 else
420 #endif
421 #ifndef NO_SHA1
422                         if (strcmp(*argv,"sha1") == 0) doit[D_SHA1]=1;
423                 else
424                         if (strcmp(*argv,"sha") == 0) doit[D_SHA1]=1;
425                 else
426 #endif
427 #ifndef NO_RMD160
428                         if (strcmp(*argv,"ripemd") == 0) doit[D_RMD160]=1;
429                 else
430                         if (strcmp(*argv,"rmd160") == 0) doit[D_RMD160]=1;
431                 else
432                         if (strcmp(*argv,"ripemd160") == 0) doit[D_RMD160]=1;
433                 else
434 #endif
435 #ifndef NO_RC4
436                         if (strcmp(*argv,"rc4") == 0) doit[D_RC4]=1;
437                 else 
438 #endif
439 #ifndef NO_DEF
440                         if (strcmp(*argv,"des-cbc") == 0) doit[D_CBC_DES]=1;
441                 else    if (strcmp(*argv,"des-ede3") == 0) doit[D_EDE3_DES]=1;
442                 else
443 #endif
444 #ifndef NO_RSA
445 #ifdef RSAref
446                         if (strcmp(*argv,"rsaref") == 0) 
447                         {
448                         RSA_set_default_method(RSA_PKCS1_RSAref());
449                         j--;
450                         }
451                 else
452 #endif
453                         if (strcmp(*argv,"openssl") == 0) 
454                         {
455                         RSA_set_default_method(RSA_PKCS1_SSLeay());
456                         j--;
457                         }
458                 else
459 #endif /* !NO_RSA */
460                      if (strcmp(*argv,"dsa512") == 0) dsa_doit[R_DSA_512]=2;
461                 else if (strcmp(*argv,"dsa1024") == 0) dsa_doit[R_DSA_1024]=2;
462                 else if (strcmp(*argv,"dsa2048") == 0) dsa_doit[R_DSA_2048]=2;
463                 else if (strcmp(*argv,"rsa512") == 0) rsa_doit[R_RSA_512]=2;
464                 else if (strcmp(*argv,"rsa1024") == 0) rsa_doit[R_RSA_1024]=2;
465                 else if (strcmp(*argv,"rsa2048") == 0) rsa_doit[R_RSA_2048]=2;
466                 else if (strcmp(*argv,"rsa4096") == 0) rsa_doit[R_RSA_4096]=2;
467                 else
468 #ifndef NO_RC2
469                      if (strcmp(*argv,"rc2-cbc") == 0) doit[D_CBC_RC2]=1;
470                 else if (strcmp(*argv,"rc2") == 0) doit[D_CBC_RC2]=1;
471                 else
472 #endif
473 #ifndef NO_RC5
474                      if (strcmp(*argv,"rc5-cbc") == 0) doit[D_CBC_RC5]=1;
475                 else if (strcmp(*argv,"rc5") == 0) doit[D_CBC_RC5]=1;
476                 else
477 #endif
478 #ifndef NO_IDEA
479                      if (strcmp(*argv,"idea-cbc") == 0) doit[D_CBC_IDEA]=1;
480                 else if (strcmp(*argv,"idea") == 0) doit[D_CBC_IDEA]=1;
481                 else
482 #endif
483 #ifndef NO_BLOWFISH
484                      if (strcmp(*argv,"bf-cbc") == 0) doit[D_CBC_BF]=1;
485                 else if (strcmp(*argv,"blowfish") == 0) doit[D_CBC_BF]=1;
486                 else if (strcmp(*argv,"bf") == 0) doit[D_CBC_BF]=1;
487                 else
488 #endif
489 #ifndef NO_CAST
490                      if (strcmp(*argv,"cast-cbc") == 0) doit[D_CBC_CAST]=1;
491                 else if (strcmp(*argv,"cast") == 0) doit[D_CBC_CAST]=1;
492                 else if (strcmp(*argv,"cast5") == 0) doit[D_CBC_CAST]=1;
493                 else
494 #endif
495 #ifndef NO_DES
496                         if (strcmp(*argv,"des") == 0)
497                         {
498                         doit[D_CBC_DES]=1;
499                         doit[D_EDE3_DES]=1;
500                         }
501                 else
502 #endif
503 #ifndef NO_RSA
504                         if (strcmp(*argv,"rsa") == 0)
505                         {
506                         rsa_doit[R_RSA_512]=1;
507                         rsa_doit[R_RSA_1024]=1;
508                         rsa_doit[R_RSA_2048]=1;
509                         rsa_doit[R_RSA_4096]=1;
510                         }
511                 else
512 #endif
513 #ifndef NO_DSA
514                         if (strcmp(*argv,"dsa") == 0)
515                         {
516                         dsa_doit[R_DSA_512]=1;
517                         dsa_doit[R_DSA_1024]=1;
518                         }
519                 else
520 #endif
521                         {
522                         BIO_printf(bio_err,"bad value, pick one of\n");
523                         BIO_printf(bio_err,"md2      mdc2       md5      hmac      sha1    rmd160\n");
524 #ifndef NO_IDEA
525                         BIO_printf(bio_err,"idea-cbc ");
526 #endif
527 #ifndef NO_RC2
528                         BIO_printf(bio_err,"rc2-cbc  ");
529 #endif
530 #ifndef NO_RC5
531                         BIO_printf(bio_err,"rc5-cbc  ");
532 #endif
533 #ifndef NO_BLOWFISH
534                         BIO_printf(bio_err,"bf-cbc");
535 #endif
536 #if !defined(NO_IDEA) && !defined(NO_RC2) && !defined(NO_BLOWFISH) && !defined(NO_RC5)
537                         BIO_printf(bio_err,"\n");
538 #endif
539                         BIO_printf(bio_err,"des-cbc  des-ede3 ");
540 #ifndef NO_RC4
541                         BIO_printf(bio_err,"rc4");
542 #endif
543 #ifndef NO_RSA
544                         BIO_printf(bio_err,"\nrsa512   rsa1024  rsa2048  rsa4096\n");
545 #endif
546 #ifndef NO_DSA
547                         BIO_printf(bio_err,"\ndsa512   dsa1024  dsa2048\n");
548 #endif
549                         BIO_printf(bio_err,"idea     rc2      des      rsa    blowfish\n");
550                         goto end;
551                         }
552                 argc--;
553                 argv++;
554                 j++;
555                 }
556
557         if (j == 0)
558                 {
559                 for (i=0; i<ALGOR_NUM; i++)
560                         doit[i]=1;
561                 for (i=0; i<RSA_NUM; i++)
562                         rsa_doit[i]=1;
563                 for (i=0; i<DSA_NUM; i++)
564                         dsa_doit[i]=1;
565                 }
566         for (i=0; i<ALGOR_NUM; i++)
567                 if (doit[i]) pr_header++;
568
569 #ifndef TIMES
570         BIO_printf(bio_err,"To get the most accurate results, try to run this\n");
571         BIO_printf(bio_err,"program when this computer is idle.\n");
572 #endif
573
574 #ifndef NO_RSA
575         for (i=0; i<RSA_NUM; i++)
576                 {
577                 unsigned char *p;
578
579                 p=rsa_data[i];
580                 rsa_key[i]=d2i_RSAPrivateKey(NULL,&p,rsa_data_length[i]);
581                 if (rsa_key[i] == NULL)
582                         {
583                         BIO_printf(bio_err,"internal error loading RSA key number %d\n",i);
584                         goto end;
585                         }
586 #if 0
587                 else
588                         {
589                         BIO_printf(bio_err,"Loaded RSA key, %d bit modulus and e= 0x",BN_num_bits(rsa_key[i]->n));
590                         BN_print(bio_err,rsa_key[i]->e);
591                         BIO_printf(bio_err,"\n");
592                         }
593 #endif
594                 }
595 #endif
596
597 #ifndef NO_DSA
598         dsa_key[0]=get_dsa512();
599         dsa_key[1]=get_dsa1024();
600         dsa_key[2]=get_dsa2048();
601 #endif
602
603 #ifndef NO_DES
604         des_set_key(key,sch);
605         des_set_key(key2,sch2);
606         des_set_key(key3,sch3);
607 #endif
608 #ifndef NO_IDEA
609         idea_set_encrypt_key(key16,&idea_ks);
610 #endif
611 #ifndef NO_RC4
612         RC4_set_key(&rc4_ks,16,key16);
613 #endif
614 #ifndef NO_RC2
615         RC2_set_key(&rc2_ks,16,key16,128);
616 #endif
617 #ifndef NO_RC5
618         RC5_32_set_key(&rc5_ks,16,key16,12);
619 #endif
620 #ifndef NO_BLOWFISH
621         BF_set_key(&bf_ks,16,key16);
622 #endif
623 #ifndef NO_CAST
624         CAST_set_key(&cast_ks,16,key16);
625 #endif
626
627         memset(rsa_c,0,sizeof(rsa_c));
628 #ifndef SIGALRM
629         BIO_printf(bio_err,"First we calculate the approximate speed ...\n");
630         count=10;
631         do      {
632                 long i;
633                 count*=2;
634                 Time_F(START);
635                 for (i=count; i; i--)
636                         des_ecb_encrypt(buf,buf, &(sch[0]),DES_ENCRYPT);
637                 d=Time_F(STOP);
638                 } while (d <3);
639         c[D_MD2][0]=count/10;
640         c[D_MDC2][0]=count/10;
641         c[D_MD5][0]=count;
642         c[D_HMAC][0]=count;
643         c[D_SHA1][0]=count;
644         c[D_RMD160][0]=count;
645         c[D_RC4][0]=count*5;
646         c[D_CBC_DES][0]=count;
647         c[D_EDE3_DES][0]=count/3;
648         c[D_CBC_IDEA][0]=count;
649         c[D_CBC_RC2][0]=count;
650         c[D_CBC_RC5][0]=count;
651         c[D_CBC_BF][0]=count;
652         c[D_CBC_CAST][0]=count;
653
654         for (i=1; i<SIZE_NUM; i++)
655                 {
656                 c[D_MD2][i]=c[D_MD2][0]*4*lengths[0]/lengths[i];
657                 c[D_MDC2][i]=c[D_MDC2][0]*4*lengths[0]/lengths[i];
658                 c[D_MD5][i]=c[D_MD5][0]*4*lengths[0]/lengths[i];
659                 c[D_HMAC][i]=c[D_HMAC][0]*4*lengths[0]/lengths[i];
660                 c[D_SHA1][i]=c[D_SHA1][0]*4*lengths[0]/lengths[i];
661                 c[D_RMD160][i]=c[D_RMD160][0]*4*lengths[0]/lengths[i];
662                 }
663         for (i=1; i<SIZE_NUM; i++)
664                 {
665                 long l0,l1;
666
667                 l0=(long)lengths[i-1];
668                 l1=(long)lengths[i];
669                 c[D_RC4][i]=c[D_RC4][i-1]*l0/l1;
670                 c[D_CBC_DES][i]=c[D_CBC_DES][i-1]*l0/l1;
671                 c[D_EDE3_DES][i]=c[D_EDE3_DES][i-1]*l0/l1;
672                 c[D_CBC_IDEA][i]=c[D_CBC_IDEA][i-1]*l0/l1;
673                 c[D_CBC_RC2][i]=c[D_CBC_RC2][i-1]*l0/l1;
674                 c[D_CBC_RC5][i]=c[D_CBC_RC5][i-1]*l0/l1;
675                 c[D_CBC_BF][i]=c[D_CBC_BF][i-1]*l0/l1;
676                 c[D_CBC_CAST][i]=c[D_CBC_CAST][i-1]*l0/l1;
677                 }
678         rsa_c[R_RSA_512][0]=count/2000;
679         rsa_c[R_RSA_512][1]=count/400;
680         for (i=1; i<RSA_NUM; i++)
681                 {
682                 rsa_c[i][0]=rsa_c[i-1][0]/8;
683                 rsa_c[i][1]=rsa_c[i-1][1]/4;
684                 if ((rsa_doit[i] <= 1) && (rsa_c[i][0] == 0))
685                         rsa_doit[i]=0;
686                 else
687                         {
688                         if (rsa_c[i][0] == 0)
689                                 {
690                                 rsa_c[i][0]=1;
691                                 rsa_c[i][1]=20;
692                                 }
693                         }                               
694                 }
695
696         dsa_c[R_DSA_512][0]=count/1000;
697         dsa_c[R_DSA_512][1]=count/1000/2;
698         for (i=1; i<DSA_NUM; i++)
699                 {
700                 dsa_c[i][0]=dsa_c[i-1][0]/4;
701                 dsa_c[i][1]=dsa_c[i-1][1]/4;
702                 if ((dsa_doit[i] <= 1) && (dsa_c[i][0] == 0))
703                         dsa_doit[i]=0;
704                 else
705                         {
706                         if (dsa_c[i] == 0)
707                                 {
708                                 dsa_c[i][0]=1;
709                                 dsa_c[i][1]=1;
710                                 }
711                         }                               
712                 }
713
714 #define COND(d) (count < (d))
715 #define COUNT(d) (d)
716 #else
717 #define COND(c) (run)
718 #define COUNT(d) (count)
719         signal(SIGALRM,sig_done);
720 #endif
721
722 #ifndef NO_MD2
723         if (doit[D_MD2])
724                 {
725                 for (j=0; j<SIZE_NUM; j++)
726                         {
727                         print_message(names[D_MD2],c[D_MD2][j],lengths[j]);
728                         Time_F(START);
729                         for (count=0,run=1; COND(c[D_MD2][j]); count++)
730                                 MD2(buf,(unsigned long)lengths[j],&(md2[0]));
731                         d=Time_F(STOP);
732                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
733                                 count,names[D_MD2],d);
734                         results[D_MD2][j]=((double)count)/d*lengths[j];
735                         }
736                 }
737 #endif
738 #ifndef NO_MDC2
739         if (doit[D_MDC2])
740                 {
741                 for (j=0; j<SIZE_NUM; j++)
742                         {
743                         print_message(names[D_MDC2],c[D_MDC2][j],lengths[j]);
744                         Time_F(START);
745                         for (count=0,run=1; COND(c[D_MDC2][j]); count++)
746                                 MDC2(buf,(unsigned long)lengths[j],&(mdc2[0]));
747                         d=Time_F(STOP);
748                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
749                                 count,names[D_MDC2],d);
750                         results[D_MDC2][j]=((double)count)/d*lengths[j];
751                         }
752                 }
753 #endif
754
755 #ifndef NO_MD5
756         if (doit[D_MD5])
757                 {
758                 for (j=0; j<SIZE_NUM; j++)
759                         {
760                         print_message(names[D_MD5],c[D_MD5][j],lengths[j]);
761                         Time_F(START);
762                         for (count=0,run=1; COND(c[D_MD5][j]); count++)
763                                 MD5(&(buf[0]),(unsigned long)lengths[j],&(md5[0]));
764                         d=Time_F(STOP);
765                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
766                                 count,names[D_MD5],d);
767                         results[D_MD5][j]=((double)count)/d*lengths[j];
768                         }
769                 }
770 #endif
771
772 #ifndef NO_MD5
773         if (doit[D_HMAC])
774                 {
775                 HMAC_CTX hctx;
776                 HMAC_Init(&hctx,(unsigned char *)"This is a key...",
777                         16,EVP_md5());
778
779                 for (j=0; j<SIZE_NUM; j++)
780                         {
781                         print_message(names[D_HMAC],c[D_HMAC][j],lengths[j]);
782                         Time_F(START);
783                         for (count=0,run=1; COND(c[D_HMAC][j]); count++)
784                                 {
785                                 HMAC_Init(&hctx,NULL,0,NULL);
786                                 HMAC_Update(&hctx,buf,lengths[j]);
787                                 HMAC_Final(&hctx,&(hmac[0]),NULL);
788                                 }
789                         d=Time_F(STOP);
790                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
791                                 count,names[D_HMAC],d);
792                         results[D_HMAC][j]=((double)count)/d*lengths[j];
793                         }
794                 }
795 #endif
796 #ifndef NO_SHA1
797         if (doit[D_SHA1])
798                 {
799                 for (j=0; j<SIZE_NUM; j++)
800                         {
801                         print_message(names[D_SHA1],c[D_SHA1][j],lengths[j]);
802                         Time_F(START);
803                         for (count=0,run=1; COND(c[D_SHA1][j]); count++)
804                                 SHA1(buf,(unsigned long)lengths[j],&(sha[0]));
805                         d=Time_F(STOP);
806                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
807                                 count,names[D_SHA1],d);
808                         results[D_SHA1][j]=((double)count)/d*lengths[j];
809                         }
810                 }
811 #endif
812 #ifndef NO_RMD160
813         if (doit[D_RMD160])
814                 {
815                 for (j=0; j<SIZE_NUM; j++)
816                         {
817                         print_message(names[D_RMD160],c[D_RMD160][j],lengths[j]);
818                         Time_F(START);
819                         for (count=0,run=1; COND(c[D_RMD160][j]); count++)
820                                 RIPEMD160(buf,(unsigned long)lengths[j],&(rmd160[0]));
821                         d=Time_F(STOP);
822                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
823                                 count,names[D_RMD160],d);
824                         results[D_RMD160][j]=((double)count)/d*lengths[j];
825                         }
826                 }
827 #endif
828 #ifndef NO_RC4
829         if (doit[D_RC4])
830                 {
831                 for (j=0; j<SIZE_NUM; j++)
832                         {
833                         print_message(names[D_RC4],c[D_RC4][j],lengths[j]);
834                         Time_F(START);
835                         for (count=0,run=1; COND(c[D_RC4][j]); count++)
836                                 RC4(&rc4_ks,(unsigned int)lengths[j],
837                                         buf,buf);
838                         d=Time_F(STOP);
839                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
840                                 count,names[D_RC4],d);
841                         results[D_RC4][j]=((double)count)/d*lengths[j];
842                         }
843                 }
844 #endif
845 #ifndef NO_DES
846         if (doit[D_CBC_DES])
847                 {
848                 for (j=0; j<SIZE_NUM; j++)
849                         {
850                         print_message(names[D_CBC_DES],c[D_CBC_DES][j],lengths[j]);
851                         Time_F(START);
852                         for (count=0,run=1; COND(c[D_CBC_DES][j]); count++)
853                                 des_ncbc_encrypt(buf,buf,lengths[j],sch,
854                                                  &(iv[0]),DES_ENCRYPT);
855                         d=Time_F(STOP);
856                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
857                                 count,names[D_CBC_DES],d);
858                         results[D_CBC_DES][j]=((double)count)/d*lengths[j];
859                         }
860                 }
861
862         if (doit[D_EDE3_DES])
863                 {
864                 for (j=0; j<SIZE_NUM; j++)
865                         {
866                         print_message(names[D_EDE3_DES],c[D_EDE3_DES][j],lengths[j]);
867                         Time_F(START);
868                         for (count=0,run=1; COND(c[D_EDE3_DES][j]); count++)
869                                 des_ede3_cbc_encrypt(buf,buf,lengths[j],
870                                                      sch,sch2,sch3,
871                                                      &(iv[0]),DES_ENCRYPT);
872                         d=Time_F(STOP);
873                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
874                                 count,names[D_EDE3_DES],d);
875                         results[D_EDE3_DES][j]=((double)count)/d*lengths[j];
876                         }
877                 }
878 #endif
879 #ifndef NO_IDEA
880         if (doit[D_CBC_IDEA])
881                 {
882                 for (j=0; j<SIZE_NUM; j++)
883                         {
884                         print_message(names[D_CBC_IDEA],c[D_CBC_IDEA][j],lengths[j]);
885                         Time_F(START);
886                         for (count=0,run=1; COND(c[D_CBC_IDEA][j]); count++)
887                                 idea_cbc_encrypt(buf,buf,
888                                         (unsigned long)lengths[j],&idea_ks,
889                                         (unsigned char *)&(iv[0]),IDEA_ENCRYPT);
890                         d=Time_F(STOP);
891                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
892                                 count,names[D_CBC_IDEA],d);
893                         results[D_CBC_IDEA][j]=((double)count)/d*lengths[j];
894                         }
895                 }
896 #endif
897 #ifndef NO_RC2
898         if (doit[D_CBC_RC2])
899                 {
900                 for (j=0; j<SIZE_NUM; j++)
901                         {
902                         print_message(names[D_CBC_RC2],c[D_CBC_RC2][j],lengths[j]);
903                         Time_F(START);
904                         for (count=0,run=1; COND(c[D_CBC_RC2][j]); count++)
905                                 RC2_cbc_encrypt(buf,buf,
906                                         (unsigned long)lengths[j],&rc2_ks,
907                                         (unsigned char *)&(iv[0]),RC2_ENCRYPT);
908                         d=Time_F(STOP);
909                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
910                                 count,names[D_CBC_RC2],d);
911                         results[D_CBC_RC2][j]=((double)count)/d*lengths[j];
912                         }
913                 }
914 #endif
915 #ifndef NO_RC5
916         if (doit[D_CBC_RC5])
917                 {
918                 for (j=0; j<SIZE_NUM; j++)
919                         {
920                         print_message(names[D_CBC_RC5],c[D_CBC_RC5][j],lengths[j]);
921                         Time_F(START);
922                         for (count=0,run=1; COND(c[D_CBC_RC5][j]); count++)
923                                 RC5_32_cbc_encrypt(buf,buf,
924                                         (unsigned long)lengths[j],&rc5_ks,
925                                         (unsigned char *)&(iv[0]),RC5_ENCRYPT);
926                         d=Time_F(STOP);
927                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
928                                 count,names[D_CBC_RC5],d);
929                         results[D_CBC_RC5][j]=((double)count)/d*lengths[j];
930                         }
931                 }
932 #endif
933 #ifndef NO_BLOWFISH
934         if (doit[D_CBC_BF])
935                 {
936                 for (j=0; j<SIZE_NUM; j++)
937                         {
938                         print_message(names[D_CBC_BF],c[D_CBC_BF][j],lengths[j]);
939                         Time_F(START);
940                         for (count=0,run=1; COND(c[D_CBC_BF][j]); count++)
941                                 BF_cbc_encrypt(buf,buf,
942                                         (unsigned long)lengths[j],&bf_ks,
943                                         (unsigned char *)&(iv[0]),BF_ENCRYPT);
944                         d=Time_F(STOP);
945                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
946                                 count,names[D_CBC_BF],d);
947                         results[D_CBC_BF][j]=((double)count)/d*lengths[j];
948                         }
949                 }
950 #endif
951 #ifndef NO_CAST
952         if (doit[D_CBC_CAST])
953                 {
954                 for (j=0; j<SIZE_NUM; j++)
955                         {
956                         print_message(names[D_CBC_CAST],c[D_CBC_CAST][j],lengths[j]);
957                         Time_F(START);
958                         for (count=0,run=1; COND(c[D_CBC_CAST][j]); count++)
959                                 CAST_cbc_encrypt(buf,buf,
960                                         (unsigned long)lengths[j],&cast_ks,
961                                         (unsigned char *)&(iv[0]),CAST_ENCRYPT);
962                         d=Time_F(STOP);
963                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
964                                 count,names[D_CBC_CAST],d);
965                         results[D_CBC_CAST][j]=((double)count)/d*lengths[j];
966                         }
967                 }
968 #endif
969
970         RAND_bytes(buf,30);
971 #ifndef NO_RSA
972         for (j=0; j<RSA_NUM; j++)
973                 {
974                 if (!rsa_doit[j]) continue;
975                 rsa_num=RSA_private_encrypt(30,buf,buf2,rsa_key[j],
976                         RSA_PKCS1_PADDING);
977                 pkey_print_message("private","rsa",rsa_c[j][0],rsa_bits[j],
978                         RSA_SECONDS);
979 /*              RSA_blinding_on(rsa_key[j],NULL); */
980                 Time_F(START);
981                 for (count=0,run=1; COND(rsa_c[j][0]); count++)
982                         {
983                         rsa_num=RSA_private_encrypt(30,buf,buf2,rsa_key[j],
984                                 RSA_PKCS1_PADDING);
985                         if (rsa_num <= 0)
986                                 {
987                                 BIO_printf(bio_err,"RSA private encrypt failure\n");
988                                 ERR_print_errors(bio_err);
989                                 count=1;
990                                 break;
991                                 }
992                         }
993                 d=Time_F(STOP);
994                 BIO_printf(bio_err,"%ld %d bit private RSA's in %.2fs\n",
995                         count,rsa_bits[j],d);
996                 rsa_results[j][0]=d/(double)count;
997                 rsa_count=count;
998
999 #if 1
1000                 rsa_num2=RSA_public_decrypt(rsa_num,buf2,buf,rsa_key[j],
1001                         RSA_PKCS1_PADDING);
1002                 pkey_print_message("public","rsa",rsa_c[j][1],rsa_bits[j],
1003                         RSA_SECONDS);
1004                 Time_F(START);
1005                 for (count=0,run=1; COND(rsa_c[j][1]); count++)
1006                         {
1007                         rsa_num2=RSA_public_decrypt(rsa_num,buf2,buf,rsa_key[j],
1008                                 RSA_PKCS1_PADDING);
1009                         if (rsa_num2 <= 0)
1010                                 {
1011                                 BIO_printf(bio_err,"RSA public encrypt failure\n");
1012                                 ERR_print_errors(bio_err);
1013                                 count=1;
1014                                 break;
1015                                 }
1016                         }
1017                 d=Time_F(STOP);
1018                 BIO_printf(bio_err,"%ld %d bit public RSA's in %.2fs\n",
1019                         count,rsa_bits[j],d);
1020                 rsa_results[j][1]=d/(double)count;
1021 #endif
1022
1023                 if (rsa_count <= 1)
1024                         {
1025                         /* if longer than 10s, don't do any more */
1026                         for (j++; j<RSA_NUM; j++)
1027                                 rsa_doit[j]=0;
1028                         }
1029                 }
1030 #endif
1031
1032         RAND_bytes(buf,20);
1033 #ifndef NO_DSA
1034         for (j=0; j<DSA_NUM; j++)
1035                 {
1036                 unsigned int kk;
1037
1038                 if (!dsa_doit[j]) continue;
1039                 DSA_generate_key(dsa_key[j]);
1040 /*              DSA_sign_setup(dsa_key[j],NULL); */
1041                 rsa_num=DSA_sign(EVP_PKEY_DSA,buf,20,buf2,
1042                         &kk,dsa_key[j]);
1043                 pkey_print_message("sign","dsa",dsa_c[j][0],dsa_bits[j],
1044                         DSA_SECONDS);
1045                 Time_F(START);
1046                 for (count=0,run=1; COND(dsa_c[j][0]); count++)
1047                         {
1048                         rsa_num=DSA_sign(EVP_PKEY_DSA,buf,20,buf2,
1049                                 &kk,dsa_key[j]);
1050                         if (rsa_num <= 0)
1051                                 {
1052                                 BIO_printf(bio_err,"DSA sign failure\n");
1053                                 ERR_print_errors(bio_err);
1054                                 count=1;
1055                                 break;
1056                                 }
1057                         }
1058                 d=Time_F(STOP);
1059                 BIO_printf(bio_err,"%ld %d bit DSA signs in %.2fs\n",
1060                         count,dsa_bits[j],d);
1061                 dsa_results[j][0]=d/(double)count;
1062                 rsa_count=count;
1063
1064                 rsa_num2=DSA_verify(EVP_PKEY_DSA,buf,20,buf2,
1065                         kk,dsa_key[j]);
1066                 pkey_print_message("verify","dsa",dsa_c[j][1],dsa_bits[j],
1067                         DSA_SECONDS);
1068                 Time_F(START);
1069                 for (count=0,run=1; COND(dsa_c[j][1]); count++)
1070                         {
1071                         rsa_num2=DSA_verify(EVP_PKEY_DSA,buf,20,buf2,
1072                                 kk,dsa_key[j]);
1073                         if (rsa_num2 <= 0)
1074                                 {
1075                                 BIO_printf(bio_err,"DSA verify failure\n");
1076                                 ERR_print_errors(bio_err);
1077                                 count=1;
1078                                 break;
1079                                 }
1080                         }
1081                 d=Time_F(STOP);
1082                 BIO_printf(bio_err,"%ld %d bit DSA verify in %.2fs\n",
1083                         count,dsa_bits[j],d);
1084                 dsa_results[j][1]=d/(double)count;
1085
1086                 if (rsa_count <= 1)
1087                         {
1088                         /* if longer than 10s, don't do any more */
1089                         for (j++; j<DSA_NUM; j++)
1090                                 dsa_doit[j]=0;
1091                         }
1092                 }
1093 #endif
1094
1095         fprintf(stdout,"%s\n",SSLeay_version(SSLEAY_VERSION));
1096         fprintf(stdout,"%s\n",SSLeay_version(SSLEAY_BUILT_ON));
1097         printf("options:");
1098         printf("%s ",BN_options());
1099 #ifndef NO_MD2
1100         printf("%s ",MD2_options());
1101 #endif
1102 #ifndef NO_RC4
1103         printf("%s ",RC4_options());
1104 #endif
1105 #ifndef NO_DES
1106         printf("%s ",des_options());
1107 #endif
1108 #ifndef NO_IDEA
1109         printf("%s ",idea_options());
1110 #endif
1111 #ifndef NO_BLOWFISH
1112         printf("%s ",BF_options());
1113 #endif
1114         fprintf(stdout,"\n%s\n",SSLeay_version(SSLEAY_CFLAGS));
1115
1116         if (pr_header)
1117                 {
1118                 fprintf(stdout,"The 'numbers' are in 1000s of bytes per second processed.\n"); 
1119                 fprintf(stdout,"type        ");
1120                 for (j=0;  j<SIZE_NUM; j++)
1121                         fprintf(stdout,"%7d bytes",lengths[j]);
1122                 fprintf(stdout,"\n");
1123                 }
1124
1125         for (k=0; k<ALGOR_NUM; k++)
1126                 {
1127                 if (!doit[k]) continue;
1128                 fprintf(stdout,"%-13s",names[k]);
1129                 for (j=0; j<SIZE_NUM; j++)
1130                         {
1131                         if (results[k][j] > 10000)
1132                                 fprintf(stdout," %11.2fk",results[k][j]/1e3);
1133                         else
1134                                 fprintf(stdout," %11.2f ",results[k][j]);
1135                         }
1136                 fprintf(stdout,"\n");
1137                 }
1138 #ifndef NO_RSA
1139         j=1;
1140         for (k=0; k<RSA_NUM; k++)
1141                 {
1142                 if (!rsa_doit[k]) continue;
1143                 if (j)
1144                         {
1145                         printf("%18ssign    verify    sign/s verify/s\n"," ");
1146                         j=0;
1147                         }
1148                 fprintf(stdout,"rsa %4d bits %8.4fs %8.4fs %8.1f %8.1f",
1149                         rsa_bits[k],rsa_results[k][0],rsa_results[k][1],
1150                         1.0/rsa_results[k][0],1.0/rsa_results[k][1]);
1151                 fprintf(stdout,"\n");
1152                 }
1153 #endif
1154 #ifndef NO_DSA
1155         j=1;
1156         for (k=0; k<DSA_NUM; k++)
1157                 {
1158                 if (!dsa_doit[k]) continue;
1159                 if (j)  {
1160                         printf("%18ssign    verify    sign/s verify/s\n"," ");
1161                         j=0;
1162                         }
1163                 fprintf(stdout,"dsa %4d bits %8.4fs %8.4fs %8.1f %8.1f",
1164                         dsa_bits[k],dsa_results[k][0],dsa_results[k][1],
1165                         1.0/dsa_results[k][0],1.0/dsa_results[k][1]);
1166                 fprintf(stdout,"\n");
1167                 }
1168 #endif
1169         ret=0;
1170 end:
1171         if (buf != NULL) Free(buf);
1172         if (buf2 != NULL) Free(buf2);
1173 #ifndef NO_RSA
1174         for (i=0; i<RSA_NUM; i++)
1175                 if (rsa_key[i] != NULL)
1176                         RSA_free(rsa_key[i]);
1177 #endif
1178 #ifndef NO_DSA
1179         for (i=0; i<DSA_NUM; i++)
1180                 if (dsa_key[i] != NULL)
1181                         DSA_free(dsa_key[i]);
1182 #endif
1183         EXIT(ret);
1184         }
1185
1186 static void print_message(s,num,length)
1187 char *s;
1188 long num;
1189 int length;
1190         {
1191 #ifdef SIGALRM
1192         BIO_printf(bio_err,"Doing %s for %ds on %d size blocks: ",s,SECONDS,length);
1193         BIO_flush(bio_err);
1194         alarm(SECONDS);
1195 #else
1196         BIO_printf(bio_err,"Doing %s %ld times on %d size blocks: ",s,num,length);
1197         BIO_flush(bio_err);
1198 #endif
1199 #ifdef LINT
1200         num=num;
1201 #endif
1202         }
1203
1204 static void pkey_print_message(str,str2,num,bits,tm)
1205 char *str;
1206 char *str2;
1207 long num;
1208 int bits;
1209 int tm;
1210         {
1211 #ifdef SIGALRM
1212         BIO_printf(bio_err,"Doing %d bit %s %s's for %ds: ",bits,str,str2,tm);
1213         BIO_flush(bio_err);
1214         alarm(RSA_SECONDS);
1215 #else
1216         BIO_printf(bio_err,"Doing %ld %d bit %s %s's: ",num,bits,str,str2);
1217         BIO_flush(bio_err);
1218 #endif
1219 #ifdef LINT
1220         num=num;
1221 #endif
1222         }
1223