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