2001-09-27 23:43:55 +08:00
|
|
|
/* apps/speed.c -*- mode:C; c-file-style: "eay" -*- */
|
1998-12-21 18:56:39 +08:00
|
|
|
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
1998-12-21 18:52:47 +08:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This package is an SSL implementation written
|
|
|
|
* by Eric Young (eay@cryptsoft.com).
|
|
|
|
* The implementation was written so as to conform with Netscapes SSL.
|
|
|
|
*
|
|
|
|
* This library is free for commercial and non-commercial use as long as
|
|
|
|
* the following conditions are aheared to. The following conditions
|
|
|
|
* apply to all code found in this distribution, be it the RC4, RSA,
|
|
|
|
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
|
|
|
* included with this distribution is covered by the same copyright terms
|
|
|
|
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
|
|
|
*
|
|
|
|
* Copyright remains Eric Young's, and as such any Copyright notices in
|
|
|
|
* the code are not to be removed.
|
|
|
|
* If this package is used in a product, Eric Young should be given attribution
|
|
|
|
* as the author of the parts of the library used.
|
|
|
|
* This can be in the form of a textual message at program startup or
|
|
|
|
* in documentation (online or textual) provided with the package.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* "This product includes cryptographic software written by
|
|
|
|
* Eric Young (eay@cryptsoft.com)"
|
|
|
|
* The word 'cryptographic' can be left out if the rouines from the library
|
|
|
|
* being used are not cryptographic related :-).
|
|
|
|
* 4. If you include any Windows specific code (or a derivative thereof) from
|
|
|
|
* the apps directory (application code) you must include an acknowledgement:
|
|
|
|
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* The licence and distribution terms for any publically available version or
|
|
|
|
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
|
|
|
* copied and put under another distribution licence
|
|
|
|
* [including the GNU Public Licence.]
|
|
|
|
*/
|
2002-08-09 16:43:04 +08:00
|
|
|
/* ====================================================================
|
|
|
|
* Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
|
|
|
|
*
|
|
|
|
* Portions of the attached software ("Contribution") are developed by
|
|
|
|
* SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project.
|
|
|
|
*
|
|
|
|
* The Contribution is licensed pursuant to the OpenSSL open source
|
|
|
|
* license provided above.
|
|
|
|
*
|
|
|
|
* The ECDH and ECDSA speed test software is originally written by
|
|
|
|
* Sumit Gupta of Sun Microsystems Laboratories.
|
|
|
|
*
|
|
|
|
*/
|
1998-12-21 18:52:47 +08:00
|
|
|
|
|
|
|
/* most of this code has been pilfered from my libdes speed.c program */
|
|
|
|
|
2003-02-14 09:02:58 +08:00
|
|
|
#ifndef OPENSSL_NO_SPEED
|
|
|
|
|
1998-12-21 18:52:47 +08:00
|
|
|
#undef SECONDS
|
|
|
|
#define SECONDS 3
|
1998-12-21 19:00:56 +08:00
|
|
|
#define RSA_SECONDS 10
|
|
|
|
#define DSA_SECONDS 10
|
2002-08-09 16:43:04 +08:00
|
|
|
#define ECDSA_SECONDS 10
|
|
|
|
#define ECDH_SECONDS 10
|
1998-12-21 18:52:47 +08:00
|
|
|
|
|
|
|
/* 11-Sep-92 Andrew Daviel Support for Silicon Graphics IRIX added */
|
|
|
|
/* 06-Apr-92 Luke Brennan Support for VMS and add extra signal calls */
|
|
|
|
|
|
|
|
#undef PROG
|
|
|
|
#define PROG speed_main
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2003-11-28 21:10:58 +08:00
|
|
|
|
1998-12-21 18:52:47 +08:00
|
|
|
#include <string.h>
|
1998-12-21 18:56:39 +08:00
|
|
|
#include <math.h>
|
1998-12-21 18:52:47 +08:00
|
|
|
#include "apps.h"
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifdef OPENSSL_NO_STDIO
|
1998-12-21 18:52:47 +08:00
|
|
|
#define APPS_WIN16
|
|
|
|
#endif
|
1999-04-24 06:13:45 +08:00
|
|
|
#include <openssl/crypto.h>
|
|
|
|
#include <openssl/rand.h>
|
|
|
|
#include <openssl/err.h>
|
2000-11-20 12:14:19 +08:00
|
|
|
#include <openssl/evp.h>
|
|
|
|
#include <openssl/objects.h>
|
2001-11-05 20:43:17 +08:00
|
|
|
#if !defined(OPENSSL_SYS_MSDOS)
|
2001-09-28 18:34:48 +08:00
|
|
|
#include OPENSSL_UNISTD
|
2001-11-05 20:43:17 +08:00
|
|
|
#endif
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2003-11-28 21:10:58 +08:00
|
|
|
#ifndef OPENSSL_SYS_NETWARE
|
|
|
|
#include <signal.h>
|
|
|
|
#endif
|
|
|
|
|
2001-04-11 18:06:02 +08:00
|
|
|
#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(OPENSSL_SYS_MACOSX)
|
2000-07-02 00:25:20 +08:00
|
|
|
# define USE_TOD
|
2002-02-14 23:37:38 +08:00
|
|
|
#elif !defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_VXWORKS) && (!defined(OPENSSL_SYS_VMS) || defined(__DECC))
|
2000-07-02 00:25:20 +08:00
|
|
|
# define TIMES
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
2002-02-14 23:37:38 +08:00
|
|
|
#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 */
|
2000-08-04 05:54:31 +08:00
|
|
|
# define TIMEB
|
|
|
|
#endif
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2003-11-28 21:10:58 +08:00
|
|
|
#if defined(OPENSSL_SYS_NETWARE)
|
|
|
|
#undef TIMES
|
|
|
|
#undef TIMEB
|
|
|
|
#include <time.h>
|
|
|
|
#endif
|
|
|
|
|
1998-12-21 18:52:47 +08:00
|
|
|
#ifndef _IRIX
|
2000-07-02 00:25:20 +08:00
|
|
|
# include <time.h>
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
|
|
|
#ifdef TIMES
|
2000-07-02 00:25:20 +08:00
|
|
|
# include <sys/types.h>
|
|
|
|
# include <sys/times.h>
|
|
|
|
#endif
|
|
|
|
#ifdef USE_TOD
|
|
|
|
# include <sys/time.h>
|
|
|
|
# include <sys/resource.h>
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
1999-05-13 19:37:32 +08:00
|
|
|
|
|
|
|
/* Depending on the VMS version, the tms structure is perhaps defined.
|
|
|
|
The __TMS macro will show if it was. If it wasn't defined, we should
|
|
|
|
undefine TIMES, since that tells the rest of the program how things
|
|
|
|
should be handled. -- Richard Levitte */
|
2001-02-20 16:13:47 +08:00
|
|
|
#if defined(OPENSSL_SYS_VMS_DECC) && !defined(__TMS)
|
1999-05-13 19:37:32 +08:00
|
|
|
#undef TIMES
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
1999-05-13 19:37:32 +08:00
|
|
|
|
2000-08-04 05:54:31 +08:00
|
|
|
#ifdef TIMEB
|
1998-12-21 18:52:47 +08:00
|
|
|
#include <sys/timeb.h>
|
2000-08-04 05:54:31 +08:00
|
|
|
#endif
|
|
|
|
|
2003-11-28 21:10:58 +08:00
|
|
|
#if !defined(TIMES) && !defined(TIMEB) && !defined(USE_TOD) && !defined(OPENSSL_SYS_VXWORKS) && !defined(OPENSSL_SYS_NETWARE)
|
2000-08-04 05:54:31 +08:00
|
|
|
#error "It seems neither struct tms nor struct timeb is supported in this platform!"
|
|
|
|
#endif
|
1998-12-21 18:52:47 +08:00
|
|
|
|
1998-12-21 19:00:56 +08:00
|
|
|
#if defined(sun) || defined(__ultrix)
|
|
|
|
#define _POSIX_SOURCE
|
1998-12-21 18:52:47 +08:00
|
|
|
#include <limits.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#endif
|
|
|
|
|
2004-05-18 03:05:32 +08:00
|
|
|
#include <openssl/bn.h>
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_DES
|
2002-03-22 10:42:57 +08:00
|
|
|
#include <openssl/des.h>
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
2002-01-03 00:57:57 +08:00
|
|
|
#ifndef OPENSSL_NO_AES
|
|
|
|
#include <openssl/aes.h>
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_MD2
|
1999-04-24 06:13:45 +08:00
|
|
|
#include <openssl/md2.h>
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_MDC2
|
1999-04-24 06:13:45 +08:00
|
|
|
#include <openssl/mdc2.h>
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_MD4
|
2000-08-14 22:05:53 +08:00
|
|
|
#include <openssl/md4.h>
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_MD5
|
1999-04-24 06:13:45 +08:00
|
|
|
#include <openssl/md5.h>
|
1999-06-30 08:42:56 +08:00
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_HMAC
|
1999-04-24 06:13:45 +08:00
|
|
|
#include <openssl/hmac.h>
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
1999-06-30 08:42:56 +08:00
|
|
|
#include <openssl/evp.h>
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_SHA
|
1999-04-24 06:13:45 +08:00
|
|
|
#include <openssl/sha.h>
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RIPEMD
|
1999-04-24 06:13:45 +08:00
|
|
|
#include <openssl/ripemd.h>
|
1998-12-21 18:56:39 +08:00
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RC4
|
1999-04-24 06:13:45 +08:00
|
|
|
#include <openssl/rc4.h>
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RC5
|
1999-04-24 06:13:45 +08:00
|
|
|
#include <openssl/rc5.h>
|
1998-12-21 18:56:39 +08:00
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RC2
|
1999-04-24 06:13:45 +08:00
|
|
|
#include <openssl/rc2.h>
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_IDEA
|
1999-04-24 06:13:45 +08:00
|
|
|
#include <openssl/idea.h>
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_BF
|
1999-04-24 06:13:45 +08:00
|
|
|
#include <openssl/blowfish.h>
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_CAST
|
1999-04-24 06:13:45 +08:00
|
|
|
#include <openssl/cast.h>
|
1998-12-21 18:56:39 +08:00
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RSA
|
1999-04-24 06:13:45 +08:00
|
|
|
#include <openssl/rsa.h>
|
1999-04-27 09:14:46 +08:00
|
|
|
#include "./testrsa.h"
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
1999-04-24 06:13:45 +08:00
|
|
|
#include <openssl/x509.h>
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_DSA
|
2004-04-20 02:13:07 +08:00
|
|
|
#include <openssl/dsa.h>
|
1998-12-21 18:52:47 +08:00
|
|
|
#include "./testdsa.h"
|
|
|
|
#endif
|
2002-08-09 16:43:04 +08:00
|
|
|
#ifndef OPENSSL_NO_ECDSA
|
|
|
|
#include <openssl/ecdsa.h>
|
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_ECDH
|
|
|
|
#include <openssl/ecdh.h>
|
|
|
|
#endif
|
1998-12-21 18:52:47 +08:00
|
|
|
|
For whatever reason (compiler or header bugs), at least one commonly-used
linux system (namely mine) chokes on our definitions and uses of the "HZ"
symbol in crypto/tmdiff.[ch] and apps/speed.c as a "bad function cast"
(when in fact there is no function casting involved at all). In both cases,
it is easily worked around by not defining a cast into the macro and
jiggling the expressions slightly.
In addition - this highlights some cruft in openssl that needs sorting out.
The tmdiff.h header is exported as part of the openssl API despite the fact
that it is ugly as the driven sludge and not used anywhere in the library,
applications, or utilities. More weird still, almost identical code exists
in apps/speed.c though it looks to be slightly tweaked - so either tmdiff
should be updated and used by speed.c, or it should be dumped because it's
obviously not useful enough.
Rather than removing it for now, I've changed the API for tmdiff to at
least make sense. This involves taking the object type (MS_TM) from the
implementation and using it in the header rather than using "char *" in the
API and casting mercilessly in the code (ugh). If someone doesn't like
"MS_TM" and the "ms_time_***" naming, by all means change it. This should
be a harmless improvement, because the existing API is clearly not very
useful (eg. we reimplement it rather than using it in our own utils).
However, someone still needs to take a hack at consolidating speed.c and
tmdiff.[ch] somehow.
2003-10-29 12:40:13 +08:00
|
|
|
/*
|
|
|
|
* The following "HZ" timing stuff should be sync'd up with the code in
|
|
|
|
* crypto/tmdiff.[ch]. That appears to try to do the same job, though I think
|
|
|
|
* this code is more up to date than libcrypto's so there may be features to
|
|
|
|
* migrate over first. This is used in two places further down AFAICS.
|
|
|
|
* The point is that nothing in openssl actually *uses* that tmdiff stuff, so
|
|
|
|
* either speed.c should be using it or it should go because it's obviously not
|
|
|
|
* useful enough. Anyone want to do a janitorial job on this?
|
|
|
|
*/
|
|
|
|
|
1998-12-21 18:52:47 +08:00
|
|
|
/* The following if from times(3) man page. It may need to be changed */
|
|
|
|
#ifndef HZ
|
2002-11-19 07:05:39 +08:00
|
|
|
# if defined(_SC_CLK_TCK) \
|
|
|
|
&& (!defined(OPENSSL_SYS_VMS) || __CTRL_VER >= 70000000)
|
For whatever reason (compiler or header bugs), at least one commonly-used
linux system (namely mine) chokes on our definitions and uses of the "HZ"
symbol in crypto/tmdiff.[ch] and apps/speed.c as a "bad function cast"
(when in fact there is no function casting involved at all). In both cases,
it is easily worked around by not defining a cast into the macro and
jiggling the expressions slightly.
In addition - this highlights some cruft in openssl that needs sorting out.
The tmdiff.h header is exported as part of the openssl API despite the fact
that it is ugly as the driven sludge and not used anywhere in the library,
applications, or utilities. More weird still, almost identical code exists
in apps/speed.c though it looks to be slightly tweaked - so either tmdiff
should be updated and used by speed.c, or it should be dumped because it's
obviously not useful enough.
Rather than removing it for now, I've changed the API for tmdiff to at
least make sense. This involves taking the object type (MS_TM) from the
implementation and using it in the header rather than using "char *" in the
API and casting mercilessly in the code (ugh). If someone doesn't like
"MS_TM" and the "ms_time_***" naming, by all means change it. This should
be a harmless improvement, because the existing API is clearly not very
useful (eg. we reimplement it rather than using it in our own utils).
However, someone still needs to take a hack at consolidating speed.c and
tmdiff.[ch] somehow.
2003-10-29 12:40:13 +08:00
|
|
|
# define HZ sysconf(_SC_CLK_TCK)
|
2001-09-28 18:34:48 +08:00
|
|
|
# else
|
|
|
|
# ifndef CLK_TCK
|
|
|
|
# ifndef _BSD_CLK_TCK_ /* FreeBSD hack */
|
|
|
|
# define HZ 100.0
|
|
|
|
# else /* _BSD_CLK_TCK_ */
|
|
|
|
# define HZ ((double)_BSD_CLK_TCK_)
|
|
|
|
# endif
|
|
|
|
# else /* CLK_TCK */
|
2001-09-27 23:43:55 +08:00
|
|
|
# define HZ ((double)CLK_TCK)
|
|
|
|
# endif
|
1998-12-21 18:52:47 +08:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2003-11-28 21:10:58 +08:00
|
|
|
#if !defined(OPENSSL_SYS_VMS) && !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MACINTOSH_CLASSIC) && !defined(OPENSSL_SYS_OS2) && !defined(OPENSSL_SYS_NETWARE)
|
2001-10-26 00:08:17 +08:00
|
|
|
# define HAVE_FORK 1
|
|
|
|
#endif
|
|
|
|
|
1998-12-21 18:52:47 +08:00
|
|
|
#undef BUFSIZE
|
2004-06-29 00:32:12 +08:00
|
|
|
#define BUFSIZE ((long)1024*8+1)
|
1998-12-21 18:52:47 +08:00
|
|
|
int run=0;
|
|
|
|
|
2001-09-27 23:43:55 +08:00
|
|
|
static char ftime_used = 0, times_used = 0, gettimeofday_used = 0, getrusage_used = 0;
|
2001-10-25 22:27:17 +08:00
|
|
|
static int mr=0;
|
|
|
|
static int usertime=1;
|
2001-09-27 23:43:55 +08:00
|
|
|
|
2001-10-25 22:27:17 +08:00
|
|
|
static double Time_F(int s);
|
2000-11-20 12:14:19 +08:00
|
|
|
static void print_message(const char *s,long num,int length);
|
1998-12-21 18:52:47 +08:00
|
|
|
static void pkey_print_message(char *str,char *str2,long num,int bits,int sec);
|
2001-10-25 22:27:17 +08:00
|
|
|
static void print_result(int alg,int run_no,int count,double time_used);
|
2001-10-26 00:08:17 +08:00
|
|
|
#ifdef HAVE_FORK
|
2001-10-25 22:27:17 +08:00
|
|
|
static int do_multi(int multi);
|
2001-10-26 00:08:17 +08:00
|
|
|
#endif
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2004-05-21 05:49:38 +08:00
|
|
|
#define ALGOR_NUM 21
|
2001-10-25 22:27:17 +08:00
|
|
|
#define SIZE_NUM 5
|
|
|
|
#define RSA_NUM 4
|
|
|
|
#define DSA_NUM 3
|
2002-08-09 16:43:04 +08:00
|
|
|
|
2002-10-28 21:23:24 +08:00
|
|
|
#define EC_NUM 16
|
2002-08-09 16:43:04 +08:00
|
|
|
#define MAX_ECDH_SIZE 256
|
|
|
|
|
2001-10-25 22:27:17 +08:00
|
|
|
static const char *names[ALGOR_NUM]={
|
|
|
|
"md2","mdc2","md4","md5","hmac(md5)","sha1","rmd160","rc4",
|
|
|
|
"des cbc","des ede3","idea cbc",
|
2002-01-03 00:57:57 +08:00
|
|
|
"rc2 cbc","rc5-32/12 cbc","blowfish cbc","cast cbc",
|
2004-05-31 20:40:22 +08:00
|
|
|
"aes-128 cbc","aes-192 cbc","aes-256 cbc","evp","sha256","sha512"};
|
2001-10-25 22:27:17 +08:00
|
|
|
static double results[ALGOR_NUM][SIZE_NUM];
|
2002-01-03 00:57:57 +08:00
|
|
|
static int lengths[SIZE_NUM]={16,64,256,1024,8*1024};
|
2001-10-25 22:27:17 +08:00
|
|
|
static double rsa_results[RSA_NUM][2];
|
|
|
|
static double dsa_results[DSA_NUM][2];
|
2002-08-09 16:43:04 +08:00
|
|
|
static double ecdsa_results[EC_NUM][2];
|
|
|
|
static double ecdh_results[EC_NUM][1];
|
|
|
|
|
2001-10-25 22:27:17 +08:00
|
|
|
|
2001-11-06 21:40:27 +08:00
|
|
|
#ifdef SIGALRM
|
|
|
|
#if defined(__STDC__) || defined(sgi) || defined(_AIX)
|
|
|
|
#define SIGRETTYPE void
|
|
|
|
#else
|
|
|
|
#define SIGRETTYPE int
|
|
|
|
#endif
|
|
|
|
|
1998-12-21 18:52:47 +08:00
|
|
|
static SIGRETTYPE sig_done(int sig);
|
1999-04-20 05:31:43 +08:00
|
|
|
static SIGRETTYPE sig_done(int sig)
|
1998-12-21 18:52:47 +08:00
|
|
|
{
|
|
|
|
signal(SIGALRM,sig_done);
|
|
|
|
run=0;
|
|
|
|
#ifdef LINT
|
|
|
|
sig=sig;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define START 0
|
|
|
|
#define STOP 1
|
|
|
|
|
2003-11-28 21:10:58 +08:00
|
|
|
#if defined(OPENSSL_SYS_NETWARE)
|
|
|
|
|
|
|
|
/* for NetWare the best we can do is use clock() which returns the
|
|
|
|
* time, in hundredths of a second, since the NLM began executing
|
|
|
|
*/
|
|
|
|
static double Time_F(int s)
|
|
|
|
{
|
|
|
|
double ret;
|
|
|
|
|
|
|
|
static clock_t tstart,tend;
|
|
|
|
|
|
|
|
if (s == START)
|
|
|
|
{
|
|
|
|
tstart=clock();
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tend=clock();
|
|
|
|
ret=(double)((double)(tend)-(double)(tstart));
|
|
|
|
return((ret < 0.001)?0.001:ret);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2001-10-25 22:27:17 +08:00
|
|
|
static double Time_F(int s)
|
1998-12-21 18:52:47 +08:00
|
|
|
{
|
|
|
|
double ret;
|
2000-07-02 00:25:20 +08:00
|
|
|
|
|
|
|
#ifdef USE_TOD
|
|
|
|
if(usertime)
|
For whatever reason (compiler or header bugs), at least one commonly-used
linux system (namely mine) chokes on our definitions and uses of the "HZ"
symbol in crypto/tmdiff.[ch] and apps/speed.c as a "bad function cast"
(when in fact there is no function casting involved at all). In both cases,
it is easily worked around by not defining a cast into the macro and
jiggling the expressions slightly.
In addition - this highlights some cruft in openssl that needs sorting out.
The tmdiff.h header is exported as part of the openssl API despite the fact
that it is ugly as the driven sludge and not used anywhere in the library,
applications, or utilities. More weird still, almost identical code exists
in apps/speed.c though it looks to be slightly tweaked - so either tmdiff
should be updated and used by speed.c, or it should be dumped because it's
obviously not useful enough.
Rather than removing it for now, I've changed the API for tmdiff to at
least make sense. This involves taking the object type (MS_TM) from the
implementation and using it in the header rather than using "char *" in the
API and casting mercilessly in the code (ugh). If someone doesn't like
"MS_TM" and the "ms_time_***" naming, by all means change it. This should
be a harmless improvement, because the existing API is clearly not very
useful (eg. we reimplement it rather than using it in our own utils).
However, someone still needs to take a hack at consolidating speed.c and
tmdiff.[ch] somehow.
2003-10-29 12:40:13 +08:00
|
|
|
{
|
2000-07-02 00:25:20 +08:00
|
|
|
static struct rusage tstart,tend;
|
|
|
|
|
2001-09-27 23:43:55 +08:00
|
|
|
getrusage_used = 1;
|
2000-07-02 00:25:20 +08:00
|
|
|
if (s == START)
|
|
|
|
{
|
|
|
|
getrusage(RUSAGE_SELF,&tstart);
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
long i;
|
|
|
|
|
|
|
|
getrusage(RUSAGE_SELF,&tend);
|
|
|
|
i=(long)tend.ru_utime.tv_usec-(long)tstart.ru_utime.tv_usec;
|
|
|
|
ret=((double)(tend.ru_utime.tv_sec-tstart.ru_utime.tv_sec))
|
|
|
|
+((double)i)/1000000.0;
|
|
|
|
return((ret < 0.001)?0.001:ret);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
static struct timeval tstart,tend;
|
|
|
|
long i;
|
|
|
|
|
2001-09-27 23:43:55 +08:00
|
|
|
gettimeofday_used = 1;
|
2000-07-02 00:25:20 +08:00
|
|
|
if (s == START)
|
|
|
|
{
|
|
|
|
gettimeofday(&tstart,NULL);
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gettimeofday(&tend,NULL);
|
|
|
|
i=(long)tend.tv_usec-(long)tstart.tv_usec;
|
|
|
|
ret=((double)(tend.tv_sec-tstart.tv_sec))+((double)i)/1000000.0;
|
|
|
|
return((ret < 0.001)?0.001:ret);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else /* ndef USE_TOD */
|
|
|
|
|
|
|
|
# ifdef TIMES
|
2000-07-01 01:16:46 +08:00
|
|
|
if (usertime)
|
1998-12-21 18:52:47 +08:00
|
|
|
{
|
2000-07-01 01:16:46 +08:00
|
|
|
static struct tms tstart,tend;
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2001-09-27 23:43:55 +08:00
|
|
|
times_used = 1;
|
2000-07-01 01:16:46 +08:00
|
|
|
if (s == START)
|
|
|
|
{
|
|
|
|
times(&tstart);
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
times(&tend);
|
For whatever reason (compiler or header bugs), at least one commonly-used
linux system (namely mine) chokes on our definitions and uses of the "HZ"
symbol in crypto/tmdiff.[ch] and apps/speed.c as a "bad function cast"
(when in fact there is no function casting involved at all). In both cases,
it is easily worked around by not defining a cast into the macro and
jiggling the expressions slightly.
In addition - this highlights some cruft in openssl that needs sorting out.
The tmdiff.h header is exported as part of the openssl API despite the fact
that it is ugly as the driven sludge and not used anywhere in the library,
applications, or utilities. More weird still, almost identical code exists
in apps/speed.c though it looks to be slightly tweaked - so either tmdiff
should be updated and used by speed.c, or it should be dumped because it's
obviously not useful enough.
Rather than removing it for now, I've changed the API for tmdiff to at
least make sense. This involves taking the object type (MS_TM) from the
implementation and using it in the header rather than using "char *" in the
API and casting mercilessly in the code (ugh). If someone doesn't like
"MS_TM" and the "ms_time_***" naming, by all means change it. This should
be a harmless improvement, because the existing API is clearly not very
useful (eg. we reimplement it rather than using it in our own utils).
However, someone still needs to take a hack at consolidating speed.c and
tmdiff.[ch] somehow.
2003-10-29 12:40:13 +08:00
|
|
|
ret = HZ;
|
|
|
|
ret=(double)(tend.tms_utime-tstart.tms_utime) / ret;
|
2000-07-01 01:16:46 +08:00
|
|
|
return((ret < 1e-3)?1e-3:ret);
|
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
2000-07-02 00:25:20 +08:00
|
|
|
# endif /* times() */
|
2000-08-04 05:54:31 +08:00
|
|
|
# if defined(TIMES) && defined(TIMEB)
|
|
|
|
else
|
|
|
|
# endif
|
2002-02-14 23:37:38 +08:00
|
|
|
# ifdef OPENSSL_SYS_VXWORKS
|
|
|
|
{
|
|
|
|
static unsigned long tick_start, tick_end;
|
|
|
|
|
|
|
|
if( s == START )
|
|
|
|
{
|
|
|
|
tick_start = tickGet();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tick_end = tickGet();
|
|
|
|
ret = (double)(tick_end - tick_start) / (double)sysClkRateGet();
|
|
|
|
return((ret < 0.001)?0.001:ret);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
# elif defined(TIMEB)
|
1998-12-21 18:52:47 +08:00
|
|
|
{
|
2000-07-01 01:16:46 +08:00
|
|
|
static struct timeb tstart,tend;
|
|
|
|
long i;
|
|
|
|
|
2001-09-27 23:43:55 +08:00
|
|
|
ftime_used = 1;
|
2000-07-01 01:16:46 +08:00
|
|
|
if (s == START)
|
|
|
|
{
|
|
|
|
ftime(&tstart);
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ftime(&tend);
|
|
|
|
i=(long)tend.millitm-(long)tstart.millitm;
|
|
|
|
ret=((double)(tend.time-tstart.time))+((double)i)/1000.0;
|
|
|
|
return((ret < 0.001)?0.001:ret);
|
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
2000-08-04 05:54:31 +08:00
|
|
|
# endif
|
2000-07-02 00:25:20 +08:00
|
|
|
#endif
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
2003-11-28 21:10:58 +08:00
|
|
|
#endif /* if defined(OPENSSL_SYS_NETWARE) */
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2003-02-28 23:37:10 +08:00
|
|
|
|
|
|
|
static const int KDF1_SHA1_len = 20;
|
|
|
|
static void *KDF1_SHA1(void *in, size_t inlen, void *out, size_t outlen)
|
|
|
|
{
|
|
|
|
#ifndef OPENSSL_NO_SHA
|
|
|
|
if (outlen != SHA_DIGEST_LENGTH)
|
|
|
|
return NULL;
|
|
|
|
return SHA1(in, inlen, out);
|
|
|
|
#else
|
|
|
|
return NULL;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-02-11 17:47:18 +08:00
|
|
|
int MAIN(int, char **);
|
|
|
|
|
1999-04-20 05:31:43 +08:00
|
|
|
int MAIN(int argc, char **argv)
|
1998-12-21 18:52:47 +08:00
|
|
|
{
|
2003-01-31 01:39:26 +08:00
|
|
|
#ifndef OPENSSL_NO_ENGINE
|
2002-01-29 20:36:01 +08:00
|
|
|
ENGINE *e = NULL;
|
2003-01-31 01:39:26 +08:00
|
|
|
#endif
|
1998-12-21 18:52:47 +08:00
|
|
|
unsigned char *buf=NULL,*buf2=NULL;
|
1999-10-04 02:09:45 +08:00
|
|
|
int mret=1;
|
2002-03-18 21:10:45 +08:00
|
|
|
long count=0,save_count=0;
|
1999-10-04 02:09:45 +08:00
|
|
|
int i,j,k;
|
2002-03-18 21:10:45 +08:00
|
|
|
#if !defined(OPENSSL_NO_RSA) || !defined(OPENSSL_NO_DSA)
|
|
|
|
long rsa_count;
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RSA
|
2000-09-14 19:09:03 +08:00
|
|
|
unsigned rsa_num;
|
2001-01-10 05:39:16 +08:00
|
|
|
#endif
|
2001-11-16 04:19:40 +08:00
|
|
|
unsigned char md[EVP_MAX_MD_SIZE];
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_MD2
|
1998-12-21 18:52:47 +08:00
|
|
|
unsigned char md2[MD2_DIGEST_LENGTH];
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_MDC2
|
1998-12-21 18:52:47 +08:00
|
|
|
unsigned char mdc2[MDC2_DIGEST_LENGTH];
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_MD4
|
2000-08-14 22:05:53 +08:00
|
|
|
unsigned char md4[MD4_DIGEST_LENGTH];
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_MD5
|
1998-12-21 18:52:47 +08:00
|
|
|
unsigned char md5[MD5_DIGEST_LENGTH];
|
1998-12-21 18:56:39 +08:00
|
|
|
unsigned char hmac[MD5_DIGEST_LENGTH];
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_SHA
|
1998-12-21 18:52:47 +08:00
|
|
|
unsigned char sha[SHA_DIGEST_LENGTH];
|
2004-05-21 05:49:38 +08:00
|
|
|
unsigned char sha256[SHA256_DIGEST_LENGTH];
|
|
|
|
unsigned char sha512[SHA512_DIGEST_LENGTH];
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RIPEMD
|
1998-12-21 18:56:39 +08:00
|
|
|
unsigned char rmd160[RIPEMD160_DIGEST_LENGTH];
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RC4
|
1998-12-21 18:52:47 +08:00
|
|
|
RC4_KEY rc4_ks;
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RC5
|
1998-12-21 18:56:39 +08:00
|
|
|
RC5_32_KEY rc5_ks;
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RC2
|
1998-12-21 18:52:47 +08:00
|
|
|
RC2_KEY rc2_ks;
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_IDEA
|
1998-12-21 18:52:47 +08:00
|
|
|
IDEA_KEY_SCHEDULE idea_ks;
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_BF
|
1998-12-21 18:52:47 +08:00
|
|
|
BF_KEY bf_ks;
|
1998-12-21 18:56:39 +08:00
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_CAST
|
1998-12-21 18:56:39 +08:00
|
|
|
CAST_KEY cast_ks;
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
2002-01-03 00:57:57 +08:00
|
|
|
static const unsigned char key16[16]=
|
1998-12-21 18:52:47 +08:00
|
|
|
{0x12,0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,
|
|
|
|
0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12};
|
2002-01-03 00:57:57 +08:00
|
|
|
static const unsigned char key24[24]=
|
|
|
|
{0x12,0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,
|
|
|
|
0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12,
|
|
|
|
0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12,0x34};
|
|
|
|
static const unsigned char key32[32]=
|
|
|
|
{0x12,0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,
|
|
|
|
0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12,
|
|
|
|
0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12,0x34,
|
|
|
|
0x78,0x9a,0xbc,0xde,0xf0,0x12,0x34,0x56};
|
|
|
|
#ifndef OPENSSL_NO_AES
|
|
|
|
#define MAX_BLOCK_SIZE 128
|
|
|
|
#else
|
|
|
|
#define MAX_BLOCK_SIZE 64
|
|
|
|
#endif
|
|
|
|
unsigned char DES_iv[8];
|
|
|
|
unsigned char iv[MAX_BLOCK_SIZE/8];
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_DES
|
2001-10-25 05:21:12 +08:00
|
|
|
DES_cblock *buf_as_des_cblock = NULL;
|
2002-03-22 10:42:57 +08:00
|
|
|
static DES_cblock key ={0x12,0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0};
|
|
|
|
static DES_cblock key2={0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12};
|
|
|
|
static DES_cblock key3={0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12,0x34};
|
2001-10-25 05:21:12 +08:00
|
|
|
DES_key_schedule sch;
|
|
|
|
DES_key_schedule sch2;
|
|
|
|
DES_key_schedule sch3;
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
2002-01-03 00:57:57 +08:00
|
|
|
#ifndef OPENSSL_NO_AES
|
|
|
|
AES_KEY aes_ks1, aes_ks2, aes_ks3;
|
|
|
|
#endif
|
1998-12-21 18:52:47 +08:00
|
|
|
#define D_MD2 0
|
|
|
|
#define D_MDC2 1
|
2000-08-14 22:05:53 +08:00
|
|
|
#define D_MD4 2
|
|
|
|
#define D_MD5 3
|
|
|
|
#define D_HMAC 4
|
|
|
|
#define D_SHA1 5
|
|
|
|
#define D_RMD160 6
|
|
|
|
#define D_RC4 7
|
|
|
|
#define D_CBC_DES 8
|
|
|
|
#define D_EDE3_DES 9
|
|
|
|
#define D_CBC_IDEA 10
|
|
|
|
#define D_CBC_RC2 11
|
|
|
|
#define D_CBC_RC5 12
|
|
|
|
#define D_CBC_BF 13
|
|
|
|
#define D_CBC_CAST 14
|
2002-01-03 00:57:57 +08:00
|
|
|
#define D_CBC_128_AES 15
|
|
|
|
#define D_CBC_192_AES 16
|
|
|
|
#define D_CBC_256_AES 17
|
|
|
|
#define D_EVP 18
|
2004-05-21 05:49:38 +08:00
|
|
|
#define D_SHA256 19
|
|
|
|
#define D_SHA512 20
|
2002-01-03 00:57:57 +08:00
|
|
|
double d=0.0;
|
1998-12-21 18:52:47 +08:00
|
|
|
long c[ALGOR_NUM][SIZE_NUM];
|
|
|
|
#define R_DSA_512 0
|
|
|
|
#define R_DSA_1024 1
|
|
|
|
#define R_DSA_2048 2
|
|
|
|
#define R_RSA_512 0
|
|
|
|
#define R_RSA_1024 1
|
|
|
|
#define R_RSA_2048 2
|
|
|
|
#define R_RSA_4096 3
|
2002-08-09 16:43:04 +08:00
|
|
|
|
|
|
|
#define R_EC_P160 0
|
2002-10-28 21:23:24 +08:00
|
|
|
#define R_EC_P192 1
|
|
|
|
#define R_EC_P224 2
|
|
|
|
#define R_EC_P256 3
|
|
|
|
#define R_EC_P384 4
|
|
|
|
#define R_EC_P521 5
|
|
|
|
#define R_EC_K163 6
|
|
|
|
#define R_EC_K233 7
|
|
|
|
#define R_EC_K283 8
|
|
|
|
#define R_EC_K409 9
|
|
|
|
#define R_EC_K571 10
|
|
|
|
#define R_EC_B163 11
|
|
|
|
#define R_EC_B233 12
|
|
|
|
#define R_EC_B283 13
|
|
|
|
#define R_EC_B409 14
|
|
|
|
#define R_EC_B571 15
|
2002-08-09 16:43:04 +08:00
|
|
|
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RSA
|
1998-12-21 18:52:47 +08:00
|
|
|
RSA *rsa_key[RSA_NUM];
|
|
|
|
long rsa_c[RSA_NUM][2];
|
|
|
|
static unsigned int rsa_bits[RSA_NUM]={512,1024,2048,4096};
|
|
|
|
static unsigned char *rsa_data[RSA_NUM]=
|
|
|
|
{test512,test1024,test2048,test4096};
|
|
|
|
static int rsa_data_length[RSA_NUM]={
|
|
|
|
sizeof(test512),sizeof(test1024),
|
|
|
|
sizeof(test2048),sizeof(test4096)};
|
1998-12-21 18:56:39 +08:00
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_DSA
|
1998-12-21 18:56:39 +08:00
|
|
|
DSA *dsa_key[DSA_NUM];
|
|
|
|
long dsa_c[DSA_NUM][2];
|
|
|
|
static unsigned int dsa_bits[DSA_NUM]={512,1024,2048};
|
|
|
|
#endif
|
2002-08-09 16:43:04 +08:00
|
|
|
#ifndef OPENSSL_NO_EC
|
|
|
|
/* We only test over the following curves as they are representative,
|
|
|
|
* To add tests over more curves, simply add the curve NID
|
|
|
|
* and curve name to the following arrays and increase the
|
|
|
|
* EC_NUM value accordingly.
|
|
|
|
*/
|
|
|
|
static unsigned int test_curves[EC_NUM] =
|
|
|
|
{
|
|
|
|
/* Prime Curves */
|
2002-08-15 17:21:31 +08:00
|
|
|
NID_secp160r1,
|
2002-10-28 21:23:24 +08:00
|
|
|
NID_X9_62_prime192v1,
|
2002-08-15 17:21:31 +08:00
|
|
|
NID_secp224r1,
|
|
|
|
NID_X9_62_prime256v1,
|
|
|
|
NID_secp384r1,
|
|
|
|
NID_secp521r1,
|
2002-08-09 16:43:04 +08:00
|
|
|
/* Binary Curves */
|
2002-08-15 17:21:31 +08:00
|
|
|
NID_sect163k1,
|
|
|
|
NID_sect233k1,
|
|
|
|
NID_sect283k1,
|
|
|
|
NID_sect409k1,
|
|
|
|
NID_sect571k1,
|
|
|
|
NID_sect163r2,
|
|
|
|
NID_sect233r1,
|
|
|
|
NID_sect283r1,
|
|
|
|
NID_sect409r1,
|
|
|
|
NID_sect571r1
|
2002-08-09 16:43:04 +08:00
|
|
|
};
|
|
|
|
static char * test_curves_names[EC_NUM] =
|
|
|
|
{
|
|
|
|
/* Prime Curves */
|
|
|
|
"secp160r1",
|
2002-10-28 21:23:24 +08:00
|
|
|
"nistp192",
|
2002-08-09 16:43:04 +08:00
|
|
|
"nistp224",
|
|
|
|
"nistp256",
|
|
|
|
"nistp384",
|
|
|
|
"nistp521",
|
|
|
|
/* Binary Curves */
|
|
|
|
"nistk163",
|
|
|
|
"nistk233",
|
|
|
|
"nistk283",
|
|
|
|
"nistk409",
|
|
|
|
"nistk571",
|
|
|
|
"nistb163",
|
|
|
|
"nistb233",
|
|
|
|
"nistb283",
|
|
|
|
"nistb409",
|
|
|
|
"nistb571"
|
|
|
|
};
|
|
|
|
static int test_curves_bits[EC_NUM] =
|
|
|
|
{
|
2002-10-28 21:23:24 +08:00
|
|
|
160, 192, 224, 256, 384, 521,
|
2002-08-09 16:43:04 +08:00
|
|
|
163, 233, 283, 409, 571,
|
|
|
|
163, 233, 283, 409, 571
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef OPENSSL_NO_ECDSA
|
|
|
|
unsigned char ecdsasig[256];
|
|
|
|
unsigned int ecdsasiglen;
|
|
|
|
EC_KEY *ecdsa[EC_NUM];
|
|
|
|
long ecdsa_c[EC_NUM][2];
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef OPENSSL_NO_ECDH
|
|
|
|
EC_KEY *ecdh_a[EC_NUM], *ecdh_b[EC_NUM];
|
|
|
|
unsigned char secret_a[MAX_ECDH_SIZE], secret_b[MAX_ECDH_SIZE];
|
|
|
|
int secret_size_a, secret_size_b;
|
2002-08-09 19:58:28 +08:00
|
|
|
int ecdh_checks = 0;
|
2002-08-09 16:43:04 +08:00
|
|
|
int secret_idx = 0;
|
|
|
|
long ecdh_c[EC_NUM][2];
|
|
|
|
#endif
|
|
|
|
|
1998-12-21 18:52:47 +08:00
|
|
|
int rsa_doit[RSA_NUM];
|
|
|
|
int dsa_doit[DSA_NUM];
|
2002-08-09 16:43:04 +08:00
|
|
|
int ecdsa_doit[EC_NUM];
|
|
|
|
int ecdh_doit[EC_NUM];
|
1998-12-21 18:56:39 +08:00
|
|
|
int doit[ALGOR_NUM];
|
1998-12-21 18:52:47 +08:00
|
|
|
int pr_header=0;
|
2001-11-16 04:19:40 +08:00
|
|
|
const EVP_CIPHER *evp_cipher=NULL;
|
|
|
|
const EVP_MD *evp_md=NULL;
|
2001-07-08 20:14:41 +08:00
|
|
|
int decrypt=0;
|
2001-10-26 00:08:17 +08:00
|
|
|
#ifdef HAVE_FORK
|
2001-10-25 22:27:17 +08:00
|
|
|
int multi=0;
|
2001-10-26 00:08:17 +08:00
|
|
|
#endif
|
2000-07-01 01:16:46 +08:00
|
|
|
|
|
|
|
#ifndef TIMES
|
|
|
|
usertime=-1;
|
|
|
|
#endif
|
1998-12-21 18:52:47 +08:00
|
|
|
|
|
|
|
apps_startup();
|
1999-09-09 05:58:13 +08:00
|
|
|
memset(results, 0, sizeof(results));
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_DSA
|
1998-12-21 19:00:56 +08:00
|
|
|
memset(dsa_key,0,sizeof(dsa_key));
|
|
|
|
#endif
|
2002-08-09 16:43:04 +08:00
|
|
|
#ifndef OPENSSL_NO_ECDSA
|
|
|
|
for (i=0; i<EC_NUM; i++) ecdsa[i] = NULL;
|
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_ECDH
|
|
|
|
for (i=0; i<EC_NUM; i++)
|
|
|
|
{
|
|
|
|
ecdh_a[i] = NULL;
|
|
|
|
ecdh_b[i] = NULL;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1998-12-21 18:52:47 +08:00
|
|
|
|
|
|
|
if (bio_err == NULL)
|
|
|
|
if ((bio_err=BIO_new(BIO_s_file())) != NULL)
|
1998-12-21 18:56:39 +08:00
|
|
|
BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2002-02-22 22:01:21 +08:00
|
|
|
if (!load_config(bio_err, NULL))
|
|
|
|
goto end;
|
|
|
|
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RSA
|
1998-12-21 19:00:56 +08:00
|
|
|
memset(rsa_key,0,sizeof(rsa_key));
|
1998-12-21 18:52:47 +08:00
|
|
|
for (i=0; i<RSA_NUM; i++)
|
|
|
|
rsa_key[i]=NULL;
|
1998-12-21 19:00:56 +08:00
|
|
|
#endif
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2000-06-02 06:19:21 +08:00
|
|
|
if ((buf=(unsigned char *)OPENSSL_malloc((int)BUFSIZE)) == NULL)
|
1998-12-21 18:52:47 +08:00
|
|
|
{
|
|
|
|
BIO_printf(bio_err,"out of memory\n");
|
|
|
|
goto end;
|
|
|
|
}
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_DES
|
2002-03-22 10:42:57 +08:00
|
|
|
buf_as_des_cblock = (DES_cblock *)buf;
|
1999-06-30 07:52:08 +08:00
|
|
|
#endif
|
2000-06-02 06:19:21 +08:00
|
|
|
if ((buf2=(unsigned char *)OPENSSL_malloc((int)BUFSIZE)) == NULL)
|
1998-12-21 18:52:47 +08:00
|
|
|
{
|
|
|
|
BIO_printf(bio_err,"out of memory\n");
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(c,0,sizeof(c));
|
2002-01-03 00:57:57 +08:00
|
|
|
memset(DES_iv,0,sizeof(DES_iv));
|
1998-12-21 18:52:47 +08:00
|
|
|
memset(iv,0,sizeof(iv));
|
|
|
|
|
|
|
|
for (i=0; i<ALGOR_NUM; i++)
|
|
|
|
doit[i]=0;
|
|
|
|
for (i=0; i<RSA_NUM; i++)
|
|
|
|
rsa_doit[i]=0;
|
|
|
|
for (i=0; i<DSA_NUM; i++)
|
|
|
|
dsa_doit[i]=0;
|
2002-08-09 16:43:04 +08:00
|
|
|
#ifndef OPENSSL_NO_ECDSA
|
|
|
|
for (i=0; i<EC_NUM; i++)
|
|
|
|
ecdsa_doit[i]=0;
|
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_ECDH
|
|
|
|
for (i=0; i<EC_NUM; i++)
|
|
|
|
ecdh_doit[i]=0;
|
|
|
|
#endif
|
|
|
|
|
1998-12-21 18:52:47 +08:00
|
|
|
|
|
|
|
j=0;
|
|
|
|
argc--;
|
|
|
|
argv++;
|
|
|
|
while (argc)
|
|
|
|
{
|
2000-07-01 01:16:46 +08:00
|
|
|
if ((argc > 0) && (strcmp(*argv,"-elapsed") == 0))
|
2001-09-27 23:43:55 +08:00
|
|
|
{
|
2000-07-01 01:16:46 +08:00
|
|
|
usertime = 0;
|
2001-09-27 23:43:55 +08:00
|
|
|
j--; /* Otherwise, -elapsed gets confused with
|
|
|
|
an algorithm. */
|
|
|
|
}
|
2000-11-20 12:14:19 +08:00
|
|
|
else if ((argc > 0) && (strcmp(*argv,"-evp") == 0))
|
|
|
|
{
|
|
|
|
argc--;
|
|
|
|
argv++;
|
|
|
|
if(argc == 0)
|
|
|
|
{
|
|
|
|
BIO_printf(bio_err,"no EVP given\n");
|
|
|
|
goto end;
|
|
|
|
}
|
2001-11-16 04:19:40 +08:00
|
|
|
evp_cipher=EVP_get_cipherbyname(*argv);
|
|
|
|
if(!evp_cipher)
|
2000-11-20 12:14:19 +08:00
|
|
|
{
|
2001-11-16 04:19:40 +08:00
|
|
|
evp_md=EVP_get_digestbyname(*argv);
|
|
|
|
}
|
|
|
|
if(!evp_cipher && !evp_md)
|
|
|
|
{
|
|
|
|
BIO_printf(bio_err,"%s is an unknown cipher or digest\n",*argv);
|
2000-11-20 12:14:19 +08:00
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
doit[D_EVP]=1;
|
|
|
|
}
|
2001-09-27 23:43:55 +08:00
|
|
|
else if (argc > 0 && !strcmp(*argv,"-decrypt"))
|
|
|
|
{
|
2001-07-08 20:14:41 +08:00
|
|
|
decrypt=1;
|
2001-09-27 23:43:55 +08:00
|
|
|
j--; /* Otherwise, -elapsed gets confused with
|
|
|
|
an algorithm. */
|
|
|
|
}
|
2003-01-31 01:39:26 +08:00
|
|
|
#ifndef OPENSSL_NO_ENGINE
|
2001-09-27 23:43:55 +08:00
|
|
|
else if ((argc > 0) && (strcmp(*argv,"-engine") == 0))
|
2000-10-27 05:07:28 +08:00
|
|
|
{
|
|
|
|
argc--;
|
|
|
|
argv++;
|
|
|
|
if(argc == 0)
|
|
|
|
{
|
|
|
|
BIO_printf(bio_err,"no engine given\n");
|
|
|
|
goto end;
|
|
|
|
}
|
2001-06-18 14:22:33 +08:00
|
|
|
e = setup_engine(bio_err, *argv, 0);
|
|
|
|
/* j will be increased again further down. We just
|
2000-10-27 05:07:28 +08:00
|
|
|
don't want speed to confuse an engine with an
|
|
|
|
algorithm, especially when none is given (which
|
|
|
|
means all of them should be run) */
|
|
|
|
j--;
|
|
|
|
}
|
2003-01-31 01:39:26 +08:00
|
|
|
#endif
|
2001-10-26 00:08:17 +08:00
|
|
|
#ifdef HAVE_FORK
|
2001-10-25 22:27:17 +08:00
|
|
|
else if ((argc > 0) && (strcmp(*argv,"-multi") == 0))
|
|
|
|
{
|
|
|
|
argc--;
|
|
|
|
argv++;
|
|
|
|
if(argc == 0)
|
|
|
|
{
|
|
|
|
BIO_printf(bio_err,"no multi count given\n");
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
multi=atoi(argv[0]);
|
|
|
|
if(multi <= 0)
|
|
|
|
{
|
|
|
|
BIO_printf(bio_err,"bad multi count\n");
|
|
|
|
goto end;
|
|
|
|
}
|
2001-10-26 00:08:17 +08:00
|
|
|
j--; /* Otherwise, -mr gets confused with
|
|
|
|
an algorithm. */
|
2001-10-25 22:27:17 +08:00
|
|
|
}
|
2001-10-26 00:08:17 +08:00
|
|
|
#endif
|
2001-10-25 22:27:17 +08:00
|
|
|
else if (argc > 0 && !strcmp(*argv,"-mr"))
|
|
|
|
{
|
|
|
|
mr=1;
|
|
|
|
j--; /* Otherwise, -mr gets confused with
|
|
|
|
an algorithm. */
|
|
|
|
}
|
2000-10-27 05:07:28 +08:00
|
|
|
else
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_MD2
|
1998-12-21 18:52:47 +08:00
|
|
|
if (strcmp(*argv,"md2") == 0) doit[D_MD2]=1;
|
|
|
|
else
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_MDC2
|
1998-12-21 18:52:47 +08:00
|
|
|
if (strcmp(*argv,"mdc2") == 0) doit[D_MDC2]=1;
|
|
|
|
else
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_MD4
|
2000-08-14 22:05:53 +08:00
|
|
|
if (strcmp(*argv,"md4") == 0) doit[D_MD4]=1;
|
|
|
|
else
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_MD5
|
1998-12-21 18:52:47 +08:00
|
|
|
if (strcmp(*argv,"md5") == 0) doit[D_MD5]=1;
|
|
|
|
else
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_MD5
|
1998-12-21 18:56:39 +08:00
|
|
|
if (strcmp(*argv,"hmac") == 0) doit[D_HMAC]=1;
|
1998-12-21 18:52:47 +08:00
|
|
|
else
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_SHA
|
1998-12-21 18:52:47 +08:00
|
|
|
if (strcmp(*argv,"sha1") == 0) doit[D_SHA1]=1;
|
|
|
|
else
|
2004-05-21 05:49:38 +08:00
|
|
|
if (strcmp(*argv,"sha") == 0) doit[D_SHA1]=1,
|
|
|
|
doit[D_SHA256]=1,
|
|
|
|
doit[D_SHA512]=1;
|
|
|
|
else
|
2004-05-31 20:40:22 +08:00
|
|
|
if (strcmp(*argv,"sha256") == 0) doit[D_SHA256]=1;
|
2004-05-21 05:49:38 +08:00
|
|
|
else
|
2004-05-31 20:40:22 +08:00
|
|
|
if (strcmp(*argv,"sha512") == 0) doit[D_SHA512]=1;
|
1998-12-21 18:56:39 +08:00
|
|
|
else
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RIPEMD
|
1998-12-21 18:56:39 +08:00
|
|
|
if (strcmp(*argv,"ripemd") == 0) doit[D_RMD160]=1;
|
|
|
|
else
|
|
|
|
if (strcmp(*argv,"rmd160") == 0) doit[D_RMD160]=1;
|
|
|
|
else
|
|
|
|
if (strcmp(*argv,"ripemd160") == 0) doit[D_RMD160]=1;
|
|
|
|
else
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RC4
|
1998-12-21 18:52:47 +08:00
|
|
|
if (strcmp(*argv,"rc4") == 0) doit[D_RC4]=1;
|
|
|
|
else
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_DES
|
1998-12-21 18:52:47 +08:00
|
|
|
if (strcmp(*argv,"des-cbc") == 0) doit[D_CBC_DES]=1;
|
|
|
|
else if (strcmp(*argv,"des-ede3") == 0) doit[D_EDE3_DES]=1;
|
|
|
|
else
|
|
|
|
#endif
|
2002-01-03 00:57:57 +08:00
|
|
|
#ifndef OPENSSL_NO_AES
|
|
|
|
if (strcmp(*argv,"aes-128-cbc") == 0) doit[D_CBC_128_AES]=1;
|
|
|
|
else if (strcmp(*argv,"aes-192-cbc") == 0) doit[D_CBC_192_AES]=1;
|
|
|
|
else if (strcmp(*argv,"aes-256-cbc") == 0) doit[D_CBC_256_AES]=1;
|
|
|
|
else
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RSA
|
2000-11-09 01:51:37 +08:00
|
|
|
#if 0 /* was: #ifdef RSAref */
|
1998-12-21 18:52:47 +08:00
|
|
|
if (strcmp(*argv,"rsaref") == 0)
|
|
|
|
{
|
2000-10-27 05:07:28 +08:00
|
|
|
RSA_set_default_openssl_method(RSA_PKCS1_RSAref());
|
1998-12-21 18:52:47 +08:00
|
|
|
j--;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
1999-09-09 02:19:45 +08:00
|
|
|
#ifndef RSA_NULL
|
1999-01-02 22:42:23 +08:00
|
|
|
if (strcmp(*argv,"openssl") == 0)
|
1998-12-21 18:52:47 +08:00
|
|
|
{
|
2001-09-26 04:35:01 +08:00
|
|
|
RSA_set_default_method(RSA_PKCS1_SSLeay());
|
1998-12-21 18:52:47 +08:00
|
|
|
j--;
|
|
|
|
}
|
|
|
|
else
|
1999-09-09 02:19:45 +08:00
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#endif /* !OPENSSL_NO_RSA */
|
1998-12-21 18:52:47 +08:00
|
|
|
if (strcmp(*argv,"dsa512") == 0) dsa_doit[R_DSA_512]=2;
|
|
|
|
else if (strcmp(*argv,"dsa1024") == 0) dsa_doit[R_DSA_1024]=2;
|
|
|
|
else if (strcmp(*argv,"dsa2048") == 0) dsa_doit[R_DSA_2048]=2;
|
|
|
|
else if (strcmp(*argv,"rsa512") == 0) rsa_doit[R_RSA_512]=2;
|
|
|
|
else if (strcmp(*argv,"rsa1024") == 0) rsa_doit[R_RSA_1024]=2;
|
|
|
|
else if (strcmp(*argv,"rsa2048") == 0) rsa_doit[R_RSA_2048]=2;
|
|
|
|
else if (strcmp(*argv,"rsa4096") == 0) rsa_doit[R_RSA_4096]=2;
|
|
|
|
else
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RC2
|
1998-12-21 18:52:47 +08:00
|
|
|
if (strcmp(*argv,"rc2-cbc") == 0) doit[D_CBC_RC2]=1;
|
|
|
|
else if (strcmp(*argv,"rc2") == 0) doit[D_CBC_RC2]=1;
|
|
|
|
else
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RC5
|
1998-12-21 18:56:39 +08:00
|
|
|
if (strcmp(*argv,"rc5-cbc") == 0) doit[D_CBC_RC5]=1;
|
|
|
|
else if (strcmp(*argv,"rc5") == 0) doit[D_CBC_RC5]=1;
|
|
|
|
else
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_IDEA
|
1998-12-21 18:52:47 +08:00
|
|
|
if (strcmp(*argv,"idea-cbc") == 0) doit[D_CBC_IDEA]=1;
|
|
|
|
else if (strcmp(*argv,"idea") == 0) doit[D_CBC_IDEA]=1;
|
|
|
|
else
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_BF
|
1998-12-21 18:52:47 +08:00
|
|
|
if (strcmp(*argv,"bf-cbc") == 0) doit[D_CBC_BF]=1;
|
|
|
|
else if (strcmp(*argv,"blowfish") == 0) doit[D_CBC_BF]=1;
|
1998-12-21 18:56:39 +08:00
|
|
|
else if (strcmp(*argv,"bf") == 0) doit[D_CBC_BF]=1;
|
|
|
|
else
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_CAST
|
1998-12-21 18:56:39 +08:00
|
|
|
if (strcmp(*argv,"cast-cbc") == 0) doit[D_CBC_CAST]=1;
|
|
|
|
else if (strcmp(*argv,"cast") == 0) doit[D_CBC_CAST]=1;
|
|
|
|
else if (strcmp(*argv,"cast5") == 0) doit[D_CBC_CAST]=1;
|
1998-12-21 18:52:47 +08:00
|
|
|
else
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_DES
|
1998-12-21 18:52:47 +08:00
|
|
|
if (strcmp(*argv,"des") == 0)
|
|
|
|
{
|
|
|
|
doit[D_CBC_DES]=1;
|
|
|
|
doit[D_EDE3_DES]=1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
2002-01-03 00:57:57 +08:00
|
|
|
#ifndef OPENSSL_NO_AES
|
|
|
|
if (strcmp(*argv,"aes") == 0)
|
|
|
|
{
|
|
|
|
doit[D_CBC_128_AES]=1;
|
|
|
|
doit[D_CBC_192_AES]=1;
|
|
|
|
doit[D_CBC_256_AES]=1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RSA
|
1998-12-21 18:52:47 +08:00
|
|
|
if (strcmp(*argv,"rsa") == 0)
|
|
|
|
{
|
|
|
|
rsa_doit[R_RSA_512]=1;
|
|
|
|
rsa_doit[R_RSA_1024]=1;
|
|
|
|
rsa_doit[R_RSA_2048]=1;
|
|
|
|
rsa_doit[R_RSA_4096]=1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_DSA
|
1998-12-21 18:52:47 +08:00
|
|
|
if (strcmp(*argv,"dsa") == 0)
|
|
|
|
{
|
|
|
|
dsa_doit[R_DSA_512]=1;
|
|
|
|
dsa_doit[R_DSA_1024]=1;
|
2004-01-08 15:46:37 +08:00
|
|
|
dsa_doit[R_DSA_2048]=1;
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
|
|
|
else
|
2002-08-09 16:43:04 +08:00
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_ECDSA
|
|
|
|
if (strcmp(*argv,"ecdsap160") == 0) ecdsa_doit[R_EC_P160]=2;
|
|
|
|
else if (strcmp(*argv,"ecdsap224") == 0) ecdsa_doit[R_EC_P224]=2;
|
|
|
|
else if (strcmp(*argv,"ecdsap256") == 0) ecdsa_doit[R_EC_P256]=2;
|
|
|
|
else if (strcmp(*argv,"ecdsap384") == 0) ecdsa_doit[R_EC_P384]=2;
|
|
|
|
else if (strcmp(*argv,"ecdsap521") == 0) ecdsa_doit[R_EC_P521]=2;
|
|
|
|
else if (strcmp(*argv,"ecdsak163") == 0) ecdsa_doit[R_EC_K163]=2;
|
|
|
|
else if (strcmp(*argv,"ecdsak233") == 0) ecdsa_doit[R_EC_K233]=2;
|
|
|
|
else if (strcmp(*argv,"ecdsak283") == 0) ecdsa_doit[R_EC_K283]=2;
|
|
|
|
else if (strcmp(*argv,"ecdsak409") == 0) ecdsa_doit[R_EC_K409]=2;
|
|
|
|
else if (strcmp(*argv,"ecdsak571") == 0) ecdsa_doit[R_EC_K571]=2;
|
|
|
|
else if (strcmp(*argv,"ecdsab163") == 0) ecdsa_doit[R_EC_B163]=2;
|
|
|
|
else if (strcmp(*argv,"ecdsab233") == 0) ecdsa_doit[R_EC_B233]=2;
|
|
|
|
else if (strcmp(*argv,"ecdsab283") == 0) ecdsa_doit[R_EC_B283]=2;
|
|
|
|
else if (strcmp(*argv,"ecdsab409") == 0) ecdsa_doit[R_EC_B409]=2;
|
|
|
|
else if (strcmp(*argv,"ecdsab571") == 0) ecdsa_doit[R_EC_B571]=2;
|
|
|
|
else if (strcmp(*argv,"ecdsa") == 0)
|
|
|
|
{
|
|
|
|
for (i=0; i < EC_NUM; i++)
|
|
|
|
ecdsa_doit[i]=1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_ECDH
|
|
|
|
if (strcmp(*argv,"ecdhp160") == 0) ecdh_doit[R_EC_P160]=2;
|
|
|
|
else if (strcmp(*argv,"ecdhp224") == 0) ecdh_doit[R_EC_P224]=2;
|
|
|
|
else if (strcmp(*argv,"ecdhp256") == 0) ecdh_doit[R_EC_P256]=2;
|
|
|
|
else if (strcmp(*argv,"ecdhp384") == 0) ecdh_doit[R_EC_P384]=2;
|
|
|
|
else if (strcmp(*argv,"ecdhp521") == 0) ecdh_doit[R_EC_P521]=2;
|
|
|
|
else if (strcmp(*argv,"ecdhk163") == 0) ecdh_doit[R_EC_K163]=2;
|
|
|
|
else if (strcmp(*argv,"ecdhk233") == 0) ecdh_doit[R_EC_K233]=2;
|
|
|
|
else if (strcmp(*argv,"ecdhk283") == 0) ecdh_doit[R_EC_K283]=2;
|
|
|
|
else if (strcmp(*argv,"ecdhk409") == 0) ecdh_doit[R_EC_K409]=2;
|
|
|
|
else if (strcmp(*argv,"ecdhk571") == 0) ecdh_doit[R_EC_K571]=2;
|
|
|
|
else if (strcmp(*argv,"ecdhb163") == 0) ecdh_doit[R_EC_B163]=2;
|
|
|
|
else if (strcmp(*argv,"ecdhb233") == 0) ecdh_doit[R_EC_B233]=2;
|
|
|
|
else if (strcmp(*argv,"ecdhb283") == 0) ecdh_doit[R_EC_B283]=2;
|
|
|
|
else if (strcmp(*argv,"ecdhb409") == 0) ecdh_doit[R_EC_B409]=2;
|
|
|
|
else if (strcmp(*argv,"ecdhb571") == 0) ecdh_doit[R_EC_B571]=2;
|
|
|
|
else if (strcmp(*argv,"ecdh") == 0)
|
|
|
|
{
|
|
|
|
for (i=0; i < EC_NUM; i++)
|
|
|
|
ecdh_doit[i]=1;
|
|
|
|
}
|
|
|
|
else
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
|
|
|
{
|
2000-08-14 22:05:53 +08:00
|
|
|
BIO_printf(bio_err,"Error: bad option or value\n");
|
|
|
|
BIO_printf(bio_err,"\n");
|
|
|
|
BIO_printf(bio_err,"Available values:\n");
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_MD2
|
2000-08-14 22:05:53 +08:00
|
|
|
BIO_printf(bio_err,"md2 ");
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_MDC2
|
2000-08-14 22:05:53 +08:00
|
|
|
BIO_printf(bio_err,"mdc2 ");
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_MD4
|
2000-08-14 22:05:53 +08:00
|
|
|
BIO_printf(bio_err,"md4 ");
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_MD5
|
2000-08-14 22:05:53 +08:00
|
|
|
BIO_printf(bio_err,"md5 ");
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_HMAC
|
2000-08-14 22:05:53 +08:00
|
|
|
BIO_printf(bio_err,"hmac ");
|
|
|
|
#endif
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_SHA1
|
2000-08-14 22:05:53 +08:00
|
|
|
BIO_printf(bio_err,"sha1 ");
|
2004-05-31 20:40:22 +08:00
|
|
|
BIO_printf(bio_err,"sha256 ");
|
|
|
|
BIO_printf(bio_err,"sha512 ");
|
2000-08-14 22:05:53 +08:00
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RIPEMD160
|
2000-08-14 22:05:53 +08:00
|
|
|
BIO_printf(bio_err,"rmd160");
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#if !defined(OPENSSL_NO_MD2) || !defined(OPENSSL_NO_MDC2) || \
|
|
|
|
!defined(OPENSSL_NO_MD4) || !defined(OPENSSL_NO_MD5) || \
|
|
|
|
!defined(OPENSSL_NO_SHA1) || !defined(OPENSSL_NO_RIPEMD160)
|
2000-08-14 22:05:53 +08:00
|
|
|
BIO_printf(bio_err,"\n");
|
|
|
|
#endif
|
|
|
|
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_IDEA
|
1998-12-21 18:52:47 +08:00
|
|
|
BIO_printf(bio_err,"idea-cbc ");
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RC2
|
1998-12-21 18:52:47 +08:00
|
|
|
BIO_printf(bio_err,"rc2-cbc ");
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RC5
|
1998-12-21 18:56:39 +08:00
|
|
|
BIO_printf(bio_err,"rc5-cbc ");
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_BF
|
1998-12-21 18:52:47 +08:00
|
|
|
BIO_printf(bio_err,"bf-cbc");
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#if !defined(OPENSSL_NO_IDEA) || !defined(OPENSSL_NO_RC2) || \
|
|
|
|
!defined(OPENSSL_NO_BF) || !defined(OPENSSL_NO_RC5)
|
1998-12-21 18:52:47 +08:00
|
|
|
BIO_printf(bio_err,"\n");
|
|
|
|
#endif
|
2002-01-03 00:57:57 +08:00
|
|
|
#ifndef OPENSSL_NO_DES
|
1998-12-21 18:52:47 +08:00
|
|
|
BIO_printf(bio_err,"des-cbc des-ede3 ");
|
2002-01-03 00:57:57 +08:00
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_AES
|
|
|
|
BIO_printf(bio_err,"aes-128-cbc aes-192-cbc aes-256-cbc ");
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RC4
|
1998-12-21 18:52:47 +08:00
|
|
|
BIO_printf(bio_err,"rc4");
|
|
|
|
#endif
|
2000-08-14 22:05:53 +08:00
|
|
|
BIO_printf(bio_err,"\n");
|
|
|
|
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RSA
|
2000-08-14 22:05:53 +08:00
|
|
|
BIO_printf(bio_err,"rsa512 rsa1024 rsa2048 rsa4096\n");
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
2000-08-14 22:05:53 +08:00
|
|
|
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_DSA
|
2000-08-14 22:05:53 +08:00
|
|
|
BIO_printf(bio_err,"dsa512 dsa1024 dsa2048\n");
|
|
|
|
#endif
|
2002-08-09 16:43:04 +08:00
|
|
|
#ifndef OPENSSL_NO_ECDSA
|
|
|
|
BIO_printf(bio_err,"ecdsap160 ecdsap224 ecdsap256 ecdsap384 ecdsap521\n");
|
|
|
|
BIO_printf(bio_err,"ecdsak163 ecdsak233 ecdsak283 ecdsak409 ecdsak571\n");
|
|
|
|
BIO_printf(bio_err,"ecdsab163 ecdsab233 ecdsab283 ecdsab409 ecdsab571\n");
|
|
|
|
BIO_printf(bio_err,"ecdsa\n");
|
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_ECDH
|
|
|
|
BIO_printf(bio_err,"ecdhp160 ecdhp224 ecdhp256 ecdhp384 ecdhp521\n");
|
|
|
|
BIO_printf(bio_err,"ecdhk163 ecdhk233 ecdhk283 ecdhk409 ecdhk571\n");
|
|
|
|
BIO_printf(bio_err,"ecdhb163 ecdhb233 ecdhb283 ecdhb409 ecdhb571\n");
|
|
|
|
BIO_printf(bio_err,"ecdh\n");
|
|
|
|
#endif
|
2000-08-14 22:05:53 +08:00
|
|
|
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_IDEA
|
2000-08-14 22:05:53 +08:00
|
|
|
BIO_printf(bio_err,"idea ");
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RC2
|
2000-08-14 22:05:53 +08:00
|
|
|
BIO_printf(bio_err,"rc2 ");
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_DES
|
2000-08-14 22:05:53 +08:00
|
|
|
BIO_printf(bio_err,"des ");
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
2002-01-03 00:57:57 +08:00
|
|
|
#ifndef OPENSSL_NO_AES
|
|
|
|
BIO_printf(bio_err,"aes ");
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RSA
|
2000-08-14 22:05:53 +08:00
|
|
|
BIO_printf(bio_err,"rsa ");
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_BF
|
2000-08-14 22:05:53 +08:00
|
|
|
BIO_printf(bio_err,"blowfish");
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#if !defined(OPENSSL_NO_IDEA) || !defined(OPENSSL_NO_RC2) || \
|
|
|
|
!defined(OPENSSL_NO_DES) || !defined(OPENSSL_NO_RSA) || \
|
2002-01-03 00:57:57 +08:00
|
|
|
!defined(OPENSSL_NO_BF) || !defined(OPENSSL_NO_AES)
|
2000-07-01 01:16:46 +08:00
|
|
|
BIO_printf(bio_err,"\n");
|
2000-08-14 22:05:53 +08:00
|
|
|
#endif
|
|
|
|
|
2000-07-01 01:16:46 +08:00
|
|
|
BIO_printf(bio_err,"\n");
|
2000-08-14 22:05:53 +08:00
|
|
|
BIO_printf(bio_err,"Available options:\n");
|
2002-09-25 20:41:59 +08:00
|
|
|
#if defined(TIMES) || defined(USE_TOD)
|
2000-07-01 01:16:46 +08:00
|
|
|
BIO_printf(bio_err,"-elapsed measure time in real time instead of CPU user time.\n");
|
2000-08-04 05:54:31 +08:00
|
|
|
#endif
|
2003-01-31 01:39:26 +08:00
|
|
|
#ifndef OPENSSL_NO_ENGINE
|
2000-10-27 05:07:28 +08:00
|
|
|
BIO_printf(bio_err,"-engine e use engine e, possibly a hardware device.\n");
|
2003-01-31 01:39:26 +08:00
|
|
|
#endif
|
2001-10-25 22:27:17 +08:00
|
|
|
BIO_printf(bio_err,"-evp e use EVP e.\n");
|
|
|
|
BIO_printf(bio_err,"-decrypt time decryption instead of encryption (only EVP).\n");
|
|
|
|
BIO_printf(bio_err,"-mr produce machine readable output.\n");
|
2001-10-26 00:08:17 +08:00
|
|
|
#ifdef HAVE_FORK
|
2001-10-25 22:27:17 +08:00
|
|
|
BIO_printf(bio_err,"-multi n run n benchmarks in parallel.\n");
|
2001-10-26 00:08:17 +08:00
|
|
|
#endif
|
1998-12-21 18:52:47 +08:00
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
argc--;
|
|
|
|
argv++;
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
|
2001-10-26 00:08:17 +08:00
|
|
|
#ifdef HAVE_FORK
|
2001-10-25 22:27:17 +08:00
|
|
|
if(multi && do_multi(multi))
|
|
|
|
goto show_res;
|
2001-10-26 00:08:17 +08:00
|
|
|
#endif
|
2001-10-25 22:27:17 +08:00
|
|
|
|
1998-12-21 18:52:47 +08:00
|
|
|
if (j == 0)
|
|
|
|
{
|
|
|
|
for (i=0; i<ALGOR_NUM; i++)
|
2000-11-29 19:04:31 +08:00
|
|
|
{
|
|
|
|
if (i != D_EVP)
|
|
|
|
doit[i]=1;
|
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
for (i=0; i<RSA_NUM; i++)
|
|
|
|
rsa_doit[i]=1;
|
|
|
|
for (i=0; i<DSA_NUM; i++)
|
|
|
|
dsa_doit[i]=1;
|
|
|
|
}
|
|
|
|
for (i=0; i<ALGOR_NUM; i++)
|
|
|
|
if (doit[i]) pr_header++;
|
|
|
|
|
2001-10-25 22:27:17 +08:00
|
|
|
if (usertime == 0 && !mr)
|
2000-07-01 01:16:46 +08:00
|
|
|
BIO_printf(bio_err,"You have chosen to measure elapsed time instead of user CPU time.\n");
|
2001-10-25 22:27:17 +08:00
|
|
|
if (usertime <= 0 && !mr)
|
2000-07-01 01:16:46 +08:00
|
|
|
{
|
|
|
|
BIO_printf(bio_err,"To get the most accurate results, try to run this\n");
|
|
|
|
BIO_printf(bio_err,"program when this computer is idle.\n");
|
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RSA
|
1998-12-21 18:52:47 +08:00
|
|
|
for (i=0; i<RSA_NUM; i++)
|
|
|
|
{
|
2000-11-07 07:16:04 +08:00
|
|
|
const unsigned char *p;
|
1998-12-21 18:52:47 +08:00
|
|
|
|
|
|
|
p=rsa_data[i];
|
|
|
|
rsa_key[i]=d2i_RSAPrivateKey(NULL,&p,rsa_data_length[i]);
|
|
|
|
if (rsa_key[i] == NULL)
|
|
|
|
{
|
|
|
|
BIO_printf(bio_err,"internal error loading RSA key number %d\n",i);
|
|
|
|
goto end;
|
|
|
|
}
|
1998-12-21 18:56:39 +08:00
|
|
|
#if 0
|
|
|
|
else
|
|
|
|
{
|
2001-10-25 22:27:17 +08:00
|
|
|
BIO_printf(bio_err,mr ? "+RK:%d:"
|
|
|
|
: "Loaded RSA key, %d bit modulus and e= 0x",
|
|
|
|
BN_num_bits(rsa_key[i]->n));
|
1998-12-21 18:56:39 +08:00
|
|
|
BN_print(bio_err,rsa_key[i]->e);
|
|
|
|
BIO_printf(bio_err,"\n");
|
|
|
|
}
|
|
|
|
#endif
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_DSA
|
1998-12-21 18:52:47 +08:00
|
|
|
dsa_key[0]=get_dsa512();
|
|
|
|
dsa_key[1]=get_dsa1024();
|
|
|
|
dsa_key[2]=get_dsa2048();
|
|
|
|
#endif
|
|
|
|
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_DES
|
2001-10-25 05:21:12 +08:00
|
|
|
DES_set_key_unchecked(&key,&sch);
|
|
|
|
DES_set_key_unchecked(&key2,&sch2);
|
|
|
|
DES_set_key_unchecked(&key3,&sch3);
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
2002-01-03 00:57:57 +08:00
|
|
|
#ifndef OPENSSL_NO_AES
|
|
|
|
AES_set_encrypt_key(key16,128,&aes_ks1);
|
|
|
|
AES_set_encrypt_key(key24,192,&aes_ks2);
|
|
|
|
AES_set_encrypt_key(key32,256,&aes_ks3);
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_IDEA
|
1998-12-21 18:52:47 +08:00
|
|
|
idea_set_encrypt_key(key16,&idea_ks);
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RC4
|
1998-12-21 18:52:47 +08:00
|
|
|
RC4_set_key(&rc4_ks,16,key16);
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RC2
|
1998-12-21 18:52:47 +08:00
|
|
|
RC2_set_key(&rc2_ks,16,key16,128);
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RC5
|
1998-12-21 18:56:39 +08:00
|
|
|
RC5_32_set_key(&rc5_ks,16,key16,12);
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_BF
|
1998-12-21 18:52:47 +08:00
|
|
|
BF_set_key(&bf_ks,16,key16);
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_CAST
|
1998-12-21 18:56:39 +08:00
|
|
|
CAST_set_key(&cast_ks,16,key16);
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RSA
|
1998-12-21 18:52:47 +08:00
|
|
|
memset(rsa_c,0,sizeof(rsa_c));
|
1999-04-27 09:14:46 +08:00
|
|
|
#endif
|
1998-12-21 18:52:47 +08:00
|
|
|
#ifndef SIGALRM
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_DES
|
1998-12-21 18:52:47 +08:00
|
|
|
BIO_printf(bio_err,"First we calculate the approximate speed ...\n");
|
|
|
|
count=10;
|
|
|
|
do {
|
|
|
|
long i;
|
|
|
|
count*=2;
|
2001-11-06 21:40:27 +08:00
|
|
|
Time_F(START);
|
1998-12-21 18:52:47 +08:00
|
|
|
for (i=count; i; i--)
|
2001-11-06 21:40:27 +08:00
|
|
|
DES_ecb_encrypt(buf_as_des_cblock,buf_as_des_cblock,
|
2001-10-02 19:49:55 +08:00
|
|
|
&sch,DES_ENCRYPT);
|
2001-10-25 22:27:17 +08:00
|
|
|
d=Time_F(STOP);
|
1998-12-21 18:52:47 +08:00
|
|
|
} while (d <3);
|
2000-11-20 12:14:19 +08:00
|
|
|
save_count=count;
|
1998-12-21 18:52:47 +08:00
|
|
|
c[D_MD2][0]=count/10;
|
|
|
|
c[D_MDC2][0]=count/10;
|
2000-08-14 22:05:53 +08:00
|
|
|
c[D_MD4][0]=count;
|
1998-12-21 18:52:47 +08:00
|
|
|
c[D_MD5][0]=count;
|
1998-12-21 18:56:39 +08:00
|
|
|
c[D_HMAC][0]=count;
|
1998-12-21 18:52:47 +08:00
|
|
|
c[D_SHA1][0]=count;
|
1998-12-21 18:56:39 +08:00
|
|
|
c[D_RMD160][0]=count;
|
1998-12-21 18:52:47 +08:00
|
|
|
c[D_RC4][0]=count*5;
|
|
|
|
c[D_CBC_DES][0]=count;
|
|
|
|
c[D_EDE3_DES][0]=count/3;
|
|
|
|
c[D_CBC_IDEA][0]=count;
|
|
|
|
c[D_CBC_RC2][0]=count;
|
1998-12-21 18:56:39 +08:00
|
|
|
c[D_CBC_RC5][0]=count;
|
1998-12-21 18:52:47 +08:00
|
|
|
c[D_CBC_BF][0]=count;
|
1998-12-21 18:56:39 +08:00
|
|
|
c[D_CBC_CAST][0]=count;
|
2003-11-19 02:27:12 +08:00
|
|
|
c[D_CBC_128_AES][0]=count;
|
|
|
|
c[D_CBC_192_AES][0]=count;
|
|
|
|
c[D_CBC_256_AES][0]=count;
|
2004-05-21 05:49:38 +08:00
|
|
|
c[D_SHA256][0]=count;
|
|
|
|
c[D_SHA512][0]=count;
|
1998-12-21 18:52:47 +08:00
|
|
|
|
|
|
|
for (i=1; i<SIZE_NUM; i++)
|
|
|
|
{
|
|
|
|
c[D_MD2][i]=c[D_MD2][0]*4*lengths[0]/lengths[i];
|
|
|
|
c[D_MDC2][i]=c[D_MDC2][0]*4*lengths[0]/lengths[i];
|
2000-08-14 22:05:53 +08:00
|
|
|
c[D_MD4][i]=c[D_MD4][0]*4*lengths[0]/lengths[i];
|
1998-12-21 18:52:47 +08:00
|
|
|
c[D_MD5][i]=c[D_MD5][0]*4*lengths[0]/lengths[i];
|
1998-12-21 18:56:39 +08:00
|
|
|
c[D_HMAC][i]=c[D_HMAC][0]*4*lengths[0]/lengths[i];
|
1998-12-21 18:52:47 +08:00
|
|
|
c[D_SHA1][i]=c[D_SHA1][0]*4*lengths[0]/lengths[i];
|
1998-12-21 18:56:39 +08:00
|
|
|
c[D_RMD160][i]=c[D_RMD160][0]*4*lengths[0]/lengths[i];
|
2004-05-21 05:49:38 +08:00
|
|
|
c[D_SHA256][i]=c[D_SHA256][0]*4*lengths[0]/lengths[i];
|
|
|
|
c[D_SHA512][i]=c[D_SHA512][0]*4*lengths[0]/lengths[i];
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
|
|
|
for (i=1; i<SIZE_NUM; i++)
|
|
|
|
{
|
|
|
|
long l0,l1;
|
|
|
|
|
|
|
|
l0=(long)lengths[i-1];
|
|
|
|
l1=(long)lengths[i];
|
|
|
|
c[D_RC4][i]=c[D_RC4][i-1]*l0/l1;
|
|
|
|
c[D_CBC_DES][i]=c[D_CBC_DES][i-1]*l0/l1;
|
|
|
|
c[D_EDE3_DES][i]=c[D_EDE3_DES][i-1]*l0/l1;
|
|
|
|
c[D_CBC_IDEA][i]=c[D_CBC_IDEA][i-1]*l0/l1;
|
|
|
|
c[D_CBC_RC2][i]=c[D_CBC_RC2][i-1]*l0/l1;
|
1998-12-21 18:56:39 +08:00
|
|
|
c[D_CBC_RC5][i]=c[D_CBC_RC5][i-1]*l0/l1;
|
1998-12-21 18:52:47 +08:00
|
|
|
c[D_CBC_BF][i]=c[D_CBC_BF][i-1]*l0/l1;
|
1998-12-21 18:56:39 +08:00
|
|
|
c[D_CBC_CAST][i]=c[D_CBC_CAST][i-1]*l0/l1;
|
2003-11-19 02:27:12 +08:00
|
|
|
c[D_CBC_128_AES][i]=c[D_CBC_128_AES][i-1]*l0/l1;
|
|
|
|
c[D_CBC_192_AES][i]=c[D_CBC_192_AES][i-1]*l0/l1;
|
|
|
|
c[D_CBC_256_AES][i]=c[D_CBC_256_AES][i-1]*l0/l1;
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RSA
|
1998-12-21 18:52:47 +08:00
|
|
|
rsa_c[R_RSA_512][0]=count/2000;
|
|
|
|
rsa_c[R_RSA_512][1]=count/400;
|
|
|
|
for (i=1; i<RSA_NUM; i++)
|
|
|
|
{
|
|
|
|
rsa_c[i][0]=rsa_c[i-1][0]/8;
|
|
|
|
rsa_c[i][1]=rsa_c[i-1][1]/4;
|
|
|
|
if ((rsa_doit[i] <= 1) && (rsa_c[i][0] == 0))
|
|
|
|
rsa_doit[i]=0;
|
|
|
|
else
|
|
|
|
{
|
1998-12-21 19:00:56 +08:00
|
|
|
if (rsa_c[i][0] == 0)
|
1998-12-21 18:52:47 +08:00
|
|
|
{
|
|
|
|
rsa_c[i][0]=1;
|
|
|
|
rsa_c[i][1]=20;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-04-27 09:14:46 +08:00
|
|
|
#endif
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2001-03-22 23:06:19 +08:00
|
|
|
#ifndef OPENSSL_NO_DSA
|
1998-12-21 18:52:47 +08:00
|
|
|
dsa_c[R_DSA_512][0]=count/1000;
|
|
|
|
dsa_c[R_DSA_512][1]=count/1000/2;
|
|
|
|
for (i=1; i<DSA_NUM; i++)
|
|
|
|
{
|
|
|
|
dsa_c[i][0]=dsa_c[i-1][0]/4;
|
|
|
|
dsa_c[i][1]=dsa_c[i-1][1]/4;
|
|
|
|
if ((dsa_doit[i] <= 1) && (dsa_c[i][0] == 0))
|
|
|
|
dsa_doit[i]=0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (dsa_c[i] == 0)
|
|
|
|
{
|
|
|
|
dsa_c[i][0]=1;
|
|
|
|
dsa_c[i][1]=1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-03-22 23:06:19 +08:00
|
|
|
#endif
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2002-08-09 16:43:04 +08:00
|
|
|
#ifndef OPENSSL_NO_ECDSA
|
|
|
|
ecdsa_c[R_EC_P160][0]=count/1000;
|
|
|
|
ecdsa_c[R_EC_P160][1]=count/1000/2;
|
|
|
|
for (i=R_EC_P224; i<=R_EC_P521; i++)
|
|
|
|
{
|
|
|
|
ecdsa_c[i][0]=ecdsa_c[i-1][0]/2;
|
|
|
|
ecdsa_c[i][1]=ecdsa_c[i-1][1]/2;
|
|
|
|
if ((ecdsa_doit[i] <= 1) && (ecdsa_c[i][0] == 0))
|
|
|
|
ecdsa_doit[i]=0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (ecdsa_c[i] == 0)
|
|
|
|
{
|
|
|
|
ecdsa_c[i][0]=1;
|
|
|
|
ecdsa_c[i][1]=1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ecdsa_c[R_EC_K163][0]=count/1000;
|
|
|
|
ecdsa_c[R_EC_K163][1]=count/1000/2;
|
|
|
|
for (i=R_EC_K233; i<=R_EC_K571; i++)
|
|
|
|
{
|
|
|
|
ecdsa_c[i][0]=ecdsa_c[i-1][0]/2;
|
|
|
|
ecdsa_c[i][1]=ecdsa_c[i-1][1]/2;
|
|
|
|
if ((ecdsa_doit[i] <= 1) && (ecdsa_c[i][0] == 0))
|
|
|
|
ecdsa_doit[i]=0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (ecdsa_c[i] == 0)
|
|
|
|
{
|
|
|
|
ecdsa_c[i][0]=1;
|
|
|
|
ecdsa_c[i][1]=1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ecdsa_c[R_EC_B163][0]=count/1000;
|
|
|
|
ecdsa_c[R_EC_B163][1]=count/1000/2;
|
|
|
|
for (i=R_EC_B233; i<=R_EC_B571; i++)
|
|
|
|
{
|
|
|
|
ecdsa_c[i][0]=ecdsa_c[i-1][0]/2;
|
|
|
|
ecdsa_c[i][1]=ecdsa_c[i-1][1]/2;
|
|
|
|
if ((ecdsa_doit[i] <= 1) && (ecdsa_c[i][0] == 0))
|
|
|
|
ecdsa_doit[i]=0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (ecdsa_c[i] == 0)
|
|
|
|
{
|
|
|
|
ecdsa_c[i][0]=1;
|
|
|
|
ecdsa_c[i][1]=1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef OPENSSL_NO_ECDH
|
|
|
|
ecdh_c[R_EC_P160][0]=count/1000;
|
|
|
|
ecdh_c[R_EC_P160][1]=count/1000;
|
|
|
|
for (i=R_EC_P224; i<=R_EC_P521; i++)
|
|
|
|
{
|
|
|
|
ecdh_c[i][0]=ecdh_c[i-1][0]/2;
|
|
|
|
ecdh_c[i][1]=ecdh_c[i-1][1]/2;
|
|
|
|
if ((ecdh_doit[i] <= 1) && (ecdh_c[i][0] == 0))
|
|
|
|
ecdh_doit[i]=0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (ecdh_c[i] == 0)
|
|
|
|
{
|
|
|
|
ecdh_c[i][0]=1;
|
|
|
|
ecdh_c[i][1]=1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ecdh_c[R_EC_K163][0]=count/1000;
|
|
|
|
ecdh_c[R_EC_K163][1]=count/1000;
|
|
|
|
for (i=R_EC_K233; i<=R_EC_K571; i++)
|
|
|
|
{
|
|
|
|
ecdh_c[i][0]=ecdh_c[i-1][0]/2;
|
|
|
|
ecdh_c[i][1]=ecdh_c[i-1][1]/2;
|
|
|
|
if ((ecdh_doit[i] <= 1) && (ecdh_c[i][0] == 0))
|
|
|
|
ecdh_doit[i]=0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (ecdh_c[i] == 0)
|
|
|
|
{
|
|
|
|
ecdh_c[i][0]=1;
|
|
|
|
ecdh_c[i][1]=1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ecdh_c[R_EC_B163][0]=count/1000;
|
|
|
|
ecdh_c[R_EC_B163][1]=count/1000;
|
|
|
|
for (i=R_EC_B233; i<=R_EC_B571; i++)
|
|
|
|
{
|
|
|
|
ecdh_c[i][0]=ecdh_c[i-1][0]/2;
|
|
|
|
ecdh_c[i][1]=ecdh_c[i-1][1]/2;
|
|
|
|
if ((ecdh_doit[i] <= 1) && (ecdh_c[i][0] == 0))
|
|
|
|
ecdh_doit[i]=0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (ecdh_c[i] == 0)
|
|
|
|
{
|
|
|
|
ecdh_c[i][0]=1;
|
|
|
|
ecdh_c[i][1]=1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1998-12-21 18:56:39 +08:00
|
|
|
#define COND(d) (count < (d))
|
1998-12-21 18:52:47 +08:00
|
|
|
#define COUNT(d) (d)
|
|
|
|
#else
|
2000-01-07 20:15:54 +08:00
|
|
|
/* not worth fixing */
|
|
|
|
# error "You cannot disable DES on systems without SIGALRM."
|
2001-02-20 00:06:34 +08:00
|
|
|
#endif /* OPENSSL_NO_DES */
|
2000-01-07 20:15:54 +08:00
|
|
|
#else
|
1998-12-21 18:52:47 +08:00
|
|
|
#define COND(c) (run)
|
|
|
|
#define COUNT(d) (count)
|
|
|
|
signal(SIGALRM,sig_done);
|
2000-01-07 20:15:54 +08:00
|
|
|
#endif /* SIGALRM */
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_MD2
|
1998-12-21 18:52:47 +08:00
|
|
|
if (doit[D_MD2])
|
|
|
|
{
|
|
|
|
for (j=0; j<SIZE_NUM; j++)
|
|
|
|
{
|
|
|
|
print_message(names[D_MD2],c[D_MD2][j],lengths[j]);
|
2001-10-25 22:27:17 +08:00
|
|
|
Time_F(START);
|
1998-12-21 18:52:47 +08:00
|
|
|
for (count=0,run=1; COND(c[D_MD2][j]); count++)
|
2001-10-25 22:27:17 +08:00
|
|
|
EVP_Digest(buf,(unsigned long)lengths[j],&(md2[0]),NULL,EVP_md2(),NULL);
|
|
|
|
d=Time_F(STOP);
|
|
|
|
print_result(D_MD2,j,count,d);
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_MDC2
|
1998-12-21 18:52:47 +08:00
|
|
|
if (doit[D_MDC2])
|
|
|
|
{
|
|
|
|
for (j=0; j<SIZE_NUM; j++)
|
|
|
|
{
|
|
|
|
print_message(names[D_MDC2],c[D_MDC2][j],lengths[j]);
|
2001-10-25 22:27:17 +08:00
|
|
|
Time_F(START);
|
1998-12-21 18:52:47 +08:00
|
|
|
for (count=0,run=1; COND(c[D_MDC2][j]); count++)
|
2001-10-25 22:27:17 +08:00
|
|
|
EVP_Digest(buf,(unsigned long)lengths[j],&(mdc2[0]),NULL,EVP_mdc2(),NULL);
|
|
|
|
d=Time_F(STOP);
|
|
|
|
print_result(D_MDC2,j,count,d);
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_MD4
|
2000-08-14 22:05:53 +08:00
|
|
|
if (doit[D_MD4])
|
|
|
|
{
|
|
|
|
for (j=0; j<SIZE_NUM; j++)
|
|
|
|
{
|
|
|
|
print_message(names[D_MD4],c[D_MD4][j],lengths[j]);
|
2001-10-25 22:27:17 +08:00
|
|
|
Time_F(START);
|
2000-08-14 22:05:53 +08:00
|
|
|
for (count=0,run=1; COND(c[D_MD4][j]); count++)
|
2001-10-25 22:27:17 +08:00
|
|
|
EVP_Digest(&(buf[0]),(unsigned long)lengths[j],&(md4[0]),NULL,EVP_md4(),NULL);
|
|
|
|
d=Time_F(STOP);
|
|
|
|
print_result(D_MD4,j,count,d);
|
2000-08-14 22:05:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_MD5
|
1998-12-21 18:52:47 +08:00
|
|
|
if (doit[D_MD5])
|
|
|
|
{
|
|
|
|
for (j=0; j<SIZE_NUM; j++)
|
|
|
|
{
|
|
|
|
print_message(names[D_MD5],c[D_MD5][j],lengths[j]);
|
2001-10-25 22:27:17 +08:00
|
|
|
Time_F(START);
|
1998-12-21 18:52:47 +08:00
|
|
|
for (count=0,run=1; COND(c[D_MD5][j]); count++)
|
2001-10-25 22:27:17 +08:00
|
|
|
EVP_Digest(&(buf[0]),(unsigned long)lengths[j],&(md5[0]),NULL,EVP_get_digestbyname("md5"),NULL);
|
|
|
|
d=Time_F(STOP);
|
|
|
|
print_result(D_MD5,j,count,d);
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-02-20 00:06:34 +08:00
|
|
|
#if !defined(OPENSSL_NO_MD5) && !defined(OPENSSL_NO_HMAC)
|
1998-12-21 18:56:39 +08:00
|
|
|
if (doit[D_HMAC])
|
1998-12-21 18:52:47 +08:00
|
|
|
{
|
1998-12-21 18:56:39 +08:00
|
|
|
HMAC_CTX hctx;
|
2001-07-31 07:57:25 +08:00
|
|
|
|
|
|
|
HMAC_CTX_init(&hctx);
|
2001-12-10 05:53:31 +08:00
|
|
|
HMAC_Init_ex(&hctx,(unsigned char *)"This is a key...",
|
2002-03-15 02:22:23 +08:00
|
|
|
16,EVP_md5(), NULL);
|
1998-12-21 18:56:39 +08:00
|
|
|
|
1998-12-21 18:52:47 +08:00
|
|
|
for (j=0; j<SIZE_NUM; j++)
|
|
|
|
{
|
1998-12-21 18:56:39 +08:00
|
|
|
print_message(names[D_HMAC],c[D_HMAC][j],lengths[j]);
|
2001-10-25 22:27:17 +08:00
|
|
|
Time_F(START);
|
1998-12-21 18:56:39 +08:00
|
|
|
for (count=0,run=1; COND(c[D_HMAC][j]); count++)
|
|
|
|
{
|
2002-03-15 02:22:23 +08:00
|
|
|
HMAC_Init_ex(&hctx,NULL,0,NULL,NULL);
|
|
|
|
HMAC_Update(&hctx,buf,lengths[j]);
|
|
|
|
HMAC_Final(&hctx,&(hmac[0]),NULL);
|
1998-12-21 18:56:39 +08:00
|
|
|
}
|
2001-10-25 22:27:17 +08:00
|
|
|
d=Time_F(STOP);
|
|
|
|
print_result(D_HMAC,j,count,d);
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
2001-07-31 07:57:25 +08:00
|
|
|
HMAC_CTX_cleanup(&hctx);
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_SHA
|
1998-12-21 18:52:47 +08:00
|
|
|
if (doit[D_SHA1])
|
|
|
|
{
|
|
|
|
for (j=0; j<SIZE_NUM; j++)
|
|
|
|
{
|
|
|
|
print_message(names[D_SHA1],c[D_SHA1][j],lengths[j]);
|
2001-10-25 22:27:17 +08:00
|
|
|
Time_F(START);
|
1998-12-21 18:52:47 +08:00
|
|
|
for (count=0,run=1; COND(c[D_SHA1][j]); count++)
|
2001-10-25 22:27:17 +08:00
|
|
|
EVP_Digest(buf,(unsigned long)lengths[j],&(sha[0]),NULL,EVP_sha1(),NULL);
|
|
|
|
d=Time_F(STOP);
|
|
|
|
print_result(D_SHA1,j,count,d);
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
|
|
|
}
|
2004-05-21 05:49:38 +08:00
|
|
|
|
2004-07-26 02:57:35 +08:00
|
|
|
#ifndef OPENSSL_NO_SHA256
|
2004-05-21 05:49:38 +08:00
|
|
|
if (doit[D_SHA256])
|
|
|
|
{
|
|
|
|
for (j=0; j<SIZE_NUM; j++)
|
|
|
|
{
|
|
|
|
print_message(names[D_SHA256],c[D_SHA256][j],lengths[j]);
|
|
|
|
Time_F(START);
|
|
|
|
for (count=0,run=1; COND(c[D_SHA256][j]); count++)
|
|
|
|
SHA256(buf,lengths[j],sha256);
|
|
|
|
d=Time_F(STOP);
|
|
|
|
print_result(D_SHA256,j,count,d);
|
|
|
|
}
|
|
|
|
}
|
2004-07-26 02:57:35 +08:00
|
|
|
#endif
|
2004-05-21 05:49:38 +08:00
|
|
|
|
2004-07-26 02:57:35 +08:00
|
|
|
#ifndef OPENSSL_NO_SHA512
|
2004-05-21 05:49:38 +08:00
|
|
|
if (doit[D_SHA512])
|
|
|
|
{
|
|
|
|
for (j=0; j<SIZE_NUM; j++)
|
|
|
|
{
|
|
|
|
print_message(names[D_SHA512],c[D_SHA512][j],lengths[j]);
|
|
|
|
Time_F(START);
|
|
|
|
for (count=0,run=1; COND(c[D_SHA512][j]); count++)
|
|
|
|
SHA512(buf,lengths[j],sha512);
|
|
|
|
d=Time_F(STOP);
|
|
|
|
print_result(D_SHA512,j,count,d);
|
|
|
|
}
|
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
2004-07-26 02:57:35 +08:00
|
|
|
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RIPEMD
|
1998-12-21 18:56:39 +08:00
|
|
|
if (doit[D_RMD160])
|
|
|
|
{
|
|
|
|
for (j=0; j<SIZE_NUM; j++)
|
|
|
|
{
|
|
|
|
print_message(names[D_RMD160],c[D_RMD160][j],lengths[j]);
|
2001-10-25 22:27:17 +08:00
|
|
|
Time_F(START);
|
1998-12-21 18:56:39 +08:00
|
|
|
for (count=0,run=1; COND(c[D_RMD160][j]); count++)
|
2001-10-25 22:27:17 +08:00
|
|
|
EVP_Digest(buf,(unsigned long)lengths[j],&(rmd160[0]),NULL,EVP_ripemd160(),NULL);
|
|
|
|
d=Time_F(STOP);
|
|
|
|
print_result(D_RMD160,j,count,d);
|
1998-12-21 18:56:39 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RC4
|
1998-12-21 18:52:47 +08:00
|
|
|
if (doit[D_RC4])
|
|
|
|
{
|
|
|
|
for (j=0; j<SIZE_NUM; j++)
|
|
|
|
{
|
|
|
|
print_message(names[D_RC4],c[D_RC4][j],lengths[j]);
|
2001-10-25 22:27:17 +08:00
|
|
|
Time_F(START);
|
1998-12-21 18:52:47 +08:00
|
|
|
for (count=0,run=1; COND(c[D_RC4][j]); count++)
|
|
|
|
RC4(&rc4_ks,(unsigned int)lengths[j],
|
|
|
|
buf,buf);
|
2001-10-25 22:27:17 +08:00
|
|
|
d=Time_F(STOP);
|
|
|
|
print_result(D_RC4,j,count,d);
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_DES
|
1998-12-21 18:52:47 +08:00
|
|
|
if (doit[D_CBC_DES])
|
|
|
|
{
|
|
|
|
for (j=0; j<SIZE_NUM; j++)
|
|
|
|
{
|
|
|
|
print_message(names[D_CBC_DES],c[D_CBC_DES][j],lengths[j]);
|
2001-10-25 22:27:17 +08:00
|
|
|
Time_F(START);
|
1998-12-21 18:52:47 +08:00
|
|
|
for (count=0,run=1; COND(c[D_CBC_DES][j]); count++)
|
2001-10-25 05:21:12 +08:00
|
|
|
DES_ncbc_encrypt(buf,buf,lengths[j],&sch,
|
2002-01-03 00:57:57 +08:00
|
|
|
&DES_iv,DES_ENCRYPT);
|
2001-10-25 22:27:17 +08:00
|
|
|
d=Time_F(STOP);
|
|
|
|
print_result(D_CBC_DES,j,count,d);
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (doit[D_EDE3_DES])
|
|
|
|
{
|
|
|
|
for (j=0; j<SIZE_NUM; j++)
|
|
|
|
{
|
|
|
|
print_message(names[D_EDE3_DES],c[D_EDE3_DES][j],lengths[j]);
|
2001-10-25 22:27:17 +08:00
|
|
|
Time_F(START);
|
1998-12-21 18:52:47 +08:00
|
|
|
for (count=0,run=1; COND(c[D_EDE3_DES][j]); count++)
|
2001-10-25 05:21:12 +08:00
|
|
|
DES_ede3_cbc_encrypt(buf,buf,lengths[j],
|
2001-07-31 07:57:25 +08:00
|
|
|
&sch,&sch2,&sch3,
|
2002-01-03 00:57:57 +08:00
|
|
|
&DES_iv,DES_ENCRYPT);
|
2001-10-25 22:27:17 +08:00
|
|
|
d=Time_F(STOP);
|
|
|
|
print_result(D_EDE3_DES,j,count,d);
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2002-01-03 00:57:57 +08:00
|
|
|
#ifndef OPENSSL_NO_AES
|
|
|
|
if (doit[D_CBC_128_AES])
|
|
|
|
{
|
|
|
|
for (j=0; j<SIZE_NUM; j++)
|
|
|
|
{
|
|
|
|
print_message(names[D_CBC_128_AES],c[D_CBC_128_AES][j],lengths[j]);
|
|
|
|
Time_F(START);
|
|
|
|
for (count=0,run=1; COND(c[D_CBC_128_AES][j]); count++)
|
|
|
|
AES_cbc_encrypt(buf,buf,
|
|
|
|
(unsigned long)lengths[j],&aes_ks1,
|
|
|
|
iv,AES_ENCRYPT);
|
|
|
|
d=Time_F(STOP);
|
|
|
|
print_result(D_CBC_128_AES,j,count,d);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (doit[D_CBC_192_AES])
|
|
|
|
{
|
|
|
|
for (j=0; j<SIZE_NUM; j++)
|
|
|
|
{
|
|
|
|
print_message(names[D_CBC_192_AES],c[D_CBC_192_AES][j],lengths[j]);
|
|
|
|
Time_F(START);
|
|
|
|
for (count=0,run=1; COND(c[D_CBC_192_AES][j]); count++)
|
|
|
|
AES_cbc_encrypt(buf,buf,
|
|
|
|
(unsigned long)lengths[j],&aes_ks2,
|
|
|
|
iv,AES_ENCRYPT);
|
|
|
|
d=Time_F(STOP);
|
|
|
|
print_result(D_CBC_192_AES,j,count,d);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (doit[D_CBC_256_AES])
|
|
|
|
{
|
|
|
|
for (j=0; j<SIZE_NUM; j++)
|
|
|
|
{
|
|
|
|
print_message(names[D_CBC_256_AES],c[D_CBC_256_AES][j],lengths[j]);
|
|
|
|
Time_F(START);
|
|
|
|
for (count=0,run=1; COND(c[D_CBC_256_AES][j]); count++)
|
|
|
|
AES_cbc_encrypt(buf,buf,
|
|
|
|
(unsigned long)lengths[j],&aes_ks3,
|
|
|
|
iv,AES_ENCRYPT);
|
|
|
|
d=Time_F(STOP);
|
|
|
|
print_result(D_CBC_256_AES,j,count,d);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_IDEA
|
1998-12-21 18:52:47 +08:00
|
|
|
if (doit[D_CBC_IDEA])
|
|
|
|
{
|
|
|
|
for (j=0; j<SIZE_NUM; j++)
|
|
|
|
{
|
|
|
|
print_message(names[D_CBC_IDEA],c[D_CBC_IDEA][j],lengths[j]);
|
2001-10-25 22:27:17 +08:00
|
|
|
Time_F(START);
|
1998-12-21 18:52:47 +08:00
|
|
|
for (count=0,run=1; COND(c[D_CBC_IDEA][j]); count++)
|
|
|
|
idea_cbc_encrypt(buf,buf,
|
|
|
|
(unsigned long)lengths[j],&idea_ks,
|
1999-05-18 23:06:20 +08:00
|
|
|
iv,IDEA_ENCRYPT);
|
2001-10-25 22:27:17 +08:00
|
|
|
d=Time_F(STOP);
|
|
|
|
print_result(D_CBC_IDEA,j,count,d);
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RC2
|
1998-12-21 18:52:47 +08:00
|
|
|
if (doit[D_CBC_RC2])
|
|
|
|
{
|
|
|
|
for (j=0; j<SIZE_NUM; j++)
|
|
|
|
{
|
|
|
|
print_message(names[D_CBC_RC2],c[D_CBC_RC2][j],lengths[j]);
|
2001-10-25 22:27:17 +08:00
|
|
|
Time_F(START);
|
1998-12-21 18:52:47 +08:00
|
|
|
for (count=0,run=1; COND(c[D_CBC_RC2][j]); count++)
|
|
|
|
RC2_cbc_encrypt(buf,buf,
|
|
|
|
(unsigned long)lengths[j],&rc2_ks,
|
1999-05-18 23:06:20 +08:00
|
|
|
iv,RC2_ENCRYPT);
|
2001-10-25 22:27:17 +08:00
|
|
|
d=Time_F(STOP);
|
|
|
|
print_result(D_CBC_RC2,j,count,d);
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RC5
|
1998-12-21 18:56:39 +08:00
|
|
|
if (doit[D_CBC_RC5])
|
|
|
|
{
|
|
|
|
for (j=0; j<SIZE_NUM; j++)
|
|
|
|
{
|
|
|
|
print_message(names[D_CBC_RC5],c[D_CBC_RC5][j],lengths[j]);
|
2001-10-25 22:27:17 +08:00
|
|
|
Time_F(START);
|
1998-12-21 18:56:39 +08:00
|
|
|
for (count=0,run=1; COND(c[D_CBC_RC5][j]); count++)
|
|
|
|
RC5_32_cbc_encrypt(buf,buf,
|
|
|
|
(unsigned long)lengths[j],&rc5_ks,
|
1999-05-18 23:06:20 +08:00
|
|
|
iv,RC5_ENCRYPT);
|
2001-10-25 22:27:17 +08:00
|
|
|
d=Time_F(STOP);
|
|
|
|
print_result(D_CBC_RC5,j,count,d);
|
1998-12-21 18:56:39 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_BF
|
1998-12-21 18:52:47 +08:00
|
|
|
if (doit[D_CBC_BF])
|
|
|
|
{
|
|
|
|
for (j=0; j<SIZE_NUM; j++)
|
|
|
|
{
|
|
|
|
print_message(names[D_CBC_BF],c[D_CBC_BF][j],lengths[j]);
|
2001-10-25 22:27:17 +08:00
|
|
|
Time_F(START);
|
1998-12-21 18:52:47 +08:00
|
|
|
for (count=0,run=1; COND(c[D_CBC_BF][j]); count++)
|
|
|
|
BF_cbc_encrypt(buf,buf,
|
|
|
|
(unsigned long)lengths[j],&bf_ks,
|
1999-05-18 23:06:20 +08:00
|
|
|
iv,BF_ENCRYPT);
|
2001-10-25 22:27:17 +08:00
|
|
|
d=Time_F(STOP);
|
|
|
|
print_result(D_CBC_BF,j,count,d);
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_CAST
|
1998-12-21 18:56:39 +08:00
|
|
|
if (doit[D_CBC_CAST])
|
|
|
|
{
|
|
|
|
for (j=0; j<SIZE_NUM; j++)
|
|
|
|
{
|
|
|
|
print_message(names[D_CBC_CAST],c[D_CBC_CAST][j],lengths[j]);
|
2001-10-25 22:27:17 +08:00
|
|
|
Time_F(START);
|
1998-12-21 18:56:39 +08:00
|
|
|
for (count=0,run=1; COND(c[D_CBC_CAST][j]); count++)
|
|
|
|
CAST_cbc_encrypt(buf,buf,
|
|
|
|
(unsigned long)lengths[j],&cast_ks,
|
1999-05-18 23:06:20 +08:00
|
|
|
iv,CAST_ENCRYPT);
|
2001-10-25 22:27:17 +08:00
|
|
|
d=Time_F(STOP);
|
|
|
|
print_result(D_CBC_CAST,j,count,d);
|
1998-12-21 18:56:39 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2000-11-20 12:14:19 +08:00
|
|
|
if (doit[D_EVP])
|
|
|
|
{
|
|
|
|
for (j=0; j<SIZE_NUM; j++)
|
|
|
|
{
|
2001-11-16 04:19:40 +08:00
|
|
|
if (evp_cipher)
|
|
|
|
{
|
|
|
|
EVP_CIPHER_CTX ctx;
|
|
|
|
int outl;
|
|
|
|
|
|
|
|
names[D_EVP]=OBJ_nid2ln(evp_cipher->nid);
|
2002-01-03 00:57:57 +08:00
|
|
|
/* -O3 -fschedule-insns messes up an
|
|
|
|
* optimization here! names[D_EVP]
|
|
|
|
* somehow becomes NULL */
|
2001-11-16 04:19:40 +08:00
|
|
|
print_message(names[D_EVP],save_count,
|
|
|
|
lengths[j]);
|
|
|
|
|
|
|
|
EVP_CIPHER_CTX_init(&ctx);
|
|
|
|
if(decrypt)
|
|
|
|
EVP_DecryptInit_ex(&ctx,evp_cipher,NULL,key16,iv);
|
|
|
|
else
|
|
|
|
EVP_EncryptInit_ex(&ctx,evp_cipher,NULL,key16,iv);
|
2004-06-29 00:32:12 +08:00
|
|
|
EVP_CIPHER_CTX_set_padding(&ctx, 0);
|
2001-11-16 04:19:40 +08:00
|
|
|
|
|
|
|
Time_F(START);
|
|
|
|
if(decrypt)
|
|
|
|
for (count=0,run=1; COND(save_count*4*lengths[0]/lengths[j]); count++)
|
|
|
|
EVP_DecryptUpdate(&ctx,buf,&outl,buf,lengths[j]);
|
|
|
|
else
|
|
|
|
for (count=0,run=1; COND(save_count*4*lengths[0]/lengths[j]); count++)
|
|
|
|
EVP_EncryptUpdate(&ctx,buf,&outl,buf,lengths[j]);
|
|
|
|
if(decrypt)
|
|
|
|
EVP_DecryptFinal_ex(&ctx,buf,&outl);
|
|
|
|
else
|
|
|
|
EVP_EncryptFinal_ex(&ctx,buf,&outl);
|
|
|
|
d=Time_F(STOP);
|
2003-01-05 02:25:24 +08:00
|
|
|
EVP_CIPHER_CTX_cleanup(&ctx);
|
2001-11-16 04:19:40 +08:00
|
|
|
}
|
|
|
|
if (evp_md)
|
|
|
|
{
|
|
|
|
names[D_EVP]=OBJ_nid2ln(evp_md->type);
|
|
|
|
print_message(names[D_EVP],save_count,
|
|
|
|
lengths[j]);
|
|
|
|
|
|
|
|
Time_F(START);
|
2001-07-08 20:14:41 +08:00
|
|
|
for (count=0,run=1; COND(save_count*4*lengths[0]/lengths[j]); count++)
|
2001-11-16 04:19:40 +08:00
|
|
|
EVP_Digest(buf,lengths[j],&(md[0]),NULL,evp_md,NULL);
|
|
|
|
|
|
|
|
d=Time_F(STOP);
|
|
|
|
}
|
2001-10-25 22:27:17 +08:00
|
|
|
print_result(D_EVP,j,count,d);
|
2000-11-20 12:14:19 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-01-16 23:58:17 +08:00
|
|
|
RAND_pseudo_bytes(buf,36);
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RSA
|
1998-12-21 18:52:47 +08:00
|
|
|
for (j=0; j<RSA_NUM; j++)
|
|
|
|
{
|
1999-10-02 09:18:19 +08:00
|
|
|
int ret;
|
1998-12-21 18:52:47 +08:00
|
|
|
if (!rsa_doit[j]) continue;
|
1999-10-02 09:18:19 +08:00
|
|
|
ret=RSA_sign(NID_md5_sha1, buf,36, buf2, &rsa_num, rsa_key[j]);
|
2000-09-12 16:12:52 +08:00
|
|
|
if (ret == 0)
|
|
|
|
{
|
|
|
|
BIO_printf(bio_err,"RSA sign failure. No RSA sign will be done.\n");
|
|
|
|
ERR_print_errors(bio_err);
|
|
|
|
rsa_count=1;
|
|
|
|
}
|
|
|
|
else
|
1998-12-21 18:52:47 +08:00
|
|
|
{
|
2000-09-12 16:12:52 +08:00
|
|
|
pkey_print_message("private","rsa",
|
|
|
|
rsa_c[j][0],rsa_bits[j],
|
|
|
|
RSA_SECONDS);
|
|
|
|
/* RSA_blinding_on(rsa_key[j],NULL); */
|
2001-10-25 22:27:17 +08:00
|
|
|
Time_F(START);
|
2000-09-12 16:12:52 +08:00
|
|
|
for (count=0,run=1; COND(rsa_c[j][0]); count++)
|
1998-12-21 18:52:47 +08:00
|
|
|
{
|
2000-09-12 16:12:52 +08:00
|
|
|
ret=RSA_sign(NID_md5_sha1, buf,36, buf2,
|
|
|
|
&rsa_num, rsa_key[j]);
|
|
|
|
if (ret == 0)
|
|
|
|
{
|
|
|
|
BIO_printf(bio_err,
|
|
|
|
"RSA sign failure\n");
|
|
|
|
ERR_print_errors(bio_err);
|
|
|
|
count=1;
|
|
|
|
break;
|
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
2001-10-25 22:27:17 +08:00
|
|
|
d=Time_F(STOP);
|
|
|
|
BIO_printf(bio_err,mr ? "+R1:%ld:%d:%.2f\n"
|
|
|
|
: "%ld %d bit private RSA's in %.2fs\n",
|
|
|
|
count,rsa_bits[j],d);
|
2000-09-12 16:12:52 +08:00
|
|
|
rsa_results[j][0]=d/(double)count;
|
|
|
|
rsa_count=count;
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
|
|
|
|
1998-12-21 18:56:39 +08:00
|
|
|
#if 1
|
1999-10-02 09:18:19 +08:00
|
|
|
ret=RSA_verify(NID_md5_sha1, buf,36, buf2, rsa_num, rsa_key[j]);
|
2000-09-12 16:12:52 +08:00
|
|
|
if (ret <= 0)
|
1998-12-21 18:52:47 +08:00
|
|
|
{
|
2000-09-12 16:12:52 +08:00
|
|
|
BIO_printf(bio_err,"RSA verify failure. No RSA verify will be done.\n");
|
|
|
|
ERR_print_errors(bio_err);
|
2001-03-16 18:30:10 +08:00
|
|
|
rsa_doit[j] = 0;
|
2000-09-12 16:12:52 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pkey_print_message("public","rsa",
|
|
|
|
rsa_c[j][1],rsa_bits[j],
|
|
|
|
RSA_SECONDS);
|
2001-10-25 22:27:17 +08:00
|
|
|
Time_F(START);
|
2000-09-12 16:12:52 +08:00
|
|
|
for (count=0,run=1; COND(rsa_c[j][1]); count++)
|
1998-12-21 18:52:47 +08:00
|
|
|
{
|
2000-09-12 16:12:52 +08:00
|
|
|
ret=RSA_verify(NID_md5_sha1, buf,36, buf2,
|
|
|
|
rsa_num, rsa_key[j]);
|
|
|
|
if (ret == 0)
|
|
|
|
{
|
|
|
|
BIO_printf(bio_err,
|
|
|
|
"RSA verify failure\n");
|
|
|
|
ERR_print_errors(bio_err);
|
|
|
|
count=1;
|
|
|
|
break;
|
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
2001-10-25 22:27:17 +08:00
|
|
|
d=Time_F(STOP);
|
|
|
|
BIO_printf(bio_err,mr ? "+R2:%ld:%d:%.2f\n"
|
|
|
|
: "%ld %d bit public RSA's in %.2fs\n",
|
|
|
|
count,rsa_bits[j],d);
|
2000-09-12 16:12:52 +08:00
|
|
|
rsa_results[j][1]=d/(double)count;
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
1998-12-21 18:56:39 +08:00
|
|
|
#endif
|
1998-12-21 18:52:47 +08:00
|
|
|
|
|
|
|
if (rsa_count <= 1)
|
|
|
|
{
|
|
|
|
/* if longer than 10s, don't do any more */
|
|
|
|
for (j++; j<RSA_NUM; j++)
|
|
|
|
rsa_doit[j]=0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2000-01-16 23:58:17 +08:00
|
|
|
RAND_pseudo_bytes(buf,20);
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_DSA
|
2000-03-02 01:42:06 +08:00
|
|
|
if (RAND_status() != 1)
|
|
|
|
{
|
|
|
|
RAND_seed(rnd_seed, sizeof rnd_seed);
|
|
|
|
rnd_fake = 1;
|
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
for (j=0; j<DSA_NUM; j++)
|
|
|
|
{
|
1998-12-21 18:56:39 +08:00
|
|
|
unsigned int kk;
|
2000-09-12 16:12:52 +08:00
|
|
|
int ret;
|
1998-12-21 18:56:39 +08:00
|
|
|
|
1998-12-21 18:52:47 +08:00
|
|
|
if (!dsa_doit[j]) continue;
|
2001-07-12 02:59:25 +08:00
|
|
|
/* DSA_generate_key(dsa_key[j]); */
|
1998-12-21 18:52:47 +08:00
|
|
|
/* DSA_sign_setup(dsa_key[j],NULL); */
|
2000-09-12 16:12:52 +08:00
|
|
|
ret=DSA_sign(EVP_PKEY_DSA,buf,20,buf2,
|
1998-12-21 19:00:56 +08:00
|
|
|
&kk,dsa_key[j]);
|
2000-09-12 16:12:52 +08:00
|
|
|
if (ret == 0)
|
|
|
|
{
|
|
|
|
BIO_printf(bio_err,"DSA sign failure. No DSA sign will be done.\n");
|
|
|
|
ERR_print_errors(bio_err);
|
|
|
|
rsa_count=1;
|
|
|
|
}
|
|
|
|
else
|
1998-12-21 18:52:47 +08:00
|
|
|
{
|
2000-09-12 16:12:52 +08:00
|
|
|
pkey_print_message("sign","dsa",
|
|
|
|
dsa_c[j][0],dsa_bits[j],
|
|
|
|
DSA_SECONDS);
|
2001-10-25 22:27:17 +08:00
|
|
|
Time_F(START);
|
2000-09-12 16:12:52 +08:00
|
|
|
for (count=0,run=1; COND(dsa_c[j][0]); count++)
|
1998-12-21 18:52:47 +08:00
|
|
|
{
|
2000-09-12 16:12:52 +08:00
|
|
|
ret=DSA_sign(EVP_PKEY_DSA,buf,20,buf2,
|
|
|
|
&kk,dsa_key[j]);
|
|
|
|
if (ret == 0)
|
|
|
|
{
|
|
|
|
BIO_printf(bio_err,
|
|
|
|
"DSA sign failure\n");
|
|
|
|
ERR_print_errors(bio_err);
|
|
|
|
count=1;
|
|
|
|
break;
|
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
2001-10-25 22:27:17 +08:00
|
|
|
d=Time_F(STOP);
|
|
|
|
BIO_printf(bio_err,mr ? "+R3:%ld:%d:%.2f\n"
|
|
|
|
: "%ld %d bit DSA signs in %.2fs\n",
|
|
|
|
count,dsa_bits[j],d);
|
2000-09-12 16:12:52 +08:00
|
|
|
dsa_results[j][0]=d/(double)count;
|
|
|
|
rsa_count=count;
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
|
|
|
|
2000-09-12 16:12:52 +08:00
|
|
|
ret=DSA_verify(EVP_PKEY_DSA,buf,20,buf2,
|
1998-12-21 19:00:56 +08:00
|
|
|
kk,dsa_key[j]);
|
2000-09-12 16:12:52 +08:00
|
|
|
if (ret <= 0)
|
|
|
|
{
|
|
|
|
BIO_printf(bio_err,"DSA verify failure. No DSA verify will be done.\n");
|
|
|
|
ERR_print_errors(bio_err);
|
|
|
|
dsa_doit[j] = 0;
|
|
|
|
}
|
|
|
|
else
|
1998-12-21 18:52:47 +08:00
|
|
|
{
|
2000-09-12 16:12:52 +08:00
|
|
|
pkey_print_message("verify","dsa",
|
|
|
|
dsa_c[j][1],dsa_bits[j],
|
|
|
|
DSA_SECONDS);
|
2001-10-25 22:27:17 +08:00
|
|
|
Time_F(START);
|
2000-09-12 16:12:52 +08:00
|
|
|
for (count=0,run=1; COND(dsa_c[j][1]); count++)
|
1998-12-21 18:52:47 +08:00
|
|
|
{
|
2000-09-12 16:12:52 +08:00
|
|
|
ret=DSA_verify(EVP_PKEY_DSA,buf,20,buf2,
|
|
|
|
kk,dsa_key[j]);
|
|
|
|
if (ret <= 0)
|
|
|
|
{
|
|
|
|
BIO_printf(bio_err,
|
|
|
|
"DSA verify failure\n");
|
|
|
|
ERR_print_errors(bio_err);
|
|
|
|
count=1;
|
|
|
|
break;
|
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
2001-10-25 22:27:17 +08:00
|
|
|
d=Time_F(STOP);
|
|
|
|
BIO_printf(bio_err,mr ? "+R4:%ld:%d:%.2f\n"
|
|
|
|
: "%ld %d bit DSA verify in %.2fs\n",
|
|
|
|
count,dsa_bits[j],d);
|
2000-09-12 16:12:52 +08:00
|
|
|
dsa_results[j][1]=d/(double)count;
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (rsa_count <= 1)
|
|
|
|
{
|
|
|
|
/* if longer than 10s, don't do any more */
|
|
|
|
for (j++; j<DSA_NUM; j++)
|
|
|
|
dsa_doit[j]=0;
|
|
|
|
}
|
|
|
|
}
|
2000-03-02 01:42:06 +08:00
|
|
|
if (rnd_fake) RAND_cleanup();
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
2002-08-09 16:43:04 +08:00
|
|
|
|
|
|
|
#ifndef OPENSSL_NO_ECDSA
|
|
|
|
if (RAND_status() != 1)
|
|
|
|
{
|
|
|
|
RAND_seed(rnd_seed, sizeof rnd_seed);
|
|
|
|
rnd_fake = 1;
|
|
|
|
}
|
|
|
|
for (j=0; j<EC_NUM; j++)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!ecdsa_doit[j]) continue; /* Ignore Curve */
|
|
|
|
ecdsa[j] = EC_KEY_new();
|
|
|
|
if (ecdsa[j] == NULL)
|
|
|
|
{
|
|
|
|
BIO_printf(bio_err,"ECDSA failure.\n");
|
|
|
|
ERR_print_errors(bio_err);
|
|
|
|
rsa_count=1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ecdsa[j]->group = EC_GROUP_new_by_nid(test_curves[j]);
|
|
|
|
/* Could not obtain group information */
|
|
|
|
if (ecdsa[j]->group == NULL)
|
|
|
|
{
|
|
|
|
BIO_printf(bio_err,"ECDSA failure.Could not obtain group information\n");
|
|
|
|
ERR_print_errors(bio_err);
|
|
|
|
rsa_count=1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-02-07 03:25:12 +08:00
|
|
|
#if 1
|
|
|
|
EC_GROUP_precompute_mult(ecdsa[j]->group, NULL);
|
|
|
|
#endif
|
2002-08-09 16:43:04 +08:00
|
|
|
/* Perform ECDSA signature test */
|
|
|
|
EC_KEY_generate_key(ecdsa[j]);
|
2002-08-12 16:47:41 +08:00
|
|
|
ret = ECDSA_sign(0, buf, 20, ecdsasig,
|
2002-08-09 16:43:04 +08:00
|
|
|
&ecdsasiglen, ecdsa[j]);
|
|
|
|
if (ret == 0)
|
|
|
|
{
|
|
|
|
BIO_printf(bio_err,"ECDSA sign failure. No ECDSA sign will be done.\n");
|
|
|
|
ERR_print_errors(bio_err);
|
|
|
|
rsa_count=1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pkey_print_message("sign","ecdsa",
|
|
|
|
ecdsa_c[j][0],
|
|
|
|
test_curves_bits[j],
|
|
|
|
ECDSA_SECONDS);
|
|
|
|
|
|
|
|
Time_F(START);
|
2002-08-12 16:47:41 +08:00
|
|
|
for (count=0,run=1; COND(ecdsa_c[j][0]);
|
|
|
|
count++)
|
2002-08-09 16:43:04 +08:00
|
|
|
{
|
2002-08-12 16:47:41 +08:00
|
|
|
ret=ECDSA_sign(0, buf, 20,
|
|
|
|
ecdsasig, &ecdsasiglen,
|
|
|
|
ecdsa[j]);
|
2002-08-09 16:43:04 +08:00
|
|
|
if (ret == 0)
|
|
|
|
{
|
|
|
|
BIO_printf(bio_err, "ECDSA sign failure\n");
|
|
|
|
ERR_print_errors(bio_err);
|
|
|
|
count=1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
d=Time_F(STOP);
|
|
|
|
|
|
|
|
BIO_printf(bio_err, mr ? "+R5:%ld:%d:%.2f\n" :
|
|
|
|
"%ld %d bit ECDSA signs in %.2fs \n",
|
|
|
|
count, test_curves_bits[j], d);
|
|
|
|
ecdsa_results[j][0]=d/(double)count;
|
|
|
|
rsa_count=count;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Perform ECDSA verification test */
|
2002-08-12 16:47:41 +08:00
|
|
|
ret=ECDSA_verify(0, buf, 20, ecdsasig,
|
|
|
|
ecdsasiglen, ecdsa[j]);
|
2002-08-09 16:43:04 +08:00
|
|
|
if (ret != 1)
|
|
|
|
{
|
|
|
|
BIO_printf(bio_err,"ECDSA verify failure. No ECDSA verify will be done.\n");
|
|
|
|
ERR_print_errors(bio_err);
|
|
|
|
ecdsa_doit[j] = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pkey_print_message("verify","ecdsa",
|
|
|
|
ecdsa_c[j][1],
|
|
|
|
test_curves_bits[j],
|
|
|
|
ECDSA_SECONDS);
|
|
|
|
Time_F(START);
|
|
|
|
for (count=0,run=1; COND(ecdsa_c[j][1]); count++)
|
|
|
|
{
|
|
|
|
ret=ECDSA_verify(0, buf, 20, ecdsasig, ecdsasiglen, ecdsa[j]);
|
|
|
|
if (ret != 1)
|
|
|
|
{
|
|
|
|
BIO_printf(bio_err, "ECDSA verify failure\n");
|
|
|
|
ERR_print_errors(bio_err);
|
|
|
|
count=1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
d=Time_F(STOP);
|
|
|
|
BIO_printf(bio_err, mr? "+R6:%ld:%d:%.2f\n"
|
|
|
|
: "%ld %d bit ECDSA verify in %.2fs\n",
|
|
|
|
count, test_curves_bits[j], d);
|
|
|
|
ecdsa_results[j][1]=d/(double)count;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rsa_count <= 1)
|
|
|
|
{
|
|
|
|
/* if longer than 10s, don't do any more */
|
|
|
|
for (j++; j<EC_NUM; j++)
|
|
|
|
ecdsa_doit[j]=0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (rnd_fake) RAND_cleanup();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef OPENSSL_NO_ECDH
|
|
|
|
if (RAND_status() != 1)
|
|
|
|
{
|
|
|
|
RAND_seed(rnd_seed, sizeof rnd_seed);
|
|
|
|
rnd_fake = 1;
|
|
|
|
}
|
|
|
|
for (j=0; j<EC_NUM; j++)
|
|
|
|
{
|
|
|
|
if (!ecdh_doit[j]) continue;
|
|
|
|
ecdh_a[j] = EC_KEY_new();
|
|
|
|
ecdh_b[j] = EC_KEY_new();
|
|
|
|
if ((ecdh_a[j] == NULL) || (ecdh_b[j] == NULL))
|
|
|
|
{
|
|
|
|
BIO_printf(bio_err,"ECDH failure.\n");
|
|
|
|
ERR_print_errors(bio_err);
|
|
|
|
rsa_count=1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ecdh_a[j]->group = EC_GROUP_new_by_nid(test_curves[j]);
|
|
|
|
if (ecdh_a[j]->group == NULL)
|
|
|
|
{
|
|
|
|
BIO_printf(bio_err,"ECDH failure.\n");
|
|
|
|
ERR_print_errors(bio_err);
|
|
|
|
rsa_count=1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-02-09 03:49:16 +08:00
|
|
|
ecdh_b[j]->group = EC_GROUP_dup(ecdh_a[j]->group);
|
2002-08-09 16:43:04 +08:00
|
|
|
|
|
|
|
/* generate two ECDH key pairs */
|
|
|
|
if (!EC_KEY_generate_key(ecdh_a[j]) ||
|
|
|
|
!EC_KEY_generate_key(ecdh_b[j]))
|
|
|
|
{
|
|
|
|
BIO_printf(bio_err,"ECDH key generation failure.\n");
|
|
|
|
ERR_print_errors(bio_err);
|
|
|
|
rsa_count=1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-07-22 20:34:21 +08:00
|
|
|
/* If field size is not more than 24 octets, then use SHA-1 hash of result;
|
|
|
|
* otherwise, use result (see section 4.8 of draft-ietf-tls-ecc-03.txt).
|
|
|
|
*/
|
|
|
|
int field_size, outlen;
|
2003-10-11 07:07:24 +08:00
|
|
|
void *(*kdf)(void *in, size_t inlen, void *out, size_t xoutlen);
|
2003-07-22 20:34:21 +08:00
|
|
|
field_size = EC_GROUP_get_degree(ecdh_a[j]->group);
|
|
|
|
if (field_size <= 24 * 8)
|
|
|
|
{
|
|
|
|
outlen = KDF1_SHA1_len;
|
|
|
|
kdf = KDF1_SHA1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
outlen = (field_size+7)/8;
|
|
|
|
kdf = NULL;
|
|
|
|
}
|
|
|
|
secret_size_a = ECDH_compute_key(secret_a, outlen,
|
2002-08-09 16:43:04 +08:00
|
|
|
ecdh_b[j]->pub_key,
|
2003-07-22 20:34:21 +08:00
|
|
|
ecdh_a[j], kdf);
|
|
|
|
secret_size_b = ECDH_compute_key(secret_b, outlen,
|
2002-08-09 16:43:04 +08:00
|
|
|
ecdh_a[j]->pub_key,
|
2003-07-22 20:34:21 +08:00
|
|
|
ecdh_b[j], kdf);
|
2002-08-09 16:43:04 +08:00
|
|
|
if (secret_size_a != secret_size_b)
|
2002-08-09 19:58:28 +08:00
|
|
|
ecdh_checks = 0;
|
2002-08-09 16:43:04 +08:00
|
|
|
else
|
2002-08-09 19:58:28 +08:00
|
|
|
ecdh_checks = 1;
|
2002-08-09 16:43:04 +08:00
|
|
|
|
|
|
|
for (secret_idx = 0;
|
2002-08-09 19:58:28 +08:00
|
|
|
(secret_idx < secret_size_a)
|
|
|
|
&& (ecdh_checks == 1);
|
2002-08-09 16:43:04 +08:00
|
|
|
secret_idx++)
|
|
|
|
{
|
|
|
|
if (secret_a[secret_idx] != secret_b[secret_idx])
|
2002-08-09 19:58:28 +08:00
|
|
|
ecdh_checks = 0;
|
2002-08-09 16:43:04 +08:00
|
|
|
}
|
|
|
|
|
2002-08-09 19:58:28 +08:00
|
|
|
if (ecdh_checks == 0)
|
2002-08-09 16:43:04 +08:00
|
|
|
{
|
|
|
|
BIO_printf(bio_err,"ECDH computations don't match.\n");
|
|
|
|
ERR_print_errors(bio_err);
|
|
|
|
rsa_count=1;
|
|
|
|
}
|
|
|
|
|
|
|
|
pkey_print_message("","ecdh",
|
|
|
|
ecdh_c[j][0],
|
|
|
|
test_curves_bits[j],
|
|
|
|
ECDH_SECONDS);
|
|
|
|
Time_F(START);
|
|
|
|
for (count=0,run=1; COND(ecdh_c[j][0]); count++)
|
|
|
|
{
|
2003-07-22 20:34:21 +08:00
|
|
|
ECDH_compute_key(secret_a, outlen,
|
2002-08-09 16:43:04 +08:00
|
|
|
ecdh_b[j]->pub_key,
|
2003-07-22 20:34:21 +08:00
|
|
|
ecdh_a[j], kdf);
|
2002-08-09 16:43:04 +08:00
|
|
|
}
|
|
|
|
d=Time_F(STOP);
|
|
|
|
BIO_printf(bio_err, mr ? "+R7:%ld:%d:%.2f\n" :"%ld %d-bit ECDH ops in %.2fs\n",
|
|
|
|
count, test_curves_bits[j], d);
|
|
|
|
ecdh_results[j][0]=d/(double)count;
|
|
|
|
rsa_count=count;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rsa_count <= 1)
|
|
|
|
{
|
|
|
|
/* if longer than 10s, don't do any more */
|
|
|
|
for (j++; j<EC_NUM; j++)
|
|
|
|
ecdh_doit[j]=0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (rnd_fake) RAND_cleanup();
|
|
|
|
#endif
|
2001-11-06 21:40:27 +08:00
|
|
|
#ifdef HAVE_FORK
|
2001-10-25 22:27:17 +08:00
|
|
|
show_res:
|
2001-11-06 21:40:27 +08:00
|
|
|
#endif
|
2001-10-25 22:27:17 +08:00
|
|
|
if(!mr)
|
|
|
|
{
|
|
|
|
fprintf(stdout,"%s\n",SSLeay_version(SSLEAY_VERSION));
|
1998-12-21 18:52:47 +08:00
|
|
|
fprintf(stdout,"%s\n",SSLeay_version(SSLEAY_BUILT_ON));
|
2001-10-25 22:27:17 +08:00
|
|
|
printf("options:");
|
|
|
|
printf("%s ",BN_options());
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_MD2
|
2001-10-25 22:27:17 +08:00
|
|
|
printf("%s ",MD2_options());
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RC4
|
2001-10-25 22:27:17 +08:00
|
|
|
printf("%s ",RC4_options());
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_DES
|
2002-03-22 10:42:57 +08:00
|
|
|
printf("%s ",DES_options());
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
2002-01-03 00:57:57 +08:00
|
|
|
#ifndef OPENSSL_NO_AES
|
|
|
|
printf("%s ",AES_options());
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_IDEA
|
2001-10-25 22:27:17 +08:00
|
|
|
printf("%s ",idea_options());
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_BF
|
2001-10-25 22:27:17 +08:00
|
|
|
printf("%s ",BF_options());
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
2001-10-25 22:27:17 +08:00
|
|
|
fprintf(stdout,"\n%s\n",SSLeay_version(SSLEAY_CFLAGS));
|
|
|
|
printf("available timing options: ");
|
2001-09-27 23:43:55 +08:00
|
|
|
#ifdef TIMES
|
2001-10-25 22:27:17 +08:00
|
|
|
printf("TIMES ");
|
2001-09-27 23:43:55 +08:00
|
|
|
#endif
|
|
|
|
#ifdef TIMEB
|
2001-10-25 22:27:17 +08:00
|
|
|
printf("TIMEB ");
|
2001-09-27 23:43:55 +08:00
|
|
|
#endif
|
|
|
|
#ifdef USE_TOD
|
2001-10-25 22:27:17 +08:00
|
|
|
printf("USE_TOD ");
|
2001-09-27 23:43:55 +08:00
|
|
|
#endif
|
|
|
|
#ifdef HZ
|
|
|
|
#define as_string(s) (#s)
|
For whatever reason (compiler or header bugs), at least one commonly-used
linux system (namely mine) chokes on our definitions and uses of the "HZ"
symbol in crypto/tmdiff.[ch] and apps/speed.c as a "bad function cast"
(when in fact there is no function casting involved at all). In both cases,
it is easily worked around by not defining a cast into the macro and
jiggling the expressions slightly.
In addition - this highlights some cruft in openssl that needs sorting out.
The tmdiff.h header is exported as part of the openssl API despite the fact
that it is ugly as the driven sludge and not used anywhere in the library,
applications, or utilities. More weird still, almost identical code exists
in apps/speed.c though it looks to be slightly tweaked - so either tmdiff
should be updated and used by speed.c, or it should be dumped because it's
obviously not useful enough.
Rather than removing it for now, I've changed the API for tmdiff to at
least make sense. This involves taking the object type (MS_TM) from the
implementation and using it in the header rather than using "char *" in the
API and casting mercilessly in the code (ugh). If someone doesn't like
"MS_TM" and the "ms_time_***" naming, by all means change it. This should
be a harmless improvement, because the existing API is clearly not very
useful (eg. we reimplement it rather than using it in our own utils).
However, someone still needs to take a hack at consolidating speed.c and
tmdiff.[ch] somehow.
2003-10-29 12:40:13 +08:00
|
|
|
{
|
|
|
|
double dbl = HZ;
|
|
|
|
printf("HZ=%g", dbl);
|
|
|
|
}
|
2001-09-28 18:34:48 +08:00
|
|
|
# ifdef _SC_CLK_TCK
|
2001-10-25 22:27:17 +08:00
|
|
|
printf(" [sysconf value]");
|
2001-09-28 18:34:48 +08:00
|
|
|
# endif
|
2001-09-27 23:43:55 +08:00
|
|
|
#endif
|
2001-10-25 22:27:17 +08:00
|
|
|
printf("\n");
|
|
|
|
printf("timing function used: %s%s%s%s%s%s%s\n",
|
|
|
|
(ftime_used ? "ftime" : ""),
|
|
|
|
(ftime_used + times_used > 1 ? "," : ""),
|
|
|
|
(times_used ? "times" : ""),
|
|
|
|
(ftime_used + times_used + gettimeofday_used > 1 ? "," : ""),
|
|
|
|
(gettimeofday_used ? "gettimeofday" : ""),
|
|
|
|
(ftime_used + times_used + gettimeofday_used + getrusage_used > 1 ? "," : ""),
|
|
|
|
(getrusage_used ? "getrusage" : ""));
|
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
|
|
|
|
if (pr_header)
|
|
|
|
{
|
2001-10-25 22:27:17 +08:00
|
|
|
if(mr)
|
|
|
|
fprintf(stdout,"+H");
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fprintf(stdout,"The 'numbers' are in 1000s of bytes per second processed.\n");
|
|
|
|
fprintf(stdout,"type ");
|
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
for (j=0; j<SIZE_NUM; j++)
|
2001-10-25 22:27:17 +08:00
|
|
|
fprintf(stdout,mr ? ":%d" : "%7d bytes",lengths[j]);
|
1998-12-21 18:52:47 +08:00
|
|
|
fprintf(stdout,"\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
for (k=0; k<ALGOR_NUM; k++)
|
|
|
|
{
|
|
|
|
if (!doit[k]) continue;
|
2001-10-25 22:27:17 +08:00
|
|
|
if(mr)
|
|
|
|
fprintf(stdout,"+F:%d:%s",k,names[k]);
|
|
|
|
else
|
|
|
|
fprintf(stdout,"%-13s",names[k]);
|
1998-12-21 18:52:47 +08:00
|
|
|
for (j=0; j<SIZE_NUM; j++)
|
|
|
|
{
|
2001-10-25 22:27:17 +08:00
|
|
|
if (results[k][j] > 10000 && !mr)
|
1998-12-21 18:52:47 +08:00
|
|
|
fprintf(stdout," %11.2fk",results[k][j]/1e3);
|
|
|
|
else
|
2001-10-25 22:27:17 +08:00
|
|
|
fprintf(stdout,mr ? ":%.2f" : " %11.2f ",results[k][j]);
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
|
|
|
fprintf(stdout,"\n");
|
|
|
|
}
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RSA
|
1998-12-21 18:52:47 +08:00
|
|
|
j=1;
|
|
|
|
for (k=0; k<RSA_NUM; k++)
|
|
|
|
{
|
|
|
|
if (!rsa_doit[k]) continue;
|
2001-10-25 22:27:17 +08:00
|
|
|
if (j && !mr)
|
1998-12-21 18:56:39 +08:00
|
|
|
{
|
|
|
|
printf("%18ssign verify sign/s verify/s\n"," ");
|
|
|
|
j=0;
|
|
|
|
}
|
2001-10-25 22:27:17 +08:00
|
|
|
if(mr)
|
|
|
|
fprintf(stdout,"+F2:%u:%u:%f:%f\n",
|
|
|
|
k,rsa_bits[k],rsa_results[k][0],
|
|
|
|
rsa_results[k][1]);
|
|
|
|
else
|
|
|
|
fprintf(stdout,"rsa %4u bits %8.4fs %8.4fs %8.1f %8.1f\n",
|
|
|
|
rsa_bits[k],rsa_results[k][0],rsa_results[k][1],
|
|
|
|
1.0/rsa_results[k][0],1.0/rsa_results[k][1]);
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_DSA
|
1998-12-21 18:52:47 +08:00
|
|
|
j=1;
|
|
|
|
for (k=0; k<DSA_NUM; k++)
|
|
|
|
{
|
|
|
|
if (!dsa_doit[k]) continue;
|
2001-10-25 22:27:17 +08:00
|
|
|
if (j && !mr)
|
|
|
|
{
|
1998-12-21 18:56:39 +08:00
|
|
|
printf("%18ssign verify sign/s verify/s\n"," ");
|
|
|
|
j=0;
|
|
|
|
}
|
2001-10-25 22:27:17 +08:00
|
|
|
if(mr)
|
|
|
|
fprintf(stdout,"+F3:%u:%u:%f:%f\n",
|
|
|
|
k,dsa_bits[k],dsa_results[k][0],dsa_results[k][1]);
|
|
|
|
else
|
|
|
|
fprintf(stdout,"dsa %4u bits %8.4fs %8.4fs %8.1f %8.1f\n",
|
|
|
|
dsa_bits[k],dsa_results[k][0],dsa_results[k][1],
|
|
|
|
1.0/dsa_results[k][0],1.0/dsa_results[k][1]);
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
|
|
|
#endif
|
2002-08-09 16:43:04 +08:00
|
|
|
#ifndef OPENSSL_NO_ECDSA
|
|
|
|
j=1;
|
|
|
|
for (k=0; k<EC_NUM; k++)
|
|
|
|
{
|
|
|
|
if (!ecdsa_doit[k]) continue;
|
|
|
|
if (j && !mr)
|
|
|
|
{
|
|
|
|
printf("%30ssign verify sign/s verify/s\n"," ");
|
|
|
|
j=0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mr)
|
|
|
|
fprintf(stdout,"+F4:%u:%u:%f:%f\n",
|
|
|
|
k, test_curves_bits[k],
|
|
|
|
ecdsa_results[k][0],ecdsa_results[k][1]);
|
|
|
|
else
|
|
|
|
fprintf(stdout,
|
|
|
|
"%4u bit ecdsa (%s) %8.4fs %8.4fs %8.1f %8.1f\n",
|
|
|
|
test_curves_bits[k],
|
|
|
|
test_curves_names[k],
|
|
|
|
ecdsa_results[k][0],ecdsa_results[k][1],
|
|
|
|
1.0/ecdsa_results[k][0],1.0/ecdsa_results[k][1]);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef OPENSSL_NO_ECDH
|
|
|
|
j=1;
|
|
|
|
for (k=0; k<EC_NUM; k++)
|
|
|
|
{
|
|
|
|
if (!ecdh_doit[k]) continue;
|
|
|
|
if (j && !mr)
|
|
|
|
{
|
|
|
|
printf("%30sop op/s\n"," ");
|
|
|
|
j=0;
|
|
|
|
}
|
|
|
|
if (mr)
|
|
|
|
fprintf(stdout,"+F5:%u:%u:%f:%f\n",
|
|
|
|
k, test_curves_bits[k],
|
|
|
|
ecdh_results[k][0], 1.0/ecdh_results[k][0]);
|
|
|
|
|
|
|
|
else
|
|
|
|
fprintf(stdout,"%4u bit ecdh (%s) %8.4fs %8.1f\n",
|
|
|
|
test_curves_bits[k],
|
|
|
|
test_curves_names[k],
|
|
|
|
ecdh_results[k][0], 1.0/ecdh_results[k][0]);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1999-10-04 02:09:45 +08:00
|
|
|
mret=0;
|
2002-08-09 16:43:04 +08:00
|
|
|
|
1998-12-21 18:52:47 +08:00
|
|
|
end:
|
2000-10-27 05:07:28 +08:00
|
|
|
ERR_print_errors(bio_err);
|
2000-06-02 06:19:21 +08:00
|
|
|
if (buf != NULL) OPENSSL_free(buf);
|
|
|
|
if (buf2 != NULL) OPENSSL_free(buf2);
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_RSA
|
1998-12-21 18:52:47 +08:00
|
|
|
for (i=0; i<RSA_NUM; i++)
|
|
|
|
if (rsa_key[i] != NULL)
|
|
|
|
RSA_free(rsa_key[i]);
|
|
|
|
#endif
|
2001-02-20 00:06:34 +08:00
|
|
|
#ifndef OPENSSL_NO_DSA
|
1998-12-21 18:52:47 +08:00
|
|
|
for (i=0; i<DSA_NUM; i++)
|
|
|
|
if (dsa_key[i] != NULL)
|
|
|
|
DSA_free(dsa_key[i]);
|
|
|
|
#endif
|
2002-08-09 16:43:04 +08:00
|
|
|
|
|
|
|
#ifndef OPENSSL_NO_ECDSA
|
|
|
|
for (i=0; i<EC_NUM; i++)
|
|
|
|
if (ecdsa[i] != NULL)
|
|
|
|
EC_KEY_free(ecdsa[i]);
|
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_ECDH
|
|
|
|
for (i=0; i<EC_NUM; i++)
|
|
|
|
{
|
|
|
|
if (ecdh_a[i] != NULL)
|
|
|
|
EC_KEY_free(ecdh_a[i]);
|
|
|
|
if (ecdh_b[i] != NULL)
|
|
|
|
EC_KEY_free(ecdh_b[i]);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-06-24 00:37:32 +08:00
|
|
|
apps_shutdown();
|
2002-12-04 00:33:03 +08:00
|
|
|
OPENSSL_EXIT(mret);
|
1998-12-21 18:52:47 +08:00
|
|
|
}
|
|
|
|
|
2000-11-20 12:14:19 +08:00
|
|
|
static void print_message(const char *s, long num, int length)
|
1998-12-21 18:52:47 +08:00
|
|
|
{
|
|
|
|
#ifdef SIGALRM
|
2001-10-25 22:27:17 +08:00
|
|
|
BIO_printf(bio_err,mr ? "+DT:%s:%d:%d\n"
|
|
|
|
: "Doing %s for %ds on %d size blocks: ",s,SECONDS,length);
|
1999-06-11 00:29:32 +08:00
|
|
|
(void)BIO_flush(bio_err);
|
1998-12-21 18:52:47 +08:00
|
|
|
alarm(SECONDS);
|
|
|
|
#else
|
2001-10-25 22:27:17 +08:00
|
|
|
BIO_printf(bio_err,mr ? "+DN:%s:%ld:%d\n"
|
|
|
|
: "Doing %s %ld times on %d size blocks: ",s,num,length);
|
1999-06-11 00:29:32 +08:00
|
|
|
(void)BIO_flush(bio_err);
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
|
|
|
#ifdef LINT
|
|
|
|
num=num;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
1999-04-20 05:31:43 +08:00
|
|
|
static void pkey_print_message(char *str, char *str2, long num, int bits,
|
|
|
|
int tm)
|
1998-12-21 18:52:47 +08:00
|
|
|
{
|
|
|
|
#ifdef SIGALRM
|
2001-10-25 22:27:17 +08:00
|
|
|
BIO_printf(bio_err,mr ? "+DTP:%d:%s:%s:%d\n"
|
|
|
|
: "Doing %d bit %s %s's for %ds: ",bits,str,str2,tm);
|
1999-06-11 00:29:32 +08:00
|
|
|
(void)BIO_flush(bio_err);
|
1998-12-21 18:52:47 +08:00
|
|
|
alarm(RSA_SECONDS);
|
|
|
|
#else
|
2001-10-25 22:27:17 +08:00
|
|
|
BIO_printf(bio_err,mr ? "+DNP:%ld:%d:%s:%s\n"
|
|
|
|
: "Doing %ld %d bit %s %s's: ",num,bits,str,str2);
|
1999-06-11 00:29:32 +08:00
|
|
|
(void)BIO_flush(bio_err);
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
|
|
|
#ifdef LINT
|
|
|
|
num=num;
|
|
|
|
#endif
|
|
|
|
}
|
1998-12-21 18:56:39 +08:00
|
|
|
|
2001-10-25 22:27:17 +08:00
|
|
|
static void print_result(int alg,int run_no,int count,double time_used)
|
|
|
|
{
|
2003-04-04 07:39:48 +08:00
|
|
|
BIO_printf(bio_err,mr ? "+R:%d:%s:%f\n"
|
|
|
|
: "%d %s's in %.2fs\n",count,names[alg],time_used);
|
2001-10-25 22:27:17 +08:00
|
|
|
results[alg][run_no]=((double)count)/time_used*lengths[run_no];
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *sstrsep(char **string, const char *delim)
|
|
|
|
{
|
|
|
|
char isdelim[256];
|
|
|
|
char *token = *string;
|
|
|
|
|
|
|
|
if (**string == 0)
|
|
|
|
return NULL;
|
|
|
|
|
2002-11-13 23:43:43 +08:00
|
|
|
memset(isdelim, 0, sizeof isdelim);
|
2001-10-25 22:27:17 +08:00
|
|
|
isdelim[0] = 1;
|
|
|
|
|
|
|
|
while (*delim)
|
|
|
|
{
|
|
|
|
isdelim[(unsigned char)(*delim)] = 1;
|
|
|
|
delim++;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (!isdelim[(unsigned char)(**string)])
|
|
|
|
{
|
|
|
|
(*string)++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (**string)
|
|
|
|
{
|
|
|
|
**string = 0;
|
|
|
|
(*string)++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return token;
|
|
|
|
}
|
|
|
|
|
2001-10-26 00:08:17 +08:00
|
|
|
#ifdef HAVE_FORK
|
2001-10-25 22:27:17 +08:00
|
|
|
static int do_multi(int multi)
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
int fd[2];
|
|
|
|
int *fds;
|
|
|
|
static char sep[]=":";
|
|
|
|
|
|
|
|
fds=malloc(multi*sizeof *fds);
|
|
|
|
for(n=0 ; n < multi ; ++n)
|
|
|
|
{
|
|
|
|
pipe(fd);
|
|
|
|
if(fork())
|
|
|
|
{
|
|
|
|
close(fd[1]);
|
|
|
|
fds[n]=fd[0];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
close(fd[0]);
|
|
|
|
close(1);
|
|
|
|
dup(fd[1]);
|
|
|
|
close(fd[1]);
|
|
|
|
mr=1;
|
|
|
|
usertime=0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
printf("Forked child %d\n",n);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* for now, assume the pipe is long enough to take all the output */
|
|
|
|
for(n=0 ; n < multi ; ++n)
|
|
|
|
{
|
|
|
|
FILE *f;
|
|
|
|
char buf[1024];
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
f=fdopen(fds[n],"r");
|
|
|
|
while(fgets(buf,sizeof buf,f))
|
|
|
|
{
|
|
|
|
p=strchr(buf,'\n');
|
|
|
|
if(p)
|
|
|
|
*p='\0';
|
|
|
|
if(buf[0] != '+')
|
|
|
|
{
|
|
|
|
fprintf(stderr,"Don't understand line '%s' from child %d\n",
|
|
|
|
buf,n);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
printf("Got: %s from %d\n",buf,n);
|
|
|
|
if(!strncmp(buf,"+F:",3))
|
|
|
|
{
|
|
|
|
int alg;
|
|
|
|
int j;
|
|
|
|
|
|
|
|
p=buf+3;
|
|
|
|
alg=atoi(sstrsep(&p,sep));
|
|
|
|
sstrsep(&p,sep);
|
|
|
|
for(j=0 ; j < SIZE_NUM ; ++j)
|
|
|
|
results[alg][j]+=atof(sstrsep(&p,sep));
|
|
|
|
}
|
|
|
|
else if(!strncmp(buf,"+F2:",4))
|
|
|
|
{
|
|
|
|
int k;
|
|
|
|
double d;
|
|
|
|
|
|
|
|
p=buf+4;
|
|
|
|
k=atoi(sstrsep(&p,sep));
|
|
|
|
sstrsep(&p,sep);
|
|
|
|
|
|
|
|
d=atof(sstrsep(&p,sep));
|
|
|
|
if(n)
|
|
|
|
rsa_results[k][0]=1/(1/rsa_results[k][0]+1/d);
|
|
|
|
else
|
|
|
|
rsa_results[k][0]=d;
|
|
|
|
|
|
|
|
d=atof(sstrsep(&p,sep));
|
|
|
|
if(n)
|
|
|
|
rsa_results[k][1]=1/(1/rsa_results[k][1]+1/d);
|
|
|
|
else
|
|
|
|
rsa_results[k][1]=d;
|
|
|
|
}
|
|
|
|
else if(!strncmp(buf,"+F2:",4))
|
|
|
|
{
|
|
|
|
int k;
|
|
|
|
double d;
|
|
|
|
|
|
|
|
p=buf+4;
|
|
|
|
k=atoi(sstrsep(&p,sep));
|
|
|
|
sstrsep(&p,sep);
|
|
|
|
|
|
|
|
d=atof(sstrsep(&p,sep));
|
|
|
|
if(n)
|
|
|
|
rsa_results[k][0]=1/(1/rsa_results[k][0]+1/d);
|
|
|
|
else
|
|
|
|
rsa_results[k][0]=d;
|
|
|
|
|
|
|
|
d=atof(sstrsep(&p,sep));
|
|
|
|
if(n)
|
|
|
|
rsa_results[k][1]=1/(1/rsa_results[k][1]+1/d);
|
|
|
|
else
|
|
|
|
rsa_results[k][1]=d;
|
|
|
|
}
|
|
|
|
else if(!strncmp(buf,"+F3:",4))
|
|
|
|
{
|
|
|
|
int k;
|
|
|
|
double d;
|
|
|
|
|
|
|
|
p=buf+4;
|
|
|
|
k=atoi(sstrsep(&p,sep));
|
|
|
|
sstrsep(&p,sep);
|
|
|
|
|
|
|
|
d=atof(sstrsep(&p,sep));
|
|
|
|
if(n)
|
|
|
|
dsa_results[k][0]=1/(1/dsa_results[k][0]+1/d);
|
|
|
|
else
|
|
|
|
dsa_results[k][0]=d;
|
|
|
|
|
|
|
|
d=atof(sstrsep(&p,sep));
|
|
|
|
if(n)
|
|
|
|
dsa_results[k][1]=1/(1/dsa_results[k][1]+1/d);
|
|
|
|
else
|
|
|
|
dsa_results[k][1]=d;
|
|
|
|
}
|
2002-08-09 16:43:04 +08:00
|
|
|
#ifndef OPENSSL_NO_ECDSA
|
|
|
|
else if(!strncmp(buf,"+F4:",4))
|
|
|
|
{
|
|
|
|
int k;
|
|
|
|
double d;
|
|
|
|
|
|
|
|
p=buf+4;
|
|
|
|
k=atoi(sstrsep(&p,sep));
|
|
|
|
sstrsep(&p,sep);
|
|
|
|
|
|
|
|
d=atof(sstrsep(&p,sep));
|
|
|
|
if(n)
|
|
|
|
ecdsa_results[k][0]=1/(1/ecdsa_results[k][0]+1/d);
|
|
|
|
else
|
|
|
|
ecdsa_results[k][0]=d;
|
|
|
|
|
|
|
|
d=atof(sstrsep(&p,sep));
|
|
|
|
if(n)
|
|
|
|
ecdsa_results[k][1]=1/(1/ecdsa_results[k][1]+1/d);
|
|
|
|
else
|
|
|
|
ecdsa_results[k][1]=d;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef OPENSSL_NO_ECDH
|
|
|
|
else if(!strncmp(buf,"+F5:",4))
|
|
|
|
{
|
|
|
|
int k;
|
|
|
|
double d;
|
|
|
|
|
|
|
|
p=buf+4;
|
|
|
|
k=atoi(sstrsep(&p,sep));
|
|
|
|
sstrsep(&p,sep);
|
|
|
|
|
|
|
|
d=atof(sstrsep(&p,sep));
|
|
|
|
if(n)
|
|
|
|
ecdh_results[k][0]=1/(1/ecdh_results[k][0]+1/d);
|
|
|
|
else
|
|
|
|
ecdh_results[k][0]=d;
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-10-25 22:27:17 +08:00
|
|
|
else if(!strncmp(buf,"+H:",3))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
else
|
|
|
|
fprintf(stderr,"Unknown type '%s' from child %d\n",buf,n);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
2001-10-26 00:08:17 +08:00
|
|
|
#endif
|
2003-02-14 09:02:58 +08:00
|
|
|
#endif
|