PageRenderTime 45ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/tests/test-aes.c

https://github.com/TeamBAKED/external_wpa_supplicant_8_ti
C | 582 lines | 496 code | 52 blank | 34 comment | 51 complexity | 613d3f36fa869a1badac408185499299 MD5 | raw file
  1. /*
  2. * Test program for AES
  3. * Copyright (c) 2003-2012, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "includes.h"
  9. #include "common.h"
  10. #include "crypto/crypto.h"
  11. #include "crypto/aes_wrap.h"
  12. #define BLOCK_SIZE 16
  13. static void test_aes_perf(void)
  14. {
  15. #if 0 /* this did not seem to work with new compiler?! */
  16. #ifdef __i386__
  17. #define rdtscll(val) \
  18. __asm__ __volatile__("rdtsc" : "=A" (val))
  19. const int num_iters = 10;
  20. int i;
  21. unsigned int start, end;
  22. u8 key[16], pt[16], ct[16];
  23. void *ctx;
  24. printf("keySetupEnc:");
  25. for (i = 0; i < num_iters; i++) {
  26. rdtscll(start);
  27. ctx = aes_encrypt_init(key, 16);
  28. rdtscll(end);
  29. aes_encrypt_deinit(ctx);
  30. printf(" %d", end - start);
  31. }
  32. printf("\n");
  33. printf("Encrypt:");
  34. ctx = aes_encrypt_init(key, 16);
  35. for (i = 0; i < num_iters; i++) {
  36. rdtscll(start);
  37. aes_encrypt(ctx, pt, ct);
  38. rdtscll(end);
  39. printf(" %d", end - start);
  40. }
  41. aes_encrypt_deinit(ctx);
  42. printf("\n");
  43. #endif /* __i386__ */
  44. #endif
  45. }
  46. static int test_eax(void)
  47. {
  48. u8 msg[] = { 0xF7, 0xFB };
  49. u8 key[] = { 0x91, 0x94, 0x5D, 0x3F, 0x4D, 0xCB, 0xEE, 0x0B,
  50. 0xF4, 0x5E, 0xF5, 0x22, 0x55, 0xF0, 0x95, 0xA4 };
  51. u8 nonce[] = { 0xBE, 0xCA, 0xF0, 0x43, 0xB0, 0xA2, 0x3D, 0x84,
  52. 0x31, 0x94, 0xBA, 0x97, 0x2C, 0x66, 0xDE, 0xBD };
  53. u8 hdr[] = { 0xFA, 0x3B, 0xFD, 0x48, 0x06, 0xEB, 0x53, 0xFA };
  54. u8 cipher[] = { 0x19, 0xDD, 0x5C, 0x4C, 0x93, 0x31, 0x04, 0x9D,
  55. 0x0B, 0xDA, 0xB0, 0x27, 0x74, 0x08, 0xF6, 0x79,
  56. 0x67, 0xE5 };
  57. u8 data[sizeof(msg)], tag[BLOCK_SIZE];
  58. memcpy(data, msg, sizeof(msg));
  59. if (aes_128_eax_encrypt(key, nonce, sizeof(nonce), hdr, sizeof(hdr),
  60. data, sizeof(data), tag)) {
  61. printf("AES-128 EAX mode encryption failed\n");
  62. return 1;
  63. }
  64. if (memcmp(data, cipher, sizeof(data)) != 0) {
  65. printf("AES-128 EAX mode encryption returned invalid cipher "
  66. "text\n");
  67. return 1;
  68. }
  69. if (memcmp(tag, cipher + sizeof(data), BLOCK_SIZE) != 0) {
  70. printf("AES-128 EAX mode encryption returned invalid tag\n");
  71. return 1;
  72. }
  73. if (aes_128_eax_decrypt(key, nonce, sizeof(nonce), hdr, sizeof(hdr),
  74. data, sizeof(data), tag)) {
  75. printf("AES-128 EAX mode decryption failed\n");
  76. return 1;
  77. }
  78. if (memcmp(data, msg, sizeof(data)) != 0) {
  79. printf("AES-128 EAX mode decryption returned invalid plain "
  80. "text\n");
  81. return 1;
  82. }
  83. return 0;
  84. }
  85. static int test_cbc(void)
  86. {
  87. struct cbc_test_vector {
  88. u8 key[16];
  89. u8 iv[16];
  90. u8 plain[32];
  91. u8 cipher[32];
  92. size_t len;
  93. } vectors[] = {
  94. {
  95. { 0x06, 0xa9, 0x21, 0x40, 0x36, 0xb8, 0xa1, 0x5b,
  96. 0x51, 0x2e, 0x03, 0xd5, 0x34, 0x12, 0x00, 0x06 },
  97. { 0x3d, 0xaf, 0xba, 0x42, 0x9d, 0x9e, 0xb4, 0x30,
  98. 0xb4, 0x22, 0xda, 0x80, 0x2c, 0x9f, 0xac, 0x41 },
  99. "Single block msg",
  100. { 0xe3, 0x53, 0x77, 0x9c, 0x10, 0x79, 0xae, 0xb8,
  101. 0x27, 0x08, 0x94, 0x2d, 0xbe, 0x77, 0x18, 0x1a },
  102. 16
  103. },
  104. {
  105. { 0xc2, 0x86, 0x69, 0x6d, 0x88, 0x7c, 0x9a, 0xa0,
  106. 0x61, 0x1b, 0xbb, 0x3e, 0x20, 0x25, 0xa4, 0x5a },
  107. { 0x56, 0x2e, 0x17, 0x99, 0x6d, 0x09, 0x3d, 0x28,
  108. 0xdd, 0xb3, 0xba, 0x69, 0x5a, 0x2e, 0x6f, 0x58 },
  109. { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
  110. 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
  111. 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
  112. 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f },
  113. { 0xd2, 0x96, 0xcd, 0x94, 0xc2, 0xcc, 0xcf, 0x8a,
  114. 0x3a, 0x86, 0x30, 0x28, 0xb5, 0xe1, 0xdc, 0x0a,
  115. 0x75, 0x86, 0x60, 0x2d, 0x25, 0x3c, 0xff, 0xf9,
  116. 0x1b, 0x82, 0x66, 0xbe, 0xa6, 0xd6, 0x1a, 0xb1 },
  117. 32
  118. }
  119. };
  120. int ret = 0;
  121. u8 *buf;
  122. unsigned int i;
  123. for (i = 0; i < sizeof(vectors) / sizeof(vectors[0]); i++) {
  124. struct cbc_test_vector *tv = &vectors[i];
  125. buf = malloc(tv->len);
  126. if (buf == NULL) {
  127. ret++;
  128. break;
  129. }
  130. memcpy(buf, tv->plain, tv->len);
  131. if (aes_128_cbc_encrypt(tv->key, tv->iv, buf, tv->len) ||
  132. memcmp(buf, tv->cipher, tv->len) != 0) {
  133. printf("AES-CBC encrypt %d failed\n", i);
  134. ret++;
  135. }
  136. memcpy(buf, tv->cipher, tv->len);
  137. if (aes_128_cbc_decrypt(tv->key, tv->iv, buf, tv->len) ||
  138. memcmp(buf, tv->plain, tv->len) != 0) {
  139. printf("AES-CBC decrypt %d failed\n", i);
  140. ret++;
  141. }
  142. free(buf);
  143. }
  144. return ret;
  145. }
  146. /*
  147. * GCM test vectors from
  148. * http://csrc.nist.gov/groups/ST/toolkit/BCM/documents/proposedmodes/gcm/gcm-spec.pdf
  149. */
  150. struct gcm_test_vector {
  151. char *k;
  152. char *p;
  153. char *aad;
  154. char *iv;
  155. char *c;
  156. char *t;
  157. };
  158. static const struct gcm_test_vector gcm_tests[] = {
  159. {
  160. /* Test Case 1 */
  161. "00000000000000000000000000000000",
  162. "",
  163. "",
  164. "000000000000000000000000",
  165. "",
  166. "58e2fccefa7e3061367f1d57a4e7455a"
  167. },
  168. {
  169. /* Test Case 2 */
  170. "00000000000000000000000000000000",
  171. "00000000000000000000000000000000",
  172. "",
  173. "000000000000000000000000",
  174. "0388dace60b6a392f328c2b971b2fe78",
  175. "ab6e47d42cec13bdf53a67b21257bddf"
  176. },
  177. {
  178. /* Test Case 3 */
  179. "feffe9928665731c6d6a8f9467308308",
  180. "d9313225f88406e5a55909c5aff5269a86a7a9531534f7da2e4c303d8a318a721c3c0c95956809532fcf0e2449a6b525b16aedf5aa0de657ba637b391aafd255",
  181. "",
  182. "cafebabefacedbaddecaf888",
  183. "42831ec2217774244b7221b784d0d49ce3aa212f2c02a4e035c17e2329aca12e21d514b25466931c7d8f6a5aac84aa051ba30b396a0aac973d58e091473f5985",
  184. "4d5c2af327cd64a62cf35abd2ba6fab4"
  185. },
  186. {
  187. /* Test Case 4 */
  188. "feffe9928665731c6d6a8f9467308308",
  189. "d9313225f88406e5a55909c5aff5269a86a7a9531534f7da2e4c303d8a318a721c3c0c95956809532fcf0e2449a6b525b16aedf5aa0de657ba637b39",
  190. "feedfacedeadbeeffeedfacedeadbeefabaddad2",
  191. "cafebabefacedbaddecaf888",
  192. "42831ec2217774244b7221b784d0d49ce3aa212f2c02a4e035c17e2329aca12e21d514b25466931c7d8f6a5aac84aa051ba30b396a0aac973d58e091",
  193. "5bc94fbc3221a5db94fae95ae7121a47"
  194. },
  195. {
  196. /* Test Case 5 */
  197. "feffe9928665731c6d6a8f9467308308",
  198. "d9313225f88406e5a55909c5aff5269a86a7a9531534f7da2e4c303d8a318a721c3c0c95956809532fcf0e2449a6b525b16aedf5aa0de657ba637b39",
  199. "feedfacedeadbeeffeedfacedeadbeefabaddad2",
  200. "cafebabefacedbad",
  201. "61353b4c2806934a777ff51fa22a4755699b2a714fcdc6f83766e5f97b6c742373806900e49f24b22b097544d4896b424989b5e1ebac0f07c23f4598",
  202. "3612d2e79e3b0785561be14aaca2fccb"
  203. },
  204. {
  205. /* Test Case 6 */
  206. "feffe9928665731c6d6a8f9467308308",
  207. "d9313225f88406e5a55909c5aff5269a86a7a9531534f7da2e4c303d8a318a721c3c0c95956809532fcf0e2449a6b525b16aedf5aa0de657ba637b39",
  208. "feedfacedeadbeeffeedfacedeadbeefabaddad2",
  209. "9313225df88406e555909c5aff5269aa6a7a9538534f7da1e4c303d2a318a728c3c0c95156809539fcf0e2429a6b525416aedbf5a0de6a57a637b39b",
  210. "8ce24998625615b603a033aca13fb894be9112a5c3a211a8ba262a3cca7e2ca701e4a9a4fba43c90ccdcb281d48c7c6fd62875d2aca417034c34aee5",
  211. "619cc5aefffe0bfa462af43c1699d050"
  212. },
  213. {
  214. /* Test Case 7 */
  215. "000000000000000000000000000000000000000000000000",
  216. "",
  217. "",
  218. "000000000000000000000000",
  219. "",
  220. "cd33b28ac773f74ba00ed1f312572435"
  221. },
  222. {
  223. /* Test Case 8 */
  224. "000000000000000000000000000000000000000000000000",
  225. "00000000000000000000000000000000",
  226. "",
  227. "000000000000000000000000",
  228. "98e7247c07f0fe411c267e4384b0f600",
  229. "2ff58d80033927ab8ef4d4587514f0fb"
  230. },
  231. {
  232. /* Test Case 9 */
  233. "feffe9928665731c6d6a8f9467308308feffe9928665731c",
  234. "d9313225f88406e5a55909c5aff5269a86a7a9531534f7da2e4c303d8a318a721c3c0c95956809532fcf0e2449a6b525b16aedf5aa0de657ba637b391aafd255",
  235. "",
  236. "cafebabefacedbaddecaf888",
  237. "3980ca0b3c00e841eb06fac4872a2757859e1ceaa6efd984628593b40ca1e19c7d773d00c144c525ac619d18c84a3f4718e2448b2fe324d9ccda2710acade256",
  238. "9924a7c8587336bfb118024db8674a14"
  239. },
  240. {
  241. /* Test Case 10 */
  242. "feffe9928665731c6d6a8f9467308308feffe9928665731c",
  243. "d9313225f88406e5a55909c5aff5269a86a7a9531534f7da2e4c303d8a318a721c3c0c95956809532fcf0e2449a6b525b16aedf5aa0de657ba637b39",
  244. "feedfacedeadbeeffeedfacedeadbeefabaddad2",
  245. "cafebabefacedbaddecaf888",
  246. "3980ca0b3c00e841eb06fac4872a2757859e1ceaa6efd984628593b40ca1e19c7d773d00c144c525ac619d18c84a3f4718e2448b2fe324d9ccda2710",
  247. "2519498e80f1478f37ba55bd6d27618c"
  248. },
  249. {
  250. /* Test Case 11 */
  251. "feffe9928665731c6d6a8f9467308308feffe9928665731c",
  252. "d9313225f88406e5a55909c5aff5269a86a7a9531534f7da2e4c303d8a318a721c3c0c95956809532fcf0e2449a6b525b16aedf5aa0de657ba637b39",
  253. "feedfacedeadbeeffeedfacedeadbeefabaddad2",
  254. "cafebabefacedbad",
  255. "0f10f599ae14a154ed24b36e25324db8c566632ef2bbb34f8347280fc4507057fddc29df9a471f75c66541d4d4dad1c9e93a19a58e8b473fa0f062f7",
  256. "65dcc57fcf623a24094fcca40d3533f8"
  257. },
  258. {
  259. /* Test Case 12 */
  260. "feffe9928665731c6d6a8f9467308308feffe9928665731c",
  261. "d9313225f88406e5a55909c5aff5269a86a7a9531534f7da2e4c303d8a318a721c3c0c95956809532fcf0e2449a6b525b16aedf5aa0de657ba637b39",
  262. "feedfacedeadbeeffeedfacedeadbeefabaddad2",
  263. "9313225df88406e555909c5aff5269aa6a7a9538534f7da1e4c303d2a318a728c3c0c95156809539fcf0e2429a6b525416aedbf5a0de6a57a637b39b",
  264. "d27e88681ce3243c4830165a8fdcf9ff1de9a1d8e6b447ef6ef7b79828666e4581e79012af34ddd9e2f037589b292db3e67c036745fa22e7e9b7373b",
  265. "dcf566ff291c25bbb8568fc3d376a6d9"
  266. },
  267. {
  268. /* Test Case 13 */
  269. "0000000000000000000000000000000000000000000000000000000000000000",
  270. "",
  271. "",
  272. "000000000000000000000000",
  273. "",
  274. "530f8afbc74536b9a963b4f1c4cb738b"
  275. },
  276. {
  277. /* Test Case 14 */
  278. "0000000000000000000000000000000000000000000000000000000000000000",
  279. "00000000000000000000000000000000",
  280. "",
  281. "000000000000000000000000",
  282. "cea7403d4d606b6e074ec5d3baf39d18",
  283. "d0d1c8a799996bf0265b98b5d48ab919"
  284. },
  285. {
  286. /* Test Case 15 */
  287. "feffe9928665731c6d6a8f9467308308feffe9928665731c6d6a8f9467308308",
  288. "d9313225f88406e5a55909c5aff5269a86a7a9531534f7da2e4c303d8a318a721c3c0c95956809532fcf0e2449a6b525b16aedf5aa0de657ba637b391aafd255",
  289. "",
  290. "cafebabefacedbaddecaf888",
  291. "522dc1f099567d07f47f37a32a84427d643a8cdcbfe5c0c97598a2bd2555d1aa8cb08e48590dbb3da7b08b1056828838c5f61e6393ba7a0abcc9f662898015ad",
  292. "b094dac5d93471bdec1a502270e3cc6c"
  293. },
  294. {
  295. /* Test Case 16 */
  296. "feffe9928665731c6d6a8f9467308308feffe9928665731c6d6a8f9467308308",
  297. "d9313225f88406e5a55909c5aff5269a86a7a9531534f7da2e4c303d8a318a721c3c0c95956809532fcf0e2449a6b525b16aedf5aa0de657ba637b39",
  298. "feedfacedeadbeeffeedfacedeadbeefabaddad2",
  299. "cafebabefacedbaddecaf888",
  300. "522dc1f099567d07f47f37a32a84427d643a8cdcbfe5c0c97598a2bd2555d1aa8cb08e48590dbb3da7b08b1056828838c5f61e6393ba7a0abcc9f662",
  301. "76fc6ece0f4e1768cddf8853bb2d551b"
  302. },
  303. {
  304. /* Test Case 17 */
  305. "feffe9928665731c6d6a8f9467308308feffe9928665731c6d6a8f9467308308",
  306. "d9313225f88406e5a55909c5aff5269a86a7a9531534f7da2e4c303d8a318a721c3c0c95956809532fcf0e2449a6b525b16aedf5aa0de657ba637b39",
  307. "feedfacedeadbeeffeedfacedeadbeefabaddad2",
  308. "cafebabefacedbad",
  309. "c3762df1ca787d32ae47c13bf19844cbaf1ae14d0b976afac52ff7d79bba9de0feb582d33934a4f0954cc2363bc73f7862ac430e64abe499f47c9b1f",
  310. "3a337dbf46a792c45e454913fe2ea8f2"
  311. },
  312. {
  313. /* Test Case 18 */
  314. "feffe9928665731c6d6a8f9467308308feffe9928665731c6d6a8f9467308308",
  315. "d9313225f88406e5a55909c5aff5269a86a7a9531534f7da2e4c303d8a318a721c3c0c95956809532fcf0e2449a6b525b16aedf5aa0de657ba637b39",
  316. "feedfacedeadbeeffeedfacedeadbeefabaddad2",
  317. "9313225df88406e555909c5aff5269aa6a7a9538534f7da1e4c303d2a318a728c3c0c95156809539fcf0e2429a6b525416aedbf5a0de6a57a637b39b",
  318. "5a8def2f0c9e53f1f75d7853659e2a20eeb2b22aafde6419a058ab4f6f746bf40fc0c3b780f244452da3ebf1c5d82cdea2418997200ef82e44ae7e3f",
  319. "a44a8266ee1c8eb0c8b5d4cf5ae9f19a"
  320. }
  321. };
  322. static int test_gcm(void)
  323. {
  324. int ret = 0;
  325. int i;
  326. u8 k[32], aad[32], iv[64], t[16], tag[16];
  327. u8 p[64], c[64], tmp[64];
  328. size_t k_len, p_len, aad_len, iv_len;
  329. for (i = 0; i < sizeof(gcm_tests) / sizeof(gcm_tests[0]); i++) {
  330. const struct gcm_test_vector *tc = &gcm_tests[i];
  331. k_len = os_strlen(tc->k) / 2;
  332. if (hexstr2bin(tc->k, k, k_len)) {
  333. printf("Invalid GCM test vector %d (k)\n", i);
  334. ret++;
  335. continue;
  336. }
  337. p_len = os_strlen(tc->p) / 2;
  338. if (hexstr2bin(tc->p, p, p_len)) {
  339. printf("Invalid GCM test vector %d (p)\n", i);
  340. ret++;
  341. continue;
  342. }
  343. aad_len = os_strlen(tc->aad) / 2;
  344. if (hexstr2bin(tc->aad, aad, aad_len)) {
  345. printf("Invalid GCM test vector %d (aad)\n", i);
  346. ret++;
  347. continue;
  348. }
  349. iv_len = os_strlen(tc->iv) / 2;
  350. if (hexstr2bin(tc->iv, iv, iv_len)) {
  351. printf("Invalid GCM test vector %d (iv)\n", i);
  352. ret++;
  353. continue;
  354. }
  355. if (hexstr2bin(tc->c, c, p_len)) {
  356. printf("Invalid GCM test vector %d (c)\n", i);
  357. ret++;
  358. continue;
  359. }
  360. if (hexstr2bin(tc->t, t, sizeof(t))) {
  361. printf("Invalid GCM test vector %d (t)\n", i);
  362. ret++;
  363. continue;
  364. }
  365. if (aes_gcm_ae(k, k_len, iv, iv_len, p, p_len, aad, aad_len,
  366. tmp, tag) < 0) {
  367. printf("GCM-AE failed (test case %d)\n", i);
  368. ret++;
  369. continue;
  370. }
  371. if (os_memcmp(c, tmp, p_len) != 0) {
  372. printf("GCM-AE mismatch (test case %d)\n", i);
  373. ret++;
  374. }
  375. if (os_memcmp(tag, t, sizeof(tag)) != 0) {
  376. printf("GCM-AE tag mismatch (test case %d)\n", i);
  377. ret++;
  378. }
  379. if (p_len == 0) {
  380. if (aes_gmac(k, k_len, iv, iv_len, aad, aad_len, tag) <
  381. 0) {
  382. printf("GMAC failed (test case %d)\n", i);
  383. ret++;
  384. continue;
  385. }
  386. if (os_memcmp(tag, t, sizeof(tag)) != 0) {
  387. printf("GMAC tag mismatch (test case %d)\n", i);
  388. ret++;
  389. }
  390. }
  391. if (aes_gcm_ad(k, k_len, iv, iv_len, c, p_len, aad, aad_len,
  392. t, tmp) < 0) {
  393. printf("GCM-AD failed (test case %d)\n", i);
  394. ret++;
  395. continue;
  396. }
  397. if (os_memcmp(p, tmp, p_len) != 0) {
  398. printf("GCM-AD mismatch (test case %d)\n", i);
  399. ret++;
  400. }
  401. }
  402. return ret;
  403. }
  404. /* OMAC1 AES-128 test vectors from
  405. * http://csrc.nist.gov/CryptoToolkit/modes/proposedmodes/omac/omac-ad.pdf
  406. * which are same as the examples from NIST SP800-38B
  407. * http://csrc.nist.gov/CryptoToolkit/modes/800-38_Series_Publications/SP800-38B.pdf
  408. */
  409. struct omac1_test_vector {
  410. u8 k[16];
  411. u8 msg[64];
  412. int msg_len;
  413. u8 tag[16];
  414. };
  415. static struct omac1_test_vector test_vectors[] =
  416. {
  417. {
  418. { 0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6,
  419. 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c },
  420. { },
  421. 0,
  422. { 0xbb, 0x1d, 0x69, 0x29, 0xe9, 0x59, 0x37, 0x28,
  423. 0x7f, 0xa3, 0x7d, 0x12, 0x9b, 0x75, 0x67, 0x46 }
  424. },
  425. {
  426. { 0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6,
  427. 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c },
  428. { 0x6b, 0xc1, 0xbe, 0xe2, 0x2e, 0x40, 0x9f, 0x96,
  429. 0xe9, 0x3d, 0x7e, 0x11, 0x73, 0x93, 0x17, 0x2a},
  430. 16,
  431. { 0x07, 0x0a, 0x16, 0xb4, 0x6b, 0x4d, 0x41, 0x44,
  432. 0xf7, 0x9b, 0xdd, 0x9d, 0xd0, 0x4a, 0x28, 0x7c }
  433. },
  434. {
  435. { 0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6,
  436. 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c },
  437. { 0x6b, 0xc1, 0xbe, 0xe2, 0x2e, 0x40, 0x9f, 0x96,
  438. 0xe9, 0x3d, 0x7e, 0x11, 0x73, 0x93, 0x17, 0x2a,
  439. 0xae, 0x2d, 0x8a, 0x57, 0x1e, 0x03, 0xac, 0x9c,
  440. 0x9e, 0xb7, 0x6f, 0xac, 0x45, 0xaf, 0x8e, 0x51,
  441. 0x30, 0xc8, 0x1c, 0x46, 0xa3, 0x5c, 0xe4, 0x11 },
  442. 40,
  443. { 0xdf, 0xa6, 0x67, 0x47, 0xde, 0x9a, 0xe6, 0x30,
  444. 0x30, 0xca, 0x32, 0x61, 0x14, 0x97, 0xc8, 0x27 }
  445. },
  446. {
  447. { 0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6,
  448. 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c },
  449. { 0x6b, 0xc1, 0xbe, 0xe2, 0x2e, 0x40, 0x9f, 0x96,
  450. 0xe9, 0x3d, 0x7e, 0x11, 0x73, 0x93, 0x17, 0x2a,
  451. 0xae, 0x2d, 0x8a, 0x57, 0x1e, 0x03, 0xac, 0x9c,
  452. 0x9e, 0xb7, 0x6f, 0xac, 0x45, 0xaf, 0x8e, 0x51,
  453. 0x30, 0xc8, 0x1c, 0x46, 0xa3, 0x5c, 0xe4, 0x11,
  454. 0xe5, 0xfb, 0xc1, 0x19, 0x1a, 0x0a, 0x52, 0xef,
  455. 0xf6, 0x9f, 0x24, 0x45, 0xdf, 0x4f, 0x9b, 0x17,
  456. 0xad, 0x2b, 0x41, 0x7b, 0xe6, 0x6c, 0x37, 0x10 },
  457. 64,
  458. { 0x51, 0xf0, 0xbe, 0xbf, 0x7e, 0x3b, 0x9d, 0x92,
  459. 0xfc, 0x49, 0x74, 0x17, 0x79, 0x36, 0x3c, 0xfe }
  460. },
  461. };
  462. int main(int argc, char *argv[])
  463. {
  464. u8 kek[] = {
  465. 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
  466. 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f
  467. };
  468. u8 plain[] = {
  469. 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77,
  470. 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff
  471. };
  472. u8 crypt[] = {
  473. 0x1F, 0xA6, 0x8B, 0x0A, 0x81, 0x12, 0xB4, 0x47,
  474. 0xAE, 0xF3, 0x4B, 0xD8, 0xFB, 0x5A, 0x7B, 0x82,
  475. 0x9D, 0x3E, 0x86, 0x23, 0x71, 0xD2, 0xCF, 0xE5
  476. };
  477. u8 result[24];
  478. int ret = 0;
  479. unsigned int i;
  480. struct omac1_test_vector *tv;
  481. if (aes_wrap(kek, 2, plain, result)) {
  482. printf("AES-WRAP-128-128 reported failure\n");
  483. ret++;
  484. }
  485. if (memcmp(result, crypt, 24) != 0) {
  486. printf("AES-WRAP-128-128 failed\n");
  487. ret++;
  488. }
  489. if (aes_unwrap(kek, 2, crypt, result)) {
  490. printf("AES-UNWRAP-128-128 reported failure\n");
  491. ret++;
  492. }
  493. if (memcmp(result, plain, 16) != 0) {
  494. printf("AES-UNWRAP-128-128 failed\n");
  495. ret++;
  496. for (i = 0; i < 16; i++)
  497. printf(" %02x", result[i]);
  498. printf("\n");
  499. }
  500. test_aes_perf();
  501. for (i = 0; i < sizeof(test_vectors) / sizeof(test_vectors[0]); i++) {
  502. tv = &test_vectors[i];
  503. if (omac1_aes_128(tv->k, tv->msg, tv->msg_len, result) ||
  504. memcmp(result, tv->tag, 16) != 0) {
  505. printf("OMAC1-AES-128 test vector %d failed\n", i);
  506. ret++;
  507. }
  508. if (tv->msg_len > 1) {
  509. const u8 *addr[2];
  510. size_t len[2];
  511. addr[0] = tv->msg;
  512. len[0] = 1;
  513. addr[1] = tv->msg + 1;
  514. len[1] = tv->msg_len - 1;
  515. if (omac1_aes_128_vector(tv->k, 2, addr, len,
  516. result) ||
  517. memcmp(result, tv->tag, 16) != 0) {
  518. printf("OMAC1-AES-128(vector) test vector %d "
  519. "failed\n", i);
  520. ret++;
  521. }
  522. }
  523. }
  524. ret += test_eax();
  525. ret += test_cbc();
  526. ret += test_gcm();
  527. if (ret)
  528. printf("FAILED!\n");
  529. return ret;
  530. }