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(_WIN32) || defined(__CYGWIN__)
113 # if defined(__CYGwIN__) && !defined(_WIN32)
114 /* <windows.h> should define _WIN32, which normally is mutually
115 * exclusive with __CYGWIN__, but if it didn't... */
117 /* this is done because Cygwin alarm() fails sometimes. */
121 #include <openssl/bn.h>
122 #ifndef OPENSSL_NO_DES
123 #include <openssl/des.h>
125 #ifndef OPENSSL_NO_AES
126 #include <openssl/aes.h>
128 #ifndef OPENSSL_NO_CAMELLIA
129 #include <openssl/camellia.h>
131 #ifndef OPENSSL_NO_MD2
132 #include <openssl/md2.h>
134 #ifndef OPENSSL_NO_MDC2
135 #include <openssl/mdc2.h>
137 #ifndef OPENSSL_NO_MD4
138 #include <openssl/md4.h>
140 #ifndef OPENSSL_NO_MD5
141 #include <openssl/md5.h>
143 #ifndef OPENSSL_NO_HMAC
144 #include <openssl/hmac.h>
146 #include <openssl/evp.h>
147 #ifndef OPENSSL_NO_SHA
148 #include <openssl/sha.h>
150 #ifndef OPENSSL_NO_RIPEMD
151 #include <openssl/ripemd.h>
153 #ifndef OPENSSL_NO_WHIRLPOOL
154 #include <openssl/whrlpool.h>
156 #ifndef OPENSSL_NO_RC4
157 #include <openssl/rc4.h>
159 #ifndef OPENSSL_NO_RC5
160 #include <openssl/rc5.h>
162 #ifndef OPENSSL_NO_RC2
163 #include <openssl/rc2.h>
165 #ifndef OPENSSL_NO_IDEA
166 #include <openssl/idea.h>
168 #ifndef OPENSSL_NO_SEED
169 #include <openssl/seed.h>
171 #ifndef OPENSSL_NO_BF
172 #include <openssl/blowfish.h>
174 #ifndef OPENSSL_NO_CAST
175 #include <openssl/cast.h>
177 #ifndef OPENSSL_NO_RSA
178 #include <openssl/rsa.h>
179 #include "./testrsa.h"
181 #include <openssl/x509.h>
182 #ifndef OPENSSL_NO_DSA
183 #include <openssl/dsa.h>
184 #include "./testdsa.h"
186 #ifndef OPENSSL_NO_ECDSA
187 #include <openssl/ecdsa.h>
189 #ifndef OPENSSL_NO_ECDH
190 #include <openssl/ecdh.h>
192 #include <openssl/modes.h>
195 # if defined(OPENSSL_SYS_VMS) || defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MACINTOSH_CLASSIC) || defined(OPENSSL_SYS_OS2) || defined(OPENSSL_SYS_NETWARE)
209 #define BUFSIZE ((long)1024*8+1)
213 static int usertime=1;
215 static double Time_F(int s);
216 static void print_message(const char *s,long num,int length);
217 static void pkey_print_message(const char *str, const char *str2,
218 long num, int bits, int sec);
219 static void print_result(int alg,int run_no,int count,double time_used);
221 static int do_multi(int multi);
230 #define MAX_ECDH_SIZE 256
232 static const char *names[ALGOR_NUM]={
233 "md2","mdc2","md4","md5","hmac(md5)","sha1","rmd160","rc4",
234 "des cbc","des ede3","idea cbc","seed cbc",
235 "rc2 cbc","rc5-32/12 cbc","blowfish cbc","cast cbc",
236 "aes-128 cbc","aes-192 cbc","aes-256 cbc",
237 "camellia-128 cbc","camellia-192 cbc","camellia-256 cbc",
238 "evp","sha256","sha512","whirlpool",
239 "aes-128 ige","aes-192 ige","aes-256 ige","ghash" };
240 static double results[ALGOR_NUM][SIZE_NUM];
241 static int lengths[SIZE_NUM]={16,64,256,1024,8*1024};
242 #ifndef OPENSSL_NO_RSA
243 static double rsa_results[RSA_NUM][2];
245 #ifndef OPENSSL_NO_DSA
246 static double dsa_results[DSA_NUM][2];
248 #ifndef OPENSSL_NO_ECDSA
249 static double ecdsa_results[EC_NUM][2];
251 #ifndef OPENSSL_NO_ECDH
252 static double ecdh_results[EC_NUM][1];
255 #if defined(OPENSSL_NO_DSA) && !(defined(OPENSSL_NO_ECDSA) && defined(OPENSSL_NO_ECDH))
256 static const char rnd_seed[] = "string to make the random number generator think it has entropy";
257 static int rnd_fake = 0;
261 #if defined(__STDC__) || defined(sgi) || defined(_AIX)
262 #define SIGRETTYPE void
264 #define SIGRETTYPE int
267 static SIGRETTYPE sig_done(int sig);
268 static SIGRETTYPE sig_done(int sig)
270 signal(SIGALRM,sig_done);
283 #if !defined(SIGALRM)
286 static unsigned int lapse,schlock;
287 static void alarm_win32(unsigned int secs) { lapse = secs*1000; }
288 #define alarm alarm_win32
290 static DWORD WINAPI sleepy(VOID *arg)
298 static double Time_F(int s)
306 thr = CreateThread(NULL,4096,sleepy,NULL,0,NULL);
309 DWORD ret=GetLastError();
310 BIO_printf(bio_err,"unable to CreateThread (%d)",ret);
313 while (!schlock) Sleep(0); /* scheduler spinlock */
314 ret = app_tminterval(s,usertime);
318 ret = app_tminterval(s,usertime);
319 if (run) TerminateThread(thr,0);
327 static double Time_F(int s)
329 double ret = app_tminterval(s,usertime);
330 if (s == STOP) alarm(0);
336 #ifndef OPENSSL_NO_ECDH
337 static const int KDF1_SHA1_len = 20;
338 static void *KDF1_SHA1(const void *in, size_t inlen, void *out, size_t *outlen)
340 #ifndef OPENSSL_NO_SHA
341 if (*outlen < SHA_DIGEST_LENGTH)
344 *outlen = SHA_DIGEST_LENGTH;
345 return SHA1(in, inlen, out);
348 #endif /* OPENSSL_NO_SHA */
350 #endif /* OPENSSL_NO_ECDH */
353 int MAIN(int, char **);
355 int MAIN(int argc, char **argv)
357 unsigned char *buf=NULL,*buf2=NULL;
359 long count=0,save_count=0;
361 #if !defined(OPENSSL_NO_RSA) || !defined(OPENSSL_NO_DSA)
364 #ifndef OPENSSL_NO_RSA
367 unsigned char md[EVP_MAX_MD_SIZE];
368 #ifndef OPENSSL_NO_MD2
369 unsigned char md2[MD2_DIGEST_LENGTH];
371 #ifndef OPENSSL_NO_MDC2
372 unsigned char mdc2[MDC2_DIGEST_LENGTH];
374 #ifndef OPENSSL_NO_MD4
375 unsigned char md4[MD4_DIGEST_LENGTH];
377 #ifndef OPENSSL_NO_MD5
378 unsigned char md5[MD5_DIGEST_LENGTH];
379 unsigned char hmac[MD5_DIGEST_LENGTH];
381 #ifndef OPENSSL_NO_SHA
382 unsigned char sha[SHA_DIGEST_LENGTH];
383 #ifndef OPENSSL_NO_SHA256
384 unsigned char sha256[SHA256_DIGEST_LENGTH];
386 #ifndef OPENSSL_NO_SHA512
387 unsigned char sha512[SHA512_DIGEST_LENGTH];
390 #ifndef OPENSSL_NO_WHIRLPOOL
391 unsigned char whirlpool[WHIRLPOOL_DIGEST_LENGTH];
393 #ifndef OPENSSL_NO_RIPEMD
394 unsigned char rmd160[RIPEMD160_DIGEST_LENGTH];
396 #ifndef OPENSSL_NO_RC4
399 #ifndef OPENSSL_NO_RC5
402 #ifndef OPENSSL_NO_RC2
405 #ifndef OPENSSL_NO_IDEA
406 IDEA_KEY_SCHEDULE idea_ks;
408 #ifndef OPENSSL_NO_SEED
409 SEED_KEY_SCHEDULE seed_ks;
411 #ifndef OPENSSL_NO_BF
414 #ifndef OPENSSL_NO_CAST
417 static const unsigned char key16[16]=
418 {0x12,0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,
419 0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12};
420 #ifndef OPENSSL_NO_AES
421 static const unsigned char key24[24]=
422 {0x12,0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,
423 0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12,
424 0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12,0x34};
425 static const unsigned char key32[32]=
426 {0x12,0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,
427 0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12,
428 0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12,0x34,
429 0x78,0x9a,0xbc,0xde,0xf0,0x12,0x34,0x56};
431 #ifndef OPENSSL_NO_CAMELLIA
432 static const unsigned char ckey24[24]=
433 {0x12,0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,
434 0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12,
435 0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12,0x34};
436 static const unsigned char ckey32[32]=
437 {0x12,0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,
438 0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12,
439 0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12,0x34,
440 0x78,0x9a,0xbc,0xde,0xf0,0x12,0x34,0x56};
442 #ifndef OPENSSL_NO_AES
443 #define MAX_BLOCK_SIZE 128
445 #define MAX_BLOCK_SIZE 64
447 unsigned char DES_iv[8];
448 unsigned char iv[2*MAX_BLOCK_SIZE/8];
449 #ifndef OPENSSL_NO_DES
450 static DES_cblock key ={0x12,0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0};
451 static DES_cblock key2={0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12};
452 static DES_cblock key3={0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12,0x34};
453 DES_key_schedule sch;
454 DES_key_schedule sch2;
455 DES_key_schedule sch3;
457 #ifndef OPENSSL_NO_AES
458 AES_KEY aes_ks1, aes_ks2, aes_ks3;
460 #ifndef OPENSSL_NO_CAMELLIA
461 CAMELLIA_KEY camellia_ks1, camellia_ks2, camellia_ks3;
473 #define D_CBC_IDEA 10
474 #define D_CBC_SEED 11
478 #define D_CBC_CAST 15
479 #define D_CBC_128_AES 16
480 #define D_CBC_192_AES 17
481 #define D_CBC_256_AES 18
482 #define D_CBC_128_CML 19
483 #define D_CBC_192_CML 20
484 #define D_CBC_256_CML 21
488 #define D_WHIRLPOOL 25
489 #define D_IGE_128_AES 26
490 #define D_IGE_192_AES 27
491 #define D_IGE_256_AES 28
494 long c[ALGOR_NUM][SIZE_NUM];
520 #ifndef OPENSSL_NO_RSA
521 RSA *rsa_key[RSA_NUM];
522 long rsa_c[RSA_NUM][2];
523 static unsigned int rsa_bits[RSA_NUM]={512,1024,2048,4096};
524 static unsigned char *rsa_data[RSA_NUM]=
525 {test512,test1024,test2048,test4096};
526 static int rsa_data_length[RSA_NUM]={
527 sizeof(test512),sizeof(test1024),
528 sizeof(test2048),sizeof(test4096)};
530 #ifndef OPENSSL_NO_DSA
531 DSA *dsa_key[DSA_NUM];
532 long dsa_c[DSA_NUM][2];
533 static unsigned int dsa_bits[DSA_NUM]={512,1024,2048};
535 #ifndef OPENSSL_NO_EC
536 /* We only test over the following curves as they are representative,
537 * To add tests over more curves, simply add the curve NID
538 * and curve name to the following arrays and increase the
539 * EC_NUM value accordingly.
541 static unsigned int test_curves[EC_NUM] =
545 NID_X9_62_prime192v1,
547 NID_X9_62_prime256v1,
562 static const char * test_curves_names[EC_NUM] =
583 static int test_curves_bits[EC_NUM] =
585 160, 192, 224, 256, 384, 521,
586 163, 233, 283, 409, 571,
587 163, 233, 283, 409, 571
592 #ifndef OPENSSL_NO_ECDSA
593 unsigned char ecdsasig[256];
594 unsigned int ecdsasiglen;
595 EC_KEY *ecdsa[EC_NUM];
596 long ecdsa_c[EC_NUM][2];
599 #ifndef OPENSSL_NO_ECDH
600 EC_KEY *ecdh_a[EC_NUM], *ecdh_b[EC_NUM];
601 unsigned char secret_a[MAX_ECDH_SIZE], secret_b[MAX_ECDH_SIZE];
602 int secret_size_a, secret_size_b;
605 long ecdh_c[EC_NUM][2];
608 int rsa_doit[RSA_NUM];
609 int dsa_doit[DSA_NUM];
610 #ifndef OPENSSL_NO_ECDSA
611 int ecdsa_doit[EC_NUM];
613 #ifndef OPENSSL_NO_ECDH
614 int ecdh_doit[EC_NUM];
618 const EVP_CIPHER *evp_cipher=NULL;
619 const EVP_MD *evp_md=NULL;
630 memset(results, 0, sizeof(results));
631 #ifndef OPENSSL_NO_DSA
632 memset(dsa_key,0,sizeof(dsa_key));
634 #ifndef OPENSSL_NO_ECDSA
635 for (i=0; i<EC_NUM; i++) ecdsa[i] = NULL;
637 #ifndef OPENSSL_NO_ECDH
638 for (i=0; i<EC_NUM; i++)
647 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
648 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
650 if (!load_config(bio_err, NULL))
653 #ifndef OPENSSL_NO_RSA
654 memset(rsa_key,0,sizeof(rsa_key));
655 for (i=0; i<RSA_NUM; i++)
659 if ((buf=(unsigned char *)OPENSSL_malloc((int)BUFSIZE)) == NULL)
661 BIO_printf(bio_err,"out of memory\n");
664 if ((buf2=(unsigned char *)OPENSSL_malloc((int)BUFSIZE)) == NULL)
666 BIO_printf(bio_err,"out of memory\n");
670 memset(c,0,sizeof(c));
671 memset(DES_iv,0,sizeof(DES_iv));
672 memset(iv,0,sizeof(iv));
674 for (i=0; i<ALGOR_NUM; i++)
676 for (i=0; i<RSA_NUM; i++)
678 for (i=0; i<DSA_NUM; i++)
680 #ifndef OPENSSL_NO_ECDSA
681 for (i=0; i<EC_NUM; i++)
684 #ifndef OPENSSL_NO_ECDH
685 for (i=0; i<EC_NUM; i++)
695 if ((argc > 0) && (strcmp(*argv,"-elapsed") == 0))
698 j--; /* Otherwise, -elapsed gets confused with
701 else if ((argc > 0) && (strcmp(*argv,"-evp") == 0))
707 BIO_printf(bio_err,"no EVP given\n");
710 evp_cipher=EVP_get_cipherbyname(*argv);
713 evp_md=EVP_get_digestbyname(*argv);
715 if(!evp_cipher && !evp_md)
717 BIO_printf(bio_err,"%s is an unknown cipher or digest\n",*argv);
722 else if (argc > 0 && !strcmp(*argv,"-decrypt"))
725 j--; /* Otherwise, -elapsed gets confused with
728 #ifndef OPENSSL_NO_ENGINE
729 else if ((argc > 0) && (strcmp(*argv,"-engine") == 0))
735 BIO_printf(bio_err,"no engine given\n");
738 setup_engine(bio_err, *argv, 0);
739 /* j will be increased again further down. We just
740 don't want speed to confuse an engine with an
741 algorithm, especially when none is given (which
742 means all of them should be run) */
747 else if ((argc > 0) && (strcmp(*argv,"-multi") == 0))
753 BIO_printf(bio_err,"no multi count given\n");
759 BIO_printf(bio_err,"bad multi count\n");
762 j--; /* Otherwise, -mr gets confused with
766 else if (argc > 0 && !strcmp(*argv,"-mr"))
769 j--; /* Otherwise, -mr gets confused with
773 #ifndef OPENSSL_NO_MD2
774 if (strcmp(*argv,"md2") == 0) doit[D_MD2]=1;
777 #ifndef OPENSSL_NO_MDC2
778 if (strcmp(*argv,"mdc2") == 0) doit[D_MDC2]=1;
781 #ifndef OPENSSL_NO_MD4
782 if (strcmp(*argv,"md4") == 0) doit[D_MD4]=1;
785 #ifndef OPENSSL_NO_MD5
786 if (strcmp(*argv,"md5") == 0) doit[D_MD5]=1;
789 #ifndef OPENSSL_NO_MD5
790 if (strcmp(*argv,"hmac") == 0) doit[D_HMAC]=1;
793 #ifndef OPENSSL_NO_SHA
794 if (strcmp(*argv,"sha1") == 0) doit[D_SHA1]=1;
796 if (strcmp(*argv,"sha") == 0) doit[D_SHA1]=1,
800 #ifndef OPENSSL_NO_SHA256
801 if (strcmp(*argv,"sha256") == 0) doit[D_SHA256]=1;
804 #ifndef OPENSSL_NO_SHA512
805 if (strcmp(*argv,"sha512") == 0) doit[D_SHA512]=1;
809 #ifndef OPENSSL_NO_WHIRLPOOL
810 if (strcmp(*argv,"whirlpool") == 0) doit[D_WHIRLPOOL]=1;
813 #ifndef OPENSSL_NO_RIPEMD
814 if (strcmp(*argv,"ripemd") == 0) doit[D_RMD160]=1;
816 if (strcmp(*argv,"rmd160") == 0) doit[D_RMD160]=1;
818 if (strcmp(*argv,"ripemd160") == 0) doit[D_RMD160]=1;
821 #ifndef OPENSSL_NO_RC4
822 if (strcmp(*argv,"rc4") == 0) doit[D_RC4]=1;
825 #ifndef OPENSSL_NO_DES
826 if (strcmp(*argv,"des-cbc") == 0) doit[D_CBC_DES]=1;
827 else if (strcmp(*argv,"des-ede3") == 0) doit[D_EDE3_DES]=1;
830 #ifndef OPENSSL_NO_AES
831 if (strcmp(*argv,"aes-128-cbc") == 0) doit[D_CBC_128_AES]=1;
832 else if (strcmp(*argv,"aes-192-cbc") == 0) doit[D_CBC_192_AES]=1;
833 else if (strcmp(*argv,"aes-256-cbc") == 0) doit[D_CBC_256_AES]=1;
834 else if (strcmp(*argv,"aes-128-ige") == 0) doit[D_IGE_128_AES]=1;
835 else if (strcmp(*argv,"aes-192-ige") == 0) doit[D_IGE_192_AES]=1;
836 else if (strcmp(*argv,"aes-256-ige") == 0) doit[D_IGE_256_AES]=1;
839 #ifndef OPENSSL_NO_CAMELLIA
840 if (strcmp(*argv,"camellia-128-cbc") == 0) doit[D_CBC_128_CML]=1;
841 else if (strcmp(*argv,"camellia-192-cbc") == 0) doit[D_CBC_192_CML]=1;
842 else if (strcmp(*argv,"camellia-256-cbc") == 0) doit[D_CBC_256_CML]=1;
845 #ifndef OPENSSL_NO_RSA
846 #if 0 /* was: #ifdef RSAref */
847 if (strcmp(*argv,"rsaref") == 0)
849 RSA_set_default_openssl_method(RSA_PKCS1_RSAref());
855 if (strcmp(*argv,"openssl") == 0)
857 RSA_set_default_method(RSA_PKCS1_SSLeay());
862 #endif /* !OPENSSL_NO_RSA */
863 if (strcmp(*argv,"dsa512") == 0) dsa_doit[R_DSA_512]=2;
864 else if (strcmp(*argv,"dsa1024") == 0) dsa_doit[R_DSA_1024]=2;
865 else if (strcmp(*argv,"dsa2048") == 0) dsa_doit[R_DSA_2048]=2;
866 else if (strcmp(*argv,"rsa512") == 0) rsa_doit[R_RSA_512]=2;
867 else if (strcmp(*argv,"rsa1024") == 0) rsa_doit[R_RSA_1024]=2;
868 else if (strcmp(*argv,"rsa2048") == 0) rsa_doit[R_RSA_2048]=2;
869 else if (strcmp(*argv,"rsa4096") == 0) rsa_doit[R_RSA_4096]=2;
871 #ifndef OPENSSL_NO_RC2
872 if (strcmp(*argv,"rc2-cbc") == 0) doit[D_CBC_RC2]=1;
873 else if (strcmp(*argv,"rc2") == 0) doit[D_CBC_RC2]=1;
876 #ifndef OPENSSL_NO_RC5
877 if (strcmp(*argv,"rc5-cbc") == 0) doit[D_CBC_RC5]=1;
878 else if (strcmp(*argv,"rc5") == 0) doit[D_CBC_RC5]=1;
881 #ifndef OPENSSL_NO_IDEA
882 if (strcmp(*argv,"idea-cbc") == 0) doit[D_CBC_IDEA]=1;
883 else if (strcmp(*argv,"idea") == 0) doit[D_CBC_IDEA]=1;
886 #ifndef OPENSSL_NO_SEED
887 if (strcmp(*argv,"seed-cbc") == 0) doit[D_CBC_SEED]=1;
888 else if (strcmp(*argv,"seed") == 0) doit[D_CBC_SEED]=1;
891 #ifndef OPENSSL_NO_BF
892 if (strcmp(*argv,"bf-cbc") == 0) doit[D_CBC_BF]=1;
893 else if (strcmp(*argv,"blowfish") == 0) doit[D_CBC_BF]=1;
894 else if (strcmp(*argv,"bf") == 0) doit[D_CBC_BF]=1;
897 #ifndef OPENSSL_NO_CAST
898 if (strcmp(*argv,"cast-cbc") == 0) doit[D_CBC_CAST]=1;
899 else if (strcmp(*argv,"cast") == 0) doit[D_CBC_CAST]=1;
900 else if (strcmp(*argv,"cast5") == 0) doit[D_CBC_CAST]=1;
903 #ifndef OPENSSL_NO_DES
904 if (strcmp(*argv,"des") == 0)
911 #ifndef OPENSSL_NO_AES
912 if (strcmp(*argv,"aes") == 0)
914 doit[D_CBC_128_AES]=1;
915 doit[D_CBC_192_AES]=1;
916 doit[D_CBC_256_AES]=1;
918 else if (strcmp(*argv,"ghash") == 0)
924 #ifndef OPENSSL_NO_CAMELLIA
925 if (strcmp(*argv,"camellia") == 0)
927 doit[D_CBC_128_CML]=1;
928 doit[D_CBC_192_CML]=1;
929 doit[D_CBC_256_CML]=1;
933 #ifndef OPENSSL_NO_RSA
934 if (strcmp(*argv,"rsa") == 0)
936 rsa_doit[R_RSA_512]=1;
937 rsa_doit[R_RSA_1024]=1;
938 rsa_doit[R_RSA_2048]=1;
939 rsa_doit[R_RSA_4096]=1;
943 #ifndef OPENSSL_NO_DSA
944 if (strcmp(*argv,"dsa") == 0)
946 dsa_doit[R_DSA_512]=1;
947 dsa_doit[R_DSA_1024]=1;
948 dsa_doit[R_DSA_2048]=1;
952 #ifndef OPENSSL_NO_ECDSA
953 if (strcmp(*argv,"ecdsap160") == 0) ecdsa_doit[R_EC_P160]=2;
954 else if (strcmp(*argv,"ecdsap192") == 0) ecdsa_doit[R_EC_P192]=2;
955 else if (strcmp(*argv,"ecdsap224") == 0) ecdsa_doit[R_EC_P224]=2;
956 else if (strcmp(*argv,"ecdsap256") == 0) ecdsa_doit[R_EC_P256]=2;
957 else if (strcmp(*argv,"ecdsap384") == 0) ecdsa_doit[R_EC_P384]=2;
958 else if (strcmp(*argv,"ecdsap521") == 0) ecdsa_doit[R_EC_P521]=2;
959 else if (strcmp(*argv,"ecdsak163") == 0) ecdsa_doit[R_EC_K163]=2;
960 else if (strcmp(*argv,"ecdsak233") == 0) ecdsa_doit[R_EC_K233]=2;
961 else if (strcmp(*argv,"ecdsak283") == 0) ecdsa_doit[R_EC_K283]=2;
962 else if (strcmp(*argv,"ecdsak409") == 0) ecdsa_doit[R_EC_K409]=2;
963 else if (strcmp(*argv,"ecdsak571") == 0) ecdsa_doit[R_EC_K571]=2;
964 else if (strcmp(*argv,"ecdsab163") == 0) ecdsa_doit[R_EC_B163]=2;
965 else if (strcmp(*argv,"ecdsab233") == 0) ecdsa_doit[R_EC_B233]=2;
966 else if (strcmp(*argv,"ecdsab283") == 0) ecdsa_doit[R_EC_B283]=2;
967 else if (strcmp(*argv,"ecdsab409") == 0) ecdsa_doit[R_EC_B409]=2;
968 else if (strcmp(*argv,"ecdsab571") == 0) ecdsa_doit[R_EC_B571]=2;
969 else if (strcmp(*argv,"ecdsa") == 0)
971 for (i=0; i < EC_NUM; i++)
976 #ifndef OPENSSL_NO_ECDH
977 if (strcmp(*argv,"ecdhp160") == 0) ecdh_doit[R_EC_P160]=2;
978 else if (strcmp(*argv,"ecdhp192") == 0) ecdh_doit[R_EC_P192]=2;
979 else if (strcmp(*argv,"ecdhp224") == 0) ecdh_doit[R_EC_P224]=2;
980 else if (strcmp(*argv,"ecdhp256") == 0) ecdh_doit[R_EC_P256]=2;
981 else if (strcmp(*argv,"ecdhp384") == 0) ecdh_doit[R_EC_P384]=2;
982 else if (strcmp(*argv,"ecdhp521") == 0) ecdh_doit[R_EC_P521]=2;
983 else if (strcmp(*argv,"ecdhk163") == 0) ecdh_doit[R_EC_K163]=2;
984 else if (strcmp(*argv,"ecdhk233") == 0) ecdh_doit[R_EC_K233]=2;
985 else if (strcmp(*argv,"ecdhk283") == 0) ecdh_doit[R_EC_K283]=2;
986 else if (strcmp(*argv,"ecdhk409") == 0) ecdh_doit[R_EC_K409]=2;
987 else if (strcmp(*argv,"ecdhk571") == 0) ecdh_doit[R_EC_K571]=2;
988 else if (strcmp(*argv,"ecdhb163") == 0) ecdh_doit[R_EC_B163]=2;
989 else if (strcmp(*argv,"ecdhb233") == 0) ecdh_doit[R_EC_B233]=2;
990 else if (strcmp(*argv,"ecdhb283") == 0) ecdh_doit[R_EC_B283]=2;
991 else if (strcmp(*argv,"ecdhb409") == 0) ecdh_doit[R_EC_B409]=2;
992 else if (strcmp(*argv,"ecdhb571") == 0) ecdh_doit[R_EC_B571]=2;
993 else if (strcmp(*argv,"ecdh") == 0)
995 for (i=0; i < EC_NUM; i++)
1001 BIO_printf(bio_err,"Error: bad option or value\n");
1002 BIO_printf(bio_err,"\n");
1003 BIO_printf(bio_err,"Available values:\n");
1004 #ifndef OPENSSL_NO_MD2
1005 BIO_printf(bio_err,"md2 ");
1007 #ifndef OPENSSL_NO_MDC2
1008 BIO_printf(bio_err,"mdc2 ");
1010 #ifndef OPENSSL_NO_MD4
1011 BIO_printf(bio_err,"md4 ");
1013 #ifndef OPENSSL_NO_MD5
1014 BIO_printf(bio_err,"md5 ");
1015 #ifndef OPENSSL_NO_HMAC
1016 BIO_printf(bio_err,"hmac ");
1019 #ifndef OPENSSL_NO_SHA1
1020 BIO_printf(bio_err,"sha1 ");
1022 #ifndef OPENSSL_NO_SHA256
1023 BIO_printf(bio_err,"sha256 ");
1025 #ifndef OPENSSL_NO_SHA512
1026 BIO_printf(bio_err,"sha512 ");
1028 #ifndef OPENSSL_NO_WHIRLPOOL
1029 BIO_printf(bio_err,"whirlpool");
1031 #ifndef OPENSSL_NO_RIPEMD160
1032 BIO_printf(bio_err,"rmd160");
1034 #if !defined(OPENSSL_NO_MD2) || !defined(OPENSSL_NO_MDC2) || \
1035 !defined(OPENSSL_NO_MD4) || !defined(OPENSSL_NO_MD5) || \
1036 !defined(OPENSSL_NO_SHA1) || !defined(OPENSSL_NO_RIPEMD160) || \
1037 !defined(OPENSSL_NO_WHIRLPOOL)
1038 BIO_printf(bio_err,"\n");
1041 #ifndef OPENSSL_NO_IDEA
1042 BIO_printf(bio_err,"idea-cbc ");
1044 #ifndef OPENSSL_NO_SEED
1045 BIO_printf(bio_err,"seed-cbc ");
1047 #ifndef OPENSSL_NO_RC2
1048 BIO_printf(bio_err,"rc2-cbc ");
1050 #ifndef OPENSSL_NO_RC5
1051 BIO_printf(bio_err,"rc5-cbc ");
1053 #ifndef OPENSSL_NO_BF
1054 BIO_printf(bio_err,"bf-cbc");
1056 #if !defined(OPENSSL_NO_IDEA) || !defined(OPENSSL_NO_SEED) || !defined(OPENSSL_NO_RC2) || \
1057 !defined(OPENSSL_NO_BF) || !defined(OPENSSL_NO_RC5)
1058 BIO_printf(bio_err,"\n");
1060 #ifndef OPENSSL_NO_DES
1061 BIO_printf(bio_err,"des-cbc des-ede3 ");
1063 #ifndef OPENSSL_NO_AES
1064 BIO_printf(bio_err,"aes-128-cbc aes-192-cbc aes-256-cbc ");
1065 BIO_printf(bio_err,"aes-128-ige aes-192-ige aes-256-ige ");
1067 #ifndef OPENSSL_NO_CAMELLIA
1068 BIO_printf(bio_err,"\n");
1069 BIO_printf(bio_err,"camellia-128-cbc camellia-192-cbc camellia-256-cbc ");
1071 #ifndef OPENSSL_NO_RC4
1072 BIO_printf(bio_err,"rc4");
1074 BIO_printf(bio_err,"\n");
1076 #ifndef OPENSSL_NO_RSA
1077 BIO_printf(bio_err,"rsa512 rsa1024 rsa2048 rsa4096\n");
1080 #ifndef OPENSSL_NO_DSA
1081 BIO_printf(bio_err,"dsa512 dsa1024 dsa2048\n");
1083 #ifndef OPENSSL_NO_ECDSA
1084 BIO_printf(bio_err,"ecdsap160 ecdsap192 ecdsap224 ecdsap256 ecdsap384 ecdsap521\n");
1085 BIO_printf(bio_err,"ecdsak163 ecdsak233 ecdsak283 ecdsak409 ecdsak571\n");
1086 BIO_printf(bio_err,"ecdsab163 ecdsab233 ecdsab283 ecdsab409 ecdsab571\n");
1087 BIO_printf(bio_err,"ecdsa\n");
1089 #ifndef OPENSSL_NO_ECDH
1090 BIO_printf(bio_err,"ecdhp160 ecdhp192 ecdhp224 ecdhp256 ecdhp384 ecdhp521\n");
1091 BIO_printf(bio_err,"ecdhk163 ecdhk233 ecdhk283 ecdhk409 ecdhk571\n");
1092 BIO_printf(bio_err,"ecdhb163 ecdhb233 ecdhb283 ecdhb409 ecdhb571\n");
1093 BIO_printf(bio_err,"ecdh\n");
1096 #ifndef OPENSSL_NO_IDEA
1097 BIO_printf(bio_err,"idea ");
1099 #ifndef OPENSSL_NO_SEED
1100 BIO_printf(bio_err,"seed ");
1102 #ifndef OPENSSL_NO_RC2
1103 BIO_printf(bio_err,"rc2 ");
1105 #ifndef OPENSSL_NO_DES
1106 BIO_printf(bio_err,"des ");
1108 #ifndef OPENSSL_NO_AES
1109 BIO_printf(bio_err,"aes ");
1111 #ifndef OPENSSL_NO_CAMELLIA
1112 BIO_printf(bio_err,"camellia ");
1114 #ifndef OPENSSL_NO_RSA
1115 BIO_printf(bio_err,"rsa ");
1117 #ifndef OPENSSL_NO_BF
1118 BIO_printf(bio_err,"blowfish");
1120 #if !defined(OPENSSL_NO_IDEA) || !defined(OPENSSL_NO_SEED) || \
1121 !defined(OPENSSL_NO_RC2) || !defined(OPENSSL_NO_DES) || \
1122 !defined(OPENSSL_NO_RSA) || !defined(OPENSSL_NO_BF) || \
1123 !defined(OPENSSL_NO_AES) || !defined(OPENSSL_NO_CAMELLIA)
1124 BIO_printf(bio_err,"\n");
1127 BIO_printf(bio_err,"\n");
1128 BIO_printf(bio_err,"Available options:\n");
1129 #if defined(TIMES) || defined(USE_TOD)
1130 BIO_printf(bio_err,"-elapsed measure time in real time instead of CPU user time.\n");
1132 #ifndef OPENSSL_NO_ENGINE
1133 BIO_printf(bio_err,"-engine e use engine e, possibly a hardware device.\n");
1135 BIO_printf(bio_err,"-evp e use EVP e.\n");
1136 BIO_printf(bio_err,"-decrypt time decryption instead of encryption (only EVP).\n");
1137 BIO_printf(bio_err,"-mr produce machine readable output.\n");
1139 BIO_printf(bio_err,"-multi n run n benchmarks in parallel.\n");
1149 if(multi && do_multi(multi))
1155 for (i=0; i<ALGOR_NUM; i++)
1160 for (i=0; i<RSA_NUM; i++)
1162 for (i=0; i<DSA_NUM; i++)
1164 #ifndef OPENSSL_NO_ECDSA
1165 for (i=0; i<EC_NUM; i++)
1168 #ifndef OPENSSL_NO_ECDH
1169 for (i=0; i<EC_NUM; i++)
1173 for (i=0; i<ALGOR_NUM; i++)
1174 if (doit[i]) pr_header++;
1176 if (usertime == 0 && !mr)
1177 BIO_printf(bio_err,"You have chosen to measure elapsed time instead of user CPU time.\n");
1179 #ifndef OPENSSL_NO_RSA
1180 for (i=0; i<RSA_NUM; i++)
1182 const unsigned char *p;
1185 rsa_key[i]=d2i_RSAPrivateKey(NULL,&p,rsa_data_length[i]);
1186 if (rsa_key[i] == NULL)
1188 BIO_printf(bio_err,"internal error loading RSA key number %d\n",i);
1194 BIO_printf(bio_err,mr ? "+RK:%d:"
1195 : "Loaded RSA key, %d bit modulus and e= 0x",
1196 BN_num_bits(rsa_key[i]->n));
1197 BN_print(bio_err,rsa_key[i]->e);
1198 BIO_printf(bio_err,"\n");
1204 #ifndef OPENSSL_NO_DSA
1205 dsa_key[0]=get_dsa512();
1206 dsa_key[1]=get_dsa1024();
1207 dsa_key[2]=get_dsa2048();
1210 #ifndef OPENSSL_NO_DES
1211 DES_set_key_unchecked(&key,&sch);
1212 DES_set_key_unchecked(&key2,&sch2);
1213 DES_set_key_unchecked(&key3,&sch3);
1215 #ifndef OPENSSL_NO_AES
1216 AES_set_encrypt_key(key16,128,&aes_ks1);
1217 AES_set_encrypt_key(key24,192,&aes_ks2);
1218 AES_set_encrypt_key(key32,256,&aes_ks3);
1220 #ifndef OPENSSL_NO_CAMELLIA
1221 Camellia_set_key(key16,128,&camellia_ks1);
1222 Camellia_set_key(ckey24,192,&camellia_ks2);
1223 Camellia_set_key(ckey32,256,&camellia_ks3);
1225 #ifndef OPENSSL_NO_IDEA
1226 idea_set_encrypt_key(key16,&idea_ks);
1228 #ifndef OPENSSL_NO_SEED
1229 SEED_set_key(key16,&seed_ks);
1231 #ifndef OPENSSL_NO_RC4
1232 RC4_set_key(&rc4_ks,16,key16);
1234 #ifndef OPENSSL_NO_RC2
1235 RC2_set_key(&rc2_ks,16,key16,128);
1237 #ifndef OPENSSL_NO_RC5
1238 RC5_32_set_key(&rc5_ks,16,key16,12);
1240 #ifndef OPENSSL_NO_BF
1241 BF_set_key(&bf_ks,16,key16);
1243 #ifndef OPENSSL_NO_CAST
1244 CAST_set_key(&cast_ks,16,key16);
1246 #ifndef OPENSSL_NO_RSA
1247 memset(rsa_c,0,sizeof(rsa_c));
1250 #ifndef OPENSSL_NO_DES
1251 BIO_printf(bio_err,"First we calculate the approximate speed ...\n");
1257 for (it=count; it; it--)
1258 DES_ecb_encrypt((DES_cblock *)buf,
1264 c[D_MD2][0]=count/10;
1265 c[D_MDC2][0]=count/10;
1270 c[D_RMD160][0]=count;
1271 c[D_RC4][0]=count*5;
1272 c[D_CBC_DES][0]=count;
1273 c[D_EDE3_DES][0]=count/3;
1274 c[D_CBC_IDEA][0]=count;
1275 c[D_CBC_SEED][0]=count;
1276 c[D_CBC_RC2][0]=count;
1277 c[D_CBC_RC5][0]=count;
1278 c[D_CBC_BF][0]=count;
1279 c[D_CBC_CAST][0]=count;
1280 c[D_CBC_128_AES][0]=count;
1281 c[D_CBC_192_AES][0]=count;
1282 c[D_CBC_256_AES][0]=count;
1283 c[D_CBC_128_CML][0]=count;
1284 c[D_CBC_192_CML][0]=count;
1285 c[D_CBC_256_CML][0]=count;
1286 c[D_SHA256][0]=count;
1287 c[D_SHA512][0]=count;
1288 c[D_WHIRLPOOL][0]=count;
1289 c[D_IGE_128_AES][0]=count;
1290 c[D_IGE_192_AES][0]=count;
1291 c[D_IGE_256_AES][0]=count;
1292 c[D_GHASH][0]=count;
1294 for (i=1; i<SIZE_NUM; i++)
1296 c[D_MD2][i]=c[D_MD2][0]*4*lengths[0]/lengths[i];
1297 c[D_MDC2][i]=c[D_MDC2][0]*4*lengths[0]/lengths[i];
1298 c[D_MD4][i]=c[D_MD4][0]*4*lengths[0]/lengths[i];
1299 c[D_MD5][i]=c[D_MD5][0]*4*lengths[0]/lengths[i];
1300 c[D_HMAC][i]=c[D_HMAC][0]*4*lengths[0]/lengths[i];
1301 c[D_SHA1][i]=c[D_SHA1][0]*4*lengths[0]/lengths[i];
1302 c[D_RMD160][i]=c[D_RMD160][0]*4*lengths[0]/lengths[i];
1303 c[D_SHA256][i]=c[D_SHA256][0]*4*lengths[0]/lengths[i];
1304 c[D_SHA512][i]=c[D_SHA512][0]*4*lengths[0]/lengths[i];
1305 c[D_WHIRLPOOL][i]=c[D_WHIRLPOOL][0]*4*lengths[0]/lengths[i];
1307 for (i=1; i<SIZE_NUM; i++)
1311 l0=(long)lengths[i-1];
1312 l1=(long)lengths[i];
1313 c[D_RC4][i]=c[D_RC4][i-1]*l0/l1;
1314 c[D_CBC_DES][i]=c[D_CBC_DES][i-1]*l0/l1;
1315 c[D_EDE3_DES][i]=c[D_EDE3_DES][i-1]*l0/l1;
1316 c[D_CBC_IDEA][i]=c[D_CBC_IDEA][i-1]*l0/l1;
1317 c[D_CBC_SEED][i]=c[D_CBC_SEED][i-1]*l0/l1;
1318 c[D_CBC_RC2][i]=c[D_CBC_RC2][i-1]*l0/l1;
1319 c[D_CBC_RC5][i]=c[D_CBC_RC5][i-1]*l0/l1;
1320 c[D_CBC_BF][i]=c[D_CBC_BF][i-1]*l0/l1;
1321 c[D_CBC_CAST][i]=c[D_CBC_CAST][i-1]*l0/l1;
1322 c[D_CBC_128_AES][i]=c[D_CBC_128_AES][i-1]*l0/l1;
1323 c[D_CBC_192_AES][i]=c[D_CBC_192_AES][i-1]*l0/l1;
1324 c[D_CBC_256_AES][i]=c[D_CBC_256_AES][i-1]*l0/l1;
1325 c[D_CBC_128_CML][i]=c[D_CBC_128_CML][i-1]*l0/l1;
1326 c[D_CBC_192_CML][i]=c[D_CBC_192_CML][i-1]*l0/l1;
1327 c[D_CBC_256_CML][i]=c[D_CBC_256_CML][i-1]*l0/l1;
1328 c[D_IGE_128_AES][i]=c[D_IGE_128_AES][i-1]*l0/l1;
1329 c[D_IGE_192_AES][i]=c[D_IGE_192_AES][i-1]*l0/l1;
1330 c[D_IGE_256_AES][i]=c[D_IGE_256_AES][i-1]*l0/l1;
1332 #ifndef OPENSSL_NO_RSA
1333 rsa_c[R_RSA_512][0]=count/2000;
1334 rsa_c[R_RSA_512][1]=count/400;
1335 for (i=1; i<RSA_NUM; i++)
1337 rsa_c[i][0]=rsa_c[i-1][0]/8;
1338 rsa_c[i][1]=rsa_c[i-1][1]/4;
1339 if ((rsa_doit[i] <= 1) && (rsa_c[i][0] == 0))
1343 if (rsa_c[i][0] == 0)
1352 #ifndef OPENSSL_NO_DSA
1353 dsa_c[R_DSA_512][0]=count/1000;
1354 dsa_c[R_DSA_512][1]=count/1000/2;
1355 for (i=1; i<DSA_NUM; i++)
1357 dsa_c[i][0]=dsa_c[i-1][0]/4;
1358 dsa_c[i][1]=dsa_c[i-1][1]/4;
1359 if ((dsa_doit[i] <= 1) && (dsa_c[i][0] == 0))
1372 #ifndef OPENSSL_NO_ECDSA
1373 ecdsa_c[R_EC_P160][0]=count/1000;
1374 ecdsa_c[R_EC_P160][1]=count/1000/2;
1375 for (i=R_EC_P192; i<=R_EC_P521; i++)
1377 ecdsa_c[i][0]=ecdsa_c[i-1][0]/2;
1378 ecdsa_c[i][1]=ecdsa_c[i-1][1]/2;
1379 if ((ecdsa_doit[i] <= 1) && (ecdsa_c[i][0] == 0))
1383 if (ecdsa_c[i] == 0)
1390 ecdsa_c[R_EC_K163][0]=count/1000;
1391 ecdsa_c[R_EC_K163][1]=count/1000/2;
1392 for (i=R_EC_K233; i<=R_EC_K571; i++)
1394 ecdsa_c[i][0]=ecdsa_c[i-1][0]/2;
1395 ecdsa_c[i][1]=ecdsa_c[i-1][1]/2;
1396 if ((ecdsa_doit[i] <= 1) && (ecdsa_c[i][0] == 0))
1400 if (ecdsa_c[i] == 0)
1407 ecdsa_c[R_EC_B163][0]=count/1000;
1408 ecdsa_c[R_EC_B163][1]=count/1000/2;
1409 for (i=R_EC_B233; i<=R_EC_B571; i++)
1411 ecdsa_c[i][0]=ecdsa_c[i-1][0]/2;
1412 ecdsa_c[i][1]=ecdsa_c[i-1][1]/2;
1413 if ((ecdsa_doit[i] <= 1) && (ecdsa_c[i][0] == 0))
1417 if (ecdsa_c[i] == 0)
1426 #ifndef OPENSSL_NO_ECDH
1427 ecdh_c[R_EC_P160][0]=count/1000;
1428 ecdh_c[R_EC_P160][1]=count/1000;
1429 for (i=R_EC_P192; i<=R_EC_P521; i++)
1431 ecdh_c[i][0]=ecdh_c[i-1][0]/2;
1432 ecdh_c[i][1]=ecdh_c[i-1][1]/2;
1433 if ((ecdh_doit[i] <= 1) && (ecdh_c[i][0] == 0))
1444 ecdh_c[R_EC_K163][0]=count/1000;
1445 ecdh_c[R_EC_K163][1]=count/1000;
1446 for (i=R_EC_K233; i<=R_EC_K571; i++)
1448 ecdh_c[i][0]=ecdh_c[i-1][0]/2;
1449 ecdh_c[i][1]=ecdh_c[i-1][1]/2;
1450 if ((ecdh_doit[i] <= 1) && (ecdh_c[i][0] == 0))
1461 ecdh_c[R_EC_B163][0]=count/1000;
1462 ecdh_c[R_EC_B163][1]=count/1000;
1463 for (i=R_EC_B233; i<=R_EC_B571; i++)
1465 ecdh_c[i][0]=ecdh_c[i-1][0]/2;
1466 ecdh_c[i][1]=ecdh_c[i-1][1]/2;
1467 if ((ecdh_doit[i] <= 1) && (ecdh_c[i][0] == 0))
1480 #define COND(d) (count < (d))
1481 #define COUNT(d) (d)
1483 /* not worth fixing */
1484 # error "You cannot disable DES on systems without SIGALRM."
1485 #endif /* OPENSSL_NO_DES */
1487 #define COND(c) (run && count<0x7fffffff)
1488 #define COUNT(d) (count)
1490 signal(SIGALRM,sig_done);
1492 #endif /* SIGALRM */
1494 #ifndef OPENSSL_NO_MD2
1497 for (j=0; j<SIZE_NUM; j++)
1499 print_message(names[D_MD2],c[D_MD2][j],lengths[j]);
1501 for (count=0,run=1; COND(c[D_MD2][j]); count++)
1502 EVP_Digest(buf,(unsigned long)lengths[j],&(md2[0]),NULL,EVP_md2(),NULL);
1504 print_result(D_MD2,j,count,d);
1508 #ifndef OPENSSL_NO_MDC2
1511 for (j=0; j<SIZE_NUM; j++)
1513 print_message(names[D_MDC2],c[D_MDC2][j],lengths[j]);
1515 for (count=0,run=1; COND(c[D_MDC2][j]); count++)
1516 EVP_Digest(buf,(unsigned long)lengths[j],&(mdc2[0]),NULL,EVP_mdc2(),NULL);
1518 print_result(D_MDC2,j,count,d);
1523 #ifndef OPENSSL_NO_MD4
1526 for (j=0; j<SIZE_NUM; j++)
1528 print_message(names[D_MD4],c[D_MD4][j],lengths[j]);
1530 for (count=0,run=1; COND(c[D_MD4][j]); count++)
1531 EVP_Digest(&(buf[0]),(unsigned long)lengths[j],&(md4[0]),NULL,EVP_md4(),NULL);
1533 print_result(D_MD4,j,count,d);
1538 #ifndef OPENSSL_NO_MD5
1541 for (j=0; j<SIZE_NUM; j++)
1543 print_message(names[D_MD5],c[D_MD5][j],lengths[j]);
1545 for (count=0,run=1; COND(c[D_MD5][j]); count++)
1546 EVP_Digest(&(buf[0]),(unsigned long)lengths[j],&(md5[0]),NULL,EVP_get_digestbyname("md5"),NULL);
1548 print_result(D_MD5,j,count,d);
1553 #if !defined(OPENSSL_NO_MD5) && !defined(OPENSSL_NO_HMAC)
1558 HMAC_CTX_init(&hctx);
1559 HMAC_Init_ex(&hctx,(unsigned char *)"This is a key...",
1560 16,EVP_md5(), NULL);
1562 for (j=0; j<SIZE_NUM; j++)
1564 print_message(names[D_HMAC],c[D_HMAC][j],lengths[j]);
1566 for (count=0,run=1; COND(c[D_HMAC][j]); count++)
1568 HMAC_Init_ex(&hctx,NULL,0,NULL,NULL);
1569 HMAC_Update(&hctx,buf,lengths[j]);
1570 HMAC_Final(&hctx,&(hmac[0]),NULL);
1573 print_result(D_HMAC,j,count,d);
1575 HMAC_CTX_cleanup(&hctx);
1578 #ifndef OPENSSL_NO_SHA
1581 for (j=0; j<SIZE_NUM; j++)
1583 print_message(names[D_SHA1],c[D_SHA1][j],lengths[j]);
1585 for (count=0,run=1; COND(c[D_SHA1][j]); count++)
1587 EVP_Digest(buf,(unsigned long)lengths[j],&(sha[0]),NULL,EVP_sha1(),NULL);
1589 SHA1(buf,lengths[j],sha);
1592 print_result(D_SHA1,j,count,d);
1596 #ifndef OPENSSL_NO_SHA256
1599 for (j=0; j<SIZE_NUM; j++)
1601 print_message(names[D_SHA256],c[D_SHA256][j],lengths[j]);
1603 for (count=0,run=1; COND(c[D_SHA256][j]); count++)
1604 SHA256(buf,lengths[j],sha256);
1606 print_result(D_SHA256,j,count,d);
1611 #ifndef OPENSSL_NO_SHA512
1614 for (j=0; j<SIZE_NUM; j++)
1616 print_message(names[D_SHA512],c[D_SHA512][j],lengths[j]);
1618 for (count=0,run=1; COND(c[D_SHA512][j]); count++)
1619 SHA512(buf,lengths[j],sha512);
1621 print_result(D_SHA512,j,count,d);
1627 #ifndef OPENSSL_NO_WHIRLPOOL
1628 if (doit[D_WHIRLPOOL])
1630 for (j=0; j<SIZE_NUM; j++)
1632 print_message(names[D_WHIRLPOOL],c[D_WHIRLPOOL][j],lengths[j]);
1634 for (count=0,run=1; COND(c[D_WHIRLPOOL][j]); count++)
1635 WHIRLPOOL(buf,lengths[j],whirlpool);
1637 print_result(D_WHIRLPOOL,j,count,d);
1642 #ifndef OPENSSL_NO_RIPEMD
1645 for (j=0; j<SIZE_NUM; j++)
1647 print_message(names[D_RMD160],c[D_RMD160][j],lengths[j]);
1649 for (count=0,run=1; COND(c[D_RMD160][j]); count++)
1650 EVP_Digest(buf,(unsigned long)lengths[j],&(rmd160[0]),NULL,EVP_ripemd160(),NULL);
1652 print_result(D_RMD160,j,count,d);
1656 #ifndef OPENSSL_NO_RC4
1659 for (j=0; j<SIZE_NUM; j++)
1661 print_message(names[D_RC4],c[D_RC4][j],lengths[j]);
1663 for (count=0,run=1; COND(c[D_RC4][j]); count++)
1664 RC4(&rc4_ks,(unsigned int)lengths[j],
1667 print_result(D_RC4,j,count,d);
1671 #ifndef OPENSSL_NO_DES
1672 if (doit[D_CBC_DES])
1674 for (j=0; j<SIZE_NUM; j++)
1676 print_message(names[D_CBC_DES],c[D_CBC_DES][j],lengths[j]);
1678 for (count=0,run=1; COND(c[D_CBC_DES][j]); count++)
1679 DES_ncbc_encrypt(buf,buf,lengths[j],&sch,
1680 &DES_iv,DES_ENCRYPT);
1682 print_result(D_CBC_DES,j,count,d);
1686 if (doit[D_EDE3_DES])
1688 for (j=0; j<SIZE_NUM; j++)
1690 print_message(names[D_EDE3_DES],c[D_EDE3_DES][j],lengths[j]);
1692 for (count=0,run=1; COND(c[D_EDE3_DES][j]); count++)
1693 DES_ede3_cbc_encrypt(buf,buf,lengths[j],
1695 &DES_iv,DES_ENCRYPT);
1697 print_result(D_EDE3_DES,j,count,d);
1701 #ifndef OPENSSL_NO_AES
1702 if (doit[D_CBC_128_AES])
1704 for (j=0; j<SIZE_NUM; j++)
1706 print_message(names[D_CBC_128_AES],c[D_CBC_128_AES][j],lengths[j]);
1708 for (count=0,run=1; COND(c[D_CBC_128_AES][j]); count++)
1709 AES_cbc_encrypt(buf,buf,
1710 (unsigned long)lengths[j],&aes_ks1,
1713 print_result(D_CBC_128_AES,j,count,d);
1716 if (doit[D_CBC_192_AES])
1718 for (j=0; j<SIZE_NUM; j++)
1720 print_message(names[D_CBC_192_AES],c[D_CBC_192_AES][j],lengths[j]);
1722 for (count=0,run=1; COND(c[D_CBC_192_AES][j]); count++)
1723 AES_cbc_encrypt(buf,buf,
1724 (unsigned long)lengths[j],&aes_ks2,
1727 print_result(D_CBC_192_AES,j,count,d);
1730 if (doit[D_CBC_256_AES])
1732 for (j=0; j<SIZE_NUM; j++)
1734 print_message(names[D_CBC_256_AES],c[D_CBC_256_AES][j],lengths[j]);
1736 for (count=0,run=1; COND(c[D_CBC_256_AES][j]); count++)
1737 AES_cbc_encrypt(buf,buf,
1738 (unsigned long)lengths[j],&aes_ks3,
1741 print_result(D_CBC_256_AES,j,count,d);
1745 if (doit[D_IGE_128_AES])
1747 for (j=0; j<SIZE_NUM; j++)
1749 print_message(names[D_IGE_128_AES],c[D_IGE_128_AES][j],lengths[j]);
1751 for (count=0,run=1; COND(c[D_IGE_128_AES][j]); count++)
1752 AES_ige_encrypt(buf,buf2,
1753 (unsigned long)lengths[j],&aes_ks1,
1756 print_result(D_IGE_128_AES,j,count,d);
1759 if (doit[D_IGE_192_AES])
1761 for (j=0; j<SIZE_NUM; j++)
1763 print_message(names[D_IGE_192_AES],c[D_IGE_192_AES][j],lengths[j]);
1765 for (count=0,run=1; COND(c[D_IGE_192_AES][j]); count++)
1766 AES_ige_encrypt(buf,buf2,
1767 (unsigned long)lengths[j],&aes_ks2,
1770 print_result(D_IGE_192_AES,j,count,d);
1773 if (doit[D_IGE_256_AES])
1775 for (j=0; j<SIZE_NUM; j++)
1777 print_message(names[D_IGE_256_AES],c[D_IGE_256_AES][j],lengths[j]);
1779 for (count=0,run=1; COND(c[D_IGE_256_AES][j]); count++)
1780 AES_ige_encrypt(buf,buf2,
1781 (unsigned long)lengths[j],&aes_ks3,
1784 print_result(D_IGE_256_AES,j,count,d);
1789 GCM128_CONTEXT *ctx = CRYPTO_gcm128_new(&aes_ks1,(block128_f)AES_encrypt);
1790 CRYPTO_gcm128_setiv (ctx,(unsigned char *)"0123456789ab",12);
1792 for (j=0; j<SIZE_NUM; j++)
1794 print_message(names[D_GHASH],c[D_GHASH][j],lengths[j]);
1796 for (count=0,run=1; COND(c[D_GHASH][j]); count++)
1797 CRYPTO_gcm128_aad(ctx,buf,lengths[j]);
1799 print_result(D_GHASH,j,count,d);
1801 CRYPTO_gcm128_release(ctx);
1805 #ifndef OPENSSL_NO_CAMELLIA
1806 if (doit[D_CBC_128_CML])
1808 for (j=0; j<SIZE_NUM; j++)
1810 print_message(names[D_CBC_128_CML],c[D_CBC_128_CML][j],lengths[j]);
1812 for (count=0,run=1; COND(c[D_CBC_128_CML][j]); count++)
1813 Camellia_cbc_encrypt(buf,buf,
1814 (unsigned long)lengths[j],&camellia_ks1,
1815 iv,CAMELLIA_ENCRYPT);
1817 print_result(D_CBC_128_CML,j,count,d);
1820 if (doit[D_CBC_192_CML])
1822 for (j=0; j<SIZE_NUM; j++)
1824 print_message(names[D_CBC_192_CML],c[D_CBC_192_CML][j],lengths[j]);
1826 for (count=0,run=1; COND(c[D_CBC_192_CML][j]); count++)
1827 Camellia_cbc_encrypt(buf,buf,
1828 (unsigned long)lengths[j],&camellia_ks2,
1829 iv,CAMELLIA_ENCRYPT);
1831 print_result(D_CBC_192_CML,j,count,d);
1834 if (doit[D_CBC_256_CML])
1836 for (j=0; j<SIZE_NUM; j++)
1838 print_message(names[D_CBC_256_CML],c[D_CBC_256_CML][j],lengths[j]);
1840 for (count=0,run=1; COND(c[D_CBC_256_CML][j]); count++)
1841 Camellia_cbc_encrypt(buf,buf,
1842 (unsigned long)lengths[j],&camellia_ks3,
1843 iv,CAMELLIA_ENCRYPT);
1845 print_result(D_CBC_256_CML,j,count,d);
1850 #ifndef OPENSSL_NO_IDEA
1851 if (doit[D_CBC_IDEA])
1853 for (j=0; j<SIZE_NUM; j++)
1855 print_message(names[D_CBC_IDEA],c[D_CBC_IDEA][j],lengths[j]);
1857 for (count=0,run=1; COND(c[D_CBC_IDEA][j]); count++)
1858 idea_cbc_encrypt(buf,buf,
1859 (unsigned long)lengths[j],&idea_ks,
1862 print_result(D_CBC_IDEA,j,count,d);
1866 #ifndef OPENSSL_NO_SEED
1867 if (doit[D_CBC_SEED])
1869 for (j=0; j<SIZE_NUM; j++)
1871 print_message(names[D_CBC_SEED],c[D_CBC_SEED][j],lengths[j]);
1873 for (count=0,run=1; COND(c[D_CBC_SEED][j]); count++)
1874 SEED_cbc_encrypt(buf,buf,
1875 (unsigned long)lengths[j],&seed_ks,iv,1);
1877 print_result(D_CBC_SEED,j,count,d);
1881 #ifndef OPENSSL_NO_RC2
1882 if (doit[D_CBC_RC2])
1884 for (j=0; j<SIZE_NUM; j++)
1886 print_message(names[D_CBC_RC2],c[D_CBC_RC2][j],lengths[j]);
1888 for (count=0,run=1; COND(c[D_CBC_RC2][j]); count++)
1889 RC2_cbc_encrypt(buf,buf,
1890 (unsigned long)lengths[j],&rc2_ks,
1893 print_result(D_CBC_RC2,j,count,d);
1897 #ifndef OPENSSL_NO_RC5
1898 if (doit[D_CBC_RC5])
1900 for (j=0; j<SIZE_NUM; j++)
1902 print_message(names[D_CBC_RC5],c[D_CBC_RC5][j],lengths[j]);
1904 for (count=0,run=1; COND(c[D_CBC_RC5][j]); count++)
1905 RC5_32_cbc_encrypt(buf,buf,
1906 (unsigned long)lengths[j],&rc5_ks,
1909 print_result(D_CBC_RC5,j,count,d);
1913 #ifndef OPENSSL_NO_BF
1916 for (j=0; j<SIZE_NUM; j++)
1918 print_message(names[D_CBC_BF],c[D_CBC_BF][j],lengths[j]);
1920 for (count=0,run=1; COND(c[D_CBC_BF][j]); count++)
1921 BF_cbc_encrypt(buf,buf,
1922 (unsigned long)lengths[j],&bf_ks,
1925 print_result(D_CBC_BF,j,count,d);
1929 #ifndef OPENSSL_NO_CAST
1930 if (doit[D_CBC_CAST])
1932 for (j=0; j<SIZE_NUM; j++)
1934 print_message(names[D_CBC_CAST],c[D_CBC_CAST][j],lengths[j]);
1936 for (count=0,run=1; COND(c[D_CBC_CAST][j]); count++)
1937 CAST_cbc_encrypt(buf,buf,
1938 (unsigned long)lengths[j],&cast_ks,
1941 print_result(D_CBC_CAST,j,count,d);
1948 for (j=0; j<SIZE_NUM; j++)
1955 names[D_EVP]=OBJ_nid2ln(evp_cipher->nid);
1956 /* -O3 -fschedule-insns messes up an
1957 * optimization here! names[D_EVP]
1958 * somehow becomes NULL */
1959 print_message(names[D_EVP],save_count,
1962 EVP_CIPHER_CTX_init(&ctx);
1964 EVP_DecryptInit_ex(&ctx,evp_cipher,NULL,key16,iv);
1966 EVP_EncryptInit_ex(&ctx,evp_cipher,NULL,key16,iv);
1967 EVP_CIPHER_CTX_set_padding(&ctx, 0);
1971 for (count=0,run=1; COND(save_count*4*lengths[0]/lengths[j]); count++)
1972 EVP_DecryptUpdate(&ctx,buf,&outl,buf,lengths[j]);
1974 for (count=0,run=1; COND(save_count*4*lengths[0]/lengths[j]); count++)
1975 EVP_EncryptUpdate(&ctx,buf,&outl,buf,lengths[j]);
1977 EVP_DecryptFinal_ex(&ctx,buf,&outl);
1979 EVP_EncryptFinal_ex(&ctx,buf,&outl);
1981 EVP_CIPHER_CTX_cleanup(&ctx);
1985 names[D_EVP]=OBJ_nid2ln(evp_md->type);
1986 print_message(names[D_EVP],save_count,
1990 for (count=0,run=1; COND(save_count*4*lengths[0]/lengths[j]); count++)
1991 EVP_Digest(buf,lengths[j],&(md[0]),NULL,evp_md,NULL);
1995 print_result(D_EVP,j,count,d);
1999 RAND_pseudo_bytes(buf,36);
2000 #ifndef OPENSSL_NO_RSA
2001 for (j=0; j<RSA_NUM; j++)
2004 if (!rsa_doit[j]) continue;
2005 ret=RSA_sign(NID_md5_sha1, buf,36, buf2, &rsa_num, rsa_key[j]);
2008 BIO_printf(bio_err,"RSA sign failure. No RSA sign will be done.\n");
2009 ERR_print_errors(bio_err);
2014 pkey_print_message("private","rsa",
2015 rsa_c[j][0],rsa_bits[j],
2017 /* RSA_blinding_on(rsa_key[j],NULL); */
2019 for (count=0,run=1; COND(rsa_c[j][0]); count++)
2021 ret=RSA_sign(NID_md5_sha1, buf,36, buf2,
2022 &rsa_num, rsa_key[j]);
2026 "RSA sign failure\n");
2027 ERR_print_errors(bio_err);
2033 BIO_printf(bio_err,mr ? "+R1:%ld:%d:%.2f\n"
2034 : "%ld %d bit private RSA's in %.2fs\n",
2035 count,rsa_bits[j],d);
2036 rsa_results[j][0]=d/(double)count;
2041 ret=RSA_verify(NID_md5_sha1, buf,36, buf2, rsa_num, rsa_key[j]);
2044 BIO_printf(bio_err,"RSA verify failure. No RSA verify will be done.\n");
2045 ERR_print_errors(bio_err);
2050 pkey_print_message("public","rsa",
2051 rsa_c[j][1],rsa_bits[j],
2054 for (count=0,run=1; COND(rsa_c[j][1]); count++)
2056 ret=RSA_verify(NID_md5_sha1, buf,36, buf2,
2057 rsa_num, rsa_key[j]);
2061 "RSA verify failure\n");
2062 ERR_print_errors(bio_err);
2068 BIO_printf(bio_err,mr ? "+R2:%ld:%d:%.2f\n"
2069 : "%ld %d bit public RSA's in %.2fs\n",
2070 count,rsa_bits[j],d);
2071 rsa_results[j][1]=d/(double)count;
2077 /* if longer than 10s, don't do any more */
2078 for (j++; j<RSA_NUM; j++)
2084 RAND_pseudo_bytes(buf,20);
2085 #ifndef OPENSSL_NO_DSA
2086 if (RAND_status() != 1)
2088 RAND_seed(rnd_seed, sizeof rnd_seed);
2091 for (j=0; j<DSA_NUM; j++)
2096 if (!dsa_doit[j]) continue;
2097 /* DSA_generate_key(dsa_key[j]); */
2098 /* DSA_sign_setup(dsa_key[j],NULL); */
2099 ret=DSA_sign(EVP_PKEY_DSA,buf,20,buf2,
2103 BIO_printf(bio_err,"DSA sign failure. No DSA sign will be done.\n");
2104 ERR_print_errors(bio_err);
2109 pkey_print_message("sign","dsa",
2110 dsa_c[j][0],dsa_bits[j],
2113 for (count=0,run=1; COND(dsa_c[j][0]); count++)
2115 ret=DSA_sign(EVP_PKEY_DSA,buf,20,buf2,
2120 "DSA sign failure\n");
2121 ERR_print_errors(bio_err);
2127 BIO_printf(bio_err,mr ? "+R3:%ld:%d:%.2f\n"
2128 : "%ld %d bit DSA signs in %.2fs\n",
2129 count,dsa_bits[j],d);
2130 dsa_results[j][0]=d/(double)count;
2134 ret=DSA_verify(EVP_PKEY_DSA,buf,20,buf2,
2138 BIO_printf(bio_err,"DSA verify failure. No DSA verify will be done.\n");
2139 ERR_print_errors(bio_err);
2144 pkey_print_message("verify","dsa",
2145 dsa_c[j][1],dsa_bits[j],
2148 for (count=0,run=1; COND(dsa_c[j][1]); count++)
2150 ret=DSA_verify(EVP_PKEY_DSA,buf,20,buf2,
2155 "DSA verify failure\n");
2156 ERR_print_errors(bio_err);
2162 BIO_printf(bio_err,mr ? "+R4:%ld:%d:%.2f\n"
2163 : "%ld %d bit DSA verify in %.2fs\n",
2164 count,dsa_bits[j],d);
2165 dsa_results[j][1]=d/(double)count;
2170 /* if longer than 10s, don't do any more */
2171 for (j++; j<DSA_NUM; j++)
2175 if (rnd_fake) RAND_cleanup();
2178 #ifndef OPENSSL_NO_ECDSA
2179 if (RAND_status() != 1)
2181 RAND_seed(rnd_seed, sizeof rnd_seed);
2184 for (j=0; j<EC_NUM; j++)
2188 if (!ecdsa_doit[j]) continue; /* Ignore Curve */
2189 ecdsa[j] = EC_KEY_new_by_curve_name(test_curves[j]);
2190 if (ecdsa[j] == NULL)
2192 BIO_printf(bio_err,"ECDSA failure.\n");
2193 ERR_print_errors(bio_err);
2199 EC_KEY_precompute_mult(ecdsa[j], NULL);
2201 /* Perform ECDSA signature test */
2202 EC_KEY_generate_key(ecdsa[j]);
2203 ret = ECDSA_sign(0, buf, 20, ecdsasig,
2204 &ecdsasiglen, ecdsa[j]);
2207 BIO_printf(bio_err,"ECDSA sign failure. No ECDSA sign will be done.\n");
2208 ERR_print_errors(bio_err);
2213 pkey_print_message("sign","ecdsa",
2215 test_curves_bits[j],
2219 for (count=0,run=1; COND(ecdsa_c[j][0]);
2222 ret=ECDSA_sign(0, buf, 20,
2223 ecdsasig, &ecdsasiglen,
2227 BIO_printf(bio_err, "ECDSA sign failure\n");
2228 ERR_print_errors(bio_err);
2235 BIO_printf(bio_err, mr ? "+R5:%ld:%d:%.2f\n" :
2236 "%ld %d bit ECDSA signs in %.2fs \n",
2237 count, test_curves_bits[j], d);
2238 ecdsa_results[j][0]=d/(double)count;
2242 /* Perform ECDSA verification test */
2243 ret=ECDSA_verify(0, buf, 20, ecdsasig,
2244 ecdsasiglen, ecdsa[j]);
2247 BIO_printf(bio_err,"ECDSA verify failure. No ECDSA verify will be done.\n");
2248 ERR_print_errors(bio_err);
2253 pkey_print_message("verify","ecdsa",
2255 test_curves_bits[j],
2258 for (count=0,run=1; COND(ecdsa_c[j][1]); count++)
2260 ret=ECDSA_verify(0, buf, 20, ecdsasig, ecdsasiglen, ecdsa[j]);
2263 BIO_printf(bio_err, "ECDSA verify failure\n");
2264 ERR_print_errors(bio_err);
2270 BIO_printf(bio_err, mr? "+R6:%ld:%d:%.2f\n"
2271 : "%ld %d bit ECDSA verify in %.2fs\n",
2272 count, test_curves_bits[j], d);
2273 ecdsa_results[j][1]=d/(double)count;
2278 /* if longer than 10s, don't do any more */
2279 for (j++; j<EC_NUM; j++)
2284 if (rnd_fake) RAND_cleanup();
2287 #ifndef OPENSSL_NO_ECDH
2288 if (RAND_status() != 1)
2290 RAND_seed(rnd_seed, sizeof rnd_seed);
2293 for (j=0; j<EC_NUM; j++)
2295 if (!ecdh_doit[j]) continue;
2296 ecdh_a[j] = EC_KEY_new_by_curve_name(test_curves[j]);
2297 ecdh_b[j] = EC_KEY_new_by_curve_name(test_curves[j]);
2298 if ((ecdh_a[j] == NULL) || (ecdh_b[j] == NULL))
2300 BIO_printf(bio_err,"ECDH failure.\n");
2301 ERR_print_errors(bio_err);
2306 /* generate two ECDH key pairs */
2307 if (!EC_KEY_generate_key(ecdh_a[j]) ||
2308 !EC_KEY_generate_key(ecdh_b[j]))
2310 BIO_printf(bio_err,"ECDH key generation failure.\n");
2311 ERR_print_errors(bio_err);
2316 /* If field size is not more than 24 octets, then use SHA-1 hash of result;
2317 * otherwise, use result (see section 4.8 of draft-ietf-tls-ecc-03.txt).
2319 int field_size, outlen;
2320 void *(*kdf)(const void *in, size_t inlen, void *out, size_t *xoutlen);
2321 field_size = EC_GROUP_get_degree(EC_KEY_get0_group(ecdh_a[j]));
2322 if (field_size <= 24 * 8)
2324 outlen = KDF1_SHA1_len;
2329 outlen = (field_size+7)/8;
2332 secret_size_a = ECDH_compute_key(secret_a, outlen,
2333 EC_KEY_get0_public_key(ecdh_b[j]),
2335 secret_size_b = ECDH_compute_key(secret_b, outlen,
2336 EC_KEY_get0_public_key(ecdh_a[j]),
2338 if (secret_size_a != secret_size_b)
2343 for (secret_idx = 0;
2344 (secret_idx < secret_size_a)
2345 && (ecdh_checks == 1);
2348 if (secret_a[secret_idx] != secret_b[secret_idx])
2352 if (ecdh_checks == 0)
2354 BIO_printf(bio_err,"ECDH computations don't match.\n");
2355 ERR_print_errors(bio_err);
2359 pkey_print_message("","ecdh",
2361 test_curves_bits[j],
2364 for (count=0,run=1; COND(ecdh_c[j][0]); count++)
2366 ECDH_compute_key(secret_a, outlen,
2367 EC_KEY_get0_public_key(ecdh_b[j]),
2371 BIO_printf(bio_err, mr ? "+R7:%ld:%d:%.2f\n" :"%ld %d-bit ECDH ops in %.2fs\n",
2372 count, test_curves_bits[j], d);
2373 ecdh_results[j][0]=d/(double)count;
2381 /* if longer than 10s, don't do any more */
2382 for (j++; j<EC_NUM; j++)
2386 if (rnd_fake) RAND_cleanup();
2393 fprintf(stdout,"%s\n",SSLeay_version(SSLEAY_VERSION));
2394 fprintf(stdout,"%s\n",SSLeay_version(SSLEAY_BUILT_ON));
2396 printf("%s ",BN_options());
2397 #ifndef OPENSSL_NO_MD2
2398 printf("%s ",MD2_options());
2400 #ifndef OPENSSL_NO_RC4
2401 printf("%s ",RC4_options());
2403 #ifndef OPENSSL_NO_DES
2404 printf("%s ",DES_options());
2406 #ifndef OPENSSL_NO_AES
2407 printf("%s ",AES_options());
2409 #ifndef OPENSSL_NO_IDEA
2410 printf("%s ",idea_options());
2412 #ifndef OPENSSL_NO_BF
2413 printf("%s ",BF_options());
2415 fprintf(stdout,"\n%s\n",SSLeay_version(SSLEAY_CFLAGS));
2421 fprintf(stdout,"+H");
2424 fprintf(stdout,"The 'numbers' are in 1000s of bytes per second processed.\n");
2425 fprintf(stdout,"type ");
2427 for (j=0; j<SIZE_NUM; j++)
2428 fprintf(stdout,mr ? ":%d" : "%7d bytes",lengths[j]);
2429 fprintf(stdout,"\n");
2432 for (k=0; k<ALGOR_NUM; k++)
2434 if (!doit[k]) continue;
2436 fprintf(stdout,"+F:%d:%s",k,names[k]);
2438 fprintf(stdout,"%-13s",names[k]);
2439 for (j=0; j<SIZE_NUM; j++)
2441 if (results[k][j] > 10000 && !mr)
2442 fprintf(stdout," %11.2fk",results[k][j]/1e3);
2444 fprintf(stdout,mr ? ":%.2f" : " %11.2f ",results[k][j]);
2446 fprintf(stdout,"\n");
2448 #ifndef OPENSSL_NO_RSA
2450 for (k=0; k<RSA_NUM; k++)
2452 if (!rsa_doit[k]) continue;
2455 printf("%18ssign verify sign/s verify/s\n"," ");
2459 fprintf(stdout,"+F2:%u:%u:%f:%f\n",
2460 k,rsa_bits[k],rsa_results[k][0],
2463 fprintf(stdout,"rsa %4u bits %8.6fs %8.6fs %8.1f %8.1f\n",
2464 rsa_bits[k],rsa_results[k][0],rsa_results[k][1],
2465 1.0/rsa_results[k][0],1.0/rsa_results[k][1]);
2468 #ifndef OPENSSL_NO_DSA
2470 for (k=0; k<DSA_NUM; k++)
2472 if (!dsa_doit[k]) continue;
2475 printf("%18ssign verify sign/s verify/s\n"," ");
2479 fprintf(stdout,"+F3:%u:%u:%f:%f\n",
2480 k,dsa_bits[k],dsa_results[k][0],dsa_results[k][1]);
2482 fprintf(stdout,"dsa %4u bits %8.6fs %8.6fs %8.1f %8.1f\n",
2483 dsa_bits[k],dsa_results[k][0],dsa_results[k][1],
2484 1.0/dsa_results[k][0],1.0/dsa_results[k][1]);
2487 #ifndef OPENSSL_NO_ECDSA
2489 for (k=0; k<EC_NUM; k++)
2491 if (!ecdsa_doit[k]) continue;
2494 printf("%30ssign verify sign/s verify/s\n"," ");
2499 fprintf(stdout,"+F4:%u:%u:%f:%f\n",
2500 k, test_curves_bits[k],
2501 ecdsa_results[k][0],ecdsa_results[k][1]);
2504 "%4u bit ecdsa (%s) %8.4fs %8.4fs %8.1f %8.1f\n",
2505 test_curves_bits[k],
2506 test_curves_names[k],
2507 ecdsa_results[k][0],ecdsa_results[k][1],
2508 1.0/ecdsa_results[k][0],1.0/ecdsa_results[k][1]);
2513 #ifndef OPENSSL_NO_ECDH
2515 for (k=0; k<EC_NUM; k++)
2517 if (!ecdh_doit[k]) continue;
2520 printf("%30sop op/s\n"," ");
2524 fprintf(stdout,"+F5:%u:%u:%f:%f\n",
2525 k, test_curves_bits[k],
2526 ecdh_results[k][0], 1.0/ecdh_results[k][0]);
2529 fprintf(stdout,"%4u bit ecdh (%s) %8.4fs %8.1f\n",
2530 test_curves_bits[k],
2531 test_curves_names[k],
2532 ecdh_results[k][0], 1.0/ecdh_results[k][0]);
2539 ERR_print_errors(bio_err);
2540 if (buf != NULL) OPENSSL_free(buf);
2541 if (buf2 != NULL) OPENSSL_free(buf2);
2542 #ifndef OPENSSL_NO_RSA
2543 for (i=0; i<RSA_NUM; i++)
2544 if (rsa_key[i] != NULL)
2545 RSA_free(rsa_key[i]);
2547 #ifndef OPENSSL_NO_DSA
2548 for (i=0; i<DSA_NUM; i++)
2549 if (dsa_key[i] != NULL)
2550 DSA_free(dsa_key[i]);
2553 #ifndef OPENSSL_NO_ECDSA
2554 for (i=0; i<EC_NUM; i++)
2555 if (ecdsa[i] != NULL)
2556 EC_KEY_free(ecdsa[i]);
2558 #ifndef OPENSSL_NO_ECDH
2559 for (i=0; i<EC_NUM; i++)
2561 if (ecdh_a[i] != NULL)
2562 EC_KEY_free(ecdh_a[i]);
2563 if (ecdh_b[i] != NULL)
2564 EC_KEY_free(ecdh_b[i]);
2572 static void print_message(const char *s, long num, int length)
2575 BIO_printf(bio_err,mr ? "+DT:%s:%d:%d\n"
2576 : "Doing %s for %ds on %d size blocks: ",s,SECONDS,length);
2577 (void)BIO_flush(bio_err);
2580 BIO_printf(bio_err,mr ? "+DN:%s:%ld:%d\n"
2581 : "Doing %s %ld times on %d size blocks: ",s,num,length);
2582 (void)BIO_flush(bio_err);
2589 static void pkey_print_message(const char *str, const char *str2, long num,
2593 BIO_printf(bio_err,mr ? "+DTP:%d:%s:%s:%d\n"
2594 : "Doing %d bit %s %s's for %ds: ",bits,str,str2,tm);
2595 (void)BIO_flush(bio_err);
2598 BIO_printf(bio_err,mr ? "+DNP:%ld:%d:%s:%s\n"
2599 : "Doing %ld %d bit %s %s's: ",num,bits,str,str2);
2600 (void)BIO_flush(bio_err);
2607 static void print_result(int alg,int run_no,int count,double time_used)
2609 BIO_printf(bio_err,mr ? "+R:%d:%s:%f\n"
2610 : "%d %s's in %.2fs\n",count,names[alg],time_used);
2611 results[alg][run_no]=((double)count)/time_used*lengths[run_no];
2615 static char *sstrsep(char **string, const char *delim)
2618 char *token = *string;
2623 memset(isdelim, 0, sizeof isdelim);
2628 isdelim[(unsigned char)(*delim)] = 1;
2632 while (!isdelim[(unsigned char)(**string)])
2646 static int do_multi(int multi)
2651 static char sep[]=":";
2653 fds=malloc(multi*sizeof *fds);
2654 for(n=0 ; n < multi ; ++n)
2658 fprintf(stderr, "pipe failure\n");
2672 if (dup(fd[1]) == -1)
2674 fprintf(stderr, "dup failed\n");
2683 printf("Forked child %d\n",n);
2686 /* for now, assume the pipe is long enough to take all the output */
2687 for(n=0 ; n < multi ; ++n)
2693 f=fdopen(fds[n],"r");
2694 while(fgets(buf,sizeof buf,f))
2701 fprintf(stderr,"Don't understand line '%s' from child %d\n",
2705 printf("Got: %s from %d\n",buf,n);
2706 if(!strncmp(buf,"+F:",3))
2712 alg=atoi(sstrsep(&p,sep));
2714 for(j=0 ; j < SIZE_NUM ; ++j)
2715 results[alg][j]+=atof(sstrsep(&p,sep));
2717 else if(!strncmp(buf,"+F2:",4))
2723 k=atoi(sstrsep(&p,sep));
2726 d=atof(sstrsep(&p,sep));
2728 rsa_results[k][0]=1/(1/rsa_results[k][0]+1/d);
2730 rsa_results[k][0]=d;
2732 d=atof(sstrsep(&p,sep));
2734 rsa_results[k][1]=1/(1/rsa_results[k][1]+1/d);
2736 rsa_results[k][1]=d;
2738 else if(!strncmp(buf,"+F2:",4))
2744 k=atoi(sstrsep(&p,sep));
2747 d=atof(sstrsep(&p,sep));
2749 rsa_results[k][0]=1/(1/rsa_results[k][0]+1/d);
2751 rsa_results[k][0]=d;
2753 d=atof(sstrsep(&p,sep));
2755 rsa_results[k][1]=1/(1/rsa_results[k][1]+1/d);
2757 rsa_results[k][1]=d;
2759 #ifndef OPENSSL_NO_DSA
2760 else if(!strncmp(buf,"+F3:",4))
2766 k=atoi(sstrsep(&p,sep));
2769 d=atof(sstrsep(&p,sep));
2771 dsa_results[k][0]=1/(1/dsa_results[k][0]+1/d);
2773 dsa_results[k][0]=d;
2775 d=atof(sstrsep(&p,sep));
2777 dsa_results[k][1]=1/(1/dsa_results[k][1]+1/d);
2779 dsa_results[k][1]=d;
2782 #ifndef OPENSSL_NO_ECDSA
2783 else if(!strncmp(buf,"+F4:",4))
2789 k=atoi(sstrsep(&p,sep));
2792 d=atof(sstrsep(&p,sep));
2794 ecdsa_results[k][0]=1/(1/ecdsa_results[k][0]+1/d);
2796 ecdsa_results[k][0]=d;
2798 d=atof(sstrsep(&p,sep));
2800 ecdsa_results[k][1]=1/(1/ecdsa_results[k][1]+1/d);
2802 ecdsa_results[k][1]=d;
2806 #ifndef OPENSSL_NO_ECDH
2807 else if(!strncmp(buf,"+F5:",4))
2813 k=atoi(sstrsep(&p,sep));
2816 d=atof(sstrsep(&p,sep));
2818 ecdh_results[k][0]=1/(1/ecdh_results[k][0]+1/d);
2820 ecdh_results[k][0]=d;
2825 else if(!strncmp(buf,"+H:",3))
2829 fprintf(stderr,"Unknown type '%s' from child %d\n",buf,n);