123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447 |
- /* FIPS Known answer tests for Qcrypto.
- *
- * Copyright (c) 2014, The Linux Foundation. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 and
- * only version 2 as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- */
- #ifndef __CRYPTO_MSM_QCRYPTO_FIPS_H
- #define __CRYPTO_MSM_QCRYPTO_FIPS_H
- struct _fips_completion {
- struct completion completion;
- int err;
- };
- /*
- * For cipher algorithms.
- */
- struct _fips_test_vector_cipher {
- char *key;
- unsigned char klen;
- char iv[16];
- unsigned char ivlen;
- char *pln_txt;
- unsigned int pln_txt_len;
- char *enc_txt;
- unsigned int enc_txt_len;
- char mod_alg[CRYPTO_MAX_ALG_NAME];
- };
- /*
- * For Hashing / HMAC algorithms.
- */
- struct _fips_test_vector_sha_hmac {
- char *key;
- unsigned char klen;
- char *input;
- unsigned char ilen;
- char *digest;
- unsigned char diglen;
- char hash_alg[CRYPTO_MAX_ALG_NAME];
- };
- /*
- *For AEAD algorithms
- */
- struct _fips_test_vector_aead {
- char *key;
- unsigned char klen;
- char iv[16];
- unsigned char ivlen;
- char assoc[32];
- unsigned char alen;
- char *pln_txt;
- unsigned int pln_txt_len;
- char *enc_txt;
- unsigned int enc_txt_len;
- char mod_alg[CRYPTO_MAX_ALG_NAME];
- };
- /*
- *Test vectors for sha/hmac tests
- */
- static struct _fips_test_vector_sha_hmac fips_test_vector_sha_hmac[] = {
- /*http://csrc.nist.gov/groups/ST/toolkit/documents/Examples/SHA1.pdf*/
- { /* SHA1 */
- .hash_alg = "sha1",
- .klen = 0,
- .input = "abc",
- .ilen = 3,
- .digest = "\xa9\x99\x3e\x36\x47\x06\x81\x6a"
- "\xba\x3e\x25\x71\x78\x50\xc2\x6c"
- "\x9c\xd0\xd8\x9d",
- .diglen = SHA1_DIGEST_SIZE,
- },
- /* http://csrc.nist.gov/groups/ST/toolkit/documents/Examples/SHA256.pdf */
- {/* SHA256 */
- .hash_alg = "sha256",
- .klen = 0,
- .input = "abc",
- .ilen = 3,
- .digest = "\xba\x78\x16\xbf\x8f\x01\xcf\xea"
- "\x41\x41\x40\xde\x5d\xae\x22\x23"
- "\xb0\x03\x61\xa3\x96\x17\x7a\x9c"
- "\xb4\x10\xff\x61\xf2\x00\x15\xad",
- .diglen = SHA256_DIGEST_SIZE,
- },
- /* http://csrc.nist.gov/groups/ST/toolkit/documents/Examples/HMAC_SHA1.pdf */
- {/* HMAC-SHA1 */
- .hash_alg = "hmac(sha1)",
- .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
- "\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F"
- "\x10\x11\x12\x13",
- .klen = 20,
- .input = "Sample message for keylen<blocklen",
- .ilen = 34,
- .digest = "\x4C\x99\xFF\x0C\xB1\xB3\x1B\xD3"
- "\x3F\x84\x31\xDB\xAF\x4D\x17\xFC"
- "\xD3\x56\xA8\x07",
- .diglen = SHA1_DIGEST_SIZE,
- },
- /* http://csrc.nist.gov/groups/ST/toolkit/documents/Examples/HMAC_SHA256.pdf */
- {/* HMAC-SHA256 */
- .hash_alg = "hmac(sha256)",
- .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
- "\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F"
- "\x10\x11\x12\x13\x14\x15\x16\x17"
- "\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F"
- "\x20\x21\x22\x23\x24\x25\x26\x27"
- "\x28\x29\x2A\x2B\x2C\x2D\x2E\x2F"
- "\x30\x31\x32\x33\x34\x35\x36\x37"
- "\x38\x39\x3A\x3B\x3C\x3D\x3E\x3F",
- .klen = 64,
- .input = "Sample message for keylen=blocklen",
- .ilen = 34,
- .digest = "\x8B\xB9\xA1\xDB\x98\x06\xF2\x0D"
- "\xF7\xF7\x7B\x82\x13\x8C\x79\x14"
- "\xD1\x74\xD5\x9E\x13\xDC\x4D\x01"
- "\x69\xC9\x05\x7B\x13\x3E\x1D\x62",
- .diglen = SHA256_DIGEST_SIZE,
- },
- };
- /*
- *Test vectors For cipher algorithms
- */
- static struct _fips_test_vector_cipher fips_test_vector_cipher[] = {
- /* From NIST Special Publication 800-38A, Appendix F.1 */
- {/* AES-128 ECB */
- .mod_alg = "ecb(aes)",
- .key = "\x2b\x7e\x15\x16\x28\xae\xd2\xa6"
- "\xab\xf7\x15\x88\x09\xcf\x4f\x3c",
- .klen = 16,
- .ivlen = 0,
- .pln_txt = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
- "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
- "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
- "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
- "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
- "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
- "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
- "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
- .pln_txt_len = 64,
- .enc_txt = "\x3a\xd7\x7b\xb4\x0d\x7a\x36\x60"
- "\xa8\x9e\xca\xf3\x24\x66\xef\x97"
- "\xf5\xd3\xd5\x85\x03\xb9\x69\x9d"
- "\xe7\x85\x89\x5a\x96\xfd\xba\xaf"
- "\x43\xb1\xcd\x7f\x59\x8e\xce\x23"
- "\x88\x1b\x00\xe3\xed\x03\x06\x88"
- "\x7b\x0c\x78\x5e\x27\xe8\xad\x3f"
- "\x82\x23\x20\x71\x04\x72\x5d\xd4",
- .enc_txt_len = 64,
- },
- /* From NIST Special Publication 800-38A, Appendix F.1 */
- {/* AES-256 ECB */
- .mod_alg = "ecb(aes)",
- .key = "\x60\x3d\xeb\x10\x15\xca\x71\xbe"
- "\x2b\x73\xae\xf0\x85\x7d\x77\x81"
- "\x1f\x35\x2c\x07\x3b\x61\x08\xd7"
- "\x2d\x98\x10\xa3\x09\x14\xdf\xf4",
- .klen = 32,
- .ivlen = 0,
- .pln_txt = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
- "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
- "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
- "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
- "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
- "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
- "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
- "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
- .pln_txt_len = 64,
- .enc_txt = "\xf3\xee\xd1\xbd\xb5\xd2\xa0\x3c"
- "\x06\x4b\x5a\x7e\x3d\xb1\x81\xf8"
- "\x59\x1c\xcb\x10\xd4\x10\xed\x26"
- "\xdc\x5b\xa7\x4a\x31\x36\x28\x70"
- "\xb6\xed\x21\xb9\x9c\xa6\xf4\xf9"
- "\xf1\x53\xe7\xb1\xbe\xaf\xed\x1d"
- "\x23\x30\x4b\x7a\x39\xf9\xf3\xff"
- "\x06\x7d\x8d\x8f\x9e\x24\xec\xc7",
- .enc_txt_len = 64,
- },
- /* From NIST Special Publication 800-38A, Appendix F.2 */
- {/* AES-128 CBC */
- .mod_alg = "cbc(aes)",
- .key = "\x2b\x7e\x15\x16\x28\xae\xd2\xa6"
- "\xab\xf7\x15\x88\x09\xcf\x4f\x3c",
- .klen = 16,
- .iv = "\x00\x01\x02\x03\x04\x05\x06\x07"
- "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
- .ivlen = 16,
- .pln_txt = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
- "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
- "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
- "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
- "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
- "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
- "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
- "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
- .pln_txt_len = 64,
- .enc_txt = "\x76\x49\xab\xac\x81\x19\xb2\x46"
- "\xce\xe9\x8e\x9b\x12\xe9\x19\x7d"
- "\x50\x86\xcb\x9b\x50\x72\x19\xee"
- "\x95\xdb\x11\x3a\x91\x76\x78\xb2"
- "\x73\xbe\xd6\xb8\xe3\xc1\x74\x3b"
- "\x71\x16\xe6\x9e\x22\x22\x95\x16"
- "\x3f\xf1\xca\xa1\x68\x1f\xac\x09"
- "\x12\x0e\xca\x30\x75\x86\xe1\xa7",
- .enc_txt_len = 64,
- },
- /* From NIST Special Publication 800-38A, Appendix F.2 */
- {/* AES-256 CBC */
- .mod_alg = "cbc(aes)",
- .key = "\x60\x3d\xeb\x10\x15\xca\x71\xbe"
- "\x2b\x73\xae\xf0\x85\x7d\x77\x81"
- "\x1f\x35\x2c\x07\x3b\x61\x08\xd7"
- "\x2d\x98\x10\xa3\x09\x14\xdf\xf4",
- .klen = 32,
- .iv = "\x00\x01\x02\x03\x04\x05\x06\x07"
- "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
- .ivlen = 16,
- .pln_txt = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
- "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
- "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
- "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
- "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
- "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
- "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
- "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
- .pln_txt_len = 64,
- .enc_txt = "\xf5\x8c\x4c\x04\xd6\xe5\xf1\xba"
- "\x77\x9e\xab\xfb\x5f\x7b\xfb\xd6"
- "\x9c\xfc\x4e\x96\x7e\xdb\x80\x8d"
- "\x67\x9f\x77\x7b\xc6\x70\x2c\x7d"
- "\x39\xf2\x33\x69\xa9\xd9\xba\xcf"
- "\xa5\x30\xe2\x63\x04\x23\x14\x61"
- "\xb2\xeb\x05\xe2\xc3\x9b\xe9\xfc"
- "\xda\x6c\x19\x07\x8c\x6a\x9d\x1b",
- .enc_txt_len = 64,
- },
- /* From NIST Special Publication 800-38A, Appendix F.5 */
- {/* AES-128 CTR */
- .mod_alg = "ctr(aes)",
- .key = "\x2b\x7e\x15\x16\x28\xae\xd2\xa6"
- "\xab\xf7\x15\x88\x09\xcf\x4f\x3c",
- .klen = 16,
- .iv = "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
- "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
- .ivlen = 16,
- .pln_txt = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
- "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
- "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
- "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
- "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
- "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
- "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
- "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
- .pln_txt_len = 64,
- .enc_txt = "\x87\x4d\x61\x91\xb6\x20\xe3\x26"
- "\x1b\xef\x68\x64\x99\x0d\xb6\xce"
- "\x98\x06\xf6\x6b\x79\x70\xfd\xff"
- "\x86\x17\x18\x7b\xb9\xff\xfd\xff"
- "\x5a\xe4\xdf\x3e\xdb\xd5\xd3\x5e"
- "\x5b\x4f\x09\x02\x0d\xb0\x3e\xab"
- "\x1e\x03\x1d\xda\x2f\xbe\x03\xd1"
- "\x79\x21\x70\xa0\xf3\x00\x9c\xee",
- .enc_txt_len = 64,
- },
- /* From NIST Special Publication 800-38A, Appendix F.5 */
- {/* AES-256 CTR */
- .mod_alg = "ctr(aes)",
- .key = "\x60\x3d\xeb\x10\x15\xca\x71\xbe"
- "\x2b\x73\xae\xf0\x85\x7d\x77\x81"
- "\x1f\x35\x2c\x07\x3b\x61\x08\xd7"
- "\x2d\x98\x10\xa3\x09\x14\xdf\xf4",
- .klen = 32,
- .iv = "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
- "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
- .ivlen = 16,
- .pln_txt = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
- "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
- "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
- "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
- "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
- "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
- "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
- "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
- .pln_txt_len = 64,
- .enc_txt = "\x60\x1e\xc3\x13\x77\x57\x89\xa5"
- "\xb7\xa7\xf5\x04\xbb\xf3\xd2\x28"
- "\xf4\x43\xe3\xca\x4d\x62\xb5\x9a"
- "\xca\x84\xe9\x90\xca\xca\xf5\xc5"
- "\x2b\x09\x30\xda\xa2\x3d\xe9\x4c"
- "\xe8\x70\x17\xba\x2d\x84\x98\x8d"
- "\xdf\xc9\xc5\x8d\xb6\x7a\xad\xa6"
- "\x13\xc2\xdd\x08\x45\x79\x41\xa6",
- .enc_txt_len = 64,
- },
- /* Derived From From NIST Special Publication 800-38A */
- {/* AES-128 XTS requires 2 keys and thus length of key is twice. */
- .mod_alg = "xts(aes)",
- .key = "\x60\x3d\xeb\x10\x15\xca\x71\xbe"
- "\x2b\x73\xae\xf0\x85\x7d\x77\x81"
- "\x1f\x35\x2c\x07\x3b\x61\x08\xd7"
- "\x2d\x98\x10\xa3\x09\x14\xdf\xf4",
- .klen = 32,
- .iv = "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
- "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
- .ivlen = 16,
- .pln_txt = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
- "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
- "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
- "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
- "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
- "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
- "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
- "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
- .pln_txt_len = 64,
- .enc_txt = "\xba\x2a\x7d\x50\x7b\x60\x63\x3e"
- "\xf3\x1b\x06\x14\xb4\x45\xb5\xb5"
- "\x42\x0d\x12\x57\x28\x15\x2e\x5d"
- "\x5a\x54\xbe\x46\x5c\x9d\x1f\x2e"
- "\x18\x8e\x79\x07\xc7\xdf\xe7\xf8"
- "\x78\xa6\x53\x2a\x80\xb4\xd9\xce"
- "\x1d\xbe\x75\x7e\xb6\x11\xef\x1e"
- "\x51\x5d\xd6\x70\x03\x51\xcc\x94",
- .enc_txt_len = 64,
- },
- /* Derived From From NIST Special Publication 800-38A */
- {/* AES-256 XTS requires 2 keys and thus length of key is twice */
- .mod_alg = "xts(aes)",
- .key = "\x3a\xd7\x7b\xb4\x0d\x7a\x36\x60"
- "\xa8\x9e\xca\xf3\x24\x66\xef\x97"
- "\xf5\xd3\xd5\x85\x03\xb9\x69\x9d"
- "\xe7\x85\x89\x5a\x96\xfd\xba\xaf"
- "\x43\xb1\xcd\x7f\x59\x8e\xce\x23"
- "\x88\x1b\x00\xe3\xed\x03\x06\x88"
- "\x7b\x0c\x78\x5e\x27\xe8\xad\x3f"
- "\x82\x23\x20\x71\x04\x72\x5d\xd4",
- .klen = 64,
- .iv = "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
- "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
- .ivlen = 16,
- .pln_txt = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
- "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
- "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
- "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
- "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
- "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
- "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
- "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
- .pln_txt_len = 64,
- .enc_txt = "\xd7\x2b\x90\x02\x6f\xf0\xd2\x39"
- "\x7b\x1a\x57\x92\xd0\x1e\xc1\xb6"
- "\x04\x8c\x08\x8e\xa4\x1f\xa0\x0f"
- "\x5e\xd8\xaf\xda\x6e\xd2\x4e\x5b"
- "\x23\xde\x09\xa4\x19\x79\xda\xd4"
- "\xe9\x4b\xbc\x05\x2e\xca\x20\x7d"
- "\xd5\x0f\x89\x88\xa3\xda\x46\x1f"
- "\x1e\xde\x53\x78\x90\xb2\x9a\x2c",
- .enc_txt_len = 64,
- },
- /* From NIST Special Publication 800-67, Appendix B.1 */
- {/* 3DES ECB */
- .mod_alg = "ecb(des3_ede)",
- .key = "\x01\x23\x45\x67\x89\xAB\xCD\xEF"
- "\x23\x45\x67\x89\xAB\xCD\xEF\x01"
- "\x45\x67\x89\xAB\xCD\xEF\x01\x23",
- .klen = 24,
- .ivlen = 0,
- .pln_txt = "\x54\x68\x65\x20\x71\x75\x66\x63"
- "\x6B\x20\x62\x72\x6F\x77\x6E\x20"
- "\x66\x6F\x78\x20\x6A\x75\x6D\x70",
- .pln_txt_len = 24,
- .enc_txt = "\xA8\x26\xFD\x8C\xE5\x3B\x85\x5F"
- "\xCC\xE2\x1C\x81\x12\x25\x6F\xE6"
- "\x68\xD5\xC0\x5D\xD9\xB6\xB9\x00",
- .enc_txt_len = 24,
- },
- /* Derived From From NIST Special Publication 800-38A and 800-67 */
- {/* 3DES CBC */
- .mod_alg = "cbc(des3_ede)",
- .key = "\x01\x23\x45\x67\x89\xAB\xCD\xEF"
- "\x23\x45\x67\x89\xAB\xCD\xEF\x01"
- "\x45\x67\x89\xAB\xCD\xEF\x01\x23",
- .klen = 24,
- .iv = "\x00\x01\x02\x03\x04\x05\x06\x07",
- .ivlen = 8,
- .pln_txt = "\x54\x68\x65\x20\x71\x75\x66\x63"
- "\x6B\x20\x62\x72\x6F\x77\x6E\x20"
- "\x66\x6F\x78\x20\x6A\x75\x6D\x70",
- .pln_txt_len = 24,
- .enc_txt = "\xf3\x68\xd0\x6f\x3b\xbd\x61\x4e"
- "\x60\xf2\xd0\x24\x5c\xad\x3f\x81"
- "\x8d\x5c\x69\xf2\xcb\x3f\xd5\xc7",
- .enc_txt_len = 24,
- },
- };
- /*
- *Test vectors For AEAD algorithms
- */
- static struct _fips_test_vector_aead fips_test_vector_aead[] = {
- /* From NIST Special Publication 800-38C: Appendix C.1 */
- { /*AES 128-CCM */
- .mod_alg = "ccm(aes)",
- .key = "\x40\x41\x42\x43\x44\x45\x46\x47"
- "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f",
- .klen = 16,
- .iv = "\x07\x10\x11\x12\x13\x14\x15\x16"
- "\x00\x00\x00\x00\x00\x00\x00\x00",
- .ivlen = 16,
- .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07",
- .alen = 8,
- .pln_txt = "\x20\x21\x22\x23",
- .pln_txt_len = 4,
- .enc_txt = "\x71\x62\x01\x5b\x4d\xac\x25\x5d",
- .enc_txt_len = 8,
- },
- /* Derived From NIST Special Publication 800-38C: Appendix C.1 */
- { /*AES 256-CCM */
- .mod_alg = "ccm(aes)",
- .key = "\x60\x3d\xeb\x10\x15\xca\x71\xbe"
- "\x2b\x73\xae\xf0\x85\x7d\x77\x81"
- "\x1f\x35\x2c\x07\x3b\x61\x08\xd7"
- "\x2d\x98\x10\xa3\x09\x14\xdf\xf4",
- .klen = 32,
- .iv = "\x07\x10\x11\x12\x13\x14\x15\x16"
- "\x00\x00\x00\x00\x00\x00\x00\x00",
- .ivlen = 16,
- .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07",
- .alen = 8,
- .pln_txt = "\x20\x21\x22\x23",
- .pln_txt_len = 4,
- .enc_txt = "\xa8\xc7\xa9\x6a\x3a\x5b\x15\xe1",
- .enc_txt_len = 8,
- },
- };
- #endif /* __CRYPTO_MSM_QCRYPTO_FIPS_H */
|