1 /* apps/speed.c -*- mode:C; c-file-style: "eay" -*- */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
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.
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).
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.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
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)"
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
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.]
58 /* ====================================================================
59 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
61 * Portions of the attached software ("Contribution") are developed by
62 * SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project.
64 * The Contribution is licensed pursuant to the OpenSSL open source
65 * license provided above.
67 * The ECDH and ECDSA speed test software is originally written by
68 * Sumit Gupta of Sun Microsystems Laboratories.
72 /* most of this code has been pilfered from my libdes speed.c program */
74 #ifndef OPENSSL_NO_SPEED
78 #define RSA_SECONDS 10
79 #define DSA_SECONDS 10
80 #define ECDSA_SECONDS 10
81 #define ECDH_SECONDS 10
83 /* 11-Sep-92 Andrew Daviel Support for Silicon Graphics IRIX added */
84 /* 06-Apr-92 Luke Brennan Support for VMS and add extra signal calls */
87 #define PROG speed_main
95 #ifdef OPENSSL_NO_STDIO
98 #include <openssl/crypto.h>
99 #include <openssl/rand.h>
100 #include <openssl/err.h>
101 #include <openssl/evp.h>
102 #include <openssl/objects.h>
103 #if !defined(OPENSSL_SYS_MSDOS)
104 #include OPENSSL_UNISTD
107 #ifndef OPENSSL_SYS_NETWARE
111 #if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(OPENSSL_SYS_MACOSX)
113 #elif !defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_VXWORKS) && (!defined(OPENSSL_SYS_VMS) || defined(__DECC))
116 #if !defined(_UNICOS) && !defined(__OpenBSD__) && !defined(sgi) && !defined(__FreeBSD__) && !(defined(__bsdi) || defined(__bsdi__)) && !defined(_AIX) && !defined(OPENSSL_SYS_MPE) && !defined(__NetBSD__) && !defined(OPENSSL_SYS_VXWORKS) /* FIXME */
120 #if defined(OPENSSL_SYS_NETWARE)
130 # include <sys/types.h>
131 # include <sys/times.h>
134 # include <sys/time.h>
135 # include <sys/resource.h>
138 /* Depending on the VMS version, the tms structure is perhaps defined.
139 The __TMS macro will show if it was. If it wasn't defined, we should
140 undefine TIMES, since that tells the rest of the program how things
141 should be handled. -- Richard Levitte */
142 #if defined(OPENSSL_SYS_VMS_DECC) && !defined(__TMS)
147 #include <sys/timeb.h>
150 #if !defined(TIMES) && !defined(TIMEB) && !defined(USE_TOD) && !defined(OPENSSL_SYS_VXWORKS) && !defined(OPENSSL_SYS_NETWARE)
151 #error "It seems neither struct tms nor struct timeb is supported in this platform!"
154 #if defined(sun) || defined(__ultrix)
155 #define _POSIX_SOURCE
157 #include <sys/param.h>
160 #include <openssl/bn.h>
161 #ifndef OPENSSL_NO_DES
162 #include <openssl/des.h>
164 #ifndef OPENSSL_NO_AES
165 #include <openssl/aes.h>
167 #ifndef OPENSSL_NO_MD2
168 #include <openssl/md2.h>
170 #ifndef OPENSSL_NO_MDC2
171 #include <openssl/mdc2.h>
173 #ifndef OPENSSL_NO_MD4
174 #include <openssl/md4.h>
176 #ifndef OPENSSL_NO_MD5
177 #include <openssl/md5.h>
179 #ifndef OPENSSL_NO_HMAC
180 #include <openssl/hmac.h>
182 #include <openssl/evp.h>
183 #ifndef OPENSSL_NO_SHA
184 #include <openssl/sha.h>
186 #ifndef OPENSSL_NO_RIPEMD
187 #include <openssl/ripemd.h>
189 #ifndef OPENSSL_NO_RC4
190 #include <openssl/rc4.h>
192 #ifndef OPENSSL_NO_RC5
193 #include <openssl/rc5.h>
195 #ifndef OPENSSL_NO_RC2
196 #include <openssl/rc2.h>
198 #ifndef OPENSSL_NO_IDEA
199 #include <openssl/idea.h>
201 #ifndef OPENSSL_NO_BF
202 #include <openssl/blowfish.h>
204 #ifndef OPENSSL_NO_CAST
205 #include <openssl/cast.h>
207 #ifndef OPENSSL_NO_RSA
208 #include <openssl/rsa.h>
209 #include "./testrsa.h"
211 #include <openssl/x509.h>
212 #ifndef OPENSSL_NO_DSA
213 #include <openssl/dsa.h>
214 #include "./testdsa.h"
216 #ifndef OPENSSL_NO_ECDSA
217 #include <openssl/ecdsa.h>
219 #ifndef OPENSSL_NO_ECDH
220 #include <openssl/ecdh.h>
224 * The following "HZ" timing stuff should be sync'd up with the code in
225 * crypto/tmdiff.[ch]. That appears to try to do the same job, though I think
226 * this code is more up to date than libcrypto's so there may be features to
227 * migrate over first. This is used in two places further down AFAICS.
228 * The point is that nothing in openssl actually *uses* that tmdiff stuff, so
229 * either speed.c should be using it or it should go because it's obviously not
230 * useful enough. Anyone want to do a janitorial job on this?
233 /* The following if from times(3) man page. It may need to be changed */
235 # if defined(_SC_CLK_TCK) \
236 && (!defined(OPENSSL_SYS_VMS) || __CTRL_VER >= 70000000)
237 # define HZ sysconf(_SC_CLK_TCK)
240 # ifndef _BSD_CLK_TCK_ /* FreeBSD hack */
242 # else /* _BSD_CLK_TCK_ */
243 # define HZ ((double)_BSD_CLK_TCK_)
246 # define HZ ((double)CLK_TCK)
251 #if !defined(OPENSSL_SYS_VMS) && !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MACINTOSH_CLASSIC) && !defined(OPENSSL_SYS_OS2) && !defined(OPENSSL_SYS_NETWARE)
256 #define BUFSIZE ((long)1024*8+1)
259 static char ftime_used = 0, times_used = 0, gettimeofday_used = 0, getrusage_used = 0;
261 static int usertime=1;
263 static double Time_F(int s);
264 static void print_message(const char *s,long num,int length);
265 static void pkey_print_message(const char *str, const char *str2,
266 long num, int bits, int sec);
267 static void print_result(int alg,int run_no,int count,double time_used);
269 static int do_multi(int multi);
278 #define MAX_ECDH_SIZE 256
280 static const char *names[ALGOR_NUM]={
281 "md2","mdc2","md4","md5","hmac(md5)","sha1","rmd160","rc4",
282 "des cbc","des ede3","idea cbc",
283 "rc2 cbc","rc5-32/12 cbc","blowfish cbc","cast cbc",
284 "aes-128 cbc","aes-192 cbc","aes-256 cbc","evp","sha256","sha512"};
285 static double results[ALGOR_NUM][SIZE_NUM];
286 static int lengths[SIZE_NUM]={16,64,256,1024,8*1024};
287 static double rsa_results[RSA_NUM][2];
288 static double dsa_results[DSA_NUM][2];
289 #ifndef OPENSSL_NO_ECDSA
290 static double ecdsa_results[EC_NUM][2];
292 #ifndef OPENSSL_NO_ECDH
293 static double ecdh_results[EC_NUM][1];
296 #if defined(OPENSSL_NO_DSA) && !(defined(OPENSSL_NO_ECDSA) && defined(OPENSSL_NO_ECDH))
297 static const char rnd_seed[] = "string to make the random number generator think it has entropy";
298 static int rnd_fake = 0;
302 #if defined(__STDC__) || defined(sgi) || defined(_AIX)
303 #define SIGRETTYPE void
305 #define SIGRETTYPE int
308 static SIGRETTYPE sig_done(int sig);
309 static SIGRETTYPE sig_done(int sig)
311 signal(SIGALRM,sig_done);
322 #if defined(OPENSSL_SYS_NETWARE)
324 /* for NetWare the best we can do is use clock() which returns the
325 * time, in hundredths of a second, since the NLM began executing
327 static double Time_F(int s)
331 static clock_t tstart,tend;
341 ret=(double)((double)(tend)-(double)(tstart));
342 return((ret < 0.001)?0.001:ret);
348 static double Time_F(int s)
355 static struct rusage tstart,tend;
360 getrusage(RUSAGE_SELF,&tstart);
367 getrusage(RUSAGE_SELF,&tend);
368 i=(long)tend.ru_utime.tv_usec-(long)tstart.ru_utime.tv_usec;
369 ret=((double)(tend.ru_utime.tv_sec-tstart.ru_utime.tv_sec))
370 +((double)i)/1000000.0;
371 return((ret < 0.001)?0.001:ret);
376 static struct timeval tstart,tend;
379 gettimeofday_used = 1;
382 gettimeofday(&tstart,NULL);
387 gettimeofday(&tend,NULL);
388 i=(long)tend.tv_usec-(long)tstart.tv_usec;
389 ret=((double)(tend.tv_sec-tstart.tv_sec))+((double)i)/1000000.0;
390 return((ret < 0.001)?0.001:ret);
393 #else /* ndef USE_TOD */
398 static struct tms tstart,tend;
410 ret=(double)(tend.tms_utime-tstart.tms_utime) / ret;
411 return((ret < 1e-3)?1e-3:ret);
414 # endif /* times() */
415 # if defined(TIMES) && defined(TIMEB)
418 # ifdef OPENSSL_SYS_VXWORKS
420 static unsigned long tick_start, tick_end;
424 tick_start = tickGet();
429 tick_end = tickGet();
430 ret = (double)(tick_end - tick_start) / (double)sysClkRateGet();
431 return((ret < 0.001)?0.001:ret);
434 # elif defined(TIMEB)
436 static struct timeb tstart,tend;
448 i=(long)tend.millitm-(long)tstart.millitm;
449 ret=((double)(tend.time-tstart.time))+((double)i)/1000.0;
450 return((ret < 0.001)?0.001:ret);
456 #endif /* if defined(OPENSSL_SYS_NETWARE) */
459 #ifndef OPENSSL_NO_ECDH
460 static const int KDF1_SHA1_len = 20;
461 static void *KDF1_SHA1(const void *in, size_t inlen, void *out, size_t *outlen)
463 #ifndef OPENSSL_NO_SHA
464 if (*outlen < SHA_DIGEST_LENGTH)
467 *outlen = SHA_DIGEST_LENGTH;
468 return SHA1(in, inlen, out);
471 #endif /* OPENSSL_NO_SHA */
473 #endif /* OPENSSL_NO_ECDH */
476 int MAIN(int, char **);
478 int MAIN(int argc, char **argv)
480 #ifndef OPENSSL_NO_ENGINE
483 unsigned char *buf=NULL,*buf2=NULL;
485 long count=0,save_count=0;
487 #if !defined(OPENSSL_NO_RSA) || !defined(OPENSSL_NO_DSA)
490 #ifndef OPENSSL_NO_RSA
493 unsigned char md[EVP_MAX_MD_SIZE];
494 #ifndef OPENSSL_NO_MD2
495 unsigned char md2[MD2_DIGEST_LENGTH];
497 #ifndef OPENSSL_NO_MDC2
498 unsigned char mdc2[MDC2_DIGEST_LENGTH];
500 #ifndef OPENSSL_NO_MD4
501 unsigned char md4[MD4_DIGEST_LENGTH];
503 #ifndef OPENSSL_NO_MD5
504 unsigned char md5[MD5_DIGEST_LENGTH];
505 unsigned char hmac[MD5_DIGEST_LENGTH];
507 #ifndef OPENSSL_NO_SHA
508 unsigned char sha[SHA_DIGEST_LENGTH];
509 #ifndef OPENSSL_NO_SHA256
510 unsigned char sha256[SHA256_DIGEST_LENGTH];
512 #ifndef OPENSSL_NO_SHA512
513 unsigned char sha512[SHA512_DIGEST_LENGTH];
516 #ifndef OPENSSL_NO_RIPEMD
517 unsigned char rmd160[RIPEMD160_DIGEST_LENGTH];
519 #ifndef OPENSSL_NO_RC4
522 #ifndef OPENSSL_NO_RC5
525 #ifndef OPENSSL_NO_RC2
528 #ifndef OPENSSL_NO_IDEA
529 IDEA_KEY_SCHEDULE idea_ks;
531 #ifndef OPENSSL_NO_BF
534 #ifndef OPENSSL_NO_CAST
537 static const unsigned char key16[16]=
538 {0x12,0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,
539 0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12};
540 #ifndef OPENSSL_NO_AES
541 static const unsigned char key24[24]=
542 {0x12,0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,
543 0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12,
544 0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12,0x34};
545 static const unsigned char key32[32]=
546 {0x12,0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,
547 0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12,
548 0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12,0x34,
549 0x78,0x9a,0xbc,0xde,0xf0,0x12,0x34,0x56};
551 #ifndef OPENSSL_NO_AES
552 #define MAX_BLOCK_SIZE 128
554 #define MAX_BLOCK_SIZE 64
556 unsigned char DES_iv[8];
557 unsigned char iv[MAX_BLOCK_SIZE/8];
558 #ifndef OPENSSL_NO_DES
559 DES_cblock *buf_as_des_cblock = NULL;
560 static DES_cblock key ={0x12,0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0};
561 static DES_cblock key2={0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12};
562 static DES_cblock key3={0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12,0x34};
563 DES_key_schedule sch;
564 DES_key_schedule sch2;
565 DES_key_schedule sch3;
567 #ifndef OPENSSL_NO_AES
568 AES_KEY aes_ks1, aes_ks2, aes_ks3;
580 #define D_CBC_IDEA 10
584 #define D_CBC_CAST 14
585 #define D_CBC_128_AES 15
586 #define D_CBC_192_AES 16
587 #define D_CBC_256_AES 17
592 long c[ALGOR_NUM][SIZE_NUM];
618 #ifndef OPENSSL_NO_RSA
619 RSA *rsa_key[RSA_NUM];
620 long rsa_c[RSA_NUM][2];
621 static unsigned int rsa_bits[RSA_NUM]={512,1024,2048,4096};
622 static unsigned char *rsa_data[RSA_NUM]=
623 {test512,test1024,test2048,test4096};
624 static int rsa_data_length[RSA_NUM]={
625 sizeof(test512),sizeof(test1024),
626 sizeof(test2048),sizeof(test4096)};
628 #ifndef OPENSSL_NO_DSA
629 DSA *dsa_key[DSA_NUM];
630 long dsa_c[DSA_NUM][2];
631 static unsigned int dsa_bits[DSA_NUM]={512,1024,2048};
633 #ifndef OPENSSL_NO_EC
634 /* We only test over the following curves as they are representative,
635 * To add tests over more curves, simply add the curve NID
636 * and curve name to the following arrays and increase the
637 * EC_NUM value accordingly.
639 static unsigned int test_curves[EC_NUM] =
643 NID_X9_62_prime192v1,
645 NID_X9_62_prime256v1,
660 static const char * test_curves_names[EC_NUM] =
681 static int test_curves_bits[EC_NUM] =
683 160, 192, 224, 256, 384, 521,
684 163, 233, 283, 409, 571,
685 163, 233, 283, 409, 571
690 #ifndef OPENSSL_NO_ECDSA
691 unsigned char ecdsasig[256];
692 unsigned int ecdsasiglen;
693 EC_KEY *ecdsa[EC_NUM];
694 long ecdsa_c[EC_NUM][2];
697 #ifndef OPENSSL_NO_ECDH
698 EC_KEY *ecdh_a[EC_NUM], *ecdh_b[EC_NUM];
699 unsigned char secret_a[MAX_ECDH_SIZE], secret_b[MAX_ECDH_SIZE];
700 int secret_size_a, secret_size_b;
703 long ecdh_c[EC_NUM][2];
706 int rsa_doit[RSA_NUM];
707 int dsa_doit[DSA_NUM];
708 #ifndef OPENSSL_NO_ECDSA
709 int ecdsa_doit[EC_NUM];
711 #ifndef OPENSSL_NO_ECDH
712 int ecdh_doit[EC_NUM];
716 const EVP_CIPHER *evp_cipher=NULL;
717 const EVP_MD *evp_md=NULL;
728 memset(results, 0, sizeof(results));
729 #ifndef OPENSSL_NO_DSA
730 memset(dsa_key,0,sizeof(dsa_key));
732 #ifndef OPENSSL_NO_ECDSA
733 for (i=0; i<EC_NUM; i++) ecdsa[i] = NULL;
735 #ifndef OPENSSL_NO_ECDH
736 for (i=0; i<EC_NUM; i++)
745 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
746 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
748 if (!load_config(bio_err, NULL))
751 #ifndef OPENSSL_NO_RSA
752 memset(rsa_key,0,sizeof(rsa_key));
753 for (i=0; i<RSA_NUM; i++)
757 if ((buf=(unsigned char *)OPENSSL_malloc((int)BUFSIZE)) == NULL)
759 BIO_printf(bio_err,"out of memory\n");
762 #ifndef OPENSSL_NO_DES
763 buf_as_des_cblock = (DES_cblock *)buf;
765 if ((buf2=(unsigned char *)OPENSSL_malloc((int)BUFSIZE)) == NULL)
767 BIO_printf(bio_err,"out of memory\n");
771 memset(c,0,sizeof(c));
772 memset(DES_iv,0,sizeof(DES_iv));
773 memset(iv,0,sizeof(iv));
775 for (i=0; i<ALGOR_NUM; i++)
777 for (i=0; i<RSA_NUM; i++)
779 for (i=0; i<DSA_NUM; i++)
781 #ifndef OPENSSL_NO_ECDSA
782 for (i=0; i<EC_NUM; i++)
785 #ifndef OPENSSL_NO_ECDH
786 for (i=0; i<EC_NUM; i++)
796 if ((argc > 0) && (strcmp(*argv,"-elapsed") == 0))
799 j--; /* Otherwise, -elapsed gets confused with
802 else if ((argc > 0) && (strcmp(*argv,"-evp") == 0))
808 BIO_printf(bio_err,"no EVP given\n");
811 evp_cipher=EVP_get_cipherbyname(*argv);
814 evp_md=EVP_get_digestbyname(*argv);
816 if(!evp_cipher && !evp_md)
818 BIO_printf(bio_err,"%s is an unknown cipher or digest\n",*argv);
823 else if (argc > 0 && !strcmp(*argv,"-decrypt"))
826 j--; /* Otherwise, -elapsed gets confused with
829 #ifndef OPENSSL_NO_ENGINE
830 else if ((argc > 0) && (strcmp(*argv,"-engine") == 0))
836 BIO_printf(bio_err,"no engine given\n");
839 e = setup_engine(bio_err, *argv, 0);
840 /* j will be increased again further down. We just
841 don't want speed to confuse an engine with an
842 algorithm, especially when none is given (which
843 means all of them should be run) */
848 else if ((argc > 0) && (strcmp(*argv,"-multi") == 0))
854 BIO_printf(bio_err,"no multi count given\n");
860 BIO_printf(bio_err,"bad multi count\n");
863 j--; /* Otherwise, -mr gets confused with
867 else if (argc > 0 && !strcmp(*argv,"-mr"))
870 j--; /* Otherwise, -mr gets confused with
874 #ifndef OPENSSL_NO_MD2
875 if (strcmp(*argv,"md2") == 0) doit[D_MD2]=1;
878 #ifndef OPENSSL_NO_MDC2
879 if (strcmp(*argv,"mdc2") == 0) doit[D_MDC2]=1;
882 #ifndef OPENSSL_NO_MD4
883 if (strcmp(*argv,"md4") == 0) doit[D_MD4]=1;
886 #ifndef OPENSSL_NO_MD5
887 if (strcmp(*argv,"md5") == 0) doit[D_MD5]=1;
890 #ifndef OPENSSL_NO_MD5
891 if (strcmp(*argv,"hmac") == 0) doit[D_HMAC]=1;
894 #ifndef OPENSSL_NO_SHA
895 if (strcmp(*argv,"sha1") == 0) doit[D_SHA1]=1;
897 if (strcmp(*argv,"sha") == 0) doit[D_SHA1]=1,
901 #ifndef OPENSSL_NO_SHA256
902 if (strcmp(*argv,"sha256") == 0) doit[D_SHA256]=1;
905 #ifndef OPENSSL_NO_SHA512
906 if (strcmp(*argv,"sha512") == 0) doit[D_SHA512]=1;
910 #ifndef OPENSSL_NO_RIPEMD
911 if (strcmp(*argv,"ripemd") == 0) doit[D_RMD160]=1;
913 if (strcmp(*argv,"rmd160") == 0) doit[D_RMD160]=1;
915 if (strcmp(*argv,"ripemd160") == 0) doit[D_RMD160]=1;
918 #ifndef OPENSSL_NO_RC4
919 if (strcmp(*argv,"rc4") == 0) doit[D_RC4]=1;
922 #ifndef OPENSSL_NO_DES
923 if (strcmp(*argv,"des-cbc") == 0) doit[D_CBC_DES]=1;
924 else if (strcmp(*argv,"des-ede3") == 0) doit[D_EDE3_DES]=1;
927 #ifndef OPENSSL_NO_AES
928 if (strcmp(*argv,"aes-128-cbc") == 0) doit[D_CBC_128_AES]=1;
929 else if (strcmp(*argv,"aes-192-cbc") == 0) doit[D_CBC_192_AES]=1;
930 else if (strcmp(*argv,"aes-256-cbc") == 0) doit[D_CBC_256_AES]=1;
933 #ifndef OPENSSL_NO_RSA
934 #if 0 /* was: #ifdef RSAref */
935 if (strcmp(*argv,"rsaref") == 0)
937 RSA_set_default_openssl_method(RSA_PKCS1_RSAref());
943 if (strcmp(*argv,"openssl") == 0)
945 RSA_set_default_method(RSA_PKCS1_SSLeay());
950 #endif /* !OPENSSL_NO_RSA */
951 if (strcmp(*argv,"dsa512") == 0) dsa_doit[R_DSA_512]=2;
952 else if (strcmp(*argv,"dsa1024") == 0) dsa_doit[R_DSA_1024]=2;
953 else if (strcmp(*argv,"dsa2048") == 0) dsa_doit[R_DSA_2048]=2;
954 else if (strcmp(*argv,"rsa512") == 0) rsa_doit[R_RSA_512]=2;
955 else if (strcmp(*argv,"rsa1024") == 0) rsa_doit[R_RSA_1024]=2;
956 else if (strcmp(*argv,"rsa2048") == 0) rsa_doit[R_RSA_2048]=2;
957 else if (strcmp(*argv,"rsa4096") == 0) rsa_doit[R_RSA_4096]=2;
959 #ifndef OPENSSL_NO_RC2
960 if (strcmp(*argv,"rc2-cbc") == 0) doit[D_CBC_RC2]=1;
961 else if (strcmp(*argv,"rc2") == 0) doit[D_CBC_RC2]=1;
964 #ifndef OPENSSL_NO_RC5
965 if (strcmp(*argv,"rc5-cbc") == 0) doit[D_CBC_RC5]=1;
966 else if (strcmp(*argv,"rc5") == 0) doit[D_CBC_RC5]=1;
969 #ifndef OPENSSL_NO_IDEA
970 if (strcmp(*argv,"idea-cbc") == 0) doit[D_CBC_IDEA]=1;
971 else if (strcmp(*argv,"idea") == 0) doit[D_CBC_IDEA]=1;
974 #ifndef OPENSSL_NO_BF
975 if (strcmp(*argv,"bf-cbc") == 0) doit[D_CBC_BF]=1;
976 else if (strcmp(*argv,"blowfish") == 0) doit[D_CBC_BF]=1;
977 else if (strcmp(*argv,"bf") == 0) doit[D_CBC_BF]=1;
980 #ifndef OPENSSL_NO_CAST
981 if (strcmp(*argv,"cast-cbc") == 0) doit[D_CBC_CAST]=1;
982 else if (strcmp(*argv,"cast") == 0) doit[D_CBC_CAST]=1;
983 else if (strcmp(*argv,"cast5") == 0) doit[D_CBC_CAST]=1;
986 #ifndef OPENSSL_NO_DES
987 if (strcmp(*argv,"des") == 0)
994 #ifndef OPENSSL_NO_AES
995 if (strcmp(*argv,"aes") == 0)
997 doit[D_CBC_128_AES]=1;
998 doit[D_CBC_192_AES]=1;
999 doit[D_CBC_256_AES]=1;
1003 #ifndef OPENSSL_NO_RSA
1004 if (strcmp(*argv,"rsa") == 0)
1006 rsa_doit[R_RSA_512]=1;
1007 rsa_doit[R_RSA_1024]=1;
1008 rsa_doit[R_RSA_2048]=1;
1009 rsa_doit[R_RSA_4096]=1;
1013 #ifndef OPENSSL_NO_DSA
1014 if (strcmp(*argv,"dsa") == 0)
1016 dsa_doit[R_DSA_512]=1;
1017 dsa_doit[R_DSA_1024]=1;
1018 dsa_doit[R_DSA_2048]=1;
1022 #ifndef OPENSSL_NO_ECDSA
1023 if (strcmp(*argv,"ecdsap160") == 0) ecdsa_doit[R_EC_P160]=2;
1024 else if (strcmp(*argv,"ecdsap192") == 0) ecdsa_doit[R_EC_P192]=2;
1025 else if (strcmp(*argv,"ecdsap224") == 0) ecdsa_doit[R_EC_P224]=2;
1026 else if (strcmp(*argv,"ecdsap256") == 0) ecdsa_doit[R_EC_P256]=2;
1027 else if (strcmp(*argv,"ecdsap384") == 0) ecdsa_doit[R_EC_P384]=2;
1028 else if (strcmp(*argv,"ecdsap521") == 0) ecdsa_doit[R_EC_P521]=2;
1029 else if (strcmp(*argv,"ecdsak163") == 0) ecdsa_doit[R_EC_K163]=2;
1030 else if (strcmp(*argv,"ecdsak233") == 0) ecdsa_doit[R_EC_K233]=2;
1031 else if (strcmp(*argv,"ecdsak283") == 0) ecdsa_doit[R_EC_K283]=2;
1032 else if (strcmp(*argv,"ecdsak409") == 0) ecdsa_doit[R_EC_K409]=2;
1033 else if (strcmp(*argv,"ecdsak571") == 0) ecdsa_doit[R_EC_K571]=2;
1034 else if (strcmp(*argv,"ecdsab163") == 0) ecdsa_doit[R_EC_B163]=2;
1035 else if (strcmp(*argv,"ecdsab233") == 0) ecdsa_doit[R_EC_B233]=2;
1036 else if (strcmp(*argv,"ecdsab283") == 0) ecdsa_doit[R_EC_B283]=2;
1037 else if (strcmp(*argv,"ecdsab409") == 0) ecdsa_doit[R_EC_B409]=2;
1038 else if (strcmp(*argv,"ecdsab571") == 0) ecdsa_doit[R_EC_B571]=2;
1039 else if (strcmp(*argv,"ecdsa") == 0)
1041 for (i=0; i < EC_NUM; i++)
1046 #ifndef OPENSSL_NO_ECDH
1047 if (strcmp(*argv,"ecdhp160") == 0) ecdh_doit[R_EC_P160]=2;
1048 else if (strcmp(*argv,"ecdhp192") == 0) ecdh_doit[R_EC_P192]=2;
1049 else if (strcmp(*argv,"ecdhp224") == 0) ecdh_doit[R_EC_P224]=2;
1050 else if (strcmp(*argv,"ecdhp256") == 0) ecdh_doit[R_EC_P256]=2;
1051 else if (strcmp(*argv,"ecdhp384") == 0) ecdh_doit[R_EC_P384]=2;
1052 else if (strcmp(*argv,"ecdhp521") == 0) ecdh_doit[R_EC_P521]=2;
1053 else if (strcmp(*argv,"ecdhk163") == 0) ecdh_doit[R_EC_K163]=2;
1054 else if (strcmp(*argv,"ecdhk233") == 0) ecdh_doit[R_EC_K233]=2;
1055 else if (strcmp(*argv,"ecdhk283") == 0) ecdh_doit[R_EC_K283]=2;
1056 else if (strcmp(*argv,"ecdhk409") == 0) ecdh_doit[R_EC_K409]=2;
1057 else if (strcmp(*argv,"ecdhk571") == 0) ecdh_doit[R_EC_K571]=2;
1058 else if (strcmp(*argv,"ecdhb163") == 0) ecdh_doit[R_EC_B163]=2;
1059 else if (strcmp(*argv,"ecdhb233") == 0) ecdh_doit[R_EC_B233]=2;
1060 else if (strcmp(*argv,"ecdhb283") == 0) ecdh_doit[R_EC_B283]=2;
1061 else if (strcmp(*argv,"ecdhb409") == 0) ecdh_doit[R_EC_B409]=2;
1062 else if (strcmp(*argv,"ecdhb571") == 0) ecdh_doit[R_EC_B571]=2;
1063 else if (strcmp(*argv,"ecdh") == 0)
1065 for (i=0; i < EC_NUM; i++)
1071 BIO_printf(bio_err,"Error: bad option or value\n");
1072 BIO_printf(bio_err,"\n");
1073 BIO_printf(bio_err,"Available values:\n");
1074 #ifndef OPENSSL_NO_MD2
1075 BIO_printf(bio_err,"md2 ");
1077 #ifndef OPENSSL_NO_MDC2
1078 BIO_printf(bio_err,"mdc2 ");
1080 #ifndef OPENSSL_NO_MD4
1081 BIO_printf(bio_err,"md4 ");
1083 #ifndef OPENSSL_NO_MD5
1084 BIO_printf(bio_err,"md5 ");
1085 #ifndef OPENSSL_NO_HMAC
1086 BIO_printf(bio_err,"hmac ");
1089 #ifndef OPENSSL_NO_SHA1
1090 BIO_printf(bio_err,"sha1 ");
1092 #ifndef OPENSSL_NO_SHA256
1093 BIO_printf(bio_err,"sha256 ");
1095 #ifndef OPENSSL_NO_SHA512
1096 BIO_printf(bio_err,"sha512 ");
1098 #ifndef OPENSSL_NO_RIPEMD160
1099 BIO_printf(bio_err,"rmd160");
1101 #if !defined(OPENSSL_NO_MD2) || !defined(OPENSSL_NO_MDC2) || \
1102 !defined(OPENSSL_NO_MD4) || !defined(OPENSSL_NO_MD5) || \
1103 !defined(OPENSSL_NO_SHA1) || !defined(OPENSSL_NO_RIPEMD160)
1104 BIO_printf(bio_err,"\n");
1107 #ifndef OPENSSL_NO_IDEA
1108 BIO_printf(bio_err,"idea-cbc ");
1110 #ifndef OPENSSL_NO_RC2
1111 BIO_printf(bio_err,"rc2-cbc ");
1113 #ifndef OPENSSL_NO_RC5
1114 BIO_printf(bio_err,"rc5-cbc ");
1116 #ifndef OPENSSL_NO_BF
1117 BIO_printf(bio_err,"bf-cbc");
1119 #if !defined(OPENSSL_NO_IDEA) || !defined(OPENSSL_NO_RC2) || \
1120 !defined(OPENSSL_NO_BF) || !defined(OPENSSL_NO_RC5)
1121 BIO_printf(bio_err,"\n");
1123 #ifndef OPENSSL_NO_DES
1124 BIO_printf(bio_err,"des-cbc des-ede3 ");
1126 #ifndef OPENSSL_NO_AES
1127 BIO_printf(bio_err,"aes-128-cbc aes-192-cbc aes-256-cbc ");
1129 #ifndef OPENSSL_NO_RC4
1130 BIO_printf(bio_err,"rc4");
1132 BIO_printf(bio_err,"\n");
1134 #ifndef OPENSSL_NO_RSA
1135 BIO_printf(bio_err,"rsa512 rsa1024 rsa2048 rsa4096\n");
1138 #ifndef OPENSSL_NO_DSA
1139 BIO_printf(bio_err,"dsa512 dsa1024 dsa2048\n");
1141 #ifndef OPENSSL_NO_ECDSA
1142 BIO_printf(bio_err,"ecdsap160 ecdsap192 ecdsap224 ecdsap256 ecdsap384 ecdsap521\n");
1143 BIO_printf(bio_err,"ecdsak163 ecdsak233 ecdsak283 ecdsak409 ecdsak571\n");
1144 BIO_printf(bio_err,"ecdsab163 ecdsab233 ecdsab283 ecdsab409 ecdsab571\n");
1145 BIO_printf(bio_err,"ecdsa\n");
1147 #ifndef OPENSSL_NO_ECDH
1148 BIO_printf(bio_err,"ecdhp160 ecdhp192 ecdhp224 ecdhp256 ecdhp384 ecdhp521\n");
1149 BIO_printf(bio_err,"ecdhk163 ecdhk233 ecdhk283 ecdhk409 ecdhk571\n");
1150 BIO_printf(bio_err,"ecdhb163 ecdhb233 ecdhb283 ecdhb409 ecdhb571\n");
1151 BIO_printf(bio_err,"ecdh\n");
1154 #ifndef OPENSSL_NO_IDEA
1155 BIO_printf(bio_err,"idea ");
1157 #ifndef OPENSSL_NO_RC2
1158 BIO_printf(bio_err,"rc2 ");
1160 #ifndef OPENSSL_NO_DES
1161 BIO_printf(bio_err,"des ");
1163 #ifndef OPENSSL_NO_AES
1164 BIO_printf(bio_err,"aes ");
1166 #ifndef OPENSSL_NO_RSA
1167 BIO_printf(bio_err,"rsa ");
1169 #ifndef OPENSSL_NO_BF
1170 BIO_printf(bio_err,"blowfish");
1172 #if !defined(OPENSSL_NO_IDEA) || !defined(OPENSSL_NO_RC2) || \
1173 !defined(OPENSSL_NO_DES) || !defined(OPENSSL_NO_RSA) || \
1174 !defined(OPENSSL_NO_BF) || !defined(OPENSSL_NO_AES)
1175 BIO_printf(bio_err,"\n");
1178 BIO_printf(bio_err,"\n");
1179 BIO_printf(bio_err,"Available options:\n");
1180 #if defined(TIMES) || defined(USE_TOD)
1181 BIO_printf(bio_err,"-elapsed measure time in real time instead of CPU user time.\n");
1183 #ifndef OPENSSL_NO_ENGINE
1184 BIO_printf(bio_err,"-engine e use engine e, possibly a hardware device.\n");
1186 BIO_printf(bio_err,"-evp e use EVP e.\n");
1187 BIO_printf(bio_err,"-decrypt time decryption instead of encryption (only EVP).\n");
1188 BIO_printf(bio_err,"-mr produce machine readable output.\n");
1190 BIO_printf(bio_err,"-multi n run n benchmarks in parallel.\n");
1200 if(multi && do_multi(multi))
1206 for (i=0; i<ALGOR_NUM; i++)
1211 for (i=0; i<RSA_NUM; i++)
1213 for (i=0; i<DSA_NUM; i++)
1216 for (i=0; i<ALGOR_NUM; i++)
1217 if (doit[i]) pr_header++;
1219 if (usertime == 0 && !mr)
1220 BIO_printf(bio_err,"You have chosen to measure elapsed time instead of user CPU time.\n");
1221 if (usertime <= 0 && !mr)
1223 BIO_printf(bio_err,"To get the most accurate results, try to run this\n");
1224 BIO_printf(bio_err,"program when this computer is idle.\n");
1227 #ifndef OPENSSL_NO_RSA
1228 for (i=0; i<RSA_NUM; i++)
1230 const unsigned char *p;
1233 rsa_key[i]=d2i_RSAPrivateKey(NULL,&p,rsa_data_length[i]);
1234 if (rsa_key[i] == NULL)
1236 BIO_printf(bio_err,"internal error loading RSA key number %d\n",i);
1242 BIO_printf(bio_err,mr ? "+RK:%d:"
1243 : "Loaded RSA key, %d bit modulus and e= 0x",
1244 BN_num_bits(rsa_key[i]->n));
1245 BN_print(bio_err,rsa_key[i]->e);
1246 BIO_printf(bio_err,"\n");
1252 #ifndef OPENSSL_NO_DSA
1253 dsa_key[0]=get_dsa512();
1254 dsa_key[1]=get_dsa1024();
1255 dsa_key[2]=get_dsa2048();
1258 #ifndef OPENSSL_NO_DES
1259 DES_set_key_unchecked(&key,&sch);
1260 DES_set_key_unchecked(&key2,&sch2);
1261 DES_set_key_unchecked(&key3,&sch3);
1263 #ifndef OPENSSL_NO_AES
1264 AES_set_encrypt_key(key16,128,&aes_ks1);
1265 AES_set_encrypt_key(key24,192,&aes_ks2);
1266 AES_set_encrypt_key(key32,256,&aes_ks3);
1268 #ifndef OPENSSL_NO_IDEA
1269 idea_set_encrypt_key(key16,&idea_ks);
1271 #ifndef OPENSSL_NO_RC4
1272 RC4_set_key(&rc4_ks,16,key16);
1274 #ifndef OPENSSL_NO_RC2
1275 RC2_set_key(&rc2_ks,16,key16,128);
1277 #ifndef OPENSSL_NO_RC5
1278 RC5_32_set_key(&rc5_ks,16,key16,12);
1280 #ifndef OPENSSL_NO_BF
1281 BF_set_key(&bf_ks,16,key16);
1283 #ifndef OPENSSL_NO_CAST
1284 CAST_set_key(&cast_ks,16,key16);
1286 #ifndef OPENSSL_NO_RSA
1287 memset(rsa_c,0,sizeof(rsa_c));
1290 #ifndef OPENSSL_NO_DES
1291 BIO_printf(bio_err,"First we calculate the approximate speed ...\n");
1297 for (it=count; it; it--)
1298 DES_ecb_encrypt(buf_as_des_cblock,buf_as_des_cblock,
1303 c[D_MD2][0]=count/10;
1304 c[D_MDC2][0]=count/10;
1309 c[D_RMD160][0]=count;
1310 c[D_RC4][0]=count*5;
1311 c[D_CBC_DES][0]=count;
1312 c[D_EDE3_DES][0]=count/3;
1313 c[D_CBC_IDEA][0]=count;
1314 c[D_CBC_RC2][0]=count;
1315 c[D_CBC_RC5][0]=count;
1316 c[D_CBC_BF][0]=count;
1317 c[D_CBC_CAST][0]=count;
1318 c[D_CBC_128_AES][0]=count;
1319 c[D_CBC_192_AES][0]=count;
1320 c[D_CBC_256_AES][0]=count;
1321 c[D_SHA256][0]=count;
1322 c[D_SHA512][0]=count;
1324 for (i=1; i<SIZE_NUM; i++)
1326 c[D_MD2][i]=c[D_MD2][0]*4*lengths[0]/lengths[i];
1327 c[D_MDC2][i]=c[D_MDC2][0]*4*lengths[0]/lengths[i];
1328 c[D_MD4][i]=c[D_MD4][0]*4*lengths[0]/lengths[i];
1329 c[D_MD5][i]=c[D_MD5][0]*4*lengths[0]/lengths[i];
1330 c[D_HMAC][i]=c[D_HMAC][0]*4*lengths[0]/lengths[i];
1331 c[D_SHA1][i]=c[D_SHA1][0]*4*lengths[0]/lengths[i];
1332 c[D_RMD160][i]=c[D_RMD160][0]*4*lengths[0]/lengths[i];
1333 c[D_SHA256][i]=c[D_SHA256][0]*4*lengths[0]/lengths[i];
1334 c[D_SHA512][i]=c[D_SHA512][0]*4*lengths[0]/lengths[i];
1336 for (i=1; i<SIZE_NUM; i++)
1340 l0=(long)lengths[i-1];
1341 l1=(long)lengths[i];
1342 c[D_RC4][i]=c[D_RC4][i-1]*l0/l1;
1343 c[D_CBC_DES][i]=c[D_CBC_DES][i-1]*l0/l1;
1344 c[D_EDE3_DES][i]=c[D_EDE3_DES][i-1]*l0/l1;
1345 c[D_CBC_IDEA][i]=c[D_CBC_IDEA][i-1]*l0/l1;
1346 c[D_CBC_RC2][i]=c[D_CBC_RC2][i-1]*l0/l1;
1347 c[D_CBC_RC5][i]=c[D_CBC_RC5][i-1]*l0/l1;
1348 c[D_CBC_BF][i]=c[D_CBC_BF][i-1]*l0/l1;
1349 c[D_CBC_CAST][i]=c[D_CBC_CAST][i-1]*l0/l1;
1350 c[D_CBC_128_AES][i]=c[D_CBC_128_AES][i-1]*l0/l1;
1351 c[D_CBC_192_AES][i]=c[D_CBC_192_AES][i-1]*l0/l1;
1352 c[D_CBC_256_AES][i]=c[D_CBC_256_AES][i-1]*l0/l1;
1354 #ifndef OPENSSL_NO_RSA
1355 rsa_c[R_RSA_512][0]=count/2000;
1356 rsa_c[R_RSA_512][1]=count/400;
1357 for (i=1; i<RSA_NUM; i++)
1359 rsa_c[i][0]=rsa_c[i-1][0]/8;
1360 rsa_c[i][1]=rsa_c[i-1][1]/4;
1361 if ((rsa_doit[i] <= 1) && (rsa_c[i][0] == 0))
1365 if (rsa_c[i][0] == 0)
1374 #ifndef OPENSSL_NO_DSA
1375 dsa_c[R_DSA_512][0]=count/1000;
1376 dsa_c[R_DSA_512][1]=count/1000/2;
1377 for (i=1; i<DSA_NUM; i++)
1379 dsa_c[i][0]=dsa_c[i-1][0]/4;
1380 dsa_c[i][1]=dsa_c[i-1][1]/4;
1381 if ((dsa_doit[i] <= 1) && (dsa_c[i][0] == 0))
1394 #ifndef OPENSSL_NO_ECDSA
1395 ecdsa_c[R_EC_P160][0]=count/1000;
1396 ecdsa_c[R_EC_P160][1]=count/1000/2;
1397 for (i=R_EC_P192; i<=R_EC_P521; i++)
1399 ecdsa_c[i][0]=ecdsa_c[i-1][0]/2;
1400 ecdsa_c[i][1]=ecdsa_c[i-1][1]/2;
1401 if ((ecdsa_doit[i] <= 1) && (ecdsa_c[i][0] == 0))
1405 if (ecdsa_c[i] == 0)
1412 ecdsa_c[R_EC_K163][0]=count/1000;
1413 ecdsa_c[R_EC_K163][1]=count/1000/2;
1414 for (i=R_EC_K233; i<=R_EC_K571; i++)
1416 ecdsa_c[i][0]=ecdsa_c[i-1][0]/2;
1417 ecdsa_c[i][1]=ecdsa_c[i-1][1]/2;
1418 if ((ecdsa_doit[i] <= 1) && (ecdsa_c[i][0] == 0))
1422 if (ecdsa_c[i] == 0)
1429 ecdsa_c[R_EC_B163][0]=count/1000;
1430 ecdsa_c[R_EC_B163][1]=count/1000/2;
1431 for (i=R_EC_B233; i<=R_EC_B571; i++)
1433 ecdsa_c[i][0]=ecdsa_c[i-1][0]/2;
1434 ecdsa_c[i][1]=ecdsa_c[i-1][1]/2;
1435 if ((ecdsa_doit[i] <= 1) && (ecdsa_c[i][0] == 0))
1439 if (ecdsa_c[i] == 0)
1448 #ifndef OPENSSL_NO_ECDH
1449 ecdh_c[R_EC_P160][0]=count/1000;
1450 ecdh_c[R_EC_P160][1]=count/1000;
1451 for (i=R_EC_P192; i<=R_EC_P521; i++)
1453 ecdh_c[i][0]=ecdh_c[i-1][0]/2;
1454 ecdh_c[i][1]=ecdh_c[i-1][1]/2;
1455 if ((ecdh_doit[i] <= 1) && (ecdh_c[i][0] == 0))
1466 ecdh_c[R_EC_K163][0]=count/1000;
1467 ecdh_c[R_EC_K163][1]=count/1000;
1468 for (i=R_EC_K233; i<=R_EC_K571; i++)
1470 ecdh_c[i][0]=ecdh_c[i-1][0]/2;
1471 ecdh_c[i][1]=ecdh_c[i-1][1]/2;
1472 if ((ecdh_doit[i] <= 1) && (ecdh_c[i][0] == 0))
1483 ecdh_c[R_EC_B163][0]=count/1000;
1484 ecdh_c[R_EC_B163][1]=count/1000;
1485 for (i=R_EC_B233; i<=R_EC_B571; i++)
1487 ecdh_c[i][0]=ecdh_c[i-1][0]/2;
1488 ecdh_c[i][1]=ecdh_c[i-1][1]/2;
1489 if ((ecdh_doit[i] <= 1) && (ecdh_c[i][0] == 0))
1502 #define COND(d) (count < (d))
1503 #define COUNT(d) (d)
1505 /* not worth fixing */
1506 # error "You cannot disable DES on systems without SIGALRM."
1507 #endif /* OPENSSL_NO_DES */
1509 #define COND(c) (run)
1510 #define COUNT(d) (count)
1511 signal(SIGALRM,sig_done);
1512 #endif /* SIGALRM */
1514 #ifndef OPENSSL_NO_MD2
1517 for (j=0; j<SIZE_NUM; j++)
1519 print_message(names[D_MD2],c[D_MD2][j],lengths[j]);
1521 for (count=0,run=1; COND(c[D_MD2][j]); count++)
1522 EVP_Digest(buf,(unsigned long)lengths[j],&(md2[0]),NULL,EVP_md2(),NULL);
1524 print_result(D_MD2,j,count,d);
1528 #ifndef OPENSSL_NO_MDC2
1531 for (j=0; j<SIZE_NUM; j++)
1533 print_message(names[D_MDC2],c[D_MDC2][j],lengths[j]);
1535 for (count=0,run=1; COND(c[D_MDC2][j]); count++)
1536 EVP_Digest(buf,(unsigned long)lengths[j],&(mdc2[0]),NULL,EVP_mdc2(),NULL);
1538 print_result(D_MDC2,j,count,d);
1543 #ifndef OPENSSL_NO_MD4
1546 for (j=0; j<SIZE_NUM; j++)
1548 print_message(names[D_MD4],c[D_MD4][j],lengths[j]);
1550 for (count=0,run=1; COND(c[D_MD4][j]); count++)
1551 EVP_Digest(&(buf[0]),(unsigned long)lengths[j],&(md4[0]),NULL,EVP_md4(),NULL);
1553 print_result(D_MD4,j,count,d);
1558 #ifndef OPENSSL_NO_MD5
1561 for (j=0; j<SIZE_NUM; j++)
1563 print_message(names[D_MD5],c[D_MD5][j],lengths[j]);
1565 for (count=0,run=1; COND(c[D_MD5][j]); count++)
1566 EVP_Digest(&(buf[0]),(unsigned long)lengths[j],&(md5[0]),NULL,EVP_get_digestbyname("md5"),NULL);
1568 print_result(D_MD5,j,count,d);
1573 #if !defined(OPENSSL_NO_MD5) && !defined(OPENSSL_NO_HMAC)
1578 HMAC_CTX_init(&hctx);
1579 HMAC_Init_ex(&hctx,(unsigned char *)"This is a key...",
1580 16,EVP_md5(), NULL);
1582 for (j=0; j<SIZE_NUM; j++)
1584 print_message(names[D_HMAC],c[D_HMAC][j],lengths[j]);
1586 for (count=0,run=1; COND(c[D_HMAC][j]); count++)
1588 HMAC_Init_ex(&hctx,NULL,0,NULL,NULL);
1589 HMAC_Update(&hctx,buf,lengths[j]);
1590 HMAC_Final(&hctx,&(hmac[0]),NULL);
1593 print_result(D_HMAC,j,count,d);
1595 HMAC_CTX_cleanup(&hctx);
1598 #ifndef OPENSSL_NO_SHA
1601 for (j=0; j<SIZE_NUM; j++)
1603 print_message(names[D_SHA1],c[D_SHA1][j],lengths[j]);
1605 for (count=0,run=1; COND(c[D_SHA1][j]); count++)
1606 EVP_Digest(buf,(unsigned long)lengths[j],&(sha[0]),NULL,EVP_sha1(),NULL);
1608 print_result(D_SHA1,j,count,d);
1612 #ifndef OPENSSL_NO_SHA256
1615 for (j=0; j<SIZE_NUM; j++)
1617 print_message(names[D_SHA256],c[D_SHA256][j],lengths[j]);
1619 for (count=0,run=1; COND(c[D_SHA256][j]); count++)
1620 SHA256(buf,lengths[j],sha256);
1622 print_result(D_SHA256,j,count,d);
1627 #ifndef OPENSSL_NO_SHA512
1630 for (j=0; j<SIZE_NUM; j++)
1632 print_message(names[D_SHA512],c[D_SHA512][j],lengths[j]);
1634 for (count=0,run=1; COND(c[D_SHA512][j]); count++)
1635 SHA512(buf,lengths[j],sha512);
1637 print_result(D_SHA512,j,count,d);
1643 #ifndef OPENSSL_NO_RIPEMD
1646 for (j=0; j<SIZE_NUM; j++)
1648 print_message(names[D_RMD160],c[D_RMD160][j],lengths[j]);
1650 for (count=0,run=1; COND(c[D_RMD160][j]); count++)
1651 EVP_Digest(buf,(unsigned long)lengths[j],&(rmd160[0]),NULL,EVP_ripemd160(),NULL);
1653 print_result(D_RMD160,j,count,d);
1657 #ifndef OPENSSL_NO_RC4
1660 for (j=0; j<SIZE_NUM; j++)
1662 print_message(names[D_RC4],c[D_RC4][j],lengths[j]);
1664 for (count=0,run=1; COND(c[D_RC4][j]); count++)
1665 RC4(&rc4_ks,(unsigned int)lengths[j],
1668 print_result(D_RC4,j,count,d);
1672 #ifndef OPENSSL_NO_DES
1673 if (doit[D_CBC_DES])
1675 for (j=0; j<SIZE_NUM; j++)
1677 print_message(names[D_CBC_DES],c[D_CBC_DES][j],lengths[j]);
1679 for (count=0,run=1; COND(c[D_CBC_DES][j]); count++)
1680 DES_ncbc_encrypt(buf,buf,lengths[j],&sch,
1681 &DES_iv,DES_ENCRYPT);
1683 print_result(D_CBC_DES,j,count,d);
1687 if (doit[D_EDE3_DES])
1689 for (j=0; j<SIZE_NUM; j++)
1691 print_message(names[D_EDE3_DES],c[D_EDE3_DES][j],lengths[j]);
1693 for (count=0,run=1; COND(c[D_EDE3_DES][j]); count++)
1694 DES_ede3_cbc_encrypt(buf,buf,lengths[j],
1696 &DES_iv,DES_ENCRYPT);
1698 print_result(D_EDE3_DES,j,count,d);
1702 #ifndef OPENSSL_NO_AES
1703 if (doit[D_CBC_128_AES])
1705 for (j=0; j<SIZE_NUM; j++)
1707 print_message(names[D_CBC_128_AES],c[D_CBC_128_AES][j],lengths[j]);
1709 for (count=0,run=1; COND(c[D_CBC_128_AES][j]); count++)
1710 AES_cbc_encrypt(buf,buf,
1711 (unsigned long)lengths[j],&aes_ks1,
1714 print_result(D_CBC_128_AES,j,count,d);
1717 if (doit[D_CBC_192_AES])
1719 for (j=0; j<SIZE_NUM; j++)
1721 print_message(names[D_CBC_192_AES],c[D_CBC_192_AES][j],lengths[j]);
1723 for (count=0,run=1; COND(c[D_CBC_192_AES][j]); count++)
1724 AES_cbc_encrypt(buf,buf,
1725 (unsigned long)lengths[j],&aes_ks2,
1728 print_result(D_CBC_192_AES,j,count,d);
1731 if (doit[D_CBC_256_AES])
1733 for (j=0; j<SIZE_NUM; j++)
1735 print_message(names[D_CBC_256_AES],c[D_CBC_256_AES][j],lengths[j]);
1737 for (count=0,run=1; COND(c[D_CBC_256_AES][j]); count++)
1738 AES_cbc_encrypt(buf,buf,
1739 (unsigned long)lengths[j],&aes_ks3,
1742 print_result(D_CBC_256_AES,j,count,d);
1747 #ifndef OPENSSL_NO_IDEA
1748 if (doit[D_CBC_IDEA])
1750 for (j=0; j<SIZE_NUM; j++)
1752 print_message(names[D_CBC_IDEA],c[D_CBC_IDEA][j],lengths[j]);
1754 for (count=0,run=1; COND(c[D_CBC_IDEA][j]); count++)
1755 idea_cbc_encrypt(buf,buf,
1756 (unsigned long)lengths[j],&idea_ks,
1759 print_result(D_CBC_IDEA,j,count,d);
1763 #ifndef OPENSSL_NO_RC2
1764 if (doit[D_CBC_RC2])
1766 for (j=0; j<SIZE_NUM; j++)
1768 print_message(names[D_CBC_RC2],c[D_CBC_RC2][j],lengths[j]);
1770 for (count=0,run=1; COND(c[D_CBC_RC2][j]); count++)
1771 RC2_cbc_encrypt(buf,buf,
1772 (unsigned long)lengths[j],&rc2_ks,
1775 print_result(D_CBC_RC2,j,count,d);
1779 #ifndef OPENSSL_NO_RC5
1780 if (doit[D_CBC_RC5])
1782 for (j=0; j<SIZE_NUM; j++)
1784 print_message(names[D_CBC_RC5],c[D_CBC_RC5][j],lengths[j]);
1786 for (count=0,run=1; COND(c[D_CBC_RC5][j]); count++)
1787 RC5_32_cbc_encrypt(buf,buf,
1788 (unsigned long)lengths[j],&rc5_ks,
1791 print_result(D_CBC_RC5,j,count,d);
1795 #ifndef OPENSSL_NO_BF
1798 for (j=0; j<SIZE_NUM; j++)
1800 print_message(names[D_CBC_BF],c[D_CBC_BF][j],lengths[j]);
1802 for (count=0,run=1; COND(c[D_CBC_BF][j]); count++)
1803 BF_cbc_encrypt(buf,buf,
1804 (unsigned long)lengths[j],&bf_ks,
1807 print_result(D_CBC_BF,j,count,d);
1811 #ifndef OPENSSL_NO_CAST
1812 if (doit[D_CBC_CAST])
1814 for (j=0; j<SIZE_NUM; j++)
1816 print_message(names[D_CBC_CAST],c[D_CBC_CAST][j],lengths[j]);
1818 for (count=0,run=1; COND(c[D_CBC_CAST][j]); count++)
1819 CAST_cbc_encrypt(buf,buf,
1820 (unsigned long)lengths[j],&cast_ks,
1823 print_result(D_CBC_CAST,j,count,d);
1830 for (j=0; j<SIZE_NUM; j++)
1837 names[D_EVP]=OBJ_nid2ln(evp_cipher->nid);
1838 /* -O3 -fschedule-insns messes up an
1839 * optimization here! names[D_EVP]
1840 * somehow becomes NULL */
1841 print_message(names[D_EVP],save_count,
1844 EVP_CIPHER_CTX_init(&ctx);
1846 EVP_DecryptInit_ex(&ctx,evp_cipher,NULL,key16,iv);
1848 EVP_EncryptInit_ex(&ctx,evp_cipher,NULL,key16,iv);
1849 EVP_CIPHER_CTX_set_padding(&ctx, 0);
1853 for (count=0,run=1; COND(save_count*4*lengths[0]/lengths[j]); count++)
1854 EVP_DecryptUpdate(&ctx,buf,&outl,buf,lengths[j]);
1856 for (count=0,run=1; COND(save_count*4*lengths[0]/lengths[j]); count++)
1857 EVP_EncryptUpdate(&ctx,buf,&outl,buf,lengths[j]);
1859 EVP_DecryptFinal_ex(&ctx,buf,&outl);
1861 EVP_EncryptFinal_ex(&ctx,buf,&outl);
1863 EVP_CIPHER_CTX_cleanup(&ctx);
1867 names[D_EVP]=OBJ_nid2ln(evp_md->type);
1868 print_message(names[D_EVP],save_count,
1872 for (count=0,run=1; COND(save_count*4*lengths[0]/lengths[j]); count++)
1873 EVP_Digest(buf,lengths[j],&(md[0]),NULL,evp_md,NULL);
1877 print_result(D_EVP,j,count,d);
1881 RAND_pseudo_bytes(buf,36);
1882 #ifndef OPENSSL_NO_RSA
1883 for (j=0; j<RSA_NUM; j++)
1886 if (!rsa_doit[j]) continue;
1887 ret=RSA_sign(NID_md5_sha1, buf,36, buf2, &rsa_num, rsa_key[j]);
1890 BIO_printf(bio_err,"RSA sign failure. No RSA sign will be done.\n");
1891 ERR_print_errors(bio_err);
1896 pkey_print_message("private","rsa",
1897 rsa_c[j][0],rsa_bits[j],
1899 /* RSA_blinding_on(rsa_key[j],NULL); */
1901 for (count=0,run=1; COND(rsa_c[j][0]); count++)
1903 ret=RSA_sign(NID_md5_sha1, buf,36, buf2,
1904 &rsa_num, rsa_key[j]);
1908 "RSA sign failure\n");
1909 ERR_print_errors(bio_err);
1915 BIO_printf(bio_err,mr ? "+R1:%ld:%d:%.2f\n"
1916 : "%ld %d bit private RSA's in %.2fs\n",
1917 count,rsa_bits[j],d);
1918 rsa_results[j][0]=d/(double)count;
1923 ret=RSA_verify(NID_md5_sha1, buf,36, buf2, rsa_num, rsa_key[j]);
1926 BIO_printf(bio_err,"RSA verify failure. No RSA verify will be done.\n");
1927 ERR_print_errors(bio_err);
1932 pkey_print_message("public","rsa",
1933 rsa_c[j][1],rsa_bits[j],
1936 for (count=0,run=1; COND(rsa_c[j][1]); count++)
1938 ret=RSA_verify(NID_md5_sha1, buf,36, buf2,
1939 rsa_num, rsa_key[j]);
1943 "RSA verify failure\n");
1944 ERR_print_errors(bio_err);
1950 BIO_printf(bio_err,mr ? "+R2:%ld:%d:%.2f\n"
1951 : "%ld %d bit public RSA's in %.2fs\n",
1952 count,rsa_bits[j],d);
1953 rsa_results[j][1]=d/(double)count;
1959 /* if longer than 10s, don't do any more */
1960 for (j++; j<RSA_NUM; j++)
1966 RAND_pseudo_bytes(buf,20);
1967 #ifndef OPENSSL_NO_DSA
1968 if (RAND_status() != 1)
1970 RAND_seed(rnd_seed, sizeof rnd_seed);
1973 for (j=0; j<DSA_NUM; j++)
1978 if (!dsa_doit[j]) continue;
1979 /* DSA_generate_key(dsa_key[j]); */
1980 /* DSA_sign_setup(dsa_key[j],NULL); */
1981 ret=DSA_sign(EVP_PKEY_DSA,buf,20,buf2,
1985 BIO_printf(bio_err,"DSA sign failure. No DSA sign will be done.\n");
1986 ERR_print_errors(bio_err);
1991 pkey_print_message("sign","dsa",
1992 dsa_c[j][0],dsa_bits[j],
1995 for (count=0,run=1; COND(dsa_c[j][0]); count++)
1997 ret=DSA_sign(EVP_PKEY_DSA,buf,20,buf2,
2002 "DSA sign failure\n");
2003 ERR_print_errors(bio_err);
2009 BIO_printf(bio_err,mr ? "+R3:%ld:%d:%.2f\n"
2010 : "%ld %d bit DSA signs in %.2fs\n",
2011 count,dsa_bits[j],d);
2012 dsa_results[j][0]=d/(double)count;
2016 ret=DSA_verify(EVP_PKEY_DSA,buf,20,buf2,
2020 BIO_printf(bio_err,"DSA verify failure. No DSA verify will be done.\n");
2021 ERR_print_errors(bio_err);
2026 pkey_print_message("verify","dsa",
2027 dsa_c[j][1],dsa_bits[j],
2030 for (count=0,run=1; COND(dsa_c[j][1]); count++)
2032 ret=DSA_verify(EVP_PKEY_DSA,buf,20,buf2,
2037 "DSA verify failure\n");
2038 ERR_print_errors(bio_err);
2044 BIO_printf(bio_err,mr ? "+R4:%ld:%d:%.2f\n"
2045 : "%ld %d bit DSA verify in %.2fs\n",
2046 count,dsa_bits[j],d);
2047 dsa_results[j][1]=d/(double)count;
2052 /* if longer than 10s, don't do any more */
2053 for (j++; j<DSA_NUM; j++)
2057 if (rnd_fake) RAND_cleanup();
2060 #ifndef OPENSSL_NO_ECDSA
2061 if (RAND_status() != 1)
2063 RAND_seed(rnd_seed, sizeof rnd_seed);
2066 for (j=0; j<EC_NUM; j++)
2070 if (!ecdsa_doit[j]) continue; /* Ignore Curve */
2071 ecdsa[j] = EC_KEY_new_by_curve_name(test_curves[j]);
2072 if (ecdsa[j] == NULL)
2074 BIO_printf(bio_err,"ECDSA failure.\n");
2075 ERR_print_errors(bio_err);
2081 EC_KEY_precompute_mult(ecdsa[j], NULL);
2083 /* Perform ECDSA signature test */
2084 EC_KEY_generate_key(ecdsa[j]);
2085 ret = ECDSA_sign(0, buf, 20, ecdsasig,
2086 &ecdsasiglen, ecdsa[j]);
2089 BIO_printf(bio_err,"ECDSA sign failure. No ECDSA sign will be done.\n");
2090 ERR_print_errors(bio_err);
2095 pkey_print_message("sign","ecdsa",
2097 test_curves_bits[j],
2101 for (count=0,run=1; COND(ecdsa_c[j][0]);
2104 ret=ECDSA_sign(0, buf, 20,
2105 ecdsasig, &ecdsasiglen,
2109 BIO_printf(bio_err, "ECDSA sign failure\n");
2110 ERR_print_errors(bio_err);
2117 BIO_printf(bio_err, mr ? "+R5:%ld:%d:%.2f\n" :
2118 "%ld %d bit ECDSA signs in %.2fs \n",
2119 count, test_curves_bits[j], d);
2120 ecdsa_results[j][0]=d/(double)count;
2124 /* Perform ECDSA verification test */
2125 ret=ECDSA_verify(0, buf, 20, ecdsasig,
2126 ecdsasiglen, ecdsa[j]);
2129 BIO_printf(bio_err,"ECDSA verify failure. No ECDSA verify will be done.\n");
2130 ERR_print_errors(bio_err);
2135 pkey_print_message("verify","ecdsa",
2137 test_curves_bits[j],
2140 for (count=0,run=1; COND(ecdsa_c[j][1]); count++)
2142 ret=ECDSA_verify(0, buf, 20, ecdsasig, ecdsasiglen, ecdsa[j]);
2145 BIO_printf(bio_err, "ECDSA verify failure\n");
2146 ERR_print_errors(bio_err);
2152 BIO_printf(bio_err, mr? "+R6:%ld:%d:%.2f\n"
2153 : "%ld %d bit ECDSA verify in %.2fs\n",
2154 count, test_curves_bits[j], d);
2155 ecdsa_results[j][1]=d/(double)count;
2160 /* if longer than 10s, don't do any more */
2161 for (j++; j<EC_NUM; j++)
2166 if (rnd_fake) RAND_cleanup();
2169 #ifndef OPENSSL_NO_ECDH
2170 if (RAND_status() != 1)
2172 RAND_seed(rnd_seed, sizeof rnd_seed);
2175 for (j=0; j<EC_NUM; j++)
2177 if (!ecdh_doit[j]) continue;
2178 ecdh_a[j] = EC_KEY_new_by_curve_name(test_curves[j]);
2179 ecdh_b[j] = EC_KEY_new_by_curve_name(test_curves[j]);
2180 if ((ecdh_a[j] == NULL) || (ecdh_b[j] == NULL))
2182 BIO_printf(bio_err,"ECDH failure.\n");
2183 ERR_print_errors(bio_err);
2188 /* generate two ECDH key pairs */
2189 if (!EC_KEY_generate_key(ecdh_a[j]) ||
2190 !EC_KEY_generate_key(ecdh_b[j]))
2192 BIO_printf(bio_err,"ECDH key generation failure.\n");
2193 ERR_print_errors(bio_err);
2198 /* If field size is not more than 24 octets, then use SHA-1 hash of result;
2199 * otherwise, use result (see section 4.8 of draft-ietf-tls-ecc-03.txt).
2201 int field_size, outlen;
2202 void *(*kdf)(const void *in, size_t inlen, void *out, size_t *xoutlen);
2203 field_size = EC_GROUP_get_degree(EC_KEY_get0_group(ecdh_a[j]));
2204 if (field_size <= 24 * 8)
2206 outlen = KDF1_SHA1_len;
2211 outlen = (field_size+7)/8;
2214 secret_size_a = ECDH_compute_key(secret_a, outlen,
2215 EC_KEY_get0_public_key(ecdh_b[j]),
2217 secret_size_b = ECDH_compute_key(secret_b, outlen,
2218 EC_KEY_get0_public_key(ecdh_a[j]),
2220 if (secret_size_a != secret_size_b)
2225 for (secret_idx = 0;
2226 (secret_idx < secret_size_a)
2227 && (ecdh_checks == 1);
2230 if (secret_a[secret_idx] != secret_b[secret_idx])
2234 if (ecdh_checks == 0)
2236 BIO_printf(bio_err,"ECDH computations don't match.\n");
2237 ERR_print_errors(bio_err);
2241 pkey_print_message("","ecdh",
2243 test_curves_bits[j],
2246 for (count=0,run=1; COND(ecdh_c[j][0]); count++)
2248 ECDH_compute_key(secret_a, outlen,
2249 EC_KEY_get0_public_key(ecdh_b[j]),
2253 BIO_printf(bio_err, mr ? "+R7:%ld:%d:%.2f\n" :"%ld %d-bit ECDH ops in %.2fs\n",
2254 count, test_curves_bits[j], d);
2255 ecdh_results[j][0]=d/(double)count;
2263 /* if longer than 10s, don't do any more */
2264 for (j++; j<EC_NUM; j++)
2268 if (rnd_fake) RAND_cleanup();
2275 fprintf(stdout,"%s\n",SSLeay_version(SSLEAY_VERSION));
2276 fprintf(stdout,"%s\n",SSLeay_version(SSLEAY_BUILT_ON));
2278 printf("%s ",BN_options());
2279 #ifndef OPENSSL_NO_MD2
2280 printf("%s ",MD2_options());
2282 #ifndef OPENSSL_NO_RC4
2283 printf("%s ",RC4_options());
2285 #ifndef OPENSSL_NO_DES
2286 printf("%s ",DES_options());
2288 #ifndef OPENSSL_NO_AES
2289 printf("%s ",AES_options());
2291 #ifndef OPENSSL_NO_IDEA
2292 printf("%s ",idea_options());
2294 #ifndef OPENSSL_NO_BF
2295 printf("%s ",BF_options());
2297 fprintf(stdout,"\n%s\n",SSLeay_version(SSLEAY_CFLAGS));
2298 printf("available timing options: ");
2309 #define as_string(s) (#s)
2312 printf("HZ=%g", dbl);
2315 printf(" [sysconf value]");
2319 printf("timing function used: %s%s%s%s%s%s%s\n",
2320 (ftime_used ? "ftime" : ""),
2321 (ftime_used + times_used > 1 ? "," : ""),
2322 (times_used ? "times" : ""),
2323 (ftime_used + times_used + gettimeofday_used > 1 ? "," : ""),
2324 (gettimeofday_used ? "gettimeofday" : ""),
2325 (ftime_used + times_used + gettimeofday_used + getrusage_used > 1 ? "," : ""),
2326 (getrusage_used ? "getrusage" : ""));
2332 fprintf(stdout,"+H");
2335 fprintf(stdout,"The 'numbers' are in 1000s of bytes per second processed.\n");
2336 fprintf(stdout,"type ");
2338 for (j=0; j<SIZE_NUM; j++)
2339 fprintf(stdout,mr ? ":%d" : "%7d bytes",lengths[j]);
2340 fprintf(stdout,"\n");
2343 for (k=0; k<ALGOR_NUM; k++)
2345 if (!doit[k]) continue;
2347 fprintf(stdout,"+F:%d:%s",k,names[k]);
2349 fprintf(stdout,"%-13s",names[k]);
2350 for (j=0; j<SIZE_NUM; j++)
2352 if (results[k][j] > 10000 && !mr)
2353 fprintf(stdout," %11.2fk",results[k][j]/1e3);
2355 fprintf(stdout,mr ? ":%.2f" : " %11.2f ",results[k][j]);
2357 fprintf(stdout,"\n");
2359 #ifndef OPENSSL_NO_RSA
2361 for (k=0; k<RSA_NUM; k++)
2363 if (!rsa_doit[k]) continue;
2366 printf("%18ssign verify sign/s verify/s\n"," ");
2370 fprintf(stdout,"+F2:%u:%u:%f:%f\n",
2371 k,rsa_bits[k],rsa_results[k][0],
2374 fprintf(stdout,"rsa %4u bits %8.6fs %8.6fs %8.1f %8.1f\n",
2375 rsa_bits[k],rsa_results[k][0],rsa_results[k][1],
2376 1.0/rsa_results[k][0],1.0/rsa_results[k][1]);
2379 #ifndef OPENSSL_NO_DSA
2381 for (k=0; k<DSA_NUM; k++)
2383 if (!dsa_doit[k]) continue;
2386 printf("%18ssign verify sign/s verify/s\n"," ");
2390 fprintf(stdout,"+F3:%u:%u:%f:%f\n",
2391 k,dsa_bits[k],dsa_results[k][0],dsa_results[k][1]);
2393 fprintf(stdout,"dsa %4u bits %8.6fs %8.6fs %8.1f %8.1f\n",
2394 dsa_bits[k],dsa_results[k][0],dsa_results[k][1],
2395 1.0/dsa_results[k][0],1.0/dsa_results[k][1]);
2398 #ifndef OPENSSL_NO_ECDSA
2400 for (k=0; k<EC_NUM; k++)
2402 if (!ecdsa_doit[k]) continue;
2405 printf("%30ssign verify sign/s verify/s\n"," ");
2410 fprintf(stdout,"+F4:%u:%u:%f:%f\n",
2411 k, test_curves_bits[k],
2412 ecdsa_results[k][0],ecdsa_results[k][1]);
2415 "%4u bit ecdsa (%s) %8.4fs %8.4fs %8.1f %8.1f\n",
2416 test_curves_bits[k],
2417 test_curves_names[k],
2418 ecdsa_results[k][0],ecdsa_results[k][1],
2419 1.0/ecdsa_results[k][0],1.0/ecdsa_results[k][1]);
2424 #ifndef OPENSSL_NO_ECDH
2426 for (k=0; k<EC_NUM; k++)
2428 if (!ecdh_doit[k]) continue;
2431 printf("%30sop op/s\n"," ");
2435 fprintf(stdout,"+F5:%u:%u:%f:%f\n",
2436 k, test_curves_bits[k],
2437 ecdh_results[k][0], 1.0/ecdh_results[k][0]);
2440 fprintf(stdout,"%4u bit ecdh (%s) %8.4fs %8.1f\n",
2441 test_curves_bits[k],
2442 test_curves_names[k],
2443 ecdh_results[k][0], 1.0/ecdh_results[k][0]);
2450 ERR_print_errors(bio_err);
2451 if (buf != NULL) OPENSSL_free(buf);
2452 if (buf2 != NULL) OPENSSL_free(buf2);
2453 #ifndef OPENSSL_NO_RSA
2454 for (i=0; i<RSA_NUM; i++)
2455 if (rsa_key[i] != NULL)
2456 RSA_free(rsa_key[i]);
2458 #ifndef OPENSSL_NO_DSA
2459 for (i=0; i<DSA_NUM; i++)
2460 if (dsa_key[i] != NULL)
2461 DSA_free(dsa_key[i]);
2464 #ifndef OPENSSL_NO_ECDSA
2465 for (i=0; i<EC_NUM; i++)
2466 if (ecdsa[i] != NULL)
2467 EC_KEY_free(ecdsa[i]);
2469 #ifndef OPENSSL_NO_ECDH
2470 for (i=0; i<EC_NUM; i++)
2472 if (ecdh_a[i] != NULL)
2473 EC_KEY_free(ecdh_a[i]);
2474 if (ecdh_b[i] != NULL)
2475 EC_KEY_free(ecdh_b[i]);
2483 static void print_message(const char *s, long num, int length)
2486 BIO_printf(bio_err,mr ? "+DT:%s:%d:%d\n"
2487 : "Doing %s for %ds on %d size blocks: ",s,SECONDS,length);
2488 (void)BIO_flush(bio_err);
2491 BIO_printf(bio_err,mr ? "+DN:%s:%ld:%d\n"
2492 : "Doing %s %ld times on %d size blocks: ",s,num,length);
2493 (void)BIO_flush(bio_err);
2500 static void pkey_print_message(const char *str, const char *str2, long num,
2504 BIO_printf(bio_err,mr ? "+DTP:%d:%s:%s:%d\n"
2505 : "Doing %d bit %s %s's for %ds: ",bits,str,str2,tm);
2506 (void)BIO_flush(bio_err);
2509 BIO_printf(bio_err,mr ? "+DNP:%ld:%d:%s:%s\n"
2510 : "Doing %ld %d bit %s %s's: ",num,bits,str,str2);
2511 (void)BIO_flush(bio_err);
2518 static void print_result(int alg,int run_no,int count,double time_used)
2520 BIO_printf(bio_err,mr ? "+R:%d:%s:%f\n"
2521 : "%d %s's in %.2fs\n",count,names[alg],time_used);
2522 results[alg][run_no]=((double)count)/time_used*lengths[run_no];
2525 static char *sstrsep(char **string, const char *delim)
2528 char *token = *string;
2533 memset(isdelim, 0, sizeof isdelim);
2538 isdelim[(unsigned char)(*delim)] = 1;
2542 while (!isdelim[(unsigned char)(**string)])
2557 static int do_multi(int multi)
2562 static char sep[]=":";
2564 fds=malloc(multi*sizeof *fds);
2565 for(n=0 ; n < multi ; ++n)
2583 printf("Forked child %d\n",n);
2586 /* for now, assume the pipe is long enough to take all the output */
2587 for(n=0 ; n < multi ; ++n)
2593 f=fdopen(fds[n],"r");
2594 while(fgets(buf,sizeof buf,f))
2601 fprintf(stderr,"Don't understand line '%s' from child %d\n",
2605 printf("Got: %s from %d\n",buf,n);
2606 if(!strncmp(buf,"+F:",3))
2612 alg=atoi(sstrsep(&p,sep));
2614 for(j=0 ; j < SIZE_NUM ; ++j)
2615 results[alg][j]+=atof(sstrsep(&p,sep));
2617 else if(!strncmp(buf,"+F2:",4))
2623 k=atoi(sstrsep(&p,sep));
2626 d=atof(sstrsep(&p,sep));
2628 rsa_results[k][0]=1/(1/rsa_results[k][0]+1/d);
2630 rsa_results[k][0]=d;
2632 d=atof(sstrsep(&p,sep));
2634 rsa_results[k][1]=1/(1/rsa_results[k][1]+1/d);
2636 rsa_results[k][1]=d;
2638 else if(!strncmp(buf,"+F2:",4))
2644 k=atoi(sstrsep(&p,sep));
2647 d=atof(sstrsep(&p,sep));
2649 rsa_results[k][0]=1/(1/rsa_results[k][0]+1/d);
2651 rsa_results[k][0]=d;
2653 d=atof(sstrsep(&p,sep));
2655 rsa_results[k][1]=1/(1/rsa_results[k][1]+1/d);
2657 rsa_results[k][1]=d;
2659 else if(!strncmp(buf,"+F3:",4))
2665 k=atoi(sstrsep(&p,sep));
2668 d=atof(sstrsep(&p,sep));
2670 dsa_results[k][0]=1/(1/dsa_results[k][0]+1/d);
2672 dsa_results[k][0]=d;
2674 d=atof(sstrsep(&p,sep));
2676 dsa_results[k][1]=1/(1/dsa_results[k][1]+1/d);
2678 dsa_results[k][1]=d;
2680 #ifndef OPENSSL_NO_ECDSA
2681 else if(!strncmp(buf,"+F4:",4))
2687 k=atoi(sstrsep(&p,sep));
2690 d=atof(sstrsep(&p,sep));
2692 ecdsa_results[k][0]=1/(1/ecdsa_results[k][0]+1/d);
2694 ecdsa_results[k][0]=d;
2696 d=atof(sstrsep(&p,sep));
2698 ecdsa_results[k][1]=1/(1/ecdsa_results[k][1]+1/d);
2700 ecdsa_results[k][1]=d;
2704 #ifndef OPENSSL_NO_ECDH
2705 else if(!strncmp(buf,"+F5:",4))
2711 k=atoi(sstrsep(&p,sep));
2714 d=atof(sstrsep(&p,sep));
2716 ecdh_results[k][0]=1/(1/ecdh_results[k][0]+1/d);
2718 ecdh_results[k][0]=d;
2723 else if(!strncmp(buf,"+H:",3))
2727 fprintf(stderr,"Unknown type '%s' from child %d\n",buf,n);