Pass phrase reorganisation.
[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 <openssl/crypto.h>
82 #include <openssl/rand.h>
83 #include <openssl/err.h>
84
85 #if !defined(MSDOS) && (!defined(VMS) || defined(__DECC))
86 #define TIMES
87 #endif
88
89 #ifndef _IRIX
90 #include <time.h>
91 #endif
92 #ifdef TIMES
93 #include <sys/types.h>
94 #include <sys/times.h>
95 #endif
96
97 /* Depending on the VMS version, the tms structure is perhaps defined.
98    The __TMS macro will show if it was.  If it wasn't defined, we should
99    undefine TIMES, since that tells the rest of the program how things
100    should be handled.                           -- Richard Levitte */
101 #if defined(VMS) && defined(__DECC) && !defined(__TMS)
102 #undef TIMES
103 #endif
104
105 #ifndef TIMES
106 #include <sys/timeb.h>
107 #endif
108
109 #if defined(sun) || defined(__ultrix)
110 #define _POSIX_SOURCE
111 #include <limits.h>
112 #include <sys/param.h>
113 #endif
114
115 #ifndef NO_DES
116 #include <openssl/des.h>
117 #endif
118 #ifndef NO_MD2
119 #include <openssl/md2.h>
120 #endif
121 #ifndef NO_MDC2
122 #include <openssl/mdc2.h>
123 #endif
124 #ifndef NO_MD5
125 #include <openssl/md5.h>
126 #endif
127 #ifndef NO_HMAC
128 #include <openssl/hmac.h>
129 #endif
130 #include <openssl/evp.h>
131 #ifndef NO_SHA
132 #include <openssl/sha.h>
133 #endif
134 #ifndef NO_RIPEMD
135 #include <openssl/ripemd.h>
136 #endif
137 #ifndef NO_RC4
138 #include <openssl/rc4.h>
139 #endif
140 #ifndef NO_RC5
141 #include <openssl/rc5.h>
142 #endif
143 #ifndef NO_RC2
144 #include <openssl/rc2.h>
145 #endif
146 #ifndef NO_IDEA
147 #include <openssl/idea.h>
148 #endif
149 #ifndef NO_BF
150 #include <openssl/blowfish.h>
151 #endif
152 #ifndef NO_CAST
153 #include <openssl/cast.h>
154 #endif
155 #ifndef NO_RSA
156 #include <openssl/rsa.h>
157 #include "./testrsa.h"
158 #endif
159 #include <openssl/x509.h>
160 #ifndef NO_DSA
161 #include "./testdsa.h"
162 #endif
163
164 /* The following if from times(3) man page.  It may need to be changed */
165 #ifndef HZ
166 # ifndef CLK_TCK
167 #  ifndef _BSD_CLK_TCK_ /* FreeBSD hack */
168 #   define HZ   100.0
169 #  else /* _BSD_CLK_TCK_ */
170 #   define HZ ((double)_BSD_CLK_TCK_)
171 #  endif
172 # else /* CLK_TCK */
173 #  define HZ ((double)CLK_TCK)
174 # endif
175 #endif
176
177 #undef BUFSIZE
178 #define BUFSIZE ((long)1024*8+1)
179 int run=0;
180
181 static double Time_F(int s);
182 static void print_message(char *s,long num,int length);
183 static void pkey_print_message(char *str,char *str2,long num,int bits,int sec);
184 #ifdef SIGALRM
185 #if defined(__STDC__) || defined(sgi) || defined(_AIX)
186 #define SIGRETTYPE void
187 #else
188 #define SIGRETTYPE int
189 #endif 
190
191 static SIGRETTYPE sig_done(int sig);
192 static SIGRETTYPE sig_done(int sig)
193         {
194         signal(SIGALRM,sig_done);
195         run=0;
196 #ifdef LINT
197         sig=sig;
198 #endif
199         }
200 #endif
201
202 #define START   0
203 #define STOP    1
204
205 static double Time_F(int s)
206         {
207         double ret;
208 #ifdef TIMES
209         static struct tms tstart,tend;
210
211         if (s == START)
212                 {
213                 times(&tstart);
214                 return(0);
215                 }
216         else
217                 {
218                 times(&tend);
219                 ret=((double)(tend.tms_utime-tstart.tms_utime))/HZ;
220                 return((ret < 1e-3)?1e-3:ret);
221                 }
222 #else /* !times() */
223         static struct timeb tstart,tend;
224         long i;
225
226         if (s == START)
227                 {
228                 ftime(&tstart);
229                 return(0);
230                 }
231         else
232                 {
233                 ftime(&tend);
234                 i=(long)tend.millitm-(long)tstart.millitm;
235                 ret=((double)(tend.time-tstart.time))+((double)i)/1000.0;
236                 return((ret < 0.001)?0.001:ret);
237                 }
238 #endif
239         }
240
241 int MAIN(int, char **);
242
243 int MAIN(int argc, char **argv)
244         {
245         unsigned char *buf=NULL,*buf2=NULL;
246         int mret=1;
247 #define ALGOR_NUM       14
248 #define SIZE_NUM        5
249 #define RSA_NUM         4
250 #define DSA_NUM         3
251         long count,rsa_count;
252         int i,j,k;
253         unsigned rsa_num,rsa_num2;
254 #ifndef NO_MD2
255         unsigned char md2[MD2_DIGEST_LENGTH];
256 #endif
257 #ifndef NO_MDC2
258         unsigned char mdc2[MDC2_DIGEST_LENGTH];
259 #endif
260 #ifndef NO_MD5
261         unsigned char md5[MD5_DIGEST_LENGTH];
262         unsigned char hmac[MD5_DIGEST_LENGTH];
263 #endif
264 #ifndef NO_SHA
265         unsigned char sha[SHA_DIGEST_LENGTH];
266 #endif
267 #ifndef NO_RIPEMD
268         unsigned char rmd160[RIPEMD160_DIGEST_LENGTH];
269 #endif
270 #ifndef NO_RC4
271         RC4_KEY rc4_ks;
272 #endif
273 #ifndef NO_RC5
274         RC5_32_KEY rc5_ks;
275 #endif
276 #ifndef NO_RC2
277         RC2_KEY rc2_ks;
278 #endif
279 #ifndef NO_IDEA
280         IDEA_KEY_SCHEDULE idea_ks;
281 #endif
282 #ifndef NO_BF
283         BF_KEY bf_ks;
284 #endif
285 #ifndef NO_CAST
286         CAST_KEY cast_ks;
287 #endif
288         static unsigned char key16[16]=
289                 {0x12,0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,
290                  0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12};
291         unsigned char iv[8];
292 #ifndef NO_DES
293         des_cblock *buf_as_des_cblock = NULL;
294         static des_cblock key ={0x12,0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0};
295         static des_cblock key2={0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12};
296         static des_cblock key3={0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12,0x34};
297         des_key_schedule sch,sch2,sch3;
298 #endif
299 #define D_MD2           0
300 #define D_MDC2          1
301 #define D_MD5           2
302 #define D_HMAC          3
303 #define D_SHA1          4
304 #define D_RMD160        5
305 #define D_RC4           6
306 #define D_CBC_DES       7
307 #define D_EDE3_DES      8
308 #define D_CBC_IDEA      9
309 #define D_CBC_RC2       10
310 #define D_CBC_RC5       11
311 #define D_CBC_BF        12
312 #define D_CBC_CAST      13
313         double d,results[ALGOR_NUM][SIZE_NUM];
314         static int lengths[SIZE_NUM]={8,64,256,1024,8*1024};
315         long c[ALGOR_NUM][SIZE_NUM];
316         static char *names[ALGOR_NUM]={
317                 "md2","mdc2","md5","hmac(md5)","sha1","rmd160","rc4",
318                 "des cbc","des ede3","idea cbc",
319                 "rc2 cbc","rc5-32/12 cbc","blowfish cbc","cast cbc"};
320 #define R_DSA_512       0
321 #define R_DSA_1024      1
322 #define R_DSA_2048      2
323 #define R_RSA_512       0
324 #define R_RSA_1024      1
325 #define R_RSA_2048      2
326 #define R_RSA_4096      3
327 #ifndef NO_RSA
328         RSA *rsa_key[RSA_NUM];
329         long rsa_c[RSA_NUM][2];
330         double rsa_results[RSA_NUM][2];
331         static unsigned int rsa_bits[RSA_NUM]={512,1024,2048,4096};
332         static unsigned char *rsa_data[RSA_NUM]=
333                 {test512,test1024,test2048,test4096};
334         static int rsa_data_length[RSA_NUM]={
335                 sizeof(test512),sizeof(test1024),
336                 sizeof(test2048),sizeof(test4096)};
337 #endif
338 #ifndef NO_DSA
339         DSA *dsa_key[DSA_NUM];
340         long dsa_c[DSA_NUM][2];
341         double dsa_results[DSA_NUM][2];
342         static unsigned int dsa_bits[DSA_NUM]={512,1024,2048};
343 #endif
344         int rsa_doit[RSA_NUM];
345         int dsa_doit[DSA_NUM];
346         int doit[ALGOR_NUM];
347         int pr_header=0;
348
349         apps_startup();
350         memset(results, 0, sizeof(results));
351 #ifndef NO_DSA
352         memset(dsa_key,0,sizeof(dsa_key));
353 #endif
354
355         if (bio_err == NULL)
356                 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
357                         BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
358
359 #ifndef NO_RSA
360         memset(rsa_key,0,sizeof(rsa_key));
361         for (i=0; i<RSA_NUM; i++)
362                 rsa_key[i]=NULL;
363 #endif
364
365         if ((buf=(unsigned char *)Malloc((int)BUFSIZE)) == NULL)
366                 {
367                 BIO_printf(bio_err,"out of memory\n");
368                 goto end;
369                 }
370 #ifndef NO_DES
371         buf_as_des_cblock = (des_cblock *)buf;
372 #endif
373         if ((buf2=(unsigned char *)Malloc((int)BUFSIZE)) == NULL)
374                 {
375                 BIO_printf(bio_err,"out of memory\n");
376                 goto end;
377                 }
378
379         memset(c,0,sizeof(c));
380         memset(iv,0,sizeof(iv));
381
382         for (i=0; i<ALGOR_NUM; i++)
383                 doit[i]=0;
384         for (i=0; i<RSA_NUM; i++)
385                 rsa_doit[i]=0;
386         for (i=0; i<DSA_NUM; i++)
387                 dsa_doit[i]=0;
388         
389         j=0;
390         argc--;
391         argv++;
392         while (argc)
393                 {
394 #ifndef NO_MD2
395                 if      (strcmp(*argv,"md2") == 0) doit[D_MD2]=1;
396                 else
397 #endif
398 #ifndef NO_MDC2
399                         if (strcmp(*argv,"mdc2") == 0) doit[D_MDC2]=1;
400                 else
401 #endif
402 #ifndef NO_MD5
403                         if (strcmp(*argv,"md5") == 0) doit[D_MD5]=1;
404                 else
405 #endif
406 #ifndef NO_MD5
407                         if (strcmp(*argv,"hmac") == 0) doit[D_HMAC]=1;
408                 else
409 #endif
410 #ifndef NO_SHA
411                         if (strcmp(*argv,"sha1") == 0) doit[D_SHA1]=1;
412                 else
413                         if (strcmp(*argv,"sha") == 0) doit[D_SHA1]=1;
414                 else
415 #endif
416 #ifndef NO_RIPEMD
417                         if (strcmp(*argv,"ripemd") == 0) doit[D_RMD160]=1;
418                 else
419                         if (strcmp(*argv,"rmd160") == 0) doit[D_RMD160]=1;
420                 else
421                         if (strcmp(*argv,"ripemd160") == 0) doit[D_RMD160]=1;
422                 else
423 #endif
424 #ifndef NO_RC4
425                         if (strcmp(*argv,"rc4") == 0) doit[D_RC4]=1;
426                 else 
427 #endif
428 #ifndef NO_DES
429                         if (strcmp(*argv,"des-cbc") == 0) doit[D_CBC_DES]=1;
430                 else    if (strcmp(*argv,"des-ede3") == 0) doit[D_EDE3_DES]=1;
431                 else
432 #endif
433 #ifndef NO_RSA
434 #ifdef RSAref
435                         if (strcmp(*argv,"rsaref") == 0) 
436                         {
437                         RSA_set_default_method(RSA_PKCS1_RSAref());
438                         j--;
439                         }
440                 else
441 #endif
442 #ifndef RSA_NULL
443                         if (strcmp(*argv,"openssl") == 0) 
444                         {
445                         RSA_set_default_method(RSA_PKCS1_SSLeay());
446                         j--;
447                         }
448                 else
449 #endif
450 #endif /* !NO_RSA */
451                      if (strcmp(*argv,"dsa512") == 0) dsa_doit[R_DSA_512]=2;
452                 else if (strcmp(*argv,"dsa1024") == 0) dsa_doit[R_DSA_1024]=2;
453                 else if (strcmp(*argv,"dsa2048") == 0) dsa_doit[R_DSA_2048]=2;
454                 else if (strcmp(*argv,"rsa512") == 0) rsa_doit[R_RSA_512]=2;
455                 else if (strcmp(*argv,"rsa1024") == 0) rsa_doit[R_RSA_1024]=2;
456                 else if (strcmp(*argv,"rsa2048") == 0) rsa_doit[R_RSA_2048]=2;
457                 else if (strcmp(*argv,"rsa4096") == 0) rsa_doit[R_RSA_4096]=2;
458                 else
459 #ifndef NO_RC2
460                      if (strcmp(*argv,"rc2-cbc") == 0) doit[D_CBC_RC2]=1;
461                 else if (strcmp(*argv,"rc2") == 0) doit[D_CBC_RC2]=1;
462                 else
463 #endif
464 #ifndef NO_RC5
465                      if (strcmp(*argv,"rc5-cbc") == 0) doit[D_CBC_RC5]=1;
466                 else if (strcmp(*argv,"rc5") == 0) doit[D_CBC_RC5]=1;
467                 else
468 #endif
469 #ifndef NO_IDEA
470                      if (strcmp(*argv,"idea-cbc") == 0) doit[D_CBC_IDEA]=1;
471                 else if (strcmp(*argv,"idea") == 0) doit[D_CBC_IDEA]=1;
472                 else
473 #endif
474 #ifndef NO_BF
475                      if (strcmp(*argv,"bf-cbc") == 0) doit[D_CBC_BF]=1;
476                 else if (strcmp(*argv,"blowfish") == 0) doit[D_CBC_BF]=1;
477                 else if (strcmp(*argv,"bf") == 0) doit[D_CBC_BF]=1;
478                 else
479 #endif
480 #ifndef NO_CAST
481                      if (strcmp(*argv,"cast-cbc") == 0) doit[D_CBC_CAST]=1;
482                 else if (strcmp(*argv,"cast") == 0) doit[D_CBC_CAST]=1;
483                 else if (strcmp(*argv,"cast5") == 0) doit[D_CBC_CAST]=1;
484                 else
485 #endif
486 #ifndef NO_DES
487                         if (strcmp(*argv,"des") == 0)
488                         {
489                         doit[D_CBC_DES]=1;
490                         doit[D_EDE3_DES]=1;
491                         }
492                 else
493 #endif
494 #ifndef NO_RSA
495                         if (strcmp(*argv,"rsa") == 0)
496                         {
497                         rsa_doit[R_RSA_512]=1;
498                         rsa_doit[R_RSA_1024]=1;
499                         rsa_doit[R_RSA_2048]=1;
500                         rsa_doit[R_RSA_4096]=1;
501                         }
502                 else
503 #endif
504 #ifndef NO_DSA
505                         if (strcmp(*argv,"dsa") == 0)
506                         {
507                         dsa_doit[R_DSA_512]=1;
508                         dsa_doit[R_DSA_1024]=1;
509                         }
510                 else
511 #endif
512                         {
513                         BIO_printf(bio_err,"bad value, pick one of\n");
514                         BIO_printf(bio_err,"md2      mdc2       md5      hmac      sha1    rmd160\n");
515 #ifndef NO_IDEA
516                         BIO_printf(bio_err,"idea-cbc ");
517 #endif
518 #ifndef NO_RC2
519                         BIO_printf(bio_err,"rc2-cbc  ");
520 #endif
521 #ifndef NO_RC5
522                         BIO_printf(bio_err,"rc5-cbc  ");
523 #endif
524 #ifndef NO_BF
525                         BIO_printf(bio_err,"bf-cbc");
526 #endif
527 #if !defined(NO_IDEA) && !defined(NO_RC2) && !defined(NO_BF) && !defined(NO_RC5)
528                         BIO_printf(bio_err,"\n");
529 #endif
530                         BIO_printf(bio_err,"des-cbc  des-ede3 ");
531 #ifndef NO_RC4
532                         BIO_printf(bio_err,"rc4");
533 #endif
534 #ifndef NO_RSA
535                         BIO_printf(bio_err,"\nrsa512   rsa1024  rsa2048  rsa4096\n");
536 #endif
537 #ifndef NO_DSA
538                         BIO_printf(bio_err,"\ndsa512   dsa1024  dsa2048\n");
539 #endif
540                         BIO_printf(bio_err,"idea     rc2      des      rsa    blowfish\n");
541                         goto end;
542                         }
543                 argc--;
544                 argv++;
545                 j++;
546                 }
547
548         if (j == 0)
549                 {
550                 for (i=0; i<ALGOR_NUM; i++)
551                         doit[i]=1;
552                 for (i=0; i<RSA_NUM; i++)
553                         rsa_doit[i]=1;
554                 for (i=0; i<DSA_NUM; i++)
555                         dsa_doit[i]=1;
556                 }
557         for (i=0; i<ALGOR_NUM; i++)
558                 if (doit[i]) pr_header++;
559
560 #ifndef TIMES
561         BIO_printf(bio_err,"To get the most accurate results, try to run this\n");
562         BIO_printf(bio_err,"program when this computer is idle.\n");
563 #endif
564
565 #ifndef NO_RSA
566         for (i=0; i<RSA_NUM; i++)
567                 {
568                 unsigned char *p;
569
570                 p=rsa_data[i];
571                 rsa_key[i]=d2i_RSAPrivateKey(NULL,&p,rsa_data_length[i]);
572                 if (rsa_key[i] == NULL)
573                         {
574                         BIO_printf(bio_err,"internal error loading RSA key number %d\n",i);
575                         goto end;
576                         }
577 #if 0
578                 else
579                         {
580                         BIO_printf(bio_err,"Loaded RSA key, %d bit modulus and e= 0x",BN_num_bits(rsa_key[i]->n));
581                         BN_print(bio_err,rsa_key[i]->e);
582                         BIO_printf(bio_err,"\n");
583                         }
584 #endif
585                 }
586 #endif
587
588 #ifndef NO_DSA
589         dsa_key[0]=get_dsa512();
590         dsa_key[1]=get_dsa1024();
591         dsa_key[2]=get_dsa2048();
592 #endif
593
594 #ifndef NO_DES
595         des_set_key_unchecked(&key,sch);
596         des_set_key_unchecked(&key2,sch2);
597         des_set_key_unchecked(&key3,sch3);
598 #endif
599 #ifndef NO_IDEA
600         idea_set_encrypt_key(key16,&idea_ks);
601 #endif
602 #ifndef NO_RC4
603         RC4_set_key(&rc4_ks,16,key16);
604 #endif
605 #ifndef NO_RC2
606         RC2_set_key(&rc2_ks,16,key16,128);
607 #endif
608 #ifndef NO_RC5
609         RC5_32_set_key(&rc5_ks,16,key16,12);
610 #endif
611 #ifndef NO_BF
612         BF_set_key(&bf_ks,16,key16);
613 #endif
614 #ifndef NO_CAST
615         CAST_set_key(&cast_ks,16,key16);
616 #endif
617 #ifndef NO_RSA
618         memset(rsa_c,0,sizeof(rsa_c));
619 #endif
620 #ifndef SIGALRM
621 #ifndef NO_DES
622         BIO_printf(bio_err,"First we calculate the approximate speed ...\n");
623         count=10;
624         do      {
625                 long i;
626                 count*=2;
627                 Time_F(START);
628                 for (i=count; i; i--)
629                         des_ecb_encrypt(buf_as_des_cblock,buf_as_des_cblock,
630                                 &(sch[0]),DES_ENCRYPT);
631                 d=Time_F(STOP);
632                 } while (d <3);
633         c[D_MD2][0]=count/10;
634         c[D_MDC2][0]=count/10;
635         c[D_MD5][0]=count;
636         c[D_HMAC][0]=count;
637         c[D_SHA1][0]=count;
638         c[D_RMD160][0]=count;
639         c[D_RC4][0]=count*5;
640         c[D_CBC_DES][0]=count;
641         c[D_EDE3_DES][0]=count/3;
642         c[D_CBC_IDEA][0]=count;
643         c[D_CBC_RC2][0]=count;
644         c[D_CBC_RC5][0]=count;
645         c[D_CBC_BF][0]=count;
646         c[D_CBC_CAST][0]=count;
647
648         for (i=1; i<SIZE_NUM; i++)
649                 {
650                 c[D_MD2][i]=c[D_MD2][0]*4*lengths[0]/lengths[i];
651                 c[D_MDC2][i]=c[D_MDC2][0]*4*lengths[0]/lengths[i];
652                 c[D_MD5][i]=c[D_MD5][0]*4*lengths[0]/lengths[i];
653                 c[D_HMAC][i]=c[D_HMAC][0]*4*lengths[0]/lengths[i];
654                 c[D_SHA1][i]=c[D_SHA1][0]*4*lengths[0]/lengths[i];
655                 c[D_RMD160][i]=c[D_RMD160][0]*4*lengths[0]/lengths[i];
656                 }
657         for (i=1; i<SIZE_NUM; i++)
658                 {
659                 long l0,l1;
660
661                 l0=(long)lengths[i-1];
662                 l1=(long)lengths[i];
663                 c[D_RC4][i]=c[D_RC4][i-1]*l0/l1;
664                 c[D_CBC_DES][i]=c[D_CBC_DES][i-1]*l0/l1;
665                 c[D_EDE3_DES][i]=c[D_EDE3_DES][i-1]*l0/l1;
666                 c[D_CBC_IDEA][i]=c[D_CBC_IDEA][i-1]*l0/l1;
667                 c[D_CBC_RC2][i]=c[D_CBC_RC2][i-1]*l0/l1;
668                 c[D_CBC_RC5][i]=c[D_CBC_RC5][i-1]*l0/l1;
669                 c[D_CBC_BF][i]=c[D_CBC_BF][i-1]*l0/l1;
670                 c[D_CBC_CAST][i]=c[D_CBC_CAST][i-1]*l0/l1;
671                 }
672 #ifndef NO_RSA
673         rsa_c[R_RSA_512][0]=count/2000;
674         rsa_c[R_RSA_512][1]=count/400;
675         for (i=1; i<RSA_NUM; i++)
676                 {
677                 rsa_c[i][0]=rsa_c[i-1][0]/8;
678                 rsa_c[i][1]=rsa_c[i-1][1]/4;
679                 if ((rsa_doit[i] <= 1) && (rsa_c[i][0] == 0))
680                         rsa_doit[i]=0;
681                 else
682                         {
683                         if (rsa_c[i][0] == 0)
684                                 {
685                                 rsa_c[i][0]=1;
686                                 rsa_c[i][1]=20;
687                                 }
688                         }                               
689                 }
690 #endif
691
692         dsa_c[R_DSA_512][0]=count/1000;
693         dsa_c[R_DSA_512][1]=count/1000/2;
694         for (i=1; i<DSA_NUM; i++)
695                 {
696                 dsa_c[i][0]=dsa_c[i-1][0]/4;
697                 dsa_c[i][1]=dsa_c[i-1][1]/4;
698                 if ((dsa_doit[i] <= 1) && (dsa_c[i][0] == 0))
699                         dsa_doit[i]=0;
700                 else
701                         {
702                         if (dsa_c[i] == 0)
703                                 {
704                                 dsa_c[i][0]=1;
705                                 dsa_c[i][1]=1;
706                                 }
707                         }                               
708                 }
709
710 #define COND(d) (count < (d))
711 #define COUNT(d) (d)
712 #else
713 /* not worth fixing */
714 # error "You cannot disable DES on systems without SIGALRM."
715 #endif /* NO_DES */
716 #else
717 #define COND(c) (run)
718 #define COUNT(d) (count)
719         signal(SIGALRM,sig_done);
720 #endif /* SIGALRM */
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 #if !defined(NO_MD5) && !defined(NO_HMAC)
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_SHA
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_RIPEMD
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,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,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                                         iv,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                                         iv,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                                         iv,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_BF
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                                         iv,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                                         iv,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_pseudo_bytes(buf,36);
971 #ifndef NO_RSA
972         for (j=0; j<RSA_NUM; j++)
973                 {
974                 int ret;
975                 if (!rsa_doit[j]) continue;
976                 ret=RSA_sign(NID_md5_sha1, buf,36, buf2, &rsa_num, rsa_key[j]);
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                         ret=RSA_sign(NID_md5_sha1, buf,36, buf2, &rsa_num,
984                                                                  rsa_key[j]);
985                         if (ret <= 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                 ret=RSA_verify(NID_md5_sha1, buf,36, buf2, rsa_num, rsa_key[j]);
1001                 pkey_print_message("public","rsa",rsa_c[j][1],rsa_bits[j],
1002                         RSA_SECONDS);
1003                 Time_F(START);
1004                 for (count=0,run=1; COND(rsa_c[j][1]); count++)
1005                         {
1006                         ret=RSA_verify(NID_md5_sha1, buf,36, buf2, rsa_num,
1007                                                                 rsa_key[j]);
1008                         if (ret <= 0)
1009                                 {
1010                                 BIO_printf(bio_err,"RSA verify failure\n");
1011                                 ERR_print_errors(bio_err);
1012                                 count=1;
1013                                 break;
1014                                 }
1015                         }
1016                 d=Time_F(STOP);
1017                 BIO_printf(bio_err,"%ld %d bit public RSA's in %.2fs\n",
1018                         count,rsa_bits[j],d);
1019                 rsa_results[j][1]=d/(double)count;
1020 #endif
1021
1022                 if (rsa_count <= 1)
1023                         {
1024                         /* if longer than 10s, don't do any more */
1025                         for (j++; j<RSA_NUM; j++)
1026                                 rsa_doit[j]=0;
1027                         }
1028                 }
1029 #endif
1030
1031         RAND_pseudo_bytes(buf,20);
1032 #ifndef NO_DSA
1033         for (j=0; j<DSA_NUM; j++)
1034                 {
1035                 unsigned int kk;
1036
1037                 if (!dsa_doit[j]) continue;
1038                 DSA_generate_key(dsa_key[j]);
1039 /*              DSA_sign_setup(dsa_key[j],NULL); */
1040                 rsa_num=DSA_sign(EVP_PKEY_DSA,buf,20,buf2,
1041                         &kk,dsa_key[j]);
1042                 pkey_print_message("sign","dsa",dsa_c[j][0],dsa_bits[j],
1043                         DSA_SECONDS);
1044                 Time_F(START);
1045                 for (count=0,run=1; COND(dsa_c[j][0]); count++)
1046                         {
1047                         rsa_num=DSA_sign(EVP_PKEY_DSA,buf,20,buf2,
1048                                 &kk,dsa_key[j]);
1049                         if (rsa_num == 0)
1050                                 {
1051                                 BIO_printf(bio_err,"DSA sign failure\n");
1052                                 ERR_print_errors(bio_err);
1053                                 count=1;
1054                                 break;
1055                                 }
1056                         }
1057                 d=Time_F(STOP);
1058                 BIO_printf(bio_err,"%ld %d bit DSA signs in %.2fs\n",
1059                         count,dsa_bits[j],d);
1060                 dsa_results[j][0]=d/(double)count;
1061                 rsa_count=count;
1062
1063                 rsa_num2=DSA_verify(EVP_PKEY_DSA,buf,20,buf2,
1064                         kk,dsa_key[j]);
1065                 pkey_print_message("verify","dsa",dsa_c[j][1],dsa_bits[j],
1066                         DSA_SECONDS);
1067                 Time_F(START);
1068                 for (count=0,run=1; COND(dsa_c[j][1]); count++)
1069                         {
1070                         rsa_num2=DSA_verify(EVP_PKEY_DSA,buf,20,buf2,
1071                                 kk,dsa_key[j]);
1072                         if (rsa_num2 == 0)
1073                                 {
1074                                 BIO_printf(bio_err,"DSA verify failure\n");
1075                                 ERR_print_errors(bio_err);
1076                                 count=1;
1077                                 break;
1078                                 }
1079                         }
1080                 d=Time_F(STOP);
1081                 BIO_printf(bio_err,"%ld %d bit DSA verify in %.2fs\n",
1082                         count,dsa_bits[j],d);
1083                 dsa_results[j][1]=d/(double)count;
1084
1085                 if (rsa_count <= 1)
1086                         {
1087                         /* if longer than 10s, don't do any more */
1088                         for (j++; j<DSA_NUM; j++)
1089                                 dsa_doit[j]=0;
1090                         }
1091                 }
1092 #endif
1093
1094         fprintf(stdout,"%s\n",SSLeay_version(SSLEAY_VERSION));
1095         fprintf(stdout,"%s\n",SSLeay_version(SSLEAY_BUILT_ON));
1096         printf("options:");
1097         printf("%s ",BN_options());
1098 #ifndef NO_MD2
1099         printf("%s ",MD2_options());
1100 #endif
1101 #ifndef NO_RC4
1102         printf("%s ",RC4_options());
1103 #endif
1104 #ifndef NO_DES
1105         printf("%s ",des_options());
1106 #endif
1107 #ifndef NO_IDEA
1108         printf("%s ",idea_options());
1109 #endif
1110 #ifndef NO_BF
1111         printf("%s ",BF_options());
1112 #endif
1113         fprintf(stdout,"\n%s\n",SSLeay_version(SSLEAY_CFLAGS));
1114
1115         if (pr_header)
1116                 {
1117                 fprintf(stdout,"The 'numbers' are in 1000s of bytes per second processed.\n"); 
1118                 fprintf(stdout,"type        ");
1119                 for (j=0;  j<SIZE_NUM; j++)
1120                         fprintf(stdout,"%7d bytes",lengths[j]);
1121                 fprintf(stdout,"\n");
1122                 }
1123
1124         for (k=0; k<ALGOR_NUM; k++)
1125                 {
1126                 if (!doit[k]) continue;
1127                 fprintf(stdout,"%-13s",names[k]);
1128                 for (j=0; j<SIZE_NUM; j++)
1129                         {
1130                         if (results[k][j] > 10000)
1131                                 fprintf(stdout," %11.2fk",results[k][j]/1e3);
1132                         else
1133                                 fprintf(stdout," %11.2f ",results[k][j]);
1134                         }
1135                 fprintf(stdout,"\n");
1136                 }
1137 #ifndef NO_RSA
1138         j=1;
1139         for (k=0; k<RSA_NUM; k++)
1140                 {
1141                 if (!rsa_doit[k]) continue;
1142                 if (j)
1143                         {
1144                         printf("%18ssign    verify    sign/s verify/s\n"," ");
1145                         j=0;
1146                         }
1147                 fprintf(stdout,"rsa %4u bits %8.4fs %8.4fs %8.1f %8.1f",
1148                         rsa_bits[k],rsa_results[k][0],rsa_results[k][1],
1149                         1.0/rsa_results[k][0],1.0/rsa_results[k][1]);
1150                 fprintf(stdout,"\n");
1151                 }
1152 #endif
1153 #ifndef NO_DSA
1154         j=1;
1155         for (k=0; k<DSA_NUM; k++)
1156                 {
1157                 if (!dsa_doit[k]) continue;
1158                 if (j)  {
1159                         printf("%18ssign    verify    sign/s verify/s\n"," ");
1160                         j=0;
1161                         }
1162                 fprintf(stdout,"dsa %4u bits %8.4fs %8.4fs %8.1f %8.1f",
1163                         dsa_bits[k],dsa_results[k][0],dsa_results[k][1],
1164                         1.0/dsa_results[k][0],1.0/dsa_results[k][1]);
1165                 fprintf(stdout,"\n");
1166                 }
1167 #endif
1168         mret=0;
1169 end:
1170         if (buf != NULL) Free(buf);
1171         if (buf2 != NULL) Free(buf2);
1172 #ifndef NO_RSA
1173         for (i=0; i<RSA_NUM; i++)
1174                 if (rsa_key[i] != NULL)
1175                         RSA_free(rsa_key[i]);
1176 #endif
1177 #ifndef NO_DSA
1178         for (i=0; i<DSA_NUM; i++)
1179                 if (dsa_key[i] != NULL)
1180                         DSA_free(dsa_key[i]);
1181 #endif
1182         EXIT(mret);
1183         }
1184
1185 static void print_message(char *s, long num, int length)
1186         {
1187 #ifdef SIGALRM
1188         BIO_printf(bio_err,"Doing %s for %ds on %d size blocks: ",s,SECONDS,length);
1189         (void)BIO_flush(bio_err);
1190         alarm(SECONDS);
1191 #else
1192         BIO_printf(bio_err,"Doing %s %ld times on %d size blocks: ",s,num,length);
1193         (void)BIO_flush(bio_err);
1194 #endif
1195 #ifdef LINT
1196         num=num;
1197 #endif
1198         }
1199
1200 static void pkey_print_message(char *str, char *str2, long num, int bits,
1201              int tm)
1202         {
1203 #ifdef SIGALRM
1204         BIO_printf(bio_err,"Doing %d bit %s %s's for %ds: ",bits,str,str2,tm);
1205         (void)BIO_flush(bio_err);
1206         alarm(RSA_SECONDS);
1207 #else
1208         BIO_printf(bio_err,"Doing %ld %d bit %s %s's: ",num,bits,str,str2);
1209         (void)BIO_flush(bio_err);
1210 #endif
1211 #ifdef LINT
1212         num=num;
1213 #endif
1214         }
1215