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