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