[svn] / ecrypt / trunk / test / ecrypt-test.c  

svn: ecrypt/trunk/test/ecrypt-test.c

Diff for /ecrypt/trunk/test/ecrypt-test.c between version 40 and 107

version 40, Mon Aug 1 17:05:32 2005 UTC version 107, Fri Sep 16 14:17:22 2005 UTC
Line 82 
Line 82 
 double cpu_speed = 0.0;  double cpu_speed = 0.0;
 double test_time = 3.0;  double test_time = 3.0;
   
   int quiet = 0;
 int test_packet = 1;  int test_packet = 1;
 int test_setup = 1;  int test_setup = 1;
   int test_agility = 1;
 int output_vectors = 0;  int output_vectors = 0;
 int single_key = 0;  
   
 int errors = 0;  int errors = 0;
   
Line 97 
Line 98 
   
   if (errors >= 10)    if (errors >= 10)
     {      {
       fprintf(stderr, "Too many errors (%d errors). Aborting test.\n", errors);        if (!quiet)
       exit(1);          fprintf(stderr,
             "Too many errors (%d errors). Aborting test.\n", errors);
   
         exit(3);
     }      }
   
   if (sec > test_time)    if (sec > test_time)
     {      {
       fprintf(stderr, "Time out (%.2f seconds). Aborting test.\n", sec);        if (!quiet)
       exit(2);          fprintf(stderr,
             "Time out (%.2f seconds). Aborting test.\n", sec);
   
         exit(1);
     }      }
 }  }
   
Line 180 
Line 187 
   fprintf(fd, "Primitive Name: %s\n", ECRYPT_NAME);    fprintf(fd, "Primitive Name: %s\n", ECRYPT_NAME);
   fprintf(fd, "================%.*s\n", (int)strlen(ECRYPT_NAME),    fprintf(fd, "================%.*s\n", (int)strlen(ECRYPT_NAME),
           "==========================================");            "==========================================");
     fprintf(fd, "Profile: %s\n", ECRYPT_PROFILE);
   fprintf(fd, "Key size: %d bits\n", keysize);    fprintf(fd, "Key size: %d bits\n", keysize);
   fprintf(fd, "IV size: %d bits\n", ivsize);    fprintf(fd, "IV size: %d bits\n", ivsize);
 #ifdef ECRYPT_AE  #ifdef ECRYPT_AE
