Give the user the option to measure real time instead of user CPU time.
[openssl.git] / apps / speed.c
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
59 /* most of this code has been pilfered from my libdes speed.c program */
60
61 #undef SECONDS
62 #define SECONDS         3       
63 #define RSA_SECONDS     10
64 #define DSA_SECONDS     10
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>
76 #include <math.h>
77 #include "apps.h"
78 #ifdef NO_STDIO
79 #define APPS_WIN16
80 #endif
81 #include <openssl/crypto.h>
82 #include <openssl/rand.h>
83 #include <openssl/err.h>
84
85 #if !defined(MSDOS) && (!defined(VMS) || defined(__DECC))
86 #define TIMES
87 #endif
88
89 #ifndef _IRIX
90 #include <time.h>
91 #endif
92 #ifdef TIMES
93 #include <sys/types.h>
94 #include <sys/times.h>
95 #endif
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
103 #endif
104
105 #include <sys/timeb.h>
106
107 #if defined(sun) || defined(__ultrix)
108 #define _POSIX_SOURCE
109 #include <limits.h>
110 #include <sys/param.h>
111 #endif
112
113 #ifndef NO_DES
114 #include <openssl/des.h>
115 #endif
116 #ifndef NO_MD2
117 #include <openssl/md2.h>
118 #endif
119 #ifndef NO_MDC2
120 #include <openssl/mdc2.h>
121 #endif
122 #ifndef NO_MD5
123 #include <openssl/md5.h>
124 #endif
125 #ifndef NO_HMAC
126 #include <openssl/hmac.h>
127 #endif
128 #include <openssl/evp.h>
129 #ifndef NO_SHA
130 #include <openssl/sha.h>
131 #endif
132 #ifndef NO_RIPEMD
133 #include <openssl/ripemd.h>
134 #endif
135 #ifndef NO_RC4
136 #include <openssl/rc4.h>
137 #endif
138 #ifndef NO_RC5
139 #include <openssl/rc5.h>
140 #endif
141 #ifndef NO_RC2
142 #include <openssl/rc2.h>
143 #endif
144 #ifndef NO_IDEA
145 #include <openssl/idea.h>
146 #endif
147 #ifndef NO_BF
148 #include <openssl/blowfish.h>
149 #endif
150 #ifndef NO_CAST
151 #include <openssl/cast.h>
152 #endif
153 #ifndef NO_RSA
154 #include <openssl/rsa.h>
155 #include "./testrsa.h"
156 #endif
157 #include <openssl/x509.h>
158 #ifndef NO_DSA
159 #include "./testdsa.h"
160 #endif
161
162 /* The following if from times(3) man page.  It may need to be changed */
163 #ifndef HZ
164 # ifndef CLK_TCK
165 #  ifndef _BSD_CLK_TCK_ /* FreeBSD hack */
166 #   define HZ   100.0
167 #  else /* _BSD_CLK_TCK_ */
168 #   define HZ ((double)_BSD_CLK_TCK_)
169 #  endif
170 # else /* CLK_TCK */
171 #  define HZ ((double)CLK_TCK)
172 # endif
173 #endif
174
175 #undef BUFSIZE
176 #define BUFSIZE ((long)1024*8+1)
177 int run=0;
178
179 static double Time_F(int s, int usertime);
180 static void print_message(char *s,long num,int length);
181 static void pkey_print_message(char *str,char *str2,long num,int bits,int sec);
182 #ifdef SIGALRM
183 #if defined(__STDC__) || defined(sgi) || defined(_AIX)
184 #define SIGRETTYPE void
185 #else
186 #define SIGRETTYPE int
187 #endif 
188
189 static SIGRETTYPE sig_done(int sig);
190 static SIGRETTYPE sig_done(int sig)
191         {
192         signal(SIGALRM,sig_done);
193         run=0;
194 #ifdef LINT
195         sig=sig;
196 #endif
197         }
198 #endif
199
200 #define START   0
201 #define STOP    1
202
203 static double Time_F(int s, int usertime)
204         {
205         double ret;
206 #ifdef TIMES
207         if (usertime)
208                 {
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                 }
223         else
224 #endif /* times() */
225                 {
226                 static struct timeb tstart,tend;
227                 long i;
228
229                 if (s == START)
230                         {
231                         ftime(&tstart);
232                         return(0);
233                         }
234                 else
235                         {
236                         ftime(&tend);
237                         i=(long)tend.millitm-(long)tstart.millitm;
238                         ret=((double)(tend.time-tstart.time))+((double)i)/1000.0;
239                         return((ret < 0.001)?0.001:ret);
240                         }
241                 }
242         }
243
244 int MAIN(int, char **);
245
246 int MAIN(int argc, char **argv)
247         {
248         unsigned char *buf=NULL,*buf2=NULL;
249         int mret=1;
250 #define ALGOR_NUM       14
251 #define SIZE_NUM        5
252 #define RSA_NUM         4
253 #define DSA_NUM         3
254         long count,rsa_count;
255         int i,j,k;
256         unsigned rsa_num,rsa_num2;
257 #ifndef NO_MD2
258         unsigned char md2[MD2_DIGEST_LENGTH];
259 #endif
260 #ifndef NO_MDC2
261         unsigned char mdc2[MDC2_DIGEST_LENGTH];
262 #endif
263 #ifndef NO_MD5
264         unsigned char md5[MD5_DIGEST_LENGTH];
265         unsigned char hmac[MD5_DIGEST_LENGTH];
266 #endif
267 #ifndef NO_SHA
268         unsigned char sha[SHA_DIGEST_LENGTH];
269 #endif
270 #ifndef NO_RIPEMD
271         unsigned char rmd160[RIPEMD160_DIGEST_LENGTH];
272 #endif
273 #ifndef NO_RC4
274         RC4_KEY rc4_ks;
275 #endif
276 #ifndef NO_RC5
277         RC5_32_KEY rc5_ks;
278 #endif
279 #ifndef NO_RC2
280         RC2_KEY rc2_ks;
281 #endif
282 #ifndef NO_IDEA
283         IDEA_KEY_SCHEDULE idea_ks;
284 #endif
285 #ifndef NO_BF
286         BF_KEY bf_ks;
287 #endif
288 #ifndef NO_CAST
289         CAST_KEY cast_ks;
290 #endif
291         static unsigned char key16[16]=
292                 {0x12,0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,
293                  0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12};
294         unsigned char iv[8];
295 #ifndef NO_DES
296         des_cblock *buf_as_des_cblock = NULL;
297         static des_cblock key ={0x12,0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0};
298         static des_cblock key2={0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12};
299         static des_cblock key3={0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12,0x34};
300         des_key_schedule sch,sch2,sch3;
301 #endif
302 #define D_MD2           0
303 #define D_MDC2          1
304 #define D_MD5           2
305 #define D_HMAC          3
306 #define D_SHA1          4
307 #define D_RMD160        5
308 #define D_RC4           6
309 #define D_CBC_DES       7
310 #define D_EDE3_DES      8
311 #define D_CBC_IDEA      9
312 #define D_CBC_RC2       10
313 #define D_CBC_RC5       11
314 #define D_CBC_BF        12
315 #define D_CBC_CAST      13
316         double d,results[ALGOR_NUM][SIZE_NUM];
317         static int lengths[SIZE_NUM]={8,64,256,1024,8*1024};
318         long c[ALGOR_NUM][SIZE_NUM];
319         static char *names[ALGOR_NUM]={
320                 "md2","mdc2","md5","hmac(md5)","sha1","rmd160","rc4",
321                 "des cbc","des ede3","idea cbc",
322                 "rc2 cbc","rc5-32/12 cbc","blowfish cbc","cast cbc"};
323 #define R_DSA_512       0
324 #define R_DSA_1024      1
325 #define R_DSA_2048      2
326 #define R_RSA_512       0
327 #define R_RSA_1024      1
328 #define R_RSA_2048      2
329 #define R_RSA_4096      3
330 #ifndef NO_RSA
331         RSA *rsa_key[RSA_NUM];
332         long rsa_c[RSA_NUM][2];
333         double rsa_results[RSA_NUM][2];
334         static unsigned int rsa_bits[RSA_NUM]={512,1024,2048,4096};
335         static unsigned char *rsa_data[RSA_NUM]=
336                 {test512,test1024,test2048,test4096};
337         static int rsa_data_length[RSA_NUM]={
338                 sizeof(test512),sizeof(test1024),
339                 sizeof(test2048),sizeof(test4096)};
340 #endif
341 #ifndef NO_DSA
342         DSA *dsa_key[DSA_NUM];
343         long dsa_c[DSA_NUM][2];
344         double dsa_results[DSA_NUM][2];
345         static unsigned int dsa_bits[DSA_NUM]={512,1024,2048};
346 #endif
347         int rsa_doit[RSA_NUM];
348         int dsa_doit[DSA_NUM];
349         int doit[ALGOR_NUM];
350         int pr_header=0;
351         int usertime=1;
352
353 #ifndef TIMES
354         usertime=-1;
355 #endif
356
357         apps_startup();
358         memset(results, 0, sizeof(results));
359 #ifndef NO_DSA
360         memset(dsa_key,0,sizeof(dsa_key));
361 #endif
362
363         if (bio_err == NULL)
364                 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
365                         BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
366
367 #ifndef NO_RSA
368         memset(rsa_key,0,sizeof(rsa_key));
369         for (i=0; i<RSA_NUM; i++)
370                 rsa_key[i]=NULL;
371 #endif
372
373         if ((buf=(unsigned char *)OPENSSL_malloc((int)BUFSIZE)) == NULL)
374                 {
375                 BIO_printf(bio_err,"out of memory\n");
376                 goto end;
377                 }
378 #ifndef NO_DES
379         buf_as_des_cblock = (des_cblock *)buf;
380 #endif
381         if ((buf2=(unsigned char *)OPENSSL_malloc((int)BUFSIZE)) == NULL)
382                 {
383                 BIO_printf(bio_err,"out of memory\n");
384                 goto end;
385                 }
386
387         memset(c,0,sizeof(c));
388         memset(iv,0,sizeof(iv));
389
390         for (i=0; i<ALGOR_NUM; i++)
391                 doit[i]=0;
392         for (i=0; i<RSA_NUM; i++)
393                 rsa_doit[i]=0;
394         for (i=0; i<DSA_NUM; i++)
395                 dsa_doit[i]=0;
396         
397         j=0;
398         argc--;
399         argv++;
400         while (argc)
401                 {
402                 if      ((argc > 0) && (strcmp(*argv,"-elapsed") == 0))
403                         usertime = 0;
404 #ifndef NO_MD2
405                 if      (strcmp(*argv,"md2") == 0) doit[D_MD2]=1;
406                 else
407 #endif
408 #ifndef NO_MDC2
409                         if (strcmp(*argv,"mdc2") == 0) doit[D_MDC2]=1;
410                 else
411 #endif
412 #ifndef NO_MD5
413                         if (strcmp(*argv,"md5") == 0) doit[D_MD5]=1;
414                 else
415 #endif
416 #ifndef NO_MD5
417                         if (strcmp(*argv,"hmac") == 0) doit[D_HMAC]=1;
418                 else
419 #endif
420 #ifndef NO_SHA
421                         if (strcmp(*argv,"sha1") == 0) doit[D_SHA1]=1;
422                 else
423                         if (strcmp(*argv,"sha") == 0) doit[D_SHA1]=1;
424                 else
425 #endif
426 #ifndef NO_RIPEMD
427                         if (strcmp(*argv,"ripemd") == 0) doit[D_RMD160]=1;
428                 else
429                         if (strcmp(*argv,"rmd160") == 0) doit[D_RMD160]=1;
430                 else
431                         if (strcmp(*argv,"ripemd160") == 0) doit[D_RMD160]=1;
432                 else
433 #endif
434 #ifndef NO_RC4
435                         if (strcmp(*argv,"rc4") == 0) doit[D_RC4]=1;
436                 else 
437 #endif
438 #ifndef NO_DES
439                         if (strcmp(*argv,"des-cbc") == 0) doit[D_CBC_DES]=1;
440                 else    if (strcmp(*argv,"des-ede3") == 0) doit[D_EDE3_DES]=1;
441                 else
442 #endif
443 #ifndef NO_RSA
444 #ifdef RSAref
445                         if (strcmp(*argv,"rsaref") == 0) 
446                         {
447                         RSA_set_default_method(RSA_PKCS1_RSAref());
448                         j--;
449                         }
450                 else
451 #endif
452 #ifndef RSA_NULL
453                         if (strcmp(*argv,"openssl") == 0) 
454                         {
455                         RSA_set_default_method(RSA_PKCS1_SSLeay());
456                         j--;
457                         }
458                 else
459 #endif
460 #endif /* !NO_RSA */
461                      if (strcmp(*argv,"dsa512") == 0) dsa_doit[R_DSA_512]=2;
462                 else if (strcmp(*argv,"dsa1024") == 0) dsa_doit[R_DSA_1024]=2;
463                 else if (strcmp(*argv,"dsa2048") == 0) dsa_doit[R_DSA_2048]=2;
464                 else if (strcmp(*argv,"rsa512") == 0) rsa_doit[R_RSA_512]=2;
465                 else if (strcmp(*argv,"rsa1024") == 0) rsa_doit[R_RSA_1024]=2;
466                 else if (strcmp(*argv,"rsa2048") == 0) rsa_doit[R_RSA_2048]=2;
467                 else if (strcmp(*argv,"rsa4096") == 0) rsa_doit[R_RSA_4096]=2;
468                 else
469 #ifndef NO_RC2
470                      if (strcmp(*argv,"rc2-cbc") == 0) doit[D_CBC_RC2]=1;
471                 else if (strcmp(*argv,"rc2") == 0) doit[D_CBC_RC2]=1;
472                 else
473 #endif
474 #ifndef NO_RC5
475                      if (strcmp(*argv,"rc5-cbc") == 0) doit[D_CBC_RC5]=1;
476                 else if (strcmp(*argv,"rc5") == 0) doit[D_CBC_RC5]=1;
477                 else
478 #endif
479 #ifndef NO_IDEA
480                      if (strcmp(*argv,"idea-cbc") == 0) doit[D_CBC_IDEA]=1;
481                 else if (strcmp(*argv,"idea") == 0) doit[D_CBC_IDEA]=1;
482                 else
483 #endif
484 #ifndef NO_BF
485                      if (strcmp(*argv,"bf-cbc") == 0) doit[D_CBC_BF]=1;
486                 else if (strcmp(*argv,"blowfish") == 0) doit[D_CBC_BF]=1;
487                 else if (strcmp(*argv,"bf") == 0) doit[D_CBC_BF]=1;
488                 else
489 #endif
490 #ifndef NO_CAST
491                      if (strcmp(*argv,"cast-cbc") == 0) doit[D_CBC_CAST]=1;
492                 else if (strcmp(*argv,"cast") == 0) doit[D_CBC_CAST]=1;
493                 else if (strcmp(*argv,"cast5") == 0) doit[D_CBC_CAST]=1;
494                 else
495 #endif
496 #ifndef NO_DES
497                         if (strcmp(*argv,"des") == 0)
498                         {
499                         doit[D_CBC_DES]=1;
500                         doit[D_EDE3_DES]=1;
501                         }
502                 else
503 #endif
504 #ifndef NO_RSA
505                         if (strcmp(*argv,"rsa") == 0)
506                         {
507                         rsa_doit[R_RSA_512]=1;
508                         rsa_doit[R_RSA_1024]=1;
509                         rsa_doit[R_RSA_2048]=1;
510                         rsa_doit[R_RSA_4096]=1;
511                         }
512                 else
513 #endif
514 #ifndef NO_DSA
515                         if (strcmp(*argv,"dsa") == 0)
516                         {
517                         dsa_doit[R_DSA_512]=1;
518                         dsa_doit[R_DSA_1024]=1;
519                         }
520                 else
521 #endif
522                         {
523                         BIO_printf(bio_err,"bad option or value, pick one of\n");
524                         BIO_printf(bio_err,"md2      mdc2       md5      hmac      sha1    rmd160\n");
525 #ifndef NO_IDEA
526                         BIO_printf(bio_err,"idea-cbc ");
527 #endif
528 #ifndef NO_RC2
529                         BIO_printf(bio_err,"rc2-cbc  ");
530 #endif
531 #ifndef NO_RC5
532                         BIO_printf(bio_err,"rc5-cbc  ");
533 #endif
534 #ifndef NO_BF
535                         BIO_printf(bio_err,"bf-cbc");
536 #endif
537 #if !defined(NO_IDEA) && !defined(NO_RC2) && !defined(NO_BF) && !defined(NO_RC5)
538                         BIO_printf(bio_err,"\n");
539 #endif
540                         BIO_printf(bio_err,"des-cbc  des-ede3 ");
541 #ifndef NO_RC4
542                         BIO_printf(bio_err,"rc4");
543 #endif
544 #ifndef NO_RSA
545                         BIO_printf(bio_err,"\nrsa512   rsa1024  rsa2048  rsa4096\n");
546 #endif
547 #ifndef NO_DSA
548                         BIO_printf(bio_err,"\ndsa512   dsa1024  dsa2048\n");
549 #endif
550                         BIO_printf(bio_err,"idea     rc2      des      rsa    blowfish\n");
551                         BIO_printf(bio_err,"\n");
552                         BIO_printf(bio_err,"Available options:\n");
553                         BIO_printf(bio_err,"\n");
554                         BIO_printf(bio_err,"-elapsed        measure time in real time instead of CPU user time.\n");
555                         goto end;
556                         }
557                 argc--;
558                 argv++;
559                 j++;
560                 }
561
562         if (j == 0)
563                 {
564                 for (i=0; i<ALGOR_NUM; i++)
565                         doit[i]=1;
566                 for (i=0; i<RSA_NUM; i++)
567                         rsa_doit[i]=1;
568                 for (i=0; i<DSA_NUM; i++)
569                         dsa_doit[i]=1;
570                 }
571         for (i=0; i<ALGOR_NUM; i++)
572                 if (doit[i]) pr_header++;
573
574         if (usertime == 0)
575                 BIO_printf(bio_err,"You have chosen to measure elapsed time instead of user CPU time.\n");
576         if (usertime <= 0)
577                 {
578                 BIO_printf(bio_err,"To get the most accurate results, try to run this\n");
579                 BIO_printf(bio_err,"program when this computer is idle.\n");
580                 }
581
582 #ifndef NO_RSA
583         for (i=0; i<RSA_NUM; i++)
584                 {
585                 unsigned char *p;
586
587                 p=rsa_data[i];
588                 rsa_key[i]=d2i_RSAPrivateKey(NULL,&p,rsa_data_length[i]);
589                 if (rsa_key[i] == NULL)
590                         {
591                         BIO_printf(bio_err,"internal error loading RSA key number %d\n",i);
592                         goto end;
593                         }
594 #if 0
595                 else
596                         {
597                         BIO_printf(bio_err,"Loaded RSA key, %d bit modulus and e= 0x",BN_num_bits(rsa_key[i]->n));
598                         BN_print(bio_err,rsa_key[i]->e);
599                         BIO_printf(bio_err,"\n");
600                         }
601 #endif
602                 }
603 #endif
604
605 #ifndef NO_DSA
606         dsa_key[0]=get_dsa512();
607         dsa_key[1]=get_dsa1024();
608         dsa_key[2]=get_dsa2048();
609 #endif
610
611 #ifndef NO_DES
612         des_set_key_unchecked(&key,sch);
613         des_set_key_unchecked(&key2,sch2);
614         des_set_key_unchecked(&key3,sch3);
615 #endif
616 #ifndef NO_IDEA
617         idea_set_encrypt_key(key16,&idea_ks);
618 #endif
619 #ifndef NO_RC4
620         RC4_set_key(&rc4_ks,16,key16);
621 #endif
622 #ifndef NO_RC2
623         RC2_set_key(&rc2_ks,16,key16,128);
624 #endif
625 #ifndef NO_RC5
626         RC5_32_set_key(&rc5_ks,16,key16,12);
627 #endif
628 #ifndef NO_BF
629         BF_set_key(&bf_ks,16,key16);
630 #endif
631 #ifndef NO_CAST
632         CAST_set_key(&cast_ks,16,key16);
633 #endif
634 #ifndef NO_RSA
635         memset(rsa_c,0,sizeof(rsa_c));
636 #endif
637 #ifndef SIGALRM
638 #ifndef NO_DES
639         BIO_printf(bio_err,"First we calculate the approximate speed ...\n");
640         count=10;
641         do      {
642                 long i;
643                 count*=2;
644                 Time_F(START,usertime);
645                 for (i=count; i; i--)
646                         des_ecb_encrypt(buf_as_des_cblock,buf_as_des_cblock,
647                                 &(sch[0]),DES_ENCRYPT);
648                 d=Time_F(STOP,usertime);
649                 } while (d <3);
650         c[D_MD2][0]=count/10;
651         c[D_MDC2][0]=count/10;
652         c[D_MD5][0]=count;
653         c[D_HMAC][0]=count;
654         c[D_SHA1][0]=count;
655         c[D_RMD160][0]=count;
656         c[D_RC4][0]=count*5;
657         c[D_CBC_DES][0]=count;
658         c[D_EDE3_DES][0]=count/3;
659         c[D_CBC_IDEA][0]=count;
660         c[D_CBC_RC2][0]=count;
661         c[D_CBC_RC5][0]=count;
662         c[D_CBC_BF][0]=count;
663         c[D_CBC_CAST][0]=count;
664
665         for (i=1; i<SIZE_NUM; i++)
666                 {
667                 c[D_MD2][i]=c[D_MD2][0]*4*lengths[0]/lengths[i];
668                 c[D_MDC2][i]=c[D_MDC2][0]*4*lengths[0]/lengths[i];
669                 c[D_MD5][i]=c[D_MD5][0]*4*lengths[0]/lengths[i];
670                 c[D_HMAC][i]=c[D_HMAC][0]*4*lengths[0]/lengths[i];
671                 c[D_SHA1][i]=c[D_SHA1][0]*4*lengths[0]/lengths[i];
672                 c[D_RMD160][i]=c[D_RMD160][0]*4*lengths[0]/lengths[i];
673                 }
674         for (i=1; i<SIZE_NUM; i++)
675                 {
676                 long l0,l1;
677
678                 l0=(long)lengths[i-1];
679                 l1=(long)lengths[i];
680                 c[D_RC4][i]=c[D_RC4][i-1]*l0/l1;
681                 c[D_CBC_DES][i]=c[D_CBC_DES][i-1]*l0/l1;
682                 c[D_EDE3_DES][i]=c[D_EDE3_DES][i-1]*l0/l1;
683                 c[D_CBC_IDEA][i]=c[D_CBC_IDEA][i-1]*l0/l1;
684                 c[D_CBC_RC2][i]=c[D_CBC_RC2][i-1]*l0/l1;
685                 c[D_CBC_RC5][i]=c[D_CBC_RC5][i-1]*l0/l1;
686                 c[D_CBC_BF][i]=c[D_CBC_BF][i-1]*l0/l1;
687                 c[D_CBC_CAST][i]=c[D_CBC_CAST][i-1]*l0/l1;
688                 }
689 #ifndef NO_RSA
690         rsa_c[R_RSA_512][0]=count/2000;
691         rsa_c[R_RSA_512][1]=count/400;
692         for (i=1; i<RSA_NUM; i++)
693                 {
694                 rsa_c[i][0]=rsa_c[i-1][0]/8;
695                 rsa_c[i][1]=rsa_c[i-1][1]/4;
696                 if ((rsa_doit[i] <= 1) && (rsa_c[i][0] == 0))
697                         rsa_doit[i]=0;
698                 else
699                         {
700                         if (rsa_c[i][0] == 0)
701                                 {
702                                 rsa_c[i][0]=1;
703                                 rsa_c[i][1]=20;
704                                 }
705                         }                               
706                 }
707 #endif
708
709         dsa_c[R_DSA_512][0]=count/1000;
710         dsa_c[R_DSA_512][1]=count/1000/2;
711         for (i=1; i<DSA_NUM; i++)
712                 {
713                 dsa_c[i][0]=dsa_c[i-1][0]/4;
714                 dsa_c[i][1]=dsa_c[i-1][1]/4;
715                 if ((dsa_doit[i] <= 1) && (dsa_c[i][0] == 0))
716                         dsa_doit[i]=0;
717                 else
718                         {
719                         if (dsa_c[i] == 0)
720                                 {
721                                 dsa_c[i][0]=1;
722                                 dsa_c[i][1]=1;
723                                 }
724                         }                               
725                 }
726
727 #define COND(d) (count < (d))
728 #define COUNT(d) (d)
729 #else
730 /* not worth fixing */
731 # error "You cannot disable DES on systems without SIGALRM."
732 #endif /* NO_DES */
733 #else
734 #define COND(c) (run)
735 #define COUNT(d) (count)
736         signal(SIGALRM,sig_done);
737 #endif /* SIGALRM */
738
739 #ifndef NO_MD2
740         if (doit[D_MD2])
741                 {
742                 for (j=0; j<SIZE_NUM; j++)
743                         {
744                         print_message(names[D_MD2],c[D_MD2][j],lengths[j]);
745                         Time_F(START,usertime);
746                         for (count=0,run=1; COND(c[D_MD2][j]); count++)
747                                 MD2(buf,(unsigned long)lengths[j],&(md2[0]));
748                         d=Time_F(STOP,usertime);
749                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
750                                 count,names[D_MD2],d);
751                         results[D_MD2][j]=((double)count)/d*lengths[j];
752                         }
753                 }
754 #endif
755 #ifndef NO_MDC2
756         if (doit[D_MDC2])
757                 {
758                 for (j=0; j<SIZE_NUM; j++)
759                         {
760                         print_message(names[D_MDC2],c[D_MDC2][j],lengths[j]);
761                         Time_F(START,usertime);
762                         for (count=0,run=1; COND(c[D_MDC2][j]); count++)
763                                 MDC2(buf,(unsigned long)lengths[j],&(mdc2[0]));
764                         d=Time_F(STOP,usertime);
765                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
766                                 count,names[D_MDC2],d);
767                         results[D_MDC2][j]=((double)count)/d*lengths[j];
768                         }
769                 }
770 #endif
771
772 #ifndef NO_MD5
773         if (doit[D_MD5])
774                 {
775                 for (j=0; j<SIZE_NUM; j++)
776                         {
777                         print_message(names[D_MD5],c[D_MD5][j],lengths[j]);
778                         Time_F(START,usertime);
779                         for (count=0,run=1; COND(c[D_MD5][j]); count++)
780                                 MD5(&(buf[0]),(unsigned long)lengths[j],&(md5[0]));
781                         d=Time_F(STOP,usertime);
782                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
783                                 count,names[D_MD5],d);
784                         results[D_MD5][j]=((double)count)/d*lengths[j];
785                         }
786                 }
787 #endif
788
789 #if !defined(NO_MD5) && !defined(NO_HMAC)
790         if (doit[D_HMAC])
791                 {
792                 HMAC_CTX hctx;
793                 HMAC_Init(&hctx,(unsigned char *)"This is a key...",
794                         16,EVP_md5());
795
796                 for (j=0; j<SIZE_NUM; j++)
797                         {
798                         print_message(names[D_HMAC],c[D_HMAC][j],lengths[j]);
799                         Time_F(START,usertime);
800                         for (count=0,run=1; COND(c[D_HMAC][j]); count++)
801                                 {
802                                 HMAC_Init(&hctx,NULL,0,NULL);
803                                 HMAC_Update(&hctx,buf,lengths[j]);
804                                 HMAC_Final(&hctx,&(hmac[0]),NULL);
805                                 }
806                         d=Time_F(STOP,usertime);
807                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
808                                 count,names[D_HMAC],d);
809                         results[D_HMAC][j]=((double)count)/d*lengths[j];
810                         }
811                 }
812 #endif
813 #ifndef NO_SHA
814         if (doit[D_SHA1])
815                 {
816                 for (j=0; j<SIZE_NUM; j++)
817                         {
818                         print_message(names[D_SHA1],c[D_SHA1][j],lengths[j]);
819                         Time_F(START,usertime);
820                         for (count=0,run=1; COND(c[D_SHA1][j]); count++)
821                                 SHA1(buf,(unsigned long)lengths[j],&(sha[0]));
822                         d=Time_F(STOP,usertime);
823                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
824                                 count,names[D_SHA1],d);
825                         results[D_SHA1][j]=((double)count)/d*lengths[j];
826                         }
827                 }
828 #endif
829 #ifndef NO_RIPEMD
830         if (doit[D_RMD160])
831                 {
832                 for (j=0; j<SIZE_NUM; j++)
833                         {
834                         print_message(names[D_RMD160],c[D_RMD160][j],lengths[j]);
835                         Time_F(START,usertime);
836                         for (count=0,run=1; COND(c[D_RMD160][j]); count++)
837                                 RIPEMD160(buf,(unsigned long)lengths[j],&(rmd160[0]));
838                         d=Time_F(STOP,usertime);
839                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
840                                 count,names[D_RMD160],d);
841                         results[D_RMD160][j]=((double)count)/d*lengths[j];
842                         }
843                 }
844 #endif
845 #ifndef NO_RC4
846         if (doit[D_RC4])
847                 {
848                 for (j=0; j<SIZE_NUM; j++)
849                         {
850                         print_message(names[D_RC4],c[D_RC4][j],lengths[j]);
851                         Time_F(START,usertime);
852                         for (count=0,run=1; COND(c[D_RC4][j]); count++)
853                                 RC4(&rc4_ks,(unsigned int)lengths[j],
854                                         buf,buf);
855                         d=Time_F(STOP,usertime);
856                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
857                                 count,names[D_RC4],d);
858                         results[D_RC4][j]=((double)count)/d*lengths[j];
859                         }
860                 }
861 #endif
862 #ifndef NO_DES
863         if (doit[D_CBC_DES])
864                 {
865                 for (j=0; j<SIZE_NUM; j++)
866                         {
867                         print_message(names[D_CBC_DES],c[D_CBC_DES][j],lengths[j]);
868                         Time_F(START,usertime);
869                         for (count=0,run=1; COND(c[D_CBC_DES][j]); count++)
870                                 des_ncbc_encrypt(buf,buf,lengths[j],sch,
871                                                  &iv,DES_ENCRYPT);
872                         d=Time_F(STOP,usertime);
873                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
874                                 count,names[D_CBC_DES],d);
875                         results[D_CBC_DES][j]=((double)count)/d*lengths[j];
876                         }
877                 }
878
879         if (doit[D_EDE3_DES])
880                 {
881                 for (j=0; j<SIZE_NUM; j++)
882                         {
883                         print_message(names[D_EDE3_DES],c[D_EDE3_DES][j],lengths[j]);
884                         Time_F(START,usertime);
885                         for (count=0,run=1; COND(c[D_EDE3_DES][j]); count++)
886                                 des_ede3_cbc_encrypt(buf,buf,lengths[j],
887                                                      sch,sch2,sch3,
888                                                      &iv,DES_ENCRYPT);
889                         d=Time_F(STOP,usertime);
890                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
891                                 count,names[D_EDE3_DES],d);
892                         results[D_EDE3_DES][j]=((double)count)/d*lengths[j];
893                         }
894                 }
895 #endif
896 #ifndef NO_IDEA
897         if (doit[D_CBC_IDEA])
898                 {
899                 for (j=0; j<SIZE_NUM; j++)
900                         {
901                         print_message(names[D_CBC_IDEA],c[D_CBC_IDEA][j],lengths[j]);
902                         Time_F(START,usertime);
903                         for (count=0,run=1; COND(c[D_CBC_IDEA][j]); count++)
904                                 idea_cbc_encrypt(buf,buf,
905                                         (unsigned long)lengths[j],&idea_ks,
906                                         iv,IDEA_ENCRYPT);
907                         d=Time_F(STOP,usertime);
908                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
909                                 count,names[D_CBC_IDEA],d);
910                         results[D_CBC_IDEA][j]=((double)count)/d*lengths[j];
911                         }
912                 }
913 #endif
914 #ifndef NO_RC2
915         if (doit[D_CBC_RC2])
916                 {
917                 for (j=0; j<SIZE_NUM; j++)
918                         {
919                         print_message(names[D_CBC_RC2],c[D_CBC_RC2][j],lengths[j]);
920                         Time_F(START,usertime);
921                         for (count=0,run=1; COND(c[D_CBC_RC2][j]); count++)
922                                 RC2_cbc_encrypt(buf,buf,
923                                         (unsigned long)lengths[j],&rc2_ks,
924                                         iv,RC2_ENCRYPT);
925                         d=Time_F(STOP,usertime);
926                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
927                                 count,names[D_CBC_RC2],d);
928                         results[D_CBC_RC2][j]=((double)count)/d*lengths[j];
929                         }
930                 }
931 #endif
932 #ifndef NO_RC5
933         if (doit[D_CBC_RC5])
934                 {
935                 for (j=0; j<SIZE_NUM; j++)
936                         {
937                         print_message(names[D_CBC_RC5],c[D_CBC_RC5][j],lengths[j]);
938                         Time_F(START,usertime);
939                         for (count=0,run=1; COND(c[D_CBC_RC5][j]); count++)
940                                 RC5_32_cbc_encrypt(buf,buf,
941                                         (unsigned long)lengths[j],&rc5_ks,
942                                         iv,RC5_ENCRYPT);
943                         d=Time_F(STOP,usertime);
944                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
945                                 count,names[D_CBC_RC5],d);
946                         results[D_CBC_RC5][j]=((double)count)/d*lengths[j];
947                         }
948                 }
949 #endif
950 #ifndef NO_BF
951         if (doit[D_CBC_BF])
952                 {
953                 for (j=0; j<SIZE_NUM; j++)
954                         {
955                         print_message(names[D_CBC_BF],c[D_CBC_BF][j],lengths[j]);
956                         Time_F(START,usertime);
957                         for (count=0,run=1; COND(c[D_CBC_BF][j]); count++)
958                                 BF_cbc_encrypt(buf,buf,
959                                         (unsigned long)lengths[j],&bf_ks,
960                                         iv,BF_ENCRYPT);
961                         d=Time_F(STOP,usertime);
962                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
963                                 count,names[D_CBC_BF],d);
964                         results[D_CBC_BF][j]=((double)count)/d*lengths[j];
965                         }
966                 }
967 #endif
968 #ifndef NO_CAST
969         if (doit[D_CBC_CAST])
970                 {
971                 for (j=0; j<SIZE_NUM; j++)
972                         {
973                         print_message(names[D_CBC_CAST],c[D_CBC_CAST][j],lengths[j]);
974                         Time_F(START,usertime);
975                         for (count=0,run=1; COND(c[D_CBC_CAST][j]); count++)
976                                 CAST_cbc_encrypt(buf,buf,
977                                         (unsigned long)lengths[j],&cast_ks,
978                                         iv,CAST_ENCRYPT);
979                         d=Time_F(STOP,usertime);
980                         BIO_printf(bio_err,"%ld %s's in %.2fs\n",
981                                 count,names[D_CBC_CAST],d);
982                         results[D_CBC_CAST][j]=((double)count)/d*lengths[j];
983                         }
984                 }
985 #endif
986
987         RAND_pseudo_bytes(buf,36);
988 #ifndef NO_RSA
989         for (j=0; j<RSA_NUM; j++)
990                 {
991                 int ret;
992                 if (!rsa_doit[j]) continue;
993                 ret=RSA_sign(NID_md5_sha1, buf,36, buf2, &rsa_num, rsa_key[j]);
994                 pkey_print_message("private","rsa",rsa_c[j][0],rsa_bits[j],
995                         RSA_SECONDS);
996 /*              RSA_blinding_on(rsa_key[j],NULL); */
997                 Time_F(START,usertime);
998                 for (count=0,run=1; COND(rsa_c[j][0]); count++)
999                         {
1000                         ret=RSA_sign(NID_md5_sha1, buf,36, buf2, &rsa_num,
1001                                                                  rsa_key[j]);
1002                         if (ret <= 0)
1003                                 {
1004                                 BIO_printf(bio_err,"RSA private encrypt failure\n");
1005                                 ERR_print_errors(bio_err);
1006                                 count=1;
1007                                 break;
1008                                 }
1009                         }
1010                 d=Time_F(STOP,usertime);
1011                 BIO_printf(bio_err,"%ld %d bit private RSA's in %.2fs\n",
1012                         count,rsa_bits[j],d);
1013                 rsa_results[j][0]=d/(double)count;
1014                 rsa_count=count;
1015
1016 #if 1
1017                 ret=RSA_verify(NID_md5_sha1, buf,36, buf2, rsa_num, rsa_key[j]);
1018                 pkey_print_message("public","rsa",rsa_c[j][1],rsa_bits[j],
1019                         RSA_SECONDS);
1020                 Time_F(START,usertime);
1021                 for (count=0,run=1; COND(rsa_c[j][1]); count++)
1022                         {
1023                         ret=RSA_verify(NID_md5_sha1, buf,36, buf2, rsa_num,
1024                                                                 rsa_key[j]);
1025                         if (ret <= 0)
1026                                 {
1027                                 BIO_printf(bio_err,"RSA verify failure\n");
1028                                 ERR_print_errors(bio_err);
1029                                 count=1;
1030                                 break;
1031                                 }
1032                         }
1033                 d=Time_F(STOP,usertime);
1034                 BIO_printf(bio_err,"%ld %d bit public RSA's in %.2fs\n",
1035                         count,rsa_bits[j],d);
1036                 rsa_results[j][1]=d/(double)count;
1037 #endif
1038
1039                 if (rsa_count <= 1)
1040                         {
1041                         /* if longer than 10s, don't do any more */
1042                         for (j++; j<RSA_NUM; j++)
1043                                 rsa_doit[j]=0;
1044                         }
1045                 }
1046 #endif
1047
1048         RAND_pseudo_bytes(buf,20);
1049 #ifndef NO_DSA
1050         if (RAND_status() != 1)
1051                 {
1052                 RAND_seed(rnd_seed, sizeof rnd_seed);
1053                 rnd_fake = 1;
1054                 }
1055         for (j=0; j<DSA_NUM; j++)
1056                 {
1057                 unsigned int kk;
1058
1059                 if (!dsa_doit[j]) continue;
1060                 DSA_generate_key(dsa_key[j]);
1061 /*              DSA_sign_setup(dsa_key[j],NULL); */
1062                 rsa_num=DSA_sign(EVP_PKEY_DSA,buf,20,buf2,
1063                         &kk,dsa_key[j]);
1064                 pkey_print_message("sign","dsa",dsa_c[j][0],dsa_bits[j],
1065                         DSA_SECONDS);
1066                 Time_F(START,usertime);
1067                 for (count=0,run=1; COND(dsa_c[j][0]); count++)
1068                         {
1069                         rsa_num=DSA_sign(EVP_PKEY_DSA,buf,20,buf2,
1070                                 &kk,dsa_key[j]);
1071                         if (rsa_num == 0)
1072                                 {
1073                                 BIO_printf(bio_err,"DSA sign failure\n");
1074                                 ERR_print_errors(bio_err);
1075                                 count=1;
1076                                 break;
1077                                 }
1078                         }
1079                 d=Time_F(STOP,usertime);
1080                 BIO_printf(bio_err,"%ld %d bit DSA signs in %.2fs\n",
1081                         count,dsa_bits[j],d);
1082                 dsa_results[j][0]=d/(double)count;
1083                 rsa_count=count;
1084
1085                 rsa_num2=DSA_verify(EVP_PKEY_DSA,buf,20,buf2,
1086                         kk,dsa_key[j]);
1087                 pkey_print_message("verify","dsa",dsa_c[j][1],dsa_bits[j],
1088                         DSA_SECONDS);
1089                 Time_F(START,usertime);
1090                 for (count=0,run=1; COND(dsa_c[j][1]); count++)
1091                         {
1092                         rsa_num2=DSA_verify(EVP_PKEY_DSA,buf,20,buf2,
1093                                 kk,dsa_key[j]);
1094                         if (rsa_num2 == 0)
1095                                 {
1096                                 BIO_printf(bio_err,"DSA verify failure\n");
1097                                 ERR_print_errors(bio_err);
1098                                 count=1;
1099                                 break;
1100                                 }
1101                         }
1102                 d=Time_F(STOP,usertime);
1103                 BIO_printf(bio_err,"%ld %d bit DSA verify in %.2fs\n",
1104                         count,dsa_bits[j],d);
1105                 dsa_results[j][1]=d/(double)count;
1106
1107                 if (rsa_count <= 1)
1108                         {
1109                         /* if longer than 10s, don't do any more */
1110                         for (j++; j<DSA_NUM; j++)
1111                                 dsa_doit[j]=0;
1112                         }
1113                 }
1114         if (rnd_fake) RAND_cleanup();
1115 #endif
1116
1117         fprintf(stdout,"%s\n",SSLeay_version(SSLEAY_VERSION));
1118         fprintf(stdout,"%s\n",SSLeay_version(SSLEAY_BUILT_ON));
1119         printf("options:");
1120         printf("%s ",BN_options());
1121 #ifndef NO_MD2
1122         printf("%s ",MD2_options());
1123 #endif
1124 #ifndef NO_RC4
1125         printf("%s ",RC4_options());
1126 #endif
1127 #ifndef NO_DES
1128         printf("%s ",des_options());
1129 #endif
1130 #ifndef NO_IDEA
1131         printf("%s ",idea_options());
1132 #endif
1133 #ifndef NO_BF
1134         printf("%s ",BF_options());
1135 #endif
1136         fprintf(stdout,"\n%s\n",SSLeay_version(SSLEAY_CFLAGS));
1137
1138         if (pr_header)
1139                 {
1140                 fprintf(stdout,"The 'numbers' are in 1000s of bytes per second processed.\n"); 
1141                 fprintf(stdout,"type        ");
1142                 for (j=0;  j<SIZE_NUM; j++)
1143                         fprintf(stdout,"%7d bytes",lengths[j]);
1144                 fprintf(stdout,"\n");
1145                 }
1146
1147         for (k=0; k<ALGOR_NUM; k++)
1148                 {
1149                 if (!doit[k]) continue;
1150                 fprintf(stdout,"%-13s",names[k]);
1151                 for (j=0; j<SIZE_NUM; j++)
1152                         {
1153                         if (results[k][j] > 10000)
1154                                 fprintf(stdout," %11.2fk",results[k][j]/1e3);
1155                         else
1156                                 fprintf(stdout," %11.2f ",results[k][j]);
1157                         }
1158                 fprintf(stdout,"\n");
1159                 }
1160 #ifndef NO_RSA
1161         j=1;
1162         for (k=0; k<RSA_NUM; k++)
1163                 {
1164                 if (!rsa_doit[k]) continue;
1165                 if (j)
1166                         {
1167                         printf("%18ssign    verify    sign/s verify/s\n"," ");
1168                         j=0;
1169                         }
1170                 fprintf(stdout,"rsa %4u bits %8.4fs %8.4fs %8.1f %8.1f",
1171                         rsa_bits[k],rsa_results[k][0],rsa_results[k][1],
1172                         1.0/rsa_results[k][0],1.0/rsa_results[k][1]);
1173                 fprintf(stdout,"\n");
1174                 }
1175 #endif
1176 #ifndef NO_DSA
1177         j=1;
1178         for (k=0; k<DSA_NUM; k++)
1179                 {
1180                 if (!dsa_doit[k]) continue;
1181                 if (j)  {
1182                         printf("%18ssign    verify    sign/s verify/s\n"," ");
1183                         j=0;
1184                         }
1185                 fprintf(stdout,"dsa %4u bits %8.4fs %8.4fs %8.1f %8.1f",
1186                         dsa_bits[k],dsa_results[k][0],dsa_results[k][1],
1187                         1.0/dsa_results[k][0],1.0/dsa_results[k][1]);
1188                 fprintf(stdout,"\n");
1189                 }
1190 #endif
1191         mret=0;
1192 end:
1193         if (buf != NULL) OPENSSL_free(buf);
1194         if (buf2 != NULL) OPENSSL_free(buf2);
1195 #ifndef NO_RSA
1196         for (i=0; i<RSA_NUM; i++)
1197                 if (rsa_key[i] != NULL)
1198                         RSA_free(rsa_key[i]);
1199 #endif
1200 #ifndef NO_DSA
1201         for (i=0; i<DSA_NUM; i++)
1202                 if (dsa_key[i] != NULL)
1203                         DSA_free(dsa_key[i]);
1204 #endif
1205         EXIT(mret);
1206         }
1207
1208 static void print_message(char *s, long num, int length)
1209         {
1210 #ifdef SIGALRM
1211         BIO_printf(bio_err,"Doing %s for %ds on %d size blocks: ",s,SECONDS,length);
1212         (void)BIO_flush(bio_err);
1213         alarm(SECONDS);
1214 #else
1215         BIO_printf(bio_err,"Doing %s %ld times on %d size blocks: ",s,num,length);
1216         (void)BIO_flush(bio_err);
1217 #endif
1218 #ifdef LINT
1219         num=num;
1220 #endif
1221         }
1222
1223 static void pkey_print_message(char *str, char *str2, long num, int bits,
1224              int tm)
1225         {
1226 #ifdef SIGALRM
1227         BIO_printf(bio_err,"Doing %d bit %s %s's for %ds: ",bits,str,str2,tm);
1228         (void)BIO_flush(bio_err);
1229         alarm(RSA_SECONDS);
1230 #else
1231         BIO_printf(bio_err,"Doing %ld %d bit %s %s's: ",num,bits,str,str2);
1232         (void)BIO_flush(bio_err);
1233 #endif
1234 #ifdef LINT
1235         num=num;
1236 #endif
1237         }
1238