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