123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240 |
- #if !defined(OPENSSL_SYS_MSDOS) && (!defined(OPENSSL_SYS_VMS) || defined(__DECC)) && !defined(OPENSSL_SYS_MACOSX)
- # define TIMES
- #endif
- #include <stdio.h>
- #include <openssl/e_os2.h>
- #include OPENSSL_UNISTD_IO
- OPENSSL_DECLARE_EXIT
- #ifndef OPENSSL_SYS_NETWARE
- # include <signal.h>
- #endif
- #ifndef _IRIX
- # include <time.h>
- #endif
- #ifdef TIMES
- # include <sys/types.h>
- # include <sys/times.h>
- #endif
-
- #if defined(OPENSSL_SYS_VMS_DECC) && !defined(__TMS)
- # undef TIMES
- #endif
- #ifndef TIMES
- # include <sys/timeb.h>
- #endif
- #if defined(sun) || defined(__ultrix)
- # define _POSIX_SOURCE
- # include <limits.h>
- # include <sys/param.h>
- #endif
- #include <openssl/rc4.h>
- #ifndef HZ
- # ifndef CLK_TCK
- # define HZ 100.0
- # else
- # define HZ ((double)CLK_TCK)
- # endif
- #endif
- #define BUFSIZE ((long)1024)
- long run = 0;
- double Time_F(int s);
- #ifdef SIGALRM
- # if defined(__STDC__) || defined(sgi) || defined(_AIX)
- # define SIGRETTYPE void
- # else
- # define SIGRETTYPE int
- # endif
- SIGRETTYPE sig_done(int sig);
- SIGRETTYPE sig_done(int sig)
- {
- signal(SIGALRM, sig_done);
- run = 0;
- # ifdef LINT
- sig = sig;
- # endif
- }
- #endif
- #define START 0
- #define STOP 1
- double Time_F(int s)
- {
- double ret;
- #ifdef TIMES
- static struct tms tstart, tend;
- if (s == START) {
- times(&tstart);
- return (0);
- } else {
- times(&tend);
- ret = ((double)(tend.tms_utime - tstart.tms_utime)) / HZ;
- return ((ret == 0.0) ? 1e-6 : ret);
- }
- #else
- static struct timeb tstart, tend;
- long i;
- if (s == START) {
- ftime(&tstart);
- return (0);
- } else {
- ftime(&tend);
- i = (long)tend.millitm - (long)tstart.millitm;
- ret = ((double)(tend.time - tstart.time)) + ((double)i) / 1e3;
- return ((ret == 0.0) ? 1e-6 : ret);
- }
- #endif
- }
- int main(int argc, char **argv)
- {
- long count;
- static unsigned char buf[BUFSIZE];
- static unsigned char key[] = {
- 0x12, 0x34, 0x56, 0x78, 0x9a, 0xbc, 0xde, 0xf0,
- 0xfe, 0xdc, 0xba, 0x98, 0x76, 0x54, 0x32, 0x10,
- };
- RC4_KEY sch;
- double a, b, c, d;
- #ifndef SIGALRM
- long ca, cb, cc;
- #endif
- #ifndef TIMES
- printf("To get the most accurate results, try to run this\n");
- printf("program when this computer is idle.\n");
- #endif
- #ifndef SIGALRM
- printf("First we calculate the approximate speed ...\n");
- RC4_set_key(&sch, 16, key);
- count = 10;
- do {
- long i;
- unsigned long data[2];
- count *= 2;
- Time_F(START);
- for (i = count; i; i--)
- RC4(&sch, 8, buf, buf);
- d = Time_F(STOP);
- } while (d < 3.0);
- ca = count / 512;
- cc = count * 8 / BUFSIZE + 1;
- printf("Doing RC4_set_key %ld times\n", ca);
- # define COND(d) (count != (d))
- # define COUNT(d) (d)
- #else
- # define COND(c) (run)
- # define COUNT(d) (count)
- signal(SIGALRM, sig_done);
- printf("Doing RC4_set_key for 10 seconds\n");
- alarm(10);
- #endif
- Time_F(START);
- for (count = 0, run = 1; COND(ca); count += 4) {
- RC4_set_key(&sch, 16, key);
- RC4_set_key(&sch, 16, key);
- RC4_set_key(&sch, 16, key);
- RC4_set_key(&sch, 16, key);
- }
- d = Time_F(STOP);
- printf("%ld RC4_set_key's in %.2f seconds\n", count, d);
- a = ((double)COUNT(ca)) / d;
- #ifdef SIGALRM
- printf("Doing RC4 on %ld byte blocks for 10 seconds\n", BUFSIZE);
- alarm(10);
- #else
- printf("Doing RC4 %ld times on %ld byte blocks\n", cc, BUFSIZE);
- #endif
- Time_F(START);
- for (count = 0, run = 1; COND(cc); count++)
- RC4(&sch, BUFSIZE, buf, buf);
- d = Time_F(STOP);
- printf("%ld RC4's of %ld byte blocks in %.2f second\n",
- count, BUFSIZE, d);
- c = ((double)COUNT(cc) * BUFSIZE) / d;
- printf("RC4 set_key per sec = %12.2f (%9.3fuS)\n", a, 1.0e6 / a);
- printf("RC4 bytes per sec = %12.2f (%9.3fuS)\n", c, 8.0e6 / c);
- exit(0);
- #if defined(LINT) || defined(OPENSSL_SYS_MSDOS)
- return (0);
- #endif
- }
|