62 #if !defined(OPENSSL_SYS_MSDOS) && (!defined(OPENSSL_SYS_VMS) || defined(__DECC)) && !defined(OPENSSL_SYS_MACOSX)
69 #include OPENSSL_UNISTD_IO
72 #ifndef OPENSSL_SYS_NETWARE
80 #include <sys/types.h>
81 #include <sys/times.h>
88 #if defined(OPENSSL_SYS_VMS_DECC) && !defined(__TMS)
93 #include <sys/timeb.h>
96 #if defined(sun) || defined(__ultrix)
99 #include <sys/param.h>
109 #define HZ ((double)CLK_TCK)
113 #define BUFSIZE ((long)1024)
118 #if defined(__STDC__) || defined(sgi) || defined(_AIX)
119 #define SIGRETTYPE void
121 #define SIGRETTYPE int
124 SIGRETTYPE sig_done(
int sig);
125 SIGRETTYPE sig_done(
int sig)
127 signal(SIGALRM,sig_done);
142 static struct tms tstart,tend;
152 ret=((double)(tend.tms_utime-tstart.tms_utime))/
HZ;
153 return((ret == 0.0)?1
e-6:ret);
156 static struct timeb tstart,tend;
167 i=(long)tend.millitm-(
long)tstart.millitm;
168 ret=((double)(tend.time-tstart.time))+((
double)i)/1e3;
169 return((ret == 0.0)?1
e-6:ret);
174 int main(
int argc,
char **argv)
177 static unsigned char buf[
BUFSIZE];
178 static unsigned char key[] ={
179 0x12,0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,
180 0xfe,0xdc,0xba,0x98,0x76,0x54,0x32,0x10,
189 printf(
"To get the most accurate results, try to run this\n");
190 printf(
"program when this computer is idle.\n");
194 printf(
"First we calculate the approximate speed ...\n");
203 for (i=count; i; i--)
211 printf(
"idea_set_encrypt_key %ld times\n",ca);
212 #define COND(d) (count <= (d))
215 #define COND(c) (run)
216 #define COUNT(d) (count)
217 signal(SIGALRM,sig_done);
218 printf(
"Doing idea_set_encrypt_key for 10 seconds\n");
223 for (count=0,
run=1;
COND(ca); count+=4)
231 printf(
"%ld idea idea_set_encrypt_key's in %.2f seconds\n",count,d);
232 a=((double)
COUNT(ca))/d;
235 printf(
"Doing idea_set_decrypt_key for 10 seconds\n");
238 printf(
"Doing idea_set_decrypt_key %ld times\n",cca);
242 for (count=0,
run=1;
COND(cca); count+=4)
250 printf(
"%ld idea idea_set_decrypt_key's in %.2f seconds\n",count,d);
251 aa=((double)
COUNT(cca))/d;
254 printf(
"Doing idea_encrypt's for 10 seconds\n");
257 printf(
"Doing idea_encrypt %ld times\n",cb);
260 for (count=0,
run=1;
COND(cb); count+=4)
262 unsigned long data[2];
270 printf(
"%ld idea_encrypt's in %.2f second\n",count,d);
271 b=((double)
COUNT(cb)*8)/d;
274 printf(
"Doing idea_cbc_encrypt on %ld byte blocks for 10 seconds\n",
278 printf(
"Doing idea_cbc_encrypt %ld times on %ld byte blocks\n",cc,
282 for (count=0,
run=1;
COND(cc); count++)
286 printf(
"%ld idea_cbc_encrypt's of %ld byte blocks in %.2f second\n",
290 printf(
"IDEA set_encrypt_key per sec = %12.2f (%9.3fuS)\n",a,1.0e6/a);
291 printf(
"IDEA set_decrypt_key per sec = %12.2f (%9.3fuS)\n",aa,1.0e6/aa);
292 printf(
"IDEA raw ecb bytes per sec = %12.2f (%9.3fuS)\n",b,8.0e6/b);
293 printf(
"IDEA cbc bytes per sec = %12.2f (%9.3fuS)\n",c,8.0e6/c);
295 #if defined(LINT) || defined(OPENSSL_SYS_MSDOS)