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