Line 204 
Line 212 
   
 typedef struct  typedef struct
 {  {
   int keysize;    ALIGN(u8, key, MAXKEYSIZEB);
   int ivsize;    ALIGN(u8, iv, MAXIVSIZEB);
   int msglen;  
   
   CTX ctx;    ALIGN(u8, plaintext, LONG_TEST_STREAM_SIZEB);
     ALIGN(u8, ciphertext, LONG_TEST_STREAM_SIZEB);
     ALIGN(u8, checktext, LONG_TEST_STREAM_SIZEB);
   
     ALIGN(u8, xored ,TEST_CHUNK);
   
   u8 key[MAXKEYSIZEB];  #ifdef ECRYPT_AE
   u8 iv[MAXIVSIZEB];    ALIGN(u8, aad, TEST_CHUNK);
     ALIGN(u8, mac, MAXMACSIZEB);
     ALIGN(u8, checkmac, MAXMACSIZEB);
   #endif
   
   u8 plaintext[LONG_TEST_STREAM_SIZEB];    CTX ctx;
   u8 ciphertext[LONG_TEST_STREAM_SIZEB];  
   u8 checktext[LONG_TEST_STREAM_SIZEB];    int keysize;
     int ivsize;
     int msglen;
   
 #ifdef ECRYPT_AE  #ifdef ECRYPT_AE
   int macsize;    int macsize;
   int aadlen;    int aadlen;
   
   u8 aad[TEST_CHUNK];  
   u8 mac[MAXMACSIZEB];  
   u8 checkmac[MAXMACSIZEB];  
 #endif  #endif
   
   u8 xored[TEST_CHUNK];  
   
   FILE *fd;    FILE *fd;
   
   int vector;    int vector;
Line 243 
Line 253 
   
   unsigned int i;    unsigned int i;
   
   memset(t->ciphertext, 0, sizeof(t->ciphertext));    memset(t->ciphertext.b, 0, sizeof(t->ciphertext.b));
 #ifdef ECRYPT_AE  #ifdef ECRYPT_AE
   memset(t->mac, 0, sizeof(t->mac));    memset(t->mac.b, 0, sizeof(t->mac.b));
 #endif  #endif
   
   KEYSETUP(&t->ctx, t->key, t->keysize, t->ivsize, t->macsize);    KEYSETUP(&t->ctx, t->key.b, t->keysize, t->ivsize, t->macsize);
   ENCRYPT_PACKET(&t->ctx, t->iv,    ENCRYPT_PACKET(&t->ctx, t->iv.b,
     t->aad, t->aadlen, t->plaintext, t->ciphertext, t->msglen, t->mac);      t->aad.b, t->aadlen, t->plaintext.b, t->ciphertext.b, t->msglen, t->mac.b);
   
   print(t, 0);    print(t, 0);
   
 #ifdef ECRYPT_AE  #ifdef ECRYPT_AE
   memset(t->checkmac, 0, sizeof(t->checkmac));    memset(t->checkmac.b, 0, sizeof(t->checkmac.b));
 #endif  #endif
   memset(t->checktext, 0, sizeof(t->checktext));    memset(t->checktext.b, 0, sizeof(t->checktext.b));
   
   KEYSETUP(&t->ctx, t->key, t->keysize, t->ivsize, t->macsize);    KEYSETUP(&t->ctx, t->key.b, t->keysize, t->ivsize, t->macsize);
   DECRYPT_PACKET(&t->ctx, t->iv,    DECRYPT_PACKET(&t->ctx, t->iv.b, t->aad.b, t->aadlen,
     t->aad, t->aadlen, t->ciphertext, t->checktext, t->msglen, t->checkmac);      t->ciphertext.b, t->checktext.b, t->msglen, t->checkmac.b);
   
   if (compare_blocks(t->plaintext, t->checktext, t->msglen * 8) != 0)    if (compare_blocks(t->plaintext.b, t->checktext.b, t->msglen * 8) != 0)
     {      {
       ++errors;        ++errors;
       fprintf(t->fd,        fprintf(t->fd,
Line 272 
Line 282 
       print(t, 1);        print(t, 1);
     }      }
 #ifdef ECRYPT_AE  #ifdef ECRYPT_AE
   else if (compare_blocks(t->mac, t->checkmac, t->macsize) != 0)    else if (compare_blocks(t->mac.b, t->checkmac.b, t->macsize) != 0)
     {      {
       ++errors;        ++errors;
       fprintf(t->fd,        fprintf(t->fd,
               "*** ERROR: encrypt_packet <-> decrypt_packet:\n"                "*** ERROR: encrypt_packet <-> decrypt_packet:\n"
               "*** decryption MAC differs from encryption MAC:\n");                "*** decryption MAC differs from encryption MAC:\n");
       print_data(t->fd, "MAC", t->checkmac, (t->macsize + 7) / 8);        print_data(t->fd, "MAC", t->checkmac.b, (t->macsize + 7) / 8);
     }      }
   
   memset(t->checkmac, 0, sizeof(t->checkmac));    memset(t->checkmac.b, 0, sizeof(t->checkmac.b));
 #endif  #endif
   memset(t->checktext, 0, sizeof(t->checktext));    memset(t->checktext.b, 0, sizeof(t->checktext.b));
   
   IVSETUP(&t->ctx, t->iv);    IVSETUP(&t->ctx, t->iv.b);
   
 #ifdef ECRYPT_SUPPORTS_AAD  #ifdef ECRYPT_SUPPORTS_AAD
   AUTHENTICATE_BYTES(&t->ctx, t->aad, t->aadlen);    AUTHENTICATE_BYTES(&t->ctx, t->aad.b, t->aadlen);
 #endif  #endif
   
   ENCRYPT_BYTES(&t->ctx, t->plaintext, t->checktext, t->msglen);    ENCRYPT_BYTES(&t->ctx, t->plaintext.b, t->checktext.b, t->msglen);
   FINALIZE(&t->ctx, t->checkmac);    FINALIZE(&t->ctx, t->checkmac.b);
   
   if (compare_blocks(t->ciphertext, t->checktext, t->msglen * 8) != 0)    if (compare_blocks(t->ciphertext.b, t->checktext.b, t->msglen * 8) != 0)
     {      {
       ++errors;        ++errors;
       fprintf(t->fd,        fprintf(t->fd,
Line 303 
Line 313 
       print(t, 2);        print(t, 2);
     }      }
 #ifdef ECRYPT_AE  #ifdef ECRYPT_AE
   else if (compare_blocks(t->mac, t->checkmac, t->macsize) != 0)    else if (compare_blocks(t->mac.b, t->checkmac.b, t->macsize) != 0)
     {      {
       ++errors;        ++errors;
       fprintf(t->fd,        fprintf(t->fd,
               "*** ERROR: encrypt_packet <-> encrypt_bytes:\n"                "*** ERROR: encrypt_packet <-> encrypt_bytes:\n"
               "*** encrypt_bytes generates different MAC:\n");                "*** encrypt_bytes generates different MAC:\n");
       print_data(t->fd, "MAC", t->checkmac, (t->macsize + 7) / 8);        print_data(t->fd, "MAC", t->checkmac.b, (t->macsize + 7) / 8);
     }      }
   
   memset(t->checkmac, 0, sizeof(t->checkmac));    memset(t->checkmac.b, 0, sizeof(t->checkmac.b));
 #endif  #endif
   memset(t->checktext, 0, sizeof(t->checktext));    memset(t->checktext.b, 0, sizeof(t->checktext.b));
   
   IVSETUP(&t->ctx, t->iv);    IVSETUP(&t->ctx, t->iv.b);
   
 #ifdef ECRYPT_SUPPORTS_AAD  #ifdef ECRYPT_SUPPORTS_AAD
   AUTHENTICATE_BYTES(&t->ctx, t->aad, t->aadlen);    AUTHENTICATE_BYTES(&t->ctx, t->aad.b, t->aadlen);
 #endif  #endif
   
   DECRYPT_BYTES(&t->ctx, t->ciphertext, t->checktext, t->msglen);    DECRYPT_BYTES(&t->ctx, t->ciphertext.b, t->checktext.b, t->msglen);
   FINALIZE(&t->ctx, t->checkmac);    FINALIZE(&t->ctx, t->checkmac.b);
   
   if (compare_blocks(t->plaintext, t->checktext, t->msglen * 8) != 0)    if (compare_blocks(t->plaintext.b, t->checktext.b, t->msglen * 8) != 0)
     {      {
       ++errors;        ++errors;
       fprintf(t->fd,        fprintf(t->fd,
Line 334 
Line 344 
       print(t, 2);        print(t, 2);
     }      }
 #ifdef ECRYPT_AE  #ifdef ECRYPT_AE
   else if (compare_blocks(t->mac, t->checkmac, t->macsize) != 0)    else if (compare_blocks(t->mac.b, t->checkmac.b, t->macsize) != 0)
     {      {
       ++errors;        ++errors;
       fprintf(t->fd,        fprintf(t->fd,
               "*** ERROR: encrypt_packet <-> decrypt_bytes:\n"                "*** ERROR: encrypt_packet <-> decrypt_bytes:\n"
               "*** decrypt_bytes generates different MAC:\n");                "*** decrypt_bytes generates different MAC:\n");
       print_data(t->fd, "MAC", t->checkmac, (t->macsize + 7) / 8);        print_data(t->fd, "MAC", t->checkmac.b, (t->macsize + 7) / 8);
     }      }
   
   memset(t->checkmac, 0, sizeof(t->checkmac));    memset(t->checkmac.b, 0, sizeof(t->checkmac.b));
 #endif  #endif
   memset(t->checktext, 0, sizeof(t->checktext));    memset(t->checktext.b, 0, sizeof(t->checktext.b));
   
   IVSETUP(&t->ctx, t->iv);    IVSETUP(&t->ctx, t->iv.b);
   
 #ifdef ECRYPT_SUPPORTS_AAD  #ifdef ECRYPT_SUPPORTS_AAD
   AUTHENTICATE_BYTES(&t->ctx, t->aad, t->aadlen);    AUTHENTICATE_BYTES(&t->ctx, t->aad.b, t->aadlen);
 #endif  #endif
   
   plaintext = t->plaintext;    plaintext = t->plaintext.b;
   checktext = t->checktext;    checktext = t->checktext.b;
   msglen = t->msglen;    msglen = t->msglen;
   
   for (i = (t->vector + 1) * 1381; msglen >= ECRYPT_BLOCKLENGTH; i *= 1487)    for (i = (t->vector + 1) * 1381; msglen >= ECRYPT_BLOCKLENGTH; i *= 1487)
Line 373 
Line 383 
     }      }
   
   ENCRYPT_BYTES(&t->ctx, plaintext, checktext, msglen);    ENCRYPT_BYTES(&t->ctx, plaintext, checktext, msglen);
   FINALIZE(&t->ctx, t->checkmac);    FINALIZE(&t->ctx, t->checkmac.b);
   
   if (compare_blocks(t->ciphertext, t->checktext, t->msglen * 8) != 0)    if (compare_blocks(t->ciphertext.b, t->checktext.b, t->msglen * 8) != 0)
     {      {
       ++errors;        ++errors;
       fprintf(t->fd,        fprintf(t->fd,
Line 384 
Line 394 
       print(t, 2);        print(t, 2);
     }      }
 #ifdef ECRYPT_AE  #ifdef ECRYPT_AE
   else if (compare_blocks(t->mac, t->checkmac, t->macsize) != 0)    else if (compare_blocks(t->mac.b, t->checkmac.b, t->macsize) != 0)
     {      {
       ++errors;        ++errors;
       fprintf(t->fd,        fprintf(t->fd,
               "*** ERROR: encrypt_packet <-> encrypt_blocks/bytes:\n"                "*** ERROR: encrypt_packet <-> encrypt_blocks/bytes:\n"
               "*** encrypt_blocks/bytes generates different MAC:\n");                "*** encrypt_blocks/bytes generates different MAC:\n");
       print_data(t->fd, "MAC", t->checkmac, (t->macsize + 7) / 8);        print_data(t->fd, "MAC", t->checkmac.b, (t->macsize + 7) / 8);
     }      }
   
   memset(t->checkmac, 0, sizeof(t->checkmac));    memset(t->checkmac.b, 0, sizeof(t->checkmac.b));
 #endif  #endif
   memset(t->checktext, 0, sizeof(t->checktext));    memset(t->checktext.b, 0, sizeof(t->checktext.b));
   
   IVSETUP(&t->ctx, t->iv);    IVSETUP(&t->ctx, t->iv.b);
   
 #ifdef ECRYPT_SUPPORTS_AAD  #ifdef ECRYPT_SUPPORTS_AAD
   AUTHENTICATE_BYTES(&t->ctx, t->aad, t->aadlen);    AUTHENTICATE_BYTES(&t->ctx, t->aad.b, t->aadlen);
 #endif  #endif
   
   ciphertext = t->ciphertext;    ciphertext = t->ciphertext.b;
   checktext = t->checktext;    checktext = t->checktext.b;
   msglen = t->msglen;    msglen = t->msglen;
   
   for (i = (t->vector + 1) * 1381; msglen >= ECRYPT_BLOCKLENGTH; i *= 1487)    for (i = (t->vector + 1) * 1381; msglen >= ECRYPT_BLOCKLENGTH; i *= 1487)
Line 423 
Line 433 
     }      }
   
   DECRYPT_BYTES(&t->ctx, ciphertext, checktext, msglen);    DECRYPT_BYTES(&t->ctx, ciphertext, checktext, msglen);
   FINALIZE(&t->ctx, t->checkmac);    FINALIZE(&t->ctx, t->checkmac.b);
   
   if (compare_blocks(t->plaintext, t->checktext, t->msglen * 8) != 0)    if (compare_blocks(t->plaintext.b, t->checktext.b, t->msglen * 8) != 0)
     {      {
       ++errors;        ++errors;
       fprintf(t->fd,        fprintf(t->fd,
Line 434 
Line 444 
       print(t, 2);        print(t, 2);
     }      }
 #ifdef ECRYPT_AE  #ifdef ECRYPT_AE
   else if (compare_blocks(t->mac, t->checkmac, t->macsize) != 0)    else if (compare_blocks(t->mac.b, t->checkmac.b, t->macsize) != 0)
     {      {
       ++errors;        ++errors;
       fprintf(t->fd,        fprintf(t->fd,
               "*** ERROR: encrypt_packet <-> decrypt_blocks/bytes:\n"                "*** ERROR: encrypt_packet <-> decrypt_blocks/bytes:\n"
               "*** decrypt_blocks/bytes generates different MAC:\n");                "*** decrypt_blocks/bytes generates different MAC:\n");
       print_data(t->fd, "MAC", t->checkmac, (t->macsize + 7) / 8);        print_data(t->fd, "MAC", t->checkmac.b, (t->macsize + 7) / 8);
     }      }
 #endif  #endif
   
Line 456 
Line 466 
   switch (type)    switch (type)
     {      {
     case 0:      case 0:
       print_data(t->fd, "key", t->key, (t->keysize + 7) / 8);        print_data(t->fd, "key", t->key.b, (t->keysize + 7) / 8);
       print_data(t->fd, "IV", t->iv, (t->ivsize + 7) / 8);        print_data(t->fd, "IV", t->iv.b, (t->ivsize + 7) / 8);
   
       print_chunk(t->fd, "stream", t->ciphertext, 0, chunk);        print_chunk(t->fd, "stream", t->ciphertext.b, 0, chunk);
       print_chunk(t->fd, "stream", t->ciphertext, t->msglen/2-chunk, chunk);        print_chunk(t->fd, "stream", t->ciphertext.b, t->msglen/2-chunk, chunk);
       print_chunk(t->fd, "stream", t->ciphertext, t->msglen/2, chunk);        print_chunk(t->fd, "stream", t->ciphertext.b, t->msglen/2, chunk);
       print_chunk(t->fd, "stream", t->ciphertext, t->msglen-chunk, chunk);        print_chunk(t->fd, "stream", t->ciphertext.b, t->msglen-chunk, chunk);
   
       xor_digest(t->ciphertext, t->msglen, t->xored, chunk);        xor_digest(t->ciphertext.b, t->msglen, t->xored.b, chunk);
       print_data(t->fd, "xor-digest", t->xored, chunk);        print_data(t->fd, "xor-digest", t->xored.b, chunk);
   
 #ifdef ECRYPT_AE  #ifdef ECRYPT_AE
       print_data(t->fd, "MAC", t->mac, (t->macsize + 7) / 8);        print_data(t->fd, "MAC", t->mac.b, (t->macsize + 7) / 8);
 #endif  #endif
       break;        break;
     case 1:      case 1:
       print_chunk(t->fd, "decryption", t->checktext, 0, chunk);        print_chunk(t->fd, "decryption", t->checktext.b, 0, chunk);
       print_chunk(t->fd, "decryption", t->checktext, t->msglen/2-chunk, chunk);        print_chunk(t->fd, "decryption", t->checktext.b,
       print_chunk(t->fd, "decryption", t->checktext, t->msglen/2, chunk);          t->msglen / 2-chunk, chunk);
       print_chunk(t->fd, "decryption", t->checktext, t->msglen-chunk, chunk);        print_chunk(t->fd, "decryption", t->checktext.b, t->msglen / 2, chunk);
         print_chunk(t->fd, "decryption", t->checktext.b, t->msglen-chunk, chunk);
   
       xor_digest(t->checktext, t->msglen, t->xored, chunk);        xor_digest(t->checktext.b, t->msglen, t->xored.b, chunk);
       print_data(t->fd, "xor-digest", t->xored, chunk);        print_data(t->fd, "xor-digest", t->xored.b, chunk);
   
 #ifdef ECRYPT_AE  #ifdef ECRYPT_AE
       print_data(t->fd, "MAC", t->checkmac, (t->macsize + 7) / 8);        print_data(t->fd, "MAC", t->checkmac.b, (t->macsize + 7) / 8);
 #endif  #endif
       break;        break;
     case 2:      case 2:
       print_chunk(t->fd, "stream", t->checktext, 0, chunk);        print_chunk(t->fd, "stream", t->checktext.b, 0, chunk);
       print_chunk(t->fd, "stream", t->checktext, t->msglen/2-chunk, chunk);        print_chunk(t->fd, "stream", t->checktext.b, t->msglen/2-chunk, chunk);
       print_chunk(t->fd, "stream", t->checktext, t->msglen/2, chunk);        print_chunk(t->fd, "stream", t->checktext.b, t->msglen/2, chunk);
       print_chunk(t->fd, "stream", t->checktext, t->msglen-chunk, chunk);        print_chunk(t->fd, "stream", t->checktext.b, t->msglen-chunk, chunk);
   
       xor_digest(t->checktext, t->msglen, t->xored, chunk);        xor_digest(t->checktext.b, t->msglen, t->xored.b, chunk);
       print_data(t->fd, "xor-digest", t->xored, chunk);        print_data(t->fd, "xor-digest", t->xored.b, chunk);
   
 #ifdef ECRYPT_AE  #ifdef ECRYPT_AE
       print_data(t->fd, "MAC", t->checkmac, (t->macsize + 7) / 8);        print_data(t->fd, "MAC", t->checkmac.b, (t->macsize + 7) / 8);
 #endif  #endif
       break;        break;
     }      }
Line 505 
Line 516 
   switch (type)    switch (type)
     {      {
     case 0:      case 0:
       print_data(t->fd, "key", t->key, (t->keysize + 7) / 8);        print_data(t->fd, "key", t->key.b, (t->keysize + 7) / 8);
       print_data(t->fd, "IV", t->iv, (t->ivsize + 7) / 8);        print_data(t->fd, "IV", t->iv.b, (t->ivsize + 7) / 8);
   
 #ifdef ECRYPT_SUPPORTS_AAD  #ifdef ECRYPT_SUPPORTS_AAD
       if (t->aadlen)        if (t->aadlen)
         print_data(t->fd, "AAD", t->aad, t->aadlen);          print_data(t->fd, "AAD", t->aad.b, t->aadlen);
 #endif  #endif
       print_data(t->fd, "plaintext", t->plaintext, t->msglen);        print_data(t->fd, "plaintext", t->plaintext.b, t->msglen);
       print_data(t->fd, "ciphertext", t->ciphertext, t->msglen);        print_data(t->fd, "ciphertext", t->ciphertext.b, t->msglen);
 #ifdef ECRYPT_AE  #ifdef ECRYPT_AE
       print_data(t->fd, "MAC", t->mac, (t->macsize + 7) / 8);        print_data(t->fd, "MAC", t->mac.b, (t->macsize + 7) / 8);
 #endif  #endif
       break;        break;
     case 1:      case 1:
       print_data(t->fd, "decryption", t->checktext, t->msglen);        print_data(t->fd, "decryption", t->checktext.b, t->msglen);
 #ifdef ECRYPT_AE  #ifdef ECRYPT_AE
       print_data(t->fd, "MAC", t->checkmac, (t->macsize + 7) / 8);        print_data(t->fd, "MAC", t->checkmac.b, (t->macsize + 7) / 8);
 #endif  #endif
       break;        break;
     case 2:      case 2:
       print_data(t->fd, "ciphertext", t->checktext, t->msglen);        print_data(t->fd, "ciphertext", t->checktext.b, t->msglen);
 #ifdef ECRYPT_AE  #ifdef ECRYPT_AE
       print_data(t->fd, "MAC", t->checkmac, (t->macsize + 7) / 8);        print_data(t->fd, "MAC", t->checkmac.b, (t->macsize + 7) / 8);
 #endif  #endif
       break;        break;
     }      }
Line 559 
Line 570 
   
   print_primitive(fd, keysize, ivsize, macsize);    print_primitive(fd, keysize, ivsize, macsize);
   
   memset(t.plaintext, 0, sizeof(t.plaintext));    memset(t.plaintext.b, 0, sizeof(t.plaintext.b));
   memset(t.ciphertext, 0, sizeof(t.ciphertext));    memset(t.ciphertext.b, 0, sizeof(t.ciphertext.b));
   
   /* check key stream */    /* check key stream */
   
Line 579 
Line 590 
   fprintf(t.fd, "(stream is generated by encrypting %d zero bytes)\n\n",    fprintf(t.fd, "(stream is generated by encrypting %d zero bytes)\n\n",
           t.msglen);            t.msglen);
   
   memset(t.iv, 0, sizeof(t.iv));    memset(t.iv.b, 0, sizeof(t.iv.b));
   
   for (v = 0; v < t.keysize; v += TEST_STEP)    for (v = 0; v < t.keysize; v += TEST_STEP)
     {      {
       memset(t.key, 0, sizeof(t.key));        memset(t.key.b, 0, sizeof(t.key.b));
       t.key[v >> 3] = 1 << (7 - (v & 7));        t.key.b[v >> 3] = 1 << (7 - (v & 7));
   
       STREAM_VECTOR(1, v);        STREAM_VECTOR(1, v);
     }      }
Line 592 
Line 603 
   fprintf(t.fd, "Test vectors -- set 2\n");    fprintf(t.fd, "Test vectors -- set 2\n");
   fprintf(t.fd, "=====================\n\n");    fprintf(t.fd, "=====================\n\n");
   
   memset(t.iv, 0, sizeof(t.iv));    memset(t.iv.b, 0, sizeof(t.iv.b));
   
   for (v = 0; v < 256; v += TEST_STEP)    for (v = 0; v < 256; v += TEST_STEP)
   {    {
     memset(t.key, v, sizeof(t.key));      memset(t.key.b, v, sizeof(t.key.b));
   
     STREAM_VECTOR(2, v);      STREAM_VECTOR(2, v);
   }    }
Line 604 
Line 615 
   fprintf(fd, "Test vectors -- set 3\n");    fprintf(fd, "Test vectors -- set 3\n");
   fprintf(fd, "=====================\n\n");    fprintf(fd, "=====================\n\n");
   
   memset(t.iv, 0, sizeof(t.iv));    memset(t.iv.b, 0, sizeof(t.iv.b));
   
   for (v = 0; v < 256; v += TEST_STEP)    for (v = 0; v < 256; v += TEST_STEP)
   {    {
     for (i = 0; i < sizeof(t.key); i++)      for (i = 0; i < sizeof(t.key.b); i++)
       t.key[i] = (i + v) & 0xFF;        t.key.b[i] = (i + v) & 0xFF;
   
     STREAM_VECTOR(3, v);      STREAM_VECTOR(3, v);
   }    }
Line 621 
Line 632 
   
   for (v = 0; v < 4; v++)    for (v = 0; v < 4; v++)
   {    {
     for (i = 0; i< sizeof(t.key); i++)      for (i = 0; i< sizeof(t.key.b); i++)
       t.key[i] = (i * 0x53 + v * 5) & 0xFF;        t.key.b[i] = (i * 0x53 + v * 5) & 0xFF;
   
     STREAM_VECTOR(4, v);      STREAM_VECTOR(4, v);
   }    }
Line 632 
Line 643 
   fprintf(t.fd, "Test vectors -- set 5\n");    fprintf(t.fd, "Test vectors -- set 5\n");
   fprintf(t.fd, "=====================\n\n");    fprintf(t.fd, "=====================\n\n");
   
   memset(t.key, 0, sizeof(t.key));    memset(t.key.b, 0, sizeof(t.key.b));
   
   for (v = 0; v < t.ivsize; v += TEST_STEP)    for (v = 0; v < t.ivsize; v += TEST_STEP)
   {    {
     memset(t.iv, 0, sizeof(t.iv));      memset(t.iv.b, 0, sizeof(t.iv.b));
     t.iv[v >> 3] = 1 << (7 - (v & 7));      t.iv.b[v >> 3] = 1 << (7 - (v & 7));
   
     STREAM_VECTOR(5, v);      STREAM_VECTOR(5, v);
   }    }
Line 649 
Line 660 
   
   for (v = 0; v < 4; v++)    for (v = 0; v < 4; v++)
   {    {
     for (i = 0; i < sizeof(t.key); i++)      for (i = 0; i < sizeof(t.key.b); i++)
       t.key[i] = (i * 0x53 + v * 5) & 0xFF;        t.key.b[i] = (i * 0x53 + v * 5) & 0xFF;
   
     for (i = 0; i < sizeof(t.iv); i++)      for (i = 0; i < sizeof(t.iv.b); i++)
       t.iv[i] = (i * 0x67 + v * 9 + 13) & 0xFF;        t.iv.b[i] = (i * 0x67 + v * 9 + 13) & 0xFF;
   
     STREAM_VECTOR(6, v);      STREAM_VECTOR(6, v);
   }    }
Line 666 
Line 677 
   fprintf(t.fd, "Test vectors -- set 7\n");    fprintf(t.fd, "Test vectors -- set 7\n");
   fprintf(t.fd, "=====================\n\n");    fprintf(t.fd, "=====================\n\n");
   
   memset(t.key, 0, sizeof(t.key));    memset(t.key.b, 0, sizeof(t.key.b));
   memset(t.iv, 0, sizeof(t.iv));    memset(t.iv.b, 0, sizeof(t.iv.b));
   memset(t.plaintext, 0, sizeof(t.plaintext));    memset(t.plaintext.b, 0, sizeof(t.plaintext.b));
   
   for (i = 0; i < sizeof(t.key); i++)    for (i = 0; i < sizeof(t.key.b); i++)
     t.key[i] = (i * 0x11) & 0xFF;      t.key.b[i] = (i * 0x11) & 0xFF;
   
   for (v = 0; v <= TEST_CHUNK; v += TEST_STEP)    for (v = 0; v <= TEST_CHUNK; v += TEST_STEP)
   {    {
Line 685 
Line 696 
   fprintf(t.fd, "Test vectors -- set 8\n");    fprintf(t.fd, "Test vectors -- set 8\n");
   fprintf(t.fd, "=====================\n\n");    fprintf(t.fd, "=====================\n\n");
   
   memset(t.key, 0, sizeof(t.key));    memset(t.key.b, 0, sizeof(t.key.b));
   memset(t.iv, 0, sizeof(t.iv));    memset(t.iv.b, 0, sizeof(t.iv.b));
   
   for (v = 0; v < t.msglen * 8; v += TEST_STEP)    for (v = 0; v < t.msglen * 8; v += TEST_STEP)
   {    {
     memset(t.plaintext, 0, sizeof(t.plaintext));      memset(t.plaintext.b, 0, sizeof(t.plaintext.b));
     t.plaintext[v >> 3] = 1 << (7 - (v & 7));      t.plaintext.b[v >> 3] = 1 << (7 - (v & 7));
   
     MAC_VECTOR(8, v);      MAC_VECTOR(8, v);
   }    }
Line 701 
Line 712 
   
   for (v = 0; v < 4; v++)    for (v = 0; v < 4; v++)
   {    {
     for (i = 0; i < sizeof(t.key); i++)      for (i = 0; i < sizeof(t.key.b); i++)
       t.key[i] = (i * 0x53 + v * 5) & 0xFF;        t.key.b[i] = (i * 0x53 + v * 5) & 0xFF;
   
     for (i = 0; i < sizeof(t.iv); i++)      for (i = 0; i < sizeof(t.iv.b); i++)
       t.iv[i] = (i * 0x67 + v * 9 + 13) & 0xFF;        t.iv.b[i] = (i * 0x67 + v * 9 + 13) & 0xFF;
   
     for (i = 0; i < t.msglen; i++)      for (i = 0; i < t.msglen; i++)
       t.plaintext[i] = (i * 0x61 + v * 7 + 109) & 0xFF;        t.plaintext.b[i] = (i * 0x61 + v * 7 + 109) & 0xFF;
   
     MAC_VECTOR(9, v);      MAC_VECTOR(9, v);
   }    }
Line 721 
Line 732 
   fprintf(t.fd, "Test vectors -- set 10\n");    fprintf(t.fd, "Test vectors -- set 10\n");
   fprintf(t.fd, "======================\n\n");    fprintf(t.fd, "======================\n\n");
   
   memset(t.key, 0, sizeof(t.key));    memset(t.key.b, 0, sizeof(t.key.b));
   memset(t.iv, 0, sizeof(t.iv));    memset(t.iv.b, 0, sizeof(t.iv.b));
   memset(t.plaintext, 0, sizeof(t.plaintext));    memset(t.plaintext.b, 0, sizeof(t.plaintext.b));
   memset(t.aad, 0, sizeof(t.aad));    memset(t.aad.b, 0, sizeof(t.aad.b));
   
   for (i = 0; i < sizeof(t.key); i++)    for (i = 0; i < sizeof(t.key.b); i++)
     t.key[i] = (i * 0x11) & 0xFF;      t.key.b[i] = (i * 0x11) & 0xFF;
   
   for (v = 0; v <= TEST_CHUNK; v += TEST_STEP)    for (v = 0; v <= TEST_CHUNK; v += TEST_STEP)
   {    {
Line 741 
Line 752 
   fprintf(t.fd, "Test vectors -- set 11\n");    fprintf(t.fd, "Test vectors -- set 11\n");
   fprintf(t.fd, "======================\n\n");    fprintf(t.fd, "======================\n\n");
   
   memset(t.key, 0, sizeof(t.key));    memset(t.key.b, 0, sizeof(t.key.b));
   memset(t.iv, 0, sizeof(t.iv));    memset(t.iv.b, 0, sizeof(t.iv.b));
   memset(t.plaintext, 0, sizeof(t.plaintext));    memset(t.plaintext.b, 0, sizeof(t.plaintext.b));
   
   for (v = 0; v < t.aadlen * 8; v += TEST_STEP)    for (v = 0; v < t.aadlen * 8; v += TEST_STEP)
   {    {
     memset(t.aad, 0, sizeof(t.aad));      memset(t.aad.b, 0, sizeof(t.aad.b));
     t.aad[v >> 3] = 1 << (7 - (v & 7));      t.aad.b[v >> 3] = 1 << (7 - (v & 7));
   
     AAD_VECTOR(11, v);      AAD_VECTOR(11, v);
   }    }
Line 758 
Line 769 
   
   for (v = 0; v < 4; v++)    for (v = 0; v < 4; v++)
   {    {
     for (i = 0; i < sizeof(t.key); i++)      for (i = 0; i < sizeof(t.key.b); i++)
       t.key[i] = (i * 0x53 + v * 5) & 0xFF;        t.key.b[i] = (i * 0x53 + v * 5) & 0xFF;
   
     for (i = 0; i < sizeof(t.iv); i++)      for (i = 0; i < sizeof(t.iv.b); i++)
       t.iv[i] = (i * 0x67 + v * 9 + 13) & 0xFF;        t.iv.b[i] = (i * 0x67 + v * 9 + 13) & 0xFF;
   
     for (i = 0; i < t.msglen; i++)      for (i = 0; i < t.msglen; i++)
       t.plaintext[i] = (i * 0x61 + v * 7 + 109) & 0xFF;        t.plaintext.b[i] = (i * 0x61 + v * 7 + 109) & 0xFF;
   
     for (i = 0; i < t.aadlen; i++)      for (i = 0; i < t.aadlen; i++)
       t.aad[i] = (i * 0x25 + v * 13 + 11) & 0xFF;        t.aad.b[i] = (i * 0x25 + v * 13 + 11) & 0xFF;
   
     AAD_VECTOR(12, v);      AAD_VECTOR(12, v);
   }    }
Line 782 
Line 793 
   
 void test_if_conform_to_api(FILE *fd, int keysize, int ivsize, int macsize)  void test_if_conform_to_api(FILE *fd, int keysize, int ivsize, int macsize)
 {  {
   CTX ctx[2];    ALIGN(u8, key[2], MAXKEYSIZEB);
     ALIGN(u8, iv[2], MAXIVSIZEB);
   
   u8 key[2][MAXKEYSIZEB];    ALIGN(u8, plaintext, TEST_CHUNK + ECRYPT_BLOCKLENGTH);
   u8 iv[2][MAXIVSIZEB];    ALIGN(u8, ciphertext[3], TEST_CHUNK + ECRYPT_BLOCKLENGTH);
   
   u8 plaintext[TEST_CHUNK + ECRYPT_BLOCKLENGTH];  
   u8 ciphertext[3][TEST_CHUNK + ECRYPT_BLOCKLENGTH];  
 #ifdef ECRYPT_AE  #ifdef ECRYPT_AE
   u8 mac[3][MAXMACSIZEB];    ALIGN(u8, mac[3], MAXMACSIZEB);
 #endif  #endif
   
     CTX ctx[2];
   
   int msglen = TEST_CHUNK;    int msglen = TEST_CHUNK;
   
   int i;    int i;
   
   for(i = 0; i < MAXKEYSIZEB; i++)    for(i = 0; i < MAXKEYSIZEB; i++)
     {      {
       key[0][i] = 3 * i + 5;        key[0].b[i] = 3 * i + 5;
       key[1][i] = 240 - 5 * i;        key[1].b[i] = 240 - 5 * i;
     }      }
   
   for(i = 0; i < MAXIVSIZEB; i++)    for(i = 0; i < MAXIVSIZEB; i++)
     {      {
       iv[0][i] = 9 * i + 25;        iv[0].b[i] = 9 * i + 25;
       iv[1][i] = 11 * i + 17;        iv[1].b[i] = 11 * i + 17;
     }      }
   
   memset(plaintext, 0, sizeof(plaintext));    memset(&plaintext, 0, sizeof(plaintext));
   memset(ciphertext, 0, sizeof(ciphertext));    memset(ciphertext, 0, sizeof(ciphertext));
   
   KEYSETUP(&ctx[0], key[0], keysize, ivsize, macsize);    KEYSETUP(&ctx[0], key[0].b, keysize, ivsize, macsize);
   
   IVSETUP(&ctx[0], iv[0]);    IVSETUP(&ctx[0], iv[0].b);
   ENCRYPT_BYTES(&ctx[0], plaintext, ciphertext[0], msglen);    ENCRYPT_BYTES(&ctx[0], plaintext.b, ciphertext[0].b, msglen);
   FINALIZE(&ctx[0], mac[0]);    FINALIZE(&ctx[0], mac[0].b);
   
   IVSETUP(&ctx[0], iv[0]);    IVSETUP(&ctx[0], iv[0].b);
   ENCRYPT_BYTES(&ctx[0], plaintext, ciphertext[1], msglen);    ENCRYPT_BYTES(&ctx[0], plaintext.b, ciphertext[1].b, msglen);
   FINALIZE(&ctx[0], mac[1]);    FINALIZE(&ctx[0], mac[1].b);
   
   if (compare_blocks(ciphertext[0], ciphertext[1], msglen * 8) != 0)    if (compare_blocks(ciphertext[0].b, ciphertext[1].b, msglen * 8) != 0)
     {      {
       ++errors;        ++errors;
       fprintf(fd,        fprintf(fd,
         "*** ERROR: Code does not conform to ECRYPT API:\n"          "*** ERROR: Code does not conform to ECRYPT API:\n"
         "*** Two calls to ivsetup produced different results:\n");          "*** Two calls to ivsetup produced different results:\n");
   
       print_data(fd, "K", key[0], (keysize + 7) / 8);        print_data(fd, "K", key[0].b, (keysize + 7) / 8);
       print_data(fd, "IV", iv[0], (ivsize + 7) / 8);        print_data(fd, "IV", iv[0].b, (ivsize + 7) / 8);
   
       print_data(fd, "P", plaintext, msglen);        print_data(fd, "P", plaintext.b, msglen);
       print_data(fd, "C after 1st IV setup", ciphertext[0], msglen);        print_data(fd, "C after 1st IV setup", ciphertext[0].b, msglen);
       print_data(fd, "C after 2nd IV setup", ciphertext[1], msglen);        print_data(fd, "C after 2nd IV setup", ciphertext[1].b, msglen);
       fprintf(fd, "\n");        fprintf(fd, "\n");
       fflush(fd);        fflush(fd);
     }      }
 #ifdef ECRYPT_AE  #ifdef ECRYPT_AE
   else if (compare_blocks(mac[0], mac[1], macsize) != 0)    else if (compare_blocks(mac[0].b, mac[1].b, macsize) != 0)
     {      {
       ++errors;        ++errors;
       fprintf(fd,        fprintf(fd,
         "*** ERROR: Code does not conform to ECRYPT API:\n"          "*** ERROR: Code does not conform to ECRYPT API:\n"
         "*** Two calls to ivsetup produced different results:\n");          "*** Two calls to ivsetup produced different results:\n");
   
       print_data(fd, "K", key[0], (keysize + 7) / 8);        print_data(fd, "K", key[0].b, (keysize + 7) / 8);
       print_data(fd, "IV", iv[0], (ivsize + 7) / 8);        print_data(fd, "IV", iv[0].b, (ivsize + 7) / 8);
   
       print_data(fd, "P", plaintext, msglen);        print_data(fd, "P", plaintext.b, msglen);
       print_data(fd, "MAC after 1st IV setup", mac[0], (macsize + 7) / 8);        print_data(fd, "MAC after 1st IV setup", mac[0].b, (macsize + 7) / 8);
       print_data(fd, "MAC after 2nd IV setup", mac[1], (macsize + 7) / 8);        print_data(fd, "MAC after 2nd IV setup", mac[1].b, (macsize + 7) / 8);
       fprintf(fd, "\n");        fprintf(fd, "\n");
       fflush(fd);        fflush(fd);
     }      }
Line 861 
Line 872 
   
   memset(ciphertext, 0, sizeof(ciphertext));    memset(ciphertext, 0, sizeof(ciphertext));
   
   KEYSETUP(&ctx[0], key[0], keysize, ivsize, macsize);    KEYSETUP(&ctx[0], key[0].b, keysize, ivsize, macsize);
   IVSETUP(&ctx[0], iv[0]);    IVSETUP(&ctx[0], iv[0].b);
   ENCRYPT_BYTES(&ctx[0], plaintext, ciphertext[0], msglen);    ENCRYPT_BYTES(&ctx[0], plaintext.b, ciphertext[0].b, msglen);
   FINALIZE(&ctx[0], mac[0]);    FINALIZE(&ctx[0], mac[0].b);
   
   KEYSETUP(&ctx[1], key[1], keysize, ivsize, macsize);    KEYSETUP(&ctx[1], key[1].b, keysize, ivsize, macsize);
   IVSETUP(&ctx[1], iv[1]);    IVSETUP(&ctx[1], iv[1].b);
   ENCRYPT_BYTES(&ctx[1], plaintext, ciphertext[1], msglen);    ENCRYPT_BYTES(&ctx[1], plaintext.b, ciphertext[1].b, msglen);
   FINALIZE(&ctx[1], mac[1]);    FINALIZE(&ctx[1], mac[1].b);
   
   IVSETUP(&ctx[0], iv[0]);    IVSETUP(&ctx[0], iv[0].b);
   
   IVSETUP(&ctx[1], iv[1]);    IVSETUP(&ctx[1], iv[1].b);
   
   ENCRYPT_BYTES(&ctx[0], plaintext, ciphertext[2], msglen);    ENCRYPT_BYTES(&ctx[0], plaintext.b, ciphertext[2].b, msglen);
   FINALIZE(&ctx[0], mac[2]);    FINALIZE(&ctx[0], mac[2].b);
   
   if (compare_blocks(ciphertext[0], ciphertext[2], msglen * 8) != 0)    if (compare_blocks(ciphertext[0].b, ciphertext[2].b, msglen * 8) != 0)
     {      {
       ++errors;        ++errors;
       fprintf(fd,        fprintf(fd,
Line 886 
Line 897 
         "*** code produces inconsistent results when calls with different\n"          "*** code produces inconsistent results when calls with different\n"
         "*** contexts are interleaved:\n");          "*** contexts are interleaved:\n");
   
       if (compare_blocks(ciphertext[1], ciphertext[2], msglen * 8) == 0)        if (compare_blocks(ciphertext[1].b, ciphertext[2].b, msglen * 8) == 0)
         fprintf(fd,          fprintf(fd,
           "*** (this is probably due to the use of static state variables)\n");            "*** (this is probably due to the use of static state variables)\n");
   
       print_data(fd, "K1", key[0], (keysize + 7) / 8);        print_data(fd, "K1", key[0].b, (keysize + 7) / 8);
       print_data(fd, "K2", key[1], (keysize + 7) / 8);        print_data(fd, "K2", key[1].b, (keysize + 7) / 8);
       print_data(fd, "IV1", iv[0], (ivsize + 7) / 8);        print_data(fd, "IV1", iv[0].b, (ivsize + 7) / 8);
       print_data(fd, "IV2", iv[0], (ivsize + 7) / 8);        print_data(fd, "IV2", iv[0].b, (ivsize + 7) / 8);
   
       print_data(fd, "P", plaintext, msglen);        print_data(fd, "P", plaintext.b, msglen);
       print_data(fd, "C by K1", ciphertext[0], msglen);        print_data(fd, "C by K1", ciphertext[0].b, msglen);
       print_data(fd, "C by K2", ciphertext[1], msglen);        print_data(fd, "C by K2", ciphertext[1].b, msglen);
       print_data(fd, "C by K1 after IV2 setup", ciphertext[2], msglen);        print_data(fd, "C by K1 after IV2 setup", ciphertext[2].b, msglen);
       fprintf(fd, "\n");        fprintf(fd, "\n");
       fflush(fd);        fflush(fd);
     }      }
 #ifdef ECRYPT_AE  #ifdef ECRYPT_AE
   else if (compare_blocks(mac[0], mac[2], macsize) != 0)    else if (compare_blocks(mac[0].b, mac[2].b, macsize) != 0)
     {      {
       ++errors;        ++errors;
       fprintf(fd,        fprintf(fd,
Line 911 
Line 922 
         "*** code produces inconsistent results when calls with different\n"          "*** code produces inconsistent results when calls with different\n"
         "*** contexts are interleaved:\n");          "*** contexts are interleaved:\n");
   
       if (compare_blocks(mac[1], mac[2], macsize) == 0)        if (compare_blocks(mac[1].b, mac[2].b, macsize) == 0)
         fprintf(fd,          fprintf(fd,
           "*** (this is probably due to the use of static state variables)\n");            "*** (this is probably due to the use of static state variables)\n");
   
       print_data(fd, "K1", key[0], (keysize + 7) / 8);        print_data(fd, "K1", key[0].b, (keysize + 7) / 8);
       print_data(fd, "K2", key[1], (keysize + 7) / 8);        print_data(fd, "K2", key[1].b, (keysize + 7) / 8);
       print_data(fd, "IV1", iv[0], (ivsize + 7) / 8);        print_data(fd, "IV1", iv[0].b, (ivsize + 7) / 8);
       print_data(fd, "IV2", iv[0], (ivsize + 7) / 8);        print_data(fd, "IV2", iv[0].b, (ivsize + 7) / 8);
   
       print_data(fd, "P", plaintext, msglen);        print_data(fd, "P", plaintext.b, msglen);
       print_data(fd, "MAC by K1", mac[0], (macsize + 7) / 8);        print_data(fd, "MAC by K1", mac[0].b, (macsize + 7) / 8);
       print_data(fd, "MAC by K2", mac[1], (macsize + 7) / 8);        print_data(fd, "MAC by K2", mac[1].b, (macsize + 7) / 8);
       print_data(fd, "MAC by K1 after IV2 setup", mac[2], (macsize + 7) / 8);        print_data(fd, "MAC by K1 after IV2 setup", mac[2].b, (macsize + 7) / 8);
       fprintf(fd, "\n");        fprintf(fd, "\n");
       fflush(fd);        fflush(fd);
     }      }
Line 935 
Line 946 
   
   memset(ciphertext, 0, sizeof(ciphertext));    memset(ciphertext, 0, sizeof(ciphertext));
   
   KEYSETUP(&ctx[0], key[0], keysize, ivsize, macsize);    KEYSETUP(&ctx[0], key[0].b, keysize, ivsize, macsize);
   IVSETUP(&ctx[0], iv[0]);    IVSETUP(&ctx[0], iv[0].b);
   ENCRYPT_BYTES(&ctx[0], plaintext + B, ciphertext[0] + B, msglen);    ENCRYPT_BYTES(&ctx[0], plaintext.b + B, ciphertext[0].b + B, msglen);
   FINALIZE(&ctx[0], mac[0]);    FINALIZE(&ctx[0], mac[0].b);
   
   KEYSETUP(&ctx[1], key[1], keysize, ivsize, macsize);    KEYSETUP(&ctx[1], key[1].b, keysize, ivsize, macsize);
   IVSETUP(&ctx[1], iv[1]);    IVSETUP(&ctx[1], iv[1].b);
   ENCRYPT_BLOCKS(&ctx[1], plaintext, ciphertext[1], 1);    ENCRYPT_BLOCKS(&ctx[1], plaintext.b, ciphertext[1].b, 1);
   ENCRYPT_BYTES(&ctx[1], plaintext + B, ciphertext[1] + B, msglen);    ENCRYPT_BYTES(&ctx[1], plaintext.b + B, ciphertext[1].b + B, msglen);
   FINALIZE(&ctx[1], mac[1]);    FINALIZE(&ctx[1], mac[1].b);
   
   IVSETUP(&ctx[0], iv[0]);    IVSETUP(&ctx[0], iv[0].b);
   
   IVSETUP(&ctx[1], iv[1]);    IVSETUP(&ctx[1], iv[1].b);
   ENCRYPT_BLOCKS(&ctx[1], plaintext, ciphertext[2], 1);    ENCRYPT_BLOCKS(&ctx[1], plaintext.b, ciphertext[2].b, 1);
   
   ENCRYPT_BYTES(&ctx[0], plaintext + B, ciphertext[2] + B, msglen);    ENCRYPT_BYTES(&ctx[0], plaintext.b + B, ciphertext[2].b + B, msglen);
   FINALIZE(&ctx[0], mac[2]);    FINALIZE(&ctx[0], mac[2].b);
   
   if (compare_blocks(ciphertext[0] + B, ciphertext[2] + B, msglen * 8) != 0)    if (compare_blocks(ciphertext[0].b + B, ciphertext[2].b + B,
           msglen * 8) != 0)
     {      {
       ++errors;        ++errors;
       fprintf(fd,        fprintf(fd,
Line 962 
Line 974 
         "*** code produces inconsistent results when calls with different\n"          "*** code produces inconsistent results when calls with different\n"
         "*** contexts are interleaved:\n");          "*** contexts are interleaved:\n");
   
       if (compare_blocks(ciphertext[1], ciphertext[2], (msglen + B) * 8) == 0)        if (compare_blocks(ciphertext[1].b, ciphertext[2].b,
               (msglen + B) * 8) == 0)
         fprintf(fd,          fprintf(fd,
           "*** (this is probably due to the use of static state variables)\n");            "*** (this is probably due to the use of static state variables)\n");
   
       print_data(fd, "K1", key[0], (keysize + 7) / 8);        print_data(fd, "K1", key[0].b, (keysize + 7) / 8);
       print_data(fd, "K2", key[1], (keysize + 7) / 8);        print_data(fd, "K2", key[1].b, (keysize + 7) / 8);
       print_data(fd, "IV1", iv[0], (ivsize + 7) / 8);        print_data(fd, "IV1", iv[0].b, (ivsize + 7) / 8);
       print_data(fd, "IV2", iv[1], (ivsize + 7) / 8);        print_data(fd, "IV2", iv[1].b, (ivsize + 7) / 8);
   
       print_data(fd, "(last part of) P", plaintext + B, msglen);        print_data(fd, "(last part of) P", plaintext.b + B, msglen);
       print_data(fd, "C by K1", ciphertext[0] + B, msglen);        print_data(fd, "C by K1", ciphertext[0].b + B, msglen);
       print_data(fd, "last part of C by K2", ciphertext[1] + B, msglen);        print_data(fd, "last part of C by K2", ciphertext[1].b + B, msglen);
       print_data(fd, "C by K1 after calls K2", ciphertext[2] + B, msglen);        print_data(fd, "C by K1 after calls K2", ciphertext[2].b + B, msglen);
       fprintf(fd, "\n");        fprintf(fd, "\n");
       fflush(fd);        fflush(fd);
     }      }
 #ifdef ECRYPT_AE  #ifdef ECRYPT_AE
   else if (compare_blocks(mac[0], mac[2], macsize) != 0)    else if (compare_blocks(mac[0].b, mac[2].b, macsize) != 0)
     {      {
       ++errors;        ++errors;
       fprintf(fd,        fprintf(fd,
Line 987 
Line 1000 
         "*** code produces inconsistent results when calls with different\n"          "*** code produces inconsistent results when calls with different\n"
         "*** contexts are interleaved:\n");          "*** contexts are interleaved:\n");
   
       if (compare_blocks(mac[1], mac[2], macsize) == 0)        if (compare_blocks(mac[1].b, mac[2].b, macsize) == 0)
         fprintf(fd,          fprintf(fd,
           "*** (this is probably due to the use of static state variables)\n");            "*** (this is probably due to the use of static state variables)\n");
   
       print_data(fd, "K1", key[0], (keysize + 7) / 8);        print_data(fd, "K1", key[0].b, (keysize + 7) / 8);
       print_data(fd, "K2", key[1], (keysize + 7) / 8);        print_data(fd, "K2", key[1].b, (keysize + 7) / 8);
       print_data(fd, "IV1", iv[0], (ivsize + 7) / 8);        print_data(fd, "IV1", iv[0].b, (ivsize + 7) / 8);
       print_data(fd, "IV2", iv[1], (ivsize + 7) / 8);        print_data(fd, "IV2", iv[1].b, (ivsize + 7) / 8);
   
       print_data(fd, "(last part of) P", plaintext, msglen);        print_data(fd, "(last part of) P", plaintext.b, msglen);
       print_data(fd, "MAC by K1", mac[0], (macsize + 7) / 8);        print_data(fd, "MAC by K1", mac[0].b, (macsize + 7) / 8);
       print_data(fd, "MAC by K2", mac[1], (macsize + 7) / 8);        print_data(fd, "MAC by K2", mac[1].b, (macsize + 7) / 8);
       print_data(fd, "MAC by K1 after K2 calls", mac[2], (macsize + 7) / 8);        print_data(fd, "MAC by K1 after K2 calls", mac[2].b, (macsize + 7) / 8);
       fprintf(fd, "\n");        fprintf(fd, "\n");
       fflush(fd);        fflush(fd);
     }      }
Line 1009 
Line 1022 
   
 #ifdef ECRYPT_SUPPORTS_AAD  #ifdef ECRYPT_SUPPORTS_AAD
   
   KEYSETUP(&ctx[0], key[0], keysize, ivsize, macsize);    KEYSETUP(&ctx[0], key[0].b, keysize, ivsize, macsize);
   IVSETUP(&ctx[0], iv[0]);    IVSETUP(&ctx[0], iv[0].b);
   AUTHENTICATE_BYTES(&ctx[0], plaintext, msglen);    AUTHENTICATE_BYTES(&ctx[0], plaintext.b, msglen);
   FINALIZE(&ctx[0], mac[0]);    FINALIZE(&ctx[0], mac[0].b);
   
   KEYSETUP(&ctx[1], key[1], keysize, ivsize, macsize);    KEYSETUP(&ctx[1], key[1].b, keysize, ivsize, macsize);
   IVSETUP(&ctx[1], iv[1]);    IVSETUP(&ctx[1], iv[1].b);
   AUTHENTICATE_BYTES(&ctx[1], plaintext, msglen);    AUTHENTICATE_BYTES(&ctx[1], plaintext.b, msglen);
   FINALIZE(&ctx[1], mac[1]);    FINALIZE(&ctx[1], mac[1].b);
   
   IVSETUP(&ctx[0], iv[0]);    IVSETUP(&ctx[0], iv[0].b);
   AUTHENTICATE_BYTES(&ctx[0], plaintext, msglen);    AUTHENTICATE_BYTES(&ctx[0], plaintext.b, msglen);
   
   IVSETUP(&ctx[1], iv[1]);    IVSETUP(&ctx[1], iv[1].b);
   AUTHENTICATE_BYTES(&ctx[1], plaintext, msglen);    AUTHENTICATE_BYTES(&ctx[1], plaintext.b, msglen);
   FINALIZE(&ctx[1], mac[2]);    FINALIZE(&ctx[1], mac[2].b);
   
   FINALIZE(&ctx[0], mac[2]);    FINALIZE(&ctx[0], mac[2].b);
   
   if (compare_blocks(mac[0], mac[2], macsize) != 0)    if (compare_blocks(mac[0].b, mac[2].b, macsize) != 0)
     {      {
       ++errors;        ++errors;
       fprintf(fd,        fprintf(fd,
Line 1036 
Line 1049 
         "*** code produces inconsistent results when calls with different\n"          "*** code produces inconsistent results when calls with different\n"
         "*** contexts are interleaved:\n");          "*** contexts are interleaved:\n");
   
       if (compare_blocks(mac[1], mac[2], macsize) == 0)        if (compare_blocks(mac[1].b, mac[2].b, macsize) == 0)
         fprintf(fd,          fprintf(fd,
           "*** (this is probably due to the use of static state variables)\n");            "*** (this is probably due to the use of static state variables)\n");
   
       print_data(fd, "K1", key[0], (keysize + 7) / 8);        print_data(fd, "K1", key[0].b, (keysize + 7) / 8);
       print_data(fd, "K2", key[1], (keysize + 7) / 8);        print_data(fd, "K2", key[1].b, (keysize + 7) / 8);
       print_data(fd, "IV1", iv[0], (ivsize + 7) / 8);        print_data(fd, "IV1", iv[0].b, (ivsize + 7) / 8);
       print_data(fd, "IV2", iv[1], (ivsize + 7) / 8);        print_data(fd, "IV2", iv[1].b, (ivsize + 7) / 8);
   
       print_data(fd, "AAD", plaintext, msglen);        print_data(fd, "AAD", plaintext.b, msglen);
       print_data(fd, "MAC by K1", mac[0], (macsize + 7) / 8);        print_data(fd, "MAC by K1", mac[0].b, (macsize + 7) / 8);
       print_data(fd, "MAC by K2", mac[1], (macsize + 7) / 8);        print_data(fd, "MAC by K2", mac[1].b, (macsize + 7) / 8);
       print_data(fd, "MAC by K1 after K2 calls", mac[2], (macsize + 7) / 8);        print_data(fd, "MAC by K1 after K2 calls", mac[2].b, (macsize + 7) / 8);
       fprintf(fd, "\n");        fprintf(fd, "\n");
       fflush(fd);        fflush(fd);
     }      }
Line 1059 
Line 1072 
   
 /* ------------------------------------------------------------------------- */  /* ------------------------------------------------------------------------- */
   
 #define KEYS_TO_TEST 100  #define PAGESIZE 0x2000
 #define TEST_TARGET 0x1000  
 #define TEST_BLOCKS (TEST_TARGET + ECRYPT_BLOCKLENGTH - 1) / ECRYPT_BLOCKLENGTH  void* aligned_malloc(size_t size)
   {
     void* ptr = malloc(size + PAGESIZE);
   
     if (ptr)
       {
         void* aligned = (void*)(((long)ptr + PAGESIZE) & ~(PAGESIZE - 1));
         ((void**)aligned)[-1] = ptr;
   
         return aligned;
       }
     else
       return NULL;
   }
   
   void aligned_free(void* aligned)
   {
     if (aligned)
       {
         void* ptr = ((void**)aligned)[-1];
         free(ptr);
       }
   }
   
   /* ------------------------------------------------------------------------- */
   
   #define BYTES_TO_BLOCKS(b) ((b + ECRYPT_BLOCKLENGTH - 1) / ECRYPT_BLOCKLENGTH)
   
 #define TEST_SPEED(LOOP, TEST)                                                \  #undef MAX
   #define MAX(a, b) ((a) > (b) ? (a) : (b))
   
   #define MIN_KEYS_TO_TEST 100
   #define MAX_KEYS_TO_TEST (0x1000000 / sizeof(CTX))
   
   #ifndef ECRYPT_BUFFERLENGTH
   #define ECRYPT_BUFFERLENGTH 0x1000
   #endif
   
   #define SMALL_BUFFER BYTES_TO_BLOCKS(0x100)
   #define FAST_BUFFER BYTES_TO_BLOCKS(ECRYPT_BUFFERLENGTH)
   
   #define TEST_SPEED(max_keys_to_test, LOOP, TEST)                              \
   do {                                                                        \    do {                                                                        \
                                                                               \                                                                                \
     for (keys_to_test = 1; 1; keys_to_test *= 10)                             \      for (keys_to_test = 1; 1; keys_to_test *= 10)                             \
Line 1075 
Line 1127 
         /* And then compute how many tests can be made in 1/10th second */    \          /* And then compute how many tests can be made in 1/10th second */    \
         start = clock();                                                      \          start = clock();                                                      \
                                                                               \                                                                                \
         for(i = 0; clock() < start + CLOCKS_PER_SEC / 10; )                   \          for(i = 0; clock() < start + CLOCKS_PER_SEC / 10; i++)                \
           for(j = 0; j < keys_to_test; j++, i++)                              \            for(j = 0; j < keys_to_test; j++)                                   \
             TEST;                                                             \              TEST;                                                             \
                                                                               \                                                                                \
          if ((i < 10) || (keys_to_test * 10 > KEYS_TO_TEST))                  \           if ((i < 10) || (keys_to_test * 10 > max_keys_to_test))              \
            break;                                                             \             break;                                                             \
       }                                                                       \        }                                                                       \
                                                                               \                                                                                \
     start = clock();                                                          \      start = clock();                                                          \
                                                                               \                                                                                \
     for(i = 0; clock() < start + CLOCKS_PER_SEC; )                            \      for(i = 0; clock() < start + CLOCKS_PER_SEC; i += keys_to_test)           \
       for(j = 0; j < keys_to_test; j++, i++)                                  \        for(j = 0; j < keys_to_test; j++)                                       \
         TEST;                                                                 \          TEST;                                                                 \
                                                                               \                                                                                \
     /* Now test for about test_time seconds under keys_to_test keys */        \      /* Now test for about test_time seconds under keys_to_test keys */        \
Line 1133 
Line 1185 
   
 void test_speed(FILE *fd, int keysize, int ivsize, int macsize)  void test_speed(FILE *fd, int keysize, int ivsize, int macsize)
 {  {
   CTX ctx[KEYS_TO_TEST];    ALIGN(u8, key[MIN_KEYS_TO_TEST], MAXKEYSIZEB);
     ALIGN(u8, iv[MIN_KEYS_TO_TEST], MAXIVSIZEB);
   u8 key[KEYS_TO_TEST][MAXKEYSIZEB];    ALIGN(u8, *text, MAX(SMALL_BUFFER, FAST_BUFFER) * ECRYPT_BLOCKLENGTH);
   u8 iv[KEYS_TO_TEST][MAXIVSIZEB];  
   u8 text[2][TEST_BLOCKS * ECRYPT_BLOCKLENGTH];  
 #ifdef ECRYPT_AE  #ifdef ECRYPT_AE
   u8 mac[MAXMACSIZEB];    ALIGN(u8, mac, MAXMACSIZEB);
 #endif  #endif
   
     CTX* ctx;
   
   int tests, tests_per_key, keys_to_test;    int tests, tests_per_key, keys_to_test;
   clock_t start, finish;    clock_t start, finish;
   int clocks;    int clocks;
Line 1177 
Line 1229 
   
   fprintf(fd, "Size of %s: %d bytes\n\n", QUOTE(CTX), (int)sizeof(CTX));    fprintf(fd, "Size of %s: %d bytes\n\n", QUOTE(CTX), (int)sizeof(CTX));
   
   for(i = 0; i < KEYS_TO_TEST; i++)    text = aligned_malloc(2 * FAST_BUFFER * ECRYPT_BLOCKLENGTH * sizeof(u8));
     ctx = aligned_malloc(MIN_KEYS_TO_TEST * sizeof(CTX));
   
     for(i = 0; i < MIN_KEYS_TO_TEST; i++)
     {      {
       for(j = 0; j < MAXKEYSIZEB; j++)        for(j = 0; j < MAXKEYSIZEB; j++)
         key[i][j] = U8V(rand());          key[i].b[j] = U8V(rand());
   
       for(j = 0; j < MAXIVSIZEB; j++)        for(j = 0; j < MAXIVSIZEB; j++)
         iv[i][j] = U8V(rand());          iv[i].b[j] = U8V(rand());
   
       KEYSETUP(&ctx[i], key[i], keysize, ivsize, macsize);        KEYSETUP(&ctx[i], key[i].b, keysize, ivsize, macsize);
       IVSETUP(&ctx[i], iv[i]);        IVSETUP(&ctx[i], iv[i].b);
     }      }
   
   for(i = 0; i < TEST_BLOCKS * ECRYPT_BLOCKLENGTH; i++)    for(i = 0; i < FAST_BUFFER * ECRYPT_BLOCKLENGTH; i++)
     text[0][i] = U8V(rand());      text[0].b[i] = U8V(rand());
   
   fprintf(fd, "Testing stream encryption speed:\n\n");    fprintf(fd, "Testing stream encryption speed:\n\n");
   fflush(fd);    fflush(fd);
   
   TEST_SPEED(FOR_I_FOR_J, do    TEST_SPEED(MIN_KEYS_TO_TEST, FOR_I_FOR_J, do
     {      {
       ENCRYPT_BLOCKS(&ctx[i % KEYS_TO_TEST],        ENCRYPT_BLOCKS(&ctx[i % MIN_KEYS_TO_TEST],
         text[i % 2], text[(i + 1) % 2], TEST_BLOCKS);          text[i % 2].b, text[(i + 1) % 2].b, FAST_BUFFER);
   
     } while (0));      } while (0));
   
   fprintf(fd,    fprintf(fd,
     "Encrypted %d blocks of %d bytes (under %d keys, %d blocks/key)\n",      "Encrypted %d blocks of %d bytes (under %d keys, %d blocks/key)\n",
     tests, TEST_BLOCKS * ECRYPT_BLOCKLENGTH, keys_to_test, tests_per_key);      tests, FAST_BUFFER * ECRYPT_BLOCKLENGTH, keys_to_test, tests_per_key);
   
   fprintf(fd, "Total time: %d clock ticks (%.2f seconds)\n",    fprintf(fd, "Total time: %d clock ticks (%.2f seconds)\n",
     clocks, (double)clocks / (double)CLOCKS_PER_SEC);      clocks, (double)clocks / (double)CLOCKS_PER_SEC);
   
   usec /= (double)(TEST_BLOCKS * ECRYPT_BLOCKLENGTH);    usec /= (double)(FAST_BUFFER * ECRYPT_BLOCKLENGTH);
   usec_enc = usec;    usec_enc = usec;
   
   fprintf(fd, "Encryption speed (cycles/byte): %.2f\n", usec * cpu_speed);    fprintf(fd, "Encryption speed (cycles/byte): %.2f\n", usec * cpu_speed);
Line 1217 
Line 1272 
   
   fprintf(fd, "\n");    fprintf(fd, "\n");
   
   for(i = 0; i < KEYS_TO_TEST; i++)    for(i = 0; i < MIN_KEYS_TO_TEST; i++)
     FINALIZE(&ctx[i], mac);      FINALIZE(&ctx[i], mac.b);
   
   if (test_packet)    if (test_packet)
     {      {
Line 1227 
Line 1282 
   
       for (k = 0; k < 3; k++)        for (k = 0; k < 3; k++)
         {          {
           TEST_SPEED(FOR_I_FOR_J, do            TEST_SPEED(MIN_KEYS_TO_TEST, FOR_I_FOR_J, do
           {            {
             ENCRYPT_PACKET(&ctx[i % KEYS_TO_TEST], iv[j % KEYS_TO_TEST],              ENCRYPT_PACKET(&ctx[i % MIN_KEYS_TO_TEST],
               NULL, 0, text[i % 2], text[(i + 1) % 2], sizes[k], mac);                iv[j % MIN_KEYS_TO_TEST].b, NULL, 0,
                 text[i % 2].b, text[(i + 1) % 2].b, sizes[k], mac.b);
   
           } while (0));            } while (0));
   
Line 1281 
Line 1337 
       fprintf(fd, "Testing key setup speed:\n\n");        fprintf(fd, "Testing key setup speed:\n\n");
       fflush(fd);        fflush(fd);
   
       TEST_SPEED(FOR_J_FOR_I, do        TEST_SPEED(MIN_KEYS_TO_TEST, FOR_J_FOR_I, do
       {        {
         KEYSETUP(&ctx[0], key[i % KEYS_TO_TEST], keysize, ivsize, macsize);          KEYSETUP(&ctx[0], key[i % MIN_KEYS_TO_TEST].b,
             keysize, ivsize, macsize);
   
       } while (0));        } while (0));
   
Line 1306 
Line 1363 
 #endif  #endif
       fflush(fd);        fflush(fd);
   
       TEST_SPEED(FOR_I_FOR_J, do        TEST_SPEED(MIN_KEYS_TO_TEST, FOR_I_FOR_J, do
       {        {
         IVSETUP(&ctx[i % KEYS_TO_TEST], iv[j % KEYS_TO_TEST]);          IVSETUP(&ctx[i % MIN_KEYS_TO_TEST], iv[j % MIN_KEYS_TO_TEST].b);
         FINALIZE(&ctx[i % KEYS_TO_TEST], mac);          FINALIZE(&ctx[i % MIN_KEYS_TO_TEST], mac.b);
   
       } while (0));        } while (0));
   
Line 1327 
Line 1384 
       fflush(fd);        fflush(fd);
     }      }
   
     if (test_agility)
       {
         int* order;
         int current = 0;
   
         aligned_free(ctx);
         ctx = aligned_malloc(MAX_KEYS_TO_TEST * sizeof(CTX));
         order = malloc(MAX_KEYS_TO_TEST * sizeof(int));
   
         for(i = 0; i < MAX_KEYS_TO_TEST; i++)
           {
             for(j = 0; j < MAXKEYSIZEB; j++)
               key[0].b[j] = U8V(rand());
   
             for(j = 0; j < MAXIVSIZEB; j++)
               iv[0].b[j] = U8V(rand());
   
             KEYSETUP(&ctx[i], key[0].b, keysize, ivsize, macsize);
             IVSETUP(&ctx[i], iv[0].b);
           }
   
         for(i = 0; i < MAX_KEYS_TO_TEST; i++)
           order[i] = i;
   
         for(i = 0; i < MAX_KEYS_TO_TEST; i++)
           {
             const int j = i + (rand() % (MAX_KEYS_TO_TEST - i));
             const int tmp = order[i];
   
             order[i] = order[j];
             order[j] = tmp;
           }
   
         fprintf(fd, "Testing key agility:\n\n");
         fflush(fd);
   
         TEST_SPEED(MAX_KEYS_TO_TEST, FOR_J_FOR_I, do
         {
           ENCRYPT_BLOCKS(&ctx[order[(++current) % MAX_KEYS_TO_TEST]],
             text[i % 2].b, text[(i + 1) % 2].b, SMALL_BUFFER);
   
         } while (0));
   
         fprintf(fd,
           "Encrypted %d blocks of %d bytes (each time switching contexts)\n",
           tests, SMALL_BUFFER * ECRYPT_BLOCKLENGTH);
   
         fprintf(fd, "Total time: %d clock ticks (%.2f seconds)\n",
           clocks, (double)clocks / (double)CLOCKS_PER_SEC);
   
         usec /= (double)(SMALL_BUFFER * ECRYPT_BLOCKLENGTH);
   
         fprintf(fd, "Encryption speed (cycles/byte): %.2f\n", usec * cpu_speed);
         fprintf(fd, "Encryption speed (Mbps): %.2f\n", 8.0 / usec);
         fprintf(fd, "Overhead: %.1f%%\n", 100.0 * (usec / usec_enc - 1.0));
   
         fprintf(fd, "\n");
   
         for(i = 0; i < MAX_KEYS_TO_TEST; i++)
           FINALIZE(&ctx[i], mac.b);
   
         free(order);
       }
   
   fprintf(fd, "\nEnd of performance measurements\n");    fprintf(fd, "\nEnd of performance measurements\n");
   fflush(fd);    fflush(fd);
   
     aligned_free(text);
     aligned_free(ctx);
 }  }
   
 /* ------------------------------------------------------------------------- */  /* ------------------------------------------------------------------------- */
Line 1351 
Line 1475 
   
 int main(int argc, char *argv[])  int main(int argc, char *argv[])
 {  {
   int keysize = 0;    int numtests = 0;
   int ivsize = 0;  
   int macsize = 0;    int keytarget[8];
     int ivtarget[8];
     int mactarget[8];
   
     int keysize[8];
     int ivsize[8];
     int macsize[8];
   
   int k, i, m;    int k, i, m, j;
     int s;
   
     while(argc > 1)
       {
         char* p = *(++argv);
         argc--;
   
   while((argc > 1) && (argv[1][0] == '-'))        switch (*(p++))
     {      {
       switch (argv[1][1])          case '-':
             while (*p)
               switch (*(p++))
         {          {
         case 'v':          case 'v':
           output_vectors = 1;            output_vectors = 1;
           break;            break;
         case 'c':          case 'c':
                   if (!(*p) && (argc > 1))
                     {
                       p = *(++argv);
           argc--;            argc--;
           argv++;                    }
   
           if (argc > 1)  
             cpu_speed = atof(argv[1]);  
   
                   cpu_speed = strtod(p, &p);
           break;            break;
         case 't':          case 't':
                   if (!(*p) && (argc > 1))
                     {
                       p = *(++argv);
           argc--;            argc--;
           argv++;                    }
   
           if (argc > 1)  
             test_time = atof(argv[1]);  
   
                   test_time = strtod(p, &p);
           break;            break;
         case 'p':          case 'p':
           test_packet = 0;            test_packet = 0;
Line 1386 
Line 1526 
         case 'k':          case 'k':
           test_setup = 0;            test_setup = 0;
           break;            break;
         case 's':                case 'a':
           single_key = 1;                  test_agility = 0;
           break;            break;
                 case 's':
                   if (!(*p) && (argc > 1))
                     {
                       p = *(++argv);
                       argc--;
                     }
   
                   keytarget[numtests] = strtol(p, &p, 0);
   
                   if (!(*p) && (argc > 1))
                     {
                       p = *(++argv);
                       argc--;
         }          }
   
                   ivtarget[numtests] = strtol(p, &p, 0);
   
                   if (!(*p) && (argc > 1))
                     {
                       p = *(++argv);
       argc--;        argc--;
       argv++;                    }
   
                   mactarget[numtests] = strtol(p, &p, 0);
   
                   if (numtests + 1 < 8)
                     numtests++;
   
                   break;
                 case 'q':
                   quiet = 1;
                   break;
                 default:
                   fprintf(stderr, "warning: invalid option '%c'\n", p[-1]);
                 }
             break;
           default:
             fprintf(stderr, "warning: invalid argument '%s'\n", argv[0]);
           }
     }      }
   
   if (!output_vectors && (cpu_speed <= 0))    if (!output_vectors && (cpu_speed <= 0))
     {      {
       printf("Usage: ecrypt-test [OPTIONS]\n"        fprintf(stderr,
           "Usage: ecrypt-test [OPTIONS]\n"
              "\n"               "\n"
              "  -v      generate test vectors\n"               "  -v      generate test vectors\n"
              "  -c MHZ  perform speed measurements assuming the given "               "  -c MHZ  perform speed measurements assuming the given "
Line 1405 
Line 1581 
              "  -t SEC  limit the duration of the tests (default: 3 seconds)\n"               "  -t SEC  limit the duration of the tests (default: 3 seconds)\n"
              "  -p      do not test packet encryption speed\n"               "  -p      do not test packet encryption speed\n"
              "  -k      do not test key and IV setup speed\n"               "  -k      do not test key and IV setup speed\n"
              "  -s      perform tests for a single key and IV length\n");          "  -a      do not test key agility\n"
           "  -s KEY IV MAC\n"
           "          only perform tests for specified key/IV/MAC length\n"
           "          (this option can be specified more than once)\n"
           "  -q      be quiet\n");
   
       exit(1);        exit(2);
     }      }
   
   print_header(stdout);    print_header(stdout);
   
   ECRYPT_init();    ECRYPT_init();
   
   for (k = 0; ECRYPT_KEYSIZE(k) <= ECRYPT_MAXKEYSIZE; k++)    if (numtests > 0)
       for (j = 0; j < numtests; ++j)
     {      {
       if ((k > 0) && (ECRYPT_KEYSIZE(k) <= ECRYPT_KEYSIZE(k - 1)))          keysize[j] = ECRYPT_KEYSIZE(0);
           ivsize[j] = ECRYPT_IVSIZE(0);
           macsize[j] = ECRYPT_MACSIZE(0);
         }
     else
       keysize[0] = ivsize[0] = macsize[0] = -1;
   
     for (k = 0, j = 0; (s = ECRYPT_KEYSIZE(k)) <= ECRYPT_MAXKEYSIZE; k++)
       {
         if ((k > 0) && (s <= ECRYPT_KEYSIZE(k - 1)))
         {          {
           ++errors;            ++errors;
           fprintf(stdout,            fprintf(stdout,
Line 1424 
Line 1614 
           break;            break;
         }          }
   
       if (abs(ECRYPT_KEYSIZE(k) - 128) < abs(keysize - 128))        if (numtests > 0)
         keysize = ECRYPT_KEYSIZE(k);          {
             for (j = 0; j < numtests; ++j)
               if (abs(s - keytarget[j]) < abs(keysize[j] - keytarget[j]))
                 keysize[j] = s;
           }
         else
           /* Only powers of 2 or multiples of 80 between 64 and 256 */
           if ((s >= 64) && (s <= 256) && (!(s & (s - 1)) || !(s % 80)))
               {
                 keysize[j] = s;
                 keysize[++j] = -1;
               }
     }      }
   
   for (i = 0; ECRYPT_IVSIZE(i) <= ECRYPT_MAXIVSIZE; i++)    for (i = 0, j = 0; (s = ECRYPT_IVSIZE(i)) <= ECRYPT_MAXIVSIZE; i++)
     {      {
       if ((i > 0) && (ECRYPT_IVSIZE(i) <= ECRYPT_IVSIZE(i - 1)))        if ((i > 0) && (s <= ECRYPT_IVSIZE(i - 1)))
         {          {
           ++errors;            ++errors;
           fprintf(stdout,            fprintf(stdout,
Line 1438 
Line 1639 
           break;            break;
         }          }
   
       if (abs(ECRYPT_IVSIZE(i) - 64) < abs(ivsize - 64))        if (numtests > 0)
         ivsize = ECRYPT_IVSIZE(i);          {
             for (j = 0; j < numtests; ++j)
               if (abs(s - ivtarget[j]) < abs(ivsize[j] - ivtarget[j]))
                 ivsize[j] = s;
           }
         else
           /* Only powers of 2 larger than 32 or multiples of 80 */
           if ((s <= 256) && (((s >= 32) && !(s & (s - 1))) || !(s % 80)))
               {
                 ivsize[j] = s;
                 ivsize[++j] = -1;
               }
     }      }
   
   for (m = 0; ECRYPT_MACSIZE(m) <= ECRYPT_MAXMACSIZE; m++)    for (m = 0, j = 0; (s = ECRYPT_MACSIZE(m)) <= ECRYPT_MAXMACSIZE; m++)
     {      {
       if ((m > 0) && (ECRYPT_MACSIZE(m) <= ECRYPT_MACSIZE(m - 1)))        if ((m > 0) && (s <= ECRYPT_MACSIZE(m - 1)))
         {          {
           ++errors;            ++errors;
           fprintf(stdout,            fprintf(stdout,
Line 1452 
Line 1664 
           break;            break;
         }          }
   
       if (abs(ECRYPT_MACSIZE(m) - 64) < abs(macsize - 64))        if (numtests > 0)
         macsize = ECRYPT_MACSIZE(m);          {
             for (j = 0; j < numtests; ++j)
               if (abs(s - mactarget[j]) < abs(macsize[j] - mactarget[j]))
                 macsize[j] = s;
     }      }
   
   check_status();  
   
   if (single_key)  
     run_tests(stdout, keysize, ivsize, macsize);  
   else    else
     for (k = 0; (keysize=ECRYPT_KEYSIZE(k)) <= ECRYPT_MAXKEYSIZE; k++)          /* Only multiples of 32 smaller than 128 */
           if (!(s % 32) && (s <= 128))
       {        {
         if ((k > 0) && (keysize <= ECRYPT_KEYSIZE(k - 1)))                macsize[j] = s;
           break;                macsize[++j] = -1;
               }
         /* Only powers of 2 or multiples of 80 larger than 64 */      }
         if (((keysize & (keysize - 1)) && (keysize % 80)) || (keysize < 64))  
           continue;  
   
         /* Not interested in key sizes exceeding 256 bits */    check_status();
         if (keysize > 256)  
           break;  
   
         for (i = 0; (ivsize=ECRYPT_IVSIZE(i)) <= ECRYPT_MAXIVSIZE; i++)    if (numtests > 0)
       for (j = 0; j < numtests; j++)
           {            {
             if ((i > 0) && (ivsize <= ECRYPT_IVSIZE(i - 1)))          int duplicate = 0;
               break;  
   
             /* Only powers of 2 larger than 32 or multiples of 80 */  
             if (((ivsize & (ivsize - 1)) || (ivsize < 32)) && (ivsize % 80))  
               continue;  
   
             /* Not interested in IV sizes exceeding 256 bits */  
             if (ivsize > 256)  
               break;  
   
             for (m = 0; (macsize=ECRYPT_MACSIZE(m)) <= ECRYPT_MAXMACSIZE; m++)          for (i = 0; i < j; i++)
             if ((keysize[i] == keysize[j]) &&
                 (ivsize[i] == ivsize[j]) &&
                 (macsize[i] == macsize[j]))
               {                {
                 if ((m > 0) && (macsize <= ECRYPT_MACSIZE(m - 1)))                duplicate = 1;
                   break;                    break;
   
                 /* Only multiples of 32 */  
                 if (macsize % 32)  
                   continue;  
   
                 /* Not interested in MAC sizes exceeding 256 bits */  
                 if (macsize > 256)  
                   break;  
   
                 run_tests(stdout, keysize, ivsize, macsize);  
               }  
           }            }
   
           if (!duplicate)
             run_tests(stdout, keysize[j], ivsize[j], macsize[j]);
       }        }
     else
       for (k = 0; keysize[k] >= 0; k++)
         for (i = 0; ivsize[i] >= 0; i++)
           for (m = 0; macsize[m] >= 0; m++)
             run_tests(stdout, keysize[k], ivsize[i], macsize[m]);
   
     if (!quiet)
       {
   fprintf(stderr, "Elapsed time: %.2f seconds.\n",    fprintf(stderr, "Elapsed time: %.2f seconds.\n",
     (double)clock() / (double)CLOCKS_PER_SEC);      (double)clock() / (double)CLOCKS_PER_SEC);
   fprintf(stderr, "There were %d errors.\n", errors);    fprintf(stderr, "There were %d errors.\n", errors);
       }
   
   if (errors)    if (errors)
     return 1;      return 3;
   else    else
     return 0;      return 0;
 }  }


Generate output suitable for use with a patch program
Legend:
Removed from v.40  
changed lines
  Added in v.107

eSTREAM Project

Powered by ViewCVS 1.0-dev
(Powered by Apache)

ViewCVS and CVS Help