123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743 |
- /*
- * crypto module tests
- * Copyright (c) 2014-2015, Jouni Malinen <j@w1.fi>
- *
- * This software may be distributed under the terms of the BSD license.
- * See README for more details.
- */
- #include "utils/includes.h"
- #include "utils/common.h"
- #include "crypto/aes_siv.h"
- #include "crypto/aes_wrap.h"
- #include "crypto/aes.h"
- static int test_siv(void)
- {
- #ifdef CONFIG_MESH
- /* RFC 5297, A.1. Deterministic Authenticated Encryption Example */
- u8 key[] = {
- 0xff, 0xfe, 0xfd, 0xfc, 0xfb, 0xfa, 0xf9, 0xf8,
- 0xf7, 0xf6, 0xf5, 0xf4, 0xf3, 0xf2, 0xf1, 0xf0,
- 0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7,
- 0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff
- };
- u8 ad[] = {
- 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
- 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,
- 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27
- };
- u8 plaintext[] = {
- 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88,
- 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee
- };
- u8 iv_c[] = {
- 0x85, 0x63, 0x2d, 0x07, 0xc6, 0xe8, 0xf3, 0x7f,
- 0x95, 0x0a, 0xcd, 0x32, 0x0a, 0x2e, 0xcc, 0x93,
- 0x40, 0xc0, 0x2b, 0x96, 0x90, 0xc4, 0xdc, 0x04,
- 0xda, 0xef, 0x7f, 0x6a, 0xfe, 0x5c
- };
- /* RFC 5297, A.2. Nonce-Based Authenticated Encryption Example */
- u8 key_2[] = {
- 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78,
- 0x77, 0x76, 0x75, 0x74, 0x73, 0x72, 0x71, 0x70,
- 0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,
- 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f
- };
- u8 ad1_2[] = {
- 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77,
- 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff,
- 0xde, 0xad, 0xda, 0xda, 0xde, 0xad, 0xda, 0xda,
- 0xff, 0xee, 0xdd, 0xcc, 0xbb, 0xaa, 0x99, 0x88,
- 0x77, 0x66, 0x55, 0x44, 0x33, 0x22, 0x11, 0x00
- };
- u8 ad2_2[] = {
- 0x10, 0x20, 0x30, 0x40, 0x50, 0x60, 0x70, 0x80,
- 0x90, 0xa0
- };
- u8 nonce_2[] = {
- 0x09, 0xf9, 0x11, 0x02, 0x9d, 0x74, 0xe3, 0x5b,
- 0xd8, 0x41, 0x56, 0xc5, 0x63, 0x56, 0x88, 0xc0
- };
- u8 plaintext_2[] = {
- 0x74, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20,
- 0x73, 0x6f, 0x6d, 0x65, 0x20, 0x70, 0x6c, 0x61,
- 0x69, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x20, 0x74,
- 0x6f, 0x20, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70,
- 0x74, 0x20, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x20,
- 0x53, 0x49, 0x56, 0x2d, 0x41, 0x45, 0x53
- };
- u8 iv_c_2[] = {
- 0x7b, 0xdb, 0x6e, 0x3b, 0x43, 0x26, 0x67, 0xeb,
- 0x06, 0xf4, 0xd1, 0x4b, 0xff, 0x2f, 0xbd, 0x0f,
- 0xcb, 0x90, 0x0f, 0x2f, 0xdd, 0xbe, 0x40, 0x43,
- 0x26, 0x60, 0x19, 0x65, 0xc8, 0x89, 0xbf, 0x17,
- 0xdb, 0xa7, 0x7c, 0xeb, 0x09, 0x4f, 0xa6, 0x63,
- 0xb7, 0xa3, 0xf7, 0x48, 0xba, 0x8a, 0xf8, 0x29,
- 0xea, 0x64, 0xad, 0x54, 0x4a, 0x27, 0x2e, 0x9c,
- 0x48, 0x5b, 0x62, 0xa3, 0xfd, 0x5c, 0x0d
- };
- u8 out[2 * AES_BLOCK_SIZE + sizeof(plaintext_2)];
- const u8 *addr[3];
- size_t len[3];
- /* RFC 5297, A.1. Deterministic Authenticated Encryption Example */
- addr[0] = ad;
- len[0] = sizeof(ad);
- if (aes_siv_encrypt(key, plaintext, sizeof(plaintext),
- 1, addr, len, out)) {
- wpa_printf(MSG_ERROR, "AES-SIV mode encryption failed");
- return 1;
- }
- if (os_memcmp(out, iv_c, sizeof(iv_c)) != 0) {
- wpa_printf(MSG_ERROR,
- "AES-SIV mode encryption returned invalid cipher text");
- return 1;
- }
- if (aes_siv_decrypt(key, iv_c, sizeof(iv_c), 1, addr, len, out)) {
- wpa_printf(MSG_ERROR, "AES-SIV mode decryption failed");
- return 1;
- }
- if (os_memcmp(out, plaintext, sizeof(plaintext)) != 0) {
- wpa_printf(MSG_ERROR,
- "AES-SIV mode decryption returned invalid plain text");
- return 1;
- }
- /* RFC 5297, A.2. Nonce-Based Authenticated Encryption Example */
- addr[0] = ad1_2;
- len[0] = sizeof(ad1_2);
- addr[1] = ad2_2;
- len[1] = sizeof(ad2_2);
- addr[2] = nonce_2;
- len[2] = sizeof(nonce_2);
- if (aes_siv_encrypt(key_2, plaintext_2, sizeof(plaintext_2),
- 3, addr, len, out)) {
- wpa_printf(MSG_ERROR, "AES-SIV mode encryption failed");
- return 1;
- }
- if (os_memcmp(out, iv_c_2, sizeof(iv_c_2)) != 0) {
- wpa_printf(MSG_ERROR,
- "AES-SIV mode encryption returned invalid cipher text");
- return 1;
- }
- if (aes_siv_decrypt(key_2, iv_c_2, sizeof(iv_c_2), 3, addr, len, out)) {
- wpa_printf(MSG_ERROR, "AES-SIV mode decryption failed");
- return 1;
- }
- if (os_memcmp(out, plaintext_2, sizeof(plaintext_2)) != 0) {
- wpa_printf(MSG_ERROR,
- "AES-SIV mode decryption returned invalid plain text");
- return 1;
- }
- wpa_printf(MSG_INFO, "AES-SIV test cases passed");
- #endif /* CONFIG_MESH */
- return 0;
- }
- /* OMAC1 AES-128 test vectors from
- * http://csrc.nist.gov/CryptoToolkit/modes/proposedmodes/omac/omac-ad.pdf
- * which are same as the examples from NIST SP800-38B
- * http://csrc.nist.gov/CryptoToolkit/modes/800-38_Series_Publications/SP800-38B.pdf
- */
- struct omac1_test_vector {
- u8 k[16];
- u8 msg[64];
- int msg_len;
- u8 tag[16];
- };
- static struct omac1_test_vector omac1_test_vectors[] =
- {
- {
- { 0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6,
- 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c },
- { },
- 0,
- { 0xbb, 0x1d, 0x69, 0x29, 0xe9, 0x59, 0x37, 0x28,
- 0x7f, 0xa3, 0x7d, 0x12, 0x9b, 0x75, 0x67, 0x46 }
- },
- {
- { 0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6,
- 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c },
- { 0x6b, 0xc1, 0xbe, 0xe2, 0x2e, 0x40, 0x9f, 0x96,
- 0xe9, 0x3d, 0x7e, 0x11, 0x73, 0x93, 0x17, 0x2a},
- 16,
- { 0x07, 0x0a, 0x16, 0xb4, 0x6b, 0x4d, 0x41, 0x44,
- 0xf7, 0x9b, 0xdd, 0x9d, 0xd0, 0x4a, 0x28, 0x7c }
- },
- {
- { 0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6,
- 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c },
- { 0x6b, 0xc1, 0xbe, 0xe2, 0x2e, 0x40, 0x9f, 0x96,
- 0xe9, 0x3d, 0x7e, 0x11, 0x73, 0x93, 0x17, 0x2a,
- 0xae, 0x2d, 0x8a, 0x57, 0x1e, 0x03, 0xac, 0x9c,
- 0x9e, 0xb7, 0x6f, 0xac, 0x45, 0xaf, 0x8e, 0x51,
- 0x30, 0xc8, 0x1c, 0x46, 0xa3, 0x5c, 0xe4, 0x11 },
- 40,
- { 0xdf, 0xa6, 0x67, 0x47, 0xde, 0x9a, 0xe6, 0x30,
- 0x30, 0xca, 0x32, 0x61, 0x14, 0x97, 0xc8, 0x27 }
- },
- {
- { 0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6,
- 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c },
- { 0x6b, 0xc1, 0xbe, 0xe2, 0x2e, 0x40, 0x9f, 0x96,
- 0xe9, 0x3d, 0x7e, 0x11, 0x73, 0x93, 0x17, 0x2a,
- 0xae, 0x2d, 0x8a, 0x57, 0x1e, 0x03, 0xac, 0x9c,
- 0x9e, 0xb7, 0x6f, 0xac, 0x45, 0xaf, 0x8e, 0x51,
- 0x30, 0xc8, 0x1c, 0x46, 0xa3, 0x5c, 0xe4, 0x11,
- 0xe5, 0xfb, 0xc1, 0x19, 0x1a, 0x0a, 0x52, 0xef,
- 0xf6, 0x9f, 0x24, 0x45, 0xdf, 0x4f, 0x9b, 0x17,
- 0xad, 0x2b, 0x41, 0x7b, 0xe6, 0x6c, 0x37, 0x10 },
- 64,
- { 0x51, 0xf0, 0xbe, 0xbf, 0x7e, 0x3b, 0x9d, 0x92,
- 0xfc, 0x49, 0x74, 0x17, 0x79, 0x36, 0x3c, 0xfe }
- },
- };
- static int test_omac1_vector(struct omac1_test_vector *tv, unsigned int i)
- {
- u8 key[] = {
- 0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6,
- 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c
- };
- u8 msg[] = { 0x12, 0x34, 0x56 };
- u8 result[24], result2[24];
- const u8 *addr[3];
- size_t len[3];
- if (omac1_aes_128(tv->k, tv->msg, tv->msg_len, result) ||
- os_memcmp(result, tv->tag, 16) != 0) {
- wpa_printf(MSG_ERROR, "OMAC1-AES-128 test vector %u failed", i);
- return 1;
- }
- if (tv->msg_len > 1) {
- addr[0] = tv->msg;
- len[0] = 1;
- addr[1] = tv->msg + 1;
- len[1] = tv->msg_len - 1;
- if (omac1_aes_128_vector(tv->k, 2, addr, len, result) ||
- os_memcmp(result, tv->tag, 16) != 0) {
- wpa_printf(MSG_ERROR,
- "OMAC1-AES-128(vector) test vector %u failed",
- i);
- return 1;
- }
- addr[0] = tv->msg;
- len[0] = tv->msg_len - 2;
- addr[1] = tv->msg + tv->msg_len - 2;
- len[1] = 1;
- addr[2] = tv->msg + tv->msg_len - 1;
- len[2] = 1;
- if (omac1_aes_128_vector(tv->k, 3, addr, len, result) ||
- os_memcmp(result, tv->tag, 16) != 0) {
- wpa_printf(MSG_ERROR,
- "OMAC1-AES-128(vector2) test vector %u failed",
- i);
- return 1;
- }
- }
- addr[0] = &msg[0];
- len[0] = 1;
- addr[1] = &msg[1];
- len[1] = 1;
- addr[2] = &msg[2];
- len[2] = 1;
- if (omac1_aes_128(key, msg, sizeof(msg), result) ||
- omac1_aes_128_vector(key, 3, addr, len, result2) ||
- os_memcmp(result, result2, 16) != 0) {
- wpa_printf(MSG_ERROR, "OMAC1-AES-128 short test mismatch");
- return 1;
- }
- return 0;
- }
- static int test_omac1(void)
- {
- unsigned int i;
- for (i = 0; i < ARRAY_SIZE(omac1_test_vectors); i++) {
- if (test_omac1_vector(&omac1_test_vectors[i], i))
- return 1;
- }
- wpa_printf(MSG_INFO, "OMAC1-AES-128 test cases passed");
- return 0;
- }
- static int test_eax(void)
- {
- #ifdef EAP_PSK
- u8 msg[] = { 0xF7, 0xFB };
- u8 key[] = { 0x91, 0x94, 0x5D, 0x3F, 0x4D, 0xCB, 0xEE, 0x0B,
- 0xF4, 0x5E, 0xF5, 0x22, 0x55, 0xF0, 0x95, 0xA4 };
- u8 nonce[] = { 0xBE, 0xCA, 0xF0, 0x43, 0xB0, 0xA2, 0x3D, 0x84,
- 0x31, 0x94, 0xBA, 0x97, 0x2C, 0x66, 0xDE, 0xBD };
- u8 hdr[] = { 0xFA, 0x3B, 0xFD, 0x48, 0x06, 0xEB, 0x53, 0xFA };
- u8 cipher[] = { 0x19, 0xDD, 0x5C, 0x4C, 0x93, 0x31, 0x04, 0x9D,
- 0x0B, 0xDA, 0xB0, 0x27, 0x74, 0x08, 0xF6, 0x79,
- 0x67, 0xE5 };
- u8 data[sizeof(msg)], tag[AES_BLOCK_SIZE];
- os_memcpy(data, msg, sizeof(msg));
- if (aes_128_eax_encrypt(key, nonce, sizeof(nonce), hdr, sizeof(hdr),
- data, sizeof(data), tag)) {
- wpa_printf(MSG_ERROR, "AES-128 EAX mode encryption failed");
- return 1;
- }
- if (os_memcmp(data, cipher, sizeof(data)) != 0) {
- wpa_printf(MSG_ERROR,
- "AES-128 EAX mode encryption returned invalid cipher text");
- return 1;
- }
- if (os_memcmp(tag, cipher + sizeof(data), AES_BLOCK_SIZE) != 0) {
- wpa_printf(MSG_ERROR,
- "AES-128 EAX mode encryption returned invalid tag");
- return 1;
- }
- if (aes_128_eax_decrypt(key, nonce, sizeof(nonce), hdr, sizeof(hdr),
- data, sizeof(data), tag)) {
- wpa_printf(MSG_ERROR, "AES-128 EAX mode decryption failed");
- return 1;
- }
- if (os_memcmp(data, msg, sizeof(data)) != 0) {
- wpa_printf(MSG_ERROR,
- "AES-128 EAX mode decryption returned invalid plain text");
- return 1;
- }
- wpa_printf(MSG_INFO, "AES-128 EAX mode test cases passed");
- #endif /* EAP_PSK */
- return 0;
- }
- static int test_cbc(void)
- {
- struct cbc_test_vector {
- u8 key[16];
- u8 iv[16];
- u8 plain[32];
- u8 cipher[32];
- size_t len;
- } vectors[] = {
- {
- { 0x06, 0xa9, 0x21, 0x40, 0x36, 0xb8, 0xa1, 0x5b,
- 0x51, 0x2e, 0x03, 0xd5, 0x34, 0x12, 0x00, 0x06 },
- { 0x3d, 0xaf, 0xba, 0x42, 0x9d, 0x9e, 0xb4, 0x30,
- 0xb4, 0x22, 0xda, 0x80, 0x2c, 0x9f, 0xac, 0x41 },
- "Single block msg",
- { 0xe3, 0x53, 0x77, 0x9c, 0x10, 0x79, 0xae, 0xb8,
- 0x27, 0x08, 0x94, 0x2d, 0xbe, 0x77, 0x18, 0x1a },
- 16
- },
- {
- { 0xc2, 0x86, 0x69, 0x6d, 0x88, 0x7c, 0x9a, 0xa0,
- 0x61, 0x1b, 0xbb, 0x3e, 0x20, 0x25, 0xa4, 0x5a },
- { 0x56, 0x2e, 0x17, 0x99, 0x6d, 0x09, 0x3d, 0x28,
- 0xdd, 0xb3, 0xba, 0x69, 0x5a, 0x2e, 0x6f, 0x58 },
- { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
- 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
- 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
- 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f },
- { 0xd2, 0x96, 0xcd, 0x94, 0xc2, 0xcc, 0xcf, 0x8a,
- 0x3a, 0x86, 0x30, 0x28, 0xb5, 0xe1, 0xdc, 0x0a,
- 0x75, 0x86, 0x60, 0x2d, 0x25, 0x3c, 0xff, 0xf9,
- 0x1b, 0x82, 0x66, 0xbe, 0xa6, 0xd6, 0x1a, 0xb1 },
- 32
- }
- };
- int ret = 0;
- u8 *buf;
- unsigned int i;
- for (i = 0; i < ARRAY_SIZE(vectors); i++) {
- struct cbc_test_vector *tv = &vectors[i];
- buf = os_malloc(tv->len);
- if (buf == NULL) {
- ret++;
- break;
- }
- os_memcpy(buf, tv->plain, tv->len);
- if (aes_128_cbc_encrypt(tv->key, tv->iv, buf, tv->len) ||
- os_memcmp(buf, tv->cipher, tv->len) != 0) {
- wpa_printf(MSG_ERROR, "AES-CBC encrypt %d failed", i);
- ret++;
- }
- os_memcpy(buf, tv->cipher, tv->len);
- if (aes_128_cbc_decrypt(tv->key, tv->iv, buf, tv->len) ||
- os_memcmp(buf, tv->plain, tv->len) != 0) {
- wpa_printf(MSG_ERROR, "AES-CBC decrypt %d failed", i);
- ret++;
- }
- os_free(buf);
- }
- return ret;
- }
- static int test_ecb(void)
- {
- #ifdef EAP_PSK
- struct ecb_test_vector {
- char *key;
- char *plaintext;
- char *ciphertext;
- } vectors[] = {
- /* CAVS 11.1 - ECBGFSbox128.rsp */
- {
- "00000000000000000000000000000000",
- "f34481ec3cc627bacd5dc3fb08f273e6",
- "0336763e966d92595a567cc9ce537f5e"
- },
- {
- "00000000000000000000000000000000",
- "9798c4640bad75c7c3227db910174e72",
- "a9a1631bf4996954ebc093957b234589"
- },
- {
- "00000000000000000000000000000000",
- "96ab5c2ff612d9dfaae8c31f30c42168",
- "ff4f8391a6a40ca5b25d23bedd44a597"
- },
- {
- "00000000000000000000000000000000",
- "6a118a874519e64e9963798a503f1d35",
- "dc43be40be0e53712f7e2bf5ca707209"
- },
- {
- "00000000000000000000000000000000",
- "cb9fceec81286ca3e989bd979b0cb284",
- "92beedab1895a94faa69b632e5cc47ce"
- },
- {
- "00000000000000000000000000000000",
- "b26aeb1874e47ca8358ff22378f09144",
- "459264f4798f6a78bacb89c15ed3d601"
- },
- {
- "00000000000000000000000000000000",
- "58c8e00b2631686d54eab84b91f0aca1",
- "08a4e2efec8a8e3312ca7460b9040bbf"
- },
- /* CAVS 11.1 - ECBKeySbox128.rsp */
- {
- "10a58869d74be5a374cf867cfb473859",
- "00000000000000000000000000000000",
- "6d251e6944b051e04eaa6fb4dbf78465"
- },
- {
- "caea65cdbb75e9169ecd22ebe6e54675",
- "00000000000000000000000000000000",
- "6e29201190152df4ee058139def610bb",
- }
- };
- int ret = 0;
- unsigned int i;
- u8 key[16], plain[16], cipher[16], out[16];
- for (i = 0; i < ARRAY_SIZE(vectors); i++) {
- struct ecb_test_vector *tv = &vectors[i];
- if (hexstr2bin(tv->key, key, sizeof(key)) ||
- hexstr2bin(tv->plaintext, plain, sizeof(plain)) ||
- hexstr2bin(tv->ciphertext, cipher, sizeof(cipher))) {
- wpa_printf(MSG_ERROR, "Invalid AES-ECB test vector %u",
- i);
- ret++;
- continue;
- }
- if (aes_128_encrypt_block(key, plain, out) < 0 ||
- os_memcmp(out, cipher, 16) != 0) {
- wpa_printf(MSG_ERROR, "AES-ECB encrypt %u failed", i);
- ret++;
- }
- }
- if (!ret)
- wpa_printf(MSG_INFO, "AES ECB mode test cases passed");
- return ret;
- #endif /* EAP_PSK */
- return 0;
- }
- static int test_key_wrap(void)
- {
- int ret = 0;
- /* RFC 3394 - Test vector 4.1 */
- u8 kek41[] = {
- 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
- 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f
- };
- u8 plain41[] = {
- 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77,
- 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff
- };
- u8 crypt41[] = {
- 0x1F, 0xA6, 0x8B, 0x0A, 0x81, 0x12, 0xB4, 0x47,
- 0xAE, 0xF3, 0x4B, 0xD8, 0xFB, 0x5A, 0x7B, 0x82,
- 0x9D, 0x3E, 0x86, 0x23, 0x71, 0xD2, 0xCF, 0xE5
- };
- /* RFC 3394 - Test vector 4.2 */
- u8 kek42[] = {
- 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
- 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
- 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17
- };
- u8 plain42[] = {
- 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77,
- 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff
- };
- u8 crypt42[] = {
- 0x96, 0x77, 0x8B, 0x25, 0xAE, 0x6C, 0xA4, 0x35,
- 0xF9, 0x2B, 0x5B, 0x97, 0xC0, 0x50, 0xAE, 0xD2,
- 0x46, 0x8A, 0xB8, 0xA1, 0x7A, 0xD8, 0x4E, 0x5D
- };
- /* RFC 3394 - Test vector 4.3 */
- u8 kek43[] = {
- 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
- 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F,
- 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
- 0x18, 0x19, 0x1A, 0x1B, 0x1C, 0x1D, 0x1E, 0x1F
- };
- u8 plain43[] = {
- 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77,
- 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff
- };
- u8 crypt43[] = {
- 0x64, 0xE8, 0xC3, 0xF9, 0xCE, 0x0F, 0x5B, 0xA2,
- 0x63, 0xE9, 0x77, 0x79, 0x05, 0x81, 0x8A, 0x2A,
- 0x93, 0xC8, 0x19, 0x1E, 0x7D, 0x6E, 0x8A, 0xE7,
- };
- /* RFC 3394 - Test vector 4.4 */
- u8 kek44[] = {
- 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
- 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
- 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17
- };
- u8 plain44[] = {
- 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77,
- 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff,
- 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
- };
- u8 crypt44[] = {
- 0x03, 0x1D, 0x33, 0x26, 0x4E, 0x15, 0xD3, 0x32,
- 0x68, 0xF2, 0x4E, 0xC2, 0x60, 0x74, 0x3E, 0xDC,
- 0xE1, 0xC6, 0xC7, 0xDD, 0xEE, 0x72, 0x5A, 0x93,
- 0x6B, 0xA8, 0x14, 0x91, 0x5C, 0x67, 0x62, 0xD2
- };
- /* RFC 3394 - Test vector 4.5 */
- u8 kek45[] = {
- 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
- 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F,
- 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
- 0x18, 0x19, 0x1A, 0x1B, 0x1C, 0x1D, 0x1E, 0x1F
- };
- u8 plain45[] = {
- 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77,
- 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff,
- 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
- };
- u8 crypt45[] = {
- 0xA8, 0xF9, 0xBC, 0x16, 0x12, 0xC6, 0x8B, 0x3F,
- 0xF6, 0xE6, 0xF4, 0xFB, 0xE3, 0x0E, 0x71, 0xE4,
- 0x76, 0x9C, 0x8B, 0x80, 0xA3, 0x2C, 0xB8, 0x95,
- 0x8C, 0xD5, 0xD1, 0x7D, 0x6B, 0x25, 0x4D, 0xA1,
- };
- /* RFC 3394 - Test vector 4.6 */
- u8 kek46[] = {
- 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
- 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F,
- 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
- 0x18, 0x19, 0x1A, 0x1B, 0x1C, 0x1D, 0x1E, 0x1F
- };
- u8 plain46[] = {
- 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77,
- 0x88, 0x99, 0xAA, 0xBB, 0xCC, 0xDD, 0xEE, 0xFF,
- 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
- 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F
- };
- u8 crypt46[] = {
- 0x28, 0xC9, 0xF4, 0x04, 0xC4, 0xB8, 0x10, 0xF4,
- 0xCB, 0xCC, 0xB3, 0x5C, 0xFB, 0x87, 0xF8, 0x26,
- 0x3F, 0x57, 0x86, 0xE2, 0xD8, 0x0E, 0xD3, 0x26,
- 0xCB, 0xC7, 0xF0, 0xE7, 0x1A, 0x99, 0xF4, 0x3B,
- 0xFB, 0x98, 0x8B, 0x9B, 0x7A, 0x02, 0xDD, 0x21
- };
- u8 result[40];
- wpa_printf(MSG_INFO, "RFC 3394 - Test vector 4.1");
- if (aes_wrap(kek41, sizeof(kek41), sizeof(plain41) / 8, plain41,
- result)) {
- wpa_printf(MSG_ERROR, "AES-WRAP-128 reported failure");
- ret++;
- }
- if (os_memcmp(result, crypt41, sizeof(crypt41)) != 0) {
- wpa_printf(MSG_ERROR, "AES-WRAP-128 failed");
- ret++;
- }
- if (aes_unwrap(kek41, sizeof(kek41), sizeof(plain41) / 8, crypt41,
- result)) {
- wpa_printf(MSG_ERROR, "AES-UNWRAP-128 reported failure");
- ret++;
- }
- if (os_memcmp(result, plain41, sizeof(plain41)) != 0) {
- wpa_printf(MSG_ERROR, "AES-UNWRAP-128 failed");
- ret++;
- }
- wpa_printf(MSG_INFO, "RFC 3394 - Test vector 4.2");
- if (aes_wrap(kek42, sizeof(kek42), sizeof(plain42) / 8, plain42,
- result)) {
- wpa_printf(MSG_ERROR, "AES-WRAP-192 reported failure");
- ret++;
- }
- if (os_memcmp(result, crypt42, sizeof(crypt42)) != 0) {
- wpa_printf(MSG_ERROR, "AES-WRAP-192 failed");
- ret++;
- }
- if (aes_unwrap(kek42, sizeof(kek42), sizeof(plain42) / 8, crypt42,
- result)) {
- wpa_printf(MSG_ERROR, "AES-UNWRAP-192 reported failure");
- ret++;
- }
- if (os_memcmp(result, plain42, sizeof(plain42)) != 0) {
- wpa_printf(MSG_ERROR, "AES-UNWRAP-192 failed");
- ret++;
- }
- wpa_printf(MSG_INFO, "RFC 3394 - Test vector 4.3");
- if (aes_wrap(kek43, sizeof(kek43), sizeof(plain43) / 8, plain43,
- result)) {
- wpa_printf(MSG_ERROR, "AES-WRAP-256 reported failure");
- ret++;
- }
- if (os_memcmp(result, crypt43, sizeof(crypt43)) != 0) {
- wpa_printf(MSG_ERROR, "AES-WRAP-256 failed");
- ret++;
- }
- if (aes_unwrap(kek43, sizeof(kek43), sizeof(plain43) / 8, crypt43,
- result)) {
- wpa_printf(MSG_ERROR, "AES-UNWRAP-256 reported failure");
- ret++;
- }
- if (os_memcmp(result, plain43, sizeof(plain43)) != 0) {
- wpa_printf(MSG_ERROR, "AES-UNWRAP-256 failed");
- ret++;
- }
- wpa_printf(MSG_INFO, "RFC 3394 - Test vector 4.4");
- if (aes_wrap(kek44, sizeof(kek44), sizeof(plain44) / 8, plain44,
- result)) {
- wpa_printf(MSG_ERROR, "AES-WRAP-192 reported failure");
- ret++;
- }
- if (os_memcmp(result, crypt44, sizeof(crypt44)) != 0) {
- wpa_printf(MSG_ERROR, "AES-WRAP-192 failed");
- ret++;
- }
- if (aes_unwrap(kek44, sizeof(kek44), sizeof(plain44) / 8, crypt44,
- result)) {
- wpa_printf(MSG_ERROR, "AES-UNWRAP-192 reported failure");
- ret++;
- }
- if (os_memcmp(result, plain44, sizeof(plain44)) != 0) {
- wpa_printf(MSG_ERROR, "AES-UNWRAP-192 failed");
- ret++;
- }
- wpa_printf(MSG_INFO, "RFC 3394 - Test vector 4.5");
- if (aes_wrap(kek45, sizeof(kek45), sizeof(plain45) / 8, plain45,
- result)) {
- wpa_printf(MSG_ERROR, "AES-WRAP-256 reported failure");
- ret++;
- }
- if (os_memcmp(result, crypt45, sizeof(crypt45)) != 0) {
- wpa_printf(MSG_ERROR, "AES-WRAP-256 failed");
- ret++;
- }
- if (aes_unwrap(kek45, sizeof(kek45), sizeof(plain45) / 8, crypt45,
- result)) {
- wpa_printf(MSG_ERROR, "AES-UNWRAP-256 reported failure");
- ret++;
- }
- if (os_memcmp(result, plain45, sizeof(plain45)) != 0) {
- wpa_printf(MSG_ERROR, "AES-UNWRAP-256 failed");
- ret++;
- }
- wpa_printf(MSG_INFO, "RFC 3394 - Test vector 4.6");
- if (aes_wrap(kek46, sizeof(kek46), sizeof(plain46) / 8, plain46,
- result)) {
- wpa_printf(MSG_ERROR, "AES-WRAP-256 reported failure");
- ret++;
- }
- if (os_memcmp(result, crypt46, sizeof(crypt46)) != 0) {
- wpa_printf(MSG_ERROR, "AES-WRAP-256 failed");
- ret++;
- }
- if (aes_unwrap(kek46, sizeof(kek46), sizeof(plain46) / 8, crypt46,
- result)) {
- wpa_printf(MSG_ERROR, "AES-UNWRAP-256 reported failure");
- ret++;
- }
- if (os_memcmp(result, plain46, sizeof(plain46)) != 0) {
- wpa_printf(MSG_ERROR, "AES-UNWRAP-256 failed");
- ret++;
- }
- if (!ret)
- wpa_printf(MSG_INFO, "AES key wrap/unwrap test cases passed");
- return ret;
- }
- int crypto_module_tests(void)
- {
- int ret = 0;
- wpa_printf(MSG_INFO, "crypto module tests");
- if (test_siv() ||
- test_omac1() ||
- test_eax() ||
- test_cbc() ||
- test_ecb() ||
- test_key_wrap())
- ret = -1;
- return ret;
- }
|