| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358 |
- #include <mycrypt.h>
- #define KTIMES 25
- #define TIMES 100000
- struct list {
- int id;
- unsigned long spd1, spd2, avg;
- } results[100];
- int no_results;
- int sorter(const void *a, const void *b)
- {
- const struct list *A, *B;
- A = a;
- B = b;
- if (A->avg < B->avg) return -1;
- if (A->avg > B->avg) return 1;
- return 0;
- }
- void tally_results(int type)
- {
- int x;
- // qsort the results
- qsort(results, no_results, sizeof(struct list), &sorter);
- printf("\n");
- if (type == 0) {
- for (x = 0; x < no_results; x++) {
- printf("%-20s: Schedule at %6lu\n", cipher_descriptor[results[x].id].name, (unsigned long)results[x].spd1);
- }
- } else if (type == 1) {
- for (x = 0; x < no_results; x++) {
- printf
- ("%-20s: Encrypt at %5lu, Decrypt at %5lu\n", cipher_descriptor[results[x].id].name, results[x].spd1, results[x].spd2);
- }
- } else {
- for (x = 0; x < no_results; x++) {
- printf
- ("%-20s: Process at %5lu\n", hash_descriptor[results[x].id].name, results[x].spd1 / 1000);
- }
- }
- }
- /* RDTSC from Scott Duplichan */
- static ulong64 rdtsc (void)
- {
- #if defined __GNUC__
- #ifdef __i386__
- ulong64 a;
- __asm__ __volatile__ ("rdtsc ":"=A" (a));
- return a;
- #else /* gcc-IA64 version */
- unsigned long result;
- __asm__ __volatile__("mov %0=ar.itc" : "=r"(result) :: "memory");
- while (__builtin_expect ((int) result == -1, 0))
- __asm__ __volatile__("mov %0=ar.itc" : "=r"(result) :: "memory");
- return result;
- #endif
- // Microsoft and Intel Windows compilers
- #elif defined _M_IX86
- __asm rdtsc
- #elif defined _M_AMD64
- return __rdtsc ();
- #elif defined _M_IA64
- #if defined __INTEL_COMPILER
- #include <ia64intrin.h>
- #endif
- return __getReg (3116);
- #else
- #error need rdtsc function for this build
- #endif
- }
- ulong64 timer, skew = 0;
- prng_state prng;
- void t_start(void)
- {
- timer = rdtsc();
- }
- ulong64 t_read(void)
- {
- return rdtsc() - timer;
- }
- void init_timer(void)
- {
- ulong64 c1, c2, t1, t2, t3;
- unsigned long y1;
- c1 = c2 = (ulong64)-1;
- for (y1 = 0; y1 < TIMES*100; y1++) {
- t_start();
- t1 = t_read();
- t3 = t_read();
- t2 = t_read() - t1;
- c1 = (c1 > t1) ? t1 : c1;
- c2 = (c2 > t2) ? t2 : c2;
- }
- skew = c2 - c1;
- printf("Clock Skew: %lu\n", (unsigned long)skew);
- }
- void reg_algs(void)
- {
- #ifdef RIJNDAEL
- register_cipher (&aes_desc);
- #endif
- #ifdef BLOWFISH
- register_cipher (&blowfish_desc);
- #endif
- #ifdef XTEA
- register_cipher (&xtea_desc);
- #endif
- #ifdef RC5
- register_cipher (&rc5_desc);
- #endif
- #ifdef RC6
- register_cipher (&rc6_desc);
- #endif
- #ifdef SAFERP
- register_cipher (&saferp_desc);
- #endif
- #ifdef TWOFISH
- register_cipher (&twofish_desc);
- #endif
- #ifdef SAFER
- register_cipher (&safer_k64_desc);
- register_cipher (&safer_sk64_desc);
- register_cipher (&safer_k128_desc);
- register_cipher (&safer_sk128_desc);
- #endif
- #ifdef RC2
- register_cipher (&rc2_desc);
- #endif
- #ifdef DES
- register_cipher (&des_desc);
- register_cipher (&des3_desc);
- #endif
- #ifdef CAST5
- register_cipher (&cast5_desc);
- #endif
- #ifdef NOEKEON
- register_cipher (&noekeon_desc);
- #endif
- #ifdef SKIPJACK
- register_cipher (&skipjack_desc);
- #endif
- #ifdef TIGER
- register_hash (&tiger_desc);
- #endif
- #ifdef MD2
- register_hash (&md2_desc);
- #endif
- #ifdef MD4
- register_hash (&md4_desc);
- #endif
- #ifdef MD5
- register_hash (&md5_desc);
- #endif
- #ifdef SHA1
- register_hash (&sha1_desc);
- #endif
- #ifdef SHA224
- register_hash (&sha224_desc);
- #endif
- #ifdef SHA256
- register_hash (&sha256_desc);
- #endif
- #ifdef SHA384
- register_hash (&sha384_desc);
- #endif
- #ifdef SHA512
- register_hash (&sha512_desc);
- #endif
- #ifdef RIPEMD128
- register_hash (&rmd128_desc);
- #endif
- #ifdef RIPEMD160
- register_hash (&rmd160_desc);
- #endif
- #ifdef WHIRLPOOL
- register_hash (&whirlpool_desc);
- #endif
- register_prng(&yarrow_desc);
- rng_make_prng(128, find_prng("yarrow"), &prng, NULL);
- }
- int time_keysched(void)
- {
- unsigned long x, i, y1;
- ulong64 t1, c1;
- symmetric_key skey;
- int kl;
- int (*func) (const unsigned char *, int , int , symmetric_key *);
- unsigned char key[MAXBLOCKSIZE];
- printf ("\n\nKey Schedule Time Trials for the Symmetric Ciphers:\n(Times are cycles per key)\n");
- no_results = 0;
- for (x = 0; cipher_descriptor[x].name != NULL; x++) {
- #define DO1(k) func(k, kl, 0, &skey);
- func = cipher_descriptor[x].setup;
- kl = cipher_descriptor[x].min_key_length;
- c1 = (ulong64)-1;
- for (y1 = 0; y1 < KTIMES; y1++) {
- yarrow_read(key, kl, &prng);
- t_start();
- DO1(key);
- t1 = t_read();
- c1 = (t1 > c1) ? c1 : t1;
- }
- t1 = c1 - skew;
- results[no_results].spd1 = results[no_results].avg = t1;
- results[no_results++].id = x;
- printf("."); fflush(stdout);
- #undef DO1
- }
- tally_results(0);
- return 0;
- }
- int time_cipher(void)
- {
- unsigned long x, y1;
- ulong64 t1, t2, c1, c2, a1, a2;
- symmetric_key skey;
- void (*func) (const unsigned char *, unsigned char *, symmetric_key *);
- unsigned char key[MAXBLOCKSIZE], pt[MAXBLOCKSIZE];
- printf ("\n\nECB Time Trials for the Symmetric Ciphers:\n");
- no_results = 0;
- for (x = 0; cipher_descriptor[x].name != NULL; x++) {
- cipher_descriptor[x].setup (key, cipher_descriptor[x].min_key_length, 0,
- &skey);
- #define DO1 func(pt,pt,&skey);
- #define DO2 DO1 DO1
- func = cipher_descriptor[x].ecb_encrypt;
- c1 = c2 = (ulong64)-1;
- for (y1 = 0; y1 < TIMES; y1++) {
- t_start();
- DO1;
- t1 = t_read();
- DO2;
- t2 = t_read();
- t2 -= t1;
- c1 = (t1 > c1 ? c1 : t1);
- c2 = (t2 > c2 ? c2 : t2);
- }
- a1 = c2 - c1 - skew;
- func = cipher_descriptor[x].ecb_decrypt;
- c1 = c2 = (ulong64)-1;
- for (y1 = 0; y1 < TIMES; y1++) {
- t_start();
- DO1;
- t1 = t_read();
- DO2;
- t2 = t_read();
- t2 -= t1;
- c1 = (t1 > c1 ? c1 : t1);
- c2 = (t2 > c2 ? c2 : t2);
- }
- a2 = c2 - c1 - skew;
-
- results[no_results].id = x;
- results[no_results].spd1 = a1/cipher_descriptor[x].block_length;
- results[no_results].spd2 = a2/cipher_descriptor[x].block_length;;
- results[no_results].avg = (results[no_results].spd1 + results[no_results].spd2+1)/2;
- ++no_results;
- printf("."); fflush(stdout);
-
- #undef DO2
- #undef DO1
- }
- tally_results(1);
- return 0;
- }
- int time_hash(void)
- {
- unsigned long x, y1, len;
- ulong64 t1, t2, c1, c2;
- hash_state md;
- int (*func)(hash_state *, const unsigned char *, unsigned long);
- unsigned char pt[MAXBLOCKSIZE];
- printf ("\n\nHASH Time Trials for:\n");
- no_results = 0;
- for (x = 0; hash_descriptor[x].name != NULL; x++) {
- hash_descriptor[x].init(&md);
- #define DO1 func(&md,pt,len);
- #define DO2 DO1 DO1
- func = hash_descriptor[x].process;
- len = hash_descriptor[x].blocksize;
- c1 = c2 = (ulong64)-1;
- for (y1 = 0; y1 < TIMES; y1++) {
- t_start();
- DO1;
- t1 = t_read();
- DO2;
- t2 = t_read() - t1;
- c1 = (t1 > c1) ? c1 : t1;
- c2 = (t2 > c2) ? c2 : t2;
- }
- t1 = c2 - c1 - skew;
- t1 = ((t1 * CONST64(1000))) / ((ulong64)hash_descriptor[x].blocksize);
- results[no_results].id = x;
- results[no_results].spd1 = results[no_results].avg = t1;
- ++no_results;
- printf("."); fflush(stdout);
- #undef DO2
- #undef DO1
- }
- tally_results(2);
- return 0;
- }
- int main(void)
- {
- reg_algs();
- printf("Timings for ciphers and hashes. Times are listed as cycles per byte processed.\n\n");
- // init_timer();
- time_cipher();
- time_keysched();
- time_hash();
- return EXIT_SUCCESS;
- }
|