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--)
210 printf(
"Doing CAST_set_key %ld times\n",ca);
211 #define COND(d) (count != (d))
214 #define COND(c) (run)
215 #define COUNT(d) (count)
216 signal(SIGALRM,sig_done);
217 printf(
"Doing CAST_set_key for 10 seconds\n");
222 for (count=0,
run=1;
COND(ca); count+=4)
230 printf(
"%ld cast set_key's in %.2f seconds\n",count,d);
231 a=((double)
COUNT(ca))/d;
234 printf(
"Doing CAST_encrypt's for 10 seconds\n");
237 printf(
"Doing CAST_encrypt %ld times\n",cb);
240 for (count=0,
run=1;
COND(cb); count+=4)
250 printf(
"%ld CAST_encrypt's in %.2f second\n",count,d);
251 b=((double)
COUNT(cb)*8)/d;
254 printf(
"Doing CAST_cbc_encrypt on %ld byte blocks for 10 seconds\n",
258 printf(
"Doing CAST_cbc_encrypt %ld times on %ld byte blocks\n",cc,
262 for (count=0,
run=1;
COND(cc); count++)
266 printf(
"%ld CAST_cbc_encrypt's of %ld byte blocks in %.2f second\n",
270 printf(
"CAST set_key per sec = %12.2f (%9.3fuS)\n",a,1.0e6/a);
271 printf(
"CAST raw ecb bytes per sec = %12.2f (%9.3fuS)\n",b,8.0e6/b);
272 printf(
"CAST cbc bytes per sec = %12.2f (%9.3fuS)\n",c,8.0e6/c);
274 #if defined(LINT) || defined(OPENSSL_SYS_MSDOS)