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