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