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