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