1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 2 /* 3 * Algorithm testing framework and tests. 4 * 5 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au> 6 * Copyright (c) 2002 Jean-Francois Dive <jef@linuxbe.org> 7 * Copyright (c) 2007 Nokia Siemens Networks 8 * Copyright (c) 2008 Herbert Xu <herbert@gondor.apana.org.au> 9 * Copyright (c) 2019 Google LLC 10 * 11 * Updated RFC4106 AES-GCM testing. Some test vectors were taken from 12 * http://csrc.nist.gov/groups/ST/toolkit/BCM/documents/proposedmodes/ 13 * gcm/gcm-test-vectors.tar.gz 14 * Authors: Aidan O'Mahony (aidan.o.mahony@intel.com) 15 * Adrian Hoban <adrian.hoban@intel.com> 16 * Gabriele Paoloni <gabriele.paoloni@intel.com> 17 * Tadeusz Struk (tadeusz.struk@intel.com) 18 * Copyright (c) 2010, Intel Corporation. 19 */ 20 #ifndef _CRYPTO_TESTMGR_H 21 #define _CRYPTO_TESTMGR_H 22 23 #include <linux/oid_registry.h> 24 25 #define MAX_IVLEN 32 26 27 /* 28 * hash_testvec: structure to describe a hash (message digest) test 29 * @key: Pointer to key (NULL if none) 30 * @plaintext: Pointer to source data 31 * @digest: Pointer to expected digest 32 * @psize: Length of source data in bytes 33 * @ksize: Length of @key in bytes (0 if no key) 34 * @setkey_error: Expected error from setkey() 35 * @digest_error: Expected error from digest() 36 */ 37 struct hash_testvec { 38 const char *key; 39 const char *plaintext; 40 const char *digest; 41 unsigned int psize; 42 unsigned short ksize; 43 int setkey_error; 44 int digest_error; 45 }; 46 47 /* 48 * cipher_testvec: structure to describe a symmetric cipher test 49 * @key: Pointer to key 50 * @klen: Length of @key in bytes 51 * @iv: Pointer to IV. If NULL, an all-zeroes IV is used. 52 * @iv_out: Pointer to output IV, if applicable for the cipher. 53 * @ptext: Pointer to plaintext 54 * @ctext: Pointer to ciphertext 55 * @len: Length of @ptext and @ctext in bytes 56 * @wk: Does the test need CRYPTO_TFM_REQ_FORBID_WEAK_KEYS? 57 * ( e.g. test needs to fail due to a weak key ) 58 * @fips_skip: Skip the test vector in FIPS mode 59 * @generates_iv: Encryption should ignore the given IV, and output @iv_out. 60 * Decryption takes @iv_out. Needed for AES Keywrap ("kw(aes)"). 61 * @setkey_error: Expected error from setkey() 62 * @crypt_error: Expected error from encrypt() and decrypt() 63 */ 64 struct cipher_testvec { 65 const char *key; 66 const char *iv; 67 const char *iv_out; 68 const char *ptext; 69 const char *ctext; 70 unsigned char wk; /* weak key flag */ 71 unsigned short klen; 72 unsigned int len; 73 bool fips_skip; 74 bool generates_iv; 75 int setkey_error; 76 int crypt_error; 77 }; 78 79 /* 80 * aead_testvec: structure to describe an AEAD test 81 * @key: Pointer to key 82 * @iv: Pointer to IV. If NULL, an all-zeroes IV is used. 83 * @ptext: Pointer to plaintext 84 * @assoc: Pointer to associated data 85 * @ctext: Pointer to the full authenticated ciphertext. For AEADs that 86 * produce a separate "ciphertext" and "authentication tag", these 87 * two parts are concatenated: ciphertext || tag. 88 * @novrfy: If set, this is an inauthentic input test: only decryption is 89 * tested, and it is expected to fail with either -EBADMSG or 90 * @crypt_error if it is nonzero. 91 * @wk: Does the test need CRYPTO_TFM_REQ_FORBID_WEAK_KEYS? 92 * (e.g. setkey() needs to fail due to a weak key) 93 * @klen: Length of @key in bytes 94 * @plen: Length of @ptext in bytes 95 * @alen: Length of @assoc in bytes 96 * @clen: Length of @ctext in bytes 97 * @setkey_error: Expected error from setkey(). If set, neither encryption nor 98 * decryption is tested. 99 * @setauthsize_error: Expected error from setauthsize(). If set, neither 100 * encryption nor decryption is tested. 101 * @crypt_error: When @novrfy=0, the expected error from encrypt(). When 102 * @novrfy=1, an optional alternate error code that is acceptable 103 * for decrypt() to return besides -EBADMSG. 104 */ 105 struct aead_testvec { 106 const char *key; 107 const char *iv; 108 const char *ptext; 109 const char *assoc; 110 const char *ctext; 111 unsigned char novrfy; 112 unsigned char wk; 113 unsigned char klen; 114 unsigned int plen; 115 unsigned int clen; 116 unsigned int alen; 117 int setkey_error; 118 int setauthsize_error; 119 int crypt_error; 120 }; 121 122 struct cprng_testvec { 123 const char *key; 124 const char *dt; 125 const char *v; 126 const char *result; 127 unsigned char klen; 128 unsigned short dtlen; 129 unsigned short vlen; 130 unsigned short rlen; 131 unsigned short loops; 132 }; 133 134 struct drbg_testvec { 135 const unsigned char *entropy; 136 size_t entropylen; 137 const unsigned char *entpra; 138 const unsigned char *entprb; 139 size_t entprlen; 140 const unsigned char *addtla; 141 const unsigned char *addtlb; 142 size_t addtllen; 143 const unsigned char *pers; 144 size_t perslen; 145 const unsigned char *expected; 146 size_t expectedlen; 147 }; 148 149 struct akcipher_testvec { 150 const unsigned char *key; 151 const unsigned char *params; 152 const unsigned char *m; 153 const unsigned char *c; 154 unsigned int key_len; 155 unsigned int param_len; 156 unsigned int m_size; 157 unsigned int c_size; 158 bool public_key_vec; 159 bool siggen_sigver_test; 160 enum OID algo; 161 }; 162 163 struct kpp_testvec { 164 const unsigned char *secret; 165 const unsigned char *b_secret; 166 const unsigned char *b_public; 167 const unsigned char *expected_a_public; 168 const unsigned char *expected_ss; 169 unsigned short secret_size; 170 unsigned short b_secret_size; 171 unsigned short b_public_size; 172 unsigned short expected_a_public_size; 173 unsigned short expected_ss_size; 174 bool genkey; 175 }; 176 177 static const char zeroed_string[48]; 178 179 /* 180 * RSA test vectors. Borrowed from openSSL. 181 */ 182 static const struct akcipher_testvec rsa_tv_template[] = { 183 { 184 #ifndef CONFIG_CRYPTO_FIPS 185 .key = 186 "\x30\x81\x9A" /* sequence of 154 bytes */ 187 "\x02\x01\x01" /* version - integer of 1 byte */ 188 "\x02\x41" /* modulus - integer of 65 bytes */ 189 "\x00\xAA\x36\xAB\xCE\x88\xAC\xFD\xFF\x55\x52\x3C\x7F\xC4\x52\x3F" 190 "\x90\xEF\xA0\x0D\xF3\x77\x4A\x25\x9F\x2E\x62\xB4\xC5\xD9\x9C\xB5" 191 "\xAD\xB3\x00\xA0\x28\x5E\x53\x01\x93\x0E\x0C\x70\xFB\x68\x76\x93" 192 "\x9C\xE6\x16\xCE\x62\x4A\x11\xE0\x08\x6D\x34\x1E\xBC\xAC\xA0\xA1" 193 "\xF5" 194 "\x02\x01\x11" /* public key - integer of 1 byte */ 195 "\x02\x40" /* private key - integer of 64 bytes */ 196 "\x0A\x03\x37\x48\x62\x64\x87\x69\x5F\x5F\x30\xBC\x38\xB9\x8B\x44" 197 "\xC2\xCD\x2D\xFF\x43\x40\x98\xCD\x20\xD8\xA1\x38\xD0\x90\xBF\x64" 198 "\x79\x7C\x3F\xA7\xA2\xCD\xCB\x3C\xD1\xE0\xBD\xBA\x26\x54\xB4\xF9" 199 "\xDF\x8E\x8A\xE5\x9D\x73\x3D\x9F\x33\xB3\x01\x62\x4A\xFD\x1D\x51" 200 "\x02\x01\x00" /* prime1 - integer of 1 byte */ 201 "\x02\x01\x00" /* prime2 - integer of 1 byte */ 202 "\x02\x01\x00" /* exponent1 - integer of 1 byte */ 203 "\x02\x01\x00" /* exponent2 - integer of 1 byte */ 204 "\x02\x01\x00", /* coefficient - integer of 1 byte */ 205 .m = "\x54\x85\x9b\x34\x2c\x49\xea\x2a", 206 .c = 207 "\x63\x1c\xcd\x7b\xe1\x7e\xe4\xde\xc9\xa8\x89\xa1\x74\xcb\x3c\x63" 208 "\x7d\x24\xec\x83\xc3\x15\xe4\x7f\x73\x05\x34\xd1\xec\x22\xbb\x8a" 209 "\x5e\x32\x39\x6d\xc1\x1d\x7d\x50\x3b\x9f\x7a\xad\xf0\x2e\x25\x53" 210 "\x9f\x6e\xbd\x4c\x55\x84\x0c\x9b\xcf\x1a\x4b\x51\x1e\x9e\x0c\x06", 211 .key_len = 157, 212 .m_size = 8, 213 .c_size = 64, 214 }, { 215 .key = 216 "\x30\x82\x01\x1D" /* sequence of 285 bytes */ 217 "\x02\x01\x01" /* version - integer of 1 byte */ 218 "\x02\x81\x81" /* modulus - integer of 129 bytes */ 219 "\x00\xBB\xF8\x2F\x09\x06\x82\xCE\x9C\x23\x38\xAC\x2B\x9D\xA8\x71" 220 "\xF7\x36\x8D\x07\xEE\xD4\x10\x43\xA4\x40\xD6\xB6\xF0\x74\x54\xF5" 221 "\x1F\xB8\xDF\xBA\xAF\x03\x5C\x02\xAB\x61\xEA\x48\xCE\xEB\x6F\xCD" 222 "\x48\x76\xED\x52\x0D\x60\xE1\xEC\x46\x19\x71\x9D\x8A\x5B\x8B\x80" 223 "\x7F\xAF\xB8\xE0\xA3\xDF\xC7\x37\x72\x3E\xE6\xB4\xB7\xD9\x3A\x25" 224 "\x84\xEE\x6A\x64\x9D\x06\x09\x53\x74\x88\x34\xB2\x45\x45\x98\x39" 225 "\x4E\xE0\xAA\xB1\x2D\x7B\x61\xA5\x1F\x52\x7A\x9A\x41\xF6\xC1\x68" 226 "\x7F\xE2\x53\x72\x98\xCA\x2A\x8F\x59\x46\xF8\xE5\xFD\x09\x1D\xBD" 227 "\xCB" 228 "\x02\x01\x11" /* public key - integer of 1 byte */ 229 "\x02\x81\x81" /* private key - integer of 129 bytes */ 230 "\x00\xA5\xDA\xFC\x53\x41\xFA\xF2\x89\xC4\xB9\x88\xDB\x30\xC1\xCD" 231 "\xF8\x3F\x31\x25\x1E\x06\x68\xB4\x27\x84\x81\x38\x01\x57\x96\x41" 232 "\xB2\x94\x10\xB3\xC7\x99\x8D\x6B\xC4\x65\x74\x5E\x5C\x39\x26\x69" 233 "\xD6\x87\x0D\xA2\xC0\x82\xA9\x39\xE3\x7F\xDC\xB8\x2E\xC9\x3E\xDA" 234 "\xC9\x7F\xF3\xAD\x59\x50\xAC\xCF\xBC\x11\x1C\x76\xF1\xA9\x52\x94" 235 "\x44\xE5\x6A\xAF\x68\xC5\x6C\x09\x2C\xD3\x8D\xC3\xBE\xF5\xD2\x0A" 236 "\x93\x99\x26\xED\x4F\x74\xA1\x3E\xDD\xFB\xE1\xA1\xCE\xCC\x48\x94" 237 "\xAF\x94\x28\xC2\xB7\xB8\x88\x3F\xE4\x46\x3A\x4B\xC8\x5B\x1C\xB3" 238 "\xC1" 239 "\x02\x01\x00" /* prime1 - integer of 1 byte */ 240 "\x02\x01\x00" /* prime2 - integer of 1 byte */ 241 "\x02\x01\x00" /* exponent1 - integer of 1 byte */ 242 "\x02\x01\x00" /* exponent2 - integer of 1 byte */ 243 "\x02\x01\x00", /* coefficient - integer of 1 byte */ 244 .key_len = 289, 245 .m = "\x54\x85\x9b\x34\x2c\x49\xea\x2a", 246 .c = 247 "\x74\x1b\x55\xac\x47\xb5\x08\x0a\x6e\x2b\x2d\xf7\x94\xb8\x8a\x95" 248 "\xed\xa3\x6b\xc9\x29\xee\xb2\x2c\x80\xc3\x39\x3b\x8c\x62\x45\x72" 249 "\xc2\x7f\x74\x81\x91\x68\x44\x48\x5a\xdc\xa0\x7e\xa7\x0b\x05\x7f" 250 "\x0e\xa0\x6c\xe5\x8f\x19\x4d\xce\x98\x47\x5f\xbd\x5f\xfe\xe5\x34" 251 "\x59\x89\xaf\xf0\xba\x44\xd7\xf1\x1a\x50\x72\xef\x5e\x4a\xb6\xb7" 252 "\x54\x34\xd1\xc4\x83\x09\xdf\x0f\x91\x5f\x7d\x91\x70\x2f\xd4\x13" 253 "\xcc\x5e\xa4\x6c\xc3\x4d\x28\xef\xda\xaf\xec\x14\x92\xfc\xa3\x75" 254 "\x13\xb4\xc1\xa1\x11\xfc\x40\x2f\x4c\x9d\xdf\x16\x76\x11\x20\x6b", 255 .m_size = 8, 256 .c_size = 128, 257 }, { 258 #endif 259 .key = 260 "\x30\x82\x02\x1F" /* sequence of 543 bytes */ 261 "\x02\x01\x01" /* version - integer of 1 byte */ 262 "\x02\x82\x01\x00" /* modulus - integer of 256 bytes */ 263 "\xDB\x10\x1A\xC2\xA3\xF1\xDC\xFF\x13\x6B\xED\x44\xDF\xF0\x02\x6D" 264 "\x13\xC7\x88\xDA\x70\x6B\x54\xF1\xE8\x27\xDC\xC3\x0F\x99\x6A\xFA" 265 "\xC6\x67\xFF\x1D\x1E\x3C\x1D\xC1\xB5\x5F\x6C\xC0\xB2\x07\x3A\x6D" 266 "\x41\xE4\x25\x99\xAC\xFC\xD2\x0F\x02\xD3\xD1\x54\x06\x1A\x51\x77" 267 "\xBD\xB6\xBF\xEA\xA7\x5C\x06\xA9\x5D\x69\x84\x45\xD7\xF5\x05\xBA" 268 "\x47\xF0\x1B\xD7\x2B\x24\xEC\xCB\x9B\x1B\x10\x8D\x81\xA0\xBE\xB1" 269 "\x8C\x33\xE4\x36\xB8\x43\xEB\x19\x2A\x81\x8D\xDE\x81\x0A\x99\x48" 270 "\xB6\xF6\xBC\xCD\x49\x34\x3A\x8F\x26\x94\xE3\x28\x82\x1A\x7C\x8F" 271 "\x59\x9F\x45\xE8\x5D\x1A\x45\x76\x04\x56\x05\xA1\xD0\x1B\x8C\x77" 272 "\x6D\xAF\x53\xFA\x71\xE2\x67\xE0\x9A\xFE\x03\xA9\x85\xD2\xC9\xAA" 273 "\xBA\x2A\xBC\xF4\xA0\x08\xF5\x13\x98\x13\x5D\xF0\xD9\x33\x34\x2A" 274 "\x61\xC3\x89\x55\xF0\xAE\x1A\x9C\x22\xEE\x19\x05\x8D\x32\xFE\xEC" 275 "\x9C\x84\xBA\xB7\xF9\x6C\x3A\x4F\x07\xFC\x45\xEB\x12\xE5\x7B\xFD" 276 "\x55\xE6\x29\x69\xD1\xC2\xE8\xB9\x78\x59\xF6\x79\x10\xC6\x4E\xEB" 277 "\x6A\x5E\xB9\x9A\xC7\xC4\x5B\x63\xDA\xA3\x3F\x5E\x92\x7A\x81\x5E" 278 "\xD6\xB0\xE2\x62\x8F\x74\x26\xC2\x0C\xD3\x9A\x17\x47\xE6\x8E\xAB" 279 "\x02\x03\x01\x00\x01" /* public key - integer of 3 bytes */ 280 "\x02\x82\x01\x00" /* private key - integer of 256 bytes */ 281 "\x52\x41\xF4\xDA\x7B\xB7\x59\x55\xCA\xD4\x2F\x0F\x3A\xCB\xA4\x0D" 282 "\x93\x6C\xCC\x9D\xC1\xB2\xFB\xFD\xAE\x40\x31\xAC\x69\x52\x21\x92" 283 "\xB3\x27\xDF\xEA\xEE\x2C\x82\xBB\xF7\x40\x32\xD5\x14\xC4\x94\x12" 284 "\xEC\xB8\x1F\xCA\x59\xE3\xC1\x78\xF3\x85\xD8\x47\xA5\xD7\x02\x1A" 285 "\x65\x79\x97\x0D\x24\xF4\xF0\x67\x6E\x75\x2D\xBF\x10\x3D\xA8\x7D" 286 "\xEF\x7F\x60\xE4\xE6\x05\x82\x89\x5D\xDF\xC6\xD2\x6C\x07\x91\x33" 287 "\x98\x42\xF0\x02\x00\x25\x38\xC5\x85\x69\x8A\x7D\x2F\x95\x6C\x43" 288 "\x9A\xB8\x81\xE2\xD0\x07\x35\xAA\x05\x41\xC9\x1E\xAF\xE4\x04\x3B" 289 "\x19\xB8\x73\xA2\xAC\x4B\x1E\x66\x48\xD8\x72\x1F\xAC\xF6\xCB\xBC" 290 "\x90\x09\xCA\xEC\x0C\xDC\xF9\x2C\xD7\xEB\xAE\xA3\xA4\x47\xD7\x33" 291 "\x2F\x8A\xCA\xBC\x5E\xF0\x77\xE4\x97\x98\x97\xC7\x10\x91\x7D\x2A" 292 "\xA6\xFF\x46\x83\x97\xDE\xE9\xE2\x17\x03\x06\x14\xE2\xD7\xB1\x1D" 293 "\x77\xAF\x51\x27\x5B\x5E\x69\xB8\x81\xE6\x11\xC5\x43\x23\x81\x04" 294 "\x62\xFF\xE9\x46\xB8\xD8\x44\xDB\xA5\xCC\x31\x54\x34\xCE\x3E\x82" 295 "\xD6\xBF\x7A\x0B\x64\x21\x6D\x88\x7E\x5B\x45\x12\x1E\x63\x8D\x49" 296 "\xA7\x1D\xD9\x1E\x06\xCD\xE8\xBA\x2C\x8C\x69\x32\xEA\xBE\x60\x71" 297 "\x02\x01\x00" /* prime1 - integer of 1 byte */ 298 "\x02\x01\x00" /* prime2 - integer of 1 byte */ 299 "\x02\x01\x00" /* exponent1 - integer of 1 byte */ 300 "\x02\x01\x00" /* exponent2 - integer of 1 byte */ 301 "\x02\x01\x00", /* coefficient - integer of 1 byte */ 302 .key_len = 547, 303 .m = "\x54\x85\x9b\x34\x2c\x49\xea\x2a", 304 .c = 305 "\xb2\x97\x76\xb4\xae\x3e\x38\x3c\x7e\x64\x1f\xcc\xa2\x7f\xf6\xbe" 306 "\xcf\x49\xbc\x48\xd3\x6c\x8f\x0a\x0e\xc1\x73\xbd\x7b\x55\x79\x36" 307 "\x0e\xa1\x87\x88\xb9\x2c\x90\xa6\x53\x5e\xe9\xef\xc4\xe2\x4d\xdd" 308 "\xf7\xa6\x69\x82\x3f\x56\xa4\x7b\xfb\x62\xe0\xae\xb8\xd3\x04\xb3" 309 "\xac\x5a\x15\x2a\xe3\x19\x9b\x03\x9a\x0b\x41\xda\x64\xec\x0a\x69" 310 "\xfc\xf2\x10\x92\xf3\xc1\xbf\x84\x7f\xfd\x2c\xae\xc8\xb5\xf6\x41" 311 "\x70\xc5\x47\x03\x8a\xf8\xff\x6f\x3f\xd2\x6f\x09\xb4\x22\xf3\x30" 312 "\xbe\xa9\x85\xcb\x9c\x8d\xf9\x8f\xeb\x32\x91\xa2\x25\x84\x8f\xf5" 313 "\xdc\xc7\x06\x9c\x2d\xe5\x11\x2c\x09\x09\x87\x09\xa9\xf6\x33\x73" 314 "\x90\xf1\x60\xf2\x65\xdd\x30\xa5\x66\xce\x62\x7b\xd0\xf8\x2d\x3d" 315 "\x19\x82\x77\xe3\x0a\x5f\x75\x2f\x8e\xb1\xe5\xe8\x91\x35\x1b\x3b" 316 "\x33\xb7\x66\x92\xd1\xf2\x8e\x6f\xe5\x75\x0c\xad\x36\xfb\x4e\xd0" 317 "\x66\x61\xbd\x49\xfe\xf4\x1a\xa2\x2b\x49\xfe\x03\x4c\x74\x47\x8d" 318 "\x9a\x66\xb2\x49\x46\x4d\x77\xea\x33\x4d\x6b\x3c\xb4\x49\x4a\xc6" 319 "\x7d\x3d\xb5\xb9\x56\x41\x15\x67\x0f\x94\x3c\x93\x65\x27\xe0\x21" 320 "\x5d\x59\xc3\x62\xd5\xa6\xda\x38\x26\x22\x5e\x34\x1c\x94\xaf\x98", 321 .m_size = 8, 322 .c_size = 256, 323 }, { 324 .key = 325 "\x30\x82\x01\x09" /* sequence of 265 bytes */ 326 "\x02\x82\x01\x00" /* modulus - integer of 256 bytes */ 327 "\xDB\x10\x1A\xC2\xA3\xF1\xDC\xFF\x13\x6B\xED\x44\xDF\xF0\x02\x6D" 328 "\x13\xC7\x88\xDA\x70\x6B\x54\xF1\xE8\x27\xDC\xC3\x0F\x99\x6A\xFA" 329 "\xC6\x67\xFF\x1D\x1E\x3C\x1D\xC1\xB5\x5F\x6C\xC0\xB2\x07\x3A\x6D" 330 "\x41\xE4\x25\x99\xAC\xFC\xD2\x0F\x02\xD3\xD1\x54\x06\x1A\x51\x77" 331 "\xBD\xB6\xBF\xEA\xA7\x5C\x06\xA9\x5D\x69\x84\x45\xD7\xF5\x05\xBA" 332 "\x47\xF0\x1B\xD7\x2B\x24\xEC\xCB\x9B\x1B\x10\x8D\x81\xA0\xBE\xB1" 333 "\x8C\x33\xE4\x36\xB8\x43\xEB\x19\x2A\x81\x8D\xDE\x81\x0A\x99\x48" 334 "\xB6\xF6\xBC\xCD\x49\x34\x3A\x8F\x26\x94\xE3\x28\x82\x1A\x7C\x8F" 335 "\x59\x9F\x45\xE8\x5D\x1A\x45\x76\x04\x56\x05\xA1\xD0\x1B\x8C\x77" 336 "\x6D\xAF\x53\xFA\x71\xE2\x67\xE0\x9A\xFE\x03\xA9\x85\xD2\xC9\xAA" 337 "\xBA\x2A\xBC\xF4\xA0\x08\xF5\x13\x98\x13\x5D\xF0\xD9\x33\x34\x2A" 338 "\x61\xC3\x89\x55\xF0\xAE\x1A\x9C\x22\xEE\x19\x05\x8D\x32\xFE\xEC" 339 "\x9C\x84\xBA\xB7\xF9\x6C\x3A\x4F\x07\xFC\x45\xEB\x12\xE5\x7B\xFD" 340 "\x55\xE6\x29\x69\xD1\xC2\xE8\xB9\x78\x59\xF6\x79\x10\xC6\x4E\xEB" 341 "\x6A\x5E\xB9\x9A\xC7\xC4\x5B\x63\xDA\xA3\x3F\x5E\x92\x7A\x81\x5E" 342 "\xD6\xB0\xE2\x62\x8F\x74\x26\xC2\x0C\xD3\x9A\x17\x47\xE6\x8E\xAB" 343 "\x02\x03\x01\x00\x01", /* public key - integer of 3 bytes */ 344 .key_len = 269, 345 .m = "\x54\x85\x9b\x34\x2c\x49\xea\x2a", 346 .c = 347 "\xb2\x97\x76\xb4\xae\x3e\x38\x3c\x7e\x64\x1f\xcc\xa2\x7f\xf6\xbe" 348 "\xcf\x49\xbc\x48\xd3\x6c\x8f\x0a\x0e\xc1\x73\xbd\x7b\x55\x79\x36" 349 "\x0e\xa1\x87\x88\xb9\x2c\x90\xa6\x53\x5e\xe9\xef\xc4\xe2\x4d\xdd" 350 "\xf7\xa6\x69\x82\x3f\x56\xa4\x7b\xfb\x62\xe0\xae\xb8\xd3\x04\xb3" 351 "\xac\x5a\x15\x2a\xe3\x19\x9b\x03\x9a\x0b\x41\xda\x64\xec\x0a\x69" 352 "\xfc\xf2\x10\x92\xf3\xc1\xbf\x84\x7f\xfd\x2c\xae\xc8\xb5\xf6\x41" 353 "\x70\xc5\x47\x03\x8a\xf8\xff\x6f\x3f\xd2\x6f\x09\xb4\x22\xf3\x30" 354 "\xbe\xa9\x85\xcb\x9c\x8d\xf9\x8f\xeb\x32\x91\xa2\x25\x84\x8f\xf5" 355 "\xdc\xc7\x06\x9c\x2d\xe5\x11\x2c\x09\x09\x87\x09\xa9\xf6\x33\x73" 356 "\x90\xf1\x60\xf2\x65\xdd\x30\xa5\x66\xce\x62\x7b\xd0\xf8\x2d\x3d" 357 "\x19\x82\x77\xe3\x0a\x5f\x75\x2f\x8e\xb1\xe5\xe8\x91\x35\x1b\x3b" 358 "\x33\xb7\x66\x92\xd1\xf2\x8e\x6f\xe5\x75\x0c\xad\x36\xfb\x4e\xd0" 359 "\x66\x61\xbd\x49\xfe\xf4\x1a\xa2\x2b\x49\xfe\x03\x4c\x74\x47\x8d" 360 "\x9a\x66\xb2\x49\x46\x4d\x77\xea\x33\x4d\x6b\x3c\xb4\x49\x4a\xc6" 361 "\x7d\x3d\xb5\xb9\x56\x41\x15\x67\x0f\x94\x3c\x93\x65\x27\xe0\x21" 362 "\x5d\x59\xc3\x62\xd5\xa6\xda\x38\x26\x22\x5e\x34\x1c\x94\xaf\x98", 363 .m_size = 8, 364 .c_size = 256, 365 .public_key_vec = true, 366 #ifndef CONFIG_CRYPTO_FIPS 367 }, { 368 .key = 369 "\x30\x82\x09\x29" /* sequence of 2345 bytes */ 370 "\x02\x01\x00" /* version integer of 1 byte */ 371 "\x02\x82\x02\x01" /* modulus - integer of 513 bytes */ 372 "\x00\xC3\x8B\x55\x7B\x73\x4D\xFF\xE9\x9B\xC6\xDC\x67\x3C\xB4\x8E" 373 "\xA0\x86\xED\xF2\xB9\x50\x5C\x54\x5C\xBA\xE4\xA1\xB2\xA7\xAE\x2F" 374 "\x1B\x7D\xF1\xFB\xAC\x79\xC5\xDF\x1A\x00\xC9\xB2\xC1\x61\x25\x33" 375 "\xE6\x9C\xE9\xCF\xD6\x27\xC4\x4E\x44\x30\x44\x5E\x08\xA1\x87\x52" 376 "\xCC\x6B\x97\x70\x8C\xBC\xA5\x06\x31\x0C\xD4\x2F\xD5\x7D\x26\x24" 377 "\xA2\xE2\xAC\x78\xF4\x53\x14\xCE\xF7\x19\x2E\xD7\xF7\xE6\x0C\xB9" 378 "\x56\x7F\x0B\xF1\xB1\xE2\x43\x70\xBD\x86\x1D\xA1\xCC\x2B\x19\x08" 379 "\x76\xEF\x91\xAC\xBF\x20\x24\x0D\x38\xC0\x89\xB8\x9A\x70\xB3\x64" 380 "\xD9\x8F\x80\x41\x10\x5B\x9F\xB1\xCB\x76\x43\x00\x21\x25\x36\xD4" 381 "\x19\xFC\x55\x95\x10\xE4\x26\x74\x98\x2C\xD9\xBD\x0B\x2B\x04\xC2" 382 "\xAC\x82\x38\xB4\xDD\x4C\x04\x7E\x51\x36\x40\x1E\x0B\xC4\x7C\x25" 383 "\xDD\x4B\xB2\xE7\x20\x0A\x57\xF9\xB4\x94\xC3\x08\x33\x22\x6F\x8B" 384 "\x48\xDB\x03\x68\x5A\x5B\xBA\xAE\xF3\xAD\xCF\xC3\x6D\xBA\xF1\x28" 385 "\x67\x7E\x6C\x79\x07\xDE\xFC\xED\xE7\x96\xE3\x6C\xE0\x2C\x87\xF8" 386 "\x02\x01\x28\x38\x43\x21\x53\x84\x69\x75\x78\x15\x7E\xEE\xD2\x1B" 387 "\xB9\x23\x40\xA8\x86\x1E\x38\x83\xB2\x73\x1D\x53\xFB\x9E\x2A\x8A" 388 "\xB2\x75\x35\x01\xC3\xC3\xC4\x94\xE8\x84\x86\x64\x81\xF4\x42\xAA" 389 "\x3C\x0E\xD6\x4F\xBC\x0A\x09\x2D\xE7\x1B\xD4\x10\xA8\x54\xEA\x89" 390 "\x84\x8A\xCB\xF7\x5A\x3C\xCA\x76\x08\x29\x62\xB4\x6A\x22\xDF\x14" 391 "\x95\x71\xFD\xB6\x86\x39\xB8\x8B\xF8\x91\x7F\x38\xAA\x14\xCD\xE5" 392 "\xF5\x1D\xC2\x6D\x53\x69\x52\x84\x7F\xA3\x1A\x5E\x26\x04\x83\x06" 393 "\x73\x52\x56\xCF\x76\x26\xC9\xDD\x75\xD7\xFC\xF4\x69\xD8\x7B\x55" 394 "\xB7\x68\x13\x53\xB9\xE7\x89\xC3\xE8\xD6\x6E\xA7\x6D\xEA\x81\xFD" 395 "\xC4\xB7\x05\x5A\xB7\x41\x0A\x23\x8E\x03\x8A\x1C\xAE\xD3\x1E\xCE" 396 "\xE3\x5E\xFC\x19\x4A\xEE\x61\x9B\x8E\xE5\xE5\xDD\x85\xF9\x41\xEC" 397 "\x14\x53\x92\xF7\xDD\x06\x85\x02\x91\xE3\xEB\x6C\x43\x03\xB1\x36" 398 "\x7B\x89\x5A\xA8\xEB\xFC\xD5\xA8\x35\xDC\x81\xD9\x5C\xBD\xCA\xDC" 399 "\x9B\x98\x0B\x06\x5D\x0C\x5B\xEE\xF3\xD5\xCC\x57\xC9\x71\x2F\x90" 400 "\x3B\x3C\xF0\x8E\x4E\x35\x48\xAE\x63\x74\xA9\xFC\x72\x75\x8E\x34" 401 "\xA8\xF2\x1F\xEA\xDF\x3A\x37\x2D\xE5\x39\x39\xF8\x57\x58\x3C\x04" 402 "\xFE\x87\x06\x98\xBC\x7B\xD3\x21\x36\x60\x25\x54\xA7\x3D\xFA\x91" 403 "\xCC\xA8\x0B\x92\x8E\xB4\xF7\x06\xFF\x1E\x95\xCB\x07\x76\x97\x3B" 404 "\x9D" 405 "\x02\x03\x01\x00\x01" /* public key integer of 3 bytes */ 406 "\x02\x82\x02\x00" /* private key integer of 512 bytes */ 407 "\x74\xA9\xE0\x6A\x32\xB4\xCA\x85\xD9\x86\x9F\x60\x88\x7B\x40\xCC" 408 "\xCD\x33\x91\xA8\xB6\x25\x1F\xBF\xE3\x51\x1C\x97\xB6\x2A\xD9\xB8" 409 "\x11\x40\x19\xE3\x21\x13\xC8\xB3\x7E\xDC\xD7\x65\x40\x4C\x2D\xD6" 410 "\xDC\xAF\x32\x6C\x96\x75\x2C\x2C\xCA\x8F\x3F\x7A\xEE\xC4\x09\xC6" 411 "\x24\x3A\xC9\xCF\x6D\x8D\x17\x50\x94\x52\xD3\xE7\x0F\x2F\x7E\x94" 412 "\x1F\xA0\xBE\xD9\x25\xE8\x38\x42\x7C\x27\xD2\x79\xF8\x2A\x87\x38" 413 "\xEF\xBB\x74\x8B\xA8\x6E\x8C\x08\xC6\xC7\x4F\x0C\xBC\x79\xC6\xEF" 414 "\x0E\xA7\x5E\xE4\xF8\x8C\x09\xC7\x5E\x37\xCC\x87\x77\xCD\xCF\xD1" 415 "\x6D\x28\x1B\xA9\x62\xC0\xB8\x16\xA7\x8B\xF9\xBB\xCC\xB4\x15\x7F" 416 "\x1B\x69\x03\xF2\x7B\xEB\xE5\x8C\x14\xD6\x23\x4F\x52\x6F\x18\xA6" 417 "\x4B\x5B\x01\xAD\x35\xF9\x48\x53\xB3\x86\x35\x66\xD7\xE7\x29\xC0" 418 "\x09\xB5\xC6\xE6\xFA\xC4\xDA\x19\xBE\xD7\x4D\x41\x14\xBE\x6F\xDF" 419 "\x1B\xAB\xC0\xCA\x88\x07\xAC\xF1\x7D\x35\x83\x67\x28\x2D\x50\xE9" 420 "\xCE\x27\x71\x5E\x1C\xCF\xD2\x30\x65\x79\x72\x2F\x9C\xE1\xD2\x39" 421 "\x7F\xEF\x3B\x01\xF2\x14\x1D\xDF\xBD\x51\xD3\xA1\x53\x62\xCF\x5F" 422 "\x79\x84\xCE\x06\x96\x69\x29\x49\x82\x1C\x71\x4A\xA1\x66\xC8\x2F" 423 "\xFD\x7B\x96\x7B\xFC\xC4\x26\x58\xC4\xFC\x7C\xAF\xB5\xE8\x95\x83" 424 "\x87\xCB\x46\xDE\x97\xA7\xB3\xA2\x54\x5B\xD7\xAF\xAB\xEB\xC8\xF3" 425 "\x55\x9D\x48\x2B\x30\x9C\xDC\x26\x4B\xC2\x89\x45\x13\xB2\x01\x9A" 426 "\xA4\x65\xC3\xEC\x24\x2D\x26\x97\xEB\x80\x8A\x9D\x03\xBC\x59\x66" 427 "\x9E\xE2\xBB\xBB\x63\x19\x64\x93\x11\x7B\x25\x65\x30\xCD\x5B\x4B" 428 "\x2C\xFF\xDC\x2D\x30\x87\x1F\x3C\x88\x07\xD0\xFC\x48\xCC\x05\x8A" 429 "\xA2\xC8\x39\x3E\xD5\x51\xBC\x0A\xBE\x6D\xA8\xA0\xF6\x88\x06\x79" 430 "\x13\xFF\x1B\x45\xDA\x54\xC9\x24\x25\x8A\x75\x0A\x26\xD1\x69\x81" 431 "\x14\x14\xD1\x79\x7D\x8E\x76\xF2\xE0\xEB\xDD\x0F\xDE\xC2\xEC\x80" 432 "\xD7\xDC\x16\x99\x92\xBE\xCB\x40\x0C\xCE\x7C\x3B\x46\xA2\x5B\x5D" 433 "\x0C\x45\xEB\xE1\x00\xDE\x72\x50\xB1\xA6\x0B\x76\xC5\x8D\xFC\x82" 434 "\x38\x6D\x99\x14\x1D\x1A\x4A\xD3\x7C\x53\xB8\x12\x46\xA2\x30\x38" 435 "\x82\xF4\x96\x6E\x8C\xCE\x47\x0D\xAF\x0A\x3B\x45\xB7\x43\x95\x43" 436 "\x9E\x02\x2C\x44\x07\x6D\x1F\x3C\x66\x89\x09\xB6\x1F\x06\x30\xCC" 437 "\xAD\xCE\x7D\x9A\xDE\x3E\xFB\x6C\xE4\x58\x43\xD2\x4F\xA5\x9E\x5E" 438 "\xA7\x7B\xAE\x3A\xF6\x7E\xD9\xDB\xD3\xF5\xC5\x41\xAF\xE6\x9C\x91" 439 "\x02\x82\x01\x01" /* prime1 - integer of 257 bytes */ 440 "\x00\xE0\xA6\x6C\xF0\xA2\xF8\x81\x85\x36\x43\xD0\x13\x0B\x33\x8B" 441 "\x8F\x78\x3D\xAC\xC7\x5E\x46\x6A\x7F\x05\xAE\x3E\x26\x0A\xA6\xD0" 442 "\x51\xF3\xC8\x61\xF5\x77\x22\x48\x10\x87\x4C\xD5\xA4\xD5\xAE\x2D" 443 "\x4E\x7A\xFE\x1C\x31\xE7\x6B\xFF\xA4\x69\x20\xF9\x2A\x0B\x99\xBE" 444 "\x7C\x32\x68\xAD\xB0\xC6\x94\x81\x41\x75\xDC\x06\x78\x0A\xB4\xCF" 445 "\xCD\x1B\x2D\x31\xE4\x7B\xEA\xA8\x35\x99\x75\x57\xC6\x0E\xF6\x78" 446 "\x4F\xA0\x92\x4A\x00\x1B\xE7\x96\xF2\x5B\xFD\x2C\x0A\x0A\x13\x81" 447 "\xAF\xCB\x59\x87\x31\xD9\x83\x65\xF2\x22\x48\xD0\x03\x67\x39\xF6" 448 "\xFF\xA8\x36\x07\x3A\x68\xE3\x7B\xA9\x64\xFD\x9C\xF7\xB1\x3D\xBF" 449 "\x26\x5C\xCC\x7A\xFC\xA2\x8F\x51\xD1\xE1\xE2\x3C\xEC\x06\x75\x7C" 450 "\x34\xF9\xA9\x33\x70\x11\xAD\x5A\xDC\x5F\xCF\x50\xF6\x23\x2F\x39" 451 "\xAC\x92\x48\x53\x4D\x01\x96\x3C\xD8\xDC\x1F\x23\x23\x78\x80\x34" 452 "\x54\x14\x76\x8B\xB6\xBB\xFB\x88\x78\x31\x59\x28\xD2\xB1\x75\x17" 453 "\x88\x04\x4A\x78\x62\x18\x2E\xF5\xFB\x9B\xEF\x15\xD8\x16\x47\xC6" 454 "\x42\xB1\x02\xDA\x9E\xE3\x84\x90\xB4\x2D\xC3\xCE\x13\xC9\x12\x7D" 455 "\x3E\xCD\x39\x39\xC9\xAD\xA1\x1A\xE6\xD5\xAD\x5A\x09\x4D\x1B\x0C" 456 "\xAB" 457 "\x02\x82\x01\x01" /* prime 2 - integer of 257 bytes */ 458 "\x00\xDE\xD5\x1B\xF6\xCD\x83\xB1\xC6\x47\x7E\xB9\xC0\x6B\xA9\xB8" 459 "\x02\xF3\xAE\x40\x5D\xFC\xD3\xE5\x4E\xF1\xE3\x39\x04\x52\x84\x89" 460 "\x40\x37\xBB\xC2\xCD\x7F\x71\x77\x17\xDF\x6A\x4C\x31\x24\x7F\xB9" 461 "\x7E\x7F\xC8\x43\x4A\x3C\xEB\x8D\x1B\x7F\x21\x51\x67\x45\x8F\xA0" 462 "\x36\x29\x3A\x18\x45\xA5\x32\xEC\x74\x88\x3C\x98\x5D\x67\x3B\xD7" 463 "\x51\x1F\xE9\xAE\x09\x01\xDE\xDE\x7C\xFB\x60\xD1\xA5\x6C\xE9\x6A" 464 "\x93\x04\x02\x3A\xBB\x67\x02\xB9\xFD\x23\xF0\x02\x2B\x49\x85\xC9" 465 "\x5B\xE7\x4B\xDF\xA3\xF4\xEE\x59\x4C\x45\xEF\x8B\xC1\x6B\xDE\xDE" 466 "\xBC\x1A\xFC\xD2\x76\x3F\x33\x74\xA9\x8E\xA3\x7E\x0C\xC6\xCE\x70" 467 "\xA1\x5B\xA6\x77\xEA\x76\xEB\x18\xCE\xB9\xD7\x78\x8D\xAE\x06\xBB" 468 "\xD3\x1F\x16\x0D\x05\xAB\x4F\xC6\x52\xC8\x6B\x36\x51\x7D\x1D\x27" 469 "\xAF\x88\x9A\x6F\xCC\x25\x2E\x74\x06\x72\xCE\x9E\xDB\xE0\x9D\x30" 470 "\xEF\x55\xA5\x58\x21\xA7\x42\x12\x2C\x2C\x23\x87\xC1\x0F\xE8\x51" 471 "\xDA\x53\xDA\xFC\x05\x36\xDF\x08\x0E\x08\x36\xBE\x5C\x86\x9E\xCA" 472 "\x68\x90\x33\x12\x0B\x14\x82\xAB\x90\x1A\xD4\x49\x32\x9C\xBD\xAA" 473 "\xAB\x4E\x38\xF1\xEE\xED\x3D\x3F\xE8\xBD\x48\x56\xA6\x64\xEE\xC8" 474 "\xD7" 475 "\x02\x82\x01\x01" /* exponent 1 - integer of 257 bytes */ 476 "\x00\x96\x5E\x6F\x8F\x06\xD6\xE6\x03\x1F\x96\x76\x81\x38\xBF\x30" 477 "\xCC\x40\x84\xAF\xD0\xE7\x06\xA5\x24\x0E\xCE\x59\xA5\x26\xFE\x0F" 478 "\x74\xBB\x83\xC6\x26\x02\xAF\x3C\xA3\x6B\x9C\xFF\x68\x0C\xEB\x40" 479 "\x42\x46\xCB\x2E\x5E\x2C\xF4\x3A\x32\x77\x77\xED\xAF\xBA\x02\x17" 480 "\xE1\x93\xF0\x43\x4A\x8F\x31\x39\xEF\x72\x0F\x6B\x79\x10\x59\x84" 481 "\xBA\x5A\x55\x7F\x0E\xDB\xEE\xEE\xD6\xA9\xB8\x44\x9F\x3A\xC6\xB9" 482 "\x33\x3B\x5C\x90\x11\xD0\x9B\xCC\x8A\xBF\x0E\x10\x5B\x4B\xF1\x50" 483 "\x9E\x35\xB3\xE0\x6D\x7A\x95\x9C\x38\x5D\xC0\x75\x13\xC2\x15\xA7" 484 "\x81\xEA\xBA\xF7\x4D\x9E\x85\x9D\xF1\x7D\xBA\xD0\x45\x6F\x2A\xD0" 485 "\x76\xC2\x28\xD0\xAD\xA7\xB5\xDC\xE3\x6A\x99\xFF\x83\x50\xB3\x75" 486 "\x07\x14\x91\xAF\xEF\x74\xB5\x9F\x9A\xE0\xBA\xA9\x0B\x87\xF3\x85" 487 "\x5C\x40\xB2\x0E\xA7\xFD\xC6\xED\x45\x8E\xD9\x7C\xB0\xB2\x68\xC6" 488 "\x1D\xFD\x70\x78\x06\x41\x7F\x95\x12\x36\x9D\xE2\x58\x5D\x15\xEE" 489 "\x41\x49\xF5\xFA\xEC\x56\x19\xA0\xE6\xE0\xB2\x40\xE1\xD9\xD0\x03" 490 "\x22\x02\xCF\xD1\x3C\x07\x38\x65\x8F\x65\x0E\xAA\x32\xCE\x25\x05" 491 "\x16\x73\x51\xB9\x9F\x88\x0B\xCD\x30\xF3\x97\xCC\x2B\x6B\xA4\x0E" 492 "\x6F" 493 "\x02\x82\x01\x00" /* exponent 2 - integer of 256 bytes */ 494 "\x2A\x5F\x3F\xB8\x08\x90\x58\x47\xA9\xE4\xB1\x11\xA3\xE7\x5B\xF4" 495 "\x43\xBE\x08\xC3\x56\x86\x3C\x7E\x6C\x84\x96\x9C\xF9\xCB\xF6\x05" 496 "\x5E\x13\xB8\x11\x37\x80\xAD\xF2\xBE\x2B\x0A\x5D\xF5\xE0\xCB\xB7" 497 "\x00\x39\x66\x82\x41\x5F\x51\x2F\xBF\x56\xE8\x91\xC8\xAA\x6C\xFE" 498 "\x9F\x8C\x4A\x7D\x43\xD2\x91\x1F\xFF\x9F\xF6\x21\x1C\xB6\x46\x55" 499 "\x48\xCA\x38\xAB\xC1\xCD\x4D\x65\x5A\xAF\xA8\x6D\xDA\x6D\xF0\x34" 500 "\x10\x79\x14\x0D\xFA\xA2\x8C\x17\x54\xB4\x18\xD5\x7E\x5F\x90\x50" 501 "\x87\x84\xE7\xFB\xD7\x61\x53\x5D\xAB\x96\xC7\x6E\x7A\x42\xA0\xFC" 502 "\x07\xED\xB7\x5F\x80\xD9\x19\xFF\xFB\xFD\x9E\xC4\x73\x31\x62\x3D" 503 "\x6C\x9E\x15\x03\x62\xA5\x85\xCC\x19\x8E\x9D\x7F\xE3\x6D\xA8\x5D" 504 "\x96\xF5\xAC\x78\x3D\x81\x27\xE7\x29\xF1\x29\x1D\x09\xBB\x77\x86" 505 "\x6B\x65\x62\x88\xE1\x31\x1A\x22\xF7\xC5\xCE\x73\x65\x1C\xBE\xE7" 506 "\x63\xD3\xD3\x14\x63\x27\xAF\x28\xF3\x23\xB6\x76\xC1\xBD\x9D\x82" 507 "\xF4\x9B\x19\x7D\x2C\x57\xF0\xC2\x2A\x51\xAE\x95\x0D\x8C\x38\x54" 508 "\xF5\xC6\xA0\x51\xB7\x0E\xB9\xEC\xE7\x0D\x22\xF6\x1A\xD3\xFE\x16" 509 "\x21\x03\xB7\x0D\x85\xD3\x35\xC9\xDD\xE4\x59\x85\xBE\x7F\xA1\x75" 510 "\x02\x82\x01\x01" /* coefficient - integer of 257 bytes */ 511 "\x00\xB9\x48\xD2\x54\x2F\x19\x54\x64\xAE\x62\x80\x61\x89\x80\xB4" 512 "\x48\x0B\x8D\x7E\x1B\x0F\x50\x08\x82\x3F\xED\x75\x84\xB7\x13\xE4" 513 "\xF8\x8D\xA8\xBB\x54\x21\x4C\x5A\x54\x07\x16\x4B\xB4\xA4\x9E\x30" 514 "\xBF\x7A\x30\x1B\x39\x60\xA3\x21\x53\xFB\xB0\xDC\x0F\x7C\x2C\xFB" 515 "\xAA\x95\x7D\x51\x39\x28\x33\x1F\x25\x31\x53\xF5\xD2\x64\x2B\xF2" 516 "\x1E\xB3\xC0\x6A\x0B\xC9\xA4\x42\x64\x5C\xFB\x15\xA3\xE8\x4C\x3A" 517 "\x9C\x3C\xBE\xA3\x39\x83\x23\xE3\x6D\x18\xCC\xC2\xDC\x63\x8D\xBA" 518 "\x98\xE0\xE0\x31\x4A\x2B\x37\x9C\x4D\x6B\xF3\x9F\x51\xE4\x43\x5C" 519 "\x83\x5F\xBF\x5C\xFE\x92\x45\x01\xAF\xF5\xC2\xF4\xB7\x56\x93\xA5" 520 "\xF4\xAA\x67\x3C\x48\x37\xBD\x9A\x3C\xFE\xA5\x9A\xB0\xD1\x6B\x85" 521 "\xDD\x81\xD4\xFA\xAD\x31\x83\xA8\x22\x9B\xFD\xB4\x61\xDC\x7A\x51" 522 "\x59\x62\x10\x1B\x7E\x44\xA3\xFE\x90\x51\x5A\x3E\x02\x87\xAD\xFA" 523 "\xDD\x0B\x1F\x3D\x35\xAF\xEE\x13\x85\x51\xA7\x42\xC0\xEE\x9E\x20" 524 "\xE9\xD0\x29\xB2\xE4\x21\xE4\x6D\x62\xB9\xF4\x48\x4A\xD8\x46\x8E" 525 "\x61\xA6\x2C\x5D\xDF\x8F\x97\x2B\x3A\x75\x1D\x83\x17\x6F\xC6\xB0" 526 "\xDE\xFC\x14\x25\x06\x5A\x60\xBB\xB8\x21\x89\xD1\xEF\x57\xF1\x71" 527 "\x3D", 528 .m = "\x54\x85\x9b\x34\x2c\x49\xea\x2a", 529 .c = 530 "\x5c\xce\x9c\xd7\x9a\x9e\xa1\xfe\x7a\x82\x3c\x68\x27\x98\xe3\x5d" 531 "\xd5\xd7\x07\x29\xf5\xfb\xc3\x1a\x7f\x63\x1e\x62\x31\x3b\x19\x87" 532 "\x79\x4f\xec\x7b\xf3\xcb\xea\x9b\x95\x52\x3a\x40\xe5\x87\x7b\x72" 533 "\xd1\x72\xc9\xfb\x54\x63\xd8\xc9\xd7\x2c\xfc\x7b\xc3\x14\x1e\xbc" 534 "\x18\xb4\x34\xa1\xbf\x14\xb1\x37\x31\x6e\xf0\x1b\x35\x19\x54\x07" 535 "\xf7\x99\xec\x3e\x63\xe2\xcd\x61\x28\x65\xc3\xcd\xb1\x38\x36\xa5" 536 "\xb2\xd7\xb0\xdc\x1f\xf5\xef\x19\xc7\x53\x32\x2d\x1c\x26\xda\xe4" 537 "\x0d\xd6\x90\x7e\x28\xd8\xdc\xe4\x61\x05\xd2\x25\x90\x01\xd3\x96" 538 "\x6d\xa6\xcf\x58\x20\xbb\x03\xf4\x01\xbc\x79\xb9\x18\xd8\xb8\xba" 539 "\xbd\x93\xfc\xf2\x62\x5d\x8c\x66\x1e\x0e\x84\x59\x93\xdd\xe2\x93" 540 "\xa2\x62\x7d\x08\x82\x7a\xdd\xfc\xb8\xbc\xc5\x4f\x9c\x4e\xbf\xb4" 541 "\xfc\xf4\xc5\x01\xe8\x00\x70\x4d\x28\x26\xcc\x2e\xfe\x0e\x58\x41" 542 "\x8b\xec\xaf\x7c\x4b\x54\xd0\xa0\x64\xf9\x32\xf4\x2e\x47\x65\x0a" 543 "\x67\x88\x39\x3a\xdb\xb2\xdb\x7b\xb5\xf6\x17\xa8\xd9\xc6\x5e\x28" 544 "\x13\x82\x8a\x99\xdb\x60\x08\xa5\x23\x37\xfa\x88\x90\x31\xc8\x9d" 545 "\x8f\xec\xfb\x85\x9f\xb1\xce\xa6\x24\x50\x46\x44\x47\xcb\x65\xd1" 546 "\xdf\xc0\xb1\x6c\x90\x1f\x99\x8e\x4d\xd5\x9e\x31\x07\x66\x87\xdf" 547 "\x01\xaa\x56\x3c\x71\xe0\x2b\x6f\x67\x3b\x23\xed\xc2\xbd\x03\x30" 548 "\x79\x76\x02\x10\x10\x98\x85\x8a\xff\xfd\x0b\xda\xa5\xd9\x32\x48" 549 "\x02\xa0\x0b\xb9\x2a\x8a\x18\xca\xc6\x8f\x3f\xbb\x16\xb2\xaa\x98" 550 "\x27\xe3\x60\x43\xed\x15\x70\xd4\x57\x15\xfe\x19\xd4\x9b\x13\x78" 551 "\x8a\xf7\x21\xf1\xa2\xa2\x2d\xb3\x09\xcf\x44\x91\x6e\x08\x3a\x30" 552 "\x81\x3e\x90\x93\x8a\x67\x33\x00\x59\x54\x9a\x25\xd3\x49\x8e\x9f" 553 "\xc1\x4b\xe5\x86\xf3\x50\x4c\xbc\xc5\xd3\xf5\x3a\x54\xe1\x36\x3f" 554 "\xe2\x5a\xb4\x37\xc0\xeb\x70\x35\xec\xf6\xb7\xe8\x44\x3b\x7b\xf3" 555 "\xf1\xf2\x1e\xdb\x60\x7d\xd5\xbe\xf0\x71\x34\x90\x4c\xcb\xd4\x35" 556 "\x51\xc7\xdd\xd8\xc9\x81\xf5\x5d\x57\x46\x2c\xb1\x7b\x9b\xaa\xcb" 557 "\xd1\x22\x25\x49\x44\xa3\xd4\x6b\x29\x7b\xd8\xb2\x07\x93\xbf\x3d" 558 "\x52\x49\x84\x79\xef\xb8\xe5\xc4\xad\xca\xa8\xc6\xf6\xa6\x76\x70" 559 "\x5b\x0b\xe5\x83\xc6\x0e\xef\x55\xf2\xe7\xff\x04\xea\xe6\x13\xbe" 560 "\x40\xe1\x40\x45\x48\x66\x75\x31\xae\x35\x64\x91\x11\x6f\xda\xee" 561 "\x26\x86\x45\x6f\x0b\xd5\x9f\x03\xb1\x65\x5b\xdb\xa4\xe4\xf9\x45", 562 .key_len = 2349, 563 .m_size = 8, 564 .c_size = 512, 565 #endif 566 } 567 }; 568 569 /* 570 * ECDSA test vectors. 571 */ 572 static const struct akcipher_testvec ecdsa_nist_p192_tv_template[] = { 573 { 574 .key = 575 "\x04\xf7\x46\xf8\x2f\x15\xf6\x22\x8e\xd7\x57\x4f\xcc\xe7\xbb\xc1" 576 "\xd4\x09\x73\xcf\xea\xd0\x15\x07\x3d\xa5\x8a\x8a\x95\x43\xe4\x68" 577 "\xea\xc6\x25\xc1\xc1\x01\x25\x4c\x7e\xc3\x3c\xa6\x04\x0a\xe7\x08" 578 "\x98", 579 .key_len = 49, 580 .params = 581 "\x30\x13\x06\x07\x2a\x86\x48\xce\x3d\x02\x01\x06\x08\x2a\x86\x48" 582 "\xce\x3d\x03\x01\x01", 583 .param_len = 21, 584 .m = 585 "\xcd\xb9\xd2\x1c\xb7\x6f\xcd\x44\xb3\xfd\x63\xea\xa3\x66\x7f\xae" 586 "\x63\x85\xe7\x82", 587 .m_size = 20, 588 .algo = OID_id_ecdsa_with_sha1, 589 .c = 590 "\x30\x35\x02\x19\x00\xba\xe5\x93\x83\x6e\xb6\x3b\x63\xa0\x27\x91" 591 "\xc6\xf6\x7f\xc3\x09\xad\x59\xad\x88\x27\xd6\x92\x6b\x02\x18\x10" 592 "\x68\x01\x9d\xba\xce\x83\x08\xef\x95\x52\x7b\xa0\x0f\xe4\x18\x86" 593 "\x80\x6f\xa5\x79\x77\xda\xd0", 594 .c_size = 55, 595 .public_key_vec = true, 596 .siggen_sigver_test = true, 597 }, { 598 .key = 599 "\x04\xb6\x4b\xb1\xd1\xac\xba\x24\x8f\x65\xb2\x60\x00\x90\xbf\xbd" 600 "\x78\x05\x73\xe9\x79\x1d\x6f\x7c\x0b\xd2\xc3\x93\xa7\x28\xe1\x75" 601 "\xf7\xd5\x95\x1d\x28\x10\xc0\x75\x50\x5c\x1a\x4f\x3f\x8f\xa5\xee" 602 "\xa3", 603 .key_len = 49, 604 .params = 605 "\x30\x13\x06\x07\x2a\x86\x48\xce\x3d\x02\x01\x06\x08\x2a\x86\x48" 606 "\xce\x3d\x03\x01\x01", 607 .param_len = 21, 608 .m = 609 "\x8d\xd6\xb8\x3e\xe5\xff\x23\xf6\x25\xa2\x43\x42\x74\x45\xa7\x40" 610 "\x3a\xff\x2f\xe1\xd3\xf6\x9f\xe8\x33\xcb\x12\x11", 611 .m_size = 28, 612 .algo = OID_id_ecdsa_with_sha224, 613 .c = 614 "\x30\x34\x02\x18\x5a\x8b\x82\x69\x7e\x8a\x0a\x09\x14\xf8\x11\x2b" 615 "\x55\xdc\xae\x37\x83\x7b\x12\xe6\xb6\x5b\xcb\xd4\x02\x18\x6a\x14" 616 "\x4f\x53\x75\xc8\x02\x48\xeb\xc3\x92\x0f\x1e\x72\xee\xc4\xa3\xe3" 617 "\x5c\x99\xdb\x92\x5b\x36", 618 .c_size = 54, 619 .public_key_vec = true, 620 .siggen_sigver_test = true, 621 }, { 622 .key = 623 "\x04\xe2\x51\x24\x9b\xf7\xb6\x32\x82\x39\x66\x3d\x5b\xec\x3b\xae" 624 "\x0c\xd5\xf2\x67\xd1\xc7\xe1\x02\xe4\xbf\x90\x62\xb8\x55\x75\x56" 625 "\x69\x20\x5e\xcb\x4e\xca\x33\xd6\xcb\x62\x6b\x94\xa9\xa2\xe9\x58" 626 "\x91", 627 .key_len = 49, 628 .params = 629 "\x30\x13\x06\x07\x2a\x86\x48\xce\x3d\x02\x01\x06\x08\x2a\x86\x48" 630 "\xce\x3d\x03\x01\x01", 631 .param_len = 21, 632 .m = 633 "\x35\xec\xa1\xa0\x9e\x14\xde\x33\x03\xb6\xf6\xbd\x0c\x2f\xb2\xfd" 634 "\x1f\x27\x82\xa5\xd7\x70\x3f\xef\xa0\x82\x69\x8e\x73\x31\x8e\xd7", 635 .m_size = 32, 636 .algo = OID_id_ecdsa_with_sha256, 637 .c = 638 "\x30\x35\x02\x18\x3f\x72\x3f\x1f\x42\xd2\x3f\x1d\x6b\x1a\x58\x56" 639 "\xf1\x8f\xf7\xfd\x01\x48\xfb\x5f\x72\x2a\xd4\x8f\x02\x19\x00\xb3" 640 "\x69\x43\xfd\x48\x19\x86\xcf\x32\xdd\x41\x74\x6a\x51\xc7\xd9\x7d" 641 "\x3a\x97\xd9\xcd\x1a\x6a\x49", 642 .c_size = 55, 643 .public_key_vec = true, 644 .siggen_sigver_test = true, 645 }, { 646 .key = 647 "\x04\x5a\x13\xfe\x68\x86\x4d\xf4\x17\xc7\xa4\xe5\x8c\x65\x57\xb7" 648 "\x03\x73\x26\x57\xfb\xe5\x58\x40\xd8\xfd\x49\x05\xab\xf1\x66\x1f" 649 "\xe2\x9d\x93\x9e\xc2\x22\x5a\x8b\x4f\xf3\x77\x22\x59\x7e\xa6\x4e" 650 "\x8b", 651 .key_len = 49, 652 .params = 653 "\x30\x13\x06\x07\x2a\x86\x48\xce\x3d\x02\x01\x06\x08\x2a\x86\x48" 654 "\xce\x3d\x03\x01\x01", 655 .param_len = 21, 656 .m = 657 "\x9d\x2e\x1a\x8f\xed\x6c\x4b\x61\xae\xac\xd5\x19\x79\xce\x67\xf9" 658 "\xa0\x34\xeb\xb0\x81\xf9\xd9\xdc\x6e\xb3\x5c\xa8\x69\xfc\x8a\x61" 659 "\x39\x81\xfb\xfd\x5c\x30\x6b\xa8\xee\xed\x89\xaf\xa3\x05\xe4\x78", 660 .m_size = 48, 661 .algo = OID_id_ecdsa_with_sha384, 662 .c = 663 "\x30\x35\x02\x19\x00\xf0\xa3\x38\xce\x2b\xf8\x9d\x1a\xcf\x7f\x34" 664 "\xb4\xb4\xe5\xc5\x00\xdd\x15\xbb\xd6\x8c\xa7\x03\x78\x02\x18\x64" 665 "\xbc\x5a\x1f\x82\x96\x61\xd7\xd1\x01\x77\x44\x5d\x53\xa4\x7c\x93" 666 "\x12\x3b\x3b\x28\xfb\x6d\xe1", 667 .c_size = 55, 668 .public_key_vec = true, 669 .siggen_sigver_test = true, 670 }, { 671 .key = 672 "\x04\xd5\xf2\x6e\xc3\x94\x5c\x52\xbc\xdf\x86\x6c\x14\xd1\xca\xea" 673 "\xcc\x72\x3a\x8a\xf6\x7a\x3a\x56\x36\x3b\xca\xc6\x94\x0e\x17\x1d" 674 "\x9e\xa0\x58\x28\xf9\x4b\xe6\xd1\xa5\x44\x91\x35\x0d\xe7\xf5\x11" 675 "\x57", 676 .key_len = 49, 677 .params = 678 "\x30\x13\x06\x07\x2a\x86\x48\xce\x3d\x02\x01\x06\x08\x2a\x86\x48" 679 "\xce\x3d\x03\x01\x01", 680 .param_len = 21, 681 .m = 682 "\xd5\x4b\xe9\x36\xda\xd8\x6e\xc0\x50\x03\xbe\x00\x43\xff\xf0\x23" 683 "\xac\xa2\x42\xe7\x37\x77\x79\x52\x8f\x3e\xc0\x16\xc1\xfc\x8c\x67" 684 "\x16\xbc\x8a\x5d\x3b\xd3\x13\xbb\xb6\xc0\x26\x1b\xeb\x33\xcc\x70" 685 "\x4a\xf2\x11\x37\xe8\x1b\xba\x55\xac\x69\xe1\x74\x62\x7c\x6e\xb5", 686 .m_size = 64, 687 .algo = OID_id_ecdsa_with_sha512, 688 .c = 689 "\x30\x35\x02\x19\x00\x88\x5b\x8f\x59\x43\xbf\xcf\xc6\xdd\x3f\x07" 690 "\x87\x12\xa0\xd4\xac\x2b\x11\x2d\x1c\xb6\x06\xc9\x6c\x02\x18\x73" 691 "\xb4\x22\x9a\x98\x73\x3c\x83\xa9\x14\x2a\x5e\xf5\xe5\xfb\x72\x28" 692 "\x6a\xdf\x97\xfd\x82\x76\x24", 693 .c_size = 55, 694 .public_key_vec = true, 695 .siggen_sigver_test = true, 696 }, 697 }; 698 699 static const struct akcipher_testvec ecdsa_nist_p256_tv_template[] = { 700 { 701 .key = 702 "\x04\xb9\x7b\xbb\xd7\x17\x64\xd2\x7e\xfc\x81\x5d\x87\x06\x83\x41" 703 "\x22\xd6\x9a\xaa\x87\x17\xec\x4f\x63\x55\x2f\x94\xba\xdd\x83\xe9" 704 "\x34\x4b\xf3\xe9\x91\x13\x50\xb6\xcb\xca\x62\x08\xe7\x3b\x09\xdc" 705 "\xc3\x63\x4b\x2d\xb9\x73\x53\xe4\x45\xe6\x7c\xad\xe7\x6b\xb0\xe8" 706 "\xaf", 707 .key_len = 65, 708 .params = 709 "\x30\x13\x06\x07\x2a\x86\x48\xce\x3d\x02\x01\x06\x08\x2a\x86\x48" 710 "\xce\x3d\x03\x01\x07", 711 .param_len = 21, 712 .m = 713 "\xc2\x2b\x5f\x91\x78\x34\x26\x09\x42\x8d\x6f\x51\xb2\xc5\xaf\x4c" 714 "\x0b\xde\x6a\x42", 715 .m_size = 20, 716 .algo = OID_id_ecdsa_with_sha1, 717 .c = 718 "\x30\x46\x02\x21\x00\xf9\x25\xce\x9f\x3a\xa6\x35\x81\xcf\xd4\xe7" 719 "\xb7\xf0\x82\x56\x41\xf7\xd4\xad\x8d\x94\x5a\x69\x89\xee\xca\x6a" 720 "\x52\x0e\x48\x4d\xcc\x02\x21\x00\xd7\xe4\xef\x52\x66\xd3\x5b\x9d" 721 "\x8a\xfa\x54\x93\x29\xa7\x70\x86\xf1\x03\x03\xf3\x3b\xe2\x73\xf7" 722 "\xfb\x9d\x8b\xde\xd4\x8d\x6f\xad", 723 .c_size = 72, 724 .public_key_vec = true, 725 .siggen_sigver_test = true, 726 }, { 727 .key = 728 "\x04\x8b\x6d\xc0\x33\x8e\x2d\x8b\x67\xf5\xeb\xc4\x7f\xa0\xf5\xd9" 729 "\x7b\x03\xa5\x78\x9a\xb5\xea\x14\xe4\x23\xd0\xaf\xd7\x0e\x2e\xa0" 730 "\xc9\x8b\xdb\x95\xf8\xb3\xaf\xac\x00\x2c\x2c\x1f\x7a\xfd\x95\x88" 731 "\x43\x13\xbf\xf3\x1c\x05\x1a\x14\x18\x09\x3f\xd6\x28\x3e\xc5\xa0" 732 "\xd4", 733 .key_len = 65, 734 .params = 735 "\x30\x13\x06\x07\x2a\x86\x48\xce\x3d\x02\x01\x06\x08\x2a\x86\x48" 736 "\xce\x3d\x03\x01\x07", 737 .param_len = 21, 738 .m = 739 "\x1a\x15\xbc\xa3\xe4\xed\x3a\xb8\x23\x67\xc6\xc4\x34\xf8\x6c\x41" 740 "\x04\x0b\xda\xc5\x77\xfa\x1c\x2d\xe6\x2c\x3b\xe0", 741 .m_size = 28, 742 .algo = OID_id_ecdsa_with_sha224, 743 .c = 744 "\x30\x44\x02\x20\x20\x43\xfa\xc0\x9f\x9d\x7b\xe7\xae\xce\x77\x59" 745 "\x1a\xdb\x59\xd5\x34\x62\x79\xcb\x6a\x91\x67\x2e\x7d\x25\xd8\x25" 746 "\xf5\x81\xd2\x1e\x02\x20\x5f\xf8\x74\xf8\x57\xd0\x5e\x54\x76\x20" 747 "\x4a\x77\x22\xec\xc8\x66\xbf\x50\x05\x58\x39\x0e\x26\x92\xce\xd5" 748 "\x2e\x8b\xde\x5a\x04\x0e", 749 .c_size = 70, 750 .public_key_vec = true, 751 .siggen_sigver_test = true, 752 }, { 753 .key = 754 "\x04\xf1\xea\xc4\x53\xf3\xb9\x0e\x9f\x7e\xad\xe3\xea\xd7\x0e\x0f" 755 "\xd6\x98\x9a\xca\x92\x4d\x0a\x80\xdb\x2d\x45\xc7\xec\x4b\x97\x00" 756 "\x2f\xe9\x42\x6c\x29\xdc\x55\x0e\x0b\x53\x12\x9b\x2b\xad\x2c\xe9" 757 "\x80\xe6\xc5\x43\xc2\x1d\x5e\xbb\x65\x21\x50\xb6\x37\xb0\x03\x8e" 758 "\xb8", 759 .key_len = 65, 760 .params = 761 "\x30\x13\x06\x07\x2a\x86\x48\xce\x3d\x02\x01\x06\x08\x2a\x86\x48" 762 "\xce\x3d\x03\x01\x07", 763 .param_len = 21, 764 .m = 765 "\x8f\x43\x43\x46\x64\x8f\x6b\x96\xdf\x89\xdd\xa9\x01\xc5\x17\x6b" 766 "\x10\xa6\xd8\x39\x61\xdd\x3c\x1a\xc8\x8b\x59\xb2\xdc\x32\x7a\xa4", 767 .m_size = 32, 768 .algo = OID_id_ecdsa_with_sha256, 769 .c = 770 "\x30\x45\x02\x20\x08\x31\xfa\x74\x0d\x1d\x21\x5d\x09\xdc\x29\x63" 771 "\xa8\x1a\xad\xfc\xac\x44\xc3\xe8\x24\x11\x2d\xa4\x91\xdc\x02\x67" 772 "\xdc\x0c\xd0\x82\x02\x21\x00\xbd\xff\xce\xee\x42\xc3\x97\xff\xf9" 773 "\xa9\x81\xac\x4a\x50\xd0\x91\x0a\x6e\x1b\xc4\xaf\xe1\x83\xc3\x4f" 774 "\x2a\x65\x35\x23\xe3\x1d\xfa", 775 .c_size = 71, 776 .public_key_vec = true, 777 .siggen_sigver_test = true, 778 }, { 779 .key = 780 "\x04\xc5\xc6\xea\x60\xc9\xce\xad\x02\x8d\xf5\x3e\x24\xe3\x52\x1d" 781 "\x28\x47\x3b\xc3\x6b\xa4\x99\x35\x99\x11\x88\x88\xc8\xf4\xee\x7e" 782 "\x8c\x33\x8f\x41\x03\x24\x46\x2b\x1a\x82\xf9\x9f\xe1\x97\x1b\x00" 783 "\xda\x3b\x24\x41\xf7\x66\x33\x58\x3d\x3a\x81\xad\xcf\x16\xe9\xe2" 784 "\x7c", 785 .key_len = 65, 786 .params = 787 "\x30\x13\x06\x07\x2a\x86\x48\xce\x3d\x02\x01\x06\x08\x2a\x86\x48" 788 "\xce\x3d\x03\x01\x07", 789 .param_len = 21, 790 .m = 791 "\x3e\x78\x70\xfb\xcd\x66\xba\x91\xa1\x79\xff\x1e\x1c\x6b\x78\xe6" 792 "\xc0\x81\x3a\x65\x97\x14\x84\x36\x14\x1a\x9a\xb7\xc5\xab\x84\x94" 793 "\x5e\xbb\x1b\x34\x71\xcb\x41\xe1\xf6\xfc\x92\x7b\x34\xbb\x86\xbb", 794 .m_size = 48, 795 .algo = OID_id_ecdsa_with_sha384, 796 .c = 797 "\x30\x46\x02\x21\x00\x8e\xf3\x6f\xdc\xf8\x69\xa6\x2e\xd0\x2e\x95" 798 "\x54\xd1\x95\x64\x93\x08\xb2\x6b\x24\x94\x48\x46\x5e\xf2\xe4\x6c" 799 "\xc7\x94\xb1\xd5\xfe\x02\x21\x00\xeb\xa7\x80\x26\xdc\xf9\x3a\x44" 800 "\x19\xfb\x5f\x92\xf4\xc9\x23\x37\x69\xf4\x3b\x4f\x47\xcf\x9b\x16" 801 "\xc0\x60\x11\x92\xdc\x17\x89\x12", 802 .c_size = 72, 803 .public_key_vec = true, 804 .siggen_sigver_test = true, 805 }, { 806 .key = 807 "\x04\xd7\x27\x46\x49\xf6\x26\x85\x12\x40\x76\x8e\xe2\xe6\x2a\x7a" 808 "\x83\xb1\x4e\x7a\xeb\x3b\x5c\x67\x4a\xb5\xa4\x92\x8c\x69\xff\x38" 809 "\xee\xd9\x4e\x13\x29\x59\xad\xde\x6b\xbb\x45\x31\xee\xfd\xd1\x1b" 810 "\x64\xd3\xb5\xfc\xaf\x9b\x4b\x88\x3b\x0e\xb7\xd6\xdf\xf1\xd5\x92" 811 "\xbf", 812 .key_len = 65, 813 .params = 814 "\x30\x13\x06\x07\x2a\x86\x48\xce\x3d\x02\x01\x06\x08\x2a\x86\x48" 815 "\xce\x3d\x03\x01\x07", 816 .param_len = 21, 817 .m = 818 "\x57\xb7\x9e\xe9\x05\x0a\x8c\x1b\xc9\x13\xe5\x4a\x24\xc7\xe2\xe9" 819 "\x43\xc3\xd1\x76\x62\xf4\x98\x1a\x9c\x13\xb0\x20\x1b\xe5\x39\xca" 820 "\x4f\xd9\x85\x34\x95\xa2\x31\xbc\xbb\xde\xdd\x76\xbb\x61\xe3\xcf" 821 "\x9d\xc0\x49\x7a\xf3\x7a\xc4\x7d\xa8\x04\x4b\x8d\xb4\x4d\x5b\xd6", 822 .m_size = 64, 823 .algo = OID_id_ecdsa_with_sha512, 824 .c = 825 "\x30\x45\x02\x21\x00\xb8\x6d\x87\x81\x43\xdf\xfb\x9f\x40\xea\x44" 826 "\x81\x00\x4e\x29\x08\xed\x8c\x73\x30\x6c\x22\xb3\x97\x76\xf6\x04" 827 "\x99\x09\x37\x4d\xfa\x02\x20\x1e\xb9\x75\x31\xf6\x04\xa5\x4d\xf8" 828 "\x00\xdd\xab\xd4\xc0\x2b\xe6\x5c\xad\xc3\x78\x1c\xc2\xc1\x19\x76" 829 "\x31\x79\x4a\xe9\x81\x6a\xee", 830 .c_size = 71, 831 .public_key_vec = true, 832 .siggen_sigver_test = true, 833 }, 834 }; 835 836 static const struct akcipher_testvec ecdsa_nist_p384_tv_template[] = { 837 { 838 .key = /* secp384r1(sha1) */ 839 "\x04\x89\x25\xf3\x97\x88\xcb\xb0\x78\xc5\x72\x9a\x14\x6e\x7a\xb1" 840 "\x5a\xa5\x24\xf1\x95\x06\x9e\x28\xfb\xc4\xb9\xbe\x5a\x0d\xd9\x9f" 841 "\xf3\xd1\x4d\x2d\x07\x99\xbd\xda\xa7\x66\xec\xbb\xea\xba\x79\x42" 842 "\xc9\x34\x89\x6a\xe7\x0b\xc3\xf2\xfe\x32\x30\xbe\xba\xf9\xdf\x7e" 843 "\x4b\x6a\x07\x8e\x26\x66\x3f\x1d\xec\xa2\x57\x91\x51\xdd\x17\x0e" 844 "\x0b\x25\xd6\x80\x5c\x3b\xe6\x1a\x98\x48\x91\x45\x7a\x73\xb0\xc3" 845 "\xf1", 846 .key_len = 97, 847 .params = 848 "\x30\x10\x06\x07\x2a\x86\x48\xce\x3d\x02\x01\x06\x05\x2b\x81\x04" 849 "\x00\x22", 850 .param_len = 18, 851 .m = 852 "\x12\x55\x28\xf0\x77\xd5\xb6\x21\x71\x32\x48\xcd\x28\xa8\x25\x22" 853 "\x3a\x69\xc1\x93", 854 .m_size = 20, 855 .algo = OID_id_ecdsa_with_sha1, 856 .c = 857 "\x30\x66\x02\x31\x00\xf5\x0f\x24\x4c\x07\x93\x6f\x21\x57\x55\x07" 858 "\x20\x43\x30\xde\xa0\x8d\x26\x8e\xae\x63\x3f\xbc\x20\x3a\xc6\xf1" 859 "\x32\x3c\xce\x70\x2b\x78\xf1\x4c\x26\xe6\x5b\x86\xcf\xec\x7c\x7e" 860 "\xd0\x87\xd7\xd7\x6e\x02\x31\x00\xcd\xbb\x7e\x81\x5d\x8f\x63\xc0" 861 "\x5f\x63\xb1\xbe\x5e\x4c\x0e\xa1\xdf\x28\x8c\x1b\xfa\xf9\x95\x88" 862 "\x74\xa0\x0f\xbf\xaf\xc3\x36\x76\x4a\xa1\x59\xf1\x1c\xa4\x58\x26" 863 "\x79\x12\x2a\xb7\xc5\x15\x92\xc5", 864 .c_size = 104, 865 .public_key_vec = true, 866 .siggen_sigver_test = true, 867 }, { 868 .key = /* secp384r1(sha224) */ 869 "\x04\x69\x6c\xcf\x62\xee\xd0\x0d\xe5\xb5\x2f\x70\x54\xcf\x26\xa0" 870 "\xd9\x98\x8d\x92\x2a\xab\x9b\x11\xcb\x48\x18\xa1\xa9\x0d\xd5\x18" 871 "\x3e\xe8\x29\x6e\xf6\xe4\xb5\x8e\xc7\x4a\xc2\x5f\x37\x13\x99\x05" 872 "\xb6\xa4\x9d\xf9\xfb\x79\x41\xe7\xd7\x96\x9f\x73\x3b\x39\x43\xdc" 873 "\xda\xf4\x06\xb9\xa5\x29\x01\x9d\x3b\xe1\xd8\x68\x77\x2a\xf4\x50" 874 "\x6b\x93\x99\x6c\x66\x4c\x42\x3f\x65\x60\x6c\x1c\x0b\x93\x9b\x9d" 875 "\xe0", 876 .key_len = 97, 877 .params = 878 "\x30\x10\x06\x07\x2a\x86\x48\xce\x3d\x02\x01\x06\x05\x2b\x81\x04" 879 "\x00\x22", 880 .param_len = 18, 881 .m = 882 "\x12\x80\xb6\xeb\x25\xe2\x3d\xf0\x21\x32\x96\x17\x3a\x38\x39\xfd" 883 "\x1f\x05\x34\x7b\xb8\xf9\x71\x66\x03\x4f\xd5\xe5", 884 .m_size = 28, 885 .algo = OID_id_ecdsa_with_sha224, 886 .c = 887 "\x30\x66\x02\x31\x00\x8a\x51\x84\xce\x13\x1e\xd2\xdc\xec\xcb\xe4" 888 "\x89\x47\xb2\xf7\xbc\x97\xf1\xc8\x72\x26\xcf\x5a\x5e\xc5\xda\xb4" 889 "\xe3\x93\x07\xe0\x99\xc9\x9c\x11\xb8\x10\x01\xc5\x41\x3f\xdd\x15" 890 "\x1b\x68\x2b\x9d\x8b\x02\x31\x00\x8b\x03\x2c\xfc\x1f\xd1\xa9\xa4" 891 "\x4b\x00\x08\x31\x6c\xf5\xd5\xf6\xdf\xd8\x68\xa2\x64\x42\x65\xf3" 892 "\x4d\xd0\xc6\x6e\xb0\xe9\xfc\x14\x9f\x19\xd0\x42\x8b\x93\xc2\x11" 893 "\x88\x2b\x82\x26\x5e\x1c\xda\xfb", 894 .c_size = 104, 895 .public_key_vec = true, 896 .siggen_sigver_test = true, 897 }, { 898 .key = /* secp384r1(sha256) */ 899 "\x04\xee\xd6\xda\x3e\x94\x90\x00\x27\xed\xf8\x64\x55\xd6\x51\x9a" 900 "\x1f\x52\x00\x63\x78\xf1\xa9\xfd\x75\x4c\x9e\xb2\x20\x1a\x91\x5a" 901 "\xba\x7a\xa3\xe5\x6c\xb6\x25\x68\x4b\xe8\x13\xa6\x54\x87\x2c\x0e" 902 "\xd0\x83\x95\xbc\xbf\xc5\x28\x4f\x77\x1c\x46\xa6\xf0\xbc\xd4\xa4" 903 "\x8d\xc2\x8f\xb3\x32\x37\x40\xd6\xca\xf8\xae\x07\x34\x52\x39\x52" 904 "\x17\xc3\x34\x29\xd6\x40\xea\x5c\xb9\x3f\xfb\x32\x2e\x12\x33\xbc" 905 "\xab", 906 .key_len = 97, 907 .params = 908 "\x30\x10\x06\x07\x2a\x86\x48\xce\x3d\x02\x01\x06\x05\x2b\x81\x04" 909 "\x00\x22", 910 .param_len = 18, 911 .m = 912 "\xaa\xe7\xfd\x03\x26\xcb\x94\x71\xe4\xce\x0f\xc5\xff\xa6\x29\xa3" 913 "\xe1\xcc\x4c\x35\x4e\xde\xca\x80\xab\x26\x0c\x25\xe6\x68\x11\xc2", 914 .m_size = 32, 915 .algo = OID_id_ecdsa_with_sha256, 916 .c = 917 "\x30\x64\x02\x30\x08\x09\x12\x9d\x6e\x96\x64\xa6\x8e\x3f\x7e\xce" 918 "\x0a\x9b\xaa\x59\xcc\x47\x53\x87\xbc\xbd\x83\x3f\xaf\x06\x3f\x84" 919 "\x04\xe2\xf9\x67\xb6\xc6\xfc\x70\x2e\x66\x3c\x77\xc8\x8d\x2c\x79" 920 "\x3a\x8e\x32\xc4\x02\x30\x40\x34\xb8\x90\xa9\x80\xab\x47\x26\xa2" 921 "\xb0\x89\x42\x0a\xda\xd9\xdd\xce\xbc\xb2\x97\xf4\x9c\xf3\x15\x68" 922 "\xc0\x75\x3e\x23\x5e\x36\x4f\x8d\xde\x1e\x93\x8d\x95\xbb\x10\x0e" 923 "\xf4\x1f\x39\xca\x4d\x43", 924 .c_size = 102, 925 .public_key_vec = true, 926 .siggen_sigver_test = true, 927 }, { 928 .key = /* secp384r1(sha384) */ 929 "\x04\x3a\x2f\x62\xe7\x1a\xcf\x24\xd0\x0b\x7c\xe0\xed\x46\x0a\x4f" 930 "\x74\x16\x43\xe9\x1a\x25\x7c\x55\xff\xf0\x29\x68\x66\x20\x91\xf9" 931 "\xdb\x2b\xf6\xb3\x6c\x54\x01\xca\xc7\x6a\x5c\x0d\xeb\x68\xd9\x3c" 932 "\xf1\x01\x74\x1f\xf9\x6c\xe5\x5b\x60\xe9\x7f\x5d\xb3\x12\x80\x2a" 933 "\xd8\x67\x92\xc9\x0e\x4c\x4c\x6b\xa1\xb2\xa8\x1e\xac\x1c\x97\xd9" 934 "\x21\x67\xe5\x1b\x5a\x52\x31\x68\xd6\xee\xf0\x19\xb0\x55\xed\x89" 935 "\x9e", 936 .key_len = 97, 937 .params = 938 "\x30\x10\x06\x07\x2a\x86\x48\xce\x3d\x02\x01\x06\x05\x2b\x81\x04" 939 "\x00\x22", 940 .param_len = 18, 941 .m = 942 "\x8d\xf2\xc0\xe9\xa8\xf3\x8e\x44\xc4\x8c\x1a\xa0\xb8\xd7\x17\xdf" 943 "\xf2\x37\x1b\xc6\xe3\xf5\x62\xcc\x68\xf5\xd5\x0b\xbf\x73\x2b\xb1" 944 "\xb0\x4c\x04\x00\x31\xab\xfe\xc8\xd6\x09\xc8\xf2\xea\xd3\x28\xff", 945 .m_size = 48, 946 .algo = OID_id_ecdsa_with_sha384, 947 .c = 948 "\x30\x66\x02\x31\x00\x9b\x28\x68\xc0\xa1\xea\x8c\x50\xee\x2e\x62" 949 "\x35\x46\xfa\x00\xd8\x2d\x7a\x91\x5f\x49\x2d\x22\x08\x29\xe6\xfb" 950 "\xca\x8c\xd6\xb6\xb4\x3b\x1f\x07\x8f\x15\x02\xfe\x1d\xa2\xa4\xc8" 951 "\xf2\xea\x9d\x11\x1f\x02\x31\x00\xfc\x50\xf6\x43\xbd\x50\x82\x0e" 952 "\xbf\xe3\x75\x24\x49\xac\xfb\xc8\x71\xcd\x8f\x18\x99\xf0\x0f\x13" 953 "\x44\x92\x8c\x86\x99\x65\xb3\x97\x96\x17\x04\xc9\x05\x77\xf1\x8e" 954 "\xab\x8d\x4e\xde\xe6\x6d\x9b\x66", 955 .c_size = 104, 956 .public_key_vec = true, 957 .siggen_sigver_test = true, 958 }, { 959 .key = /* secp384r1(sha512) */ 960 "\x04\xb4\xe7\xc1\xeb\x64\x25\x22\x46\xc3\x86\x61\x80\xbe\x1e\x46" 961 "\xcb\xf6\x05\xc2\xee\x73\x83\xbc\xea\x30\x61\x4d\x40\x05\x41\xf4" 962 "\x8c\xe3\x0e\x5c\xf0\x50\xf2\x07\x19\xe8\x4f\x25\xbe\xee\x0c\x95" 963 "\x54\x36\x86\xec\xc2\x20\x75\xf3\x89\xb5\x11\xa1\xb7\xf5\xaf\xbe" 964 "\x81\xe4\xc3\x39\x06\xbd\xe4\xfe\x68\x1c\x6d\x99\x2b\x1b\x63\xfa" 965 "\xdf\x42\x5c\xc2\x5a\xc7\x0c\xf4\x15\xf7\x1b\xa3\x2e\xd7\x00\xac" 966 "\xa3", 967 .key_len = 97, 968 .params = 969 "\x30\x10\x06\x07\x2a\x86\x48\xce\x3d\x02\x01\x06\x05\x2b\x81\x04" 970 "\x00\x22", 971 .param_len = 18, 972 .m = 973 "\xe8\xb7\x52\x7d\x1a\x44\x20\x05\x53\x6b\x3a\x68\xf2\xe7\x6c\xa1" 974 "\xae\x9d\x84\xbb\xba\x52\x43\x3e\x2c\x42\x78\x49\xbf\x78\xb2\x71" 975 "\xeb\xe1\xe0\xe8\x42\x7b\x11\xad\x2b\x99\x05\x1d\x36\xe6\xac\xfc" 976 "\x55\x73\xf0\x15\x63\x39\xb8\x6a\x6a\xc5\x91\x5b\xca\x6a\xa8\x0e", 977 .m_size = 64, 978 .algo = OID_id_ecdsa_with_sha512, 979 .c = 980 "\x30\x63\x02\x2f\x1d\x20\x94\x77\xfe\x31\xfa\x4d\xc6\xef\xda\x02" 981 "\xe7\x0f\x52\x9a\x02\xde\x93\xe8\x83\xe4\x84\x4c\xfc\x6f\x80\xe3" 982 "\xaf\xb3\xd9\xdc\x2b\x43\x0e\x6a\xb3\x53\x6f\x3e\xb3\xc7\xa8\xb3" 983 "\x17\x77\xd1\x02\x30\x63\xf6\xf0\x3d\x5f\x5f\x99\x3f\xde\x3a\x3d" 984 "\x16\xaf\xb4\x52\x6a\xec\x63\xe3\x0c\xec\x50\xdc\xcc\xc4\x6a\x03" 985 "\x5f\x8d\x7a\xf9\xfb\x34\xe4\x8b\x80\xa5\xb6\xda\x2c\x4e\x45\xcf" 986 "\x3c\x93\xff\x50\x5d", 987 .c_size = 101, 988 .public_key_vec = true, 989 .siggen_sigver_test = true, 990 }, 991 }; 992 993 /* 994 * EC-RDSA test vectors are generated by gost-engine. 995 */ 996 static const struct akcipher_testvec ecrdsa_tv_template[] = { 997 { 998 .key = 999 "\x04\x40\xd5\xa7\x77\xf9\x26\x2f\x8c\xbd\xcc\xe3\x1f\x01\x94\x05" 1000 "\x3d\x2f\xec\xb5\x00\x34\xf5\x51\x6d\x3b\x90\x4b\x23\x28\x6f\x1d" 1001 "\xc8\x36\x61\x60\x36\xec\xbb\xb4\x0b\x95\x4e\x54\x4f\x15\x21\x05" 1002 "\xd8\x52\x66\x44\x31\x7e\x5d\xc5\xd1\x26\x00\x5f\x60\xd8\xf0\xc7" 1003 "\x27\xfc", 1004 .key_len = 66, 1005 .params = /* OID_gostCPSignA */ 1006 "\x30\x13\x06\x07\x2a\x85\x03\x02\x02\x23\x01\x06\x08\x2a\x85\x03" 1007 "\x07\x01\x01\x02\x02", 1008 .param_len = 21, 1009 .c = 1010 "\x41\x32\x09\x73\xa4\xc1\x38\xd6\x63\x7d\x8b\xf7\x50\x3f\xda\x9f" 1011 "\x68\x48\xc1\x50\xe3\x42\x3a\x9b\x2b\x28\x12\x2a\xa7\xc2\x75\x31" 1012 "\x65\x77\x8c\x3c\x9e\x0d\x56\xb2\xf9\xdc\x04\x33\x3e\xb0\x9e\xf9" 1013 "\x74\x4e\x59\xb3\x83\xf2\x91\x27\xda\x5e\xc7\x33\xc0\xc1\x8f\x41", 1014 .c_size = 64, 1015 .algo = OID_gost2012PKey256, 1016 .m = 1017 "\x75\x1b\x9b\x40\x25\xb9\x96\xd2\x9b\x00\x41\xb3\x58\xbf\x23\x14" 1018 "\x79\xd2\x76\x64\xa3\xbd\x66\x10\x79\x05\x5a\x06\x42\xec\xb9\xc9", 1019 .m_size = 32, 1020 .public_key_vec = true, 1021 .siggen_sigver_test = true, 1022 }, 1023 { 1024 .key = 1025 "\x04\x40\x66\x6f\xd6\xb7\x06\xd0\xf5\xa5\x6f\x69\x5c\xa5\x13\x45" 1026 "\x14\xdd\xcb\x12\x9c\x1b\xf5\x28\x64\x7a\x49\x48\x29\x14\x66\x42" 1027 "\xb8\x1b\x5c\xf9\x56\x6d\x08\x3b\xce\xbb\x62\x2f\xc2\x3c\xc5\x49" 1028 "\x93\x27\x70\x20\xcc\x79\xeb\xdc\x76\x8e\x48\x6e\x04\x96\xc3\x29" 1029 "\xa0\x73", 1030 .key_len = 66, 1031 .params = /* OID_gostCPSignB */ 1032 "\x30\x13\x06\x07\x2a\x85\x03\x02\x02\x23\x02\x06\x08\x2a\x85\x03" 1033 "\x07\x01\x01\x02\x02", 1034 .param_len = 21, 1035 .c = 1036 "\x45\x6d\x4a\x03\x1d\x5c\x0b\x17\x79\xe7\x19\xdb\xbf\x81\x9f\x82" 1037 "\xae\x06\xda\xf5\x47\x00\x05\x80\xc3\x16\x06\x9a\x8e\x7c\xb2\x8e" 1038 "\x7f\x74\xaa\xec\x6b\x7b\x7f\x8b\xc6\x0b\x10\x42\x4e\x91\x2c\xdf" 1039 "\x7b\x8b\x15\xf4\x9e\x59\x0f\xc7\xa4\x68\x2e\xce\x89\xdf\x84\xe9", 1040 .c_size = 64, 1041 .algo = OID_gost2012PKey256, 1042 .m = 1043 "\xd0\x54\x00\x27\x6a\xeb\xce\x6c\xf5\xf6\xfb\x57\x18\x18\x21\x13" 1044 "\x11\x23\x4a\x70\x43\x52\x7a\x68\x11\x65\x45\x37\xbb\x25\xb7\x40", 1045 .m_size = 32, 1046 .public_key_vec = true, 1047 .siggen_sigver_test = true, 1048 }, 1049 { 1050 .key = 1051 "\x04\x40\x05\x91\xa9\x7d\xcb\x87\xdc\x98\xa1\xbf\xff\xdd\x20\x61" 1052 "\xaa\x58\x3b\x2d\x8e\x9c\x41\x9d\x4f\xc6\x23\x17\xf9\xca\x60\x65" 1053 "\xbc\x97\x97\xf6\x6b\x24\xe8\xac\xb1\xa7\x61\x29\x3c\x71\xdc\xad" 1054 "\xcb\x20\xbe\x96\xe8\xf4\x44\x2e\x49\xd5\x2c\xb9\xc9\x3b\x9c\xaa" 1055 "\xba\x15", 1056 .key_len = 66, 1057 .params = /* OID_gostCPSignC */ 1058 "\x30\x13\x06\x07\x2a\x85\x03\x02\x02\x23\x03\x06\x08\x2a\x85\x03" 1059 "\x07\x01\x01\x02\x02", 1060 .param_len = 21, 1061 .c = 1062 "\x3b\x2e\x2e\x74\x74\x47\xda\xea\x93\x90\x6a\xe2\xf5\xf5\xe6\x46" 1063 "\x11\xfc\xab\xdc\x52\xbc\x58\xdb\x45\x44\x12\x4a\xf7\xd0\xab\xc9" 1064 "\x73\xba\x64\xab\x0d\xac\x4e\x72\x10\xa8\x04\xf6\x1e\xe0\x48\x6a" 1065 "\xcd\xe8\xe3\x78\x73\x77\x82\x24\x8d\xf1\xd3\xeb\x4c\x25\x7e\xc0", 1066 .c_size = 64, 1067 .algo = OID_gost2012PKey256, 1068 .m = 1069 "\x52\x33\xf4\x3f\x7b\x5d\xcf\x20\xee\xe4\x5c\xab\x0b\x3f\x14\xd6" 1070 "\x9f\x16\xc6\x1c\xb1\x3f\x84\x41\x69\xec\x34\xfd\xf1\xf9\xa3\x39", 1071 .m_size = 32, 1072 .public_key_vec = true, 1073 .siggen_sigver_test = true, 1074 }, 1075 { 1076 .key = 1077 "\x04\x81\x80\x85\x46\x8f\x16\xf8\x7a\x7e\x4a\xc3\x81\x9e\xf1\x6e" 1078 "\x94\x1e\x5d\x02\x87\xea\xfa\xa0\x0a\x17\x70\x49\x64\xad\x95\x68" 1079 "\x60\x0a\xf0\x57\x29\x41\x79\x30\x3c\x61\x69\xf2\xa6\x94\x87\x17" 1080 "\x54\xfa\x97\x2c\xe6\x1e\x0a\xbb\x55\x10\x57\xbe\xf7\xc1\x77\x2b" 1081 "\x11\x74\x0a\x50\x37\x14\x10\x2a\x45\xfc\x7a\xae\x1c\x4c\xce\x08" 1082 "\x05\xb7\xa4\x50\xc8\x3d\x39\x3d\xdc\x5c\x8f\x96\x6c\xe7\xfc\x21" 1083 "\xc3\x2d\x1e\x9f\x11\xb3\xec\x22\x18\x8a\x8c\x08\x6b\x8b\xed\xf5" 1084 "\xc5\x47\x3c\x7e\x73\x59\x44\x1e\x77\x83\x84\x52\x9e\x3b\x7d\xff" 1085 "\x9d\x86\x1a", 1086 .key_len = 131, 1087 .params = /* OID_gostTC26Sign512A */ 1088 "\x30\x0b\x06\x09\x2a\x85\x03\x07\x01\x02\x01\x02\x01", 1089 .param_len = 13, 1090 .c = 1091 "\x92\x81\x74\x5f\x95\x48\x38\x87\xd9\x8f\x5e\xc8\x8a\xbb\x01\x4e" 1092 "\xb0\x75\x3c\x2f\xc7\x5a\x08\x4c\x68\xab\x75\x01\x32\x75\x75\xb5" 1093 "\x37\xe0\x74\x6d\x94\x84\x31\x2a\x6b\xf4\xf7\xb7\xa7\x39\x7b\x46" 1094 "\x07\xf0\x98\xbd\x33\x18\xa1\x72\xb2\x6d\x54\xe3\xde\x91\xc2\x2e" 1095 "\x4f\x6a\xf8\xb7\xec\xa8\x83\xc9\x8f\xd9\xce\x7c\x45\x06\x02\xf4" 1096 "\x4f\x21\xb5\x24\x3d\xb4\xb5\xd8\x58\x42\xbe\x2d\x29\xae\x93\xc0" 1097 "\x13\x41\x96\x35\x08\x69\xe8\x36\xc7\xd1\x83\x81\xd7\xca\xfb\xc0" 1098 "\xd2\xb7\x78\x32\x3e\x30\x1a\x1e\xce\xdc\x34\x35\xc6\xad\x68\x24", 1099 .c_size = 128, 1100 .algo = OID_gost2012PKey512, 1101 .m = 1102 "\x1f\x70\xb5\xe9\x55\x12\xd6\x88\xcc\x55\xb9\x0c\x7f\xc4\x94\xf2" 1103 "\x04\x77\x41\x12\x02\xd6\xf1\x1f\x83\x56\xe9\xd6\x5a\x6a\x72\xb9" 1104 "\x6e\x8e\x24\x2a\x84\xf1\xba\x67\xe8\xbf\xff\xc1\xd3\xde\xfb\xc6" 1105 "\xa8\xf6\x80\x01\xb9\x27\xac\xd8\x45\x96\x66\xa1\xee\x48\x08\x3f", 1106 .m_size = 64, 1107 .public_key_vec = true, 1108 .siggen_sigver_test = true, 1109 }, 1110 { 1111 .key = 1112 "\x04\x81\x80\x28\xf3\x2b\x92\x04\x32\xea\x66\x20\xde\xa0\x2f\x74" 1113 "\xbf\x2d\xf7\xb5\x30\x76\xb1\xc8\xee\x38\x9f\xea\xe5\xad\xc6\xa3" 1114 "\x28\x1e\x51\x3d\x67\xa3\x41\xcc\x6b\x81\xe2\xe2\x9e\x82\xf3\x78" 1115 "\x56\xd7\x2e\xb2\xb5\xbe\xb4\x50\x21\x05\xe5\x29\x82\xef\x15\x1b" 1116 "\xc0\xd7\x30\xd6\x2f\x96\xe8\xff\x99\x4c\x25\xcf\x9a\xfc\x54\x30" 1117 "\xce\xdf\x59\xe9\xc6\x45\xce\xe4\x22\xe8\x01\xd5\xcd\x2f\xaa\x78" 1118 "\x99\xc6\x04\x1e\x6f\x4c\x25\x6a\x76\xad\xff\x48\xf3\xb3\xb4\xd6" 1119 "\x14\x5c\x2c\x0e\xea\xa2\x4b\xb9\x7e\x89\x77\x02\x3a\x29\xc8\x16" 1120 "\x8e\x78\x48", 1121 .key_len = 131, 1122 .params = /* OID_gostTC26Sign512B */ 1123 "\x30\x0b\x06\x09\x2a\x85\x03\x07\x01\x02\x01\x02\x02", 1124 .param_len = 13, 1125 .c = 1126 "\x0a\xed\xb6\x27\xea\xa7\xa6\x7e\x2f\xc1\x02\x21\x74\xce\x27\xd2" 1127 "\xee\x8a\x92\x4d\xa9\x43\x2d\xa4\x5b\xdc\x23\x02\xfc\x3a\xf3\xb2" 1128 "\x10\x93\x0b\x40\x1b\x75\x95\x3e\x39\x41\x37\xb9\xab\x51\x09\xeb" 1129 "\xf1\xb9\x49\x58\xec\x58\xc7\xf9\x2e\xb9\xc9\x40\xf2\x00\x39\x7e" 1130 "\x3f\xde\x72\xe3\x85\x67\x06\xbe\xd8\xb8\xc1\x81\x1e\xe3\x0a\xfe" 1131 "\xce\xd3\x77\x92\x56\x8c\x58\xf9\x37\x60\x2d\xe6\x8b\x66\xa3\xdd" 1132 "\xd2\xf0\xf8\xda\x1b\x20\xbc\x9c\xec\x29\x5d\xd1\x8f\xcc\x37\xd1" 1133 "\x3b\x8d\xb7\xc1\xe0\xb8\x3b\xef\x14\x1b\x87\xbc\xc1\x03\x9a\x93", 1134 .c_size = 128, 1135 .algo = OID_gost2012PKey512, 1136 .m = 1137 "\x11\x24\x21\x27\xf2\x42\x9f\xce\x5a\xf9\x01\x70\xe0\x07\x2b\x57" 1138 "\xfb\x7d\x77\x5e\x74\x66\xe6\xa5\x40\x4c\x1a\x85\x18\xff\xd0\x63" 1139 "\xe0\x39\xd3\xd6\xe5\x17\xf8\xc3\x4b\xc6\x1c\x33\x1a\xca\xa6\x66" 1140 "\x6d\xf4\xd2\x45\xc2\x83\xa0\x42\x95\x05\x9d\x89\x8e\x0a\xca\xcc", 1141 .m_size = 64, 1142 .public_key_vec = true, 1143 .siggen_sigver_test = true, 1144 }, 1145 }; 1146 1147 /* 1148 * PKCS#1 RSA test vectors. Obtained from CAVS testing. 1149 */ 1150 static const struct akcipher_testvec pkcs1pad_rsa_tv_template[] = { 1151 { 1152 .key = 1153 "\x30\x82\x03\x1f\x02\x01\x00\x02\x82\x01\x01\x00\xd7\x1e\x77\x82" 1154 "\x8c\x92\x31\xe7\x69\x02\xa2\xd5\x5c\x78\xde\xa2\x0c\x8f\xfe\x28" 1155 "\x59\x31\xdf\x40\x9c\x60\x61\x06\xb9\x2f\x62\x40\x80\x76\xcb\x67" 1156 "\x4a\xb5\x59\x56\x69\x17\x07\xfa\xf9\x4c\xbd\x6c\x37\x7a\x46\x7d" 1157 "\x70\xa7\x67\x22\xb3\x4d\x7a\x94\xc3\xba\x4b\x7c\x4b\xa9\x32\x7c" 1158 "\xb7\x38\x95\x45\x64\xa4\x05\xa8\x9f\x12\x7c\x4e\xc6\xc8\x2d\x40" 1159 "\x06\x30\xf4\x60\xa6\x91\xbb\x9b\xca\x04\x79\x11\x13\x75\xf0\xae" 1160 "\xd3\x51\x89\xc5\x74\xb9\xaa\x3f\xb6\x83\xe4\x78\x6b\xcd\xf9\x5c" 1161 "\x4c\x85\xea\x52\x3b\x51\x93\xfc\x14\x6b\x33\x5d\x30\x70\xfa\x50" 1162 "\x1b\x1b\x38\x81\x13\x8d\xf7\xa5\x0c\xc0\x8e\xf9\x63\x52\x18\x4e" 1163 "\xa9\xf9\xf8\x5c\x5d\xcd\x7a\x0d\xd4\x8e\x7b\xee\x91\x7b\xad\x7d" 1164 "\xb4\x92\xd5\xab\x16\x3b\x0a\x8a\xce\x8e\xde\x47\x1a\x17\x01\x86" 1165 "\x7b\xab\x99\xf1\x4b\x0c\x3a\x0d\x82\x47\xc1\x91\x8c\xbb\x2e\x22" 1166 "\x9e\x49\x63\x6e\x02\xc1\xc9\x3a\x9b\xa5\x22\x1b\x07\x95\xd6\x10" 1167 "\x02\x50\xfd\xfd\xd1\x9b\xbe\xab\xc2\xc0\x74\xd7\xec\x00\xfb\x11" 1168 "\x71\xcb\x7a\xdc\x81\x79\x9f\x86\x68\x46\x63\x82\x4d\xb7\xf1\xe6" 1169 "\x16\x6f\x42\x63\xf4\x94\xa0\xca\x33\xcc\x75\x13\x02\x82\x01\x00" 1170 "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" 1171 "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" 1172 "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" 1173 "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" 1174 "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" 1175 "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" 1176 "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" 1177 "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" 1178 "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" 1179 "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" 1180 "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" 1181 "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" 1182 "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" 1183 "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" 1184 "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" 1185 "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x01" 1186 "\x02\x82\x01\x00\x62\xb5\x60\x31\x4f\x3f\x66\x16\xc1\x60\xac\x47" 1187 "\x2a\xff\x6b\x69\x00\x4a\xb2\x5c\xe1\x50\xb9\x18\x74\xa8\xe4\xdc" 1188 "\xa8\xec\xcd\x30\xbb\xc1\xc6\xe3\xc6\xac\x20\x2a\x3e\x5e\x8b\x12" 1189 "\xe6\x82\x08\x09\x38\x0b\xab\x7c\xb3\xcc\x9c\xce\x97\x67\xdd\xef" 1190 "\x95\x40\x4e\x92\xe2\x44\xe9\x1d\xc1\x14\xfd\xa9\xb1\xdc\x71\x9c" 1191 "\x46\x21\xbd\x58\x88\x6e\x22\x15\x56\xc1\xef\xe0\xc9\x8d\xe5\x80" 1192 "\x3e\xda\x7e\x93\x0f\x52\xf6\xf5\xc1\x91\x90\x9e\x42\x49\x4f\x8d" 1193 "\x9c\xba\x38\x83\xe9\x33\xc2\x50\x4f\xec\xc2\xf0\xa8\xb7\x6e\x28" 1194 "\x25\x56\x6b\x62\x67\xfe\x08\xf1\x56\xe5\x6f\x0e\x99\xf1\xe5\x95" 1195 "\x7b\xef\xeb\x0a\x2c\x92\x97\x57\x23\x33\x36\x07\xdd\xfb\xae\xf1" 1196 "\xb1\xd8\x33\xb7\x96\x71\x42\x36\xc5\xa4\xa9\x19\x4b\x1b\x52\x4c" 1197 "\x50\x69\x91\xf0\x0e\xfa\x80\x37\x4b\xb5\xd0\x2f\xb7\x44\x0d\xd4" 1198 "\xf8\x39\x8d\xab\x71\x67\x59\x05\x88\x3d\xeb\x48\x48\x33\x88\x4e" 1199 "\xfe\xf8\x27\x1b\xd6\x55\x60\x5e\x48\xb7\x6d\x9a\xa8\x37\xf9\x7a" 1200 "\xde\x1b\xcd\x5d\x1a\x30\xd4\xe9\x9e\x5b\x3c\x15\xf8\x9c\x1f\xda" 1201 "\xd1\x86\x48\x55\xce\x83\xee\x8e\x51\xc7\xde\x32\x12\x47\x7d\x46" 1202 "\xb8\x35\xdf\x41\x02\x01\x00\x02\x01\x00\x02\x01\x00\x02\x01\x00" 1203 "\x02\x01\x00", 1204 .key_len = 804, 1205 /* 1206 * m is SHA256 hash of following message: 1207 * "\x49\x41\xbe\x0a\x0c\xc9\xf6\x35\x51\xe4\x27\x56\x13\x71\x4b\xd0" 1208 * "\x36\x92\x84\x89\x1b\xf8\x56\x4a\x72\x61\x14\x69\x4f\x5e\x98\xa5" 1209 * "\x80\x5a\x37\x51\x1f\xd8\xf5\xb5\x63\xfc\xf4\xb1\xbb\x4d\x33\xa3" 1210 * "\x1e\xb9\x75\x8b\x9c\xda\x7e\x6d\x3a\x77\x85\xf7\xfc\x4e\xe7\x64" 1211 * "\x43\x10\x19\xa0\x59\xae\xe0\xad\x4b\xd3\xc4\x45\xf7\xb1\xc2\xc1" 1212 * "\x65\x01\x41\x39\x5b\x45\x47\xed\x2b\x51\xed\xe3\xd0\x09\x10\xd2" 1213 * "\x39\x6c\x4a\x3f\xe5\xd2\x20\xe6\xb0\x71\x7d\x5b\xed\x26\x60\xf1" 1214 * "\xb4\x73\xd1\xdb\x7d\xc4\x19\x91\xee\xf6\x32\x76\xf2\x19\x7d\xb7" 1215 */ 1216 .m = 1217 "\x3e\xc8\xa1\x26\x20\x54\x44\x52\x48\x0d\xe5\x66\xf3\xb3\xf5\x04" 1218 "\xbe\x10\xa8\x48\x94\x22\x2d\xdd\xba\x7a\xb4\x76\x8d\x79\x98\x89", 1219 .m_size = 32, 1220 .c = 1221 "\xc7\xa3\x98\xeb\x43\xd1\x08\xc2\x3d\x78\x45\x04\x70\xc9\x01\xee" 1222 "\xf8\x85\x37\x7c\x0b\xf9\x19\x70\x5c\x45\x7b\x2f\x3a\x0b\xb7\x8b" 1223 "\xc4\x0d\x7b\x3a\x64\x0b\x0f\xdb\x78\xa9\x0b\xfd\x8d\x82\xa4\x86" 1224 "\x39\xbf\x21\xb8\x84\xc4\xce\x9f\xc2\xe8\xb6\x61\x46\x17\xb9\x4e" 1225 "\x0b\x57\x05\xb4\x4f\xf9\x9c\x93\x2d\x9b\xd5\x48\x1d\x80\x12\xef" 1226 "\x3a\x77\x7f\xbc\xb5\x8e\x2b\x6b\x7c\xfc\x9f\x8c\x9d\xa2\xc4\x85" 1227 "\xb0\x87\xe9\x17\x9b\xb6\x23\x62\xd2\xa9\x9f\x57\xe8\xf7\x04\x45" 1228 "\x24\x3a\x45\xeb\xeb\x6a\x08\x8e\xaf\xc8\xa0\x84\xbc\x5d\x13\x38" 1229 "\xf5\x17\x8c\xa3\x96\x9b\xa9\x38\x8d\xf0\x35\xad\x32\x8a\x72\x5b" 1230 "\xdf\x21\xab\x4b\x0e\xa8\x29\xbb\x61\x54\xbf\x05\xdb\x84\x84\xde" 1231 "\xdd\x16\x36\x31\xda\xf3\x42\x6d\x7a\x90\x22\x9b\x11\x29\xa6\xf8" 1232 "\x30\x61\xda\xd3\x8b\x54\x1e\x42\xd1\x47\x1d\x6f\xd1\xcd\x42\x0b" 1233 "\xd1\xe4\x15\x85\x7e\x08\xd6\x59\x64\x4c\x01\x34\x91\x92\x26\xe8" 1234 "\xb0\x25\x8c\xf8\xf4\xfa\x8b\xc9\x31\x33\x76\x72\xfb\x64\x92\x9f" 1235 "\xda\x62\x8d\xe1\x2a\x71\x91\x43\x40\x61\x3c\x5a\xbe\x86\xfc\x5b" 1236 "\xe6\xf9\xa9\x16\x31\x1f\xaf\x25\x6d\xc2\x4a\x23\x6e\x63\x02\xa2", 1237 .c_size = 256, 1238 .siggen_sigver_test = true, 1239 } 1240 }; 1241 1242 static const struct kpp_testvec dh_tv_template[] = { 1243 { 1244 .secret = 1245 #ifdef __LITTLE_ENDIAN 1246 "\x01\x00" /* type */ 1247 "\x15\x02" /* len */ 1248 "\x00\x01\x00\x00" /* key_size */ 1249 "\x00\x01\x00\x00" /* p_size */ 1250 "\x00\x00\x00\x00" /* q_size */ 1251 "\x01\x00\x00\x00" /* g_size */ 1252 #else 1253 "\x00\x01" /* type */ 1254 "\x02\x15" /* len */ 1255 "\x00\x00\x01\x00" /* key_size */ 1256 "\x00\x00\x01\x00" /* p_size */ 1257 "\x00\x00\x00\x00" /* q_size */ 1258 "\x00\x00\x00\x01" /* g_size */ 1259 #endif 1260 /* xa */ 1261 "\x44\xc1\x48\x36\xa7\x2b\x6f\x4e\x43\x03\x68\xad\x31\x00\xda\xf3" 1262 "\x2a\x01\xa8\x32\x63\x5f\x89\x32\x1f\xdf\x4c\xa1\x6a\xbc\x10\x15" 1263 "\x90\x35\xc9\x26\x41\xdf\x7b\xaa\x56\x56\x3d\x85\x44\xb5\xc0\x8e" 1264 "\x37\x83\x06\x50\xb3\x5f\x0e\x28\x2c\xd5\x46\x15\xe3\xda\x7d\x74" 1265 "\x87\x13\x91\x4f\xd4\x2d\xf6\xc7\x5e\x14\x2c\x11\xc2\x26\xb4\x3a" 1266 "\xe3\xb2\x36\x20\x11\x3b\x22\xf2\x06\x65\x66\xe2\x57\x58\xf8\x22" 1267 "\x1a\x94\xbd\x2b\x0e\x8c\x55\xad\x61\x23\x45\x2b\x19\x1e\x63\x3a" 1268 "\x13\x61\xe3\xa0\x79\x70\x3e\x6d\x98\x32\xbc\x7f\x82\xc3\x11\xd8" 1269 "\xeb\x53\xb5\xfc\xb5\xd5\x3c\x4a\xea\x92\x3e\x01\xce\x15\x65\xd4" 1270 "\xaa\x85\xc1\x11\x90\x83\x31\x6e\xfe\xe7\x7f\x7d\xed\xab\xf9\x29" 1271 "\xf8\xc7\xf1\x68\xc6\xb7\xe4\x1f\x2f\x28\xa0\xc9\x1a\x50\x64\x29" 1272 "\x4b\x01\x6d\x1a\xda\x46\x63\x21\x07\x40\x8c\x8e\x4c\x6f\xb5\xe5" 1273 "\x12\xf3\xc2\x1b\x48\x27\x5e\x27\x01\xb1\xaa\xed\x68\x9b\x83\x18" 1274 "\x8f\xb1\xeb\x1f\x04\xd1\x3c\x79\xed\x4b\xf7\x0a\x33\xdc\xe0\xc6" 1275 "\xd8\x02\x51\x59\x00\x74\x30\x07\x4c\x2d\xac\xe4\x13\xf1\x80\xf0" 1276 "\xce\xfa\xff\xa9\xce\x29\x46\xdd\x9d\xad\xd1\xc3\xc6\x58\x1a\x63" 1277 /* p */ 1278 "\xb9\x36\x3a\xf1\x82\x1f\x60\xd3\x22\x47\xb8\xbc\x2d\x22\x6b\x81" 1279 "\x7f\xe8\x20\x06\x09\x23\x73\x49\x9a\x59\x8b\x35\x25\xf8\x31\xbc" 1280 "\x7d\xa8\x1c\x9d\x56\x0d\x1a\xf7\x4b\x4f\x96\xa4\x35\x77\x6a\x89" 1281 "\xab\x42\x00\x49\x21\x71\xed\x28\x16\x1d\x87\x5a\x10\xa7\x9c\x64" 1282 "\x94\xd4\x87\x3d\x28\xef\x44\xfe\x4b\xe2\xb4\x15\x8c\x82\xa6\xf3" 1283 "\x50\x5f\xa8\xe8\xa2\x60\xe7\x00\x86\x78\x05\xd4\x78\x19\xa1\x98" 1284 "\x62\x4e\x4a\x00\x78\x56\x96\xe6\xcf\xd7\x10\x1b\x74\x5d\xd0\x26" 1285 "\x61\xdb\x6b\x32\x09\x51\xd8\xa5\xfd\x54\x16\x71\x01\xb3\x39\xe6" 1286 "\x4e\x69\xb1\xd7\x06\x8f\xd6\x1e\xdc\x72\x25\x26\x74\xc8\x41\x06" 1287 "\x5c\xd1\x26\x5c\xb0\x2f\xf9\x59\x13\xc1\x2a\x0f\x78\xea\x7b\xf7" 1288 "\xbd\x59\xa0\x90\x1d\xfc\x33\x5b\x4c\xbf\x05\x9c\x3a\x3f\x69\xa2" 1289 "\x45\x61\x4e\x10\x6a\xb3\x17\xc5\x68\x30\xfb\x07\x5f\x34\xc6\xfb" 1290 "\x73\x07\x3c\x70\xf6\xae\xe7\x72\x84\xc3\x18\x81\x8f\xe8\x11\x1f" 1291 "\x3d\x83\x83\x01\x2a\x14\x73\xbf\x32\x32\x2e\xc9\x4d\xdb\x2a\xca" 1292 "\xee\x71\xf9\xda\xad\xe8\x82\x0b\x4d\x0c\x1f\xb6\x1d\xef\x00\x67" 1293 "\x74\x3d\x95\xe0\xb7\xc4\x30\x8a\x24\x87\x12\x47\x27\x70\x0d\x73" 1294 /* g */ 1295 "\x02", 1296 .b_public = 1297 "\x2a\x67\x5c\xfd\x63\x5d\xc0\x97\x0a\x8b\xa2\x1f\xf8\x8a\xcb\x54" 1298 "\xca\x2f\xd3\x49\x3f\x01\x8e\x87\xfe\xcc\x94\xa0\x3e\xd4\x26\x79" 1299 "\x9a\x94\x3c\x11\x81\x58\x5c\x60\x3d\xf5\x98\x90\x89\x64\x62\x1f" 1300 "\xbd\x05\x6d\x2b\xcd\x84\x40\x9b\x4a\x1f\xe0\x19\xf1\xca\x20\xb3" 1301 "\x4e\xa0\x4f\x15\xcc\xa5\xfe\xa5\xb4\xf5\x0b\x18\x7a\x5a\x37\xaa" 1302 "\x58\x00\x19\x7f\xe2\xa3\xd9\x1c\x44\x57\xcc\xde\x2e\xc1\x38\xea" 1303 "\xeb\xe3\x90\x40\xc4\x6c\xf7\xcd\xe9\x22\x50\x71\xf5\x7c\xdb\x37" 1304 "\x0e\x80\xc3\xed\x7e\xb1\x2b\x2f\xbe\x71\xa6\x11\xa5\x9d\xf5\x39" 1305 "\xf1\xa2\xe5\x85\xbc\x25\x91\x4e\x84\x8d\x26\x9f\x4f\xe6\x0f\xa6" 1306 "\x2b\x6b\xf9\x0d\xaf\x6f\xbb\xfa\x2d\x79\x15\x31\x57\xae\x19\x60" 1307 "\x22\x0a\xf5\xfd\x98\x0e\xbf\x5d\x49\x75\x58\x37\xbc\x7f\xf5\x21" 1308 "\x56\x1e\xd5\xb3\x50\x0b\xca\x96\xf3\xd1\x3f\xb3\x70\xa8\x6d\x63" 1309 "\x48\xfb\x3d\xd7\x29\x91\x45\xb5\x48\xcd\xb6\x78\x30\xf2\x3f\x1e" 1310 "\xd6\x22\xd6\x35\x9b\xf9\x1f\x85\xae\xab\x4b\xd7\xe0\xc7\x86\x67" 1311 "\x3f\x05\x7f\xa6\x0d\x2f\x0d\xbf\x53\x5f\x4d\x2c\x6d\x5e\x57\x40" 1312 "\x30\x3a\x23\x98\xf9\xb4\x32\xf5\x32\x83\xdd\x0b\xae\x33\x97\x2f", 1313 .expected_a_public = 1314 "\x5c\x24\xdf\xeb\x5b\x4b\xf8\xc5\xef\x39\x48\x82\xe0\x1e\x62\xee" 1315 "\x8a\xae\xdf\x93\x6c\x2b\x16\x95\x92\x16\x3f\x16\x7b\x75\x03\x85" 1316 "\xd9\xf1\x69\xc2\x14\x87\x45\xfc\xa4\x19\xf6\xf0\xa4\xf3\xec\xd4" 1317 "\x6c\x5c\x03\x3b\x94\xc2\x2f\x92\xe4\xce\xb3\xe4\x72\xe8\x17\xe6" 1318 "\x23\x7e\x00\x01\x09\x59\x13\xbf\xc1\x2f\x99\xa9\x07\xaa\x02\x23" 1319 "\x4a\xca\x39\x4f\xbc\xec\x0f\x27\x4f\x19\x93\x6c\xb9\x30\x52\xfd" 1320 "\x2b\x9d\x86\xf1\x06\x1e\xb6\x56\x27\x4a\xc9\x8a\xa7\x8a\x48\x5e" 1321 "\xb5\x60\xcb\xdf\xff\x03\x26\x10\xbf\x90\x8f\x46\x60\xeb\x9b\x9a" 1322 "\xd6\x6f\x44\x91\x03\x92\x18\x2c\x96\x5e\x40\x19\xfb\xf4\x4f\x3a" 1323 "\x02\x7b\xaf\xcc\x22\x20\x79\xb9\xf8\x9f\x8f\x85\x6b\xec\x44\xbb" 1324 "\xe6\xa8\x8e\xb1\xe8\x2c\xee\x64\xee\xf8\xbd\x00\xf3\xe2\x2b\x93" 1325 "\xcd\xe7\xc4\xdf\xc9\x19\x46\xfe\xb6\x07\x73\xc1\x8a\x64\x79\x26" 1326 "\xe7\x30\xad\x2a\xdf\xe6\x8f\x59\xf5\x81\xbf\x4a\x29\x91\xe7\xb7" 1327 "\xcf\x48\x13\x27\x75\x79\x40\xd9\xd6\x32\x52\x4e\x6a\x86\xae\x6f" 1328 "\xc2\xbf\xec\x1f\xc2\x69\xb2\xb6\x59\xe5\xa5\x17\xa4\x77\xb7\x62" 1329 "\x46\xde\xe8\xd2\x89\x78\x9a\xef\xa3\xb5\x8f\x26\xec\x80\xda\x39", 1330 .expected_ss = 1331 "\x8f\xf3\xac\xa2\xea\x22\x11\x5c\x45\x65\x1a\x77\x75\x2e\xcf\x46" 1332 "\x23\x14\x1e\x67\x53\x4d\x35\xb0\x38\x1d\x4e\xb9\x41\x9a\x21\x24" 1333 "\x6e\x9f\x40\xfe\x90\x51\xb1\x06\xa4\x7b\x87\x17\x2f\xe7\x5e\x22" 1334 "\xf0\x7b\x54\x84\x0a\xac\x0a\x90\xd2\xd7\xe8\x7f\xe7\xe3\x30\x75" 1335 "\x01\x1f\x24\x75\x56\xbe\xcc\x8d\x1e\x68\x0c\x41\x72\xd3\xfa\xbb" 1336 "\xe5\x9c\x60\xc7\x28\x77\x0c\xbe\x89\xab\x08\xd6\x21\xe7\x2e\x1a" 1337 "\x58\x7a\xca\x4f\x22\xf3\x2b\x30\xfd\xf4\x98\xc1\xa3\xf8\xf6\xcc" 1338 "\xa9\xe4\xdb\x5b\xee\xd5\x5c\x6f\x62\x4c\xd1\x1a\x02\x2a\x23\xe4" 1339 "\xb5\x57\xf3\xf9\xec\x04\x83\x54\xfe\x08\x5e\x35\xac\xfb\xa8\x09" 1340 "\x82\x32\x60\x11\xb2\x16\x62\x6b\xdf\xda\xde\x9c\xcb\x63\x44\x6c" 1341 "\x59\x26\x6a\x8f\xb0\x24\xcb\xa6\x72\x48\x1e\xeb\xe0\xe1\x09\x44" 1342 "\xdd\xee\x66\x6d\x84\xcf\xa5\xc1\xb8\x36\x74\xd3\x15\x96\xc3\xe4" 1343 "\xc6\x5a\x4d\x23\x97\x0c\x5c\xcb\xa9\xf5\x29\xc2\x0e\xff\x93\x82" 1344 "\xd3\x34\x49\xad\x64\xa6\xb1\xc0\x59\x28\x75\x60\xa7\x8a\xb0\x11" 1345 "\x56\x89\x42\x74\x11\xf5\xf6\x5e\x6f\x16\x54\x6a\xb1\x76\x4d\x50" 1346 "\x8a\x68\xc1\x5b\x82\xb9\x0d\x00\x32\x50\xed\x88\x87\x48\x92\x17", 1347 .secret_size = 533, 1348 .b_public_size = 256, 1349 .expected_a_public_size = 256, 1350 .expected_ss_size = 256, 1351 }, 1352 { 1353 .secret = 1354 #ifdef __LITTLE_ENDIAN 1355 "\x01\x00" /* type */ 1356 "\x15\x02" /* len */ 1357 "\x00\x01\x00\x00" /* key_size */ 1358 "\x00\x01\x00\x00" /* p_size */ 1359 "\x00\x00\x00\x00" /* q_size */ 1360 "\x01\x00\x00\x00" /* g_size */ 1361 #else 1362 "\x00\x01" /* type */ 1363 "\x02\x15" /* len */ 1364 "\x00\x00\x01\x00" /* key_size */ 1365 "\x00\x00\x01\x00" /* p_size */ 1366 "\x00\x00\x00\x00" /* q_size */ 1367 "\x00\x00\x00\x01" /* g_size */ 1368 #endif 1369 /* xa */ 1370 "\x4d\x75\xa8\x6e\xba\x23\x3a\x0c\x63\x56\xc8\xc9\x5a\xa7\xd6\x0e" 1371 "\xed\xae\x40\x78\x87\x47\x5f\xe0\xa7\x7b\xba\x84\x88\x67\x4e\xe5" 1372 "\x3c\xcc\x5c\x6a\xe7\x4a\x20\xec\xbe\xcb\xf5\x52\x62\x9f\x37\x80" 1373 "\x0c\x72\x7b\x83\x66\xa4\xf6\x7f\x95\x97\x1c\x6a\x5c\x7e\xf1\x67" 1374 "\x37\xb3\x93\x39\x3d\x0b\x55\x35\xd9\xe5\x22\x04\x9f\xf8\xc1\x04" 1375 "\xce\x13\xa5\xac\xe1\x75\x05\xd1\x2b\x53\xa2\x84\xef\xb1\x18\xf4" 1376 "\x66\xdd\xea\xe6\x24\x69\x5a\x49\xe0\x7a\xd8\xdf\x1b\xb7\xf1\x6d" 1377 "\x9b\x50\x2c\xc8\x1c\x1c\xa3\xb4\x37\xfb\x66\x3f\x67\x71\x73\xa9" 1378 "\xff\x5f\xd9\xa2\x25\x6e\x25\x1b\x26\x54\xbf\x0c\xc6\xdb\xea\x0a" 1379 "\x52\x6c\x16\x7c\x27\x68\x15\x71\x58\x73\x9d\xe6\xc2\x80\xaa\x97" 1380 "\x31\x66\xfb\xa6\xfb\xfd\xd0\x9c\x1d\xbe\x81\x48\xf5\x9a\x32\xf1" 1381 "\x69\x62\x18\x78\xae\x72\x36\xe6\x94\x27\xd1\xff\x18\x4f\x28\x6a" 1382 "\x16\xbd\x6a\x60\xee\xe5\xf9\x6d\x16\xe4\xb8\xa6\x41\x9b\x23\x7e" 1383 "\xf7\x9d\xd1\x1d\x03\x15\x66\x3a\xcf\xb6\x2c\x13\x96\x2c\x52\x21" 1384 "\xe4\x2d\x48\x7a\x8a\x5d\xb2\x88\xed\x98\x61\x79\x8b\x6a\x1e\x5f" 1385 "\xd0\x8a\x2d\x99\x5a\x2b\x0f\xbc\xef\x53\x8f\x32\xc1\xa2\x99\x26" 1386 /* p */ 1387 "\xb9\x36\x3a\xf1\x82\x1f\x60\xd3\x22\x47\xb8\xbc\x2d\x22\x6b\x81" 1388 "\x7f\xe8\x20\x06\x09\x23\x73\x49\x9a\x59\x8b\x35\x25\xf8\x31\xbc" 1389 "\x7d\xa8\x1c\x9d\x56\x0d\x1a\xf7\x4b\x4f\x96\xa4\x35\x77\x6a\x89" 1390 "\xab\x42\x00\x49\x21\x71\xed\x28\x16\x1d\x87\x5a\x10\xa7\x9c\x64" 1391 "\x94\xd4\x87\x3d\x28\xef\x44\xfe\x4b\xe2\xb4\x15\x8c\x82\xa6\xf3" 1392 "\x50\x5f\xa8\xe8\xa2\x60\xe7\x00\x86\x78\x05\xd4\x78\x19\xa1\x98" 1393 "\x62\x4e\x4a\x00\x78\x56\x96\xe6\xcf\xd7\x10\x1b\x74\x5d\xd0\x26" 1394 "\x61\xdb\x6b\x32\x09\x51\xd8\xa5\xfd\x54\x16\x71\x01\xb3\x39\xe6" 1395 "\x4e\x69\xb1\xd7\x06\x8f\xd6\x1e\xdc\x72\x25\x26\x74\xc8\x41\x06" 1396 "\x5c\xd1\x26\x5c\xb0\x2f\xf9\x59\x13\xc1\x2a\x0f\x78\xea\x7b\xf7" 1397 "\xbd\x59\xa0\x90\x1d\xfc\x33\x5b\x4c\xbf\x05\x9c\x3a\x3f\x69\xa2" 1398 "\x45\x61\x4e\x10\x6a\xb3\x17\xc5\x68\x30\xfb\x07\x5f\x34\xc6\xfb" 1399 "\x73\x07\x3c\x70\xf6\xae\xe7\x72\x84\xc3\x18\x81\x8f\xe8\x11\x1f" 1400 "\x3d\x83\x83\x01\x2a\x14\x73\xbf\x32\x32\x2e\xc9\x4d\xdb\x2a\xca" 1401 "\xee\x71\xf9\xda\xad\xe8\x82\x0b\x4d\x0c\x1f\xb6\x1d\xef\x00\x67" 1402 "\x74\x3d\x95\xe0\xb7\xc4\x30\x8a\x24\x87\x12\x47\x27\x70\x0d\x73" 1403 /* g */ 1404 "\x02", 1405 .b_public = 1406 "\x99\x4d\xd9\x01\x84\x8e\x4a\x5b\xb8\xa5\x64\x8c\x6c\x00\x5c\x0e" 1407 "\x1e\x1b\xee\x5d\x9f\x53\xe3\x16\x70\x01\xed\xbf\x4f\x14\x36\x6e" 1408 "\xe4\x43\x45\x43\x49\xcc\xb1\xb0\x2a\xc0\x6f\x22\x55\x42\x17\x94" 1409 "\x18\x83\xd7\x2a\x5c\x51\x54\xf8\x4e\x7c\x10\xda\x76\x68\x57\x77" 1410 "\x1e\x62\x03\x30\x04\x7b\x4c\x39\x9c\x54\x01\x54\xec\xef\xb3\x55" 1411 "\xa4\xc0\x24\x6d\x3d\xbd\xcc\x46\x5b\x00\x96\xc7\xea\x93\xd1\x3f" 1412 "\xf2\x6a\x72\xe3\xf2\xc1\x92\x24\x5b\xda\x48\x70\x2c\xa9\x59\x97" 1413 "\x19\xb1\xd6\x54\xb3\x9c\x2e\xb0\x63\x07\x9b\x5e\xac\xb5\xf2\xb1" 1414 "\x5b\xf8\xf3\xd7\x2d\x37\x9b\x68\x6c\xf8\x90\x07\xbc\x37\x9a\xa5" 1415 "\xe2\x91\x12\x25\x47\x77\xe3\x3d\xb2\x95\x69\x44\x0b\x91\x1e\xaf" 1416 "\x7c\x8c\x7c\x34\x41\x6a\xab\x60\x6e\xc6\x52\xec\x7e\x94\x0a\x37" 1417 "\xec\x98\x90\xdf\x3f\x02\xbd\x23\x52\xdd\xd9\xe5\x31\x80\x74\x25" 1418 "\xb6\xd2\xd3\xcc\xd5\xcc\x6d\xf9\x7e\x4d\x78\xab\x77\x51\xfa\x77" 1419 "\x19\x94\x49\x8c\x05\xd4\x75\xed\xd2\xb3\x64\x57\xe0\x52\x99\xc0" 1420 "\x83\xe3\xbb\x5e\x2b\xf1\xd2\xc0\xb1\x37\x36\x0b\x7c\xb5\x63\x96" 1421 "\x8e\xde\x04\x23\x11\x95\x62\x11\x9a\xce\x6f\x63\xc8\xd5\xd1\x8f", 1422 .expected_a_public = 1423 "\x90\x89\xe4\x82\xd6\x0a\xcf\x1a\xae\xce\x1b\x66\xa7\x19\x71\x18" 1424 "\x8f\x95\x4b\x5b\x80\x45\x4a\x5a\x43\x99\x4d\x37\xcf\xa3\xa7\x28" 1425 "\x9c\xc7\x73\xf1\xb2\x17\xf6\x99\xe3\x6b\x56\xcb\x3e\x35\x60\x7d" 1426 "\x65\xc7\x84\x6b\x3e\x60\xee\xcd\xd2\x70\xe7\xc9\x32\x1c\xf0\xb4" 1427 "\xf9\x52\xd9\x88\x75\xfd\x40\x2c\xa7\xbe\x19\x1c\x0a\xae\x93\xe1" 1428 "\x71\xc7\xcd\x4f\x33\x5c\x10\x7d\x39\x56\xfc\x73\x84\xb2\x67\xc3" 1429 "\x77\x26\x20\x97\x2b\xf8\x13\x43\x93\x9c\x9a\xa4\x08\xc7\x34\x83" 1430 "\xe6\x98\x61\xe7\x16\x30\x2c\xb1\xdb\x2a\xb2\xcc\xc3\x02\xa5\x3c" 1431 "\x71\x50\x14\x83\xc7\xbb\xa4\xbe\x98\x1b\xfe\xcb\x43\xe9\x97\x62" 1432 "\xd6\xf0\x8c\xcb\x1c\xba\x1e\xa8\xa6\xa6\x50\xfc\x85\x7d\x47\xbf" 1433 "\xf4\x3e\x23\xd3\x5f\xb2\x71\x3e\x40\x94\xaa\x87\x83\x2c\x6c\x8e" 1434 "\x60\xfd\xdd\xf7\xf4\x76\x03\xd3\x1d\xec\x18\x51\xa3\xf2\x44\x1a" 1435 "\x3f\xb4\x7c\x18\x0d\x68\x65\x92\x54\x0d\x2d\x81\x16\xf1\x84\x66" 1436 "\x89\x92\xd0\x1a\x5e\x1f\x42\x46\x5b\xe5\x83\x86\x80\xd9\xcd\x3a" 1437 "\x5a\x2f\xb9\x59\x9b\xe4\x43\x84\x64\xf3\x09\x1a\x0a\xa2\x64\x0f" 1438 "\x77\x4e\x8d\x8b\xe6\x88\xd1\xfc\xaf\x8f\xdf\x1d\xbc\x31\xb3\xbd", 1439 .expected_ss = 1440 "\x34\xc3\x35\x14\x88\x46\x26\x23\x97\xbb\xdd\x28\x5c\x94\xf6\x47" 1441 "\xca\xb3\x19\xaf\xca\x44\x9b\xc2\x7d\x89\xfd\x96\x14\xfd\x6d\x58" 1442 "\xd8\xc4\x6b\x61\x2a\x0d\xf2\x36\x45\xc8\xe4\xa4\xed\x81\x53\x81" 1443 "\x66\x1e\xe0\x5a\xb1\x78\x2d\x0b\x5c\xb4\xd1\xfc\x90\xc6\x9c\xdb" 1444 "\x5a\x30\x0b\x14\x7d\xbe\xb3\x7d\xb1\xb2\x76\x3c\x6c\xef\x74\x6b" 1445 "\xe7\x1f\x64\x0c\xab\x65\xe1\x76\x5c\x3d\x83\xb5\x8a\xfb\xaf\x0f" 1446 "\xf2\x06\x14\x8f\xa0\xf6\xc1\x89\x78\xf2\xba\x72\x73\x3c\xf7\x76" 1447 "\x21\x67\xbc\x24\x31\xb8\x09\x65\x0f\x0c\x02\x32\x4a\x98\x14\xfc" 1448 "\x72\x2c\x25\x60\x68\x5f\x2f\x30\x1e\x5b\xf0\x3b\xd1\xa2\x87\xa0" 1449 "\x54\xdf\xdb\xc0\xee\x0a\x0f\x47\xc9\x90\x20\x2c\xf9\xe3\x52\xad" 1450 "\x27\x65\x8d\x54\x8d\xa8\xa1\xf3\xed\x15\xd4\x94\x28\x90\x31\x93" 1451 "\x1b\xc0\x51\xbb\x43\x5d\x76\x3b\x1d\x2a\x71\x50\xea\x5d\x48\x94" 1452 "\x7f\x6f\xf1\x48\xdb\x30\xe5\xae\x64\x79\xd9\x7a\xdb\xc6\xff\xd8" 1453 "\x5e\x5a\x64\xbd\xf6\x85\x04\xe8\x28\x6a\xac\xef\xce\x19\x8e\x9a" 1454 "\xfe\x75\xc0\x27\x69\xe3\xb3\x7b\x21\xa7\xb1\x16\xa4\x85\x23\xee" 1455 "\xb0\x1b\x04\x6e\xbd\xab\x16\xde\xfd\x86\x6b\xa9\x95\xd7\x0b\xfd", 1456 .secret_size = 533, 1457 .b_public_size = 256, 1458 .expected_a_public_size = 256, 1459 .expected_ss_size = 256, 1460 } 1461 }; 1462 1463 static const struct kpp_testvec curve25519_tv_template[] = { 1464 { 1465 .secret = (u8[32]){ 0x77, 0x07, 0x6d, 0x0a, 0x73, 0x18, 0xa5, 0x7d, 1466 0x3c, 0x16, 0xc1, 0x72, 0x51, 0xb2, 0x66, 0x45, 1467 0xdf, 0x4c, 0x2f, 0x87, 0xeb, 0xc0, 0x99, 0x2a, 1468 0xb1, 0x77, 0xfb, 0xa5, 0x1d, 0xb9, 0x2c, 0x2a }, 1469 .b_public = (u8[32]){ 0xde, 0x9e, 0xdb, 0x7d, 0x7b, 0x7d, 0xc1, 0xb4, 1470 0xd3, 0x5b, 0x61, 0xc2, 0xec, 0xe4, 0x35, 0x37, 1471 0x3f, 0x83, 0x43, 0xc8, 0x5b, 0x78, 0x67, 0x4d, 1472 0xad, 0xfc, 0x7e, 0x14, 0x6f, 0x88, 0x2b, 0x4f }, 1473 .expected_ss = (u8[32]){ 0x4a, 0x5d, 0x9d, 0x5b, 0xa4, 0xce, 0x2d, 0xe1, 1474 0x72, 0x8e, 0x3b, 0xf4, 0x80, 0x35, 0x0f, 0x25, 1475 0xe0, 0x7e, 0x21, 0xc9, 0x47, 0xd1, 0x9e, 0x33, 1476 0x76, 0xf0, 0x9b, 0x3c, 0x1e, 0x16, 0x17, 0x42 }, 1477 .secret_size = 32, 1478 .b_public_size = 32, 1479 .expected_ss_size = 32, 1480 1481 }, 1482 { 1483 .secret = (u8[32]){ 0x5d, 0xab, 0x08, 0x7e, 0x62, 0x4a, 0x8a, 0x4b, 1484 0x79, 0xe1, 0x7f, 0x8b, 0x83, 0x80, 0x0e, 0xe6, 1485 0x6f, 0x3b, 0xb1, 0x29, 0x26, 0x18, 0xb6, 0xfd, 1486 0x1c, 0x2f, 0x8b, 0x27, 0xff, 0x88, 0xe0, 0xeb }, 1487 .b_public = (u8[32]){ 0x85, 0x20, 0xf0, 0x09, 0x89, 0x30, 0xa7, 0x54, 1488 0x74, 0x8b, 0x7d, 0xdc, 0xb4, 0x3e, 0xf7, 0x5a, 1489 0x0d, 0xbf, 0x3a, 0x0d, 0x26, 0x38, 0x1a, 0xf4, 1490 0xeb, 0xa4, 0xa9, 0x8e, 0xaa, 0x9b, 0x4e, 0x6a }, 1491 .expected_ss = (u8[32]){ 0x4a, 0x5d, 0x9d, 0x5b, 0xa4, 0xce, 0x2d, 0xe1, 1492 0x72, 0x8e, 0x3b, 0xf4, 0x80, 0x35, 0x0f, 0x25, 1493 0xe0, 0x7e, 0x21, 0xc9, 0x47, 0xd1, 0x9e, 0x33, 1494 0x76, 0xf0, 0x9b, 0x3c, 0x1e, 0x16, 0x17, 0x42 }, 1495 .secret_size = 32, 1496 .b_public_size = 32, 1497 .expected_ss_size = 32, 1498 1499 }, 1500 { 1501 .secret = (u8[32]){ 1 }, 1502 .b_public = (u8[32]){ 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 1503 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 1504 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 1505 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }, 1506 .expected_ss = (u8[32]){ 0x3c, 0x77, 0x77, 0xca, 0xf9, 0x97, 0xb2, 0x64, 1507 0x41, 0x60, 0x77, 0x66, 0x5b, 0x4e, 0x22, 0x9d, 1508 0x0b, 0x95, 0x48, 0xdc, 0x0c, 0xd8, 0x19, 0x98, 1509 0xdd, 0xcd, 0xc5, 0xc8, 0x53, 0x3c, 0x79, 0x7f }, 1510 .secret_size = 32, 1511 .b_public_size = 32, 1512 .expected_ss_size = 32, 1513 1514 }, 1515 { 1516 .secret = (u8[32]){ 1 }, 1517 .b_public = (u8[32]){ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1518 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1519 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1520 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }, 1521 .expected_ss = (u8[32]){ 0xb3, 0x2d, 0x13, 0x62, 0xc2, 0x48, 0xd6, 0x2f, 1522 0xe6, 0x26, 0x19, 0xcf, 0xf0, 0x4d, 0xd4, 0x3d, 1523 0xb7, 0x3f, 0xfc, 0x1b, 0x63, 0x08, 0xed, 0xe3, 1524 0x0b, 0x78, 0xd8, 0x73, 0x80, 0xf1, 0xe8, 0x34 }, 1525 .secret_size = 32, 1526 .b_public_size = 32, 1527 .expected_ss_size = 32, 1528 1529 }, 1530 { 1531 .secret = (u8[32]){ 0xa5, 0x46, 0xe3, 0x6b, 0xf0, 0x52, 0x7c, 0x9d, 1532 0x3b, 0x16, 0x15, 0x4b, 0x82, 0x46, 0x5e, 0xdd, 1533 0x62, 0x14, 0x4c, 0x0a, 0xc1, 0xfc, 0x5a, 0x18, 1534 0x50, 0x6a, 0x22, 0x44, 0xba, 0x44, 0x9a, 0xc4 }, 1535 .b_public = (u8[32]){ 0xe6, 0xdb, 0x68, 0x67, 0x58, 0x30, 0x30, 0xdb, 1536 0x35, 0x94, 0xc1, 0xa4, 0x24, 0xb1, 0x5f, 0x7c, 1537 0x72, 0x66, 0x24, 0xec, 0x26, 0xb3, 0x35, 0x3b, 1538 0x10, 0xa9, 0x03, 0xa6, 0xd0, 0xab, 0x1c, 0x4c }, 1539 .expected_ss = (u8[32]){ 0xc3, 0xda, 0x55, 0x37, 0x9d, 0xe9, 0xc6, 0x90, 1540 0x8e, 0x94, 0xea, 0x4d, 0xf2, 0x8d, 0x08, 0x4f, 1541 0x32, 0xec, 0xcf, 0x03, 0x49, 0x1c, 0x71, 0xf7, 1542 0x54, 0xb4, 0x07, 0x55, 0x77, 0xa2, 0x85, 0x52 }, 1543 .secret_size = 32, 1544 .b_public_size = 32, 1545 .expected_ss_size = 32, 1546 1547 }, 1548 { 1549 .secret = (u8[32]){ 0xff, 0xff, 0xff, 0xff, 0x0a, 0xff, 0xff, 0xff, 1550 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1551 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1552 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }, 1553 .b_public = (u8[32]){ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1554 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1555 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1556 0xff, 0xff, 0xff, 0xff, 0x0a, 0x00, 0xfb, 0x9f }, 1557 .expected_ss = (u8[32]){ 0x77, 0x52, 0xb6, 0x18, 0xc1, 0x2d, 0x48, 0xd2, 1558 0xc6, 0x93, 0x46, 0x83, 0x81, 0x7c, 0xc6, 0x57, 1559 0xf3, 0x31, 0x03, 0x19, 0x49, 0x48, 0x20, 0x05, 1560 0x42, 0x2b, 0x4e, 0xae, 0x8d, 0x1d, 0x43, 0x23 }, 1561 .secret_size = 32, 1562 .b_public_size = 32, 1563 .expected_ss_size = 32, 1564 1565 }, 1566 { 1567 .secret = (u8[32]){ 0x8e, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 1568 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 1569 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 1570 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }, 1571 .b_public = (u8[32]){ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 1572 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 1573 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 1574 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x06 }, 1575 .expected_ss = (u8[32]){ 0x5a, 0xdf, 0xaa, 0x25, 0x86, 0x8e, 0x32, 0x3d, 1576 0xae, 0x49, 0x62, 0xc1, 0x01, 0x5c, 0xb3, 0x12, 1577 0xe1, 0xc5, 0xc7, 0x9e, 0x95, 0x3f, 0x03, 0x99, 1578 0xb0, 0xba, 0x16, 0x22, 0xf3, 0xb6, 0xf7, 0x0c }, 1579 .secret_size = 32, 1580 .b_public_size = 32, 1581 .expected_ss_size = 32, 1582 1583 }, 1584 /* wycheproof - normal case */ 1585 { 1586 .secret = (u8[32]){ 0x48, 0x52, 0x83, 0x4d, 0x9d, 0x6b, 0x77, 0xda, 1587 0xde, 0xab, 0xaa, 0xf2, 0xe1, 0x1d, 0xca, 0x66, 1588 0xd1, 0x9f, 0xe7, 0x49, 0x93, 0xa7, 0xbe, 0xc3, 1589 0x6c, 0x6e, 0x16, 0xa0, 0x98, 0x3f, 0xea, 0xba }, 1590 .b_public = (u8[32]){ 0x9c, 0x64, 0x7d, 0x9a, 0xe5, 0x89, 0xb9, 0xf5, 1591 0x8f, 0xdc, 0x3c, 0xa4, 0x94, 0x7e, 0xfb, 0xc9, 1592 0x15, 0xc4, 0xb2, 0xe0, 0x8e, 0x74, 0x4a, 0x0e, 1593 0xdf, 0x46, 0x9d, 0xac, 0x59, 0xc8, 0xf8, 0x5a }, 1594 .expected_ss = (u8[32]){ 0x87, 0xb7, 0xf2, 0x12, 0xb6, 0x27, 0xf7, 0xa5, 1595 0x4c, 0xa5, 0xe0, 0xbc, 0xda, 0xdd, 0xd5, 0x38, 1596 0x9d, 0x9d, 0xe6, 0x15, 0x6c, 0xdb, 0xcf, 0x8e, 1597 0xbe, 0x14, 0xff, 0xbc, 0xfb, 0x43, 0x65, 0x51 }, 1598 .secret_size = 32, 1599 .b_public_size = 32, 1600 .expected_ss_size = 32, 1601 1602 }, 1603 /* wycheproof - public key on twist */ 1604 { 1605 .secret = (u8[32]){ 0x58, 0x8c, 0x06, 0x1a, 0x50, 0x80, 0x4a, 0xc4, 1606 0x88, 0xad, 0x77, 0x4a, 0xc7, 0x16, 0xc3, 0xf5, 1607 0xba, 0x71, 0x4b, 0x27, 0x12, 0xe0, 0x48, 0x49, 1608 0x13, 0x79, 0xa5, 0x00, 0x21, 0x19, 0x98, 0xa8 }, 1609 .b_public = (u8[32]){ 0x63, 0xaa, 0x40, 0xc6, 0xe3, 0x83, 0x46, 0xc5, 1610 0xca, 0xf2, 0x3a, 0x6d, 0xf0, 0xa5, 0xe6, 0xc8, 1611 0x08, 0x89, 0xa0, 0x86, 0x47, 0xe5, 0x51, 0xb3, 1612 0x56, 0x34, 0x49, 0xbe, 0xfc, 0xfc, 0x97, 0x33 }, 1613 .expected_ss = (u8[32]){ 0xb1, 0xa7, 0x07, 0x51, 0x94, 0x95, 0xff, 0xff, 1614 0xb2, 0x98, 0xff, 0x94, 0x17, 0x16, 0xb0, 0x6d, 1615 0xfa, 0xb8, 0x7c, 0xf8, 0xd9, 0x11, 0x23, 0xfe, 1616 0x2b, 0xe9, 0xa2, 0x33, 0xdd, 0xa2, 0x22, 0x12 }, 1617 .secret_size = 32, 1618 .b_public_size = 32, 1619 .expected_ss_size = 32, 1620 1621 }, 1622 /* wycheproof - public key on twist */ 1623 { 1624 .secret = (u8[32]){ 0xb0, 0x5b, 0xfd, 0x32, 0xe5, 0x53, 0x25, 0xd9, 1625 0xfd, 0x64, 0x8c, 0xb3, 0x02, 0x84, 0x80, 0x39, 1626 0x00, 0x0b, 0x39, 0x0e, 0x44, 0xd5, 0x21, 0xe5, 1627 0x8a, 0xab, 0x3b, 0x29, 0xa6, 0x96, 0x0b, 0xa8 }, 1628 .b_public = (u8[32]){ 0x0f, 0x83, 0xc3, 0x6f, 0xde, 0xd9, 0xd3, 0x2f, 1629 0xad, 0xf4, 0xef, 0xa3, 0xae, 0x93, 0xa9, 0x0b, 1630 0xb5, 0xcf, 0xa6, 0x68, 0x93, 0xbc, 0x41, 0x2c, 1631 0x43, 0xfa, 0x72, 0x87, 0xdb, 0xb9, 0x97, 0x79 }, 1632 .expected_ss = (u8[32]){ 0x67, 0xdd, 0x4a, 0x6e, 0x16, 0x55, 0x33, 0x53, 1633 0x4c, 0x0e, 0x3f, 0x17, 0x2e, 0x4a, 0xb8, 0x57, 1634 0x6b, 0xca, 0x92, 0x3a, 0x5f, 0x07, 0xb2, 0xc0, 1635 0x69, 0xb4, 0xc3, 0x10, 0xff, 0x2e, 0x93, 0x5b }, 1636 .secret_size = 32, 1637 .b_public_size = 32, 1638 .expected_ss_size = 32, 1639 1640 }, 1641 /* wycheproof - public key on twist */ 1642 { 1643 .secret = (u8[32]){ 0x70, 0xe3, 0x4b, 0xcb, 0xe1, 0xf4, 0x7f, 0xbc, 1644 0x0f, 0xdd, 0xfd, 0x7c, 0x1e, 0x1a, 0xa5, 0x3d, 1645 0x57, 0xbf, 0xe0, 0xf6, 0x6d, 0x24, 0x30, 0x67, 1646 0xb4, 0x24, 0xbb, 0x62, 0x10, 0xbe, 0xd1, 0x9c }, 1647 .b_public = (u8[32]){ 0x0b, 0x82, 0x11, 0xa2, 0xb6, 0x04, 0x90, 0x97, 1648 0xf6, 0x87, 0x1c, 0x6c, 0x05, 0x2d, 0x3c, 0x5f, 1649 0xc1, 0xba, 0x17, 0xda, 0x9e, 0x32, 0xae, 0x45, 1650 0x84, 0x03, 0xb0, 0x5b, 0xb2, 0x83, 0x09, 0x2a }, 1651 .expected_ss = (u8[32]){ 0x4a, 0x06, 0x38, 0xcf, 0xaa, 0x9e, 0xf1, 0x93, 1652 0x3b, 0x47, 0xf8, 0x93, 0x92, 0x96, 0xa6, 0xb2, 1653 0x5b, 0xe5, 0x41, 0xef, 0x7f, 0x70, 0xe8, 0x44, 1654 0xc0, 0xbc, 0xc0, 0x0b, 0x13, 0x4d, 0xe6, 0x4a }, 1655 .secret_size = 32, 1656 .b_public_size = 32, 1657 .expected_ss_size = 32, 1658 1659 }, 1660 /* wycheproof - public key on twist */ 1661 { 1662 .secret = (u8[32]){ 0x68, 0xc1, 0xf3, 0xa6, 0x53, 0xa4, 0xcd, 0xb1, 1663 0xd3, 0x7b, 0xba, 0x94, 0x73, 0x8f, 0x8b, 0x95, 1664 0x7a, 0x57, 0xbe, 0xb2, 0x4d, 0x64, 0x6e, 0x99, 1665 0x4d, 0xc2, 0x9a, 0x27, 0x6a, 0xad, 0x45, 0x8d }, 1666 .b_public = (u8[32]){ 0x34, 0x3a, 0xc2, 0x0a, 0x3b, 0x9c, 0x6a, 0x27, 1667 0xb1, 0x00, 0x81, 0x76, 0x50, 0x9a, 0xd3, 0x07, 1668 0x35, 0x85, 0x6e, 0xc1, 0xc8, 0xd8, 0xfc, 0xae, 1669 0x13, 0x91, 0x2d, 0x08, 0xd1, 0x52, 0xf4, 0x6c }, 1670 .expected_ss = (u8[32]){ 0x39, 0x94, 0x91, 0xfc, 0xe8, 0xdf, 0xab, 0x73, 1671 0xb4, 0xf9, 0xf6, 0x11, 0xde, 0x8e, 0xa0, 0xb2, 1672 0x7b, 0x28, 0xf8, 0x59, 0x94, 0x25, 0x0b, 0x0f, 1673 0x47, 0x5d, 0x58, 0x5d, 0x04, 0x2a, 0xc2, 0x07 }, 1674 .secret_size = 32, 1675 .b_public_size = 32, 1676 .expected_ss_size = 32, 1677 1678 }, 1679 /* wycheproof - public key on twist */ 1680 { 1681 .secret = (u8[32]){ 0xd8, 0x77, 0xb2, 0x6d, 0x06, 0xdf, 0xf9, 0xd9, 1682 0xf7, 0xfd, 0x4c, 0x5b, 0x37, 0x69, 0xf8, 0xcd, 1683 0xd5, 0xb3, 0x05, 0x16, 0xa5, 0xab, 0x80, 0x6b, 1684 0xe3, 0x24, 0xff, 0x3e, 0xb6, 0x9e, 0xa0, 0xb2 }, 1685 .b_public = (u8[32]){ 0xfa, 0x69, 0x5f, 0xc7, 0xbe, 0x8d, 0x1b, 0xe5, 1686 0xbf, 0x70, 0x48, 0x98, 0xf3, 0x88, 0xc4, 0x52, 1687 0xba, 0xfd, 0xd3, 0xb8, 0xea, 0xe8, 0x05, 0xf8, 1688 0x68, 0x1a, 0x8d, 0x15, 0xc2, 0xd4, 0xe1, 0x42 }, 1689 .expected_ss = (u8[32]){ 0x2c, 0x4f, 0xe1, 0x1d, 0x49, 0x0a, 0x53, 0x86, 1690 0x17, 0x76, 0xb1, 0x3b, 0x43, 0x54, 0xab, 0xd4, 1691 0xcf, 0x5a, 0x97, 0x69, 0x9d, 0xb6, 0xe6, 0xc6, 1692 0x8c, 0x16, 0x26, 0xd0, 0x76, 0x62, 0xf7, 0x58 }, 1693 .secret_size = 32, 1694 .b_public_size = 32, 1695 .expected_ss_size = 32, 1696 1697 }, 1698 /* wycheproof - edge case on twist */ 1699 { 1700 .secret = (u8[32]){ 0x38, 0xdd, 0xe9, 0xf3, 0xe7, 0xb7, 0x99, 0x04, 1701 0x5f, 0x9a, 0xc3, 0x79, 0x3d, 0x4a, 0x92, 0x77, 1702 0xda, 0xde, 0xad, 0xc4, 0x1b, 0xec, 0x02, 0x90, 1703 0xf8, 0x1f, 0x74, 0x4f, 0x73, 0x77, 0x5f, 0x84 }, 1704 .b_public = (u8[32]){ 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 1705 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 1706 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 1707 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }, 1708 .expected_ss = (u8[32]){ 0x9a, 0x2c, 0xfe, 0x84, 0xff, 0x9c, 0x4a, 0x97, 1709 0x39, 0x62, 0x5c, 0xae, 0x4a, 0x3b, 0x82, 0xa9, 1710 0x06, 0x87, 0x7a, 0x44, 0x19, 0x46, 0xf8, 0xd7, 1711 0xb3, 0xd7, 0x95, 0xfe, 0x8f, 0x5d, 0x16, 0x39 }, 1712 .secret_size = 32, 1713 .b_public_size = 32, 1714 .expected_ss_size = 32, 1715 1716 }, 1717 /* wycheproof - edge case on twist */ 1718 { 1719 .secret = (u8[32]){ 0x98, 0x57, 0xa9, 0x14, 0xe3, 0xc2, 0x90, 0x36, 1720 0xfd, 0x9a, 0x44, 0x2b, 0xa5, 0x26, 0xb5, 0xcd, 1721 0xcd, 0xf2, 0x82, 0x16, 0x15, 0x3e, 0x63, 0x6c, 1722 0x10, 0x67, 0x7a, 0xca, 0xb6, 0xbd, 0x6a, 0xa5 }, 1723 .b_public = (u8[32]){ 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 1724 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 1725 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 1726 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }, 1727 .expected_ss = (u8[32]){ 0x4d, 0xa4, 0xe0, 0xaa, 0x07, 0x2c, 0x23, 0x2e, 1728 0xe2, 0xf0, 0xfa, 0x4e, 0x51, 0x9a, 0xe5, 0x0b, 1729 0x52, 0xc1, 0xed, 0xd0, 0x8a, 0x53, 0x4d, 0x4e, 1730 0xf3, 0x46, 0xc2, 0xe1, 0x06, 0xd2, 0x1d, 0x60 }, 1731 .secret_size = 32, 1732 .b_public_size = 32, 1733 .expected_ss_size = 32, 1734 1735 }, 1736 /* wycheproof - edge case on twist */ 1737 { 1738 .secret = (u8[32]){ 0x48, 0xe2, 0x13, 0x0d, 0x72, 0x33, 0x05, 0xed, 1739 0x05, 0xe6, 0xe5, 0x89, 0x4d, 0x39, 0x8a, 0x5e, 1740 0x33, 0x36, 0x7a, 0x8c, 0x6a, 0xac, 0x8f, 0xcd, 1741 0xf0, 0xa8, 0x8e, 0x4b, 0x42, 0x82, 0x0d, 0xb7 }, 1742 .b_public = (u8[32]){ 0xff, 0xff, 0xff, 0x03, 0x00, 0x00, 0xf8, 0xff, 1743 0xff, 0x1f, 0x00, 0x00, 0xc0, 0xff, 0xff, 0xff, 1744 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0x07, 0x00, 1745 0x00, 0xf0, 0xff, 0xff, 0x3f, 0x00, 0x00, 0x00 }, 1746 .expected_ss = (u8[32]){ 0x9e, 0xd1, 0x0c, 0x53, 0x74, 0x7f, 0x64, 0x7f, 1747 0x82, 0xf4, 0x51, 0x25, 0xd3, 0xde, 0x15, 0xa1, 1748 0xe6, 0xb8, 0x24, 0x49, 0x6a, 0xb4, 0x04, 0x10, 1749 0xff, 0xcc, 0x3c, 0xfe, 0x95, 0x76, 0x0f, 0x3b }, 1750 .secret_size = 32, 1751 .b_public_size = 32, 1752 .expected_ss_size = 32, 1753 1754 }, 1755 /* wycheproof - edge case on twist */ 1756 { 1757 .secret = (u8[32]){ 0x28, 0xf4, 0x10, 0x11, 0x69, 0x18, 0x51, 0xb3, 1758 0xa6, 0x2b, 0x64, 0x15, 0x53, 0xb3, 0x0d, 0x0d, 1759 0xfd, 0xdc, 0xb8, 0xff, 0xfc, 0xf5, 0x37, 0x00, 1760 0xa7, 0xbe, 0x2f, 0x6a, 0x87, 0x2e, 0x9f, 0xb0 }, 1761 .b_public = (u8[32]){ 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0x07, 0x00, 1762 0x00, 0xe0, 0xff, 0xff, 0x3f, 0x00, 0x00, 0x00, 1763 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0xf8, 0xff, 1764 0xff, 0x0f, 0x00, 0x00, 0xc0, 0xff, 0xff, 0x7f }, 1765 .expected_ss = (u8[32]){ 0xcf, 0x72, 0xb4, 0xaa, 0x6a, 0xa1, 0xc9, 0xf8, 1766 0x94, 0xf4, 0x16, 0x5b, 0x86, 0x10, 0x9a, 0xa4, 1767 0x68, 0x51, 0x76, 0x48, 0xe1, 0xf0, 0xcc, 0x70, 1768 0xe1, 0xab, 0x08, 0x46, 0x01, 0x76, 0x50, 0x6b }, 1769 .secret_size = 32, 1770 .b_public_size = 32, 1771 .expected_ss_size = 32, 1772 1773 }, 1774 /* wycheproof - edge case on twist */ 1775 { 1776 .secret = (u8[32]){ 0x18, 0xa9, 0x3b, 0x64, 0x99, 0xb9, 0xf6, 0xb3, 1777 0x22, 0x5c, 0xa0, 0x2f, 0xef, 0x41, 0x0e, 0x0a, 1778 0xde, 0xc2, 0x35, 0x32, 0x32, 0x1d, 0x2d, 0x8e, 1779 0xf1, 0xa6, 0xd6, 0x02, 0xa8, 0xc6, 0x5b, 0x83 }, 1780 .b_public = (u8[32]){ 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 1781 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 1782 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 1783 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x7f }, 1784 .expected_ss = (u8[32]){ 0x5d, 0x50, 0xb6, 0x28, 0x36, 0xbb, 0x69, 0x57, 1785 0x94, 0x10, 0x38, 0x6c, 0xf7, 0xbb, 0x81, 0x1c, 1786 0x14, 0xbf, 0x85, 0xb1, 0xc7, 0xb1, 0x7e, 0x59, 1787 0x24, 0xc7, 0xff, 0xea, 0x91, 0xef, 0x9e, 0x12 }, 1788 .secret_size = 32, 1789 .b_public_size = 32, 1790 .expected_ss_size = 32, 1791 1792 }, 1793 /* wycheproof - edge case on twist */ 1794 { 1795 .secret = (u8[32]){ 0xc0, 0x1d, 0x13, 0x05, 0xa1, 0x33, 0x8a, 0x1f, 1796 0xca, 0xc2, 0xba, 0x7e, 0x2e, 0x03, 0x2b, 0x42, 1797 0x7e, 0x0b, 0x04, 0x90, 0x31, 0x65, 0xac, 0xa9, 1798 0x57, 0xd8, 0xd0, 0x55, 0x3d, 0x87, 0x17, 0xb0 }, 1799 .b_public = (u8[32]){ 0xea, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1800 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1801 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1802 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f }, 1803 .expected_ss = (u8[32]){ 0x19, 0x23, 0x0e, 0xb1, 0x48, 0xd5, 0xd6, 0x7c, 1804 0x3c, 0x22, 0xab, 0x1d, 0xae, 0xff, 0x80, 0xa5, 1805 0x7e, 0xae, 0x42, 0x65, 0xce, 0x28, 0x72, 0x65, 1806 0x7b, 0x2c, 0x80, 0x99, 0xfc, 0x69, 0x8e, 0x50 }, 1807 .secret_size = 32, 1808 .b_public_size = 32, 1809 .expected_ss_size = 32, 1810 1811 }, 1812 /* wycheproof - edge case for public key */ 1813 { 1814 .secret = (u8[32]){ 0x38, 0x6f, 0x7f, 0x16, 0xc5, 0x07, 0x31, 0xd6, 1815 0x4f, 0x82, 0xe6, 0xa1, 0x70, 0xb1, 0x42, 0xa4, 1816 0xe3, 0x4f, 0x31, 0xfd, 0x77, 0x68, 0xfc, 0xb8, 1817 0x90, 0x29, 0x25, 0xe7, 0xd1, 0xe2, 0x1a, 0xbe }, 1818 .b_public = (u8[32]){ 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 1819 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 1820 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 1821 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }, 1822 .expected_ss = (u8[32]){ 0x0f, 0xca, 0xb5, 0xd8, 0x42, 0xa0, 0x78, 0xd7, 1823 0xa7, 0x1f, 0xc5, 0x9b, 0x57, 0xbf, 0xb4, 0xca, 1824 0x0b, 0xe6, 0x87, 0x3b, 0x49, 0xdc, 0xdb, 0x9f, 1825 0x44, 0xe1, 0x4a, 0xe8, 0xfb, 0xdf, 0xa5, 0x42 }, 1826 .secret_size = 32, 1827 .b_public_size = 32, 1828 .expected_ss_size = 32, 1829 1830 }, 1831 /* wycheproof - edge case for public key */ 1832 { 1833 .secret = (u8[32]){ 0xe0, 0x23, 0xa2, 0x89, 0xbd, 0x5e, 0x90, 0xfa, 1834 0x28, 0x04, 0xdd, 0xc0, 0x19, 0xa0, 0x5e, 0xf3, 1835 0xe7, 0x9d, 0x43, 0x4b, 0xb6, 0xea, 0x2f, 0x52, 1836 0x2e, 0xcb, 0x64, 0x3a, 0x75, 0x29, 0x6e, 0x95 }, 1837 .b_public = (u8[32]){ 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 1838 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 1839 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 1840 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 }, 1841 .expected_ss = (u8[32]){ 0x54, 0xce, 0x8f, 0x22, 0x75, 0xc0, 0x77, 0xe3, 1842 0xb1, 0x30, 0x6a, 0x39, 0x39, 0xc5, 0xe0, 0x3e, 1843 0xef, 0x6b, 0xbb, 0x88, 0x06, 0x05, 0x44, 0x75, 1844 0x8d, 0x9f, 0xef, 0x59, 0xb0, 0xbc, 0x3e, 0x4f }, 1845 .secret_size = 32, 1846 .b_public_size = 32, 1847 .expected_ss_size = 32, 1848 1849 }, 1850 /* wycheproof - edge case for public key */ 1851 { 1852 .secret = (u8[32]){ 0x68, 0xf0, 0x10, 0xd6, 0x2e, 0xe8, 0xd9, 0x26, 1853 0x05, 0x3a, 0x36, 0x1c, 0x3a, 0x75, 0xc6, 0xea, 1854 0x4e, 0xbd, 0xc8, 0x60, 0x6a, 0xb2, 0x85, 0x00, 1855 0x3a, 0x6f, 0x8f, 0x40, 0x76, 0xb0, 0x1e, 0x83 }, 1856 .b_public = (u8[32]){ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1857 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1858 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1859 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x03 }, 1860 .expected_ss = (u8[32]){ 0xf1, 0x36, 0x77, 0x5c, 0x5b, 0xeb, 0x0a, 0xf8, 1861 0x11, 0x0a, 0xf1, 0x0b, 0x20, 0x37, 0x23, 0x32, 1862 0x04, 0x3c, 0xab, 0x75, 0x24, 0x19, 0x67, 0x87, 1863 0x75, 0xa2, 0x23, 0xdf, 0x57, 0xc9, 0xd3, 0x0d }, 1864 .secret_size = 32, 1865 .b_public_size = 32, 1866 .expected_ss_size = 32, 1867 1868 }, 1869 /* wycheproof - edge case for public key */ 1870 { 1871 .secret = (u8[32]){ 0x58, 0xeb, 0xcb, 0x35, 0xb0, 0xf8, 0x84, 0x5c, 1872 0xaf, 0x1e, 0xc6, 0x30, 0xf9, 0x65, 0x76, 0xb6, 1873 0x2c, 0x4b, 0x7b, 0x6c, 0x36, 0xb2, 0x9d, 0xeb, 1874 0x2c, 0xb0, 0x08, 0x46, 0x51, 0x75, 0x5c, 0x96 }, 1875 .b_public = (u8[32]){ 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xfb, 0xff, 1876 0xff, 0xdf, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 1877 0xfe, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xf7, 0xff, 1878 0xff, 0xf7, 0xff, 0xff, 0xbf, 0xff, 0xff, 0x3f }, 1879 .expected_ss = (u8[32]){ 0xbf, 0x9a, 0xff, 0xd0, 0x6b, 0x84, 0x40, 0x85, 1880 0x58, 0x64, 0x60, 0x96, 0x2e, 0xf2, 0x14, 0x6f, 1881 0xf3, 0xd4, 0x53, 0x3d, 0x94, 0x44, 0xaa, 0xb0, 1882 0x06, 0xeb, 0x88, 0xcc, 0x30, 0x54, 0x40, 0x7d }, 1883 .secret_size = 32, 1884 .b_public_size = 32, 1885 .expected_ss_size = 32, 1886 1887 }, 1888 /* wycheproof - edge case for public key */ 1889 { 1890 .secret = (u8[32]){ 0x18, 0x8c, 0x4b, 0xc5, 0xb9, 0xc4, 0x4b, 0x38, 1891 0xbb, 0x65, 0x8b, 0x9b, 0x2a, 0xe8, 0x2d, 0x5b, 1892 0x01, 0x01, 0x5e, 0x09, 0x31, 0x84, 0xb1, 0x7c, 1893 0xb7, 0x86, 0x35, 0x03, 0xa7, 0x83, 0xe1, 0xbb }, 1894 .b_public = (u8[32]){ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1895 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1896 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1897 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f }, 1898 .expected_ss = (u8[32]){ 0xd4, 0x80, 0xde, 0x04, 0xf6, 0x99, 0xcb, 0x3b, 1899 0xe0, 0x68, 0x4a, 0x9c, 0xc2, 0xe3, 0x12, 0x81, 1900 0xea, 0x0b, 0xc5, 0xa9, 0xdc, 0xc1, 0x57, 0xd3, 1901 0xd2, 0x01, 0x58, 0xd4, 0x6c, 0xa5, 0x24, 0x6d }, 1902 .secret_size = 32, 1903 .b_public_size = 32, 1904 .expected_ss_size = 32, 1905 1906 }, 1907 /* wycheproof - edge case for public key */ 1908 { 1909 .secret = (u8[32]){ 0xe0, 0x6c, 0x11, 0xbb, 0x2e, 0x13, 0xce, 0x3d, 1910 0xc7, 0x67, 0x3f, 0x67, 0xf5, 0x48, 0x22, 0x42, 1911 0x90, 0x94, 0x23, 0xa9, 0xae, 0x95, 0xee, 0x98, 1912 0x6a, 0x98, 0x8d, 0x98, 0xfa, 0xee, 0x23, 0xa2 }, 1913 .b_public = (u8[32]){ 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0x7f, 1914 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0x7f, 1915 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0x7f, 1916 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0x7f }, 1917 .expected_ss = (u8[32]){ 0x4c, 0x44, 0x01, 0xcc, 0xe6, 0xb5, 0x1e, 0x4c, 1918 0xb1, 0x8f, 0x27, 0x90, 0x24, 0x6c, 0x9b, 0xf9, 1919 0x14, 0xdb, 0x66, 0x77, 0x50, 0xa1, 0xcb, 0x89, 1920 0x06, 0x90, 0x92, 0xaf, 0x07, 0x29, 0x22, 0x76 }, 1921 .secret_size = 32, 1922 .b_public_size = 32, 1923 .expected_ss_size = 32, 1924 1925 }, 1926 /* wycheproof - edge case for public key */ 1927 { 1928 .secret = (u8[32]){ 0xc0, 0x65, 0x8c, 0x46, 0xdd, 0xe1, 0x81, 0x29, 1929 0x29, 0x38, 0x77, 0x53, 0x5b, 0x11, 0x62, 0xb6, 1930 0xf9, 0xf5, 0x41, 0x4a, 0x23, 0xcf, 0x4d, 0x2c, 1931 0xbc, 0x14, 0x0a, 0x4d, 0x99, 0xda, 0x2b, 0x8f }, 1932 .b_public = (u8[32]){ 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1933 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1934 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1935 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f }, 1936 .expected_ss = (u8[32]){ 0x57, 0x8b, 0xa8, 0xcc, 0x2d, 0xbd, 0xc5, 0x75, 1937 0xaf, 0xcf, 0x9d, 0xf2, 0xb3, 0xee, 0x61, 0x89, 1938 0xf5, 0x33, 0x7d, 0x68, 0x54, 0xc7, 0x9b, 0x4c, 1939 0xe1, 0x65, 0xea, 0x12, 0x29, 0x3b, 0x3a, 0x0f }, 1940 .secret_size = 32, 1941 .b_public_size = 32, 1942 .expected_ss_size = 32, 1943 1944 }, 1945 /* wycheproof - public key >= p */ 1946 { 1947 .secret = (u8[32]){ 0xf0, 0x1e, 0x48, 0xda, 0xfa, 0xc9, 0xd7, 0xbc, 1948 0xf5, 0x89, 0xcb, 0xc3, 0x82, 0xc8, 0x78, 0xd1, 1949 0x8b, 0xda, 0x35, 0x50, 0x58, 0x9f, 0xfb, 0x5d, 1950 0x50, 0xb5, 0x23, 0xbe, 0xbe, 0x32, 0x9d, 0xae }, 1951 .b_public = (u8[32]){ 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1952 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1953 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1954 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f }, 1955 .expected_ss = (u8[32]){ 0xbd, 0x36, 0xa0, 0x79, 0x0e, 0xb8, 0x83, 0x09, 1956 0x8c, 0x98, 0x8b, 0x21, 0x78, 0x67, 0x73, 0xde, 1957 0x0b, 0x3a, 0x4d, 0xf1, 0x62, 0x28, 0x2c, 0xf1, 1958 0x10, 0xde, 0x18, 0xdd, 0x48, 0x4c, 0xe7, 0x4b }, 1959 .secret_size = 32, 1960 .b_public_size = 32, 1961 .expected_ss_size = 32, 1962 1963 }, 1964 /* wycheproof - public key >= p */ 1965 { 1966 .secret = (u8[32]){ 0x28, 0x87, 0x96, 0xbc, 0x5a, 0xff, 0x4b, 0x81, 1967 0xa3, 0x75, 0x01, 0x75, 0x7b, 0xc0, 0x75, 0x3a, 1968 0x3c, 0x21, 0x96, 0x47, 0x90, 0xd3, 0x86, 0x99, 1969 0x30, 0x8d, 0xeb, 0xc1, 0x7a, 0x6e, 0xaf, 0x8d }, 1970 .b_public = (u8[32]){ 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1971 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1972 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1973 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f }, 1974 .expected_ss = (u8[32]){ 0xb4, 0xe0, 0xdd, 0x76, 0xda, 0x7b, 0x07, 0x17, 1975 0x28, 0xb6, 0x1f, 0x85, 0x67, 0x71, 0xaa, 0x35, 1976 0x6e, 0x57, 0xed, 0xa7, 0x8a, 0x5b, 0x16, 0x55, 1977 0xcc, 0x38, 0x20, 0xfb, 0x5f, 0x85, 0x4c, 0x5c }, 1978 .secret_size = 32, 1979 .b_public_size = 32, 1980 .expected_ss_size = 32, 1981 1982 }, 1983 /* wycheproof - public key >= p */ 1984 { 1985 .secret = (u8[32]){ 0x98, 0xdf, 0x84, 0x5f, 0x66, 0x51, 0xbf, 0x11, 1986 0x38, 0x22, 0x1f, 0x11, 0x90, 0x41, 0xf7, 0x2b, 1987 0x6d, 0xbc, 0x3c, 0x4a, 0xce, 0x71, 0x43, 0xd9, 1988 0x9f, 0xd5, 0x5a, 0xd8, 0x67, 0x48, 0x0d, 0xa8 }, 1989 .b_public = (u8[32]){ 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1990 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1991 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 1992 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f }, 1993 .expected_ss = (u8[32]){ 0x6f, 0xdf, 0x6c, 0x37, 0x61, 0x1d, 0xbd, 0x53, 1994 0x04, 0xdc, 0x0f, 0x2e, 0xb7, 0xc9, 0x51, 0x7e, 1995 0xb3, 0xc5, 0x0e, 0x12, 0xfd, 0x05, 0x0a, 0xc6, 1996 0xde, 0xc2, 0x70, 0x71, 0xd4, 0xbf, 0xc0, 0x34 }, 1997 .secret_size = 32, 1998 .b_public_size = 32, 1999 .expected_ss_size = 32, 2000 2001 }, 2002 /* wycheproof - public key >= p */ 2003 { 2004 .secret = (u8[32]){ 0xf0, 0x94, 0x98, 0xe4, 0x6f, 0x02, 0xf8, 0x78, 2005 0x82, 0x9e, 0x78, 0xb8, 0x03, 0xd3, 0x16, 0xa2, 2006 0xed, 0x69, 0x5d, 0x04, 0x98, 0xa0, 0x8a, 0xbd, 2007 0xf8, 0x27, 0x69, 0x30, 0xe2, 0x4e, 0xdc, 0xb0 }, 2008 .b_public = (u8[32]){ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2009 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2010 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2011 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f }, 2012 .expected_ss = (u8[32]){ 0x4c, 0x8f, 0xc4, 0xb1, 0xc6, 0xab, 0x88, 0xfb, 2013 0x21, 0xf1, 0x8f, 0x6d, 0x4c, 0x81, 0x02, 0x40, 2014 0xd4, 0xe9, 0x46, 0x51, 0xba, 0x44, 0xf7, 0xa2, 2015 0xc8, 0x63, 0xce, 0xc7, 0xdc, 0x56, 0x60, 0x2d }, 2016 .secret_size = 32, 2017 .b_public_size = 32, 2018 .expected_ss_size = 32, 2019 2020 }, 2021 /* wycheproof - public key >= p */ 2022 { 2023 .secret = (u8[32]){ 0x18, 0x13, 0xc1, 0x0a, 0x5c, 0x7f, 0x21, 0xf9, 2024 0x6e, 0x17, 0xf2, 0x88, 0xc0, 0xcc, 0x37, 0x60, 2025 0x7c, 0x04, 0xc5, 0xf5, 0xae, 0xa2, 0xdb, 0x13, 2026 0x4f, 0x9e, 0x2f, 0xfc, 0x66, 0xbd, 0x9d, 0xb8 }, 2027 .b_public = (u8[32]){ 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 2028 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 2029 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 2030 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80 }, 2031 .expected_ss = (u8[32]){ 0x1c, 0xd0, 0xb2, 0x82, 0x67, 0xdc, 0x54, 0x1c, 2032 0x64, 0x2d, 0x6d, 0x7d, 0xca, 0x44, 0xa8, 0xb3, 2033 0x8a, 0x63, 0x73, 0x6e, 0xef, 0x5c, 0x4e, 0x65, 2034 0x01, 0xff, 0xbb, 0xb1, 0x78, 0x0c, 0x03, 0x3c }, 2035 .secret_size = 32, 2036 .b_public_size = 32, 2037 .expected_ss_size = 32, 2038 2039 }, 2040 /* wycheproof - public key >= p */ 2041 { 2042 .secret = (u8[32]){ 0x78, 0x57, 0xfb, 0x80, 0x86, 0x53, 0x64, 0x5a, 2043 0x0b, 0xeb, 0x13, 0x8a, 0x64, 0xf5, 0xf4, 0xd7, 2044 0x33, 0xa4, 0x5e, 0xa8, 0x4c, 0x3c, 0xda, 0x11, 2045 0xa9, 0xc0, 0x6f, 0x7e, 0x71, 0x39, 0x14, 0x9e }, 2046 .b_public = (u8[32]){ 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 2047 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 2048 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 2049 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80 }, 2050 .expected_ss = (u8[32]){ 0x87, 0x55, 0xbe, 0x01, 0xc6, 0x0a, 0x7e, 0x82, 2051 0x5c, 0xff, 0x3e, 0x0e, 0x78, 0xcb, 0x3a, 0xa4, 2052 0x33, 0x38, 0x61, 0x51, 0x6a, 0xa5, 0x9b, 0x1c, 2053 0x51, 0xa8, 0xb2, 0xa5, 0x43, 0xdf, 0xa8, 0x22 }, 2054 .secret_size = 32, 2055 .b_public_size = 32, 2056 .expected_ss_size = 32, 2057 2058 }, 2059 /* wycheproof - public key >= p */ 2060 { 2061 .secret = (u8[32]){ 0xe0, 0x3a, 0xa8, 0x42, 0xe2, 0xab, 0xc5, 0x6e, 2062 0x81, 0xe8, 0x7b, 0x8b, 0x9f, 0x41, 0x7b, 0x2a, 2063 0x1e, 0x59, 0x13, 0xc7, 0x23, 0xee, 0xd2, 0x8d, 2064 0x75, 0x2f, 0x8d, 0x47, 0xa5, 0x9f, 0x49, 0x8f }, 2065 .b_public = (u8[32]){ 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 2066 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 2067 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 2068 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80 }, 2069 .expected_ss = (u8[32]){ 0x54, 0xc9, 0xa1, 0xed, 0x95, 0xe5, 0x46, 0xd2, 2070 0x78, 0x22, 0xa3, 0x60, 0x93, 0x1d, 0xda, 0x60, 2071 0xa1, 0xdf, 0x04, 0x9d, 0xa6, 0xf9, 0x04, 0x25, 2072 0x3c, 0x06, 0x12, 0xbb, 0xdc, 0x08, 0x74, 0x76 }, 2073 .secret_size = 32, 2074 .b_public_size = 32, 2075 .expected_ss_size = 32, 2076 2077 }, 2078 /* wycheproof - public key >= p */ 2079 { 2080 .secret = (u8[32]){ 0xf8, 0xf7, 0x07, 0xb7, 0x99, 0x9b, 0x18, 0xcb, 2081 0x0d, 0x6b, 0x96, 0x12, 0x4f, 0x20, 0x45, 0x97, 2082 0x2c, 0xa2, 0x74, 0xbf, 0xc1, 0x54, 0xad, 0x0c, 2083 0x87, 0x03, 0x8c, 0x24, 0xc6, 0xd0, 0xd4, 0xb2 }, 2084 .b_public = (u8[32]){ 0xda, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2085 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2086 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2087 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }, 2088 .expected_ss = (u8[32]){ 0xcc, 0x1f, 0x40, 0xd7, 0x43, 0xcd, 0xc2, 0x23, 2089 0x0e, 0x10, 0x43, 0xda, 0xba, 0x8b, 0x75, 0xe8, 2090 0x10, 0xf1, 0xfb, 0xab, 0x7f, 0x25, 0x52, 0x69, 2091 0xbd, 0x9e, 0xbb, 0x29, 0xe6, 0xbf, 0x49, 0x4f }, 2092 .secret_size = 32, 2093 .b_public_size = 32, 2094 .expected_ss_size = 32, 2095 2096 }, 2097 /* wycheproof - public key >= p */ 2098 { 2099 .secret = (u8[32]){ 0xa0, 0x34, 0xf6, 0x84, 0xfa, 0x63, 0x1e, 0x1a, 2100 0x34, 0x81, 0x18, 0xc1, 0xce, 0x4c, 0x98, 0x23, 2101 0x1f, 0x2d, 0x9e, 0xec, 0x9b, 0xa5, 0x36, 0x5b, 2102 0x4a, 0x05, 0xd6, 0x9a, 0x78, 0x5b, 0x07, 0x96 }, 2103 .b_public = (u8[32]){ 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2104 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2105 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2106 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }, 2107 .expected_ss = (u8[32]){ 0x54, 0x99, 0x8e, 0xe4, 0x3a, 0x5b, 0x00, 0x7b, 2108 0xf4, 0x99, 0xf0, 0x78, 0xe7, 0x36, 0x52, 0x44, 2109 0x00, 0xa8, 0xb5, 0xc7, 0xe9, 0xb9, 0xb4, 0x37, 2110 0x71, 0x74, 0x8c, 0x7c, 0xdf, 0x88, 0x04, 0x12 }, 2111 .secret_size = 32, 2112 .b_public_size = 32, 2113 .expected_ss_size = 32, 2114 2115 }, 2116 /* wycheproof - public key >= p */ 2117 { 2118 .secret = (u8[32]){ 0x30, 0xb6, 0xc6, 0xa0, 0xf2, 0xff, 0xa6, 0x80, 2119 0x76, 0x8f, 0x99, 0x2b, 0xa8, 0x9e, 0x15, 0x2d, 2120 0x5b, 0xc9, 0x89, 0x3d, 0x38, 0xc9, 0x11, 0x9b, 2121 0xe4, 0xf7, 0x67, 0xbf, 0xab, 0x6e, 0x0c, 0xa5 }, 2122 .b_public = (u8[32]){ 0xdc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2123 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2124 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2125 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }, 2126 .expected_ss = (u8[32]){ 0xea, 0xd9, 0xb3, 0x8e, 0xfd, 0xd7, 0x23, 0x63, 2127 0x79, 0x34, 0xe5, 0x5a, 0xb7, 0x17, 0xa7, 0xae, 2128 0x09, 0xeb, 0x86, 0xa2, 0x1d, 0xc3, 0x6a, 0x3f, 2129 0xee, 0xb8, 0x8b, 0x75, 0x9e, 0x39, 0x1e, 0x09 }, 2130 .secret_size = 32, 2131 .b_public_size = 32, 2132 .expected_ss_size = 32, 2133 2134 }, 2135 /* wycheproof - public key >= p */ 2136 { 2137 .secret = (u8[32]){ 0x90, 0x1b, 0x9d, 0xcf, 0x88, 0x1e, 0x01, 0xe0, 2138 0x27, 0x57, 0x50, 0x35, 0xd4, 0x0b, 0x43, 0xbd, 2139 0xc1, 0xc5, 0x24, 0x2e, 0x03, 0x08, 0x47, 0x49, 2140 0x5b, 0x0c, 0x72, 0x86, 0x46, 0x9b, 0x65, 0x91 }, 2141 .b_public = (u8[32]){ 0xea, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2142 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2143 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2144 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }, 2145 .expected_ss = (u8[32]){ 0x60, 0x2f, 0xf4, 0x07, 0x89, 0xb5, 0x4b, 0x41, 2146 0x80, 0x59, 0x15, 0xfe, 0x2a, 0x62, 0x21, 0xf0, 2147 0x7a, 0x50, 0xff, 0xc2, 0xc3, 0xfc, 0x94, 0xcf, 2148 0x61, 0xf1, 0x3d, 0x79, 0x04, 0xe8, 0x8e, 0x0e }, 2149 .secret_size = 32, 2150 .b_public_size = 32, 2151 .expected_ss_size = 32, 2152 2153 }, 2154 /* wycheproof - public key >= p */ 2155 { 2156 .secret = (u8[32]){ 0x80, 0x46, 0x67, 0x7c, 0x28, 0xfd, 0x82, 0xc9, 2157 0xa1, 0xbd, 0xb7, 0x1a, 0x1a, 0x1a, 0x34, 0xfa, 2158 0xba, 0x12, 0x25, 0xe2, 0x50, 0x7f, 0xe3, 0xf5, 2159 0x4d, 0x10, 0xbd, 0x5b, 0x0d, 0x86, 0x5f, 0x8e }, 2160 .b_public = (u8[32]){ 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2161 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2162 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2163 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }, 2164 .expected_ss = (u8[32]){ 0xe0, 0x0a, 0xe8, 0xb1, 0x43, 0x47, 0x12, 0x47, 2165 0xba, 0x24, 0xf1, 0x2c, 0x88, 0x55, 0x36, 0xc3, 2166 0xcb, 0x98, 0x1b, 0x58, 0xe1, 0xe5, 0x6b, 0x2b, 2167 0xaf, 0x35, 0xc1, 0x2a, 0xe1, 0xf7, 0x9c, 0x26 }, 2168 .secret_size = 32, 2169 .b_public_size = 32, 2170 .expected_ss_size = 32, 2171 2172 }, 2173 /* wycheproof - public key >= p */ 2174 { 2175 .secret = (u8[32]){ 0x60, 0x2f, 0x7e, 0x2f, 0x68, 0xa8, 0x46, 0xb8, 2176 0x2c, 0xc2, 0x69, 0xb1, 0xd4, 0x8e, 0x93, 0x98, 2177 0x86, 0xae, 0x54, 0xfd, 0x63, 0x6c, 0x1f, 0xe0, 2178 0x74, 0xd7, 0x10, 0x12, 0x7d, 0x47, 0x24, 0x91 }, 2179 .b_public = (u8[32]){ 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2180 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2181 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2182 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }, 2183 .expected_ss = (u8[32]){ 0x98, 0xcb, 0x9b, 0x50, 0xdd, 0x3f, 0xc2, 0xb0, 2184 0xd4, 0xf2, 0xd2, 0xbf, 0x7c, 0x5c, 0xfd, 0xd1, 2185 0x0c, 0x8f, 0xcd, 0x31, 0xfc, 0x40, 0xaf, 0x1a, 2186 0xd4, 0x4f, 0x47, 0xc1, 0x31, 0x37, 0x63, 0x62 }, 2187 .secret_size = 32, 2188 .b_public_size = 32, 2189 .expected_ss_size = 32, 2190 2191 }, 2192 /* wycheproof - public key >= p */ 2193 { 2194 .secret = (u8[32]){ 0x60, 0x88, 0x7b, 0x3d, 0xc7, 0x24, 0x43, 0x02, 2195 0x6e, 0xbe, 0xdb, 0xbb, 0xb7, 0x06, 0x65, 0xf4, 2196 0x2b, 0x87, 0xad, 0xd1, 0x44, 0x0e, 0x77, 0x68, 2197 0xfb, 0xd7, 0xe8, 0xe2, 0xce, 0x5f, 0x63, 0x9d }, 2198 .b_public = (u8[32]){ 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2199 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2200 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2201 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }, 2202 .expected_ss = (u8[32]){ 0x38, 0xd6, 0x30, 0x4c, 0x4a, 0x7e, 0x6d, 0x9f, 2203 0x79, 0x59, 0x33, 0x4f, 0xb5, 0x24, 0x5b, 0xd2, 2204 0xc7, 0x54, 0x52, 0x5d, 0x4c, 0x91, 0xdb, 0x95, 2205 0x02, 0x06, 0x92, 0x62, 0x34, 0xc1, 0xf6, 0x33 }, 2206 .secret_size = 32, 2207 .b_public_size = 32, 2208 .expected_ss_size = 32, 2209 2210 }, 2211 /* wycheproof - public key >= p */ 2212 { 2213 .secret = (u8[32]){ 0x78, 0xd3, 0x1d, 0xfa, 0x85, 0x44, 0x97, 0xd7, 2214 0x2d, 0x8d, 0xef, 0x8a, 0x1b, 0x7f, 0xb0, 0x06, 2215 0xce, 0xc2, 0xd8, 0xc4, 0x92, 0x46, 0x47, 0xc9, 2216 0x38, 0x14, 0xae, 0x56, 0xfa, 0xed, 0xa4, 0x95 }, 2217 .b_public = (u8[32]){ 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2218 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2219 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2220 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }, 2221 .expected_ss = (u8[32]){ 0x78, 0x6c, 0xd5, 0x49, 0x96, 0xf0, 0x14, 0xa5, 2222 0xa0, 0x31, 0xec, 0x14, 0xdb, 0x81, 0x2e, 0xd0, 2223 0x83, 0x55, 0x06, 0x1f, 0xdb, 0x5d, 0xe6, 0x80, 2224 0xa8, 0x00, 0xac, 0x52, 0x1f, 0x31, 0x8e, 0x23 }, 2225 .secret_size = 32, 2226 .b_public_size = 32, 2227 .expected_ss_size = 32, 2228 2229 }, 2230 /* wycheproof - public key >= p */ 2231 { 2232 .secret = (u8[32]){ 0xc0, 0x4c, 0x5b, 0xae, 0xfa, 0x83, 0x02, 0xdd, 2233 0xde, 0xd6, 0xa4, 0xbb, 0x95, 0x77, 0x61, 0xb4, 2234 0xeb, 0x97, 0xae, 0xfa, 0x4f, 0xc3, 0xb8, 0x04, 2235 0x30, 0x85, 0xf9, 0x6a, 0x56, 0x59, 0xb3, 0xa5 }, 2236 .b_public = (u8[32]){ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2237 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2238 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2239 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }, 2240 .expected_ss = (u8[32]){ 0x29, 0xae, 0x8b, 0xc7, 0x3e, 0x9b, 0x10, 0xa0, 2241 0x8b, 0x4f, 0x68, 0x1c, 0x43, 0xc3, 0xe0, 0xac, 2242 0x1a, 0x17, 0x1d, 0x31, 0xb3, 0x8f, 0x1a, 0x48, 2243 0xef, 0xba, 0x29, 0xae, 0x63, 0x9e, 0xa1, 0x34 }, 2244 .secret_size = 32, 2245 .b_public_size = 32, 2246 .expected_ss_size = 32, 2247 2248 }, 2249 /* wycheproof - RFC 7748 */ 2250 { 2251 .secret = (u8[32]){ 0xa0, 0x46, 0xe3, 0x6b, 0xf0, 0x52, 0x7c, 0x9d, 2252 0x3b, 0x16, 0x15, 0x4b, 0x82, 0x46, 0x5e, 0xdd, 2253 0x62, 0x14, 0x4c, 0x0a, 0xc1, 0xfc, 0x5a, 0x18, 2254 0x50, 0x6a, 0x22, 0x44, 0xba, 0x44, 0x9a, 0x44 }, 2255 .b_public = (u8[32]){ 0xe6, 0xdb, 0x68, 0x67, 0x58, 0x30, 0x30, 0xdb, 2256 0x35, 0x94, 0xc1, 0xa4, 0x24, 0xb1, 0x5f, 0x7c, 2257 0x72, 0x66, 0x24, 0xec, 0x26, 0xb3, 0x35, 0x3b, 2258 0x10, 0xa9, 0x03, 0xa6, 0xd0, 0xab, 0x1c, 0x4c }, 2259 .expected_ss = (u8[32]){ 0xc3, 0xda, 0x55, 0x37, 0x9d, 0xe9, 0xc6, 0x90, 2260 0x8e, 0x94, 0xea, 0x4d, 0xf2, 0x8d, 0x08, 0x4f, 2261 0x32, 0xec, 0xcf, 0x03, 0x49, 0x1c, 0x71, 0xf7, 2262 0x54, 0xb4, 0x07, 0x55, 0x77, 0xa2, 0x85, 0x52 }, 2263 .secret_size = 32, 2264 .b_public_size = 32, 2265 .expected_ss_size = 32, 2266 2267 }, 2268 /* wycheproof - RFC 7748 */ 2269 { 2270 .secret = (u8[32]){ 0x48, 0x66, 0xe9, 0xd4, 0xd1, 0xb4, 0x67, 0x3c, 2271 0x5a, 0xd2, 0x26, 0x91, 0x95, 0x7d, 0x6a, 0xf5, 2272 0xc1, 0x1b, 0x64, 0x21, 0xe0, 0xea, 0x01, 0xd4, 2273 0x2c, 0xa4, 0x16, 0x9e, 0x79, 0x18, 0xba, 0x4d }, 2274 .b_public = (u8[32]){ 0xe5, 0x21, 0x0f, 0x12, 0x78, 0x68, 0x11, 0xd3, 2275 0xf4, 0xb7, 0x95, 0x9d, 0x05, 0x38, 0xae, 0x2c, 2276 0x31, 0xdb, 0xe7, 0x10, 0x6f, 0xc0, 0x3c, 0x3e, 2277 0xfc, 0x4c, 0xd5, 0x49, 0xc7, 0x15, 0xa4, 0x13 }, 2278 .expected_ss = (u8[32]){ 0x95, 0xcb, 0xde, 0x94, 0x76, 0xe8, 0x90, 0x7d, 2279 0x7a, 0xad, 0xe4, 0x5c, 0xb4, 0xb8, 0x73, 0xf8, 2280 0x8b, 0x59, 0x5a, 0x68, 0x79, 0x9f, 0xa1, 0x52, 2281 0xe6, 0xf8, 0xf7, 0x64, 0x7a, 0xac, 0x79, 0x57 }, 2282 .secret_size = 32, 2283 .b_public_size = 32, 2284 .expected_ss_size = 32, 2285 2286 }, 2287 /* wycheproof - edge case for shared secret */ 2288 { 2289 .secret = (u8[32]){ 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4, 2290 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3, 2291 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc, 2292 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 }, 2293 .b_public = (u8[32]){ 0x0a, 0xb4, 0xe7, 0x63, 0x80, 0xd8, 0x4d, 0xde, 2294 0x4f, 0x68, 0x33, 0xc5, 0x8f, 0x2a, 0x9f, 0xb8, 2295 0xf8, 0x3b, 0xb0, 0x16, 0x9b, 0x17, 0x2b, 0xe4, 2296 0xb6, 0xe0, 0x59, 0x28, 0x87, 0x74, 0x1a, 0x36 }, 2297 .expected_ss = (u8[32]){ 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 2298 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 2299 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 2300 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }, 2301 .secret_size = 32, 2302 .b_public_size = 32, 2303 .expected_ss_size = 32, 2304 2305 }, 2306 /* wycheproof - edge case for shared secret */ 2307 { 2308 .secret = (u8[32]){ 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4, 2309 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3, 2310 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc, 2311 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 }, 2312 .b_public = (u8[32]){ 0x89, 0xe1, 0x0d, 0x57, 0x01, 0xb4, 0x33, 0x7d, 2313 0x2d, 0x03, 0x21, 0x81, 0x53, 0x8b, 0x10, 0x64, 2314 0xbd, 0x40, 0x84, 0x40, 0x1c, 0xec, 0xa1, 0xfd, 2315 0x12, 0x66, 0x3a, 0x19, 0x59, 0x38, 0x80, 0x00 }, 2316 .expected_ss = (u8[32]){ 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 2317 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 2318 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 2319 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }, 2320 .secret_size = 32, 2321 .b_public_size = 32, 2322 .expected_ss_size = 32, 2323 2324 }, 2325 /* wycheproof - edge case for shared secret */ 2326 { 2327 .secret = (u8[32]){ 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4, 2328 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3, 2329 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc, 2330 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 }, 2331 .b_public = (u8[32]){ 0x2b, 0x55, 0xd3, 0xaa, 0x4a, 0x8f, 0x80, 0xc8, 2332 0xc0, 0xb2, 0xae, 0x5f, 0x93, 0x3e, 0x85, 0xaf, 2333 0x49, 0xbe, 0xac, 0x36, 0xc2, 0xfa, 0x73, 0x94, 2334 0xba, 0xb7, 0x6c, 0x89, 0x33, 0xf8, 0xf8, 0x1d }, 2335 .expected_ss = (u8[32]){ 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 2336 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 2337 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 2338 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }, 2339 .secret_size = 32, 2340 .b_public_size = 32, 2341 .expected_ss_size = 32, 2342 2343 }, 2344 /* wycheproof - edge case for shared secret */ 2345 { 2346 .secret = (u8[32]){ 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4, 2347 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3, 2348 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc, 2349 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 }, 2350 .b_public = (u8[32]){ 0x63, 0xe5, 0xb1, 0xfe, 0x96, 0x01, 0xfe, 0x84, 2351 0x38, 0x5d, 0x88, 0x66, 0xb0, 0x42, 0x12, 0x62, 2352 0xf7, 0x8f, 0xbf, 0xa5, 0xaf, 0xf9, 0x58, 0x5e, 2353 0x62, 0x66, 0x79, 0xb1, 0x85, 0x47, 0xd9, 0x59 }, 2354 .expected_ss = (u8[32]){ 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2355 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2356 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2357 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f }, 2358 .secret_size = 32, 2359 .b_public_size = 32, 2360 .expected_ss_size = 32, 2361 2362 }, 2363 /* wycheproof - edge case for shared secret */ 2364 { 2365 .secret = (u8[32]){ 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4, 2366 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3, 2367 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc, 2368 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 }, 2369 .b_public = (u8[32]){ 0xe4, 0x28, 0xf3, 0xda, 0xc1, 0x78, 0x09, 0xf8, 2370 0x27, 0xa5, 0x22, 0xce, 0x32, 0x35, 0x50, 0x58, 2371 0xd0, 0x73, 0x69, 0x36, 0x4a, 0xa7, 0x89, 0x02, 2372 0xee, 0x10, 0x13, 0x9b, 0x9f, 0x9d, 0xd6, 0x53 }, 2373 .expected_ss = (u8[32]){ 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2374 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2375 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2376 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f }, 2377 .secret_size = 32, 2378 .b_public_size = 32, 2379 .expected_ss_size = 32, 2380 2381 }, 2382 /* wycheproof - edge case for shared secret */ 2383 { 2384 .secret = (u8[32]){ 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4, 2385 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3, 2386 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc, 2387 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 }, 2388 .b_public = (u8[32]){ 0xb3, 0xb5, 0x0e, 0x3e, 0xd3, 0xa4, 0x07, 0xb9, 2389 0x5d, 0xe9, 0x42, 0xef, 0x74, 0x57, 0x5b, 0x5a, 2390 0xb8, 0xa1, 0x0c, 0x09, 0xee, 0x10, 0x35, 0x44, 2391 0xd6, 0x0b, 0xdf, 0xed, 0x81, 0x38, 0xab, 0x2b }, 2392 .expected_ss = (u8[32]){ 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2393 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2394 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2395 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f }, 2396 .secret_size = 32, 2397 .b_public_size = 32, 2398 .expected_ss_size = 32, 2399 2400 }, 2401 /* wycheproof - edge case for shared secret */ 2402 { 2403 .secret = (u8[32]){ 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4, 2404 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3, 2405 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc, 2406 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 }, 2407 .b_public = (u8[32]){ 0x21, 0x3f, 0xff, 0xe9, 0x3d, 0x5e, 0xa8, 0xcd, 2408 0x24, 0x2e, 0x46, 0x28, 0x44, 0x02, 0x99, 0x22, 2409 0xc4, 0x3c, 0x77, 0xc9, 0xe3, 0xe4, 0x2f, 0x56, 2410 0x2f, 0x48, 0x5d, 0x24, 0xc5, 0x01, 0xa2, 0x0b }, 2411 .expected_ss = (u8[32]){ 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2412 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2413 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2414 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f }, 2415 .secret_size = 32, 2416 .b_public_size = 32, 2417 .expected_ss_size = 32, 2418 2419 }, 2420 /* wycheproof - edge case for shared secret */ 2421 { 2422 .secret = (u8[32]){ 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4, 2423 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3, 2424 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc, 2425 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 }, 2426 .b_public = (u8[32]){ 0x91, 0xb2, 0x32, 0xa1, 0x78, 0xb3, 0xcd, 0x53, 2427 0x09, 0x32, 0x44, 0x1e, 0x61, 0x39, 0x41, 0x8f, 2428 0x72, 0x17, 0x22, 0x92, 0xf1, 0xda, 0x4c, 0x18, 2429 0x34, 0xfc, 0x5e, 0xbf, 0xef, 0xb5, 0x1e, 0x3f }, 2430 .expected_ss = (u8[32]){ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2431 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2432 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2433 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x03 }, 2434 .secret_size = 32, 2435 .b_public_size = 32, 2436 .expected_ss_size = 32, 2437 2438 }, 2439 /* wycheproof - edge case for shared secret */ 2440 { 2441 .secret = (u8[32]){ 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4, 2442 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3, 2443 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc, 2444 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 }, 2445 .b_public = (u8[32]){ 0x04, 0x5c, 0x6e, 0x11, 0xc5, 0xd3, 0x32, 0x55, 2446 0x6c, 0x78, 0x22, 0xfe, 0x94, 0xeb, 0xf8, 0x9b, 2447 0x56, 0xa3, 0x87, 0x8d, 0xc2, 0x7c, 0xa0, 0x79, 2448 0x10, 0x30, 0x58, 0x84, 0x9f, 0xab, 0xcb, 0x4f }, 2449 .expected_ss = (u8[32]){ 0xe5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2450 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2451 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2452 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f }, 2453 .secret_size = 32, 2454 .b_public_size = 32, 2455 .expected_ss_size = 32, 2456 2457 }, 2458 /* wycheproof - edge case for shared secret */ 2459 { 2460 .secret = (u8[32]){ 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4, 2461 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3, 2462 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc, 2463 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 }, 2464 .b_public = (u8[32]){ 0x1c, 0xa2, 0x19, 0x0b, 0x71, 0x16, 0x35, 0x39, 2465 0x06, 0x3c, 0x35, 0x77, 0x3b, 0xda, 0x0c, 0x9c, 2466 0x92, 0x8e, 0x91, 0x36, 0xf0, 0x62, 0x0a, 0xeb, 2467 0x09, 0x3f, 0x09, 0x91, 0x97, 0xb7, 0xf7, 0x4e }, 2468 .expected_ss = (u8[32]){ 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2469 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2470 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2471 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f }, 2472 .secret_size = 32, 2473 .b_public_size = 32, 2474 .expected_ss_size = 32, 2475 2476 }, 2477 /* wycheproof - edge case for shared secret */ 2478 { 2479 .secret = (u8[32]){ 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4, 2480 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3, 2481 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc, 2482 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 }, 2483 .b_public = (u8[32]){ 0xf7, 0x6e, 0x90, 0x10, 0xac, 0x33, 0xc5, 0x04, 2484 0x3b, 0x2d, 0x3b, 0x76, 0xa8, 0x42, 0x17, 0x10, 2485 0x00, 0xc4, 0x91, 0x62, 0x22, 0xe9, 0xe8, 0x58, 2486 0x97, 0xa0, 0xae, 0xc7, 0xf6, 0x35, 0x0b, 0x3c }, 2487 .expected_ss = (u8[32]){ 0xdd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2488 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2489 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2490 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f }, 2491 .secret_size = 32, 2492 .b_public_size = 32, 2493 .expected_ss_size = 32, 2494 2495 }, 2496 /* wycheproof - edge case for shared secret */ 2497 { 2498 .secret = (u8[32]){ 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4, 2499 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3, 2500 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc, 2501 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 }, 2502 .b_public = (u8[32]){ 0xbb, 0x72, 0x68, 0x8d, 0x8f, 0x8a, 0xa7, 0xa3, 2503 0x9c, 0xd6, 0x06, 0x0c, 0xd5, 0xc8, 0x09, 0x3c, 2504 0xde, 0xc6, 0xfe, 0x34, 0x19, 0x37, 0xc3, 0x88, 2505 0x6a, 0x99, 0x34, 0x6c, 0xd0, 0x7f, 0xaa, 0x55 }, 2506 .expected_ss = (u8[32]){ 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2507 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2508 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2509 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f }, 2510 .secret_size = 32, 2511 .b_public_size = 32, 2512 .expected_ss_size = 32, 2513 2514 }, 2515 /* wycheproof - edge case for shared secret */ 2516 { 2517 .secret = (u8[32]){ 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4, 2518 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3, 2519 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc, 2520 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 }, 2521 .b_public = (u8[32]){ 0x88, 0xfd, 0xde, 0xa1, 0x93, 0x39, 0x1c, 0x6a, 2522 0x59, 0x33, 0xef, 0x9b, 0x71, 0x90, 0x15, 0x49, 2523 0x44, 0x72, 0x05, 0xaa, 0xe9, 0xda, 0x92, 0x8a, 2524 0x6b, 0x91, 0xa3, 0x52, 0xba, 0x10, 0xf4, 0x1f }, 2525 .expected_ss = (u8[32]){ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 2526 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 2527 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 2528 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02 }, 2529 .secret_size = 32, 2530 .b_public_size = 32, 2531 .expected_ss_size = 32, 2532 2533 }, 2534 /* wycheproof - edge case for shared secret */ 2535 { 2536 .secret = (u8[32]){ 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4, 2537 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3, 2538 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc, 2539 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 }, 2540 .b_public = (u8[32]){ 0x30, 0x3b, 0x39, 0x2f, 0x15, 0x31, 0x16, 0xca, 2541 0xd9, 0xcc, 0x68, 0x2a, 0x00, 0xcc, 0xc4, 0x4c, 2542 0x95, 0xff, 0x0d, 0x3b, 0xbe, 0x56, 0x8b, 0xeb, 2543 0x6c, 0x4e, 0x73, 0x9b, 0xaf, 0xdc, 0x2c, 0x68 }, 2544 .expected_ss = (u8[32]){ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 2545 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 2546 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 2547 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00 }, 2548 .secret_size = 32, 2549 .b_public_size = 32, 2550 .expected_ss_size = 32, 2551 2552 }, 2553 /* wycheproof - checking for overflow */ 2554 { 2555 .secret = (u8[32]){ 0xc8, 0x17, 0x24, 0x70, 0x40, 0x00, 0xb2, 0x6d, 2556 0x31, 0x70, 0x3c, 0xc9, 0x7e, 0x3a, 0x37, 0x8d, 2557 0x56, 0xfa, 0xd8, 0x21, 0x93, 0x61, 0xc8, 0x8c, 2558 0xca, 0x8b, 0xd7, 0xc5, 0x71, 0x9b, 0x12, 0xb2 }, 2559 .b_public = (u8[32]){ 0xfd, 0x30, 0x0a, 0xeb, 0x40, 0xe1, 0xfa, 0x58, 2560 0x25, 0x18, 0x41, 0x2b, 0x49, 0xb2, 0x08, 0xa7, 2561 0x84, 0x2b, 0x1e, 0x1f, 0x05, 0x6a, 0x04, 0x01, 2562 0x78, 0xea, 0x41, 0x41, 0x53, 0x4f, 0x65, 0x2d }, 2563 .expected_ss = (u8[32]){ 0xb7, 0x34, 0x10, 0x5d, 0xc2, 0x57, 0x58, 0x5d, 2564 0x73, 0xb5, 0x66, 0xcc, 0xb7, 0x6f, 0x06, 0x27, 2565 0x95, 0xcc, 0xbe, 0xc8, 0x91, 0x28, 0xe5, 0x2b, 2566 0x02, 0xf3, 0xe5, 0x96, 0x39, 0xf1, 0x3c, 0x46 }, 2567 .secret_size = 32, 2568 .b_public_size = 32, 2569 .expected_ss_size = 32, 2570 2571 }, 2572 /* wycheproof - checking for overflow */ 2573 { 2574 .secret = (u8[32]){ 0xc8, 0x17, 0x24, 0x70, 0x40, 0x00, 0xb2, 0x6d, 2575 0x31, 0x70, 0x3c, 0xc9, 0x7e, 0x3a, 0x37, 0x8d, 2576 0x56, 0xfa, 0xd8, 0x21, 0x93, 0x61, 0xc8, 0x8c, 2577 0xca, 0x8b, 0xd7, 0xc5, 0x71, 0x9b, 0x12, 0xb2 }, 2578 .b_public = (u8[32]){ 0xc8, 0xef, 0x79, 0xb5, 0x14, 0xd7, 0x68, 0x26, 2579 0x77, 0xbc, 0x79, 0x31, 0xe0, 0x6e, 0xe5, 0xc2, 2580 0x7c, 0x9b, 0x39, 0x2b, 0x4a, 0xe9, 0x48, 0x44, 2581 0x73, 0xf5, 0x54, 0xe6, 0x67, 0x8e, 0xcc, 0x2e }, 2582 .expected_ss = (u8[32]){ 0x64, 0x7a, 0x46, 0xb6, 0xfc, 0x3f, 0x40, 0xd6, 2583 0x21, 0x41, 0xee, 0x3c, 0xee, 0x70, 0x6b, 0x4d, 2584 0x7a, 0x92, 0x71, 0x59, 0x3a, 0x7b, 0x14, 0x3e, 2585 0x8e, 0x2e, 0x22, 0x79, 0x88, 0x3e, 0x45, 0x50 }, 2586 .secret_size = 32, 2587 .b_public_size = 32, 2588 .expected_ss_size = 32, 2589 2590 }, 2591 /* wycheproof - checking for overflow */ 2592 { 2593 .secret = (u8[32]){ 0xc8, 0x17, 0x24, 0x70, 0x40, 0x00, 0xb2, 0x6d, 2594 0x31, 0x70, 0x3c, 0xc9, 0x7e, 0x3a, 0x37, 0x8d, 2595 0x56, 0xfa, 0xd8, 0x21, 0x93, 0x61, 0xc8, 0x8c, 2596 0xca, 0x8b, 0xd7, 0xc5, 0x71, 0x9b, 0x12, 0xb2 }, 2597 .b_public = (u8[32]){ 0x64, 0xae, 0xac, 0x25, 0x04, 0x14, 0x48, 0x61, 2598 0x53, 0x2b, 0x7b, 0xbc, 0xb6, 0xc8, 0x7d, 0x67, 2599 0xdd, 0x4c, 0x1f, 0x07, 0xeb, 0xc2, 0xe0, 0x6e, 2600 0xff, 0xb9, 0x5a, 0xec, 0xc6, 0x17, 0x0b, 0x2c }, 2601 .expected_ss = (u8[32]){ 0x4f, 0xf0, 0x3d, 0x5f, 0xb4, 0x3c, 0xd8, 0x65, 2602 0x7a, 0x3c, 0xf3, 0x7c, 0x13, 0x8c, 0xad, 0xce, 2603 0xcc, 0xe5, 0x09, 0xe4, 0xeb, 0xa0, 0x89, 0xd0, 2604 0xef, 0x40, 0xb4, 0xe4, 0xfb, 0x94, 0x61, 0x55 }, 2605 .secret_size = 32, 2606 .b_public_size = 32, 2607 .expected_ss_size = 32, 2608 2609 }, 2610 /* wycheproof - checking for overflow */ 2611 { 2612 .secret = (u8[32]){ 0xc8, 0x17, 0x24, 0x70, 0x40, 0x00, 0xb2, 0x6d, 2613 0x31, 0x70, 0x3c, 0xc9, 0x7e, 0x3a, 0x37, 0x8d, 2614 0x56, 0xfa, 0xd8, 0x21, 0x93, 0x61, 0xc8, 0x8c, 2615 0xca, 0x8b, 0xd7, 0xc5, 0x71, 0x9b, 0x12, 0xb2 }, 2616 .b_public = (u8[32]){ 0xbf, 0x68, 0xe3, 0x5e, 0x9b, 0xdb, 0x7e, 0xee, 2617 0x1b, 0x50, 0x57, 0x02, 0x21, 0x86, 0x0f, 0x5d, 2618 0xcd, 0xad, 0x8a, 0xcb, 0xab, 0x03, 0x1b, 0x14, 2619 0x97, 0x4c, 0xc4, 0x90, 0x13, 0xc4, 0x98, 0x31 }, 2620 .expected_ss = (u8[32]){ 0x21, 0xce, 0xe5, 0x2e, 0xfd, 0xbc, 0x81, 0x2e, 2621 0x1d, 0x02, 0x1a, 0x4a, 0xf1, 0xe1, 0xd8, 0xbc, 2622 0x4d, 0xb3, 0xc4, 0x00, 0xe4, 0xd2, 0xa2, 0xc5, 2623 0x6a, 0x39, 0x26, 0xdb, 0x4d, 0x99, 0xc6, 0x5b }, 2624 .secret_size = 32, 2625 .b_public_size = 32, 2626 .expected_ss_size = 32, 2627 2628 }, 2629 /* wycheproof - checking for overflow */ 2630 { 2631 .secret = (u8[32]){ 0xc8, 0x17, 0x24, 0x70, 0x40, 0x00, 0xb2, 0x6d, 2632 0x31, 0x70, 0x3c, 0xc9, 0x7e, 0x3a, 0x37, 0x8d, 2633 0x56, 0xfa, 0xd8, 0x21, 0x93, 0x61, 0xc8, 0x8c, 2634 0xca, 0x8b, 0xd7, 0xc5, 0x71, 0x9b, 0x12, 0xb2 }, 2635 .b_public = (u8[32]){ 0x53, 0x47, 0xc4, 0x91, 0x33, 0x1a, 0x64, 0xb4, 2636 0x3d, 0xdc, 0x68, 0x30, 0x34, 0xe6, 0x77, 0xf5, 2637 0x3d, 0xc3, 0x2b, 0x52, 0xa5, 0x2a, 0x57, 0x7c, 2638 0x15, 0xa8, 0x3b, 0xf2, 0x98, 0xe9, 0x9f, 0x19 }, 2639 .expected_ss = (u8[32]){ 0x18, 0xcb, 0x89, 0xe4, 0xe2, 0x0c, 0x0c, 0x2b, 2640 0xd3, 0x24, 0x30, 0x52, 0x45, 0x26, 0x6c, 0x93, 2641 0x27, 0x69, 0x0b, 0xbe, 0x79, 0xac, 0xb8, 0x8f, 2642 0x5b, 0x8f, 0xb3, 0xf7, 0x4e, 0xca, 0x3e, 0x52 }, 2643 .secret_size = 32, 2644 .b_public_size = 32, 2645 .expected_ss_size = 32, 2646 2647 }, 2648 /* wycheproof - private key == -1 (mod order) */ 2649 { 2650 .secret = (u8[32]){ 0xa0, 0x23, 0xcd, 0xd0, 0x83, 0xef, 0x5b, 0xb8, 2651 0x2f, 0x10, 0xd6, 0x2e, 0x59, 0xe1, 0x5a, 0x68, 2652 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 2653 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50 }, 2654 .b_public = (u8[32]){ 0x25, 0x8e, 0x04, 0x52, 0x3b, 0x8d, 0x25, 0x3e, 2655 0xe6, 0x57, 0x19, 0xfc, 0x69, 0x06, 0xc6, 0x57, 2656 0x19, 0x2d, 0x80, 0x71, 0x7e, 0xdc, 0x82, 0x8f, 2657 0xa0, 0xaf, 0x21, 0x68, 0x6e, 0x2f, 0xaa, 0x75 }, 2658 .expected_ss = (u8[32]){ 0x25, 0x8e, 0x04, 0x52, 0x3b, 0x8d, 0x25, 0x3e, 2659 0xe6, 0x57, 0x19, 0xfc, 0x69, 0x06, 0xc6, 0x57, 2660 0x19, 0x2d, 0x80, 0x71, 0x7e, 0xdc, 0x82, 0x8f, 2661 0xa0, 0xaf, 0x21, 0x68, 0x6e, 0x2f, 0xaa, 0x75 }, 2662 .secret_size = 32, 2663 .b_public_size = 32, 2664 .expected_ss_size = 32, 2665 2666 }, 2667 /* wycheproof - private key == 1 (mod order) on twist */ 2668 { 2669 .secret = (u8[32]){ 0x58, 0x08, 0x3d, 0xd2, 0x61, 0xad, 0x91, 0xef, 2670 0xf9, 0x52, 0x32, 0x2e, 0xc8, 0x24, 0xc6, 0x82, 2671 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 2672 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5f }, 2673 .b_public = (u8[32]){ 0x2e, 0xae, 0x5e, 0xc3, 0xdd, 0x49, 0x4e, 0x9f, 2674 0x2d, 0x37, 0xd2, 0x58, 0xf8, 0x73, 0xa8, 0xe6, 2675 0xe9, 0xd0, 0xdb, 0xd1, 0xe3, 0x83, 0xef, 0x64, 2676 0xd9, 0x8b, 0xb9, 0x1b, 0x3e, 0x0b, 0xe0, 0x35 }, 2677 .expected_ss = (u8[32]){ 0x2e, 0xae, 0x5e, 0xc3, 0xdd, 0x49, 0x4e, 0x9f, 2678 0x2d, 0x37, 0xd2, 0x58, 0xf8, 0x73, 0xa8, 0xe6, 2679 0xe9, 0xd0, 0xdb, 0xd1, 0xe3, 0x83, 0xef, 0x64, 2680 0xd9, 0x8b, 0xb9, 0x1b, 0x3e, 0x0b, 0xe0, 0x35 }, 2681 .secret_size = 32, 2682 .b_public_size = 32, 2683 .expected_ss_size = 32, 2684 2685 } 2686 }; 2687 2688 static const struct kpp_testvec ecdh_tv_template[] = { 2689 { 2690 #ifndef CONFIG_CRYPTO_FIPS 2691 .secret = 2692 #ifdef __LITTLE_ENDIAN 2693 "\x02\x00" /* type */ 2694 "\x20\x00" /* len */ 2695 "\x01\x00" /* curve_id */ 2696 "\x18\x00" /* key_size */ 2697 #else 2698 "\x00\x02" /* type */ 2699 "\x00\x20" /* len */ 2700 "\x00\x01" /* curve_id */ 2701 "\x00\x18" /* key_size */ 2702 #endif 2703 "\xb5\x05\xb1\x71\x1e\xbf\x8c\xda" 2704 "\x4e\x19\x1e\x62\x1f\x23\x23\x31" 2705 "\x36\x1e\xd3\x84\x2f\xcc\x21\x72", 2706 .b_public = 2707 "\xc3\xba\x67\x4b\x71\xec\xd0\x76" 2708 "\x7a\x99\x75\x64\x36\x13\x9a\x94" 2709 "\x5d\x8b\xdc\x60\x90\x91\xfd\x3f" 2710 "\xb0\x1f\x8a\x0a\x68\xc6\x88\x6e" 2711 "\x83\x87\xdd\x67\x09\xf8\x8d\x96" 2712 "\x07\xd6\xbd\x1c\xe6\x8d\x9d\x67", 2713 .expected_a_public = 2714 "\x1a\x04\xdb\xa5\xe1\xdd\x4e\x79" 2715 "\xa3\xe6\xef\x0e\x5c\x80\x49\x85" 2716 "\xfa\x78\xb4\xef\x49\xbd\x4c\x7c" 2717 "\x22\x90\x21\x02\xf9\x1b\x81\x5d" 2718 "\x0c\x8a\xa8\x98\xd6\x27\x69\x88" 2719 "\x5e\xbc\x94\xd8\x15\x9e\x21\xce", 2720 .expected_ss = 2721 "\xf4\x57\xcc\x4f\x1f\x4e\x31\xcc" 2722 "\xe3\x40\x60\xc8\x06\x93\xc6\x2e" 2723 "\x99\x80\x81\x28\xaf\xc5\x51\x74", 2724 .secret_size = 32, 2725 .b_public_size = 48, 2726 .expected_a_public_size = 48, 2727 .expected_ss_size = 24 2728 }, { 2729 #endif 2730 .secret = 2731 #ifdef __LITTLE_ENDIAN 2732 "\x02\x00" /* type */ 2733 "\x28\x00" /* len */ 2734 "\x02\x00" /* curve_id */ 2735 "\x20\x00" /* key_size */ 2736 #else 2737 "\x00\x02" /* type */ 2738 "\x00\x28" /* len */ 2739 "\x00\x02" /* curve_id */ 2740 "\x00\x20" /* key_size */ 2741 #endif 2742 "\x24\xd1\x21\xeb\xe5\xcf\x2d\x83" 2743 "\xf6\x62\x1b\x6e\x43\x84\x3a\xa3" 2744 "\x8b\xe0\x86\xc3\x20\x19\xda\x92" 2745 "\x50\x53\x03\xe1\xc0\xea\xb8\x82", 2746 .expected_a_public = 2747 "\x1a\x7f\xeb\x52\x00\xbd\x3c\x31" 2748 "\x7d\xb6\x70\xc1\x86\xa6\xc7\xc4" 2749 "\x3b\xc5\x5f\x6c\x6f\x58\x3c\xf5" 2750 "\xb6\x63\x82\x77\x33\x24\xa1\x5f" 2751 "\x6a\xca\x43\x6f\xf7\x7e\xff\x02" 2752 "\x37\x08\xcc\x40\x5e\x7a\xfd\x6a" 2753 "\x6a\x02\x6e\x41\x87\x68\x38\x77" 2754 "\xfa\xa9\x44\x43\x2d\xef\x09\xdf", 2755 .expected_ss = 2756 "\xea\x17\x6f\x7e\x6e\x57\x26\x38" 2757 "\x8b\xfb\x41\xeb\xba\xc8\x6d\xa5" 2758 "\xa8\x72\xd1\xff\xc9\x47\x3d\xaa" 2759 "\x58\x43\x9f\x34\x0f\x8c\xf3\xc9", 2760 .b_public = 2761 "\xcc\xb4\xda\x74\xb1\x47\x3f\xea" 2762 "\x6c\x70\x9e\x38\x2d\xc7\xaa\xb7" 2763 "\x29\xb2\x47\x03\x19\xab\xdd\x34" 2764 "\xbd\xa8\x2c\x93\xe1\xa4\x74\xd9" 2765 "\x64\x63\xf7\x70\x20\x2f\xa4\xe6" 2766 "\x9f\x4a\x38\xcc\xc0\x2c\x49\x2f" 2767 "\xb1\x32\xbb\xaf\x22\x61\xda\xcb" 2768 "\x6f\xdb\xa9\xaa\xfc\x77\x81\xf3", 2769 .secret_size = 40, 2770 .b_public_size = 64, 2771 .expected_a_public_size = 64, 2772 .expected_ss_size = 32 2773 }, { 2774 .secret = 2775 #ifdef __LITTLE_ENDIAN 2776 "\x02\x00" /* type */ 2777 "\x08\x00" /* len */ 2778 "\x02\x00" /* curve_id */ 2779 "\x00\x00", /* key_size */ 2780 #else 2781 "\x00\x02" /* type */ 2782 "\x00\x08" /* len */ 2783 "\x00\x02" /* curve_id */ 2784 "\x00\x00", /* key_size */ 2785 #endif 2786 .b_secret = 2787 #ifdef __LITTLE_ENDIAN 2788 "\x02\x00" /* type */ 2789 "\x28\x00" /* len */ 2790 "\x02\x00" /* curve_id */ 2791 "\x20\x00" /* key_size */ 2792 #else 2793 "\x00\x02" /* type */ 2794 "\x00\x28" /* len */ 2795 "\x00\x02" /* curve_id */ 2796 "\x00\x20" /* key_size */ 2797 #endif 2798 "\x24\xd1\x21\xeb\xe5\xcf\x2d\x83" 2799 "\xf6\x62\x1b\x6e\x43\x84\x3a\xa3" 2800 "\x8b\xe0\x86\xc3\x20\x19\xda\x92" 2801 "\x50\x53\x03\xe1\xc0\xea\xb8\x82", 2802 .b_public = 2803 "\x1a\x7f\xeb\x52\x00\xbd\x3c\x31" 2804 "\x7d\xb6\x70\xc1\x86\xa6\xc7\xc4" 2805 "\x3b\xc5\x5f\x6c\x6f\x58\x3c\xf5" 2806 "\xb6\x63\x82\x77\x33\x24\xa1\x5f" 2807 "\x6a\xca\x43\x6f\xf7\x7e\xff\x02" 2808 "\x37\x08\xcc\x40\x5e\x7a\xfd\x6a" 2809 "\x6a\x02\x6e\x41\x87\x68\x38\x77" 2810 "\xfa\xa9\x44\x43\x2d\xef\x09\xdf", 2811 .secret_size = 8, 2812 .b_secret_size = 40, 2813 .b_public_size = 64, 2814 .expected_a_public_size = 64, 2815 .expected_ss_size = 32, 2816 .genkey = true, 2817 } 2818 }; 2819 2820 /* 2821 * MD4 test vectors from RFC1320 2822 */ 2823 static const struct hash_testvec md4_tv_template[] = { 2824 { 2825 .plaintext = "", 2826 .digest = "\x31\xd6\xcf\xe0\xd1\x6a\xe9\x31" 2827 "\xb7\x3c\x59\xd7\xe0\xc0\x89\xc0", 2828 }, { 2829 .plaintext = "a", 2830 .psize = 1, 2831 .digest = "\xbd\xe5\x2c\xb3\x1d\xe3\x3e\x46" 2832 "\x24\x5e\x05\xfb\xdb\xd6\xfb\x24", 2833 }, { 2834 .plaintext = "abc", 2835 .psize = 3, 2836 .digest = "\xa4\x48\x01\x7a\xaf\x21\xd8\x52" 2837 "\x5f\xc1\x0a\xe8\x7a\xa6\x72\x9d", 2838 }, { 2839 .plaintext = "message digest", 2840 .psize = 14, 2841 .digest = "\xd9\x13\x0a\x81\x64\x54\x9f\xe8" 2842 "\x18\x87\x48\x06\xe1\xc7\x01\x4b", 2843 }, { 2844 .plaintext = "abcdefghijklmnopqrstuvwxyz", 2845 .psize = 26, 2846 .digest = "\xd7\x9e\x1c\x30\x8a\xa5\xbb\xcd" 2847 "\xee\xa8\xed\x63\xdf\x41\x2d\xa9", 2848 }, { 2849 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", 2850 .psize = 62, 2851 .digest = "\x04\x3f\x85\x82\xf2\x41\xdb\x35" 2852 "\x1c\xe6\x27\xe1\x53\xe7\xf0\xe4", 2853 }, { 2854 .plaintext = "123456789012345678901234567890123456789012345678901234567890123" 2855 "45678901234567890", 2856 .psize = 80, 2857 .digest = "\xe3\x3b\x4d\xdc\x9c\x38\xf2\x19" 2858 "\x9c\x3e\x7b\x16\x4f\xcc\x05\x36", 2859 }, 2860 }; 2861 2862 static const struct hash_testvec sha3_224_tv_template[] = { 2863 { 2864 .plaintext = "", 2865 .digest = "\x6b\x4e\x03\x42\x36\x67\xdb\xb7" 2866 "\x3b\x6e\x15\x45\x4f\x0e\xb1\xab" 2867 "\xd4\x59\x7f\x9a\x1b\x07\x8e\x3f" 2868 "\x5b\x5a\x6b\xc7", 2869 }, { 2870 .plaintext = "a", 2871 .psize = 1, 2872 .digest = "\x9e\x86\xff\x69\x55\x7c\xa9\x5f" 2873 "\x40\x5f\x08\x12\x69\x68\x5b\x38" 2874 "\xe3\xa8\x19\xb3\x09\xee\x94\x2f" 2875 "\x48\x2b\x6a\x8b", 2876 }, { 2877 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkl" 2878 "jklmklmnlmnomnopnopq", 2879 .psize = 56, 2880 .digest = "\x8a\x24\x10\x8b\x15\x4a\xda\x21" 2881 "\xc9\xfd\x55\x74\x49\x44\x79\xba" 2882 "\x5c\x7e\x7a\xb7\x6e\xf2\x64\xea" 2883 "\xd0\xfc\xce\x33", 2884 }, { 2885 .plaintext = "\x08\x9f\x13\xaa\x41\xd8\x4c\xe3" 2886 "\x7a\x11\x85\x1c\xb3\x27\xbe\x55" 2887 "\xec\x60\xf7\x8e\x02\x99\x30\xc7" 2888 "\x3b\xd2\x69\x00\x74\x0b\xa2\x16" 2889 "\xad\x44\xdb\x4f\xe6\x7d\x14\x88" 2890 "\x1f\xb6\x2a\xc1\x58\xef\x63\xfa" 2891 "\x91\x05\x9c\x33\xca\x3e\xd5\x6c" 2892 "\x03\x77\x0e\xa5\x19\xb0\x47\xde" 2893 "\x52\xe9\x80\x17\x8b\x22\xb9\x2d" 2894 "\xc4\x5b\xf2\x66\xfd\x94\x08\x9f" 2895 "\x36\xcd\x41\xd8\x6f\x06\x7a\x11" 2896 "\xa8\x1c\xb3\x4a\xe1\x55\xec\x83" 2897 "\x1a\x8e\x25\xbc\x30\xc7\x5e\xf5" 2898 "\x69\x00\x97\x0b\xa2\x39\xd0\x44" 2899 "\xdb\x72\x09\x7d\x14\xab\x1f\xb6" 2900 "\x4d\xe4\x58\xef\x86\x1d\x91\x28" 2901 "\xbf\x33\xca\x61\xf8\x6c\x03\x9a" 2902 "\x0e\xa5\x3c\xd3\x47\xde\x75\x0c" 2903 "\x80\x17\xae\x22\xb9\x50\xe7\x5b" 2904 "\xf2\x89\x20\x94\x2b\xc2\x36\xcd" 2905 "\x64\xfb\x6f\x06\x9d\x11\xa8\x3f" 2906 "\xd6\x4a\xe1\x78\x0f\x83\x1a\xb1" 2907 "\x25\xbc\x53\xea\x5e\xf5\x8c\x00" 2908 "\x97\x2e\xc5\x39\xd0\x67\xfe\x72" 2909 "\x09\xa0\x14\xab\x42\xd9\x4d\xe4" 2910 "\x7b\x12\x86\x1d\xb4\x28\xbf\x56" 2911 "\xed\x61\xf8\x8f\x03\x9a\x31\xc8" 2912 "\x3c\xd3\x6a\x01\x75\x0c\xa3\x17" 2913 "\xae\x45\xdc\x50\xe7\x7e\x15\x89" 2914 "\x20\xb7\x2b\xc2\x59\xf0\x64\xfb" 2915 "\x92\x06\x9d\x34\xcb\x3f\xd6\x6d" 2916 "\x04\x78\x0f\xa6\x1a\xb1\x48\xdf" 2917 "\x53\xea\x81\x18\x8c\x23\xba\x2e" 2918 "\xc5\x5c\xf3\x67\xfe\x95\x09\xa0" 2919 "\x37\xce\x42\xd9\x70\x07\x7b\x12" 2920 "\xa9\x1d\xb4\x4b\xe2\x56\xed\x84" 2921 "\x1b\x8f\x26\xbd\x31\xc8\x5f\xf6" 2922 "\x6a\x01\x98\x0c\xa3\x3a\xd1\x45" 2923 "\xdc\x73\x0a\x7e\x15\xac\x20\xb7" 2924 "\x4e\xe5\x59\xf0\x87\x1e\x92\x29" 2925 "\xc0\x34\xcb\x62\xf9\x6d\x04\x9b" 2926 "\x0f\xa6\x3d\xd4\x48\xdf\x76\x0d" 2927 "\x81\x18\xaf\x23\xba\x51\xe8\x5c" 2928 "\xf3\x8a\x21\x95\x2c\xc3\x37\xce" 2929 "\x65\xfc\x70\x07\x9e\x12\xa9\x40" 2930 "\xd7\x4b\xe2\x79\x10\x84\x1b\xb2" 2931 "\x26\xbd\x54\xeb\x5f\xf6\x8d\x01" 2932 "\x98\x2f\xc6\x3a\xd1\x68\xff\x73" 2933 "\x0a\xa1\x15\xac\x43\xda\x4e\xe5" 2934 "\x7c\x13\x87\x1e\xb5\x29\xc0\x57" 2935 "\xee\x62\xf9\x90\x04\x9b\x32\xc9" 2936 "\x3d\xd4\x6b\x02\x76\x0d\xa4\x18" 2937 "\xaf\x46\xdd\x51\xe8\x7f\x16\x8a" 2938 "\x21\xb8\x2c\xc3\x5a\xf1\x65\xfc" 2939 "\x93\x07\x9e\x35\xcc\x40\xd7\x6e" 2940 "\x05\x79\x10\xa7\x1b\xb2\x49\xe0" 2941 "\x54\xeb\x82\x19\x8d\x24\xbb\x2f" 2942 "\xc6\x5d\xf4\x68\xff\x96\x0a\xa1" 2943 "\x38\xcf\x43\xda\x71\x08\x7c\x13" 2944 "\xaa\x1e\xb5\x4c\xe3\x57\xee\x85" 2945 "\x1c\x90\x27\xbe\x32\xc9\x60\xf7" 2946 "\x6b\x02\x99\x0d\xa4\x3b\xd2\x46" 2947 "\xdd\x74\x0b\x7f\x16\xad\x21\xb8" 2948 "\x4f\xe6\x5a\xf1\x88\x1f\x93\x2a" 2949 "\xc1\x35\xcc\x63\xfa\x6e\x05\x9c" 2950 "\x10\xa7\x3e\xd5\x49\xe0\x77\x0e" 2951 "\x82\x19\xb0\x24\xbb\x52\xe9\x5d" 2952 "\xf4\x8b\x22\x96\x2d\xc4\x38\xcf" 2953 "\x66\xfd\x71\x08\x9f\x13\xaa\x41" 2954 "\xd8\x4c\xe3\x7a\x11\x85\x1c\xb3" 2955 "\x27\xbe\x55\xec\x60\xf7\x8e\x02" 2956 "\x99\x30\xc7\x3b\xd2\x69\x00\x74" 2957 "\x0b\xa2\x16\xad\x44\xdb\x4f\xe6" 2958 "\x7d\x14\x88\x1f\xb6\x2a\xc1\x58" 2959 "\xef\x63\xfa\x91\x05\x9c\x33\xca" 2960 "\x3e\xd5\x6c\x03\x77\x0e\xa5\x19" 2961 "\xb0\x47\xde\x52\xe9\x80\x17\x8b" 2962 "\x22\xb9\x2d\xc4\x5b\xf2\x66\xfd" 2963 "\x94\x08\x9f\x36\xcd\x41\xd8\x6f" 2964 "\x06\x7a\x11\xa8\x1c\xb3\x4a\xe1" 2965 "\x55\xec\x83\x1a\x8e\x25\xbc\x30" 2966 "\xc7\x5e\xf5\x69\x00\x97\x0b\xa2" 2967 "\x39\xd0\x44\xdb\x72\x09\x7d\x14" 2968 "\xab\x1f\xb6\x4d\xe4\x58\xef\x86" 2969 "\x1d\x91\x28\xbf\x33\xca\x61\xf8" 2970 "\x6c\x03\x9a\x0e\xa5\x3c\xd3\x47" 2971 "\xde\x75\x0c\x80\x17\xae\x22\xb9" 2972 "\x50\xe7\x5b\xf2\x89\x20\x94\x2b" 2973 "\xc2\x36\xcd\x64\xfb\x6f\x06\x9d" 2974 "\x11\xa8\x3f\xd6\x4a\xe1\x78\x0f" 2975 "\x83\x1a\xb1\x25\xbc\x53\xea\x5e" 2976 "\xf5\x8c\x00\x97\x2e\xc5\x39\xd0" 2977 "\x67\xfe\x72\x09\xa0\x14\xab\x42" 2978 "\xd9\x4d\xe4\x7b\x12\x86\x1d\xb4" 2979 "\x28\xbf\x56\xed\x61\xf8\x8f\x03" 2980 "\x9a\x31\xc8\x3c\xd3\x6a\x01\x75" 2981 "\x0c\xa3\x17\xae\x45\xdc\x50\xe7" 2982 "\x7e\x15\x89\x20\xb7\x2b\xc2\x59" 2983 "\xf0\x64\xfb\x92\x06\x9d\x34\xcb" 2984 "\x3f\xd6\x6d\x04\x78\x0f\xa6\x1a" 2985 "\xb1\x48\xdf\x53\xea\x81\x18\x8c" 2986 "\x23\xba\x2e\xc5\x5c\xf3\x67\xfe" 2987 "\x95\x09\xa0\x37\xce\x42\xd9\x70" 2988 "\x07\x7b\x12\xa9\x1d\xb4\x4b\xe2" 2989 "\x56\xed\x84\x1b\x8f\x26\xbd\x31" 2990 "\xc8\x5f\xf6\x6a\x01\x98\x0c\xa3" 2991 "\x3a\xd1\x45\xdc\x73\x0a\x7e\x15" 2992 "\xac\x20\xb7\x4e\xe5\x59\xf0\x87" 2993 "\x1e\x92\x29\xc0\x34\xcb\x62\xf9" 2994 "\x6d\x04\x9b\x0f\xa6\x3d\xd4\x48" 2995 "\xdf\x76\x0d\x81\x18\xaf\x23\xba" 2996 "\x51\xe8\x5c\xf3\x8a\x21\x95\x2c" 2997 "\xc3\x37\xce\x65\xfc\x70\x07\x9e" 2998 "\x12\xa9\x40\xd7\x4b\xe2\x79\x10" 2999 "\x84\x1b\xb2\x26\xbd\x54\xeb\x5f" 3000 "\xf6\x8d\x01\x98\x2f\xc6\x3a\xd1" 3001 "\x68\xff\x73\x0a\xa1\x15\xac\x43" 3002 "\xda\x4e\xe5\x7c\x13\x87\x1e\xb5" 3003 "\x29\xc0\x57\xee\x62\xf9\x90\x04" 3004 "\x9b\x32\xc9\x3d\xd4\x6b\x02\x76" 3005 "\x0d\xa4\x18\xaf\x46\xdd\x51\xe8" 3006 "\x7f\x16\x8a\x21\xb8\x2c\xc3\x5a" 3007 "\xf1\x65\xfc\x93\x07\x9e\x35\xcc" 3008 "\x40\xd7\x6e\x05\x79\x10\xa7\x1b" 3009 "\xb2\x49\xe0\x54\xeb\x82\x19\x8d" 3010 "\x24\xbb\x2f\xc6\x5d\xf4\x68\xff" 3011 "\x96\x0a\xa1\x38\xcf\x43\xda\x71" 3012 "\x08\x7c\x13\xaa\x1e\xb5\x4c", 3013 .psize = 1023, 3014 .digest = "\x7d\x0f\x2f\xb7\x65\x3b\xa7\x26" 3015 "\xc3\x88\x20\x71\x15\x06\xe8\x2d" 3016 "\xa3\x92\x44\xab\x3e\xe7\xff\x86" 3017 "\xb6\x79\x10\x72", 3018 }, 3019 }; 3020 3021 static const struct hash_testvec sha3_256_tv_template[] = { 3022 { 3023 .plaintext = "", 3024 .digest = "\xa7\xff\xc6\xf8\xbf\x1e\xd7\x66" 3025 "\x51\xc1\x47\x56\xa0\x61\xd6\x62" 3026 "\xf5\x80\xff\x4d\xe4\x3b\x49\xfa" 3027 "\x82\xd8\x0a\x4b\x80\xf8\x43\x4a", 3028 }, { 3029 .plaintext = "a", 3030 .psize = 1, 3031 .digest = "\x80\x08\x4b\xf2\xfb\xa0\x24\x75" 3032 "\x72\x6f\xeb\x2c\xab\x2d\x82\x15" 3033 "\xea\xb1\x4b\xc6\xbd\xd8\xbf\xb2" 3034 "\xc8\x15\x12\x57\x03\x2e\xcd\x8b", 3035 }, { 3036 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkl" 3037 "jklmklmnlmnomnopnopq", 3038 .psize = 56, 3039 .digest = "\x41\xc0\xdb\xa2\xa9\xd6\x24\x08" 3040 "\x49\x10\x03\x76\xa8\x23\x5e\x2c" 3041 "\x82\xe1\xb9\x99\x8a\x99\x9e\x21" 3042 "\xdb\x32\xdd\x97\x49\x6d\x33\x76", 3043 }, { 3044 .plaintext = "\x08\x9f\x13\xaa\x41\xd8\x4c\xe3" 3045 "\x7a\x11\x85\x1c\xb3\x27\xbe\x55" 3046 "\xec\x60\xf7\x8e\x02\x99\x30\xc7" 3047 "\x3b\xd2\x69\x00\x74\x0b\xa2\x16" 3048 "\xad\x44\xdb\x4f\xe6\x7d\x14\x88" 3049 "\x1f\xb6\x2a\xc1\x58\xef\x63\xfa" 3050 "\x91\x05\x9c\x33\xca\x3e\xd5\x6c" 3051 "\x03\x77\x0e\xa5\x19\xb0\x47\xde" 3052 "\x52\xe9\x80\x17\x8b\x22\xb9\x2d" 3053 "\xc4\x5b\xf2\x66\xfd\x94\x08\x9f" 3054 "\x36\xcd\x41\xd8\x6f\x06\x7a\x11" 3055 "\xa8\x1c\xb3\x4a\xe1\x55\xec\x83" 3056 "\x1a\x8e\x25\xbc\x30\xc7\x5e\xf5" 3057 "\x69\x00\x97\x0b\xa2\x39\xd0\x44" 3058 "\xdb\x72\x09\x7d\x14\xab\x1f\xb6" 3059 "\x4d\xe4\x58\xef\x86\x1d\x91\x28" 3060 "\xbf\x33\xca\x61\xf8\x6c\x03\x9a" 3061 "\x0e\xa5\x3c\xd3\x47\xde\x75\x0c" 3062 "\x80\x17\xae\x22\xb9\x50\xe7\x5b" 3063 "\xf2\x89\x20\x94\x2b\xc2\x36\xcd" 3064 "\x64\xfb\x6f\x06\x9d\x11\xa8\x3f" 3065 "\xd6\x4a\xe1\x78\x0f\x83\x1a\xb1" 3066 "\x25\xbc\x53\xea\x5e\xf5\x8c\x00" 3067 "\x97\x2e\xc5\x39\xd0\x67\xfe\x72" 3068 "\x09\xa0\x14\xab\x42\xd9\x4d\xe4" 3069 "\x7b\x12\x86\x1d\xb4\x28\xbf\x56" 3070 "\xed\x61\xf8\x8f\x03\x9a\x31\xc8" 3071 "\x3c\xd3\x6a\x01\x75\x0c\xa3\x17" 3072 "\xae\x45\xdc\x50\xe7\x7e\x15\x89" 3073 "\x20\xb7\x2b\xc2\x59\xf0\x64\xfb" 3074 "\x92\x06\x9d\x34\xcb\x3f\xd6\x6d" 3075 "\x04\x78\x0f\xa6\x1a\xb1\x48\xdf" 3076 "\x53\xea\x81\x18\x8c\x23\xba\x2e" 3077 "\xc5\x5c\xf3\x67\xfe\x95\x09\xa0" 3078 "\x37\xce\x42\xd9\x70\x07\x7b\x12" 3079 "\xa9\x1d\xb4\x4b\xe2\x56\xed\x84" 3080 "\x1b\x8f\x26\xbd\x31\xc8\x5f\xf6" 3081 "\x6a\x01\x98\x0c\xa3\x3a\xd1\x45" 3082 "\xdc\x73\x0a\x7e\x15\xac\x20\xb7" 3083 "\x4e\xe5\x59\xf0\x87\x1e\x92\x29" 3084 "\xc0\x34\xcb\x62\xf9\x6d\x04\x9b" 3085 "\x0f\xa6\x3d\xd4\x48\xdf\x76\x0d" 3086 "\x81\x18\xaf\x23\xba\x51\xe8\x5c" 3087 "\xf3\x8a\x21\x95\x2c\xc3\x37\xce" 3088 "\x65\xfc\x70\x07\x9e\x12\xa9\x40" 3089 "\xd7\x4b\xe2\x79\x10\x84\x1b\xb2" 3090 "\x26\xbd\x54\xeb\x5f\xf6\x8d\x01" 3091 "\x98\x2f\xc6\x3a\xd1\x68\xff\x73" 3092 "\x0a\xa1\x15\xac\x43\xda\x4e\xe5" 3093 "\x7c\x13\x87\x1e\xb5\x29\xc0\x57" 3094 "\xee\x62\xf9\x90\x04\x9b\x32\xc9" 3095 "\x3d\xd4\x6b\x02\x76\x0d\xa4\x18" 3096 "\xaf\x46\xdd\x51\xe8\x7f\x16\x8a" 3097 "\x21\xb8\x2c\xc3\x5a\xf1\x65\xfc" 3098 "\x93\x07\x9e\x35\xcc\x40\xd7\x6e" 3099 "\x05\x79\x10\xa7\x1b\xb2\x49\xe0" 3100 "\x54\xeb\x82\x19\x8d\x24\xbb\x2f" 3101 "\xc6\x5d\xf4\x68\xff\x96\x0a\xa1" 3102 "\x38\xcf\x43\xda\x71\x08\x7c\x13" 3103 "\xaa\x1e\xb5\x4c\xe3\x57\xee\x85" 3104 "\x1c\x90\x27\xbe\x32\xc9\x60\xf7" 3105 "\x6b\x02\x99\x0d\xa4\x3b\xd2\x46" 3106 "\xdd\x74\x0b\x7f\x16\xad\x21\xb8" 3107 "\x4f\xe6\x5a\xf1\x88\x1f\x93\x2a" 3108 "\xc1\x35\xcc\x63\xfa\x6e\x05\x9c" 3109 "\x10\xa7\x3e\xd5\x49\xe0\x77\x0e" 3110 "\x82\x19\xb0\x24\xbb\x52\xe9\x5d" 3111 "\xf4\x8b\x22\x96\x2d\xc4\x38\xcf" 3112 "\x66\xfd\x71\x08\x9f\x13\xaa\x41" 3113 "\xd8\x4c\xe3\x7a\x11\x85\x1c\xb3" 3114 "\x27\xbe\x55\xec\x60\xf7\x8e\x02" 3115 "\x99\x30\xc7\x3b\xd2\x69\x00\x74" 3116 "\x0b\xa2\x16\xad\x44\xdb\x4f\xe6" 3117 "\x7d\x14\x88\x1f\xb6\x2a\xc1\x58" 3118 "\xef\x63\xfa\x91\x05\x9c\x33\xca" 3119 "\x3e\xd5\x6c\x03\x77\x0e\xa5\x19" 3120 "\xb0\x47\xde\x52\xe9\x80\x17\x8b" 3121 "\x22\xb9\x2d\xc4\x5b\xf2\x66\xfd" 3122 "\x94\x08\x9f\x36\xcd\x41\xd8\x6f" 3123 "\x06\x7a\x11\xa8\x1c\xb3\x4a\xe1" 3124 "\x55\xec\x83\x1a\x8e\x25\xbc\x30" 3125 "\xc7\x5e\xf5\x69\x00\x97\x0b\xa2" 3126 "\x39\xd0\x44\xdb\x72\x09\x7d\x14" 3127 "\xab\x1f\xb6\x4d\xe4\x58\xef\x86" 3128 "\x1d\x91\x28\xbf\x33\xca\x61\xf8" 3129 "\x6c\x03\x9a\x0e\xa5\x3c\xd3\x47" 3130 "\xde\x75\x0c\x80\x17\xae\x22\xb9" 3131 "\x50\xe7\x5b\xf2\x89\x20\x94\x2b" 3132 "\xc2\x36\xcd\x64\xfb\x6f\x06\x9d" 3133 "\x11\xa8\x3f\xd6\x4a\xe1\x78\x0f" 3134 "\x83\x1a\xb1\x25\xbc\x53\xea\x5e" 3135 "\xf5\x8c\x00\x97\x2e\xc5\x39\xd0" 3136 "\x67\xfe\x72\x09\xa0\x14\xab\x42" 3137 "\xd9\x4d\xe4\x7b\x12\x86\x1d\xb4" 3138 "\x28\xbf\x56\xed\x61\xf8\x8f\x03" 3139 "\x9a\x31\xc8\x3c\xd3\x6a\x01\x75" 3140 "\x0c\xa3\x17\xae\x45\xdc\x50\xe7" 3141 "\x7e\x15\x89\x20\xb7\x2b\xc2\x59" 3142 "\xf0\x64\xfb\x92\x06\x9d\x34\xcb" 3143 "\x3f\xd6\x6d\x04\x78\x0f\xa6\x1a" 3144 "\xb1\x48\xdf\x53\xea\x81\x18\x8c" 3145 "\x23\xba\x2e\xc5\x5c\xf3\x67\xfe" 3146 "\x95\x09\xa0\x37\xce\x42\xd9\x70" 3147 "\x07\x7b\x12\xa9\x1d\xb4\x4b\xe2" 3148 "\x56\xed\x84\x1b\x8f\x26\xbd\x31" 3149 "\xc8\x5f\xf6\x6a\x01\x98\x0c\xa3" 3150 "\x3a\xd1\x45\xdc\x73\x0a\x7e\x15" 3151 "\xac\x20\xb7\x4e\xe5\x59\xf0\x87" 3152 "\x1e\x92\x29\xc0\x34\xcb\x62\xf9" 3153 "\x6d\x04\x9b\x0f\xa6\x3d\xd4\x48" 3154 "\xdf\x76\x0d\x81\x18\xaf\x23\xba" 3155 "\x51\xe8\x5c\xf3\x8a\x21\x95\x2c" 3156 "\xc3\x37\xce\x65\xfc\x70\x07\x9e" 3157 "\x12\xa9\x40\xd7\x4b\xe2\x79\x10" 3158 "\x84\x1b\xb2\x26\xbd\x54\xeb\x5f" 3159 "\xf6\x8d\x01\x98\x2f\xc6\x3a\xd1" 3160 "\x68\xff\x73\x0a\xa1\x15\xac\x43" 3161 "\xda\x4e\xe5\x7c\x13\x87\x1e\xb5" 3162 "\x29\xc0\x57\xee\x62\xf9\x90\x04" 3163 "\x9b\x32\xc9\x3d\xd4\x6b\x02\x76" 3164 "\x0d\xa4\x18\xaf\x46\xdd\x51\xe8" 3165 "\x7f\x16\x8a\x21\xb8\x2c\xc3\x5a" 3166 "\xf1\x65\xfc\x93\x07\x9e\x35\xcc" 3167 "\x40\xd7\x6e\x05\x79\x10\xa7\x1b" 3168 "\xb2\x49\xe0\x54\xeb\x82\x19\x8d" 3169 "\x24\xbb\x2f\xc6\x5d\xf4\x68\xff" 3170 "\x96\x0a\xa1\x38\xcf\x43\xda\x71" 3171 "\x08\x7c\x13\xaa\x1e\xb5\x4c", 3172 .psize = 1023, 3173 .digest = "\xde\x41\x04\xbd\xda\xda\xd9\x71" 3174 "\xf7\xfa\x80\xf5\xea\x11\x03\xb1" 3175 "\x3b\x6a\xbc\x5f\xb9\x66\x26\xf7" 3176 "\x8a\x97\xbb\xf2\x07\x08\x38\x30", 3177 }, 3178 }; 3179 3180 3181 static const struct hash_testvec sha3_384_tv_template[] = { 3182 { 3183 .plaintext = "", 3184 .digest = "\x0c\x63\xa7\x5b\x84\x5e\x4f\x7d" 3185 "\x01\x10\x7d\x85\x2e\x4c\x24\x85" 3186 "\xc5\x1a\x50\xaa\xaa\x94\xfc\x61" 3187 "\x99\x5e\x71\xbb\xee\x98\x3a\x2a" 3188 "\xc3\x71\x38\x31\x26\x4a\xdb\x47" 3189 "\xfb\x6b\xd1\xe0\x58\xd5\xf0\x04", 3190 }, { 3191 .plaintext = "a", 3192 .psize = 1, 3193 .digest = "\x18\x15\xf7\x74\xf3\x20\x49\x1b" 3194 "\x48\x56\x9e\xfe\xc7\x94\xd2\x49" 3195 "\xee\xb5\x9a\xae\x46\xd2\x2b\xf7" 3196 "\x7d\xaf\xe2\x5c\x5e\xdc\x28\xd7" 3197 "\xea\x44\xf9\x3e\xe1\x23\x4a\xa8" 3198 "\x8f\x61\xc9\x19\x12\xa4\xcc\xd9", 3199 }, { 3200 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkl" 3201 "jklmklmnlmnomnopnopq", 3202 .psize = 56, 3203 .digest = "\x99\x1c\x66\x57\x55\xeb\x3a\x4b" 3204 "\x6b\xbd\xfb\x75\xc7\x8a\x49\x2e" 3205 "\x8c\x56\xa2\x2c\x5c\x4d\x7e\x42" 3206 "\x9b\xfd\xbc\x32\xb9\xd4\xad\x5a" 3207 "\xa0\x4a\x1f\x07\x6e\x62\xfe\xa1" 3208 "\x9e\xef\x51\xac\xd0\x65\x7c\x22", 3209 }, { 3210 .plaintext = "\x08\x9f\x13\xaa\x41\xd8\x4c\xe3" 3211 "\x7a\x11\x85\x1c\xb3\x27\xbe\x55" 3212 "\xec\x60\xf7\x8e\x02\x99\x30\xc7" 3213 "\x3b\xd2\x69\x00\x74\x0b\xa2\x16" 3214 "\xad\x44\xdb\x4f\xe6\x7d\x14\x88" 3215 "\x1f\xb6\x2a\xc1\x58\xef\x63\xfa" 3216 "\x91\x05\x9c\x33\xca\x3e\xd5\x6c" 3217 "\x03\x77\x0e\xa5\x19\xb0\x47\xde" 3218 "\x52\xe9\x80\x17\x8b\x22\xb9\x2d" 3219 "\xc4\x5b\xf2\x66\xfd\x94\x08\x9f" 3220 "\x36\xcd\x41\xd8\x6f\x06\x7a\x11" 3221 "\xa8\x1c\xb3\x4a\xe1\x55\xec\x83" 3222 "\x1a\x8e\x25\xbc\x30\xc7\x5e\xf5" 3223 "\x69\x00\x97\x0b\xa2\x39\xd0\x44" 3224 "\xdb\x72\x09\x7d\x14\xab\x1f\xb6" 3225 "\x4d\xe4\x58\xef\x86\x1d\x91\x28" 3226 "\xbf\x33\xca\x61\xf8\x6c\x03\x9a" 3227 "\x0e\xa5\x3c\xd3\x47\xde\x75\x0c" 3228 "\x80\x17\xae\x22\xb9\x50\xe7\x5b" 3229 "\xf2\x89\x20\x94\x2b\xc2\x36\xcd" 3230 "\x64\xfb\x6f\x06\x9d\x11\xa8\x3f" 3231 "\xd6\x4a\xe1\x78\x0f\x83\x1a\xb1" 3232 "\x25\xbc\x53\xea\x5e\xf5\x8c\x00" 3233 "\x97\x2e\xc5\x39\xd0\x67\xfe\x72" 3234 "\x09\xa0\x14\xab\x42\xd9\x4d\xe4" 3235 "\x7b\x12\x86\x1d\xb4\x28\xbf\x56" 3236 "\xed\x61\xf8\x8f\x03\x9a\x31\xc8" 3237 "\x3c\xd3\x6a\x01\x75\x0c\xa3\x17" 3238 "\xae\x45\xdc\x50\xe7\x7e\x15\x89" 3239 "\x20\xb7\x2b\xc2\x59\xf0\x64\xfb" 3240 "\x92\x06\x9d\x34\xcb\x3f\xd6\x6d" 3241 "\x04\x78\x0f\xa6\x1a\xb1\x48\xdf" 3242 "\x53\xea\x81\x18\x8c\x23\xba\x2e" 3243 "\xc5\x5c\xf3\x67\xfe\x95\x09\xa0" 3244 "\x37\xce\x42\xd9\x70\x07\x7b\x12" 3245 "\xa9\x1d\xb4\x4b\xe2\x56\xed\x84" 3246 "\x1b\x8f\x26\xbd\x31\xc8\x5f\xf6" 3247 "\x6a\x01\x98\x0c\xa3\x3a\xd1\x45" 3248 "\xdc\x73\x0a\x7e\x15\xac\x20\xb7" 3249 "\x4e\xe5\x59\xf0\x87\x1e\x92\x29" 3250 "\xc0\x34\xcb\x62\xf9\x6d\x04\x9b" 3251 "\x0f\xa6\x3d\xd4\x48\xdf\x76\x0d" 3252 "\x81\x18\xaf\x23\xba\x51\xe8\x5c" 3253 "\xf3\x8a\x21\x95\x2c\xc3\x37\xce" 3254 "\x65\xfc\x70\x07\x9e\x12\xa9\x40" 3255 "\xd7\x4b\xe2\x79\x10\x84\x1b\xb2" 3256 "\x26\xbd\x54\xeb\x5f\xf6\x8d\x01" 3257 "\x98\x2f\xc6\x3a\xd1\x68\xff\x73" 3258 "\x0a\xa1\x15\xac\x43\xda\x4e\xe5" 3259 "\x7c\x13\x87\x1e\xb5\x29\xc0\x57" 3260 "\xee\x62\xf9\x90\x04\x9b\x32\xc9" 3261 "\x3d\xd4\x6b\x02\x76\x0d\xa4\x18" 3262 "\xaf\x46\xdd\x51\xe8\x7f\x16\x8a" 3263 "\x21\xb8\x2c\xc3\x5a\xf1\x65\xfc" 3264 "\x93\x07\x9e\x35\xcc\x40\xd7\x6e" 3265 "\x05\x79\x10\xa7\x1b\xb2\x49\xe0" 3266 "\x54\xeb\x82\x19\x8d\x24\xbb\x2f" 3267 "\xc6\x5d\xf4\x68\xff\x96\x0a\xa1" 3268 "\x38\xcf\x43\xda\x71\x08\x7c\x13" 3269 "\xaa\x1e\xb5\x4c\xe3\x57\xee\x85" 3270 "\x1c\x90\x27\xbe\x32\xc9\x60\xf7" 3271 "\x6b\x02\x99\x0d\xa4\x3b\xd2\x46" 3272 "\xdd\x74\x0b\x7f\x16\xad\x21\xb8" 3273 "\x4f\xe6\x5a\xf1\x88\x1f\x93\x2a" 3274 "\xc1\x35\xcc\x63\xfa\x6e\x05\x9c" 3275 "\x10\xa7\x3e\xd5\x49\xe0\x77\x0e" 3276 "\x82\x19\xb0\x24\xbb\x52\xe9\x5d" 3277 "\xf4\x8b\x22\x96\x2d\xc4\x38\xcf" 3278 "\x66\xfd\x71\x08\x9f\x13\xaa\x41" 3279 "\xd8\x4c\xe3\x7a\x11\x85\x1c\xb3" 3280 "\x27\xbe\x55\xec\x60\xf7\x8e\x02" 3281 "\x99\x30\xc7\x3b\xd2\x69\x00\x74" 3282 "\x0b\xa2\x16\xad\x44\xdb\x4f\xe6" 3283 "\x7d\x14\x88\x1f\xb6\x2a\xc1\x58" 3284 "\xef\x63\xfa\x91\x05\x9c\x33\xca" 3285 "\x3e\xd5\x6c\x03\x77\x0e\xa5\x19" 3286 "\xb0\x47\xde\x52\xe9\x80\x17\x8b" 3287 "\x22\xb9\x2d\xc4\x5b\xf2\x66\xfd" 3288 "\x94\x08\x9f\x36\xcd\x41\xd8\x6f" 3289 "\x06\x7a\x11\xa8\x1c\xb3\x4a\xe1" 3290 "\x55\xec\x83\x1a\x8e\x25\xbc\x30" 3291 "\xc7\x5e\xf5\x69\x00\x97\x0b\xa2" 3292 "\x39\xd0\x44\xdb\x72\x09\x7d\x14" 3293 "\xab\x1f\xb6\x4d\xe4\x58\xef\x86" 3294 "\x1d\x91\x28\xbf\x33\xca\x61\xf8" 3295 "\x6c\x03\x9a\x0e\xa5\x3c\xd3\x47" 3296 "\xde\x75\x0c\x80\x17\xae\x22\xb9" 3297 "\x50\xe7\x5b\xf2\x89\x20\x94\x2b" 3298 "\xc2\x36\xcd\x64\xfb\x6f\x06\x9d" 3299 "\x11\xa8\x3f\xd6\x4a\xe1\x78\x0f" 3300 "\x83\x1a\xb1\x25\xbc\x53\xea\x5e" 3301 "\xf5\x8c\x00\x97\x2e\xc5\x39\xd0" 3302 "\x67\xfe\x72\x09\xa0\x14\xab\x42" 3303 "\xd9\x4d\xe4\x7b\x12\x86\x1d\xb4" 3304 "\x28\xbf\x56\xed\x61\xf8\x8f\x03" 3305 "\x9a\x31\xc8\x3c\xd3\x6a\x01\x75" 3306 "\x0c\xa3\x17\xae\x45\xdc\x50\xe7" 3307 "\x7e\x15\x89\x20\xb7\x2b\xc2\x59" 3308 "\xf0\x64\xfb\x92\x06\x9d\x34\xcb" 3309 "\x3f\xd6\x6d\x04\x78\x0f\xa6\x1a" 3310 "\xb1\x48\xdf\x53\xea\x81\x18\x8c" 3311 "\x23\xba\x2e\xc5\x5c\xf3\x67\xfe" 3312 "\x95\x09\xa0\x37\xce\x42\xd9\x70" 3313 "\x07\x7b\x12\xa9\x1d\xb4\x4b\xe2" 3314 "\x56\xed\x84\x1b\x8f\x26\xbd\x31" 3315 "\xc8\x5f\xf6\x6a\x01\x98\x0c\xa3" 3316 "\x3a\xd1\x45\xdc\x73\x0a\x7e\x15" 3317 "\xac\x20\xb7\x4e\xe5\x59\xf0\x87" 3318 "\x1e\x92\x29\xc0\x34\xcb\x62\xf9" 3319 "\x6d\x04\x9b\x0f\xa6\x3d\xd4\x48" 3320 "\xdf\x76\x0d\x81\x18\xaf\x23\xba" 3321 "\x51\xe8\x5c\xf3\x8a\x21\x95\x2c" 3322 "\xc3\x37\xce\x65\xfc\x70\x07\x9e" 3323 "\x12\xa9\x40\xd7\x4b\xe2\x79\x10" 3324 "\x84\x1b\xb2\x26\xbd\x54\xeb\x5f" 3325 "\xf6\x8d\x01\x98\x2f\xc6\x3a\xd1" 3326 "\x68\xff\x73\x0a\xa1\x15\xac\x43" 3327 "\xda\x4e\xe5\x7c\x13\x87\x1e\xb5" 3328 "\x29\xc0\x57\xee\x62\xf9\x90\x04" 3329 "\x9b\x32\xc9\x3d\xd4\x6b\x02\x76" 3330 "\x0d\xa4\x18\xaf\x46\xdd\x51\xe8" 3331 "\x7f\x16\x8a\x21\xb8\x2c\xc3\x5a" 3332 "\xf1\x65\xfc\x93\x07\x9e\x35\xcc" 3333 "\x40\xd7\x6e\x05\x79\x10\xa7\x1b" 3334 "\xb2\x49\xe0\x54\xeb\x82\x19\x8d" 3335 "\x24\xbb\x2f\xc6\x5d\xf4\x68\xff" 3336 "\x96\x0a\xa1\x38\xcf\x43\xda\x71" 3337 "\x08\x7c\x13\xaa\x1e\xb5\x4c", 3338 .psize = 1023, 3339 .digest = "\x1b\x19\x4d\x8f\xd5\x36\x87\x71" 3340 "\xcf\xca\x30\x85\x9b\xc1\x25\xc7" 3341 "\x00\xcb\x73\x8a\x8e\xd4\xfe\x2b" 3342 "\x1a\xa2\xdc\x2e\x41\xfd\x52\x51" 3343 "\xd2\x21\xae\x2d\xc7\xae\x8c\x40" 3344 "\xb9\xe6\x56\x48\x03\xcd\x88\x6b", 3345 }, 3346 }; 3347 3348 3349 static const struct hash_testvec sha3_512_tv_template[] = { 3350 { 3351 .plaintext = "", 3352 .digest = "\xa6\x9f\x73\xcc\xa2\x3a\x9a\xc5" 3353 "\xc8\xb5\x67\xdc\x18\x5a\x75\x6e" 3354 "\x97\xc9\x82\x16\x4f\xe2\x58\x59" 3355 "\xe0\xd1\xdc\xc1\x47\x5c\x80\xa6" 3356 "\x15\xb2\x12\x3a\xf1\xf5\xf9\x4c" 3357 "\x11\xe3\xe9\x40\x2c\x3a\xc5\x58" 3358 "\xf5\x00\x19\x9d\x95\xb6\xd3\xe3" 3359 "\x01\x75\x85\x86\x28\x1d\xcd\x26", 3360 }, { 3361 .plaintext = "a", 3362 .psize = 1, 3363 .digest = "\x69\x7f\x2d\x85\x61\x72\xcb\x83" 3364 "\x09\xd6\xb8\xb9\x7d\xac\x4d\xe3" 3365 "\x44\xb5\x49\xd4\xde\xe6\x1e\xdf" 3366 "\xb4\x96\x2d\x86\x98\xb7\xfa\x80" 3367 "\x3f\x4f\x93\xff\x24\x39\x35\x86" 3368 "\xe2\x8b\x5b\x95\x7a\xc3\xd1\xd3" 3369 "\x69\x42\x0c\xe5\x33\x32\x71\x2f" 3370 "\x99\x7b\xd3\x36\xd0\x9a\xb0\x2a", 3371 }, { 3372 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkl" 3373 "jklmklmnlmnomnopnopq", 3374 .psize = 56, 3375 .digest = "\x04\xa3\x71\xe8\x4e\xcf\xb5\xb8" 3376 "\xb7\x7c\xb4\x86\x10\xfc\xa8\x18" 3377 "\x2d\xd4\x57\xce\x6f\x32\x6a\x0f" 3378 "\xd3\xd7\xec\x2f\x1e\x91\x63\x6d" 3379 "\xee\x69\x1f\xbe\x0c\x98\x53\x02" 3380 "\xba\x1b\x0d\x8d\xc7\x8c\x08\x63" 3381 "\x46\xb5\x33\xb4\x9c\x03\x0d\x99" 3382 "\xa2\x7d\xaf\x11\x39\xd6\xe7\x5e", 3383 }, { 3384 .plaintext = "\x08\x9f\x13\xaa\x41\xd8\x4c\xe3" 3385 "\x7a\x11\x85\x1c\xb3\x27\xbe\x55" 3386 "\xec\x60\xf7\x8e\x02\x99\x30\xc7" 3387 "\x3b\xd2\x69\x00\x74\x0b\xa2\x16" 3388 "\xad\x44\xdb\x4f\xe6\x7d\x14\x88" 3389 "\x1f\xb6\x2a\xc1\x58\xef\x63\xfa" 3390 "\x91\x05\x9c\x33\xca\x3e\xd5\x6c" 3391 "\x03\x77\x0e\xa5\x19\xb0\x47\xde" 3392 "\x52\xe9\x80\x17\x8b\x22\xb9\x2d" 3393 "\xc4\x5b\xf2\x66\xfd\x94\x08\x9f" 3394 "\x36\xcd\x41\xd8\x6f\x06\x7a\x11" 3395 "\xa8\x1c\xb3\x4a\xe1\x55\xec\x83" 3396 "\x1a\x8e\x25\xbc\x30\xc7\x5e\xf5" 3397 "\x69\x00\x97\x0b\xa2\x39\xd0\x44" 3398 "\xdb\x72\x09\x7d\x14\xab\x1f\xb6" 3399 "\x4d\xe4\x58\xef\x86\x1d\x91\x28" 3400 "\xbf\x33\xca\x61\xf8\x6c\x03\x9a" 3401 "\x0e\xa5\x3c\xd3\x47\xde\x75\x0c" 3402 "\x80\x17\xae\x22\xb9\x50\xe7\x5b" 3403 "\xf2\x89\x20\x94\x2b\xc2\x36\xcd" 3404 "\x64\xfb\x6f\x06\x9d\x11\xa8\x3f" 3405 "\xd6\x4a\xe1\x78\x0f\x83\x1a\xb1" 3406 "\x25\xbc\x53\xea\x5e\xf5\x8c\x00" 3407 "\x97\x2e\xc5\x39\xd0\x67\xfe\x72" 3408 "\x09\xa0\x14\xab\x42\xd9\x4d\xe4" 3409 "\x7b\x12\x86\x1d\xb4\x28\xbf\x56" 3410 "\xed\x61\xf8\x8f\x03\x9a\x31\xc8" 3411 "\x3c\xd3\x6a\x01\x75\x0c\xa3\x17" 3412 "\xae\x45\xdc\x50\xe7\x7e\x15\x89" 3413 "\x20\xb7\x2b\xc2\x59\xf0\x64\xfb" 3414 "\x92\x06\x9d\x34\xcb\x3f\xd6\x6d" 3415 "\x04\x78\x0f\xa6\x1a\xb1\x48\xdf" 3416 "\x53\xea\x81\x18\x8c\x23\xba\x2e" 3417 "\xc5\x5c\xf3\x67\xfe\x95\x09\xa0" 3418 "\x37\xce\x42\xd9\x70\x07\x7b\x12" 3419 "\xa9\x1d\xb4\x4b\xe2\x56\xed\x84" 3420 "\x1b\x8f\x26\xbd\x31\xc8\x5f\xf6" 3421 "\x6a\x01\x98\x0c\xa3\x3a\xd1\x45" 3422 "\xdc\x73\x0a\x7e\x15\xac\x20\xb7" 3423 "\x4e\xe5\x59\xf0\x87\x1e\x92\x29" 3424 "\xc0\x34\xcb\x62\xf9\x6d\x04\x9b" 3425 "\x0f\xa6\x3d\xd4\x48\xdf\x76\x0d" 3426 "\x81\x18\xaf\x23\xba\x51\xe8\x5c" 3427 "\xf3\x8a\x21\x95\x2c\xc3\x37\xce" 3428 "\x65\xfc\x70\x07\x9e\x12\xa9\x40" 3429 "\xd7\x4b\xe2\x79\x10\x84\x1b\xb2" 3430 "\x26\xbd\x54\xeb\x5f\xf6\x8d\x01" 3431 "\x98\x2f\xc6\x3a\xd1\x68\xff\x73" 3432 "\x0a\xa1\x15\xac\x43\xda\x4e\xe5" 3433 "\x7c\x13\x87\x1e\xb5\x29\xc0\x57" 3434 "\xee\x62\xf9\x90\x04\x9b\x32\xc9" 3435 "\x3d\xd4\x6b\x02\x76\x0d\xa4\x18" 3436 "\xaf\x46\xdd\x51\xe8\x7f\x16\x8a" 3437 "\x21\xb8\x2c\xc3\x5a\xf1\x65\xfc" 3438 "\x93\x07\x9e\x35\xcc\x40\xd7\x6e" 3439 "\x05\x79\x10\xa7\x1b\xb2\x49\xe0" 3440 "\x54\xeb\x82\x19\x8d\x24\xbb\x2f" 3441 "\xc6\x5d\xf4\x68\xff\x96\x0a\xa1" 3442 "\x38\xcf\x43\xda\x71\x08\x7c\x13" 3443 "\xaa\x1e\xb5\x4c\xe3\x57\xee\x85" 3444 "\x1c\x90\x27\xbe\x32\xc9\x60\xf7" 3445 "\x6b\x02\x99\x0d\xa4\x3b\xd2\x46" 3446 "\xdd\x74\x0b\x7f\x16\xad\x21\xb8" 3447 "\x4f\xe6\x5a\xf1\x88\x1f\x93\x2a" 3448 "\xc1\x35\xcc\x63\xfa\x6e\x05\x9c" 3449 "\x10\xa7\x3e\xd5\x49\xe0\x77\x0e" 3450 "\x82\x19\xb0\x24\xbb\x52\xe9\x5d" 3451 "\xf4\x8b\x22\x96\x2d\xc4\x38\xcf" 3452 "\x66\xfd\x71\x08\x9f\x13\xaa\x41" 3453 "\xd8\x4c\xe3\x7a\x11\x85\x1c\xb3" 3454 "\x27\xbe\x55\xec\x60\xf7\x8e\x02" 3455 "\x99\x30\xc7\x3b\xd2\x69\x00\x74" 3456 "\x0b\xa2\x16\xad\x44\xdb\x4f\xe6" 3457 "\x7d\x14\x88\x1f\xb6\x2a\xc1\x58" 3458 "\xef\x63\xfa\x91\x05\x9c\x33\xca" 3459 "\x3e\xd5\x6c\x03\x77\x0e\xa5\x19" 3460 "\xb0\x47\xde\x52\xe9\x80\x17\x8b" 3461 "\x22\xb9\x2d\xc4\x5b\xf2\x66\xfd" 3462 "\x94\x08\x9f\x36\xcd\x41\xd8\x6f" 3463 "\x06\x7a\x11\xa8\x1c\xb3\x4a\xe1" 3464 "\x55\xec\x83\x1a\x8e\x25\xbc\x30" 3465 "\xc7\x5e\xf5\x69\x00\x97\x0b\xa2" 3466 "\x39\xd0\x44\xdb\x72\x09\x7d\x14" 3467 "\xab\x1f\xb6\x4d\xe4\x58\xef\x86" 3468 "\x1d\x91\x28\xbf\x33\xca\x61\xf8" 3469 "\x6c\x03\x9a\x0e\xa5\x3c\xd3\x47" 3470 "\xde\x75\x0c\x80\x17\xae\x22\xb9" 3471 "\x50\xe7\x5b\xf2\x89\x20\x94\x2b" 3472 "\xc2\x36\xcd\x64\xfb\x6f\x06\x9d" 3473 "\x11\xa8\x3f\xd6\x4a\xe1\x78\x0f" 3474 "\x83\x1a\xb1\x25\xbc\x53\xea\x5e" 3475 "\xf5\x8c\x00\x97\x2e\xc5\x39\xd0" 3476 "\x67\xfe\x72\x09\xa0\x14\xab\x42" 3477 "\xd9\x4d\xe4\x7b\x12\x86\x1d\xb4" 3478 "\x28\xbf\x56\xed\x61\xf8\x8f\x03" 3479 "\x9a\x31\xc8\x3c\xd3\x6a\x01\x75" 3480 "\x0c\xa3\x17\xae\x45\xdc\x50\xe7" 3481 "\x7e\x15\x89\x20\xb7\x2b\xc2\x59" 3482 "\xf0\x64\xfb\x92\x06\x9d\x34\xcb" 3483 "\x3f\xd6\x6d\x04\x78\x0f\xa6\x1a" 3484 "\xb1\x48\xdf\x53\xea\x81\x18\x8c" 3485 "\x23\xba\x2e\xc5\x5c\xf3\x67\xfe" 3486 "\x95\x09\xa0\x37\xce\x42\xd9\x70" 3487 "\x07\x7b\x12\xa9\x1d\xb4\x4b\xe2" 3488 "\x56\xed\x84\x1b\x8f\x26\xbd\x31" 3489 "\xc8\x5f\xf6\x6a\x01\x98\x0c\xa3" 3490 "\x3a\xd1\x45\xdc\x73\x0a\x7e\x15" 3491 "\xac\x20\xb7\x4e\xe5\x59\xf0\x87" 3492 "\x1e\x92\x29\xc0\x34\xcb\x62\xf9" 3493 "\x6d\x04\x9b\x0f\xa6\x3d\xd4\x48" 3494 "\xdf\x76\x0d\x81\x18\xaf\x23\xba" 3495 "\x51\xe8\x5c\xf3\x8a\x21\x95\x2c" 3496 "\xc3\x37\xce\x65\xfc\x70\x07\x9e" 3497 "\x12\xa9\x40\xd7\x4b\xe2\x79\x10" 3498 "\x84\x1b\xb2\x26\xbd\x54\xeb\x5f" 3499 "\xf6\x8d\x01\x98\x2f\xc6\x3a\xd1" 3500 "\x68\xff\x73\x0a\xa1\x15\xac\x43" 3501 "\xda\x4e\xe5\x7c\x13\x87\x1e\xb5" 3502 "\x29\xc0\x57\xee\x62\xf9\x90\x04" 3503 "\x9b\x32\xc9\x3d\xd4\x6b\x02\x76" 3504 "\x0d\xa4\x18\xaf\x46\xdd\x51\xe8" 3505 "\x7f\x16\x8a\x21\xb8\x2c\xc3\x5a" 3506 "\xf1\x65\xfc\x93\x07\x9e\x35\xcc" 3507 "\x40\xd7\x6e\x05\x79\x10\xa7\x1b" 3508 "\xb2\x49\xe0\x54\xeb\x82\x19\x8d" 3509 "\x24\xbb\x2f\xc6\x5d\xf4\x68\xff" 3510 "\x96\x0a\xa1\x38\xcf\x43\xda\x71" 3511 "\x08\x7c\x13\xaa\x1e\xb5\x4c", 3512 .psize = 1023, 3513 .digest = "\x59\xda\x30\xe3\x90\xe4\x3d\xde" 3514 "\xf0\xc6\x42\x17\xd7\xb2\x26\x47" 3515 "\x90\x28\xa6\x84\xe8\x49\x7a\x86" 3516 "\xd6\xb8\x9e\xf8\x07\x59\x21\x03" 3517 "\xad\xd2\xed\x48\xa3\xb9\xa5\xf0" 3518 "\xb3\xae\x02\x2b\xb8\xaf\xc3\x3b" 3519 "\xd6\xb0\x8f\xcb\x76\x8b\xa7\x41" 3520 "\x32\xc2\x8e\x50\x91\x86\x90\xfb", 3521 }, 3522 }; 3523 3524 3525 /* 3526 * MD5 test vectors from RFC1321 3527 */ 3528 static const struct hash_testvec md5_tv_template[] = { 3529 { 3530 .digest = "\xd4\x1d\x8c\xd9\x8f\x00\xb2\x04" 3531 "\xe9\x80\x09\x98\xec\xf8\x42\x7e", 3532 }, { 3533 .plaintext = "a", 3534 .psize = 1, 3535 .digest = "\x0c\xc1\x75\xb9\xc0\xf1\xb6\xa8" 3536 "\x31\xc3\x99\xe2\x69\x77\x26\x61", 3537 }, { 3538 .plaintext = "abc", 3539 .psize = 3, 3540 .digest = "\x90\x01\x50\x98\x3c\xd2\x4f\xb0" 3541 "\xd6\x96\x3f\x7d\x28\xe1\x7f\x72", 3542 }, { 3543 .plaintext = "message digest", 3544 .psize = 14, 3545 .digest = "\xf9\x6b\x69\x7d\x7c\xb7\x93\x8d" 3546 "\x52\x5a\x2f\x31\xaa\xf1\x61\xd0", 3547 }, { 3548 .plaintext = "abcdefghijklmnopqrstuvwxyz", 3549 .psize = 26, 3550 .digest = "\xc3\xfc\xd3\xd7\x61\x92\xe4\x00" 3551 "\x7d\xfb\x49\x6c\xca\x67\xe1\x3b", 3552 }, { 3553 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", 3554 .psize = 62, 3555 .digest = "\xd1\x74\xab\x98\xd2\x77\xd9\xf5" 3556 "\xa5\x61\x1c\x2c\x9f\x41\x9d\x9f", 3557 }, { 3558 .plaintext = "12345678901234567890123456789012345678901234567890123456789012" 3559 "345678901234567890", 3560 .psize = 80, 3561 .digest = "\x57\xed\xf4\xa2\x2b\xe3\xc9\x55" 3562 "\xac\x49\xda\x2e\x21\x07\xb6\x7a", 3563 } 3564 3565 }; 3566 3567 /* 3568 * RIPEMD-128 test vectors from ISO/IEC 10118-3:2004(E) 3569 */ 3570 static const struct hash_testvec rmd128_tv_template[] = { 3571 { 3572 .digest = "\xcd\xf2\x62\x13\xa1\x50\xdc\x3e" 3573 "\xcb\x61\x0f\x18\xf6\xb3\x8b\x46", 3574 }, { 3575 .plaintext = "a", 3576 .psize = 1, 3577 .digest = "\x86\xbe\x7a\xfa\x33\x9d\x0f\xc7" 3578 "\xcf\xc7\x85\xe7\x2f\x57\x8d\x33", 3579 }, { 3580 .plaintext = "abc", 3581 .psize = 3, 3582 .digest = "\xc1\x4a\x12\x19\x9c\x66\xe4\xba" 3583 "\x84\x63\x6b\x0f\x69\x14\x4c\x77", 3584 }, { 3585 .plaintext = "message digest", 3586 .psize = 14, 3587 .digest = "\x9e\x32\x7b\x3d\x6e\x52\x30\x62" 3588 "\xaf\xc1\x13\x2d\x7d\xf9\xd1\xb8", 3589 }, { 3590 .plaintext = "abcdefghijklmnopqrstuvwxyz", 3591 .psize = 26, 3592 .digest = "\xfd\x2a\xa6\x07\xf7\x1d\xc8\xf5" 3593 "\x10\x71\x49\x22\xb3\x71\x83\x4e", 3594 }, { 3595 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde" 3596 "fghijklmnopqrstuvwxyz0123456789", 3597 .psize = 62, 3598 .digest = "\xd1\xe9\x59\xeb\x17\x9c\x91\x1f" 3599 "\xae\xa4\x62\x4c\x60\xc5\xc7\x02", 3600 }, { 3601 .plaintext = "1234567890123456789012345678901234567890" 3602 "1234567890123456789012345678901234567890", 3603 .psize = 80, 3604 .digest = "\x3f\x45\xef\x19\x47\x32\xc2\xdb" 3605 "\xb2\xc4\xa2\xc7\x69\x79\x5f\xa3", 3606 }, { 3607 .plaintext = "abcdbcdecdefdefgefghfghighij" 3608 "hijkijkljklmklmnlmnomnopnopq", 3609 .psize = 56, 3610 .digest = "\xa1\xaa\x06\x89\xd0\xfa\xfa\x2d" 3611 "\xdc\x22\xe8\x8b\x49\x13\x3a\x06", 3612 }, { 3613 .plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghi" 3614 "jklmghijklmnhijklmnoijklmnopjklmnopqklmnopqr" 3615 "lmnopqrsmnopqrstnopqrstu", 3616 .psize = 112, 3617 .digest = "\xd4\xec\xc9\x13\xe1\xdf\x77\x6b" 3618 "\xf4\x8d\xe9\xd5\x5b\x1f\x25\x46", 3619 }, { 3620 .plaintext = "abcdbcdecdefdefgefghfghighijhijk", 3621 .psize = 32, 3622 .digest = "\x13\xfc\x13\xe8\xef\xff\x34\x7d" 3623 "\xe1\x93\xff\x46\xdb\xac\xcf\xd4", 3624 } 3625 }; 3626 3627 /* 3628 * RIPEMD-160 test vectors from ISO/IEC 10118-3:2004(E) 3629 */ 3630 static const struct hash_testvec rmd160_tv_template[] = { 3631 { 3632 .digest = "\x9c\x11\x85\xa5\xc5\xe9\xfc\x54\x61\x28" 3633 "\x08\x97\x7e\xe8\xf5\x48\xb2\x25\x8d\x31", 3634 }, { 3635 .plaintext = "a", 3636 .psize = 1, 3637 .digest = "\x0b\xdc\x9d\x2d\x25\x6b\x3e\xe9\xda\xae" 3638 "\x34\x7b\xe6\xf4\xdc\x83\x5a\x46\x7f\xfe", 3639 }, { 3640 .plaintext = "abc", 3641 .psize = 3, 3642 .digest = "\x8e\xb2\x08\xf7\xe0\x5d\x98\x7a\x9b\x04" 3643 "\x4a\x8e\x98\xc6\xb0\x87\xf1\x5a\x0b\xfc", 3644 }, { 3645 .plaintext = "message digest", 3646 .psize = 14, 3647 .digest = "\x5d\x06\x89\xef\x49\xd2\xfa\xe5\x72\xb8" 3648 "\x81\xb1\x23\xa8\x5f\xfa\x21\x59\x5f\x36", 3649 }, { 3650 .plaintext = "abcdefghijklmnopqrstuvwxyz", 3651 .psize = 26, 3652 .digest = "\xf7\x1c\x27\x10\x9c\x69\x2c\x1b\x56\xbb" 3653 "\xdc\xeb\x5b\x9d\x28\x65\xb3\x70\x8d\xbc", 3654 }, { 3655 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde" 3656 "fghijklmnopqrstuvwxyz0123456789", 3657 .psize = 62, 3658 .digest = "\xb0\xe2\x0b\x6e\x31\x16\x64\x02\x86\xed" 3659 "\x3a\x87\xa5\x71\x30\x79\xb2\x1f\x51\x89", 3660 }, { 3661 .plaintext = "1234567890123456789012345678901234567890" 3662 "1234567890123456789012345678901234567890", 3663 .psize = 80, 3664 .digest = "\x9b\x75\x2e\x45\x57\x3d\x4b\x39\xf4\xdb" 3665 "\xd3\x32\x3c\xab\x82\xbf\x63\x32\x6b\xfb", 3666 }, { 3667 .plaintext = "abcdbcdecdefdefgefghfghighij" 3668 "hijkijkljklmklmnlmnomnopnopq", 3669 .psize = 56, 3670 .digest = "\x12\xa0\x53\x38\x4a\x9c\x0c\x88\xe4\x05" 3671 "\xa0\x6c\x27\xdc\xf4\x9a\xda\x62\xeb\x2b", 3672 }, { 3673 .plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghi" 3674 "jklmghijklmnhijklmnoijklmnopjklmnopqklmnopqr" 3675 "lmnopqrsmnopqrstnopqrstu", 3676 .psize = 112, 3677 .digest = "\x6f\x3f\xa3\x9b\x6b\x50\x3c\x38\x4f\x91" 3678 "\x9a\x49\xa7\xaa\x5c\x2c\x08\xbd\xfb\x45", 3679 }, { 3680 .plaintext = "abcdbcdecdefdefgefghfghighijhijk", 3681 .psize = 32, 3682 .digest = "\x94\xc2\x64\x11\x54\x04\xe6\x33\x79\x0d" 3683 "\xfc\xc8\x7b\x58\x7d\x36\x77\x06\x7d\x9f", 3684 } 3685 }; 3686 3687 /* 3688 * RIPEMD-256 test vectors 3689 */ 3690 static const struct hash_testvec rmd256_tv_template[] = { 3691 { 3692 .digest = "\x02\xba\x4c\x4e\x5f\x8e\xcd\x18" 3693 "\x77\xfc\x52\xd6\x4d\x30\xe3\x7a" 3694 "\x2d\x97\x74\xfb\x1e\x5d\x02\x63" 3695 "\x80\xae\x01\x68\xe3\xc5\x52\x2d", 3696 }, { 3697 .plaintext = "a", 3698 .psize = 1, 3699 .digest = "\xf9\x33\x3e\x45\xd8\x57\xf5\xd9" 3700 "\x0a\x91\xba\xb7\x0a\x1e\xba\x0c" 3701 "\xfb\x1b\xe4\xb0\x78\x3c\x9a\xcf" 3702 "\xcd\x88\x3a\x91\x34\x69\x29\x25", 3703 }, { 3704 .plaintext = "abc", 3705 .psize = 3, 3706 .digest = "\xaf\xbd\x6e\x22\x8b\x9d\x8c\xbb" 3707 "\xce\xf5\xca\x2d\x03\xe6\xdb\xa1" 3708 "\x0a\xc0\xbc\x7d\xcb\xe4\x68\x0e" 3709 "\x1e\x42\xd2\xe9\x75\x45\x9b\x65", 3710 }, { 3711 .plaintext = "message digest", 3712 .psize = 14, 3713 .digest = "\x87\xe9\x71\x75\x9a\x1c\xe4\x7a" 3714 "\x51\x4d\x5c\x91\x4c\x39\x2c\x90" 3715 "\x18\xc7\xc4\x6b\xc1\x44\x65\x55" 3716 "\x4a\xfc\xdf\x54\xa5\x07\x0c\x0e", 3717 }, { 3718 .plaintext = "abcdefghijklmnopqrstuvwxyz", 3719 .psize = 26, 3720 .digest = "\x64\x9d\x30\x34\x75\x1e\xa2\x16" 3721 "\x77\x6b\xf9\xa1\x8a\xcc\x81\xbc" 3722 "\x78\x96\x11\x8a\x51\x97\x96\x87" 3723 "\x82\xdd\x1f\xd9\x7d\x8d\x51\x33", 3724 }, { 3725 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde" 3726 "fghijklmnopqrstuvwxyz0123456789", 3727 .psize = 62, 3728 .digest = "\x57\x40\xa4\x08\xac\x16\xb7\x20" 3729 "\xb8\x44\x24\xae\x93\x1c\xbb\x1f" 3730 "\xe3\x63\xd1\xd0\xbf\x40\x17\xf1" 3731 "\xa8\x9f\x7e\xa6\xde\x77\xa0\xb8", 3732 }, { 3733 .plaintext = "1234567890123456789012345678901234567890" 3734 "1234567890123456789012345678901234567890", 3735 .psize = 80, 3736 .digest = "\x06\xfd\xcc\x7a\x40\x95\x48\xaa" 3737 "\xf9\x13\x68\xc0\x6a\x62\x75\xb5" 3738 "\x53\xe3\xf0\x99\xbf\x0e\xa4\xed" 3739 "\xfd\x67\x78\xdf\x89\xa8\x90\xdd", 3740 }, { 3741 .plaintext = "abcdbcdecdefdefgefghfghighij" 3742 "hijkijkljklmklmnlmnomnopnopq", 3743 .psize = 56, 3744 .digest = "\x38\x43\x04\x55\x83\xaa\xc6\xc8" 3745 "\xc8\xd9\x12\x85\x73\xe7\xa9\x80" 3746 "\x9a\xfb\x2a\x0f\x34\xcc\xc3\x6e" 3747 "\xa9\xe7\x2f\x16\xf6\x36\x8e\x3f", 3748 } 3749 }; 3750 3751 /* 3752 * RIPEMD-320 test vectors 3753 */ 3754 static const struct hash_testvec rmd320_tv_template[] = { 3755 { 3756 .digest = "\x22\xd6\x5d\x56\x61\x53\x6c\xdc\x75\xc1" 3757 "\xfd\xf5\xc6\xde\x7b\x41\xb9\xf2\x73\x25" 3758 "\xeb\xc6\x1e\x85\x57\x17\x7d\x70\x5a\x0e" 3759 "\xc8\x80\x15\x1c\x3a\x32\xa0\x08\x99\xb8", 3760 }, { 3761 .plaintext = "a", 3762 .psize = 1, 3763 .digest = "\xce\x78\x85\x06\x38\xf9\x26\x58\xa5\xa5" 3764 "\x85\x09\x75\x79\x92\x6d\xda\x66\x7a\x57" 3765 "\x16\x56\x2c\xfc\xf6\xfb\xe7\x7f\x63\x54" 3766 "\x2f\x99\xb0\x47\x05\xd6\x97\x0d\xff\x5d", 3767 }, { 3768 .plaintext = "abc", 3769 .psize = 3, 3770 .digest = "\xde\x4c\x01\xb3\x05\x4f\x89\x30\xa7\x9d" 3771 "\x09\xae\x73\x8e\x92\x30\x1e\x5a\x17\x08" 3772 "\x5b\xef\xfd\xc1\xb8\xd1\x16\x71\x3e\x74" 3773 "\xf8\x2f\xa9\x42\xd6\x4c\xdb\xc4\x68\x2d", 3774 }, { 3775 .plaintext = "message digest", 3776 .psize = 14, 3777 .digest = "\x3a\x8e\x28\x50\x2e\xd4\x5d\x42\x2f\x68" 3778 "\x84\x4f\x9d\xd3\x16\xe7\xb9\x85\x33\xfa" 3779 "\x3f\x2a\x91\xd2\x9f\x84\xd4\x25\xc8\x8d" 3780 "\x6b\x4e\xff\x72\x7d\xf6\x6a\x7c\x01\x97", 3781 }, { 3782 .plaintext = "abcdefghijklmnopqrstuvwxyz", 3783 .psize = 26, 3784 .digest = "\xca\xbd\xb1\x81\x0b\x92\x47\x0a\x20\x93" 3785 "\xaa\x6b\xce\x05\x95\x2c\x28\x34\x8c\xf4" 3786 "\x3f\xf6\x08\x41\x97\x51\x66\xbb\x40\xed" 3787 "\x23\x40\x04\xb8\x82\x44\x63\xe6\xb0\x09", 3788 }, { 3789 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde" 3790 "fghijklmnopqrstuvwxyz0123456789", 3791 .psize = 62, 3792 .digest = "\xed\x54\x49\x40\xc8\x6d\x67\xf2\x50\xd2" 3793 "\x32\xc3\x0b\x7b\x3e\x57\x70\xe0\xc6\x0c" 3794 "\x8c\xb9\xa4\xca\xfe\x3b\x11\x38\x8a\xf9" 3795 "\x92\x0e\x1b\x99\x23\x0b\x84\x3c\x86\xa4", 3796 }, { 3797 .plaintext = "1234567890123456789012345678901234567890" 3798 "1234567890123456789012345678901234567890", 3799 .psize = 80, 3800 .digest = "\x55\x78\x88\xaf\x5f\x6d\x8e\xd6\x2a\xb6" 3801 "\x69\x45\xc6\xd2\xa0\xa4\x7e\xcd\x53\x41" 3802 "\xe9\x15\xeb\x8f\xea\x1d\x05\x24\x95\x5f" 3803 "\x82\x5d\xc7\x17\xe4\xa0\x08\xab\x2d\x42", 3804 }, { 3805 .plaintext = "abcdbcdecdefdefgefghfghighij" 3806 "hijkijkljklmklmnlmnomnopnopq", 3807 .psize = 56, 3808 .digest = "\xd0\x34\xa7\x95\x0c\xf7\x22\x02\x1b\xa4" 3809 "\xb8\x4d\xf7\x69\xa5\xde\x20\x60\xe2\x59" 3810 "\xdf\x4c\x9b\xb4\xa4\x26\x8c\x0e\x93\x5b" 3811 "\xbc\x74\x70\xa9\x69\xc9\xd0\x72\xa1\xac", 3812 } 3813 }; 3814 3815 static const struct hash_testvec crct10dif_tv_template[] = { 3816 { 3817 .plaintext = "abc", 3818 .psize = 3, 3819 .digest = (u8 *)(u16 []){ 0x443b }, 3820 }, { 3821 .plaintext = "1234567890123456789012345678901234567890" 3822 "123456789012345678901234567890123456789", 3823 .psize = 79, 3824 .digest = (u8 *)(u16 []){ 0x4b70 }, 3825 }, { 3826 .plaintext = "abcdddddddddddddddddddddddddddddddddddddddd" 3827 "ddddddddddddd", 3828 .psize = 56, 3829 .digest = (u8 *)(u16 []){ 0x9ce3 }, 3830 }, { 3831 .plaintext = "1234567890123456789012345678901234567890" 3832 "1234567890123456789012345678901234567890" 3833 "1234567890123456789012345678901234567890" 3834 "1234567890123456789012345678901234567890" 3835 "1234567890123456789012345678901234567890" 3836 "1234567890123456789012345678901234567890" 3837 "1234567890123456789012345678901234567890" 3838 "123456789012345678901234567890123456789", 3839 .psize = 319, 3840 .digest = (u8 *)(u16 []){ 0x44c6 }, 3841 }, { 3842 .plaintext = "\x6e\x05\x79\x10\xa7\x1b\xb2\x49" 3843 "\xe0\x54\xeb\x82\x19\x8d\x24\xbb" 3844 "\x2f\xc6\x5d\xf4\x68\xff\x96\x0a" 3845 "\xa1\x38\xcf\x43\xda\x71\x08\x7c" 3846 "\x13\xaa\x1e\xb5\x4c\xe3\x57\xee" 3847 "\x85\x1c\x90\x27\xbe\x32\xc9\x60" 3848 "\xf7\x6b\x02\x99\x0d\xa4\x3b\xd2" 3849 "\x46\xdd\x74\x0b\x7f\x16\xad\x21" 3850 "\xb8\x4f\xe6\x5a\xf1\x88\x1f\x93" 3851 "\x2a\xc1\x35\xcc\x63\xfa\x6e\x05" 3852 "\x9c\x10\xa7\x3e\xd5\x49\xe0\x77" 3853 "\x0e\x82\x19\xb0\x24\xbb\x52\xe9" 3854 "\x5d\xf4\x8b\x22\x96\x2d\xc4\x38" 3855 "\xcf\x66\xfd\x71\x08\x9f\x13\xaa" 3856 "\x41\xd8\x4c\xe3\x7a\x11\x85\x1c" 3857 "\xb3\x27\xbe\x55\xec\x60\xf7\x8e" 3858 "\x02\x99\x30\xc7\x3b\xd2\x69\x00" 3859 "\x74\x0b\xa2\x16\xad\x44\xdb\x4f" 3860 "\xe6\x7d\x14\x88\x1f\xb6\x2a\xc1" 3861 "\x58\xef\x63\xfa\x91\x05\x9c\x33" 3862 "\xca\x3e\xd5\x6c\x03\x77\x0e\xa5" 3863 "\x19\xb0\x47\xde\x52\xe9\x80\x17" 3864 "\x8b\x22\xb9\x2d\xc4\x5b\xf2\x66" 3865 "\xfd\x94\x08\x9f\x36\xcd\x41\xd8" 3866 "\x6f\x06\x7a\x11\xa8\x1c\xb3\x4a" 3867 "\xe1\x55\xec\x83\x1a\x8e\x25\xbc" 3868 "\x30\xc7\x5e\xf5\x69\x00\x97\x0b" 3869 "\xa2\x39\xd0\x44\xdb\x72\x09\x7d" 3870 "\x14\xab\x1f\xb6\x4d\xe4\x58\xef" 3871 "\x86\x1d\x91\x28\xbf\x33\xca\x61" 3872 "\xf8\x6c\x03\x9a\x0e\xa5\x3c\xd3" 3873 "\x47\xde\x75\x0c\x80\x17\xae\x22" 3874 "\xb9\x50\xe7\x5b\xf2\x89\x20\x94" 3875 "\x2b\xc2\x36\xcd\x64\xfb\x6f\x06" 3876 "\x9d\x11\xa8\x3f\xd6\x4a\xe1\x78" 3877 "\x0f\x83\x1a\xb1\x25\xbc\x53\xea" 3878 "\x5e\xf5\x8c\x00\x97\x2e\xc5\x39" 3879 "\xd0\x67\xfe\x72\x09\xa0\x14\xab" 3880 "\x42\xd9\x4d\xe4\x7b\x12\x86\x1d" 3881 "\xb4\x28\xbf\x56\xed\x61\xf8\x8f" 3882 "\x03\x9a\x31\xc8\x3c\xd3\x6a\x01" 3883 "\x75\x0c\xa3\x17\xae\x45\xdc\x50" 3884 "\xe7\x7e\x15\x89\x20\xb7\x2b\xc2" 3885 "\x59\xf0\x64\xfb\x92\x06\x9d\x34" 3886 "\xcb\x3f\xd6\x6d\x04\x78\x0f\xa6" 3887 "\x1a\xb1\x48\xdf\x53\xea\x81\x18" 3888 "\x8c\x23\xba\x2e\xc5\x5c\xf3\x67" 3889 "\xfe\x95\x09\xa0\x37\xce\x42\xd9" 3890 "\x70\x07\x7b\x12\xa9\x1d\xb4\x4b" 3891 "\xe2\x56\xed\x84\x1b\x8f\x26\xbd" 3892 "\x31\xc8\x5f\xf6\x6a\x01\x98\x0c" 3893 "\xa3\x3a\xd1\x45\xdc\x73\x0a\x7e" 3894 "\x15\xac\x20\xb7\x4e\xe5\x59\xf0" 3895 "\x87\x1e\x92\x29\xc0\x34\xcb\x62" 3896 "\xf9\x6d\x04\x9b\x0f\xa6\x3d\xd4" 3897 "\x48\xdf\x76\x0d\x81\x18\xaf\x23" 3898 "\xba\x51\xe8\x5c\xf3\x8a\x21\x95" 3899 "\x2c\xc3\x37\xce\x65\xfc\x70\x07" 3900 "\x9e\x12\xa9\x40\xd7\x4b\xe2\x79" 3901 "\x10\x84\x1b\xb2\x26\xbd\x54\xeb" 3902 "\x5f\xf6\x8d\x01\x98\x2f\xc6\x3a" 3903 "\xd1\x68\xff\x73\x0a\xa1\x15\xac" 3904 "\x43\xda\x4e\xe5\x7c\x13\x87\x1e" 3905 "\xb5\x29\xc0\x57\xee\x62\xf9\x90" 3906 "\x04\x9b\x32\xc9\x3d\xd4\x6b\x02" 3907 "\x76\x0d\xa4\x18\xaf\x46\xdd\x51" 3908 "\xe8\x7f\x16\x8a\x21\xb8\x2c\xc3" 3909 "\x5a\xf1\x65\xfc\x93\x07\x9e\x35" 3910 "\xcc\x40\xd7\x6e\x05\x79\x10\xa7" 3911 "\x1b\xb2\x49\xe0\x54\xeb\x82\x19" 3912 "\x8d\x24\xbb\x2f\xc6\x5d\xf4\x68" 3913 "\xff\x96\x0a\xa1\x38\xcf\x43\xda" 3914 "\x71\x08\x7c\x13\xaa\x1e\xb5\x4c" 3915 "\xe3\x57\xee\x85\x1c\x90\x27\xbe" 3916 "\x32\xc9\x60\xf7\x6b\x02\x99\x0d" 3917 "\xa4\x3b\xd2\x46\xdd\x74\x0b\x7f" 3918 "\x16\xad\x21\xb8\x4f\xe6\x5a\xf1" 3919 "\x88\x1f\x93\x2a\xc1\x35\xcc\x63" 3920 "\xfa\x6e\x05\x9c\x10\xa7\x3e\xd5" 3921 "\x49\xe0\x77\x0e\x82\x19\xb0\x24" 3922 "\xbb\x52\xe9\x5d\xf4\x8b\x22\x96" 3923 "\x2d\xc4\x38\xcf\x66\xfd\x71\x08" 3924 "\x9f\x13\xaa\x41\xd8\x4c\xe3\x7a" 3925 "\x11\x85\x1c\xb3\x27\xbe\x55\xec" 3926 "\x60\xf7\x8e\x02\x99\x30\xc7\x3b" 3927 "\xd2\x69\x00\x74\x0b\xa2\x16\xad" 3928 "\x44\xdb\x4f\xe6\x7d\x14\x88\x1f" 3929 "\xb6\x2a\xc1\x58\xef\x63\xfa\x91" 3930 "\x05\x9c\x33\xca\x3e\xd5\x6c\x03" 3931 "\x77\x0e\xa5\x19\xb0\x47\xde\x52" 3932 "\xe9\x80\x17\x8b\x22\xb9\x2d\xc4" 3933 "\x5b\xf2\x66\xfd\x94\x08\x9f\x36" 3934 "\xcd\x41\xd8\x6f\x06\x7a\x11\xa8" 3935 "\x1c\xb3\x4a\xe1\x55\xec\x83\x1a" 3936 "\x8e\x25\xbc\x30\xc7\x5e\xf5\x69" 3937 "\x00\x97\x0b\xa2\x39\xd0\x44\xdb" 3938 "\x72\x09\x7d\x14\xab\x1f\xb6\x4d" 3939 "\xe4\x58\xef\x86\x1d\x91\x28\xbf" 3940 "\x33\xca\x61\xf8\x6c\x03\x9a\x0e" 3941 "\xa5\x3c\xd3\x47\xde\x75\x0c\x80" 3942 "\x17\xae\x22\xb9\x50\xe7\x5b\xf2" 3943 "\x89\x20\x94\x2b\xc2\x36\xcd\x64" 3944 "\xfb\x6f\x06\x9d\x11\xa8\x3f\xd6" 3945 "\x4a\xe1\x78\x0f\x83\x1a\xb1\x25" 3946 "\xbc\x53\xea\x5e\xf5\x8c\x00\x97" 3947 "\x2e\xc5\x39\xd0\x67\xfe\x72\x09" 3948 "\xa0\x14\xab\x42\xd9\x4d\xe4\x7b" 3949 "\x12\x86\x1d\xb4\x28\xbf\x56\xed" 3950 "\x61\xf8\x8f\x03\x9a\x31\xc8\x3c" 3951 "\xd3\x6a\x01\x75\x0c\xa3\x17\xae" 3952 "\x45\xdc\x50\xe7\x7e\x15\x89\x20" 3953 "\xb7\x2b\xc2\x59\xf0\x64\xfb\x92" 3954 "\x06\x9d\x34\xcb\x3f\xd6\x6d\x04" 3955 "\x78\x0f\xa6\x1a\xb1\x48\xdf\x53" 3956 "\xea\x81\x18\x8c\x23\xba\x2e\xc5" 3957 "\x5c\xf3\x67\xfe\x95\x09\xa0\x37" 3958 "\xce\x42\xd9\x70\x07\x7b\x12\xa9" 3959 "\x1d\xb4\x4b\xe2\x56\xed\x84\x1b" 3960 "\x8f\x26\xbd\x31\xc8\x5f\xf6\x6a" 3961 "\x01\x98\x0c\xa3\x3a\xd1\x45\xdc" 3962 "\x73\x0a\x7e\x15\xac\x20\xb7\x4e" 3963 "\xe5\x59\xf0\x87\x1e\x92\x29\xc0" 3964 "\x34\xcb\x62\xf9\x6d\x04\x9b\x0f" 3965 "\xa6\x3d\xd4\x48\xdf\x76\x0d\x81" 3966 "\x18\xaf\x23\xba\x51\xe8\x5c\xf3" 3967 "\x8a\x21\x95\x2c\xc3\x37\xce\x65" 3968 "\xfc\x70\x07\x9e\x12\xa9\x40\xd7" 3969 "\x4b\xe2\x79\x10\x84\x1b\xb2\x26" 3970 "\xbd\x54\xeb\x5f\xf6\x8d\x01\x98" 3971 "\x2f\xc6\x3a\xd1\x68\xff\x73\x0a" 3972 "\xa1\x15\xac\x43\xda\x4e\xe5\x7c" 3973 "\x13\x87\x1e\xb5\x29\xc0\x57\xee" 3974 "\x62\xf9\x90\x04\x9b\x32\xc9\x3d" 3975 "\xd4\x6b\x02\x76\x0d\xa4\x18\xaf" 3976 "\x46\xdd\x51\xe8\x7f\x16\x8a\x21" 3977 "\xb8\x2c\xc3\x5a\xf1\x65\xfc\x93" 3978 "\x07\x9e\x35\xcc\x40\xd7\x6e\x05" 3979 "\x79\x10\xa7\x1b\xb2\x49\xe0\x54" 3980 "\xeb\x82\x19\x8d\x24\xbb\x2f\xc6" 3981 "\x5d\xf4\x68\xff\x96\x0a\xa1\x38" 3982 "\xcf\x43\xda\x71\x08\x7c\x13\xaa" 3983 "\x1e\xb5\x4c\xe3\x57\xee\x85\x1c" 3984 "\x90\x27\xbe\x32\xc9\x60\xf7\x6b" 3985 "\x02\x99\x0d\xa4\x3b\xd2\x46\xdd" 3986 "\x74\x0b\x7f\x16\xad\x21\xb8\x4f" 3987 "\xe6\x5a\xf1\x88\x1f\x93\x2a\xc1" 3988 "\x35\xcc\x63\xfa\x6e\x05\x9c\x10" 3989 "\xa7\x3e\xd5\x49\xe0\x77\x0e\x82" 3990 "\x19\xb0\x24\xbb\x52\xe9\x5d\xf4" 3991 "\x8b\x22\x96\x2d\xc4\x38\xcf\x66" 3992 "\xfd\x71\x08\x9f\x13\xaa\x41\xd8" 3993 "\x4c\xe3\x7a\x11\x85\x1c\xb3\x27" 3994 "\xbe\x55\xec\x60\xf7\x8e\x02\x99" 3995 "\x30\xc7\x3b\xd2\x69\x00\x74\x0b" 3996 "\xa2\x16\xad\x44\xdb\x4f\xe6\x7d" 3997 "\x14\x88\x1f\xb6\x2a\xc1\x58\xef" 3998 "\x63\xfa\x91\x05\x9c\x33\xca\x3e" 3999 "\xd5\x6c\x03\x77\x0e\xa5\x19\xb0" 4000 "\x47\xde\x52\xe9\x80\x17\x8b\x22" 4001 "\xb9\x2d\xc4\x5b\xf2\x66\xfd\x94" 4002 "\x08\x9f\x36\xcd\x41\xd8\x6f\x06" 4003 "\x7a\x11\xa8\x1c\xb3\x4a\xe1\x55" 4004 "\xec\x83\x1a\x8e\x25\xbc\x30\xc7" 4005 "\x5e\xf5\x69\x00\x97\x0b\xa2\x39" 4006 "\xd0\x44\xdb\x72\x09\x7d\x14\xab" 4007 "\x1f\xb6\x4d\xe4\x58\xef\x86\x1d" 4008 "\x91\x28\xbf\x33\xca\x61\xf8\x6c" 4009 "\x03\x9a\x0e\xa5\x3c\xd3\x47\xde" 4010 "\x75\x0c\x80\x17\xae\x22\xb9\x50" 4011 "\xe7\x5b\xf2\x89\x20\x94\x2b\xc2" 4012 "\x36\xcd\x64\xfb\x6f\x06\x9d\x11" 4013 "\xa8\x3f\xd6\x4a\xe1\x78\x0f\x83" 4014 "\x1a\xb1\x25\xbc\x53\xea\x5e\xf5" 4015 "\x8c\x00\x97\x2e\xc5\x39\xd0\x67" 4016 "\xfe\x72\x09\xa0\x14\xab\x42\xd9" 4017 "\x4d\xe4\x7b\x12\x86\x1d\xb4\x28" 4018 "\xbf\x56\xed\x61\xf8\x8f\x03\x9a" 4019 "\x31\xc8\x3c\xd3\x6a\x01\x75\x0c" 4020 "\xa3\x17\xae\x45\xdc\x50\xe7\x7e" 4021 "\x15\x89\x20\xb7\x2b\xc2\x59\xf0" 4022 "\x64\xfb\x92\x06\x9d\x34\xcb\x3f" 4023 "\xd6\x6d\x04\x78\x0f\xa6\x1a\xb1" 4024 "\x48\xdf\x53\xea\x81\x18\x8c\x23" 4025 "\xba\x2e\xc5\x5c\xf3\x67\xfe\x95" 4026 "\x09\xa0\x37\xce\x42\xd9\x70\x07" 4027 "\x7b\x12\xa9\x1d\xb4\x4b\xe2\x56" 4028 "\xed\x84\x1b\x8f\x26\xbd\x31\xc8" 4029 "\x5f\xf6\x6a\x01\x98\x0c\xa3\x3a" 4030 "\xd1\x45\xdc\x73\x0a\x7e\x15\xac" 4031 "\x20\xb7\x4e\xe5\x59\xf0\x87\x1e" 4032 "\x92\x29\xc0\x34\xcb\x62\xf9\x6d" 4033 "\x04\x9b\x0f\xa6\x3d\xd4\x48\xdf" 4034 "\x76\x0d\x81\x18\xaf\x23\xba\x51" 4035 "\xe8\x5c\xf3\x8a\x21\x95\x2c\xc3" 4036 "\x37\xce\x65\xfc\x70\x07\x9e\x12" 4037 "\xa9\x40\xd7\x4b\xe2\x79\x10\x84" 4038 "\x1b\xb2\x26\xbd\x54\xeb\x5f\xf6" 4039 "\x8d\x01\x98\x2f\xc6\x3a\xd1\x68" 4040 "\xff\x73\x0a\xa1\x15\xac\x43\xda" 4041 "\x4e\xe5\x7c\x13\x87\x1e\xb5\x29" 4042 "\xc0\x57\xee\x62\xf9\x90\x04\x9b" 4043 "\x32\xc9\x3d\xd4\x6b\x02\x76\x0d" 4044 "\xa4\x18\xaf\x46\xdd\x51\xe8\x7f" 4045 "\x16\x8a\x21\xb8\x2c\xc3\x5a\xf1" 4046 "\x65\xfc\x93\x07\x9e\x35\xcc\x40" 4047 "\xd7\x6e\x05\x79\x10\xa7\x1b\xb2" 4048 "\x49\xe0\x54\xeb\x82\x19\x8d\x24" 4049 "\xbb\x2f\xc6\x5d\xf4\x68\xff\x96" 4050 "\x0a\xa1\x38\xcf\x43\xda\x71\x08" 4051 "\x7c\x13\xaa\x1e\xb5\x4c\xe3\x57" 4052 "\xee\x85\x1c\x90\x27\xbe\x32\xc9" 4053 "\x60\xf7\x6b\x02\x99\x0d\xa4\x3b" 4054 "\xd2\x46\xdd\x74\x0b\x7f\x16\xad" 4055 "\x21\xb8\x4f\xe6\x5a\xf1\x88\x1f" 4056 "\x93\x2a\xc1\x35\xcc\x63\xfa\x6e" 4057 "\x05\x9c\x10\xa7\x3e\xd5\x49\xe0" 4058 "\x77\x0e\x82\x19\xb0\x24\xbb\x52" 4059 "\xe9\x5d\xf4\x8b\x22\x96\x2d\xc4" 4060 "\x38\xcf\x66\xfd\x71\x08\x9f\x13" 4061 "\xaa\x41\xd8\x4c\xe3\x7a\x11\x85" 4062 "\x1c\xb3\x27\xbe\x55\xec\x60\xf7" 4063 "\x8e\x02\x99\x30\xc7\x3b\xd2\x69" 4064 "\x00\x74\x0b\xa2\x16\xad\x44\xdb" 4065 "\x4f\xe6\x7d\x14\x88\x1f\xb6\x2a" 4066 "\xc1\x58\xef\x63\xfa\x91\x05\x9c" 4067 "\x33\xca\x3e\xd5\x6c\x03\x77\x0e" 4068 "\xa5\x19\xb0\x47\xde\x52\xe9\x80" 4069 "\x17\x8b\x22\xb9\x2d\xc4\x5b\xf2" 4070 "\x66\xfd\x94\x08\x9f\x36\xcd\x41" 4071 "\xd8\x6f\x06\x7a\x11\xa8\x1c\xb3" 4072 "\x4a\xe1\x55\xec\x83\x1a\x8e\x25" 4073 "\xbc\x30\xc7\x5e\xf5\x69\x00\x97" 4074 "\x0b\xa2\x39\xd0\x44\xdb\x72\x09" 4075 "\x7d\x14\xab\x1f\xb6\x4d\xe4\x58" 4076 "\xef\x86\x1d\x91\x28\xbf\x33\xca" 4077 "\x61\xf8\x6c\x03\x9a\x0e\xa5\x3c" 4078 "\xd3\x47\xde\x75\x0c\x80\x17\xae" 4079 "\x22\xb9\x50\xe7\x5b\xf2\x89\x20" 4080 "\x94\x2b\xc2\x36\xcd\x64\xfb\x6f" 4081 "\x06\x9d\x11\xa8\x3f\xd6\x4a\xe1" 4082 "\x78\x0f\x83\x1a\xb1\x25\xbc\x53" 4083 "\xea\x5e\xf5\x8c\x00\x97\x2e\xc5" 4084 "\x39\xd0\x67\xfe\x72\x09\xa0\x14" 4085 "\xab\x42\xd9\x4d\xe4\x7b\x12\x86" 4086 "\x1d\xb4\x28\xbf\x56\xed\x61\xf8" 4087 "\x8f\x03\x9a\x31\xc8\x3c\xd3\x6a" 4088 "\x01\x75\x0c\xa3\x17\xae\x45\xdc" 4089 "\x50\xe7\x7e\x15\x89\x20\xb7\x2b" 4090 "\xc2\x59\xf0\x64\xfb\x92\x06\x9d" 4091 "\x34\xcb\x3f\xd6\x6d\x04\x78\x0f" 4092 "\xa6\x1a\xb1\x48\xdf\x53\xea\x81" 4093 "\x18\x8c\x23\xba\x2e\xc5\x5c\xf3" 4094 "\x67\xfe\x95\x09\xa0\x37\xce\x42" 4095 "\xd9\x70\x07\x7b\x12\xa9\x1d\xb4" 4096 "\x4b\xe2\x56\xed\x84\x1b\x8f\x26" 4097 "\xbd\x31\xc8\x5f\xf6\x6a\x01\x98", 4098 .psize = 2048, 4099 .digest = (u8 *)(u16 []){ 0x23ca }, 4100 } 4101 }; 4102 4103 /* 4104 * Streebog test vectors from RFC 6986 and GOST R 34.11-2012 4105 */ 4106 static const struct hash_testvec streebog256_tv_template[] = { 4107 { /* M1 */ 4108 .plaintext = "012345678901234567890123456789012345678901234567890123456789012", 4109 .psize = 63, 4110 .digest = 4111 "\x9d\x15\x1e\xef\xd8\x59\x0b\x89" 4112 "\xda\xa6\xba\x6c\xb7\x4a\xf9\x27" 4113 "\x5d\xd0\x51\x02\x6b\xb1\x49\xa4" 4114 "\x52\xfd\x84\xe5\xe5\x7b\x55\x00", 4115 }, 4116 { /* M2 */ 4117 .plaintext = 4118 "\xd1\xe5\x20\xe2\xe5\xf2\xf0\xe8" 4119 "\x2c\x20\xd1\xf2\xf0\xe8\xe1\xee" 4120 "\xe6\xe8\x20\xe2\xed\xf3\xf6\xe8" 4121 "\x2c\x20\xe2\xe5\xfe\xf2\xfa\x20" 4122 "\xf1\x20\xec\xee\xf0\xff\x20\xf1" 4123 "\xf2\xf0\xe5\xeb\xe0\xec\xe8\x20" 4124 "\xed\xe0\x20\xf5\xf0\xe0\xe1\xf0" 4125 "\xfb\xff\x20\xef\xeb\xfa\xea\xfb" 4126 "\x20\xc8\xe3\xee\xf0\xe5\xe2\xfb", 4127 .psize = 72, 4128 .digest = 4129 "\x9d\xd2\xfe\x4e\x90\x40\x9e\x5d" 4130 "\xa8\x7f\x53\x97\x6d\x74\x05\xb0" 4131 "\xc0\xca\xc6\x28\xfc\x66\x9a\x74" 4132 "\x1d\x50\x06\x3c\x55\x7e\x8f\x50", 4133 }, 4134 }; 4135 4136 static const struct hash_testvec streebog512_tv_template[] = { 4137 { /* M1 */ 4138 .plaintext = "012345678901234567890123456789012345678901234567890123456789012", 4139 .psize = 63, 4140 .digest = 4141 "\x1b\x54\xd0\x1a\x4a\xf5\xb9\xd5" 4142 "\xcc\x3d\x86\xd6\x8d\x28\x54\x62" 4143 "\xb1\x9a\xbc\x24\x75\x22\x2f\x35" 4144 "\xc0\x85\x12\x2b\xe4\xba\x1f\xfa" 4145 "\x00\xad\x30\xf8\x76\x7b\x3a\x82" 4146 "\x38\x4c\x65\x74\xf0\x24\xc3\x11" 4147 "\xe2\xa4\x81\x33\x2b\x08\xef\x7f" 4148 "\x41\x79\x78\x91\xc1\x64\x6f\x48", 4149 }, 4150 { /* M2 */ 4151 .plaintext = 4152 "\xd1\xe5\x20\xe2\xe5\xf2\xf0\xe8" 4153 "\x2c\x20\xd1\xf2\xf0\xe8\xe1\xee" 4154 "\xe6\xe8\x20\xe2\xed\xf3\xf6\xe8" 4155 "\x2c\x20\xe2\xe5\xfe\xf2\xfa\x20" 4156 "\xf1\x20\xec\xee\xf0\xff\x20\xf1" 4157 "\xf2\xf0\xe5\xeb\xe0\xec\xe8\x20" 4158 "\xed\xe0\x20\xf5\xf0\xe0\xe1\xf0" 4159 "\xfb\xff\x20\xef\xeb\xfa\xea\xfb" 4160 "\x20\xc8\xe3\xee\xf0\xe5\xe2\xfb", 4161 .psize = 72, 4162 .digest = 4163 "\x1e\x88\xe6\x22\x26\xbf\xca\x6f" 4164 "\x99\x94\xf1\xf2\xd5\x15\x69\xe0" 4165 "\xda\xf8\x47\x5a\x3b\x0f\xe6\x1a" 4166 "\x53\x00\xee\xe4\x6d\x96\x13\x76" 4167 "\x03\x5f\xe8\x35\x49\xad\xa2\xb8" 4168 "\x62\x0f\xcd\x7c\x49\x6c\xe5\xb3" 4169 "\x3f\x0c\xb9\xdd\xdc\x2b\x64\x60" 4170 "\x14\x3b\x03\xda\xba\xc9\xfb\x28", 4171 }, 4172 }; 4173 4174 /* 4175 * Two HMAC-Streebog test vectors from RFC 7836 and R 50.1.113-2016 A 4176 */ 4177 static const struct hash_testvec hmac_streebog256_tv_template[] = { 4178 { 4179 .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 4180 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 4181 "\x10\x11\x12\x13\x14\x15\x16\x17" 4182 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 4183 .ksize = 32, 4184 .plaintext = 4185 "\x01\x26\xbd\xb8\x78\x00\xaf\x21" 4186 "\x43\x41\x45\x65\x63\x78\x01\x00", 4187 .psize = 16, 4188 .digest = 4189 "\xa1\xaa\x5f\x7d\xe4\x02\xd7\xb3" 4190 "\xd3\x23\xf2\x99\x1c\x8d\x45\x34" 4191 "\x01\x31\x37\x01\x0a\x83\x75\x4f" 4192 "\xd0\xaf\x6d\x7c\xd4\x92\x2e\xd9", 4193 }, 4194 }; 4195 4196 static const struct hash_testvec hmac_streebog512_tv_template[] = { 4197 { 4198 .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 4199 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 4200 "\x10\x11\x12\x13\x14\x15\x16\x17" 4201 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 4202 .ksize = 32, 4203 .plaintext = 4204 "\x01\x26\xbd\xb8\x78\x00\xaf\x21" 4205 "\x43\x41\x45\x65\x63\x78\x01\x00", 4206 .psize = 16, 4207 .digest = 4208 "\xa5\x9b\xab\x22\xec\xae\x19\xc6" 4209 "\x5f\xbd\xe6\xe5\xf4\xe9\xf5\xd8" 4210 "\x54\x9d\x31\xf0\x37\xf9\xdf\x9b" 4211 "\x90\x55\x00\xe1\x71\x92\x3a\x77" 4212 "\x3d\x5f\x15\x30\xf2\xed\x7e\x96" 4213 "\x4c\xb2\xee\xdc\x29\xe9\xad\x2f" 4214 "\x3a\xfe\x93\xb2\x81\x4f\x79\xf5" 4215 "\x00\x0f\xfc\x03\x66\xc2\x51\xe6", 4216 }, 4217 }; 4218 4219 /* 4220 * SM2 test vectors. 4221 */ 4222 static const struct akcipher_testvec sm2_tv_template[] = { 4223 { /* Generated from openssl */ 4224 .key = 4225 "\x04" 4226 "\x8e\xa0\x33\x69\x91\x7e\x3d\xec\xad\x8e\xf0\x45\x5e\x13\x3e\x68" 4227 "\x5b\x8c\xab\x5c\xc6\xc8\x50\xdf\x91\x00\xe0\x24\x73\x4d\x31\xf2" 4228 "\x2e\xc0\xd5\x6b\xee\xda\x98\x93\xec\xd8\x36\xaa\xb9\xcf\x63\x82" 4229 "\xef\xa7\x1a\x03\xed\x16\xba\x74\xb8\x8b\xf9\xe5\x70\x39\xa4\x70", 4230 .key_len = 65, 4231 .param_len = 0, 4232 .c = 4233 "\x30\x45" 4234 "\x02\x20" 4235 "\x70\xab\xb6\x7d\xd6\x54\x80\x64\x42\x7e\x2d\x05\x08\x36\xc9\x96" 4236 "\x25\xc2\xbb\xff\x08\xe5\x43\x15\x5e\xf3\x06\xd9\x2b\x2f\x0a\x9f" 4237 "\x02\x21" 4238 "\x00" 4239 "\xbf\x21\x5f\x7e\x5d\x3f\x1a\x4d\x8f\x84\xc2\xe9\xa6\x4c\xa4\x18" 4240 "\xb2\xb8\x46\xf4\x32\x96\xfa\x57\xc6\x29\xd4\x89\xae\xcc\xda\xdb", 4241 .c_size = 71, 4242 .algo = OID_SM2_with_SM3, 4243 .m = 4244 "\x47\xa7\xbf\xd3\xda\xc4\x79\xee\xda\x8b\x4f\xe8\x40\x94\xd4\x32" 4245 "\x8f\xf1\xcd\x68\x4d\xbd\x9b\x1d\xe0\xd8\x9a\x5d\xad\x85\x47\x5c", 4246 .m_size = 32, 4247 .public_key_vec = true, 4248 .siggen_sigver_test = true, 4249 }, 4250 { /* From libgcrypt */ 4251 .key = 4252 "\x04" 4253 "\x87\x59\x38\x9a\x34\xaa\xad\x07\xec\xf4\xe0\xc8\xc2\x65\x0a\x44" 4254 "\x59\xc8\xd9\x26\xee\x23\x78\x32\x4e\x02\x61\xc5\x25\x38\xcb\x47" 4255 "\x75\x28\x10\x6b\x1e\x0b\x7c\x8d\xd5\xff\x29\xa9\xc8\x6a\x89\x06" 4256 "\x56\x56\xeb\x33\x15\x4b\xc0\x55\x60\x91\xef\x8a\xc9\xd1\x7d\x78", 4257 .key_len = 65, 4258 .param_len = 0, 4259 .c = 4260 "\x30\x44" 4261 "\x02\x20" 4262 "\xd9\xec\xef\xe8\x5f\xee\x3c\x59\x57\x8e\x5b\xab\xb3\x02\xe1\x42" 4263 "\x4b\x67\x2c\x0b\x26\xb6\x51\x2c\x3e\xfc\xc6\x49\xec\xfe\x89\xe5" 4264 "\x02\x20" 4265 "\x43\x45\xd0\xa5\xff\xe5\x13\x27\x26\xd0\xec\x37\xad\x24\x1e\x9a" 4266 "\x71\x9a\xa4\x89\xb0\x7e\x0f\xc4\xbb\x2d\x50\xd0\xe5\x7f\x7a\x68", 4267 .c_size = 70, 4268 .algo = OID_SM2_with_SM3, 4269 .m = 4270 "\x11\x22\x33\x44\x55\x66\x77\x88\x99\xaa\xbb\xcc\xdd\xee\xff\x00" 4271 "\x12\x34\x56\x78\x9a\xbc\xde\xf0\x12\x34\x56\x78\x9a\xbc\xde\xf0", 4272 .m_size = 32, 4273 .public_key_vec = true, 4274 .siggen_sigver_test = true, 4275 }, 4276 }; 4277 4278 /* Example vectors below taken from 4279 * http://www.oscca.gov.cn/UpFile/20101222141857786.pdf 4280 * 4281 * The rest taken from 4282 * https://github.com/adamws/oscca-sm3 4283 */ 4284 static const struct hash_testvec sm3_tv_template[] = { 4285 { 4286 .plaintext = "", 4287 .psize = 0, 4288 .digest = (u8 *)(u8 []) { 4289 0x1A, 0xB2, 0x1D, 0x83, 0x55, 0xCF, 0xA1, 0x7F, 4290 0x8e, 0x61, 0x19, 0x48, 0x31, 0xE8, 0x1A, 0x8F, 4291 0x22, 0xBE, 0xC8, 0xC7, 0x28, 0xFE, 0xFB, 0x74, 4292 0x7E, 0xD0, 0x35, 0xEB, 0x50, 0x82, 0xAA, 0x2B } 4293 }, { 4294 .plaintext = "a", 4295 .psize = 1, 4296 .digest = (u8 *)(u8 []) { 4297 0x62, 0x34, 0x76, 0xAC, 0x18, 0xF6, 0x5A, 0x29, 4298 0x09, 0xE4, 0x3C, 0x7F, 0xEC, 0x61, 0xB4, 0x9C, 4299 0x7E, 0x76, 0x4A, 0x91, 0xA1, 0x8C, 0xCB, 0x82, 4300 0xF1, 0x91, 0x7A, 0x29, 0xC8, 0x6C, 0x5E, 0x88 } 4301 }, { 4302 /* A.1. Example 1 */ 4303 .plaintext = "abc", 4304 .psize = 3, 4305 .digest = (u8 *)(u8 []) { 4306 0x66, 0xC7, 0xF0, 0xF4, 0x62, 0xEE, 0xED, 0xD9, 4307 0xD1, 0xF2, 0xD4, 0x6B, 0xDC, 0x10, 0xE4, 0xE2, 4308 0x41, 0x67, 0xC4, 0x87, 0x5C, 0xF2, 0xF7, 0xA2, 4309 0x29, 0x7D, 0xA0, 0x2B, 0x8F, 0x4B, 0xA8, 0xE0 } 4310 }, { 4311 .plaintext = "abcdefghijklmnopqrstuvwxyz", 4312 .psize = 26, 4313 .digest = (u8 *)(u8 []) { 4314 0xB8, 0x0F, 0xE9, 0x7A, 0x4D, 0xA2, 0x4A, 0xFC, 4315 0x27, 0x75, 0x64, 0xF6, 0x6A, 0x35, 0x9E, 0xF4, 4316 0x40, 0x46, 0x2A, 0xD2, 0x8D, 0xCC, 0x6D, 0x63, 4317 0xAD, 0xB2, 0x4D, 0x5C, 0x20, 0xA6, 0x15, 0x95 } 4318 }, { 4319 /* A.1. Example 2 */ 4320 .plaintext = "abcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdab" 4321 "cdabcdabcdabcdabcd", 4322 .psize = 64, 4323 .digest = (u8 *)(u8 []) { 4324 0xDE, 0xBE, 0x9F, 0xF9, 0x22, 0x75, 0xB8, 0xA1, 4325 0x38, 0x60, 0x48, 0x89, 0xC1, 0x8E, 0x5A, 0x4D, 4326 0x6F, 0xDB, 0x70, 0xE5, 0x38, 0x7E, 0x57, 0x65, 4327 0x29, 0x3D, 0xCB, 0xA3, 0x9C, 0x0C, 0x57, 0x32 } 4328 }, { 4329 .plaintext = "abcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcd" 4330 "abcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcd" 4331 "abcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcd" 4332 "abcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcd" 4333 "abcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcd" 4334 "abcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcd" 4335 "abcdabcdabcdabcdabcdabcdabcdabcd", 4336 .psize = 256, 4337 .digest = (u8 *)(u8 []) { 4338 0xB9, 0x65, 0x76, 0x4C, 0x8B, 0xEB, 0xB0, 0x91, 4339 0xC7, 0x60, 0x2B, 0x74, 0xAF, 0xD3, 0x4E, 0xEF, 4340 0xB5, 0x31, 0xDC, 0xCB, 0x4E, 0x00, 0x76, 0xD9, 4341 0xB7, 0xCD, 0x81, 0x31, 0x99, 0xB4, 0x59, 0x71 } 4342 } 4343 }; 4344 4345 /* Example vectors below taken from 4346 * GM/T 0042-2015 Appendix D.3 4347 */ 4348 static const struct hash_testvec hmac_sm3_tv_template[] = { 4349 { 4350 .key = "\x01\x02\x03\x04\x05\x06\x07\x08" 4351 "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 4352 "\x11\x12\x13\x14\x15\x16\x17\x18" 4353 "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20", 4354 .ksize = 32, 4355 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq" 4356 "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 4357 .psize = 112, 4358 .digest = "\xca\x05\xe1\x44\xed\x05\xd1\x85" 4359 "\x78\x40\xd1\xf3\x18\xa4\xa8\x66" 4360 "\x9e\x55\x9f\xc8\x39\x1f\x41\x44" 4361 "\x85\xbf\xdf\x7b\xb4\x08\x96\x3a", 4362 }, { 4363 .key = "\x01\x02\x03\x04\x05\x06\x07\x08" 4364 "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 4365 "\x11\x12\x13\x14\x15\x16\x17\x18" 4366 "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20" 4367 "\x21\x22\x23\x24\x25", 4368 .ksize = 37, 4369 .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 4370 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 4371 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 4372 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd", 4373 .psize = 50, 4374 .digest = "\x22\x0b\xf5\x79\xde\xd5\x55\x39" 4375 "\x3f\x01\x59\xf6\x6c\x99\x87\x78" 4376 "\x22\xa3\xec\xf6\x10\xd1\x55\x21" 4377 "\x54\xb4\x1d\x44\xb9\x4d\xb3\xae", 4378 }, { 4379 .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 4380 "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 4381 "\x0b\x0b\x0b\x0b\x0b\x0b", 4382 .ksize = 32, 4383 .plaintext = "Hi There", 4384 .psize = 8, 4385 .digest = "\xc0\xba\x18\xc6\x8b\x90\xc8\x8b" 4386 "\xc0\x7d\xe7\x94\xbf\xc7\xd2\xc8" 4387 "\xd1\x9e\xc3\x1e\xd8\x77\x3b\xc2" 4388 "\xb3\x90\xc9\x60\x4e\x0b\xe1\x1e", 4389 }, { 4390 .key = "Jefe", 4391 .ksize = 4, 4392 .plaintext = "what do ya want for nothing?", 4393 .psize = 28, 4394 .digest = "\x2e\x87\xf1\xd1\x68\x62\xe6\xd9" 4395 "\x64\xb5\x0a\x52\x00\xbf\x2b\x10" 4396 "\xb7\x64\xfa\xa9\x68\x0a\x29\x6a" 4397 "\x24\x05\xf2\x4b\xec\x39\xf8\x82", 4398 }, 4399 }; 4400 4401 /* 4402 * SHA1 test vectors from FIPS PUB 180-1 4403 * Long vector from CAVS 5.0 4404 */ 4405 static const struct hash_testvec sha1_tv_template[] = { 4406 { 4407 .plaintext = "", 4408 .psize = 0, 4409 .digest = "\xda\x39\xa3\xee\x5e\x6b\x4b\x0d\x32\x55" 4410 "\xbf\xef\x95\x60\x18\x90\xaf\xd8\x07\x09", 4411 }, { 4412 .plaintext = "abc", 4413 .psize = 3, 4414 .digest = "\xa9\x99\x3e\x36\x47\x06\x81\x6a\xba\x3e" 4415 "\x25\x71\x78\x50\xc2\x6c\x9c\xd0\xd8\x9d", 4416 }, { 4417 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 4418 .psize = 56, 4419 .digest = "\x84\x98\x3e\x44\x1c\x3b\xd2\x6e\xba\xae" 4420 "\x4a\xa1\xf9\x51\x29\xe5\xe5\x46\x70\xf1", 4421 }, { 4422 .plaintext = "\xec\x29\x56\x12\x44\xed\xe7\x06" 4423 "\xb6\xeb\x30\xa1\xc3\x71\xd7\x44" 4424 "\x50\xa1\x05\xc3\xf9\x73\x5f\x7f" 4425 "\xa9\xfe\x38\xcf\x67\xf3\x04\xa5" 4426 "\x73\x6a\x10\x6e\x92\xe1\x71\x39" 4427 "\xa6\x81\x3b\x1c\x81\xa4\xf3\xd3" 4428 "\xfb\x95\x46\xab\x42\x96\xfa\x9f" 4429 "\x72\x28\x26\xc0\x66\x86\x9e\xda" 4430 "\xcd\x73\xb2\x54\x80\x35\x18\x58" 4431 "\x13\xe2\x26\x34\xa9\xda\x44\x00" 4432 "\x0d\x95\xa2\x81\xff\x9f\x26\x4e" 4433 "\xcc\xe0\xa9\x31\x22\x21\x62\xd0" 4434 "\x21\xcc\xa2\x8d\xb5\xf3\xc2\xaa" 4435 "\x24\x94\x5a\xb1\xe3\x1c\xb4\x13" 4436 "\xae\x29\x81\x0f\xd7\x94\xca\xd5" 4437 "\xdf\xaf\x29\xec\x43\xcb\x38\xd1" 4438 "\x98\xfe\x4a\xe1\xda\x23\x59\x78" 4439 "\x02\x21\x40\x5b\xd6\x71\x2a\x53" 4440 "\x05\xda\x4b\x1b\x73\x7f\xce\x7c" 4441 "\xd2\x1c\x0e\xb7\x72\x8d\x08\x23" 4442 "\x5a\x90\x11", 4443 .psize = 163, 4444 .digest = "\x97\x01\x11\xc4\xe7\x7b\xcc\x88\xcc\x20" 4445 "\x45\x9c\x02\xb6\x9b\x4a\xa8\xf5\x82\x17", 4446 }, { 4447 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-", 4448 .psize = 64, 4449 .digest = "\xc8\x71\xf6\x9a\x63\xcc\xa9\x84\x84\x82" 4450 "\x64\xe7\x79\x95\x5d\xd7\x19\x41\x7c\x91", 4451 }, { 4452 .plaintext = "\x08\x9f\x13\xaa\x41\xd8\x4c\xe3" 4453 "\x7a\x11\x85\x1c\xb3\x27\xbe\x55" 4454 "\xec\x60\xf7\x8e\x02\x99\x30\xc7" 4455 "\x3b\xd2\x69\x00\x74\x0b\xa2\x16" 4456 "\xad\x44\xdb\x4f\xe6\x7d\x14\x88" 4457 "\x1f\xb6\x2a\xc1\x58\xef\x63\xfa" 4458 "\x91\x05\x9c\x33\xca\x3e\xd5\x6c" 4459 "\x03\x77\x0e\xa5\x19\xb0\x47\xde" 4460 "\x52\xe9\x80\x17\x8b\x22\xb9\x2d" 4461 "\xc4\x5b\xf2\x66\xfd\x94\x08\x9f" 4462 "\x36\xcd\x41\xd8\x6f\x06\x7a\x11" 4463 "\xa8\x1c\xb3\x4a\xe1\x55\xec\x83" 4464 "\x1a\x8e\x25\xbc\x30\xc7\x5e\xf5" 4465 "\x69\x00\x97\x0b\xa2\x39\xd0\x44" 4466 "\xdb\x72\x09\x7d\x14\xab\x1f\xb6" 4467 "\x4d\xe4\x58\xef\x86\x1d\x91\x28" 4468 "\xbf\x33\xca\x61\xf8\x6c\x03\x9a" 4469 "\x0e\xa5\x3c\xd3\x47\xde\x75\x0c" 4470 "\x80\x17\xae\x22\xb9\x50\xe7\x5b" 4471 "\xf2\x89\x20\x94\x2b\xc2\x36\xcd" 4472 "\x64\xfb\x6f\x06\x9d\x11\xa8\x3f" 4473 "\xd6\x4a\xe1\x78\x0f\x83\x1a\xb1" 4474 "\x25\xbc\x53\xea\x5e\xf5\x8c\x00" 4475 "\x97\x2e\xc5\x39\xd0\x67\xfe\x72" 4476 "\x09\xa0\x14\xab\x42\xd9\x4d\xe4" 4477 "\x7b\x12\x86\x1d\xb4\x28\xbf\x56" 4478 "\xed\x61\xf8\x8f\x03\x9a\x31\xc8" 4479 "\x3c\xd3\x6a\x01\x75\x0c\xa3\x17" 4480 "\xae\x45\xdc\x50\xe7\x7e\x15\x89" 4481 "\x20\xb7\x2b\xc2\x59\xf0\x64\xfb" 4482 "\x92\x06\x9d\x34\xcb\x3f\xd6\x6d" 4483 "\x04\x78\x0f\xa6\x1a\xb1\x48\xdf" 4484 "\x53\xea\x81\x18\x8c\x23\xba\x2e" 4485 "\xc5\x5c\xf3\x67\xfe\x95\x09\xa0" 4486 "\x37\xce\x42\xd9\x70\x07\x7b\x12" 4487 "\xa9\x1d\xb4\x4b\xe2\x56\xed\x84" 4488 "\x1b\x8f\x26\xbd\x31\xc8\x5f\xf6" 4489 "\x6a\x01\x98\x0c\xa3\x3a\xd1\x45" 4490 "\xdc\x73\x0a\x7e\x15\xac\x20\xb7" 4491 "\x4e\xe5\x59\xf0\x87\x1e\x92\x29" 4492 "\xc0\x34\xcb\x62\xf9\x6d\x04\x9b" 4493 "\x0f\xa6\x3d\xd4\x48\xdf\x76\x0d" 4494 "\x81\x18\xaf\x23\xba\x51\xe8\x5c" 4495 "\xf3\x8a\x21\x95\x2c\xc3\x37\xce" 4496 "\x65\xfc\x70\x07\x9e\x12\xa9\x40" 4497 "\xd7\x4b\xe2\x79\x10\x84\x1b\xb2" 4498 "\x26\xbd\x54\xeb\x5f\xf6\x8d\x01" 4499 "\x98\x2f\xc6\x3a\xd1\x68\xff\x73" 4500 "\x0a\xa1\x15\xac\x43\xda\x4e\xe5" 4501 "\x7c\x13\x87\x1e\xb5\x29\xc0\x57" 4502 "\xee\x62\xf9\x90\x04\x9b\x32\xc9" 4503 "\x3d\xd4\x6b\x02\x76\x0d\xa4\x18" 4504 "\xaf\x46\xdd\x51\xe8\x7f\x16\x8a" 4505 "\x21\xb8\x2c\xc3\x5a\xf1\x65\xfc" 4506 "\x93\x07\x9e\x35\xcc\x40\xd7\x6e" 4507 "\x05\x79\x10\xa7\x1b\xb2\x49\xe0" 4508 "\x54\xeb\x82\x19\x8d\x24\xbb\x2f" 4509 "\xc6\x5d\xf4\x68\xff\x96\x0a\xa1" 4510 "\x38\xcf\x43\xda\x71\x08\x7c\x13" 4511 "\xaa\x1e\xb5\x4c\xe3\x57\xee\x85" 4512 "\x1c\x90\x27\xbe\x32\xc9\x60\xf7" 4513 "\x6b\x02\x99\x0d\xa4\x3b\xd2\x46" 4514 "\xdd\x74\x0b\x7f\x16\xad\x21\xb8" 4515 "\x4f\xe6\x5a\xf1\x88\x1f\x93\x2a" 4516 "\xc1\x35\xcc\x63\xfa\x6e\x05\x9c" 4517 "\x10\xa7\x3e\xd5\x49\xe0\x77\x0e" 4518 "\x82\x19\xb0\x24\xbb\x52\xe9\x5d" 4519 "\xf4\x8b\x22\x96\x2d\xc4\x38\xcf" 4520 "\x66\xfd\x71\x08\x9f\x13\xaa\x41" 4521 "\xd8\x4c\xe3\x7a\x11\x85\x1c\xb3" 4522 "\x27\xbe\x55\xec\x60\xf7\x8e\x02" 4523 "\x99\x30\xc7\x3b\xd2\x69\x00\x74" 4524 "\x0b\xa2\x16\xad\x44\xdb\x4f\xe6" 4525 "\x7d\x14\x88\x1f\xb6\x2a\xc1\x58" 4526 "\xef\x63\xfa\x91\x05\x9c\x33\xca" 4527 "\x3e\xd5\x6c\x03\x77\x0e\xa5\x19" 4528 "\xb0\x47\xde\x52\xe9\x80\x17\x8b" 4529 "\x22\xb9\x2d\xc4\x5b\xf2\x66\xfd" 4530 "\x94\x08\x9f\x36\xcd\x41\xd8\x6f" 4531 "\x06\x7a\x11\xa8\x1c\xb3\x4a\xe1" 4532 "\x55\xec\x83\x1a\x8e\x25\xbc\x30" 4533 "\xc7\x5e\xf5\x69\x00\x97\x0b\xa2" 4534 "\x39\xd0\x44\xdb\x72\x09\x7d\x14" 4535 "\xab\x1f\xb6\x4d\xe4\x58\xef\x86" 4536 "\x1d\x91\x28\xbf\x33\xca\x61\xf8" 4537 "\x6c\x03\x9a\x0e\xa5\x3c\xd3\x47" 4538 "\xde\x75\x0c\x80\x17\xae\x22\xb9" 4539 "\x50\xe7\x5b\xf2\x89\x20\x94\x2b" 4540 "\xc2\x36\xcd\x64\xfb\x6f\x06\x9d" 4541 "\x11\xa8\x3f\xd6\x4a\xe1\x78\x0f" 4542 "\x83\x1a\xb1\x25\xbc\x53\xea\x5e" 4543 "\xf5\x8c\x00\x97\x2e\xc5\x39\xd0" 4544 "\x67\xfe\x72\x09\xa0\x14\xab\x42" 4545 "\xd9\x4d\xe4\x7b\x12\x86\x1d\xb4" 4546 "\x28\xbf\x56\xed\x61\xf8\x8f\x03" 4547 "\x9a\x31\xc8\x3c\xd3\x6a\x01\x75" 4548 "\x0c\xa3\x17\xae\x45\xdc\x50\xe7" 4549 "\x7e\x15\x89\x20\xb7\x2b\xc2\x59" 4550 "\xf0\x64\xfb\x92\x06\x9d\x34\xcb" 4551 "\x3f\xd6\x6d\x04\x78\x0f\xa6\x1a" 4552 "\xb1\x48\xdf\x53\xea\x81\x18\x8c" 4553 "\x23\xba\x2e\xc5\x5c\xf3\x67\xfe" 4554 "\x95\x09\xa0\x37\xce\x42\xd9\x70" 4555 "\x07\x7b\x12\xa9\x1d\xb4\x4b\xe2" 4556 "\x56\xed\x84\x1b\x8f\x26\xbd\x31" 4557 "\xc8\x5f\xf6\x6a\x01\x98\x0c\xa3" 4558 "\x3a\xd1\x45\xdc\x73\x0a\x7e\x15" 4559 "\xac\x20\xb7\x4e\xe5\x59\xf0\x87" 4560 "\x1e\x92\x29\xc0\x34\xcb\x62\xf9" 4561 "\x6d\x04\x9b\x0f\xa6\x3d\xd4\x48" 4562 "\xdf\x76\x0d\x81\x18\xaf\x23\xba" 4563 "\x51\xe8\x5c\xf3\x8a\x21\x95\x2c" 4564 "\xc3\x37\xce\x65\xfc\x70\x07\x9e" 4565 "\x12\xa9\x40\xd7\x4b\xe2\x79\x10" 4566 "\x84\x1b\xb2\x26\xbd\x54\xeb\x5f" 4567 "\xf6\x8d\x01\x98\x2f\xc6\x3a\xd1" 4568 "\x68\xff\x73\x0a\xa1\x15\xac\x43" 4569 "\xda\x4e\xe5\x7c\x13\x87\x1e\xb5" 4570 "\x29\xc0\x57\xee\x62\xf9\x90\x04" 4571 "\x9b\x32\xc9\x3d\xd4\x6b\x02\x76" 4572 "\x0d\xa4\x18\xaf\x46\xdd\x51\xe8" 4573 "\x7f\x16\x8a\x21\xb8\x2c\xc3\x5a" 4574 "\xf1\x65\xfc\x93\x07\x9e\x35\xcc" 4575 "\x40\xd7\x6e\x05\x79\x10\xa7\x1b" 4576 "\xb2\x49\xe0\x54\xeb\x82\x19\x8d" 4577 "\x24\xbb\x2f\xc6\x5d\xf4\x68\xff" 4578 "\x96\x0a\xa1\x38\xcf\x43\xda\x71" 4579 "\x08\x7c\x13\xaa\x1e\xb5\x4c", 4580 .psize = 1023, 4581 .digest = "\xb8\xe3\x54\xed\xc5\xfc\xef\xa4" 4582 "\x55\x73\x4a\x81\x99\xe4\x47\x2a" 4583 "\x30\xd6\xc9\x85", 4584 } 4585 }; 4586 4587 4588 /* 4589 * SHA224 test vectors from FIPS PUB 180-2 4590 */ 4591 static const struct hash_testvec sha224_tv_template[] = { 4592 { 4593 .plaintext = "", 4594 .psize = 0, 4595 .digest = "\xd1\x4a\x02\x8c\x2a\x3a\x2b\xc9" 4596 "\x47\x61\x02\xbb\x28\x82\x34\xc4" 4597 "\x15\xa2\xb0\x1f\x82\x8e\xa6\x2a" 4598 "\xc5\xb3\xe4\x2f", 4599 }, { 4600 .plaintext = "abc", 4601 .psize = 3, 4602 .digest = "\x23\x09\x7D\x22\x34\x05\xD8\x22" 4603 "\x86\x42\xA4\x77\xBD\xA2\x55\xB3" 4604 "\x2A\xAD\xBC\xE4\xBD\xA0\xB3\xF7" 4605 "\xE3\x6C\x9D\xA7", 4606 }, { 4607 .plaintext = 4608 "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 4609 .psize = 56, 4610 .digest = "\x75\x38\x8B\x16\x51\x27\x76\xCC" 4611 "\x5D\xBA\x5D\xA1\xFD\x89\x01\x50" 4612 "\xB0\xC6\x45\x5C\xB4\xF5\x8B\x19" 4613 "\x52\x52\x25\x25", 4614 }, { 4615 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-", 4616 .psize = 64, 4617 .digest = "\xc4\xdb\x2b\x3a\x58\xc3\x99\x01" 4618 "\x42\xfd\x10\x92\xaa\x4e\x04\x08" 4619 "\x58\xbb\xbb\xe8\xf8\x14\xa7\x0c" 4620 "\xef\x3b\xcb\x0e", 4621 }, { 4622 .plaintext = "\x08\x9f\x13\xaa\x41\xd8\x4c\xe3" 4623 "\x7a\x11\x85\x1c\xb3\x27\xbe\x55" 4624 "\xec\x60\xf7\x8e\x02\x99\x30\xc7" 4625 "\x3b\xd2\x69\x00\x74\x0b\xa2\x16" 4626 "\xad\x44\xdb\x4f\xe6\x7d\x14\x88" 4627 "\x1f\xb6\x2a\xc1\x58\xef\x63\xfa" 4628 "\x91\x05\x9c\x33\xca\x3e\xd5\x6c" 4629 "\x03\x77\x0e\xa5\x19\xb0\x47\xde" 4630 "\x52\xe9\x80\x17\x8b\x22\xb9\x2d" 4631 "\xc4\x5b\xf2\x66\xfd\x94\x08\x9f" 4632 "\x36\xcd\x41\xd8\x6f\x06\x7a\x11" 4633 "\xa8\x1c\xb3\x4a\xe1\x55\xec\x83" 4634 "\x1a\x8e\x25\xbc\x30\xc7\x5e\xf5" 4635 "\x69\x00\x97\x0b\xa2\x39\xd0\x44" 4636 "\xdb\x72\x09\x7d\x14\xab\x1f\xb6" 4637 "\x4d\xe4\x58\xef\x86\x1d\x91\x28" 4638 "\xbf\x33\xca\x61\xf8\x6c\x03\x9a" 4639 "\x0e\xa5\x3c\xd3\x47\xde\x75\x0c" 4640 "\x80\x17\xae\x22\xb9\x50\xe7\x5b" 4641 "\xf2\x89\x20\x94\x2b\xc2\x36\xcd" 4642 "\x64\xfb\x6f\x06\x9d\x11\xa8\x3f" 4643 "\xd6\x4a\xe1\x78\x0f\x83\x1a\xb1" 4644 "\x25\xbc\x53\xea\x5e\xf5\x8c\x00" 4645 "\x97\x2e\xc5\x39\xd0\x67\xfe\x72" 4646 "\x09\xa0\x14\xab\x42\xd9\x4d\xe4" 4647 "\x7b\x12\x86\x1d\xb4\x28\xbf\x56" 4648 "\xed\x61\xf8\x8f\x03\x9a\x31\xc8" 4649 "\x3c\xd3\x6a\x01\x75\x0c\xa3\x17" 4650 "\xae\x45\xdc\x50\xe7\x7e\x15\x89" 4651 "\x20\xb7\x2b\xc2\x59\xf0\x64\xfb" 4652 "\x92\x06\x9d\x34\xcb\x3f\xd6\x6d" 4653 "\x04\x78\x0f\xa6\x1a\xb1\x48\xdf" 4654 "\x53\xea\x81\x18\x8c\x23\xba\x2e" 4655 "\xc5\x5c\xf3\x67\xfe\x95\x09\xa0" 4656 "\x37\xce\x42\xd9\x70\x07\x7b\x12" 4657 "\xa9\x1d\xb4\x4b\xe2\x56\xed\x84" 4658 "\x1b\x8f\x26\xbd\x31\xc8\x5f\xf6" 4659 "\x6a\x01\x98\x0c\xa3\x3a\xd1\x45" 4660 "\xdc\x73\x0a\x7e\x15\xac\x20\xb7" 4661 "\x4e\xe5\x59\xf0\x87\x1e\x92\x29" 4662 "\xc0\x34\xcb\x62\xf9\x6d\x04\x9b" 4663 "\x0f\xa6\x3d\xd4\x48\xdf\x76\x0d" 4664 "\x81\x18\xaf\x23\xba\x51\xe8\x5c" 4665 "\xf3\x8a\x21\x95\x2c\xc3\x37\xce" 4666 "\x65\xfc\x70\x07\x9e\x12\xa9\x40" 4667 "\xd7\x4b\xe2\x79\x10\x84\x1b\xb2" 4668 "\x26\xbd\x54\xeb\x5f\xf6\x8d\x01" 4669 "\x98\x2f\xc6\x3a\xd1\x68\xff\x73" 4670 "\x0a\xa1\x15\xac\x43\xda\x4e\xe5" 4671 "\x7c\x13\x87\x1e\xb5\x29\xc0\x57" 4672 "\xee\x62\xf9\x90\x04\x9b\x32\xc9" 4673 "\x3d\xd4\x6b\x02\x76\x0d\xa4\x18" 4674 "\xaf\x46\xdd\x51\xe8\x7f\x16\x8a" 4675 "\x21\xb8\x2c\xc3\x5a\xf1\x65\xfc" 4676 "\x93\x07\x9e\x35\xcc\x40\xd7\x6e" 4677 "\x05\x79\x10\xa7\x1b\xb2\x49\xe0" 4678 "\x54\xeb\x82\x19\x8d\x24\xbb\x2f" 4679 "\xc6\x5d\xf4\x68\xff\x96\x0a\xa1" 4680 "\x38\xcf\x43\xda\x71\x08\x7c\x13" 4681 "\xaa\x1e\xb5\x4c\xe3\x57\xee\x85" 4682 "\x1c\x90\x27\xbe\x32\xc9\x60\xf7" 4683 "\x6b\x02\x99\x0d\xa4\x3b\xd2\x46" 4684 "\xdd\x74\x0b\x7f\x16\xad\x21\xb8" 4685 "\x4f\xe6\x5a\xf1\x88\x1f\x93\x2a" 4686 "\xc1\x35\xcc\x63\xfa\x6e\x05\x9c" 4687 "\x10\xa7\x3e\xd5\x49\xe0\x77\x0e" 4688 "\x82\x19\xb0\x24\xbb\x52\xe9\x5d" 4689 "\xf4\x8b\x22\x96\x2d\xc4\x38\xcf" 4690 "\x66\xfd\x71\x08\x9f\x13\xaa\x41" 4691 "\xd8\x4c\xe3\x7a\x11\x85\x1c\xb3" 4692 "\x27\xbe\x55\xec\x60\xf7\x8e\x02" 4693 "\x99\x30\xc7\x3b\xd2\x69\x00\x74" 4694 "\x0b\xa2\x16\xad\x44\xdb\x4f\xe6" 4695 "\x7d\x14\x88\x1f\xb6\x2a\xc1\x58" 4696 "\xef\x63\xfa\x91\x05\x9c\x33\xca" 4697 "\x3e\xd5\x6c\x03\x77\x0e\xa5\x19" 4698 "\xb0\x47\xde\x52\xe9\x80\x17\x8b" 4699 "\x22\xb9\x2d\xc4\x5b\xf2\x66\xfd" 4700 "\x94\x08\x9f\x36\xcd\x41\xd8\x6f" 4701 "\x06\x7a\x11\xa8\x1c\xb3\x4a\xe1" 4702 "\x55\xec\x83\x1a\x8e\x25\xbc\x30" 4703 "\xc7\x5e\xf5\x69\x00\x97\x0b\xa2" 4704 "\x39\xd0\x44\xdb\x72\x09\x7d\x14" 4705 "\xab\x1f\xb6\x4d\xe4\x58\xef\x86" 4706 "\x1d\x91\x28\xbf\x33\xca\x61\xf8" 4707 "\x6c\x03\x9a\x0e\xa5\x3c\xd3\x47" 4708 "\xde\x75\x0c\x80\x17\xae\x22\xb9" 4709 "\x50\xe7\x5b\xf2\x89\x20\x94\x2b" 4710 "\xc2\x36\xcd\x64\xfb\x6f\x06\x9d" 4711 "\x11\xa8\x3f\xd6\x4a\xe1\x78\x0f" 4712 "\x83\x1a\xb1\x25\xbc\x53\xea\x5e" 4713 "\xf5\x8c\x00\x97\x2e\xc5\x39\xd0" 4714 "\x67\xfe\x72\x09\xa0\x14\xab\x42" 4715 "\xd9\x4d\xe4\x7b\x12\x86\x1d\xb4" 4716 "\x28\xbf\x56\xed\x61\xf8\x8f\x03" 4717 "\x9a\x31\xc8\x3c\xd3\x6a\x01\x75" 4718 "\x0c\xa3\x17\xae\x45\xdc\x50\xe7" 4719 "\x7e\x15\x89\x20\xb7\x2b\xc2\x59" 4720 "\xf0\x64\xfb\x92\x06\x9d\x34\xcb" 4721 "\x3f\xd6\x6d\x04\x78\x0f\xa6\x1a" 4722 "\xb1\x48\xdf\x53\xea\x81\x18\x8c" 4723 "\x23\xba\x2e\xc5\x5c\xf3\x67\xfe" 4724 "\x95\x09\xa0\x37\xce\x42\xd9\x70" 4725 "\x07\x7b\x12\xa9\x1d\xb4\x4b\xe2" 4726 "\x56\xed\x84\x1b\x8f\x26\xbd\x31" 4727 "\xc8\x5f\xf6\x6a\x01\x98\x0c\xa3" 4728 "\x3a\xd1\x45\xdc\x73\x0a\x7e\x15" 4729 "\xac\x20\xb7\x4e\xe5\x59\xf0\x87" 4730 "\x1e\x92\x29\xc0\x34\xcb\x62\xf9" 4731 "\x6d\x04\x9b\x0f\xa6\x3d\xd4\x48" 4732 "\xdf\x76\x0d\x81\x18\xaf\x23\xba" 4733 "\x51\xe8\x5c\xf3\x8a\x21\x95\x2c" 4734 "\xc3\x37\xce\x65\xfc\x70\x07\x9e" 4735 "\x12\xa9\x40\xd7\x4b\xe2\x79\x10" 4736 "\x84\x1b\xb2\x26\xbd\x54\xeb\x5f" 4737 "\xf6\x8d\x01\x98\x2f\xc6\x3a\xd1" 4738 "\x68\xff\x73\x0a\xa1\x15\xac\x43" 4739 "\xda\x4e\xe5\x7c\x13\x87\x1e\xb5" 4740 "\x29\xc0\x57\xee\x62\xf9\x90\x04" 4741 "\x9b\x32\xc9\x3d\xd4\x6b\x02\x76" 4742 "\x0d\xa4\x18\xaf\x46\xdd\x51\xe8" 4743 "\x7f\x16\x8a\x21\xb8\x2c\xc3\x5a" 4744 "\xf1\x65\xfc\x93\x07\x9e\x35\xcc" 4745 "\x40\xd7\x6e\x05\x79\x10\xa7\x1b" 4746 "\xb2\x49\xe0\x54\xeb\x82\x19\x8d" 4747 "\x24\xbb\x2f\xc6\x5d\xf4\x68\xff" 4748 "\x96\x0a\xa1\x38\xcf\x43\xda\x71" 4749 "\x08\x7c\x13\xaa\x1e\xb5\x4c", 4750 .psize = 1023, 4751 .digest = "\x98\x43\x07\x63\x75\xe0\xa7\x1c" 4752 "\x78\xb1\x8b\xfd\x04\xf5\x2d\x91" 4753 "\x20\x48\xa4\x28\xff\x55\xb1\xd3" 4754 "\xe6\xf9\x4f\xcc", 4755 } 4756 }; 4757 4758 /* 4759 * SHA256 test vectors from NIST 4760 */ 4761 static const struct hash_testvec sha256_tv_template[] = { 4762 { 4763 .plaintext = "", 4764 .psize = 0, 4765 .digest = "\xe3\xb0\xc4\x42\x98\xfc\x1c\x14" 4766 "\x9a\xfb\xf4\xc8\x99\x6f\xb9\x24" 4767 "\x27\xae\x41\xe4\x64\x9b\x93\x4c" 4768 "\xa4\x95\x99\x1b\x78\x52\xb8\x55", 4769 }, { 4770 .plaintext = "abc", 4771 .psize = 3, 4772 .digest = "\xba\x78\x16\xbf\x8f\x01\xcf\xea" 4773 "\x41\x41\x40\xde\x5d\xae\x22\x23" 4774 "\xb0\x03\x61\xa3\x96\x17\x7a\x9c" 4775 "\xb4\x10\xff\x61\xf2\x00\x15\xad", 4776 }, { 4777 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 4778 .psize = 56, 4779 .digest = "\x24\x8d\x6a\x61\xd2\x06\x38\xb8" 4780 "\xe5\xc0\x26\x93\x0c\x3e\x60\x39" 4781 "\xa3\x3c\xe4\x59\x64\xff\x21\x67" 4782 "\xf6\xec\xed\xd4\x19\xdb\x06\xc1", 4783 }, { 4784 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-", 4785 .psize = 64, 4786 .digest = "\xb5\xfe\xad\x56\x7d\xff\xcb\xa4" 4787 "\x2c\x32\x29\x32\x19\xbb\xfb\xfa" 4788 "\xd6\xff\x94\xa3\x72\x91\x85\x66" 4789 "\x3b\xa7\x87\x77\x58\xa3\x40\x3a", 4790 }, { 4791 .plaintext = "\x08\x9f\x13\xaa\x41\xd8\x4c\xe3" 4792 "\x7a\x11\x85\x1c\xb3\x27\xbe\x55" 4793 "\xec\x60\xf7\x8e\x02\x99\x30\xc7" 4794 "\x3b\xd2\x69\x00\x74\x0b\xa2\x16" 4795 "\xad\x44\xdb\x4f\xe6\x7d\x14\x88" 4796 "\x1f\xb6\x2a\xc1\x58\xef\x63\xfa" 4797 "\x91\x05\x9c\x33\xca\x3e\xd5\x6c" 4798 "\x03\x77\x0e\xa5\x19\xb0\x47\xde" 4799 "\x52\xe9\x80\x17\x8b\x22\xb9\x2d" 4800 "\xc4\x5b\xf2\x66\xfd\x94\x08\x9f" 4801 "\x36\xcd\x41\xd8\x6f\x06\x7a\x11" 4802 "\xa8\x1c\xb3\x4a\xe1\x55\xec\x83" 4803 "\x1a\x8e\x25\xbc\x30\xc7\x5e\xf5" 4804 "\x69\x00\x97\x0b\xa2\x39\xd0\x44" 4805 "\xdb\x72\x09\x7d\x14\xab\x1f\xb6" 4806 "\x4d\xe4\x58\xef\x86\x1d\x91\x28" 4807 "\xbf\x33\xca\x61\xf8\x6c\x03\x9a" 4808 "\x0e\xa5\x3c\xd3\x47\xde\x75\x0c" 4809 "\x80\x17\xae\x22\xb9\x50\xe7\x5b" 4810 "\xf2\x89\x20\x94\x2b\xc2\x36\xcd" 4811 "\x64\xfb\x6f\x06\x9d\x11\xa8\x3f" 4812 "\xd6\x4a\xe1\x78\x0f\x83\x1a\xb1" 4813 "\x25\xbc\x53\xea\x5e\xf5\x8c\x00" 4814 "\x97\x2e\xc5\x39\xd0\x67\xfe\x72" 4815 "\x09\xa0\x14\xab\x42\xd9\x4d\xe4" 4816 "\x7b\x12\x86\x1d\xb4\x28\xbf\x56" 4817 "\xed\x61\xf8\x8f\x03\x9a\x31\xc8" 4818 "\x3c\xd3\x6a\x01\x75\x0c\xa3\x17" 4819 "\xae\x45\xdc\x50\xe7\x7e\x15\x89" 4820 "\x20\xb7\x2b\xc2\x59\xf0\x64\xfb" 4821 "\x92\x06\x9d\x34\xcb\x3f\xd6\x6d" 4822 "\x04\x78\x0f\xa6\x1a\xb1\x48\xdf" 4823 "\x53\xea\x81\x18\x8c\x23\xba\x2e" 4824 "\xc5\x5c\xf3\x67\xfe\x95\x09\xa0" 4825 "\x37\xce\x42\xd9\x70\x07\x7b\x12" 4826 "\xa9\x1d\xb4\x4b\xe2\x56\xed\x84" 4827 "\x1b\x8f\x26\xbd\x31\xc8\x5f\xf6" 4828 "\x6a\x01\x98\x0c\xa3\x3a\xd1\x45" 4829 "\xdc\x73\x0a\x7e\x15\xac\x20\xb7" 4830 "\x4e\xe5\x59\xf0\x87\x1e\x92\x29" 4831 "\xc0\x34\xcb\x62\xf9\x6d\x04\x9b" 4832 "\x0f\xa6\x3d\xd4\x48\xdf\x76\x0d" 4833 "\x81\x18\xaf\x23\xba\x51\xe8\x5c" 4834 "\xf3\x8a\x21\x95\x2c\xc3\x37\xce" 4835 "\x65\xfc\x70\x07\x9e\x12\xa9\x40" 4836 "\xd7\x4b\xe2\x79\x10\x84\x1b\xb2" 4837 "\x26\xbd\x54\xeb\x5f\xf6\x8d\x01" 4838 "\x98\x2f\xc6\x3a\xd1\x68\xff\x73" 4839 "\x0a\xa1\x15\xac\x43\xda\x4e\xe5" 4840 "\x7c\x13\x87\x1e\xb5\x29\xc0\x57" 4841 "\xee\x62\xf9\x90\x04\x9b\x32\xc9" 4842 "\x3d\xd4\x6b\x02\x76\x0d\xa4\x18" 4843 "\xaf\x46\xdd\x51\xe8\x7f\x16\x8a" 4844 "\x21\xb8\x2c\xc3\x5a\xf1\x65\xfc" 4845 "\x93\x07\x9e\x35\xcc\x40\xd7\x6e" 4846 "\x05\x79\x10\xa7\x1b\xb2\x49\xe0" 4847 "\x54\xeb\x82\x19\x8d\x24\xbb\x2f" 4848 "\xc6\x5d\xf4\x68\xff\x96\x0a\xa1" 4849 "\x38\xcf\x43\xda\x71\x08\x7c\x13" 4850 "\xaa\x1e\xb5\x4c\xe3\x57\xee\x85" 4851 "\x1c\x90\x27\xbe\x32\xc9\x60\xf7" 4852 "\x6b\x02\x99\x0d\xa4\x3b\xd2\x46" 4853 "\xdd\x74\x0b\x7f\x16\xad\x21\xb8" 4854 "\x4f\xe6\x5a\xf1\x88\x1f\x93\x2a" 4855 "\xc1\x35\xcc\x63\xfa\x6e\x05\x9c" 4856 "\x10\xa7\x3e\xd5\x49\xe0\x77\x0e" 4857 "\x82\x19\xb0\x24\xbb\x52\xe9\x5d" 4858 "\xf4\x8b\x22\x96\x2d\xc4\x38\xcf" 4859 "\x66\xfd\x71\x08\x9f\x13\xaa\x41" 4860 "\xd8\x4c\xe3\x7a\x11\x85\x1c\xb3" 4861 "\x27\xbe\x55\xec\x60\xf7\x8e\x02" 4862 "\x99\x30\xc7\x3b\xd2\x69\x00\x74" 4863 "\x0b\xa2\x16\xad\x44\xdb\x4f\xe6" 4864 "\x7d\x14\x88\x1f\xb6\x2a\xc1\x58" 4865 "\xef\x63\xfa\x91\x05\x9c\x33\xca" 4866 "\x3e\xd5\x6c\x03\x77\x0e\xa5\x19" 4867 "\xb0\x47\xde\x52\xe9\x80\x17\x8b" 4868 "\x22\xb9\x2d\xc4\x5b\xf2\x66\xfd" 4869 "\x94\x08\x9f\x36\xcd\x41\xd8\x6f" 4870 "\x06\x7a\x11\xa8\x1c\xb3\x4a\xe1" 4871 "\x55\xec\x83\x1a\x8e\x25\xbc\x30" 4872 "\xc7\x5e\xf5\x69\x00\x97\x0b\xa2" 4873 "\x39\xd0\x44\xdb\x72\x09\x7d\x14" 4874 "\xab\x1f\xb6\x4d\xe4\x58\xef\x86" 4875 "\x1d\x91\x28\xbf\x33\xca\x61\xf8" 4876 "\x6c\x03\x9a\x0e\xa5\x3c\xd3\x47" 4877 "\xde\x75\x0c\x80\x17\xae\x22\xb9" 4878 "\x50\xe7\x5b\xf2\x89\x20\x94\x2b" 4879 "\xc2\x36\xcd\x64\xfb\x6f\x06\x9d" 4880 "\x11\xa8\x3f\xd6\x4a\xe1\x78\x0f" 4881 "\x83\x1a\xb1\x25\xbc\x53\xea\x5e" 4882 "\xf5\x8c\x00\x97\x2e\xc5\x39\xd0" 4883 "\x67\xfe\x72\x09\xa0\x14\xab\x42" 4884 "\xd9\x4d\xe4\x7b\x12\x86\x1d\xb4" 4885 "\x28\xbf\x56\xed\x61\xf8\x8f\x03" 4886 "\x9a\x31\xc8\x3c\xd3\x6a\x01\x75" 4887 "\x0c\xa3\x17\xae\x45\xdc\x50\xe7" 4888 "\x7e\x15\x89\x20\xb7\x2b\xc2\x59" 4889 "\xf0\x64\xfb\x92\x06\x9d\x34\xcb" 4890 "\x3f\xd6\x6d\x04\x78\x0f\xa6\x1a" 4891 "\xb1\x48\xdf\x53\xea\x81\x18\x8c" 4892 "\x23\xba\x2e\xc5\x5c\xf3\x67\xfe" 4893 "\x95\x09\xa0\x37\xce\x42\xd9\x70" 4894 "\x07\x7b\x12\xa9\x1d\xb4\x4b\xe2" 4895 "\x56\xed\x84\x1b\x8f\x26\xbd\x31" 4896 "\xc8\x5f\xf6\x6a\x01\x98\x0c\xa3" 4897 "\x3a\xd1\x45\xdc\x73\x0a\x7e\x15" 4898 "\xac\x20\xb7\x4e\xe5\x59\xf0\x87" 4899 "\x1e\x92\x29\xc0\x34\xcb\x62\xf9" 4900 "\x6d\x04\x9b\x0f\xa6\x3d\xd4\x48" 4901 "\xdf\x76\x0d\x81\x18\xaf\x23\xba" 4902 "\x51\xe8\x5c\xf3\x8a\x21\x95\x2c" 4903 "\xc3\x37\xce\x65\xfc\x70\x07\x9e" 4904 "\x12\xa9\x40\xd7\x4b\xe2\x79\x10" 4905 "\x84\x1b\xb2\x26\xbd\x54\xeb\x5f" 4906 "\xf6\x8d\x01\x98\x2f\xc6\x3a\xd1" 4907 "\x68\xff\x73\x0a\xa1\x15\xac\x43" 4908 "\xda\x4e\xe5\x7c\x13\x87\x1e\xb5" 4909 "\x29\xc0\x57\xee\x62\xf9\x90\x04" 4910 "\x9b\x32\xc9\x3d\xd4\x6b\x02\x76" 4911 "\x0d\xa4\x18\xaf\x46\xdd\x51\xe8" 4912 "\x7f\x16\x8a\x21\xb8\x2c\xc3\x5a" 4913 "\xf1\x65\xfc\x93\x07\x9e\x35\xcc" 4914 "\x40\xd7\x6e\x05\x79\x10\xa7\x1b" 4915 "\xb2\x49\xe0\x54\xeb\x82\x19\x8d" 4916 "\x24\xbb\x2f\xc6\x5d\xf4\x68\xff" 4917 "\x96\x0a\xa1\x38\xcf\x43\xda\x71" 4918 "\x08\x7c\x13\xaa\x1e\xb5\x4c", 4919 .psize = 1023, 4920 .digest = "\xc5\xce\x0c\xca\x01\x4f\x53\x3a" 4921 "\x32\x32\x17\xcc\xd4\x6a\x71\xa9" 4922 "\xf3\xed\x50\x10\x64\x8e\x06\xbe" 4923 "\x9b\x4a\xa6\xbb\x05\x89\x59\x51", 4924 } 4925 }; 4926 4927 /* 4928 * SHA384 test vectors from NIST and kerneli 4929 */ 4930 static const struct hash_testvec sha384_tv_template[] = { 4931 { 4932 .plaintext = "", 4933 .psize = 0, 4934 .digest = "\x38\xb0\x60\xa7\x51\xac\x96\x38" 4935 "\x4c\xd9\x32\x7e\xb1\xb1\xe3\x6a" 4936 "\x21\xfd\xb7\x11\x14\xbe\x07\x43" 4937 "\x4c\x0c\xc7\xbf\x63\xf6\xe1\xda" 4938 "\x27\x4e\xde\xbf\xe7\x6f\x65\xfb" 4939 "\xd5\x1a\xd2\xf1\x48\x98\xb9\x5b", 4940 }, { 4941 .plaintext= "abc", 4942 .psize = 3, 4943 .digest = "\xcb\x00\x75\x3f\x45\xa3\x5e\x8b" 4944 "\xb5\xa0\x3d\x69\x9a\xc6\x50\x07" 4945 "\x27\x2c\x32\xab\x0e\xde\xd1\x63" 4946 "\x1a\x8b\x60\x5a\x43\xff\x5b\xed" 4947 "\x80\x86\x07\x2b\xa1\xe7\xcc\x23" 4948 "\x58\xba\xec\xa1\x34\xc8\x25\xa7", 4949 }, { 4950 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 4951 .psize = 56, 4952 .digest = "\x33\x91\xfd\xdd\xfc\x8d\xc7\x39" 4953 "\x37\x07\xa6\x5b\x1b\x47\x09\x39" 4954 "\x7c\xf8\xb1\xd1\x62\xaf\x05\xab" 4955 "\xfe\x8f\x45\x0d\xe5\xf3\x6b\xc6" 4956 "\xb0\x45\x5a\x85\x20\xbc\x4e\x6f" 4957 "\x5f\xe9\x5b\x1f\xe3\xc8\x45\x2b", 4958 }, { 4959 .plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmn" 4960 "hijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu", 4961 .psize = 112, 4962 .digest = "\x09\x33\x0c\x33\xf7\x11\x47\xe8" 4963 "\x3d\x19\x2f\xc7\x82\xcd\x1b\x47" 4964 "\x53\x11\x1b\x17\x3b\x3b\x05\xd2" 4965 "\x2f\xa0\x80\x86\xe3\xb0\xf7\x12" 4966 "\xfc\xc7\xc7\x1a\x55\x7e\x2d\xb9" 4967 "\x66\xc3\xe9\xfa\x91\x74\x60\x39", 4968 }, { 4969 .plaintext = "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd" 4970 "efghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz", 4971 .psize = 104, 4972 .digest = "\x3d\x20\x89\x73\xab\x35\x08\xdb" 4973 "\xbd\x7e\x2c\x28\x62\xba\x29\x0a" 4974 "\xd3\x01\x0e\x49\x78\xc1\x98\xdc" 4975 "\x4d\x8f\xd0\x14\xe5\x82\x82\x3a" 4976 "\x89\xe1\x6f\x9b\x2a\x7b\xbc\x1a" 4977 "\xc9\x38\xe2\xd1\x99\xe8\xbe\xa4", 4978 }, { 4979 .plaintext = "\x08\x9f\x13\xaa\x41\xd8\x4c\xe3" 4980 "\x7a\x11\x85\x1c\xb3\x27\xbe\x55" 4981 "\xec\x60\xf7\x8e\x02\x99\x30\xc7" 4982 "\x3b\xd2\x69\x00\x74\x0b\xa2\x16" 4983 "\xad\x44\xdb\x4f\xe6\x7d\x14\x88" 4984 "\x1f\xb6\x2a\xc1\x58\xef\x63\xfa" 4985 "\x91\x05\x9c\x33\xca\x3e\xd5\x6c" 4986 "\x03\x77\x0e\xa5\x19\xb0\x47\xde" 4987 "\x52\xe9\x80\x17\x8b\x22\xb9\x2d" 4988 "\xc4\x5b\xf2\x66\xfd\x94\x08\x9f" 4989 "\x36\xcd\x41\xd8\x6f\x06\x7a\x11" 4990 "\xa8\x1c\xb3\x4a\xe1\x55\xec\x83" 4991 "\x1a\x8e\x25\xbc\x30\xc7\x5e\xf5" 4992 "\x69\x00\x97\x0b\xa2\x39\xd0\x44" 4993 "\xdb\x72\x09\x7d\x14\xab\x1f\xb6" 4994 "\x4d\xe4\x58\xef\x86\x1d\x91\x28" 4995 "\xbf\x33\xca\x61\xf8\x6c\x03\x9a" 4996 "\x0e\xa5\x3c\xd3\x47\xde\x75\x0c" 4997 "\x80\x17\xae\x22\xb9\x50\xe7\x5b" 4998 "\xf2\x89\x20\x94\x2b\xc2\x36\xcd" 4999 "\x64\xfb\x6f\x06\x9d\x11\xa8\x3f" 5000 "\xd6\x4a\xe1\x78\x0f\x83\x1a\xb1" 5001 "\x25\xbc\x53\xea\x5e\xf5\x8c\x00" 5002 "\x97\x2e\xc5\x39\xd0\x67\xfe\x72" 5003 "\x09\xa0\x14\xab\x42\xd9\x4d\xe4" 5004 "\x7b\x12\x86\x1d\xb4\x28\xbf\x56" 5005 "\xed\x61\xf8\x8f\x03\x9a\x31\xc8" 5006 "\x3c\xd3\x6a\x01\x75\x0c\xa3\x17" 5007 "\xae\x45\xdc\x50\xe7\x7e\x15\x89" 5008 "\x20\xb7\x2b\xc2\x59\xf0\x64\xfb" 5009 "\x92\x06\x9d\x34\xcb\x3f\xd6\x6d" 5010 "\x04\x78\x0f\xa6\x1a\xb1\x48\xdf" 5011 "\x53\xea\x81\x18\x8c\x23\xba\x2e" 5012 "\xc5\x5c\xf3\x67\xfe\x95\x09\xa0" 5013 "\x37\xce\x42\xd9\x70\x07\x7b\x12" 5014 "\xa9\x1d\xb4\x4b\xe2\x56\xed\x84" 5015 "\x1b\x8f\x26\xbd\x31\xc8\x5f\xf6" 5016 "\x6a\x01\x98\x0c\xa3\x3a\xd1\x45" 5017 "\xdc\x73\x0a\x7e\x15\xac\x20\xb7" 5018 "\x4e\xe5\x59\xf0\x87\x1e\x92\x29" 5019 "\xc0\x34\xcb\x62\xf9\x6d\x04\x9b" 5020 "\x0f\xa6\x3d\xd4\x48\xdf\x76\x0d" 5021 "\x81\x18\xaf\x23\xba\x51\xe8\x5c" 5022 "\xf3\x8a\x21\x95\x2c\xc3\x37\xce" 5023 "\x65\xfc\x70\x07\x9e\x12\xa9\x40" 5024 "\xd7\x4b\xe2\x79\x10\x84\x1b\xb2" 5025 "\x26\xbd\x54\xeb\x5f\xf6\x8d\x01" 5026 "\x98\x2f\xc6\x3a\xd1\x68\xff\x73" 5027 "\x0a\xa1\x15\xac\x43\xda\x4e\xe5" 5028 "\x7c\x13\x87\x1e\xb5\x29\xc0\x57" 5029 "\xee\x62\xf9\x90\x04\x9b\x32\xc9" 5030 "\x3d\xd4\x6b\x02\x76\x0d\xa4\x18" 5031 "\xaf\x46\xdd\x51\xe8\x7f\x16\x8a" 5032 "\x21\xb8\x2c\xc3\x5a\xf1\x65\xfc" 5033 "\x93\x07\x9e\x35\xcc\x40\xd7\x6e" 5034 "\x05\x79\x10\xa7\x1b\xb2\x49\xe0" 5035 "\x54\xeb\x82\x19\x8d\x24\xbb\x2f" 5036 "\xc6\x5d\xf4\x68\xff\x96\x0a\xa1" 5037 "\x38\xcf\x43\xda\x71\x08\x7c\x13" 5038 "\xaa\x1e\xb5\x4c\xe3\x57\xee\x85" 5039 "\x1c\x90\x27\xbe\x32\xc9\x60\xf7" 5040 "\x6b\x02\x99\x0d\xa4\x3b\xd2\x46" 5041 "\xdd\x74\x0b\x7f\x16\xad\x21\xb8" 5042 "\x4f\xe6\x5a\xf1\x88\x1f\x93\x2a" 5043 "\xc1\x35\xcc\x63\xfa\x6e\x05\x9c" 5044 "\x10\xa7\x3e\xd5\x49\xe0\x77\x0e" 5045 "\x82\x19\xb0\x24\xbb\x52\xe9\x5d" 5046 "\xf4\x8b\x22\x96\x2d\xc4\x38\xcf" 5047 "\x66\xfd\x71\x08\x9f\x13\xaa\x41" 5048 "\xd8\x4c\xe3\x7a\x11\x85\x1c\xb3" 5049 "\x27\xbe\x55\xec\x60\xf7\x8e\x02" 5050 "\x99\x30\xc7\x3b\xd2\x69\x00\x74" 5051 "\x0b\xa2\x16\xad\x44\xdb\x4f\xe6" 5052 "\x7d\x14\x88\x1f\xb6\x2a\xc1\x58" 5053 "\xef\x63\xfa\x91\x05\x9c\x33\xca" 5054 "\x3e\xd5\x6c\x03\x77\x0e\xa5\x19" 5055 "\xb0\x47\xde\x52\xe9\x80\x17\x8b" 5056 "\x22\xb9\x2d\xc4\x5b\xf2\x66\xfd" 5057 "\x94\x08\x9f\x36\xcd\x41\xd8\x6f" 5058 "\x06\x7a\x11\xa8\x1c\xb3\x4a\xe1" 5059 "\x55\xec\x83\x1a\x8e\x25\xbc\x30" 5060 "\xc7\x5e\xf5\x69\x00\x97\x0b\xa2" 5061 "\x39\xd0\x44\xdb\x72\x09\x7d\x14" 5062 "\xab\x1f\xb6\x4d\xe4\x58\xef\x86" 5063 "\x1d\x91\x28\xbf\x33\xca\x61\xf8" 5064 "\x6c\x03\x9a\x0e\xa5\x3c\xd3\x47" 5065 "\xde\x75\x0c\x80\x17\xae\x22\xb9" 5066 "\x50\xe7\x5b\xf2\x89\x20\x94\x2b" 5067 "\xc2\x36\xcd\x64\xfb\x6f\x06\x9d" 5068 "\x11\xa8\x3f\xd6\x4a\xe1\x78\x0f" 5069 "\x83\x1a\xb1\x25\xbc\x53\xea\x5e" 5070 "\xf5\x8c\x00\x97\x2e\xc5\x39\xd0" 5071 "\x67\xfe\x72\x09\xa0\x14\xab\x42" 5072 "\xd9\x4d\xe4\x7b\x12\x86\x1d\xb4" 5073 "\x28\xbf\x56\xed\x61\xf8\x8f\x03" 5074 "\x9a\x31\xc8\x3c\xd3\x6a\x01\x75" 5075 "\x0c\xa3\x17\xae\x45\xdc\x50\xe7" 5076 "\x7e\x15\x89\x20\xb7\x2b\xc2\x59" 5077 "\xf0\x64\xfb\x92\x06\x9d\x34\xcb" 5078 "\x3f\xd6\x6d\x04\x78\x0f\xa6\x1a" 5079 "\xb1\x48\xdf\x53\xea\x81\x18\x8c" 5080 "\x23\xba\x2e\xc5\x5c\xf3\x67\xfe" 5081 "\x95\x09\xa0\x37\xce\x42\xd9\x70" 5082 "\x07\x7b\x12\xa9\x1d\xb4\x4b\xe2" 5083 "\x56\xed\x84\x1b\x8f\x26\xbd\x31" 5084 "\xc8\x5f\xf6\x6a\x01\x98\x0c\xa3" 5085 "\x3a\xd1\x45\xdc\x73\x0a\x7e\x15" 5086 "\xac\x20\xb7\x4e\xe5\x59\xf0\x87" 5087 "\x1e\x92\x29\xc0\x34\xcb\x62\xf9" 5088 "\x6d\x04\x9b\x0f\xa6\x3d\xd4\x48" 5089 "\xdf\x76\x0d\x81\x18\xaf\x23\xba" 5090 "\x51\xe8\x5c\xf3\x8a\x21\x95\x2c" 5091 "\xc3\x37\xce\x65\xfc\x70\x07\x9e" 5092 "\x12\xa9\x40\xd7\x4b\xe2\x79\x10" 5093 "\x84\x1b\xb2\x26\xbd\x54\xeb\x5f" 5094 "\xf6\x8d\x01\x98\x2f\xc6\x3a\xd1" 5095 "\x68\xff\x73\x0a\xa1\x15\xac\x43" 5096 "\xda\x4e\xe5\x7c\x13\x87\x1e\xb5" 5097 "\x29\xc0\x57\xee\x62\xf9\x90\x04" 5098 "\x9b\x32\xc9\x3d\xd4\x6b\x02\x76" 5099 "\x0d\xa4\x18\xaf\x46\xdd\x51\xe8" 5100 "\x7f\x16\x8a\x21\xb8\x2c\xc3\x5a" 5101 "\xf1\x65\xfc\x93\x07\x9e\x35\xcc" 5102 "\x40\xd7\x6e\x05\x79\x10\xa7\x1b" 5103 "\xb2\x49\xe0\x54\xeb\x82\x19\x8d" 5104 "\x24\xbb\x2f\xc6\x5d\xf4\x68\xff" 5105 "\x96\x0a\xa1\x38\xcf\x43\xda\x71" 5106 "\x08\x7c\x13\xaa\x1e\xb5\x4c", 5107 .psize = 1023, 5108 .digest = "\x4d\x97\x23\xc8\xea\x7a\x7c\x15" 5109 "\xb8\xff\x97\x9c\xf5\x13\x4f\x31" 5110 "\xde\x67\xf7\x24\x73\xcd\x70\x1c" 5111 "\x03\x4a\xba\x8a\x87\x49\xfe\xdc" 5112 "\x75\x29\x62\x83\xae\x3f\x17\xab" 5113 "\xfd\x10\x4d\x8e\x17\x1c\x1f\xca", 5114 } 5115 }; 5116 5117 /* 5118 * SHA512 test vectors from NIST and kerneli 5119 */ 5120 static const struct hash_testvec sha512_tv_template[] = { 5121 { 5122 .plaintext = "", 5123 .psize = 0, 5124 .digest = "\xcf\x83\xe1\x35\x7e\xef\xb8\xbd" 5125 "\xf1\x54\x28\x50\xd6\x6d\x80\x07" 5126 "\xd6\x20\xe4\x05\x0b\x57\x15\xdc" 5127 "\x83\xf4\xa9\x21\xd3\x6c\xe9\xce" 5128 "\x47\xd0\xd1\x3c\x5d\x85\xf2\xb0" 5129 "\xff\x83\x18\xd2\x87\x7e\xec\x2f" 5130 "\x63\xb9\x31\xbd\x47\x41\x7a\x81" 5131 "\xa5\x38\x32\x7a\xf9\x27\xda\x3e", 5132 }, { 5133 .plaintext = "abc", 5134 .psize = 3, 5135 .digest = "\xdd\xaf\x35\xa1\x93\x61\x7a\xba" 5136 "\xcc\x41\x73\x49\xae\x20\x41\x31" 5137 "\x12\xe6\xfa\x4e\x89\xa9\x7e\xa2" 5138 "\x0a\x9e\xee\xe6\x4b\x55\xd3\x9a" 5139 "\x21\x92\x99\x2a\x27\x4f\xc1\xa8" 5140 "\x36\xba\x3c\x23\xa3\xfe\xeb\xbd" 5141 "\x45\x4d\x44\x23\x64\x3c\xe8\x0e" 5142 "\x2a\x9a\xc9\x4f\xa5\x4c\xa4\x9f", 5143 }, { 5144 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 5145 .psize = 56, 5146 .digest = "\x20\x4a\x8f\xc6\xdd\xa8\x2f\x0a" 5147 "\x0c\xed\x7b\xeb\x8e\x08\xa4\x16" 5148 "\x57\xc1\x6e\xf4\x68\xb2\x28\xa8" 5149 "\x27\x9b\xe3\x31\xa7\x03\xc3\x35" 5150 "\x96\xfd\x15\xc1\x3b\x1b\x07\xf9" 5151 "\xaa\x1d\x3b\xea\x57\x78\x9c\xa0" 5152 "\x31\xad\x85\xc7\xa7\x1d\xd7\x03" 5153 "\x54\xec\x63\x12\x38\xca\x34\x45", 5154 }, { 5155 .plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmn" 5156 "hijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu", 5157 .psize = 112, 5158 .digest = "\x8e\x95\x9b\x75\xda\xe3\x13\xda" 5159 "\x8c\xf4\xf7\x28\x14\xfc\x14\x3f" 5160 "\x8f\x77\x79\xc6\xeb\x9f\x7f\xa1" 5161 "\x72\x99\xae\xad\xb6\x88\x90\x18" 5162 "\x50\x1d\x28\x9e\x49\x00\xf7\xe4" 5163 "\x33\x1b\x99\xde\xc4\xb5\x43\x3a" 5164 "\xc7\xd3\x29\xee\xb6\xdd\x26\x54" 5165 "\x5e\x96\xe5\x5b\x87\x4b\xe9\x09", 5166 }, { 5167 .plaintext = "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd" 5168 "efghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz", 5169 .psize = 104, 5170 .digest = "\x93\x0d\x0c\xef\xcb\x30\xff\x11" 5171 "\x33\xb6\x89\x81\x21\xf1\xcf\x3d" 5172 "\x27\x57\x8a\xfc\xaf\xe8\x67\x7c" 5173 "\x52\x57\xcf\x06\x99\x11\xf7\x5d" 5174 "\x8f\x58\x31\xb5\x6e\xbf\xda\x67" 5175 "\xb2\x78\xe6\x6d\xff\x8b\x84\xfe" 5176 "\x2b\x28\x70\xf7\x42\xa5\x80\xd8" 5177 "\xed\xb4\x19\x87\x23\x28\x50\xc9", 5178 }, { 5179 .plaintext = "\x08\x9f\x13\xaa\x41\xd8\x4c\xe3" 5180 "\x7a\x11\x85\x1c\xb3\x27\xbe\x55" 5181 "\xec\x60\xf7\x8e\x02\x99\x30\xc7" 5182 "\x3b\xd2\x69\x00\x74\x0b\xa2\x16" 5183 "\xad\x44\xdb\x4f\xe6\x7d\x14\x88" 5184 "\x1f\xb6\x2a\xc1\x58\xef\x63\xfa" 5185 "\x91\x05\x9c\x33\xca\x3e\xd5\x6c" 5186 "\x03\x77\x0e\xa5\x19\xb0\x47\xde" 5187 "\x52\xe9\x80\x17\x8b\x22\xb9\x2d" 5188 "\xc4\x5b\xf2\x66\xfd\x94\x08\x9f" 5189 "\x36\xcd\x41\xd8\x6f\x06\x7a\x11" 5190 "\xa8\x1c\xb3\x4a\xe1\x55\xec\x83" 5191 "\x1a\x8e\x25\xbc\x30\xc7\x5e\xf5" 5192 "\x69\x00\x97\x0b\xa2\x39\xd0\x44" 5193 "\xdb\x72\x09\x7d\x14\xab\x1f\xb6" 5194 "\x4d\xe4\x58\xef\x86\x1d\x91\x28" 5195 "\xbf\x33\xca\x61\xf8\x6c\x03\x9a" 5196 "\x0e\xa5\x3c\xd3\x47\xde\x75\x0c" 5197 "\x80\x17\xae\x22\xb9\x50\xe7\x5b" 5198 "\xf2\x89\x20\x94\x2b\xc2\x36\xcd" 5199 "\x64\xfb\x6f\x06\x9d\x11\xa8\x3f" 5200 "\xd6\x4a\xe1\x78\x0f\x83\x1a\xb1" 5201 "\x25\xbc\x53\xea\x5e\xf5\x8c\x00" 5202 "\x97\x2e\xc5\x39\xd0\x67\xfe\x72" 5203 "\x09\xa0\x14\xab\x42\xd9\x4d\xe4" 5204 "\x7b\x12\x86\x1d\xb4\x28\xbf\x56" 5205 "\xed\x61\xf8\x8f\x03\x9a\x31\xc8" 5206 "\x3c\xd3\x6a\x01\x75\x0c\xa3\x17" 5207 "\xae\x45\xdc\x50\xe7\x7e\x15\x89" 5208 "\x20\xb7\x2b\xc2\x59\xf0\x64\xfb" 5209 "\x92\x06\x9d\x34\xcb\x3f\xd6\x6d" 5210 "\x04\x78\x0f\xa6\x1a\xb1\x48\xdf" 5211 "\x53\xea\x81\x18\x8c\x23\xba\x2e" 5212 "\xc5\x5c\xf3\x67\xfe\x95\x09\xa0" 5213 "\x37\xce\x42\xd9\x70\x07\x7b\x12" 5214 "\xa9\x1d\xb4\x4b\xe2\x56\xed\x84" 5215 "\x1b\x8f\x26\xbd\x31\xc8\x5f\xf6" 5216 "\x6a\x01\x98\x0c\xa3\x3a\xd1\x45" 5217 "\xdc\x73\x0a\x7e\x15\xac\x20\xb7" 5218 "\x4e\xe5\x59\xf0\x87\x1e\x92\x29" 5219 "\xc0\x34\xcb\x62\xf9\x6d\x04\x9b" 5220 "\x0f\xa6\x3d\xd4\x48\xdf\x76\x0d" 5221 "\x81\x18\xaf\x23\xba\x51\xe8\x5c" 5222 "\xf3\x8a\x21\x95\x2c\xc3\x37\xce" 5223 "\x65\xfc\x70\x07\x9e\x12\xa9\x40" 5224 "\xd7\x4b\xe2\x79\x10\x84\x1b\xb2" 5225 "\x26\xbd\x54\xeb\x5f\xf6\x8d\x01" 5226 "\x98\x2f\xc6\x3a\xd1\x68\xff\x73" 5227 "\x0a\xa1\x15\xac\x43\xda\x4e\xe5" 5228 "\x7c\x13\x87\x1e\xb5\x29\xc0\x57" 5229 "\xee\x62\xf9\x90\x04\x9b\x32\xc9" 5230 "\x3d\xd4\x6b\x02\x76\x0d\xa4\x18" 5231 "\xaf\x46\xdd\x51\xe8\x7f\x16\x8a" 5232 "\x21\xb8\x2c\xc3\x5a\xf1\x65\xfc" 5233 "\x93\x07\x9e\x35\xcc\x40\xd7\x6e" 5234 "\x05\x79\x10\xa7\x1b\xb2\x49\xe0" 5235 "\x54\xeb\x82\x19\x8d\x24\xbb\x2f" 5236 "\xc6\x5d\xf4\x68\xff\x96\x0a\xa1" 5237 "\x38\xcf\x43\xda\x71\x08\x7c\x13" 5238 "\xaa\x1e\xb5\x4c\xe3\x57\xee\x85" 5239 "\x1c\x90\x27\xbe\x32\xc9\x60\xf7" 5240 "\x6b\x02\x99\x0d\xa4\x3b\xd2\x46" 5241 "\xdd\x74\x0b\x7f\x16\xad\x21\xb8" 5242 "\x4f\xe6\x5a\xf1\x88\x1f\x93\x2a" 5243 "\xc1\x35\xcc\x63\xfa\x6e\x05\x9c" 5244 "\x10\xa7\x3e\xd5\x49\xe0\x77\x0e" 5245 "\x82\x19\xb0\x24\xbb\x52\xe9\x5d" 5246 "\xf4\x8b\x22\x96\x2d\xc4\x38\xcf" 5247 "\x66\xfd\x71\x08\x9f\x13\xaa\x41" 5248 "\xd8\x4c\xe3\x7a\x11\x85\x1c\xb3" 5249 "\x27\xbe\x55\xec\x60\xf7\x8e\x02" 5250 "\x99\x30\xc7\x3b\xd2\x69\x00\x74" 5251 "\x0b\xa2\x16\xad\x44\xdb\x4f\xe6" 5252 "\x7d\x14\x88\x1f\xb6\x2a\xc1\x58" 5253 "\xef\x63\xfa\x91\x05\x9c\x33\xca" 5254 "\x3e\xd5\x6c\x03\x77\x0e\xa5\x19" 5255 "\xb0\x47\xde\x52\xe9\x80\x17\x8b" 5256 "\x22\xb9\x2d\xc4\x5b\xf2\x66\xfd" 5257 "\x94\x08\x9f\x36\xcd\x41\xd8\x6f" 5258 "\x06\x7a\x11\xa8\x1c\xb3\x4a\xe1" 5259 "\x55\xec\x83\x1a\x8e\x25\xbc\x30" 5260 "\xc7\x5e\xf5\x69\x00\x97\x0b\xa2" 5261 "\x39\xd0\x44\xdb\x72\x09\x7d\x14" 5262 "\xab\x1f\xb6\x4d\xe4\x58\xef\x86" 5263 "\x1d\x91\x28\xbf\x33\xca\x61\xf8" 5264 "\x6c\x03\x9a\x0e\xa5\x3c\xd3\x47" 5265 "\xde\x75\x0c\x80\x17\xae\x22\xb9" 5266 "\x50\xe7\x5b\xf2\x89\x20\x94\x2b" 5267 "\xc2\x36\xcd\x64\xfb\x6f\x06\x9d" 5268 "\x11\xa8\x3f\xd6\x4a\xe1\x78\x0f" 5269 "\x83\x1a\xb1\x25\xbc\x53\xea\x5e" 5270 "\xf5\x8c\x00\x97\x2e\xc5\x39\xd0" 5271 "\x67\xfe\x72\x09\xa0\x14\xab\x42" 5272 "\xd9\x4d\xe4\x7b\x12\x86\x1d\xb4" 5273 "\x28\xbf\x56\xed\x61\xf8\x8f\x03" 5274 "\x9a\x31\xc8\x3c\xd3\x6a\x01\x75" 5275 "\x0c\xa3\x17\xae\x45\xdc\x50\xe7" 5276 "\x7e\x15\x89\x20\xb7\x2b\xc2\x59" 5277 "\xf0\x64\xfb\x92\x06\x9d\x34\xcb" 5278 "\x3f\xd6\x6d\x04\x78\x0f\xa6\x1a" 5279 "\xb1\x48\xdf\x53\xea\x81\x18\x8c" 5280 "\x23\xba\x2e\xc5\x5c\xf3\x67\xfe" 5281 "\x95\x09\xa0\x37\xce\x42\xd9\x70" 5282 "\x07\x7b\x12\xa9\x1d\xb4\x4b\xe2" 5283 "\x56\xed\x84\x1b\x8f\x26\xbd\x31" 5284 "\xc8\x5f\xf6\x6a\x01\x98\x0c\xa3" 5285 "\x3a\xd1\x45\xdc\x73\x0a\x7e\x15" 5286 "\xac\x20\xb7\x4e\xe5\x59\xf0\x87" 5287 "\x1e\x92\x29\xc0\x34\xcb\x62\xf9" 5288 "\x6d\x04\x9b\x0f\xa6\x3d\xd4\x48" 5289 "\xdf\x76\x0d\x81\x18\xaf\x23\xba" 5290 "\x51\xe8\x5c\xf3\x8a\x21\x95\x2c" 5291 "\xc3\x37\xce\x65\xfc\x70\x07\x9e" 5292 "\x12\xa9\x40\xd7\x4b\xe2\x79\x10" 5293 "\x84\x1b\xb2\x26\xbd\x54\xeb\x5f" 5294 "\xf6\x8d\x01\x98\x2f\xc6\x3a\xd1" 5295 "\x68\xff\x73\x0a\xa1\x15\xac\x43" 5296 "\xda\x4e\xe5\x7c\x13\x87\x1e\xb5" 5297 "\x29\xc0\x57\xee\x62\xf9\x90\x04" 5298 "\x9b\x32\xc9\x3d\xd4\x6b\x02\x76" 5299 "\x0d\xa4\x18\xaf\x46\xdd\x51\xe8" 5300 "\x7f\x16\x8a\x21\xb8\x2c\xc3\x5a" 5301 "\xf1\x65\xfc\x93\x07\x9e\x35\xcc" 5302 "\x40\xd7\x6e\x05\x79\x10\xa7\x1b" 5303 "\xb2\x49\xe0\x54\xeb\x82\x19\x8d" 5304 "\x24\xbb\x2f\xc6\x5d\xf4\x68\xff" 5305 "\x96\x0a\xa1\x38\xcf\x43\xda\x71" 5306 "\x08\x7c\x13\xaa\x1e\xb5\x4c", 5307 .psize = 1023, 5308 .digest = "\x76\xc9\xd4\x91\x7a\x5f\x0f\xaa" 5309 "\x13\x39\xf3\x01\x7a\xfa\xe5\x41" 5310 "\x5f\x0b\xf8\xeb\x32\xfc\xbf\xb0" 5311 "\xfa\x8c\xcd\x17\x83\xe2\xfa\xeb" 5312 "\x1c\x19\xde\xe2\x75\xdc\x34\x64" 5313 "\x5f\x35\x9c\x61\x2f\x10\xf9\xec" 5314 "\x59\xca\x9d\xcc\x25\x0c\x43\xba" 5315 "\x85\xa8\xf8\xfe\xb5\x24\xb2\xee", 5316 } 5317 }; 5318 5319 5320 /* 5321 * WHIRLPOOL test vectors from Whirlpool package 5322 * by Vincent Rijmen and Paulo S. L. M. Barreto as part of the NESSIE 5323 * submission 5324 */ 5325 static const struct hash_testvec wp512_tv_template[] = { 5326 { 5327 .plaintext = "", 5328 .psize = 0, 5329 .digest = "\x19\xFA\x61\xD7\x55\x22\xA4\x66" 5330 "\x9B\x44\xE3\x9C\x1D\x2E\x17\x26" 5331 "\xC5\x30\x23\x21\x30\xD4\x07\xF8" 5332 "\x9A\xFE\xE0\x96\x49\x97\xF7\xA7" 5333 "\x3E\x83\xBE\x69\x8B\x28\x8F\xEB" 5334 "\xCF\x88\xE3\xE0\x3C\x4F\x07\x57" 5335 "\xEA\x89\x64\xE5\x9B\x63\xD9\x37" 5336 "\x08\xB1\x38\xCC\x42\xA6\x6E\xB3", 5337 5338 5339 }, { 5340 .plaintext = "a", 5341 .psize = 1, 5342 .digest = "\x8A\xCA\x26\x02\x79\x2A\xEC\x6F" 5343 "\x11\xA6\x72\x06\x53\x1F\xB7\xD7" 5344 "\xF0\xDF\xF5\x94\x13\x14\x5E\x69" 5345 "\x73\xC4\x50\x01\xD0\x08\x7B\x42" 5346 "\xD1\x1B\xC6\x45\x41\x3A\xEF\xF6" 5347 "\x3A\x42\x39\x1A\x39\x14\x5A\x59" 5348 "\x1A\x92\x20\x0D\x56\x01\x95\xE5" 5349 "\x3B\x47\x85\x84\xFD\xAE\x23\x1A", 5350 }, { 5351 .plaintext = "abc", 5352 .psize = 3, 5353 .digest = "\x4E\x24\x48\xA4\xC6\xF4\x86\xBB" 5354 "\x16\xB6\x56\x2C\x73\xB4\x02\x0B" 5355 "\xF3\x04\x3E\x3A\x73\x1B\xCE\x72" 5356 "\x1A\xE1\xB3\x03\xD9\x7E\x6D\x4C" 5357 "\x71\x81\xEE\xBD\xB6\xC5\x7E\x27" 5358 "\x7D\x0E\x34\x95\x71\x14\xCB\xD6" 5359 "\xC7\x97\xFC\x9D\x95\xD8\xB5\x82" 5360 "\xD2\x25\x29\x20\x76\xD4\xEE\xF5", 5361 }, { 5362 .plaintext = "message digest", 5363 .psize = 14, 5364 .digest = "\x37\x8C\x84\xA4\x12\x6E\x2D\xC6" 5365 "\xE5\x6D\xCC\x74\x58\x37\x7A\xAC" 5366 "\x83\x8D\x00\x03\x22\x30\xF5\x3C" 5367 "\xE1\xF5\x70\x0C\x0F\xFB\x4D\x3B" 5368 "\x84\x21\x55\x76\x59\xEF\x55\xC1" 5369 "\x06\xB4\xB5\x2A\xC5\xA4\xAA\xA6" 5370 "\x92\xED\x92\x00\x52\x83\x8F\x33" 5371 "\x62\xE8\x6D\xBD\x37\xA8\x90\x3E", 5372 }, { 5373 .plaintext = "abcdefghijklmnopqrstuvwxyz", 5374 .psize = 26, 5375 .digest = "\xF1\xD7\x54\x66\x26\x36\xFF\xE9" 5376 "\x2C\x82\xEB\xB9\x21\x2A\x48\x4A" 5377 "\x8D\x38\x63\x1E\xAD\x42\x38\xF5" 5378 "\x44\x2E\xE1\x3B\x80\x54\xE4\x1B" 5379 "\x08\xBF\x2A\x92\x51\xC3\x0B\x6A" 5380 "\x0B\x8A\xAE\x86\x17\x7A\xB4\xA6" 5381 "\xF6\x8F\x67\x3E\x72\x07\x86\x5D" 5382 "\x5D\x98\x19\xA3\xDB\xA4\xEB\x3B", 5383 }, { 5384 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" 5385 "abcdefghijklmnopqrstuvwxyz0123456789", 5386 .psize = 62, 5387 .digest = "\xDC\x37\xE0\x08\xCF\x9E\xE6\x9B" 5388 "\xF1\x1F\x00\xED\x9A\xBA\x26\x90" 5389 "\x1D\xD7\xC2\x8C\xDE\xC0\x66\xCC" 5390 "\x6A\xF4\x2E\x40\xF8\x2F\x3A\x1E" 5391 "\x08\xEB\xA2\x66\x29\x12\x9D\x8F" 5392 "\xB7\xCB\x57\x21\x1B\x92\x81\xA6" 5393 "\x55\x17\xCC\x87\x9D\x7B\x96\x21" 5394 "\x42\xC6\x5F\x5A\x7A\xF0\x14\x67", 5395 }, { 5396 .plaintext = "1234567890123456789012345678901234567890" 5397 "1234567890123456789012345678901234567890", 5398 .psize = 80, 5399 .digest = "\x46\x6E\xF1\x8B\xAB\xB0\x15\x4D" 5400 "\x25\xB9\xD3\x8A\x64\x14\xF5\xC0" 5401 "\x87\x84\x37\x2B\xCC\xB2\x04\xD6" 5402 "\x54\x9C\x4A\xFA\xDB\x60\x14\x29" 5403 "\x4D\x5B\xD8\xDF\x2A\x6C\x44\xE5" 5404 "\x38\xCD\x04\x7B\x26\x81\xA5\x1A" 5405 "\x2C\x60\x48\x1E\x88\xC5\xA2\x0B" 5406 "\x2C\x2A\x80\xCF\x3A\x9A\x08\x3B", 5407 }, { 5408 .plaintext = "abcdbcdecdefdefgefghfghighijhijk", 5409 .psize = 32, 5410 .digest = "\x2A\x98\x7E\xA4\x0F\x91\x70\x61" 5411 "\xF5\xD6\xF0\xA0\xE4\x64\x4F\x48" 5412 "\x8A\x7A\x5A\x52\xDE\xEE\x65\x62" 5413 "\x07\xC5\x62\xF9\x88\xE9\x5C\x69" 5414 "\x16\xBD\xC8\x03\x1B\xC5\xBE\x1B" 5415 "\x7B\x94\x76\x39\xFE\x05\x0B\x56" 5416 "\x93\x9B\xAA\xA0\xAD\xFF\x9A\xE6" 5417 "\x74\x5B\x7B\x18\x1C\x3B\xE3\xFD", 5418 }, 5419 }; 5420 5421 static const struct hash_testvec wp384_tv_template[] = { 5422 { 5423 .plaintext = "", 5424 .psize = 0, 5425 .digest = "\x19\xFA\x61\xD7\x55\x22\xA4\x66" 5426 "\x9B\x44\xE3\x9C\x1D\x2E\x17\x26" 5427 "\xC5\x30\x23\x21\x30\xD4\x07\xF8" 5428 "\x9A\xFE\xE0\x96\x49\x97\xF7\xA7" 5429 "\x3E\x83\xBE\x69\x8B\x28\x8F\xEB" 5430 "\xCF\x88\xE3\xE0\x3C\x4F\x07\x57", 5431 5432 5433 }, { 5434 .plaintext = "a", 5435 .psize = 1, 5436 .digest = "\x8A\xCA\x26\x02\x79\x2A\xEC\x6F" 5437 "\x11\xA6\x72\x06\x53\x1F\xB7\xD7" 5438 "\xF0\xDF\xF5\x94\x13\x14\x5E\x69" 5439 "\x73\xC4\x50\x01\xD0\x08\x7B\x42" 5440 "\xD1\x1B\xC6\x45\x41\x3A\xEF\xF6" 5441 "\x3A\x42\x39\x1A\x39\x14\x5A\x59", 5442 }, { 5443 .plaintext = "abc", 5444 .psize = 3, 5445 .digest = "\x4E\x24\x48\xA4\xC6\xF4\x86\xBB" 5446 "\x16\xB6\x56\x2C\x73\xB4\x02\x0B" 5447 "\xF3\x04\x3E\x3A\x73\x1B\xCE\x72" 5448 "\x1A\xE1\xB3\x03\xD9\x7E\x6D\x4C" 5449 "\x71\x81\xEE\xBD\xB6\xC5\x7E\x27" 5450 "\x7D\x0E\x34\x95\x71\x14\xCB\xD6", 5451 }, { 5452 .plaintext = "message digest", 5453 .psize = 14, 5454 .digest = "\x37\x8C\x84\xA4\x12\x6E\x2D\xC6" 5455 "\xE5\x6D\xCC\x74\x58\x37\x7A\xAC" 5456 "\x83\x8D\x00\x03\x22\x30\xF5\x3C" 5457 "\xE1\xF5\x70\x0C\x0F\xFB\x4D\x3B" 5458 "\x84\x21\x55\x76\x59\xEF\x55\xC1" 5459 "\x06\xB4\xB5\x2A\xC5\xA4\xAA\xA6", 5460 }, { 5461 .plaintext = "abcdefghijklmnopqrstuvwxyz", 5462 .psize = 26, 5463 .digest = "\xF1\xD7\x54\x66\x26\x36\xFF\xE9" 5464 "\x2C\x82\xEB\xB9\x21\x2A\x48\x4A" 5465 "\x8D\x38\x63\x1E\xAD\x42\x38\xF5" 5466 "\x44\x2E\xE1\x3B\x80\x54\xE4\x1B" 5467 "\x08\xBF\x2A\x92\x51\xC3\x0B\x6A" 5468 "\x0B\x8A\xAE\x86\x17\x7A\xB4\xA6", 5469 }, { 5470 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" 5471 "abcdefghijklmnopqrstuvwxyz0123456789", 5472 .psize = 62, 5473 .digest = "\xDC\x37\xE0\x08\xCF\x9E\xE6\x9B" 5474 "\xF1\x1F\x00\xED\x9A\xBA\x26\x90" 5475 "\x1D\xD7\xC2\x8C\xDE\xC0\x66\xCC" 5476 "\x6A\xF4\x2E\x40\xF8\x2F\x3A\x1E" 5477 "\x08\xEB\xA2\x66\x29\x12\x9D\x8F" 5478 "\xB7\xCB\x57\x21\x1B\x92\x81\xA6", 5479 }, { 5480 .plaintext = "1234567890123456789012345678901234567890" 5481 "1234567890123456789012345678901234567890", 5482 .psize = 80, 5483 .digest = "\x46\x6E\xF1\x8B\xAB\xB0\x15\x4D" 5484 "\x25\xB9\xD3\x8A\x64\x14\xF5\xC0" 5485 "\x87\x84\x37\x2B\xCC\xB2\x04\xD6" 5486 "\x54\x9C\x4A\xFA\xDB\x60\x14\x29" 5487 "\x4D\x5B\xD8\xDF\x2A\x6C\x44\xE5" 5488 "\x38\xCD\x04\x7B\x26\x81\xA5\x1A", 5489 }, { 5490 .plaintext = "abcdbcdecdefdefgefghfghighijhijk", 5491 .psize = 32, 5492 .digest = "\x2A\x98\x7E\xA4\x0F\x91\x70\x61" 5493 "\xF5\xD6\xF0\xA0\xE4\x64\x4F\x48" 5494 "\x8A\x7A\x5A\x52\xDE\xEE\x65\x62" 5495 "\x07\xC5\x62\xF9\x88\xE9\x5C\x69" 5496 "\x16\xBD\xC8\x03\x1B\xC5\xBE\x1B" 5497 "\x7B\x94\x76\x39\xFE\x05\x0B\x56", 5498 }, 5499 }; 5500 5501 static const struct hash_testvec wp256_tv_template[] = { 5502 { 5503 .plaintext = "", 5504 .psize = 0, 5505 .digest = "\x19\xFA\x61\xD7\x55\x22\xA4\x66" 5506 "\x9B\x44\xE3\x9C\x1D\x2E\x17\x26" 5507 "\xC5\x30\x23\x21\x30\xD4\x07\xF8" 5508 "\x9A\xFE\xE0\x96\x49\x97\xF7\xA7", 5509 5510 5511 }, { 5512 .plaintext = "a", 5513 .psize = 1, 5514 .digest = "\x8A\xCA\x26\x02\x79\x2A\xEC\x6F" 5515 "\x11\xA6\x72\x06\x53\x1F\xB7\xD7" 5516 "\xF0\xDF\xF5\x94\x13\x14\x5E\x69" 5517 "\x73\xC4\x50\x01\xD0\x08\x7B\x42", 5518 }, { 5519 .plaintext = "abc", 5520 .psize = 3, 5521 .digest = "\x4E\x24\x48\xA4\xC6\xF4\x86\xBB" 5522 "\x16\xB6\x56\x2C\x73\xB4\x02\x0B" 5523 "\xF3\x04\x3E\x3A\x73\x1B\xCE\x72" 5524 "\x1A\xE1\xB3\x03\xD9\x7E\x6D\x4C", 5525 }, { 5526 .plaintext = "message digest", 5527 .psize = 14, 5528 .digest = "\x37\x8C\x84\xA4\x12\x6E\x2D\xC6" 5529 "\xE5\x6D\xCC\x74\x58\x37\x7A\xAC" 5530 "\x83\x8D\x00\x03\x22\x30\xF5\x3C" 5531 "\xE1\xF5\x70\x0C\x0F\xFB\x4D\x3B", 5532 }, { 5533 .plaintext = "abcdefghijklmnopqrstuvwxyz", 5534 .psize = 26, 5535 .digest = "\xF1\xD7\x54\x66\x26\x36\xFF\xE9" 5536 "\x2C\x82\xEB\xB9\x21\x2A\x48\x4A" 5537 "\x8D\x38\x63\x1E\xAD\x42\x38\xF5" 5538 "\x44\x2E\xE1\x3B\x80\x54\xE4\x1B", 5539 }, { 5540 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" 5541 "abcdefghijklmnopqrstuvwxyz0123456789", 5542 .psize = 62, 5543 .digest = "\xDC\x37\xE0\x08\xCF\x9E\xE6\x9B" 5544 "\xF1\x1F\x00\xED\x9A\xBA\x26\x90" 5545 "\x1D\xD7\xC2\x8C\xDE\xC0\x66\xCC" 5546 "\x6A\xF4\x2E\x40\xF8\x2F\x3A\x1E", 5547 }, { 5548 .plaintext = "1234567890123456789012345678901234567890" 5549 "1234567890123456789012345678901234567890", 5550 .psize = 80, 5551 .digest = "\x46\x6E\xF1\x8B\xAB\xB0\x15\x4D" 5552 "\x25\xB9\xD3\x8A\x64\x14\xF5\xC0" 5553 "\x87\x84\x37\x2B\xCC\xB2\x04\xD6" 5554 "\x54\x9C\x4A\xFA\xDB\x60\x14\x29", 5555 }, { 5556 .plaintext = "abcdbcdecdefdefgefghfghighijhijk", 5557 .psize = 32, 5558 .digest = "\x2A\x98\x7E\xA4\x0F\x91\x70\x61" 5559 "\xF5\xD6\xF0\xA0\xE4\x64\x4F\x48" 5560 "\x8A\x7A\x5A\x52\xDE\xEE\x65\x62" 5561 "\x07\xC5\x62\xF9\x88\xE9\x5C\x69", 5562 }, 5563 }; 5564 5565 /* 5566 * TIGER test vectors from Tiger website 5567 */ 5568 static const struct hash_testvec tgr192_tv_template[] = { 5569 { 5570 .plaintext = "", 5571 .psize = 0, 5572 .digest = "\x24\xf0\x13\x0c\x63\xac\x93\x32" 5573 "\x16\x16\x6e\x76\xb1\xbb\x92\x5f" 5574 "\xf3\x73\xde\x2d\x49\x58\x4e\x7a", 5575 }, { 5576 .plaintext = "abc", 5577 .psize = 3, 5578 .digest = "\xf2\x58\xc1\xe8\x84\x14\xab\x2a" 5579 "\x52\x7a\xb5\x41\xff\xc5\xb8\xbf" 5580 "\x93\x5f\x7b\x95\x1c\x13\x29\x51", 5581 }, { 5582 .plaintext = "Tiger", 5583 .psize = 5, 5584 .digest = "\x9f\x00\xf5\x99\x07\x23\x00\xdd" 5585 "\x27\x6a\xbb\x38\xc8\xeb\x6d\xec" 5586 "\x37\x79\x0c\x11\x6f\x9d\x2b\xdf", 5587 }, { 5588 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-", 5589 .psize = 64, 5590 .digest = "\x87\xfb\x2a\x90\x83\x85\x1c\xf7" 5591 "\x47\x0d\x2c\xf8\x10\xe6\xdf\x9e" 5592 "\xb5\x86\x44\x50\x34\xa5\xa3\x86", 5593 }, { 5594 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ=abcdefghijklmnopqrstuvwxyz+0123456789", 5595 .psize = 64, 5596 .digest = "\x46\x7d\xb8\x08\x63\xeb\xce\x48" 5597 "\x8d\xf1\xcd\x12\x61\x65\x5d\xe9" 5598 "\x57\x89\x65\x65\x97\x5f\x91\x97", 5599 }, { 5600 .plaintext = "Tiger - A Fast New Hash Function, " 5601 "by Ross Anderson and Eli Biham, " 5602 "proceedings of Fast Software Encryption 3, " 5603 "Cambridge, 1996.", 5604 .psize = 125, 5605 .digest = "\x3d\x9a\xeb\x03\xd1\xbd\x1a\x63" 5606 "\x57\xb2\x77\x4d\xfd\x6d\x5b\x24" 5607 "\xdd\x68\x15\x1d\x50\x39\x74\xfc", 5608 }, 5609 }; 5610 5611 static const struct hash_testvec tgr160_tv_template[] = { 5612 { 5613 .plaintext = "", 5614 .psize = 0, 5615 .digest = "\x24\xf0\x13\x0c\x63\xac\x93\x32" 5616 "\x16\x16\x6e\x76\xb1\xbb\x92\x5f" 5617 "\xf3\x73\xde\x2d", 5618 }, { 5619 .plaintext = "abc", 5620 .psize = 3, 5621 .digest = "\xf2\x58\xc1\xe8\x84\x14\xab\x2a" 5622 "\x52\x7a\xb5\x41\xff\xc5\xb8\xbf" 5623 "\x93\x5f\x7b\x95", 5624 }, { 5625 .plaintext = "Tiger", 5626 .psize = 5, 5627 .digest = "\x9f\x00\xf5\x99\x07\x23\x00\xdd" 5628 "\x27\x6a\xbb\x38\xc8\xeb\x6d\xec" 5629 "\x37\x79\x0c\x11", 5630 }, { 5631 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-", 5632 .psize = 64, 5633 .digest = "\x87\xfb\x2a\x90\x83\x85\x1c\xf7" 5634 "\x47\x0d\x2c\xf8\x10\xe6\xdf\x9e" 5635 "\xb5\x86\x44\x50", 5636 }, { 5637 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ=abcdefghijklmnopqrstuvwxyz+0123456789", 5638 .psize = 64, 5639 .digest = "\x46\x7d\xb8\x08\x63\xeb\xce\x48" 5640 "\x8d\xf1\xcd\x12\x61\x65\x5d\xe9" 5641 "\x57\x89\x65\x65", 5642 }, { 5643 .plaintext = "Tiger - A Fast New Hash Function, " 5644 "by Ross Anderson and Eli Biham, " 5645 "proceedings of Fast Software Encryption 3, " 5646 "Cambridge, 1996.", 5647 .psize = 125, 5648 .digest = "\x3d\x9a\xeb\x03\xd1\xbd\x1a\x63" 5649 "\x57\xb2\x77\x4d\xfd\x6d\x5b\x24" 5650 "\xdd\x68\x15\x1d", 5651 }, 5652 }; 5653 5654 static const struct hash_testvec tgr128_tv_template[] = { 5655 { 5656 .plaintext = "", 5657 .psize = 0, 5658 .digest = "\x24\xf0\x13\x0c\x63\xac\x93\x32" 5659 "\x16\x16\x6e\x76\xb1\xbb\x92\x5f", 5660 }, { 5661 .plaintext = "abc", 5662 .psize = 3, 5663 .digest = "\xf2\x58\xc1\xe8\x84\x14\xab\x2a" 5664 "\x52\x7a\xb5\x41\xff\xc5\xb8\xbf", 5665 }, { 5666 .plaintext = "Tiger", 5667 .psize = 5, 5668 .digest = "\x9f\x00\xf5\x99\x07\x23\x00\xdd" 5669 "\x27\x6a\xbb\x38\xc8\xeb\x6d\xec", 5670 }, { 5671 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-", 5672 .psize = 64, 5673 .digest = "\x87\xfb\x2a\x90\x83\x85\x1c\xf7" 5674 "\x47\x0d\x2c\xf8\x10\xe6\xdf\x9e", 5675 }, { 5676 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ=abcdefghijklmnopqrstuvwxyz+0123456789", 5677 .psize = 64, 5678 .digest = "\x46\x7d\xb8\x08\x63\xeb\xce\x48" 5679 "\x8d\xf1\xcd\x12\x61\x65\x5d\xe9", 5680 }, { 5681 .plaintext = "Tiger - A Fast New Hash Function, " 5682 "by Ross Anderson and Eli Biham, " 5683 "proceedings of Fast Software Encryption 3, " 5684 "Cambridge, 1996.", 5685 .psize = 125, 5686 .digest = "\x3d\x9a\xeb\x03\xd1\xbd\x1a\x63" 5687 "\x57\xb2\x77\x4d\xfd\x6d\x5b\x24", 5688 }, 5689 }; 5690 5691 static const struct hash_testvec ghash_tv_template[] = 5692 { 5693 { 5694 .key = "\xdf\xa6\xbf\x4d\xed\x81\xdb\x03" 5695 "\xff\xca\xff\x95\xf8\x30\xf0\x61", 5696 .ksize = 16, 5697 .plaintext = "\x95\x2b\x2a\x56\xa5\x60\x04a\xc0" 5698 "\xb3\x2b\x66\x56\xa0\x5b\x40\xb6", 5699 .psize = 16, 5700 .digest = "\xda\x53\xeb\x0a\xd2\xc5\x5b\xb6" 5701 "\x4f\xc4\x80\x2c\xc3\xfe\xda\x60", 5702 }, { 5703 .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 5704 "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b", 5705 .ksize = 16, 5706 .plaintext = "what do ya want for nothing?", 5707 .psize = 28, 5708 .digest = "\x3e\x1f\x5c\x4d\x65\xf0\xef\xce" 5709 "\x0d\x61\x06\x27\x66\x51\xd5\xe2", 5710 }, { 5711 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 5712 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa", 5713 .ksize = 16, 5714 .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 5715 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 5716 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 5717 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd", 5718 .psize = 50, 5719 .digest = "\xfb\x49\x8a\x36\xe1\x96\xe1\x96" 5720 "\xe1\x96\xe1\x96\xe1\x96\xe1\x96", 5721 }, { 5722 .key = "\xda\x53\xeb\x0a\xd2\xc5\x5b\xb6" 5723 "\x4f\xc4\x80\x2c\xc3\xfe\xda\x60", 5724 .ksize = 16, 5725 .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 5726 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 5727 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 5728 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd", 5729 .psize = 50, 5730 .digest = "\x2b\x5c\x0c\x7f\x52\xd1\x60\xc2" 5731 "\x49\xed\x6e\x32\x7a\xa9\xbe\x08", 5732 }, { 5733 .key = "\x95\x2b\x2a\x56\xa5\x60\x04a\xc0" 5734 "\xb3\x2b\x66\x56\xa0\x5b\x40\xb6", 5735 .ksize = 16, 5736 .plaintext = "Test With Truncation", 5737 .psize = 20, 5738 .digest = "\xf8\x94\x87\x2a\x4b\x63\x99\x28" 5739 "\x23\xf7\x93\xf7\x19\xf5\x96\xd9", 5740 }, { 5741 .key = "\x0a\x1b\x2c\x3d\x4e\x5f\x64\x71" 5742 "\x82\x93\xa4\xb5\xc6\xd7\xe8\xf9", 5743 .ksize = 16, 5744 .plaintext = "\x56\x6f\x72\x20\x6c\x61\x75\x74" 5745 "\x65\x72\x20\x4c\x61\x75\x73\x63" 5746 "\x68\x65\x6e\x20\x75\x6e\x64\x20" 5747 "\x53\x74\x61\x75\x6e\x65\x6e\x20" 5748 "\x73\x65\x69\x20\x73\x74\x69\x6c" 5749 "\x6c\x2c\x0a\x64\x75\x20\x6d\x65" 5750 "\x69\x6e\x20\x74\x69\x65\x66\x74" 5751 "\x69\x65\x66\x65\x73\x20\x4c\x65" 5752 "\x62\x65\x6e\x3b\x0a\x64\x61\x73" 5753 "\x73\x20\x64\x75\x20\x77\x65\x69" 5754 "\xc3\x9f\x74\x20\x77\x61\x73\x20" 5755 "\x64\x65\x72\x20\x57\x69\x6e\x64" 5756 "\x20\x64\x69\x72\x20\x77\x69\x6c" 5757 "\x6c\x2c\x0a\x65\x68\x20\x6e\x6f" 5758 "\x63\x68\x20\x64\x69\x65\x20\x42" 5759 "\x69\x72\x6b\x65\x6e\x20\x62\x65" 5760 "\x62\x65\x6e\x2e\x0a\x0a\x55\x6e" 5761 "\x64\x20\x77\x65\x6e\x6e\x20\x64" 5762 "\x69\x72\x20\x65\x69\x6e\x6d\x61" 5763 "\x6c\x20\x64\x61\x73\x20\x53\x63" 5764 "\x68\x77\x65\x69\x67\x65\x6e\x20" 5765 "\x73\x70\x72\x61\x63\x68\x2c\x0a" 5766 "\x6c\x61\x73\x73\x20\x64\x65\x69" 5767 "\x6e\x65\x20\x53\x69\x6e\x6e\x65" 5768 "\x20\x62\x65\x73\x69\x65\x67\x65" 5769 "\x6e\x2e\x0a\x4a\x65\x64\x65\x6d" 5770 "\x20\x48\x61\x75\x63\x68\x65\x20" 5771 "\x67\x69\x62\x74\x20\x64\x69\x63" 5772 "\x68\x2c\x20\x67\x69\x62\x20\x6e" 5773 "\x61\x63\x68\x2c\x0a\x65\x72\x20" 5774 "\x77\x69\x72\x64\x20\x64\x69\x63" 5775 "\x68\x20\x6c\x69\x65\x62\x65\x6e" 5776 "\x20\x75\x6e\x64\x20\x77\x69\x65" 5777 "\x67\x65\x6e\x2e\x0a\x0a\x55\x6e" 5778 "\x64\x20\x64\x61\x6e\x6e\x20\x6d" 5779 "\x65\x69\x6e\x65\x20\x53\x65\x65" 5780 "\x6c\x65\x20\x73\x65\x69\x74\x20" 5781 "\x77\x65\x69\x74\x2c\x20\x73\x65" 5782 "\x69\x20\x77\x65\x69\x74\x2c\x0a" 5783 "\x64\x61\x73\x73\x20\x64\x69\x72" 5784 "\x20\x64\x61\x73\x20\x4c\x65\x62" 5785 "\x65\x6e\x20\x67\x65\x6c\x69\x6e" 5786 "\x67\x65\x2c\x0a\x62\x72\x65\x69" 5787 "\x74\x65\x20\x64\x69\x63\x68\x20" 5788 "\x77\x69\x65\x20\x65\x69\x6e\x20" 5789 "\x46\x65\x69\x65\x72\x6b\x6c\x65" 5790 "\x69\x64\x0a\xc3\xbc\x62\x65\x72" 5791 "\x20\x64\x69\x65\x20\x73\x69\x6e" 5792 "\x6e\x65\x6e\x64\x65\x6e\x20\x44" 5793 "\x69\x6e\x67\x65\x2e\x2e\x2e\x0a", 5794 .psize = 400, 5795 .digest = "\xad\xb1\xc1\xe9\x56\x70\x31\x1d" 5796 "\xbb\x5b\xdf\x5e\x70\x72\x1a\x57", 5797 }, 5798 }; 5799 5800 /* 5801 * HMAC-MD5 test vectors from RFC2202 5802 * (These need to be fixed to not use strlen). 5803 */ 5804 static const struct hash_testvec hmac_md5_tv_template[] = 5805 { 5806 { 5807 .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b", 5808 .ksize = 16, 5809 .plaintext = "Hi There", 5810 .psize = 8, 5811 .digest = "\x92\x94\x72\x7a\x36\x38\xbb\x1c" 5812 "\x13\xf4\x8e\xf8\x15\x8b\xfc\x9d", 5813 }, { 5814 .key = "Jefe", 5815 .ksize = 4, 5816 .plaintext = "what do ya want for nothing?", 5817 .psize = 28, 5818 .digest = "\x75\x0c\x78\x3e\x6a\xb0\xb5\x03" 5819 "\xea\xa8\x6e\x31\x0a\x5d\xb7\x38", 5820 }, { 5821 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa", 5822 .ksize = 16, 5823 .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 5824 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 5825 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 5826 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd", 5827 .psize = 50, 5828 .digest = "\x56\xbe\x34\x52\x1d\x14\x4c\x88" 5829 "\xdb\xb8\xc7\x33\xf0\xe8\xb3\xf6", 5830 }, { 5831 .key = "\x01\x02\x03\x04\x05\x06\x07\x08" 5832 "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 5833 "\x11\x12\x13\x14\x15\x16\x17\x18\x19", 5834 .ksize = 25, 5835 .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 5836 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 5837 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 5838 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd", 5839 .psize = 50, 5840 .digest = "\x69\x7e\xaf\x0a\xca\x3a\x3a\xea" 5841 "\x3a\x75\x16\x47\x46\xff\xaa\x79", 5842 }, { 5843 .key = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c", 5844 .ksize = 16, 5845 .plaintext = "Test With Truncation", 5846 .psize = 20, 5847 .digest = "\x56\x46\x1e\xf2\x34\x2e\xdc\x00" 5848 "\xf9\xba\xb9\x95\x69\x0e\xfd\x4c", 5849 }, { 5850 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 5851 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 5852 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 5853 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 5854 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 5855 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 5856 "\xaa\xaa", 5857 .ksize = 80, 5858 .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First", 5859 .psize = 54, 5860 .digest = "\x6b\x1a\xb7\xfe\x4b\xd7\xbf\x8f" 5861 "\x0b\x62\xe6\xce\x61\xb9\xd0\xcd", 5862 }, { 5863 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 5864 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 5865 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 5866 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 5867 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 5868 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 5869 "\xaa\xaa", 5870 .ksize = 80, 5871 .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One " 5872 "Block-Size Data", 5873 .psize = 73, 5874 .digest = "\x6f\x63\x0f\xad\x67\xcd\xa0\xee" 5875 "\x1f\xb1\xf5\x62\xdb\x3a\xa5\x3e", 5876 }, 5877 }; 5878 5879 /* 5880 * HMAC-RIPEMD128 test vectors from RFC2286 5881 */ 5882 static const struct hash_testvec hmac_rmd128_tv_template[] = { 5883 { 5884 .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b", 5885 .ksize = 16, 5886 .plaintext = "Hi There", 5887 .psize = 8, 5888 .digest = "\xfb\xf6\x1f\x94\x92\xaa\x4b\xbf" 5889 "\x81\xc1\x72\xe8\x4e\x07\x34\xdb", 5890 }, { 5891 .key = "Jefe", 5892 .ksize = 4, 5893 .plaintext = "what do ya want for nothing?", 5894 .psize = 28, 5895 .digest = "\x87\x5f\x82\x88\x62\xb6\xb3\x34" 5896 "\xb4\x27\xc5\x5f\x9f\x7f\xf0\x9b", 5897 }, { 5898 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa", 5899 .ksize = 16, 5900 .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 5901 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 5902 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 5903 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd", 5904 .psize = 50, 5905 .digest = "\x09\xf0\xb2\x84\x6d\x2f\x54\x3d" 5906 "\xa3\x63\xcb\xec\x8d\x62\xa3\x8d", 5907 }, { 5908 .key = "\x01\x02\x03\x04\x05\x06\x07\x08" 5909 "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 5910 "\x11\x12\x13\x14\x15\x16\x17\x18\x19", 5911 .ksize = 25, 5912 .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 5913 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 5914 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 5915 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd", 5916 .psize = 50, 5917 .digest = "\xbd\xbb\xd7\xcf\x03\xe4\x4b\x5a" 5918 "\xa6\x0a\xf8\x15\xbe\x4d\x22\x94", 5919 }, { 5920 .key = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c", 5921 .ksize = 16, 5922 .plaintext = "Test With Truncation", 5923 .psize = 20, 5924 .digest = "\xe7\x98\x08\xf2\x4b\x25\xfd\x03" 5925 "\x1c\x15\x5f\x0d\x55\x1d\x9a\x3a", 5926 }, { 5927 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 5928 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 5929 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 5930 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 5931 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 5932 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 5933 "\xaa\xaa", 5934 .ksize = 80, 5935 .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First", 5936 .psize = 54, 5937 .digest = "\xdc\x73\x29\x28\xde\x98\x10\x4a" 5938 "\x1f\x59\xd3\x73\xc1\x50\xac\xbb", 5939 }, { 5940 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 5941 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 5942 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 5943 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 5944 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 5945 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 5946 "\xaa\xaa", 5947 .ksize = 80, 5948 .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One " 5949 "Block-Size Data", 5950 .psize = 73, 5951 .digest = "\x5c\x6b\xec\x96\x79\x3e\x16\xd4" 5952 "\x06\x90\xc2\x37\x63\x5f\x30\xc5", 5953 }, 5954 }; 5955 5956 /* 5957 * HMAC-RIPEMD160 test vectors from RFC2286 5958 */ 5959 static const struct hash_testvec hmac_rmd160_tv_template[] = { 5960 { 5961 .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b", 5962 .ksize = 20, 5963 .plaintext = "Hi There", 5964 .psize = 8, 5965 .digest = "\x24\xcb\x4b\xd6\x7d\x20\xfc\x1a\x5d\x2e" 5966 "\xd7\x73\x2d\xcc\x39\x37\x7f\x0a\x56\x68", 5967 }, { 5968 .key = "Jefe", 5969 .ksize = 4, 5970 .plaintext = "what do ya want for nothing?", 5971 .psize = 28, 5972 .digest = "\xdd\xa6\xc0\x21\x3a\x48\x5a\x9e\x24\xf4" 5973 "\x74\x20\x64\xa7\xf0\x33\xb4\x3c\x40\x69", 5974 }, { 5975 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa", 5976 .ksize = 20, 5977 .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 5978 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 5979 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 5980 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd", 5981 .psize = 50, 5982 .digest = "\xb0\xb1\x05\x36\x0d\xe7\x59\x96\x0a\xb4" 5983 "\xf3\x52\x98\xe1\x16\xe2\x95\xd8\xe7\xc1", 5984 }, { 5985 .key = "\x01\x02\x03\x04\x05\x06\x07\x08" 5986 "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 5987 "\x11\x12\x13\x14\x15\x16\x17\x18\x19", 5988 .ksize = 25, 5989 .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 5990 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 5991 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 5992 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd", 5993 .psize = 50, 5994 .digest = "\xd5\xca\x86\x2f\x4d\x21\xd5\xe6\x10\xe1" 5995 "\x8b\x4c\xf1\xbe\xb9\x7a\x43\x65\xec\xf4", 5996 }, { 5997 .key = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c", 5998 .ksize = 20, 5999 .plaintext = "Test With Truncation", 6000 .psize = 20, 6001 .digest = "\x76\x19\x69\x39\x78\xf9\x1d\x90\x53\x9a" 6002 "\xe7\x86\x50\x0f\xf3\xd8\xe0\x51\x8e\x39", 6003 }, { 6004 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6005 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6006 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6007 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6008 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6009 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6010 "\xaa\xaa", 6011 .ksize = 80, 6012 .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First", 6013 .psize = 54, 6014 .digest = "\x64\x66\xca\x07\xac\x5e\xac\x29\xe1\xbd" 6015 "\x52\x3e\x5a\xda\x76\x05\xb7\x91\xfd\x8b", 6016 }, { 6017 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6018 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6019 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6020 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6021 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6022 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6023 "\xaa\xaa", 6024 .ksize = 80, 6025 .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One " 6026 "Block-Size Data", 6027 .psize = 73, 6028 .digest = "\x69\xea\x60\x79\x8d\x71\x61\x6c\xce\x5f" 6029 "\xd0\x87\x1e\x23\x75\x4c\xd7\x5d\x5a\x0a", 6030 }, 6031 }; 6032 6033 /* 6034 * HMAC-SHA1 test vectors from RFC2202 6035 */ 6036 static const struct hash_testvec hmac_sha1_tv_template[] = { 6037 { 6038 .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b", 6039 .ksize = 20, 6040 .plaintext = "Hi There", 6041 .psize = 8, 6042 .digest = "\xb6\x17\x31\x86\x55\x05\x72\x64" 6043 "\xe2\x8b\xc0\xb6\xfb\x37\x8c\x8e\xf1" 6044 "\x46\xbe", 6045 }, { 6046 .key = "Jefe", 6047 .ksize = 4, 6048 .plaintext = "what do ya want for nothing?", 6049 .psize = 28, 6050 .digest = "\xef\xfc\xdf\x6a\xe5\xeb\x2f\xa2\xd2\x74" 6051 "\x16\xd5\xf1\x84\xdf\x9c\x25\x9a\x7c\x79", 6052 }, { 6053 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa", 6054 .ksize = 20, 6055 .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 6056 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 6057 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 6058 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd", 6059 .psize = 50, 6060 .digest = "\x12\x5d\x73\x42\xb9\xac\x11\xcd\x91\xa3" 6061 "\x9a\xf4\x8a\xa1\x7b\x4f\x63\xf1\x75\xd3", 6062 }, { 6063 .key = "\x01\x02\x03\x04\x05\x06\x07\x08" 6064 "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 6065 "\x11\x12\x13\x14\x15\x16\x17\x18\x19", 6066 .ksize = 25, 6067 .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 6068 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 6069 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 6070 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd", 6071 .psize = 50, 6072 .digest = "\x4c\x90\x07\xf4\x02\x62\x50\xc6\xbc\x84" 6073 "\x14\xf9\xbf\x50\xc8\x6c\x2d\x72\x35\xda", 6074 }, { 6075 .key = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c", 6076 .ksize = 20, 6077 .plaintext = "Test With Truncation", 6078 .psize = 20, 6079 .digest = "\x4c\x1a\x03\x42\x4b\x55\xe0\x7f\xe7\xf2" 6080 "\x7b\xe1\xd5\x8b\xb9\x32\x4a\x9a\x5a\x04", 6081 }, { 6082 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6083 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6084 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6085 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6086 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6087 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6088 "\xaa\xaa", 6089 .ksize = 80, 6090 .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First", 6091 .psize = 54, 6092 .digest = "\xaa\x4a\xe5\xe1\x52\x72\xd0\x0e\x95\x70" 6093 "\x56\x37\xce\x8a\x3b\x55\xed\x40\x21\x12", 6094 }, { 6095 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6096 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6097 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6098 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6099 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6100 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6101 "\xaa\xaa", 6102 .ksize = 80, 6103 .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One " 6104 "Block-Size Data", 6105 .psize = 73, 6106 .digest = "\xe8\xe9\x9d\x0f\x45\x23\x7d\x78\x6d\x6b" 6107 "\xba\xa7\x96\x5c\x78\x08\xbb\xff\x1a\x91", 6108 }, 6109 }; 6110 6111 6112 /* 6113 * SHA224 HMAC test vectors from RFC4231 6114 */ 6115 static const struct hash_testvec hmac_sha224_tv_template[] = { 6116 { 6117 .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 6118 "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 6119 "\x0b\x0b\x0b\x0b", 6120 .ksize = 20, 6121 /* ("Hi There") */ 6122 .plaintext = "\x48\x69\x20\x54\x68\x65\x72\x65", 6123 .psize = 8, 6124 .digest = "\x89\x6f\xb1\x12\x8a\xbb\xdf\x19" 6125 "\x68\x32\x10\x7c\xd4\x9d\xf3\x3f" 6126 "\x47\xb4\xb1\x16\x99\x12\xba\x4f" 6127 "\x53\x68\x4b\x22", 6128 }, { 6129 .key = "Jefe", 6130 .ksize = 4, 6131 /* ("what do ya want for nothing?") */ 6132 .plaintext = "\x77\x68\x61\x74\x20\x64\x6f\x20" 6133 "\x79\x61\x20\x77\x61\x6e\x74\x20" 6134 "\x66\x6f\x72\x20\x6e\x6f\x74\x68" 6135 "\x69\x6e\x67\x3f", 6136 .psize = 28, 6137 .digest = "\xa3\x0e\x01\x09\x8b\xc6\xdb\xbf" 6138 "\x45\x69\x0f\x3a\x7e\x9e\x6d\x0f" 6139 "\x8b\xbe\xa2\xa3\x9e\x61\x48\x00" 6140 "\x8f\xd0\x5e\x44", 6141 }, { 6142 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6143 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6144 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6145 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6146 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6147 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6148 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6149 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6150 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6151 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6152 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6153 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6154 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6155 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6156 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6157 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6158 "\xaa\xaa\xaa", 6159 .ksize = 131, 6160 /* ("Test Using Larger Than Block-Size Key - Hash Key First") */ 6161 .plaintext = "\x54\x65\x73\x74\x20\x55\x73\x69" 6162 "\x6e\x67\x20\x4c\x61\x72\x67\x65" 6163 "\x72\x20\x54\x68\x61\x6e\x20\x42" 6164 "\x6c\x6f\x63\x6b\x2d\x53\x69\x7a" 6165 "\x65\x20\x4b\x65\x79\x20\x2d\x20" 6166 "\x48\x61\x73\x68\x20\x4b\x65\x79" 6167 "\x20\x46\x69\x72\x73\x74", 6168 .psize = 54, 6169 .digest = "\x95\xe9\xa0\xdb\x96\x20\x95\xad" 6170 "\xae\xbe\x9b\x2d\x6f\x0d\xbc\xe2" 6171 "\xd4\x99\xf1\x12\xf2\xd2\xb7\x27" 6172 "\x3f\xa6\x87\x0e", 6173 }, { 6174 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6175 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6176 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6177 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6178 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6179 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6180 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6181 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6182 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6183 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6184 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6185 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6186 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6187 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6188 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6189 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6190 "\xaa\xaa\xaa", 6191 .ksize = 131, 6192 /* ("This is a test using a larger than block-size key and a") 6193 (" larger than block-size data. The key needs to be") 6194 (" hashed before being used by the HMAC algorithm.") */ 6195 .plaintext = "\x54\x68\x69\x73\x20\x69\x73\x20" 6196 "\x61\x20\x74\x65\x73\x74\x20\x75" 6197 "\x73\x69\x6e\x67\x20\x61\x20\x6c" 6198 "\x61\x72\x67\x65\x72\x20\x74\x68" 6199 "\x61\x6e\x20\x62\x6c\x6f\x63\x6b" 6200 "\x2d\x73\x69\x7a\x65\x20\x6b\x65" 6201 "\x79\x20\x61\x6e\x64\x20\x61\x20" 6202 "\x6c\x61\x72\x67\x65\x72\x20\x74" 6203 "\x68\x61\x6e\x20\x62\x6c\x6f\x63" 6204 "\x6b\x2d\x73\x69\x7a\x65\x20\x64" 6205 "\x61\x74\x61\x2e\x20\x54\x68\x65" 6206 "\x20\x6b\x65\x79\x20\x6e\x65\x65" 6207 "\x64\x73\x20\x74\x6f\x20\x62\x65" 6208 "\x20\x68\x61\x73\x68\x65\x64\x20" 6209 "\x62\x65\x66\x6f\x72\x65\x20\x62" 6210 "\x65\x69\x6e\x67\x20\x75\x73\x65" 6211 "\x64\x20\x62\x79\x20\x74\x68\x65" 6212 "\x20\x48\x4d\x41\x43\x20\x61\x6c" 6213 "\x67\x6f\x72\x69\x74\x68\x6d\x2e", 6214 .psize = 152, 6215 .digest = "\x3a\x85\x41\x66\xac\x5d\x9f\x02" 6216 "\x3f\x54\xd5\x17\xd0\xb3\x9d\xbd" 6217 "\x94\x67\x70\xdb\x9c\x2b\x95\xc9" 6218 "\xf6\xf5\x65\xd1", 6219 }, 6220 }; 6221 6222 /* 6223 * HMAC-SHA256 test vectors from 6224 * draft-ietf-ipsec-ciph-sha-256-01.txt 6225 */ 6226 static const struct hash_testvec hmac_sha256_tv_template[] = { 6227 { 6228 .key = "\x01\x02\x03\x04\x05\x06\x07\x08" 6229 "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 6230 "\x11\x12\x13\x14\x15\x16\x17\x18" 6231 "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20", 6232 .ksize = 32, 6233 .plaintext = "abc", 6234 .psize = 3, 6235 .digest = "\xa2\x1b\x1f\x5d\x4c\xf4\xf7\x3a" 6236 "\x4d\xd9\x39\x75\x0f\x7a\x06\x6a" 6237 "\x7f\x98\xcc\x13\x1c\xb1\x6a\x66" 6238 "\x92\x75\x90\x21\xcf\xab\x81\x81", 6239 }, { 6240 .key = "\x01\x02\x03\x04\x05\x06\x07\x08" 6241 "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 6242 "\x11\x12\x13\x14\x15\x16\x17\x18" 6243 "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20", 6244 .ksize = 32, 6245 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 6246 .psize = 56, 6247 .digest = "\x10\x4f\xdc\x12\x57\x32\x8f\x08" 6248 "\x18\x4b\xa7\x31\x31\xc5\x3c\xae" 6249 "\xe6\x98\xe3\x61\x19\x42\x11\x49" 6250 "\xea\x8c\x71\x24\x56\x69\x7d\x30", 6251 }, { 6252 .key = "\x01\x02\x03\x04\x05\x06\x07\x08" 6253 "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 6254 "\x11\x12\x13\x14\x15\x16\x17\x18" 6255 "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20", 6256 .ksize = 32, 6257 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq" 6258 "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 6259 .psize = 112, 6260 .digest = "\x47\x03\x05\xfc\x7e\x40\xfe\x34" 6261 "\xd3\xee\xb3\xe7\x73\xd9\x5a\xab" 6262 "\x73\xac\xf0\xfd\x06\x04\x47\xa5" 6263 "\xeb\x45\x95\xbf\x33\xa9\xd1\xa3", 6264 }, { 6265 .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 6266 "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 6267 "\x0b\x0b\x0b\x0b\x0b\x0b", 6268 .ksize = 32, 6269 .plaintext = "Hi There", 6270 .psize = 8, 6271 .digest = "\x19\x8a\x60\x7e\xb4\x4b\xfb\xc6" 6272 "\x99\x03\xa0\xf1\xcf\x2b\xbd\xc5" 6273 "\xba\x0a\xa3\xf3\xd9\xae\x3c\x1c" 6274 "\x7a\x3b\x16\x96\xa0\xb6\x8c\xf7", 6275 }, { 6276 .key = "Jefe", 6277 .ksize = 4, 6278 .plaintext = "what do ya want for nothing?", 6279 .psize = 28, 6280 .digest = "\x5b\xdc\xc1\x46\xbf\x60\x75\x4e" 6281 "\x6a\x04\x24\x26\x08\x95\x75\xc7" 6282 "\x5a\x00\x3f\x08\x9d\x27\x39\x83" 6283 "\x9d\xec\x58\xb9\x64\xec\x38\x43", 6284 }, { 6285 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6286 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6287 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa", 6288 .ksize = 32, 6289 .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 6290 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 6291 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 6292 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd", 6293 .psize = 50, 6294 .digest = "\xcd\xcb\x12\x20\xd1\xec\xcc\xea" 6295 "\x91\xe5\x3a\xba\x30\x92\xf9\x62" 6296 "\xe5\x49\xfe\x6c\xe9\xed\x7f\xdc" 6297 "\x43\x19\x1f\xbd\xe4\x5c\x30\xb0", 6298 }, { 6299 .key = "\x01\x02\x03\x04\x05\x06\x07\x08" 6300 "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 6301 "\x11\x12\x13\x14\x15\x16\x17\x18" 6302 "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20" 6303 "\x21\x22\x23\x24\x25", 6304 .ksize = 37, 6305 .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 6306 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 6307 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 6308 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd", 6309 .psize = 50, 6310 .digest = "\xd4\x63\x3c\x17\xf6\xfb\x8d\x74" 6311 "\x4c\x66\xde\xe0\xf8\xf0\x74\x55" 6312 "\x6e\xc4\xaf\x55\xef\x07\x99\x85" 6313 "\x41\x46\x8e\xb4\x9b\xd2\xe9\x17", 6314 }, { 6315 .key = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c" 6316 "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c" 6317 "\x0c\x0c\x0c\x0c\x0c\x0c", 6318 .ksize = 32, 6319 .plaintext = "Test With Truncation", 6320 .psize = 20, 6321 .digest = "\x75\x46\xaf\x01\x84\x1f\xc0\x9b" 6322 "\x1a\xb9\xc3\x74\x9a\x5f\x1c\x17" 6323 "\xd4\xf5\x89\x66\x8a\x58\x7b\x27" 6324 "\x00\xa9\xc9\x7c\x11\x93\xcf\x42", 6325 }, { 6326 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6327 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6328 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6329 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6330 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6331 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6332 "\xaa\xaa", 6333 .ksize = 80, 6334 .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First", 6335 .psize = 54, 6336 .digest = "\x69\x53\x02\x5e\xd9\x6f\x0c\x09" 6337 "\xf8\x0a\x96\xf7\x8e\x65\x38\xdb" 6338 "\xe2\xe7\xb8\x20\xe3\xdd\x97\x0e" 6339 "\x7d\xdd\x39\x09\x1b\x32\x35\x2f", 6340 }, { 6341 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6342 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6343 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6344 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6345 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6346 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6347 "\xaa\xaa", 6348 .ksize = 80, 6349 .plaintext = "Test Using Larger Than Block-Size Key and Larger Than " 6350 "One Block-Size Data", 6351 .psize = 73, 6352 .digest = "\x63\x55\xac\x22\xe8\x90\xd0\xa3" 6353 "\xc8\x48\x1a\x5c\xa4\x82\x5b\xc8" 6354 "\x84\xd3\xe7\xa1\xff\x98\xa2\xfc" 6355 "\x2a\xc7\xd8\xe0\x64\xc3\xb2\xe6", 6356 }, 6357 }; 6358 6359 static const struct hash_testvec aes_cmac128_tv_template[] = { 6360 { /* From NIST Special Publication 800-38B, AES-128 */ 6361 .key = "\x2b\x7e\x15\x16\x28\xae\xd2\xa6" 6362 "\xab\xf7\x15\x88\x09\xcf\x4f\x3c", 6363 .plaintext = zeroed_string, 6364 .digest = "\xbb\x1d\x69\x29\xe9\x59\x37\x28" 6365 "\x7f\xa3\x7d\x12\x9b\x75\x67\x46", 6366 .psize = 0, 6367 .ksize = 16, 6368 }, { 6369 .key = "\x2b\x7e\x15\x16\x28\xae\xd2\xa6" 6370 "\xab\xf7\x15\x88\x09\xcf\x4f\x3c", 6371 .plaintext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 6372 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a", 6373 .digest = "\x07\x0a\x16\xb4\x6b\x4d\x41\x44" 6374 "\xf7\x9b\xdd\x9d\xd0\x4a\x28\x7c", 6375 .psize = 16, 6376 .ksize = 16, 6377 }, { 6378 .key = "\x2b\x7e\x15\x16\x28\xae\xd2\xa6" 6379 "\xab\xf7\x15\x88\x09\xcf\x4f\x3c", 6380 .plaintext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 6381 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 6382 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 6383 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 6384 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11", 6385 .digest = "\xdf\xa6\x67\x47\xde\x9a\xe6\x30" 6386 "\x30\xca\x32\x61\x14\x97\xc8\x27", 6387 .psize = 40, 6388 .ksize = 16, 6389 }, { 6390 .key = "\x2b\x7e\x15\x16\x28\xae\xd2\xa6" 6391 "\xab\xf7\x15\x88\x09\xcf\x4f\x3c", 6392 .plaintext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 6393 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 6394 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 6395 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 6396 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 6397 "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 6398 "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 6399 "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 6400 .digest = "\x51\xf0\xbe\xbf\x7e\x3b\x9d\x92" 6401 "\xfc\x49\x74\x17\x79\x36\x3c\xfe", 6402 .psize = 64, 6403 .ksize = 16, 6404 }, { /* From NIST Special Publication 800-38B, AES-256 */ 6405 .key = "\x60\x3d\xeb\x10\x15\xca\x71\xbe" 6406 "\x2b\x73\xae\xf0\x85\x7d\x77\x81" 6407 "\x1f\x35\x2c\x07\x3b\x61\x08\xd7" 6408 "\x2d\x98\x10\xa3\x09\x14\xdf\xf4", 6409 .plaintext = zeroed_string, 6410 .digest = "\x02\x89\x62\xf6\x1b\x7b\xf8\x9e" 6411 "\xfc\x6b\x55\x1f\x46\x67\xd9\x83", 6412 .psize = 0, 6413 .ksize = 32, 6414 }, { 6415 .key = "\x60\x3d\xeb\x10\x15\xca\x71\xbe" 6416 "\x2b\x73\xae\xf0\x85\x7d\x77\x81" 6417 "\x1f\x35\x2c\x07\x3b\x61\x08\xd7" 6418 "\x2d\x98\x10\xa3\x09\x14\xdf\xf4", 6419 .plaintext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 6420 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 6421 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 6422 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 6423 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 6424 "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 6425 "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 6426 "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 6427 .digest = "\xe1\x99\x21\x90\x54\x9f\x6e\xd5" 6428 "\x69\x6a\x2c\x05\x6c\x31\x54\x10", 6429 .psize = 64, 6430 .ksize = 32, 6431 } 6432 }; 6433 6434 static const struct hash_testvec aes_cbcmac_tv_template[] = { 6435 { 6436 .key = "\x2b\x7e\x15\x16\x28\xae\xd2\xa6" 6437 "\xab\xf7\x15\x88\x09\xcf\x4f\x3c", 6438 .plaintext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 6439 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a", 6440 .digest = "\x3a\xd7\x7b\xb4\x0d\x7a\x36\x60" 6441 "\xa8\x9e\xca\xf3\x24\x66\xef\x97", 6442 .psize = 16, 6443 .ksize = 16, 6444 }, { 6445 .key = "\x2b\x7e\x15\x16\x28\xae\xd2\xa6" 6446 "\xab\xf7\x15\x88\x09\xcf\x4f\x3c", 6447 .plaintext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 6448 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 6449 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 6450 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 6451 "\x30", 6452 .digest = "\x9d\x0d\xd0\x63\xfb\xcb\x24\x43" 6453 "\xf8\xf2\x76\x03\xac\x39\xb0\x9d", 6454 .psize = 33, 6455 .ksize = 16, 6456 }, { 6457 .key = "\x2b\x7e\x15\x16\x28\xae\xd2\xa6" 6458 "\xab\xf7\x15\x88\x09\xcf\x4f\x3c", 6459 .plaintext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 6460 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 6461 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 6462 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 6463 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 6464 "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 6465 "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 6466 "\xad\x2b\x41\x7b\xe6\x6c\x37", 6467 .digest = "\xc0\x71\x73\xb8\xa0\x2c\x11\x7c" 6468 "\xaf\xdc\xb2\xf8\x89\x32\xa3\x3a", 6469 .psize = 63, 6470 .ksize = 16, 6471 }, { 6472 .key = "\x60\x3d\xeb\x10\x15\xca\x71\xbe" 6473 "\x2b\x73\xae\xf0\x85\x7d\x77\x81" 6474 "\x1f\x35\x2c\x07\x3b\x61\x08\xd7" 6475 "\x2d\x98\x10\xa3\x09\x14\xdf\xf4", 6476 .plaintext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 6477 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 6478 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 6479 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 6480 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 6481 "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 6482 "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 6483 "\xad\x2b\x41\x7b\xe6\x6c\x37\x10" 6484 "\x1c", 6485 .digest = "\x6a\x4e\xdb\x21\x47\x51\xdf\x4f" 6486 "\xa8\x4d\x4c\x10\x3b\x72\x7d\xd6", 6487 .psize = 65, 6488 .ksize = 32, 6489 } 6490 }; 6491 6492 static const struct hash_testvec des3_ede_cmac64_tv_template[] = { 6493 /* 6494 * From NIST Special Publication 800-38B, Three Key TDEA 6495 * Corrected test vectors from: 6496 * http://csrc.nist.gov/publications/nistpubs/800-38B/Updated_CMAC_Examples.pdf 6497 */ 6498 { 6499 .key = "\x8a\xa8\x3b\xf8\xcb\xda\x10\x62" 6500 "\x0b\xc1\xbf\x19\xfb\xb6\xcd\x58" 6501 "\xbc\x31\x3d\x4a\x37\x1c\xa8\xb5", 6502 .plaintext = zeroed_string, 6503 .digest = "\xb7\xa6\x88\xe1\x22\xff\xaf\x95", 6504 .psize = 0, 6505 .ksize = 24, 6506 }, { 6507 .key = "\x8a\xa8\x3b\xf8\xcb\xda\x10\x62" 6508 "\x0b\xc1\xbf\x19\xfb\xb6\xcd\x58" 6509 "\xbc\x31\x3d\x4a\x37\x1c\xa8\xb5", 6510 .plaintext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96", 6511 .digest = "\x8e\x8f\x29\x31\x36\x28\x37\x97", 6512 .psize = 8, 6513 .ksize = 24, 6514 }, { 6515 .key = "\x8a\xa8\x3b\xf8\xcb\xda\x10\x62" 6516 "\x0b\xc1\xbf\x19\xfb\xb6\xcd\x58" 6517 "\xbc\x31\x3d\x4a\x37\x1c\xa8\xb5", 6518 .plaintext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 6519 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 6520 "\xae\x2d\x8a\x57", 6521 .digest = "\x74\x3d\xdb\xe0\xce\x2d\xc2\xed", 6522 .psize = 20, 6523 .ksize = 24, 6524 }, { 6525 .key = "\x8a\xa8\x3b\xf8\xcb\xda\x10\x62" 6526 "\x0b\xc1\xbf\x19\xfb\xb6\xcd\x58" 6527 "\xbc\x31\x3d\x4a\x37\x1c\xa8\xb5", 6528 .plaintext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 6529 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 6530 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 6531 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51", 6532 .digest = "\x33\xe6\xb1\x09\x24\x00\xea\xe5", 6533 .psize = 32, 6534 .ksize = 24, 6535 } 6536 }; 6537 6538 static const struct hash_testvec aes_xcbc128_tv_template[] = { 6539 { 6540 .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 6541 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 6542 .plaintext = zeroed_string, 6543 .digest = "\x75\xf0\x25\x1d\x52\x8a\xc0\x1c" 6544 "\x45\x73\xdf\xd5\x84\xd7\x9f\x29", 6545 .psize = 0, 6546 .ksize = 16, 6547 }, { 6548 .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 6549 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 6550 .plaintext = "\x00\x01\x02", 6551 .digest = "\x5b\x37\x65\x80\xae\x2f\x19\xaf" 6552 "\xe7\x21\x9c\xee\xf1\x72\x75\x6f", 6553 .psize = 3, 6554 .ksize = 16, 6555 } , { 6556 .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 6557 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 6558 .plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07" 6559 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 6560 .digest = "\xd2\xa2\x46\xfa\x34\x9b\x68\xa7" 6561 "\x99\x98\xa4\x39\x4f\xf7\xa2\x63", 6562 .psize = 16, 6563 .ksize = 16, 6564 }, { 6565 .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 6566 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 6567 .plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07" 6568 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 6569 "\x10\x11\x12\x13", 6570 .digest = "\x47\xf5\x1b\x45\x64\x96\x62\x15" 6571 "\xb8\x98\x5c\x63\x05\x5e\xd3\x08", 6572 .psize = 20, 6573 .ksize = 16, 6574 }, { 6575 .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 6576 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 6577 .plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07" 6578 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 6579 "\x10\x11\x12\x13\x14\x15\x16\x17" 6580 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 6581 .digest = "\xf5\x4f\x0e\xc8\xd2\xb9\xf3\xd3" 6582 "\x68\x07\x73\x4b\xd5\x28\x3f\xd4", 6583 .psize = 32, 6584 .ksize = 16, 6585 }, { 6586 .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 6587 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 6588 .plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07" 6589 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 6590 "\x10\x11\x12\x13\x14\x15\x16\x17" 6591 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 6592 "\x20\x21", 6593 .digest = "\xbe\xcb\xb3\xbc\xcd\xb5\x18\xa3" 6594 "\x06\x77\xd5\x48\x1f\xb6\xb4\xd8", 6595 .psize = 34, 6596 .ksize = 16, 6597 } 6598 }; 6599 6600 static const char vmac64_string1[144] = { 6601 '\0', '\0', '\0', '\0', '\0', '\0', '\0', '\0', 6602 '\0', '\0', '\0', '\0', '\0', '\0', '\0', '\0', 6603 '\x01', '\x01', '\x01', '\x01', '\x02', '\x03', '\x02', '\x02', 6604 '\x02', '\x04', '\x01', '\x07', '\x04', '\x01', '\x04', '\x03', 6605 }; 6606 6607 static const char vmac64_string2[144] = { 6608 '\0', '\0', '\0', '\0', '\0', '\0', '\0', '\0', 6609 '\0', '\0', '\0', '\0', '\0', '\0', '\0', '\0', 6610 'a', 'b', 'c', 6611 }; 6612 6613 static const char vmac64_string3[144] = { 6614 '\0', '\0', '\0', '\0', '\0', '\0', '\0', '\0', 6615 '\0', '\0', '\0', '\0', '\0', '\0', '\0', '\0', 6616 'a', 'b', 'c', 'a', 'b', 'c', 'a', 'b', 6617 'c', 'a', 'b', 'c', 'a', 'b', 'c', 'a', 6618 'b', 'c', 'a', 'b', 'c', 'a', 'b', 'c', 6619 'a', 'b', 'c', 'a', 'b', 'c', 'a', 'b', 6620 'c', 'a', 'b', 'c', 'a', 'b', 'c', 'a', 6621 'b', 'c', 'a', 'b', 'c', 'a', 'b', 'c', 6622 }; 6623 6624 static const char vmac64_string4[33] = { 6625 '\0', '\0', '\0', '\0', '\0', '\0', '\0', '\0', 6626 '\0', '\0', '\0', '\0', '\0', '\0', '\0', '\0', 6627 'b', 'c', 'e', 'f', 'i', 'j', 'l', 'm', 6628 'o', 'p', 'r', 's', 't', 'u', 'w', 'x', 6629 'z', 6630 }; 6631 6632 static const char vmac64_string5[143] = { 6633 '\0', '\0', '\0', '\0', '\0', '\0', '\0', '\0', 6634 '\0', '\0', '\0', '\0', '\0', '\0', '\0', '\0', 6635 'r', 'm', 'b', 't', 'c', 'o', 'l', 'k', 6636 ']', '%', '9', '2', '7', '!', 'A', 6637 }; 6638 6639 static const char vmac64_string6[145] = { 6640 '\0', '\0', '\0', '\0', '\0', '\0', '\0', '\0', 6641 '\0', '\0', '\0', '\0', '\0', '\0', '\0', '\0', 6642 'p', 't', '*', '7', 'l', 'i', '!', '#', 6643 'w', '0', 'z', '/', '4', 'A', 'n', 6644 }; 6645 6646 static const struct hash_testvec vmac64_aes_tv_template[] = { 6647 { /* draft-krovetz-vmac-01 test vector 1 */ 6648 .key = "abcdefghijklmnop", 6649 .ksize = 16, 6650 .plaintext = "\0\0\0\0\0\0\0\0bcdefghi", 6651 .psize = 16, 6652 .digest = "\x25\x76\xbe\x1c\x56\xd8\xb8\x1b", 6653 }, { /* draft-krovetz-vmac-01 test vector 2 */ 6654 .key = "abcdefghijklmnop", 6655 .ksize = 16, 6656 .plaintext = "\0\0\0\0\0\0\0\0bcdefghiabc", 6657 .psize = 19, 6658 .digest = "\x2d\x37\x6c\xf5\xb1\x81\x3c\xe5", 6659 }, { /* draft-krovetz-vmac-01 test vector 3 */ 6660 .key = "abcdefghijklmnop", 6661 .ksize = 16, 6662 .plaintext = "\0\0\0\0\0\0\0\0bcdefghi" 6663 "abcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabc", 6664 .psize = 64, 6665 .digest = "\xe8\x42\x1f\x61\xd5\x73\xd2\x98", 6666 }, { /* draft-krovetz-vmac-01 test vector 4 */ 6667 .key = "abcdefghijklmnop", 6668 .ksize = 16, 6669 .plaintext = "\0\0\0\0\0\0\0\0bcdefghi" 6670 "abcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabc" 6671 "abcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabc" 6672 "abcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabc" 6673 "abcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabc" 6674 "abcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabc" 6675 "abcabcabcabcabcabcabcabcabcabcabcabcabcabcabc", 6676 .psize = 316, 6677 .digest = "\x44\x92\xdf\x6c\x5c\xac\x1b\xbe", 6678 }, { 6679 .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 6680 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 6681 .ksize = 16, 6682 .plaintext = "\x00\x00\x00\x00\x00\x00\x00\x00" 6683 "\x00\x00\x00\x00\x00\x00\x00\x00", 6684 .psize = 16, 6685 .digest = "\x54\x7b\xa4\x77\x35\x80\x58\x07", 6686 }, { 6687 .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 6688 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 6689 .ksize = 16, 6690 .plaintext = vmac64_string1, 6691 .psize = sizeof(vmac64_string1), 6692 .digest = "\xa1\x8c\x68\xae\xd3\x3c\xf5\xce", 6693 }, { 6694 .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 6695 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 6696 .ksize = 16, 6697 .plaintext = vmac64_string2, 6698 .psize = sizeof(vmac64_string2), 6699 .digest = "\x2d\x14\xbd\x81\x73\xb0\x27\xc9", 6700 }, { 6701 .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 6702 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 6703 .ksize = 16, 6704 .plaintext = vmac64_string3, 6705 .psize = sizeof(vmac64_string3), 6706 .digest = "\x19\x0b\x47\x98\x8c\x95\x1a\x8d", 6707 }, { 6708 .key = "abcdefghijklmnop", 6709 .ksize = 16, 6710 .plaintext = "\x00\x00\x00\x00\x00\x00\x00\x00" 6711 "\x00\x00\x00\x00\x00\x00\x00\x00", 6712 .psize = 16, 6713 .digest = "\x84\x8f\x55\x9e\x26\xa1\x89\x3b", 6714 }, { 6715 .key = "abcdefghijklmnop", 6716 .ksize = 16, 6717 .plaintext = vmac64_string1, 6718 .psize = sizeof(vmac64_string1), 6719 .digest = "\xc2\x74\x8d\xf6\xb0\xab\x5e\xab", 6720 }, { 6721 .key = "abcdefghijklmnop", 6722 .ksize = 16, 6723 .plaintext = vmac64_string2, 6724 .psize = sizeof(vmac64_string2), 6725 .digest = "\xdf\x09\x7b\x3d\x42\x68\x15\x11", 6726 }, { 6727 .key = "abcdefghijklmnop", 6728 .ksize = 16, 6729 .plaintext = vmac64_string3, 6730 .psize = sizeof(vmac64_string3), 6731 .digest = "\xd4\xfa\x8f\xed\xe1\x8f\x32\x8b", 6732 }, { 6733 .key = "a09b5cd!f#07K\x00\x00\x00", 6734 .ksize = 16, 6735 .plaintext = vmac64_string4, 6736 .psize = sizeof(vmac64_string4), 6737 .digest = "\x5f\xa1\x4e\x42\xea\x0f\xa5\xab", 6738 }, { 6739 .key = "a09b5cd!f#07K\x00\x00\x00", 6740 .ksize = 16, 6741 .plaintext = vmac64_string5, 6742 .psize = sizeof(vmac64_string5), 6743 .digest = "\x60\x67\xe8\x1d\xbc\x98\x31\x25", 6744 }, { 6745 .key = "a09b5cd!f#07K\x00\x00\x00", 6746 .ksize = 16, 6747 .plaintext = vmac64_string6, 6748 .psize = sizeof(vmac64_string6), 6749 .digest = "\x41\xeb\x65\x95\x47\x9b\xae\xc4", 6750 }, 6751 }; 6752 6753 /* 6754 * SHA384 HMAC test vectors from RFC4231 6755 */ 6756 6757 static const struct hash_testvec hmac_sha384_tv_template[] = { 6758 { 6759 .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 6760 "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 6761 "\x0b\x0b\x0b\x0b", 6762 .ksize = 20, 6763 .plaintext = "Hi There", 6764 .psize = 8, 6765 .digest = "\xaf\xd0\x39\x44\xd8\x48\x95\x62" 6766 "\x6b\x08\x25\xf4\xab\x46\x90\x7f" 6767 "\x15\xf9\xda\xdb\xe4\x10\x1e\xc6" 6768 "\x82\xaa\x03\x4c\x7c\xeb\xc5\x9c" 6769 "\xfa\xea\x9e\xa9\x07\x6e\xde\x7f" 6770 "\x4a\xf1\x52\xe8\xb2\xfa\x9c\xb6", 6771 }, { 6772 .key = "Jefe", 6773 .ksize = 4, 6774 .plaintext = "what do ya want for nothing?", 6775 .psize = 28, 6776 .digest = "\xaf\x45\xd2\xe3\x76\x48\x40\x31" 6777 "\x61\x7f\x78\xd2\xb5\x8a\x6b\x1b" 6778 "\x9c\x7e\xf4\x64\xf5\xa0\x1b\x47" 6779 "\xe4\x2e\xc3\x73\x63\x22\x44\x5e" 6780 "\x8e\x22\x40\xca\x5e\x69\xe2\xc7" 6781 "\x8b\x32\x39\xec\xfa\xb2\x16\x49", 6782 }, { 6783 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6784 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6785 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6786 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6787 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6788 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6789 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6790 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6791 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6792 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6793 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6794 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6795 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6796 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6797 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6798 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6799 "\xaa\xaa\xaa", 6800 .ksize = 131, 6801 .plaintext = "Test Using Larger Than Block-Siz" 6802 "e Key - Hash Key First", 6803 .psize = 54, 6804 .digest = "\x4e\xce\x08\x44\x85\x81\x3e\x90" 6805 "\x88\xd2\xc6\x3a\x04\x1b\xc5\xb4" 6806 "\x4f\x9e\xf1\x01\x2a\x2b\x58\x8f" 6807 "\x3c\xd1\x1f\x05\x03\x3a\xc4\xc6" 6808 "\x0c\x2e\xf6\xab\x40\x30\xfe\x82" 6809 "\x96\x24\x8d\xf1\x63\xf4\x49\x52", 6810 }, { 6811 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6812 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6813 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6814 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6815 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6816 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6817 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6818 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6819 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6820 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6821 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6822 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6823 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6824 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6825 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6826 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6827 "\xaa\xaa\xaa", 6828 .ksize = 131, 6829 .plaintext = "This is a test u" 6830 "sing a larger th" 6831 "an block-size ke" 6832 "y and a larger t" 6833 "han block-size d" 6834 "ata. The key nee" 6835 "ds to be hashed " 6836 "before being use" 6837 "d by the HMAC al" 6838 "gorithm.", 6839 .psize = 152, 6840 .digest = "\x66\x17\x17\x8e\x94\x1f\x02\x0d" 6841 "\x35\x1e\x2f\x25\x4e\x8f\xd3\x2c" 6842 "\x60\x24\x20\xfe\xb0\xb8\xfb\x9a" 6843 "\xdc\xce\xbb\x82\x46\x1e\x99\xc5" 6844 "\xa6\x78\xcc\x31\xe7\x99\x17\x6d" 6845 "\x38\x60\xe6\x11\x0c\x46\x52\x3e", 6846 }, 6847 }; 6848 6849 /* 6850 * SHA512 HMAC test vectors from RFC4231 6851 */ 6852 6853 static const struct hash_testvec hmac_sha512_tv_template[] = { 6854 { 6855 .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 6856 "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 6857 "\x0b\x0b\x0b\x0b", 6858 .ksize = 20, 6859 .plaintext = "Hi There", 6860 .psize = 8, 6861 .digest = "\x87\xaa\x7c\xde\xa5\xef\x61\x9d" 6862 "\x4f\xf0\xb4\x24\x1a\x1d\x6c\xb0" 6863 "\x23\x79\xf4\xe2\xce\x4e\xc2\x78" 6864 "\x7a\xd0\xb3\x05\x45\xe1\x7c\xde" 6865 "\xda\xa8\x33\xb7\xd6\xb8\xa7\x02" 6866 "\x03\x8b\x27\x4e\xae\xa3\xf4\xe4" 6867 "\xbe\x9d\x91\x4e\xeb\x61\xf1\x70" 6868 "\x2e\x69\x6c\x20\x3a\x12\x68\x54", 6869 }, { 6870 .key = "Jefe", 6871 .ksize = 4, 6872 .plaintext = "what do ya want for nothing?", 6873 .psize = 28, 6874 .digest = "\x16\x4b\x7a\x7b\xfc\xf8\x19\xe2" 6875 "\xe3\x95\xfb\xe7\x3b\x56\xe0\xa3" 6876 "\x87\xbd\x64\x22\x2e\x83\x1f\xd6" 6877 "\x10\x27\x0c\xd7\xea\x25\x05\x54" 6878 "\x97\x58\xbf\x75\xc0\x5a\x99\x4a" 6879 "\x6d\x03\x4f\x65\xf8\xf0\xe6\xfd" 6880 "\xca\xea\xb1\xa3\x4d\x4a\x6b\x4b" 6881 "\x63\x6e\x07\x0a\x38\xbc\xe7\x37", 6882 }, { 6883 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6884 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6885 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6886 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6887 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6888 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6889 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6890 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6891 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6892 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6893 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6894 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6895 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6896 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6897 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6898 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6899 "\xaa\xaa\xaa", 6900 .ksize = 131, 6901 .plaintext = "Test Using Large" 6902 "r Than Block-Siz" 6903 "e Key - Hash Key" 6904 " First", 6905 .psize = 54, 6906 .digest = "\x80\xb2\x42\x63\xc7\xc1\xa3\xeb" 6907 "\xb7\x14\x93\xc1\xdd\x7b\xe8\xb4" 6908 "\x9b\x46\xd1\xf4\x1b\x4a\xee\xc1" 6909 "\x12\x1b\x01\x37\x83\xf8\xf3\x52" 6910 "\x6b\x56\xd0\x37\xe0\x5f\x25\x98" 6911 "\xbd\x0f\xd2\x21\x5d\x6a\x1e\x52" 6912 "\x95\xe6\x4f\x73\xf6\x3f\x0a\xec" 6913 "\x8b\x91\x5a\x98\x5d\x78\x65\x98", 6914 }, { 6915 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6916 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6917 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6918 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6919 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6920 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6921 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6922 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6923 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6924 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6925 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6926 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6927 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6928 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6929 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6930 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6931 "\xaa\xaa\xaa", 6932 .ksize = 131, 6933 .plaintext = 6934 "This is a test u" 6935 "sing a larger th" 6936 "an block-size ke" 6937 "y and a larger t" 6938 "han block-size d" 6939 "ata. The key nee" 6940 "ds to be hashed " 6941 "before being use" 6942 "d by the HMAC al" 6943 "gorithm.", 6944 .psize = 152, 6945 .digest = "\xe3\x7b\x6a\x77\x5d\xc8\x7d\xba" 6946 "\xa4\xdf\xa9\xf9\x6e\x5e\x3f\xfd" 6947 "\xde\xbd\x71\xf8\x86\x72\x89\x86" 6948 "\x5d\xf5\xa3\x2d\x20\xcd\xc9\x44" 6949 "\xb6\x02\x2c\xac\x3c\x49\x82\xb1" 6950 "\x0d\x5e\xeb\x55\xc3\xe4\xde\x15" 6951 "\x13\x46\x76\xfb\x6d\xe0\x44\x60" 6952 "\x65\xc9\x74\x40\xfa\x8c\x6a\x58", 6953 }, 6954 }; 6955 6956 static const struct hash_testvec hmac_sha3_224_tv_template[] = { 6957 { 6958 .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 6959 "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 6960 "\x0b\x0b\x0b\x0b", 6961 .ksize = 20, 6962 .plaintext = "Hi There", 6963 .psize = 8, 6964 .digest = "\x3b\x16\x54\x6b\xbc\x7b\xe2\x70" 6965 "\x6a\x03\x1d\xca\xfd\x56\x37\x3d" 6966 "\x98\x84\x36\x76\x41\xd8\xc5\x9a" 6967 "\xf3\xc8\x60\xf7", 6968 }, { 6969 .key = "Jefe", 6970 .ksize = 4, 6971 .plaintext = "what do ya want for nothing?", 6972 .psize = 28, 6973 .digest = "\x7f\xdb\x8d\xd8\x8b\xd2\xf6\x0d" 6974 "\x1b\x79\x86\x34\xad\x38\x68\x11" 6975 "\xc2\xcf\xc8\x5b\xfa\xf5\xd5\x2b" 6976 "\xba\xce\x5e\x66", 6977 }, { 6978 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6979 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6980 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6981 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6982 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6983 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6984 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6985 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6986 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6987 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6988 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6989 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6990 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6991 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6992 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6993 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 6994 "\xaa\xaa\xaa", 6995 .ksize = 131, 6996 .plaintext = "Test Using Large" 6997 "r Than Block-Siz" 6998 "e Key - Hash Key" 6999 " First", 7000 .psize = 54, 7001 .digest = "\xb4\xa1\xf0\x4c\x00\x28\x7a\x9b" 7002 "\x7f\x60\x75\xb3\x13\xd2\x79\xb8" 7003 "\x33\xbc\x8f\x75\x12\x43\x52\xd0" 7004 "\x5f\xb9\x99\x5f", 7005 }, { 7006 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7007 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7008 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7009 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7010 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7011 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7012 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7013 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7014 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7015 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7016 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7017 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7018 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7019 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7020 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7021 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7022 "\xaa\xaa\xaa", 7023 .ksize = 131, 7024 .plaintext = 7025 "This is a test u" 7026 "sing a larger th" 7027 "an block-size ke" 7028 "y and a larger t" 7029 "han block-size d" 7030 "ata. The key nee" 7031 "ds to be hashed " 7032 "before being use" 7033 "d by the HMAC al" 7034 "gorithm.", 7035 .psize = 152, 7036 .digest = "\x05\xd8\xcd\x6d\x00\xfa\xea\x8d" 7037 "\x1e\xb6\x8a\xde\x28\x73\x0b\xbd" 7038 "\x3c\xba\xb6\x92\x9f\x0a\x08\x6b" 7039 "\x29\xcd\x62\xa0", 7040 }, 7041 }; 7042 7043 static const struct hash_testvec hmac_sha3_256_tv_template[] = { 7044 { 7045 .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 7046 "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 7047 "\x0b\x0b\x0b\x0b", 7048 .ksize = 20, 7049 .plaintext = "Hi There", 7050 .psize = 8, 7051 .digest = "\xba\x85\x19\x23\x10\xdf\xfa\x96" 7052 "\xe2\xa3\xa4\x0e\x69\x77\x43\x51" 7053 "\x14\x0b\xb7\x18\x5e\x12\x02\xcd" 7054 "\xcc\x91\x75\x89\xf9\x5e\x16\xbb", 7055 }, { 7056 .key = "Jefe", 7057 .ksize = 4, 7058 .plaintext = "what do ya want for nothing?", 7059 .psize = 28, 7060 .digest = "\xc7\xd4\x07\x2e\x78\x88\x77\xae" 7061 "\x35\x96\xbb\xb0\xda\x73\xb8\x87" 7062 "\xc9\x17\x1f\x93\x09\x5b\x29\x4a" 7063 "\xe8\x57\xfb\xe2\x64\x5e\x1b\xa5", 7064 }, { 7065 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7066 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7067 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7068 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7069 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7070 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7071 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7072 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7073 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7074 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7075 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7076 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7077 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7078 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7079 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7080 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7081 "\xaa\xaa\xaa", 7082 .ksize = 131, 7083 .plaintext = "Test Using Large" 7084 "r Than Block-Siz" 7085 "e Key - Hash Key" 7086 " First", 7087 .psize = 54, 7088 .digest = "\xed\x73\xa3\x74\xb9\x6c\x00\x52" 7089 "\x35\xf9\x48\x03\x2f\x09\x67\x4a" 7090 "\x58\xc0\xce\x55\x5c\xfc\x1f\x22" 7091 "\x3b\x02\x35\x65\x60\x31\x2c\x3b", 7092 }, { 7093 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7094 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7095 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7096 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7097 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7098 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7099 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7100 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7101 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7102 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7103 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7104 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7105 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7106 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7107 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7108 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7109 "\xaa\xaa\xaa", 7110 .ksize = 131, 7111 .plaintext = 7112 "This is a test u" 7113 "sing a larger th" 7114 "an block-size ke" 7115 "y and a larger t" 7116 "han block-size d" 7117 "ata. The key nee" 7118 "ds to be hashed " 7119 "before being use" 7120 "d by the HMAC al" 7121 "gorithm.", 7122 .psize = 152, 7123 .digest = "\x65\xc5\xb0\x6d\x4c\x3d\xe3\x2a" 7124 "\x7a\xef\x87\x63\x26\x1e\x49\xad" 7125 "\xb6\xe2\x29\x3e\xc8\xe7\xc6\x1e" 7126 "\x8d\xe6\x17\x01\xfc\x63\xe1\x23", 7127 }, 7128 }; 7129 7130 static const struct hash_testvec hmac_sha3_384_tv_template[] = { 7131 { 7132 .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 7133 "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 7134 "\x0b\x0b\x0b\x0b", 7135 .ksize = 20, 7136 .plaintext = "Hi There", 7137 .psize = 8, 7138 .digest = "\x68\xd2\xdc\xf7\xfd\x4d\xdd\x0a" 7139 "\x22\x40\xc8\xa4\x37\x30\x5f\x61" 7140 "\xfb\x73\x34\xcf\xb5\xd0\x22\x6e" 7141 "\x1b\xc2\x7d\xc1\x0a\x2e\x72\x3a" 7142 "\x20\xd3\x70\xb4\x77\x43\x13\x0e" 7143 "\x26\xac\x7e\x3d\x53\x28\x86\xbd", 7144 }, { 7145 .key = "Jefe", 7146 .ksize = 4, 7147 .plaintext = "what do ya want for nothing?", 7148 .psize = 28, 7149 .digest = "\xf1\x10\x1f\x8c\xbf\x97\x66\xfd" 7150 "\x67\x64\xd2\xed\x61\x90\x3f\x21" 7151 "\xca\x9b\x18\xf5\x7c\xf3\xe1\xa2" 7152 "\x3c\xa1\x35\x08\xa9\x32\x43\xce" 7153 "\x48\xc0\x45\xdc\x00\x7f\x26\xa2" 7154 "\x1b\x3f\x5e\x0e\x9d\xf4\xc2\x0a", 7155 }, { 7156 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7157 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7158 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7159 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7160 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7161 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7162 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7163 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7164 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7165 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7166 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7167 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7168 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7169 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7170 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7171 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7172 "\xaa\xaa\xaa", 7173 .ksize = 131, 7174 .plaintext = "Test Using Large" 7175 "r Than Block-Siz" 7176 "e Key - Hash Key" 7177 " First", 7178 .psize = 54, 7179 .digest = "\x0f\xc1\x95\x13\xbf\x6b\xd8\x78" 7180 "\x03\x70\x16\x70\x6a\x0e\x57\xbc" 7181 "\x52\x81\x39\x83\x6b\x9a\x42\xc3" 7182 "\xd4\x19\xe4\x98\xe0\xe1\xfb\x96" 7183 "\x16\xfd\x66\x91\x38\xd3\x3a\x11" 7184 "\x05\xe0\x7c\x72\xb6\x95\x3b\xcc", 7185 }, { 7186 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7187 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7188 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7189 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7190 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7191 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7192 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7193 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7194 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7195 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7196 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7197 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7198 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7199 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7200 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7201 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7202 "\xaa\xaa\xaa", 7203 .ksize = 131, 7204 .plaintext = 7205 "This is a test u" 7206 "sing a larger th" 7207 "an block-size ke" 7208 "y and a larger t" 7209 "han block-size d" 7210 "ata. The key nee" 7211 "ds to be hashed " 7212 "before being use" 7213 "d by the HMAC al" 7214 "gorithm.", 7215 .psize = 152, 7216 .digest = "\x02\x6f\xdf\x6b\x50\x74\x1e\x37" 7217 "\x38\x99\xc9\xf7\xd5\x40\x6d\x4e" 7218 "\xb0\x9f\xc6\x66\x56\x36\xfc\x1a" 7219 "\x53\x00\x29\xdd\xf5\xcf\x3c\xa5" 7220 "\xa9\x00\xed\xce\x01\xf5\xf6\x1e" 7221 "\x2f\x40\x8c\xdf\x2f\xd3\xe7\xe8", 7222 }, 7223 }; 7224 7225 static const struct hash_testvec hmac_sha3_512_tv_template[] = { 7226 { 7227 .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 7228 "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 7229 "\x0b\x0b\x0b\x0b", 7230 .ksize = 20, 7231 .plaintext = "Hi There", 7232 .psize = 8, 7233 .digest = "\xeb\x3f\xbd\x4b\x2e\xaa\xb8\xf5" 7234 "\xc5\x04\xbd\x3a\x41\x46\x5a\xac" 7235 "\xec\x15\x77\x0a\x7c\xab\xac\x53" 7236 "\x1e\x48\x2f\x86\x0b\x5e\xc7\xba" 7237 "\x47\xcc\xb2\xc6\xf2\xaf\xce\x8f" 7238 "\x88\xd2\x2b\x6d\xc6\x13\x80\xf2" 7239 "\x3a\x66\x8f\xd3\x88\x8b\xb8\x05" 7240 "\x37\xc0\xa0\xb8\x64\x07\x68\x9e", 7241 }, { 7242 .key = "Jefe", 7243 .ksize = 4, 7244 .plaintext = "what do ya want for nothing?", 7245 .psize = 28, 7246 .digest = "\x5a\x4b\xfe\xab\x61\x66\x42\x7c" 7247 "\x7a\x36\x47\xb7\x47\x29\x2b\x83" 7248 "\x84\x53\x7c\xdb\x89\xaf\xb3\xbf" 7249 "\x56\x65\xe4\xc5\xe7\x09\x35\x0b" 7250 "\x28\x7b\xae\xc9\x21\xfd\x7c\xa0" 7251 "\xee\x7a\x0c\x31\xd0\x22\xa9\x5e" 7252 "\x1f\xc9\x2b\xa9\xd7\x7d\xf8\x83" 7253 "\x96\x02\x75\xbe\xb4\xe6\x20\x24", 7254 }, { 7255 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7256 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7257 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7258 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7259 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7260 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7261 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7262 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7263 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7264 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7265 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7266 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7267 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7268 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7269 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7270 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7271 "\xaa\xaa\xaa", 7272 .ksize = 131, 7273 .plaintext = "Test Using Large" 7274 "r Than Block-Siz" 7275 "e Key - Hash Key" 7276 " First", 7277 .psize = 54, 7278 .digest = "\x00\xf7\x51\xa9\xe5\x06\x95\xb0" 7279 "\x90\xed\x69\x11\xa4\xb6\x55\x24" 7280 "\x95\x1c\xdc\x15\xa7\x3a\x5d\x58" 7281 "\xbb\x55\x21\x5e\xa2\xcd\x83\x9a" 7282 "\xc7\x9d\x2b\x44\xa3\x9b\xaf\xab" 7283 "\x27\xe8\x3f\xde\x9e\x11\xf6\x34" 7284 "\x0b\x11\xd9\x91\xb1\xb9\x1b\xf2" 7285 "\xee\xe7\xfc\x87\x24\x26\xc3\xa4", 7286 }, { 7287 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7288 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7289 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7290 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7291 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7292 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7293 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7294 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7295 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7296 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7297 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7298 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7299 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7300 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7301 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7302 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 7303 "\xaa\xaa\xaa", 7304 .ksize = 131, 7305 .plaintext = 7306 "This is a test u" 7307 "sing a larger th" 7308 "an block-size ke" 7309 "y and a larger t" 7310 "han block-size d" 7311 "ata. The key nee" 7312 "ds to be hashed " 7313 "before being use" 7314 "d by the HMAC al" 7315 "gorithm.", 7316 .psize = 152, 7317 .digest = "\x38\xa4\x56\xa0\x04\xbd\x10\xd3" 7318 "\x2c\x9a\xb8\x33\x66\x84\x11\x28" 7319 "\x62\xc3\xdb\x61\xad\xcc\xa3\x18" 7320 "\x29\x35\x5e\xaf\x46\xfd\x5c\x73" 7321 "\xd0\x6a\x1f\x0d\x13\xfe\xc9\xa6" 7322 "\x52\xfb\x38\x11\xb5\x77\xb1\xb1" 7323 "\xd1\xb9\x78\x9f\x97\xae\x5b\x83" 7324 "\xc6\xf4\x4d\xfc\xf1\xd6\x7e\xba", 7325 }, 7326 }; 7327 7328 /* 7329 * Poly1305 test vectors from RFC7539 A.3. 7330 */ 7331 7332 static const struct hash_testvec poly1305_tv_template[] = { 7333 { /* Test Vector #1 */ 7334 .plaintext = "\x00\x00\x00\x00\x00\x00\x00\x00" 7335 "\x00\x00\x00\x00\x00\x00\x00\x00" 7336 "\x00\x00\x00\x00\x00\x00\x00\x00" 7337 "\x00\x00\x00\x00\x00\x00\x00\x00" 7338 "\x00\x00\x00\x00\x00\x00\x00\x00" 7339 "\x00\x00\x00\x00\x00\x00\x00\x00" 7340 "\x00\x00\x00\x00\x00\x00\x00\x00" 7341 "\x00\x00\x00\x00\x00\x00\x00\x00" 7342 "\x00\x00\x00\x00\x00\x00\x00\x00" 7343 "\x00\x00\x00\x00\x00\x00\x00\x00" 7344 "\x00\x00\x00\x00\x00\x00\x00\x00" 7345 "\x00\x00\x00\x00\x00\x00\x00\x00", 7346 .psize = 96, 7347 .digest = "\x00\x00\x00\x00\x00\x00\x00\x00" 7348 "\x00\x00\x00\x00\x00\x00\x00\x00", 7349 }, { /* Test Vector #2 */ 7350 .plaintext = "\x00\x00\x00\x00\x00\x00\x00\x00" 7351 "\x00\x00\x00\x00\x00\x00\x00\x00" 7352 "\x36\xe5\xf6\xb5\xc5\xe0\x60\x70" 7353 "\xf0\xef\xca\x96\x22\x7a\x86\x3e" 7354 "\x41\x6e\x79\x20\x73\x75\x62\x6d" 7355 "\x69\x73\x73\x69\x6f\x6e\x20\x74" 7356 "\x6f\x20\x74\x68\x65\x20\x49\x45" 7357 "\x54\x46\x20\x69\x6e\x74\x65\x6e" 7358 "\x64\x65\x64\x20\x62\x79\x20\x74" 7359 "\x68\x65\x20\x43\x6f\x6e\x74\x72" 7360 "\x69\x62\x75\x74\x6f\x72\x20\x66" 7361 "\x6f\x72\x20\x70\x75\x62\x6c\x69" 7362 "\x63\x61\x74\x69\x6f\x6e\x20\x61" 7363 "\x73\x20\x61\x6c\x6c\x20\x6f\x72" 7364 "\x20\x70\x61\x72\x74\x20\x6f\x66" 7365 "\x20\x61\x6e\x20\x49\x45\x54\x46" 7366 "\x20\x49\x6e\x74\x65\x72\x6e\x65" 7367 "\x74\x2d\x44\x72\x61\x66\x74\x20" 7368 "\x6f\x72\x20\x52\x46\x43\x20\x61" 7369 "\x6e\x64\x20\x61\x6e\x79\x20\x73" 7370 "\x74\x61\x74\x65\x6d\x65\x6e\x74" 7371 "\x20\x6d\x61\x64\x65\x20\x77\x69" 7372 "\x74\x68\x69\x6e\x20\x74\x68\x65" 7373 "\x20\x63\x6f\x6e\x74\x65\x78\x74" 7374 "\x20\x6f\x66\x20\x61\x6e\x20\x49" 7375 "\x45\x54\x46\x20\x61\x63\x74\x69" 7376 "\x76\x69\x74\x79\x20\x69\x73\x20" 7377 "\x63\x6f\x6e\x73\x69\x64\x65\x72" 7378 "\x65\x64\x20\x61\x6e\x20\x22\x49" 7379 "\x45\x54\x46\x20\x43\x6f\x6e\x74" 7380 "\x72\x69\x62\x75\x74\x69\x6f\x6e" 7381 "\x22\x2e\x20\x53\x75\x63\x68\x20" 7382 "\x73\x74\x61\x74\x65\x6d\x65\x6e" 7383 "\x74\x73\x20\x69\x6e\x63\x6c\x75" 7384 "\x64\x65\x20\x6f\x72\x61\x6c\x20" 7385 "\x73\x74\x61\x74\x65\x6d\x65\x6e" 7386 "\x74\x73\x20\x69\x6e\x20\x49\x45" 7387 "\x54\x46\x20\x73\x65\x73\x73\x69" 7388 "\x6f\x6e\x73\x2c\x20\x61\x73\x20" 7389 "\x77\x65\x6c\x6c\x20\x61\x73\x20" 7390 "\x77\x72\x69\x74\x74\x65\x6e\x20" 7391 "\x61\x6e\x64\x20\x65\x6c\x65\x63" 7392 "\x74\x72\x6f\x6e\x69\x63\x20\x63" 7393 "\x6f\x6d\x6d\x75\x6e\x69\x63\x61" 7394 "\x74\x69\x6f\x6e\x73\x20\x6d\x61" 7395 "\x64\x65\x20\x61\x74\x20\x61\x6e" 7396 "\x79\x20\x74\x69\x6d\x65\x20\x6f" 7397 "\x72\x20\x70\x6c\x61\x63\x65\x2c" 7398 "\x20\x77\x68\x69\x63\x68\x20\x61" 7399 "\x72\x65\x20\x61\x64\x64\x72\x65" 7400 "\x73\x73\x65\x64\x20\x74\x6f", 7401 .psize = 407, 7402 .digest = "\x36\xe5\xf6\xb5\xc5\xe0\x60\x70" 7403 "\xf0\xef\xca\x96\x22\x7a\x86\x3e", 7404 }, { /* Test Vector #3 */ 7405 .plaintext = "\x36\xe5\xf6\xb5\xc5\xe0\x60\x70" 7406 "\xf0\xef\xca\x96\x22\x7a\x86\x3e" 7407 "\x00\x00\x00\x00\x00\x00\x00\x00" 7408 "\x00\x00\x00\x00\x00\x00\x00\x00" 7409 "\x41\x6e\x79\x20\x73\x75\x62\x6d" 7410 "\x69\x73\x73\x69\x6f\x6e\x20\x74" 7411 "\x6f\x20\x74\x68\x65\x20\x49\x45" 7412 "\x54\x46\x20\x69\x6e\x74\x65\x6e" 7413 "\x64\x65\x64\x20\x62\x79\x20\x74" 7414 "\x68\x65\x20\x43\x6f\x6e\x74\x72" 7415 "\x69\x62\x75\x74\x6f\x72\x20\x66" 7416 "\x6f\x72\x20\x70\x75\x62\x6c\x69" 7417 "\x63\x61\x74\x69\x6f\x6e\x20\x61" 7418 "\x73\x20\x61\x6c\x6c\x20\x6f\x72" 7419 "\x20\x70\x61\x72\x74\x20\x6f\x66" 7420 "\x20\x61\x6e\x20\x49\x45\x54\x46" 7421 "\x20\x49\x6e\x74\x65\x72\x6e\x65" 7422 "\x74\x2d\x44\x72\x61\x66\x74\x20" 7423 "\x6f\x72\x20\x52\x46\x43\x20\x61" 7424 "\x6e\x64\x20\x61\x6e\x79\x20\x73" 7425 "\x74\x61\x74\x65\x6d\x65\x6e\x74" 7426 "\x20\x6d\x61\x64\x65\x20\x77\x69" 7427 "\x74\x68\x69\x6e\x20\x74\x68\x65" 7428 "\x20\x63\x6f\x6e\x74\x65\x78\x74" 7429 "\x20\x6f\x66\x20\x61\x6e\x20\x49" 7430 "\x45\x54\x46\x20\x61\x63\x74\x69" 7431 "\x76\x69\x74\x79\x20\x69\x73\x20" 7432 "\x63\x6f\x6e\x73\x69\x64\x65\x72" 7433 "\x65\x64\x20\x61\x6e\x20\x22\x49" 7434 "\x45\x54\x46\x20\x43\x6f\x6e\x74" 7435 "\x72\x69\x62\x75\x74\x69\x6f\x6e" 7436 "\x22\x2e\x20\x53\x75\x63\x68\x20" 7437 "\x73\x74\x61\x74\x65\x6d\x65\x6e" 7438 "\x74\x73\x20\x69\x6e\x63\x6c\x75" 7439 "\x64\x65\x20\x6f\x72\x61\x6c\x20" 7440 "\x73\x74\x61\x74\x65\x6d\x65\x6e" 7441 "\x74\x73\x20\x69\x6e\x20\x49\x45" 7442 "\x54\x46\x20\x73\x65\x73\x73\x69" 7443 "\x6f\x6e\x73\x2c\x20\x61\x73\x20" 7444 "\x77\x65\x6c\x6c\x20\x61\x73\x20" 7445 "\x77\x72\x69\x74\x74\x65\x6e\x20" 7446 "\x61\x6e\x64\x20\x65\x6c\x65\x63" 7447 "\x74\x72\x6f\x6e\x69\x63\x20\x63" 7448 "\x6f\x6d\x6d\x75\x6e\x69\x63\x61" 7449 "\x74\x69\x6f\x6e\x73\x20\x6d\x61" 7450 "\x64\x65\x20\x61\x74\x20\x61\x6e" 7451 "\x79\x20\x74\x69\x6d\x65\x20\x6f" 7452 "\x72\x20\x70\x6c\x61\x63\x65\x2c" 7453 "\x20\x77\x68\x69\x63\x68\x20\x61" 7454 "\x72\x65\x20\x61\x64\x64\x72\x65" 7455 "\x73\x73\x65\x64\x20\x74\x6f", 7456 .psize = 407, 7457 .digest = "\xf3\x47\x7e\x7c\xd9\x54\x17\xaf" 7458 "\x89\xa6\xb8\x79\x4c\x31\x0c\xf0", 7459 }, { /* Test Vector #4 */ 7460 .plaintext = "\x1c\x92\x40\xa5\xeb\x55\xd3\x8a" 7461 "\xf3\x33\x88\x86\x04\xf6\xb5\xf0" 7462 "\x47\x39\x17\xc1\x40\x2b\x80\x09" 7463 "\x9d\xca\x5c\xbc\x20\x70\x75\xc0" 7464 "\x27\x54\x77\x61\x73\x20\x62\x72" 7465 "\x69\x6c\x6c\x69\x67\x2c\x20\x61" 7466 "\x6e\x64\x20\x74\x68\x65\x20\x73" 7467 "\x6c\x69\x74\x68\x79\x20\x74\x6f" 7468 "\x76\x65\x73\x0a\x44\x69\x64\x20" 7469 "\x67\x79\x72\x65\x20\x61\x6e\x64" 7470 "\x20\x67\x69\x6d\x62\x6c\x65\x20" 7471 "\x69\x6e\x20\x74\x68\x65\x20\x77" 7472 "\x61\x62\x65\x3a\x0a\x41\x6c\x6c" 7473 "\x20\x6d\x69\x6d\x73\x79\x20\x77" 7474 "\x65\x72\x65\x20\x74\x68\x65\x20" 7475 "\x62\x6f\x72\x6f\x67\x6f\x76\x65" 7476 "\x73\x2c\x0a\x41\x6e\x64\x20\x74" 7477 "\x68\x65\x20\x6d\x6f\x6d\x65\x20" 7478 "\x72\x61\x74\x68\x73\x20\x6f\x75" 7479 "\x74\x67\x72\x61\x62\x65\x2e", 7480 .psize = 159, 7481 .digest = "\x45\x41\x66\x9a\x7e\xaa\xee\x61" 7482 "\xe7\x08\xdc\x7c\xbc\xc5\xeb\x62", 7483 }, { /* Test Vector #5 */ 7484 .plaintext = "\x02\x00\x00\x00\x00\x00\x00\x00" 7485 "\x00\x00\x00\x00\x00\x00\x00\x00" 7486 "\x00\x00\x00\x00\x00\x00\x00\x00" 7487 "\x00\x00\x00\x00\x00\x00\x00\x00" 7488 "\xff\xff\xff\xff\xff\xff\xff\xff" 7489 "\xff\xff\xff\xff\xff\xff\xff\xff", 7490 .psize = 48, 7491 .digest = "\x03\x00\x00\x00\x00\x00\x00\x00" 7492 "\x00\x00\x00\x00\x00\x00\x00\x00", 7493 }, { /* Test Vector #6 */ 7494 .plaintext = "\x02\x00\x00\x00\x00\x00\x00\x00" 7495 "\x00\x00\x00\x00\x00\x00\x00\x00" 7496 "\xff\xff\xff\xff\xff\xff\xff\xff" 7497 "\xff\xff\xff\xff\xff\xff\xff\xff" 7498 "\x02\x00\x00\x00\x00\x00\x00\x00" 7499 "\x00\x00\x00\x00\x00\x00\x00\x00", 7500 .psize = 48, 7501 .digest = "\x03\x00\x00\x00\x00\x00\x00\x00" 7502 "\x00\x00\x00\x00\x00\x00\x00\x00", 7503 }, { /* Test Vector #7 */ 7504 .plaintext = "\x01\x00\x00\x00\x00\x00\x00\x00" 7505 "\x00\x00\x00\x00\x00\x00\x00\x00" 7506 "\x00\x00\x00\x00\x00\x00\x00\x00" 7507 "\x00\x00\x00\x00\x00\x00\x00\x00" 7508 "\xff\xff\xff\xff\xff\xff\xff\xff" 7509 "\xff\xff\xff\xff\xff\xff\xff\xff" 7510 "\xf0\xff\xff\xff\xff\xff\xff\xff" 7511 "\xff\xff\xff\xff\xff\xff\xff\xff" 7512 "\x11\x00\x00\x00\x00\x00\x00\x00" 7513 "\x00\x00\x00\x00\x00\x00\x00\x00", 7514 .psize = 80, 7515 .digest = "\x05\x00\x00\x00\x00\x00\x00\x00" 7516 "\x00\x00\x00\x00\x00\x00\x00\x00", 7517 }, { /* Test Vector #8 */ 7518 .plaintext = "\x01\x00\x00\x00\x00\x00\x00\x00" 7519 "\x00\x00\x00\x00\x00\x00\x00\x00" 7520 "\x00\x00\x00\x00\x00\x00\x00\x00" 7521 "\x00\x00\x00\x00\x00\x00\x00\x00" 7522 "\xff\xff\xff\xff\xff\xff\xff\xff" 7523 "\xff\xff\xff\xff\xff\xff\xff\xff" 7524 "\xfb\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 7525 "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 7526 "\x01\x01\x01\x01\x01\x01\x01\x01" 7527 "\x01\x01\x01\x01\x01\x01\x01\x01", 7528 .psize = 80, 7529 .digest = "\x00\x00\x00\x00\x00\x00\x00\x00" 7530 "\x00\x00\x00\x00\x00\x00\x00\x00", 7531 }, { /* Test Vector #9 */ 7532 .plaintext = "\x02\x00\x00\x00\x00\x00\x00\x00" 7533 "\x00\x00\x00\x00\x00\x00\x00\x00" 7534 "\x00\x00\x00\x00\x00\x00\x00\x00" 7535 "\x00\x00\x00\x00\x00\x00\x00\x00" 7536 "\xfd\xff\xff\xff\xff\xff\xff\xff" 7537 "\xff\xff\xff\xff\xff\xff\xff\xff", 7538 .psize = 48, 7539 .digest = "\xfa\xff\xff\xff\xff\xff\xff\xff" 7540 "\xff\xff\xff\xff\xff\xff\xff\xff", 7541 }, { /* Test Vector #10 */ 7542 .plaintext = "\x01\x00\x00\x00\x00\x00\x00\x00" 7543 "\x04\x00\x00\x00\x00\x00\x00\x00" 7544 "\x00\x00\x00\x00\x00\x00\x00\x00" 7545 "\x00\x00\x00\x00\x00\x00\x00\x00" 7546 "\xe3\x35\x94\xd7\x50\x5e\x43\xb9" 7547 "\x00\x00\x00\x00\x00\x00\x00\x00" 7548 "\x33\x94\xd7\x50\x5e\x43\x79\xcd" 7549 "\x01\x00\x00\x00\x00\x00\x00\x00" 7550 "\x00\x00\x00\x00\x00\x00\x00\x00" 7551 "\x00\x00\x00\x00\x00\x00\x00\x00" 7552 "\x01\x00\x00\x00\x00\x00\x00\x00" 7553 "\x00\x00\x00\x00\x00\x00\x00\x00", 7554 .psize = 96, 7555 .digest = "\x14\x00\x00\x00\x00\x00\x00\x00" 7556 "\x55\x00\x00\x00\x00\x00\x00\x00", 7557 }, { /* Test Vector #11 */ 7558 .plaintext = "\x01\x00\x00\x00\x00\x00\x00\x00" 7559 "\x04\x00\x00\x00\x00\x00\x00\x00" 7560 "\x00\x00\x00\x00\x00\x00\x00\x00" 7561 "\x00\x00\x00\x00\x00\x00\x00\x00" 7562 "\xe3\x35\x94\xd7\x50\x5e\x43\xb9" 7563 "\x00\x00\x00\x00\x00\x00\x00\x00" 7564 "\x33\x94\xd7\x50\x5e\x43\x79\xcd" 7565 "\x01\x00\x00\x00\x00\x00\x00\x00" 7566 "\x00\x00\x00\x00\x00\x00\x00\x00" 7567 "\x00\x00\x00\x00\x00\x00\x00\x00", 7568 .psize = 80, 7569 .digest = "\x13\x00\x00\x00\x00\x00\x00\x00" 7570 "\x00\x00\x00\x00\x00\x00\x00\x00", 7571 }, { /* Regression test for overflow in AVX2 implementation */ 7572 .plaintext = "\xff\xff\xff\xff\xff\xff\xff\xff" 7573 "\xff\xff\xff\xff\xff\xff\xff\xff" 7574 "\xff\xff\xff\xff\xff\xff\xff\xff" 7575 "\xff\xff\xff\xff\xff\xff\xff\xff" 7576 "\xff\xff\xff\xff\xff\xff\xff\xff" 7577 "\xff\xff\xff\xff\xff\xff\xff\xff" 7578 "\xff\xff\xff\xff\xff\xff\xff\xff" 7579 "\xff\xff\xff\xff\xff\xff\xff\xff" 7580 "\xff\xff\xff\xff\xff\xff\xff\xff" 7581 "\xff\xff\xff\xff\xff\xff\xff\xff" 7582 "\xff\xff\xff\xff\xff\xff\xff\xff" 7583 "\xff\xff\xff\xff\xff\xff\xff\xff" 7584 "\xff\xff\xff\xff\xff\xff\xff\xff" 7585 "\xff\xff\xff\xff\xff\xff\xff\xff" 7586 "\xff\xff\xff\xff\xff\xff\xff\xff" 7587 "\xff\xff\xff\xff\xff\xff\xff\xff" 7588 "\xff\xff\xff\xff\xff\xff\xff\xff" 7589 "\xff\xff\xff\xff\xff\xff\xff\xff" 7590 "\xff\xff\xff\xff\xff\xff\xff\xff" 7591 "\xff\xff\xff\xff\xff\xff\xff\xff" 7592 "\xff\xff\xff\xff\xff\xff\xff\xff" 7593 "\xff\xff\xff\xff\xff\xff\xff\xff" 7594 "\xff\xff\xff\xff\xff\xff\xff\xff" 7595 "\xff\xff\xff\xff\xff\xff\xff\xff" 7596 "\xff\xff\xff\xff\xff\xff\xff\xff" 7597 "\xff\xff\xff\xff\xff\xff\xff\xff" 7598 "\xff\xff\xff\xff\xff\xff\xff\xff" 7599 "\xff\xff\xff\xff\xff\xff\xff\xff" 7600 "\xff\xff\xff\xff\xff\xff\xff\xff" 7601 "\xff\xff\xff\xff\xff\xff\xff\xff" 7602 "\xff\xff\xff\xff\xff\xff\xff\xff" 7603 "\xff\xff\xff\xff\xff\xff\xff\xff" 7604 "\xff\xff\xff\xff\xff\xff\xff\xff" 7605 "\xff\xff\xff\xff\xff\xff\xff\xff" 7606 "\xff\xff\xff\xff\xff\xff\xff\xff" 7607 "\xff\xff\xff\xff\xff\xff\xff\xff" 7608 "\xff\xff\xff\xff\xff\xff\xff\xff" 7609 "\xff\xff\xff\xff", 7610 .psize = 300, 7611 .digest = "\xfb\x5e\x96\xd8\x61\xd5\xc7\xc8" 7612 "\x78\xe5\x87\xcc\x2d\x5a\x22\xe1", 7613 } 7614 }; 7615 7616 /* NHPoly1305 test vectors from https://github.com/google/adiantum */ 7617 static const struct hash_testvec nhpoly1305_tv_template[] = { 7618 { 7619 .key = "\xd2\x5d\x4c\xdd\x8d\x2b\x7f\x7a" 7620 "\xd9\xbe\x71\xec\xd1\x83\x52\xe3" 7621 "\xe1\xad\xd7\x5c\x0a\x75\x9d\xec" 7622 "\x1d\x13\x7e\x5d\x71\x07\xc9\xe4" 7623 "\x57\x2d\x44\x68\xcf\xd8\xd6\xc5" 7624 "\x39\x69\x7d\x32\x75\x51\x4f\x7e" 7625 "\xb2\x4c\xc6\x90\x51\x6e\xd9\xd6" 7626 "\xa5\x8b\x2d\xf1\x94\xf9\xf7\x5e" 7627 "\x2c\x84\x7b\x41\x0f\x88\x50\x89" 7628 "\x30\xd9\xa1\x38\x46\x6c\xc0\x4f" 7629 "\xe8\xdf\xdc\x66\xab\x24\x43\x41" 7630 "\x91\x55\x29\x65\x86\x28\x5e\x45" 7631 "\xd5\x2d\xb7\x80\x08\x9a\xc3\xd4" 7632 "\x9a\x77\x0a\xd4\xef\x3e\xe6\x3f" 7633 "\x6f\x2f\x9b\x3a\x7d\x12\x1e\x80" 7634 "\x6c\x44\xa2\x25\xe1\xf6\x60\xe9" 7635 "\x0d\xaf\xc5\x3c\xa5\x79\xae\x64" 7636 "\xbc\xa0\x39\xa3\x4d\x10\xe5\x4d" 7637 "\xd5\xe7\x89\x7a\x13\xee\x06\x78" 7638 "\xdc\xa4\xdc\x14\x27\xe6\x49\x38" 7639 "\xd0\xe0\x45\x25\x36\xc5\xf4\x79" 7640 "\x2e\x9a\x98\x04\xe4\x2b\x46\x52" 7641 "\x7c\x33\xca\xe2\x56\x51\x50\xe2" 7642 "\xa5\x9a\xae\x18\x6a\x13\xf8\xd2" 7643 "\x21\x31\x66\x02\xe2\xda\x8d\x7e" 7644 "\x41\x19\xb2\x61\xee\x48\x8f\xf1" 7645 "\x65\x24\x2e\x1e\x68\xce\x05\xd9" 7646 "\x2a\xcf\xa5\x3a\x57\xdd\x35\x91" 7647 "\x93\x01\xca\x95\xfc\x2b\x36\x04" 7648 "\xe6\x96\x97\x28\xf6\x31\xfe\xa3" 7649 "\x9d\xf6\x6a\x1e\x80\x8d\xdc\xec" 7650 "\xaf\x66\x11\x13\x02\x88\xd5\x27" 7651 "\x33\xb4\x1a\xcd\xa3\xf6\xde\x31" 7652 "\x8e\xc0\x0e\x6c\xd8\x5a\x97\x5e" 7653 "\xdd\xfd\x60\x69\x38\x46\x3f\x90" 7654 "\x5e\x97\xd3\x32\x76\xc7\x82\x49" 7655 "\xfe\xba\x06\x5f\x2f\xa2\xfd\xff" 7656 "\x80\x05\x40\xe4\x33\x03\xfb\x10" 7657 "\xc0\xde\x65\x8c\xc9\x8d\x3a\x9d" 7658 "\xb5\x7b\x36\x4b\xb5\x0c\xcf\x00" 7659 "\x9c\x87\xe4\x49\xad\x90\xda\x4a" 7660 "\xdd\xbd\xff\xe2\x32\x57\xd6\x78" 7661 "\x36\x39\x6c\xd3\x5b\x9b\x88\x59" 7662 "\x2d\xf0\x46\xe4\x13\x0e\x2b\x35" 7663 "\x0d\x0f\x73\x8a\x4f\x26\x84\x75" 7664 "\x88\x3c\xc5\x58\x66\x18\x1a\xb4" 7665 "\x64\x51\x34\x27\x1b\xa4\x11\xc9" 7666 "\x6d\x91\x8a\xfa\x32\x60\x9d\xd7" 7667 "\x87\xe5\xaa\x43\x72\xf8\xda\xd1" 7668 "\x48\x44\x13\x61\xdc\x8c\x76\x17" 7669 "\x0c\x85\x4e\xf3\xdd\xa2\x42\xd2" 7670 "\x74\xc1\x30\x1b\xeb\x35\x31\x29" 7671 "\x5b\xd7\x4c\x94\x46\x35\xa1\x23" 7672 "\x50\xf2\xa2\x8e\x7e\x4f\x23\x4f" 7673 "\x51\xff\xe2\xc9\xa3\x7d\x56\x8b" 7674 "\x41\xf2\xd0\xc5\x57\x7e\x59\xac" 7675 "\xbb\x65\xf3\xfe\xf7\x17\xef\x63" 7676 "\x7c\x6f\x23\xdd\x22\x8e\xed\x84" 7677 "\x0e\x3b\x09\xb3\xf3\xf4\x8f\xcd" 7678 "\x37\xa8\xe1\xa7\x30\xdb\xb1\xa2" 7679 "\x9c\xa2\xdf\x34\x17\x3e\x68\x44" 7680 "\xd0\xde\x03\x50\xd1\x48\x6b\x20" 7681 "\xe2\x63\x45\xa5\xea\x87\xc2\x42" 7682 "\x95\x03\x49\x05\xed\xe0\x90\x29" 7683 "\x1a\xb8\xcf\x9b\x43\xcf\x29\x7a" 7684 "\x63\x17\x41\x9f\xe0\xc9\x10\xfd" 7685 "\x2c\x56\x8c\x08\x55\xb4\xa9\x27" 7686 "\x0f\x23\xb1\x05\x6a\x12\x46\xc7" 7687 "\xe1\xfe\x28\x93\x93\xd7\x2f\xdc" 7688 "\x98\x30\xdb\x75\x8a\xbe\x97\x7a" 7689 "\x02\xfb\x8c\xba\xbe\x25\x09\xbe" 7690 "\xce\xcb\xa2\xef\x79\x4d\x0e\x9d" 7691 "\x1b\x9d\xb6\x39\x34\x38\xfa\x07" 7692 "\xec\xe8\xfc\x32\x85\x1d\xf7\x85" 7693 "\x63\xc3\x3c\xc0\x02\x75\xd7\x3f" 7694 "\xb2\x68\x60\x66\x65\x81\xc6\xb1" 7695 "\x42\x65\x4b\x4b\x28\xd7\xc7\xaa" 7696 "\x9b\xd2\xdc\x1b\x01\xe0\x26\x39" 7697 "\x01\xc1\x52\x14\xd1\x3f\xb7\xe6" 7698 "\x61\x41\xc7\x93\xd2\xa2\x67\xc6" 7699 "\xf7\x11\xb5\xf5\xea\xdd\x19\xfb" 7700 "\x4d\x21\x12\xd6\x7d\xf1\x10\xb0" 7701 "\x89\x07\xc7\x5a\x52\x73\x70\x2f" 7702 "\x32\xef\x65\x2b\x12\xb2\xf0\xf5" 7703 "\x20\xe0\x90\x59\x7e\x64\xf1\x4c" 7704 "\x41\xb3\xa5\x91\x08\xe6\x5e\x5f" 7705 "\x05\x56\x76\xb4\xb0\xcd\x70\x53" 7706 "\x10\x48\x9c\xff\xc2\x69\x55\x24" 7707 "\x87\xef\x84\xea\xfb\xa7\xbf\xa0" 7708 "\x91\x04\xad\x4f\x8b\x57\x54\x4b" 7709 "\xb6\xe9\xd1\xac\x37\x2f\x1d\x2e" 7710 "\xab\xa5\xa4\xe8\xff\xfb\xd9\x39" 7711 "\x2f\xb7\xac\xd1\xfe\x0b\x9a\x80" 7712 "\x0f\xb6\xf4\x36\x39\x90\x51\xe3" 7713 "\x0a\x2f\xb6\x45\x76\x89\xcd\x61" 7714 "\xfe\x48\x5f\x75\x1d\x13\x00\x62" 7715 "\x80\x24\x47\xe7\xbc\x37\xd7\xe3" 7716 "\x15\xe8\x68\x22\xaf\x80\x6f\x4b" 7717 "\xa8\x9f\x01\x10\x48\x14\xc3\x02" 7718 "\x52\xd2\xc7\x75\x9b\x52\x6d\x30" 7719 "\xac\x13\x85\xc8\xf7\xa3\x58\x4b" 7720 "\x49\xf7\x1c\x45\x55\x8c\x39\x9a" 7721 "\x99\x6d\x97\x27\x27\xe6\xab\xdd" 7722 "\x2c\x42\x1b\x35\xdd\x9d\x73\xbb" 7723 "\x6c\xf3\x64\xf1\xfb\xb9\xf7\xe6" 7724 "\x4a\x3c\xc0\x92\xc0\x2e\xb7\x1a" 7725 "\xbe\xab\xb3\x5a\xe5\xea\xb1\x48" 7726 "\x58\x13\x53\x90\xfd\xc3\x8e\x54" 7727 "\xf9\x18\x16\x73\xe8\xcb\x6d\x39" 7728 "\x0e\xd7\xe0\xfe\xb6\x9f\x43\x97" 7729 "\xe8\xd0\x85\x56\x83\x3e\x98\x68" 7730 "\x7f\xbd\x95\xa8\x9a\x61\x21\x8f" 7731 "\x06\x98\x34\xa6\xc8\xd6\x1d\xf3" 7732 "\x3d\x43\xa4\x9a\x8c\xe5\xd3\x5a" 7733 "\x32\xa2\x04\x22\xa4\x19\x1a\x46" 7734 "\x42\x7e\x4d\xe5\xe0\xe6\x0e\xca" 7735 "\xd5\x58\x9d\x2c\xaf\xda\x33\x5c" 7736 "\xb0\x79\x9e\xc9\xfc\xca\xf0\x2f" 7737 "\xa8\xb2\x77\xeb\x7a\xa2\xdd\x37" 7738 "\x35\x83\x07\xd6\x02\x1a\xb6\x6c" 7739 "\x24\xe2\x59\x08\x0e\xfd\x3e\x46" 7740 "\xec\x40\x93\xf4\x00\x26\x4f\x2a" 7741 "\xff\x47\x2f\xeb\x02\x92\x26\x5b" 7742 "\x53\x17\xc2\x8d\x2a\xc7\xa3\x1b" 7743 "\xcd\xbc\xa7\xe8\xd1\x76\xe3\x80" 7744 "\x21\xca\x5d\x3b\xe4\x9c\x8f\xa9" 7745 "\x5b\x7f\x29\x7f\x7c\xd8\xed\x6d" 7746 "\x8c\xb2\x86\x85\xe7\x77\xf2\x85" 7747 "\xab\x38\xa9\x9d\xc1\x4e\xc5\x64" 7748 "\x33\x73\x8b\x59\x03\xad\x05\xdf" 7749 "\x25\x98\x31\xde\xef\x13\xf1\x9b" 7750 "\x3c\x91\x9d\x7b\xb1\xfa\xe6\xbf" 7751 "\x5b\xed\xa5\x55\xe6\xea\x6c\x74" 7752 "\xf4\xb9\xe4\x45\x64\x72\x81\xc2" 7753 "\x4c\x28\xd4\xcd\xac\xe2\xde\xf9" 7754 "\xeb\x5c\xeb\x61\x60\x5a\xe5\x28", 7755 .ksize = 1088, 7756 .plaintext = "", 7757 .psize = 0, 7758 .digest = "\x00\x00\x00\x00\x00\x00\x00\x00" 7759 "\x00\x00\x00\x00\x00\x00\x00\x00", 7760 }, { 7761 .key = "\x29\x21\x43\xcb\xcb\x13\x07\xde" 7762 "\xbf\x48\xdf\x8a\x7f\xa2\x84\xde" 7763 "\x72\x23\x9d\xf5\xf0\x07\xf2\x4c" 7764 "\x20\x3a\x93\xb9\xcd\x5d\xfe\xcb" 7765 "\x99\x2c\x2b\x58\xc6\x50\x5f\x94" 7766 "\x56\xc3\x7c\x0d\x02\x3f\xb8\x5e" 7767 "\x7b\xc0\x6c\x51\x34\x76\xc0\x0e" 7768 "\xc6\x22\xc8\x9e\x92\xa0\x21\xc9" 7769 "\x85\x5c\x7c\xf8\xe2\x64\x47\xc9" 7770 "\xe4\xa2\x57\x93\xf8\xa2\x69\xcd" 7771 "\x62\x98\x99\xf4\xd7\x7b\x14\xb1" 7772 "\xd8\x05\xff\x04\x15\xc9\xe1\x6e" 7773 "\x9b\xe6\x50\x6b\x0b\x3f\x22\x1f" 7774 "\x08\xde\x0c\x5b\x08\x7e\xc6\x2f" 7775 "\x6c\xed\xd6\xb2\x15\xa4\xb3\xf9" 7776 "\xa7\x46\x38\x2a\xea\x69\xa5\xde" 7777 "\x02\xc3\x96\x89\x4d\x55\x3b\xed" 7778 "\x3d\x3a\x85\x77\xbf\x97\x45\x5c" 7779 "\x9e\x02\x69\xe2\x1b\x68\xbe\x96" 7780 "\xfb\x64\x6f\x0f\xf6\x06\x40\x67" 7781 "\xfa\x04\xe3\x55\xfa\xbe\xa4\x60" 7782 "\xef\x21\x66\x97\xe6\x9d\x5c\x1f" 7783 "\x62\x37\xaa\x31\xde\xe4\x9c\x28" 7784 "\x95\xe0\x22\x86\xf4\x4d\xf3\x07" 7785 "\xfd\x5f\x3a\x54\x2c\x51\x80\x71" 7786 "\xba\x78\x69\x5b\x65\xab\x1f\x81" 7787 "\xed\x3b\xff\x34\xa3\xfb\xbc\x73" 7788 "\x66\x7d\x13\x7f\xdf\x6e\xe2\xe2" 7789 "\xeb\x4f\x6c\xda\x7d\x33\x57\xd0" 7790 "\xd3\x7c\x95\x4f\x33\x58\x21\xc7" 7791 "\xc0\xe5\x6f\x42\x26\xc6\x1f\x5e" 7792 "\x85\x1b\x98\x9a\xa2\x1e\x55\x77" 7793 "\x23\xdf\x81\x5e\x79\x55\x05\xfc" 7794 "\xfb\xda\xee\xba\x5a\xba\xf7\x77" 7795 "\x7f\x0e\xd3\xe1\x37\xfe\x8d\x2b" 7796 "\xd5\x3f\xfb\xd0\xc0\x3c\x0b\x3f" 7797 "\xcf\x3c\x14\xcf\xfb\x46\x72\x4c" 7798 "\x1f\x39\xe2\xda\x03\x71\x6d\x23" 7799 "\xef\x93\xcd\x39\xd9\x37\x80\x4d" 7800 "\x65\x61\xd1\x2c\x03\xa9\x47\x72" 7801 "\x4d\x1e\x0e\x16\x33\x0f\x21\x17" 7802 "\xec\x92\xea\x6f\x37\x22\xa4\xd8" 7803 "\x03\x33\x9e\xd8\x03\x69\x9a\xe8" 7804 "\xb2\x57\xaf\x78\x99\x05\x12\xab" 7805 "\x48\x90\x80\xf0\x12\x9b\x20\x64" 7806 "\x7a\x1d\x47\x5f\xba\x3c\xf9\xc3" 7807 "\x0a\x0d\x8d\xa1\xf9\x1b\x82\x13" 7808 "\x3e\x0d\xec\x0a\x83\xc0\x65\xe1" 7809 "\xe9\x95\xff\x97\xd6\xf2\xe4\xd5" 7810 "\x86\xc0\x1f\x29\x27\x63\xd7\xde" 7811 "\xb7\x0a\x07\x99\x04\x2d\xa3\x89" 7812 "\xa2\x43\xcf\xf3\xe1\x43\xac\x4a" 7813 "\x06\x97\xd0\x05\x4f\x87\xfa\xf9" 7814 "\x9b\xbf\x52\x70\xbd\xbc\x6c\xf3" 7815 "\x03\x13\x60\x41\x28\x09\xec\xcc" 7816 "\xb1\x1a\xec\xd6\xfb\x6f\x2a\x89" 7817 "\x5d\x0b\x53\x9c\x59\xc1\x84\x21" 7818 "\x33\x51\x47\x19\x31\x9c\xd4\x0a" 7819 "\x4d\x04\xec\x50\x90\x61\xbd\xbc" 7820 "\x7e\xc8\xd9\x6c\x98\x1d\x45\x41" 7821 "\x17\x5e\x97\x1c\xc5\xa8\xe8\xea" 7822 "\x46\x58\x53\xf7\x17\xd5\xad\x11" 7823 "\xc8\x54\xf5\x7a\x33\x90\xf5\x19" 7824 "\xba\x36\xb4\xfc\x52\xa5\x72\x3d" 7825 "\x14\xbb\x55\xa7\xe9\xe3\x12\xf7" 7826 "\x1c\x30\xa2\x82\x03\xbf\x53\x91" 7827 "\x2e\x60\x41\x9f\x5b\x69\x39\xf6" 7828 "\x4d\xc8\xf8\x46\x7a\x7f\xa4\x98" 7829 "\x36\xff\x06\xcb\xca\xe7\x33\xf2" 7830 "\xc0\x4a\xf4\x3c\x14\x44\x5f\x6b" 7831 "\x75\xef\x02\x36\x75\x08\x14\xfd" 7832 "\x10\x8e\xa5\x58\xd0\x30\x46\x49" 7833 "\xaf\x3a\xf8\x40\x3d\x35\xdb\x84" 7834 "\x11\x2e\x97\x6a\xb7\x87\x7f\xad" 7835 "\xf1\xfa\xa5\x63\x60\xd8\x5e\xbf" 7836 "\x41\x78\x49\xcf\x77\xbb\x56\xbb" 7837 "\x7d\x01\x67\x05\x22\xc8\x8f\x41" 7838 "\xba\x81\xd2\xca\x2c\x38\xac\x76" 7839 "\x06\xc1\x1a\xc2\xce\xac\x90\x67" 7840 "\x57\x3e\x20\x12\x5b\xd9\x97\x58" 7841 "\x65\x05\xb7\x04\x61\x7e\xd8\x3a" 7842 "\xbf\x55\x3b\x13\xe9\x34\x5a\x37" 7843 "\x36\xcb\x94\x45\xc5\x32\xb3\xa0" 7844 "\x0c\x3e\x49\xc5\xd3\xed\xa7\xf0" 7845 "\x1c\x69\xcc\xea\xcc\x83\xc9\x16" 7846 "\x95\x72\x4b\xf4\x89\xd5\xb9\x10" 7847 "\xf6\x2d\x60\x15\xea\x3c\x06\x66" 7848 "\x9f\x82\xad\x17\xce\xd2\xa4\x48" 7849 "\x7c\x65\xd9\xf8\x02\x4d\x9b\x4c" 7850 "\x89\x06\x3a\x34\x85\x48\x89\x86" 7851 "\xf9\x24\xa9\x54\x72\xdb\x44\x95" 7852 "\xc7\x44\x1c\x19\x11\x4c\x04\xdc" 7853 "\x13\xb9\x67\xc8\xc3\x3a\x6a\x50" 7854 "\xfa\xd1\xfb\xe1\x88\xb6\xf1\xa3" 7855 "\xc5\x3b\xdc\x38\x45\x16\x26\x02" 7856 "\x3b\xb8\x8f\x8b\x58\x7d\x23\x04" 7857 "\x50\x6b\x81\x9f\xae\x66\xac\x6f" 7858 "\xcf\x2a\x9d\xf1\xfd\x1d\x57\x07" 7859 "\xbe\x58\xeb\x77\x0c\xe3\xc2\x19" 7860 "\x14\x74\x1b\x51\x1c\x4f\x41\xf3" 7861 "\x32\x89\xb3\xe7\xde\x62\xf6\x5f" 7862 "\xc7\x6a\x4a\x2a\x5b\x0f\x5f\x87" 7863 "\x9c\x08\xb9\x02\x88\xc8\x29\xb7" 7864 "\x94\x52\xfa\x52\xfe\xaa\x50\x10" 7865 "\xba\x48\x75\x5e\x11\x1b\xe6\x39" 7866 "\xd7\x82\x2c\x87\xf1\x1e\xa4\x38" 7867 "\x72\x3e\x51\xe7\xd8\x3e\x5b\x7b" 7868 "\x31\x16\x89\xba\xd6\xad\x18\x5e" 7869 "\xba\xf8\x12\xb3\xf4\x6c\x47\x30" 7870 "\xc0\x38\x58\xb3\x10\x8d\x58\x5d" 7871 "\xb4\xfb\x19\x7e\x41\xc3\x66\xb8" 7872 "\xd6\x72\x84\xe1\x1a\xc2\x71\x4c" 7873 "\x0d\x4a\x21\x7a\xab\xa2\xc0\x36" 7874 "\x15\xc5\xe9\x46\xd7\x29\x17\x76" 7875 "\x5e\x47\x36\x7f\x72\x05\xa7\xcc" 7876 "\x36\x63\xf9\x47\x7d\xe6\x07\x3c" 7877 "\x8b\x79\x1d\x96\x61\x8d\x90\x65" 7878 "\x7c\xf5\xeb\x4e\x6e\x09\x59\x6d" 7879 "\x62\x50\x1b\x0f\xe0\xdc\x78\xf2" 7880 "\x5b\x83\x1a\xa1\x11\x75\xfd\x18" 7881 "\xd7\xe2\x8d\x65\x14\x21\xce\xbe" 7882 "\xb5\x87\xe3\x0a\xda\x24\x0a\x64" 7883 "\xa9\x9f\x03\x8d\x46\x5d\x24\x1a" 7884 "\x8a\x0c\x42\x01\xca\xb1\x5f\x7c" 7885 "\xa5\xac\x32\x4a\xb8\x07\x91\x18" 7886 "\x6f\xb0\x71\x3c\xc9\xb1\xa8\xf8" 7887 "\x5f\x69\xa5\xa1\xca\x9e\x7a\xaa" 7888 "\xac\xe9\xc7\x47\x41\x75\x25\xc3" 7889 "\x73\xe2\x0b\xdd\x6d\x52\x71\xbe" 7890 "\xc5\xdc\xb4\xe7\x01\x26\x53\x77" 7891 "\x86\x90\x85\x68\x6b\x7b\x03\x53" 7892 "\xda\x52\x52\x51\x68\xc8\xf3\xec" 7893 "\x6c\xd5\x03\x7a\xa3\x0e\xb4\x02" 7894 "\x5f\x1a\xab\xee\xca\x67\x29\x7b" 7895 "\xbd\x96\x59\xb3\x8b\x32\x7a\x92" 7896 "\x9f\xd8\x25\x2b\xdf\xc0\x4c\xda", 7897 .ksize = 1088, 7898 .plaintext = "\xbc\xda\x81\xa8\x78\x79\x1c\xbf" 7899 "\x77\x53\xba\x4c\x30\x5b\xb8\x33", 7900 .psize = 16, 7901 .digest = "\x04\xbf\x7f\x6a\xce\x72\xea\x6a" 7902 "\x79\xdb\xb0\xc9\x60\xf6\x12\xcc", 7903 }, { 7904 .key = "\x2e\x77\x1e\x2c\x63\x76\x34\x3f" 7905 "\x71\x08\x4f\x5a\xe3\x3d\x74\x56" 7906 "\xc7\x98\x46\x52\xe5\x8a\xba\x0d" 7907 "\x72\x41\x11\x15\x14\x72\x50\x8a" 7908 "\xd5\xec\x60\x09\xdd\x71\xcc\xb9" 7909 "\x59\x81\x65\x2d\x9e\x50\x18\xf3" 7910 "\x32\xf3\xf1\xe7\x01\x82\x1c\xad" 7911 "\x88\xa0\x21\x0c\x4b\x80\x5e\x62" 7912 "\xfc\x81\xec\x52\xaa\xe4\xa5\x86" 7913 "\xc2\xe6\x03\x11\xdc\x66\x09\x86" 7914 "\x3c\x3b\xf0\x59\x0f\xb3\xf7\x44" 7915 "\x24\xb7\x88\xc5\xfc\xc8\x77\x9f" 7916 "\x8c\x44\xc4\x11\x55\xce\x7a\xa3" 7917 "\xe0\xa2\xb8\xbf\xb5\x3d\x07\x2c" 7918 "\x32\xb6\x6c\xfc\xb4\x42\x95\x95" 7919 "\x98\x32\x81\xc4\xe7\xe2\xd9\x6a" 7920 "\x87\xf4\xf4\x1e\x74\x7c\xb5\xcd" 7921 "\x51\x45\x68\x38\x51\xdb\x30\x74" 7922 "\x11\xe0\xaa\xae\x19\x8f\x15\x55" 7923 "\xdd\x47\x4a\x35\xb9\x0c\xb4\x4e" 7924 "\xa9\xce\x2f\xfa\x8f\xc1\x8a\x5e" 7925 "\x5b\xec\xa5\x81\x3b\xb3\x43\x06" 7926 "\x24\x81\xf4\x24\xe2\x21\xfa\xcb" 7927 "\x49\xa8\xf8\xbd\x31\x4a\x5b\x2d" 7928 "\x64\x0a\x07\xf0\x80\xc9\x0d\x81" 7929 "\x14\x58\x54\x2b\xba\x22\x31\xba" 7930 "\xef\x66\xc9\x49\x69\x69\x83\x0d" 7931 "\xf2\xf9\x80\x9d\x30\x36\xfb\xe3" 7932 "\xc0\x72\x2b\xcc\x5a\x81\x2c\x5d" 7933 "\x3b\x5e\xf8\x2b\xd3\x14\x28\x73" 7934 "\xf9\x1c\x70\xe6\xd8\xbb\xac\x30" 7935 "\xf9\xd9\xa0\xe2\x33\x7c\x33\x34" 7936 "\xa5\x6a\x77\x6d\xd5\xaf\xf4\xf3" 7937 "\xc7\xb3\x0e\x83\x3d\xcb\x01\xcc" 7938 "\x81\xc0\xf9\x4a\xae\x36\x92\xf7" 7939 "\x69\x7b\x65\x01\xc3\xc8\xb8\xae" 7940 "\x16\xd8\x30\xbb\xba\x6d\x78\x6e" 7941 "\x0d\xf0\x7d\x84\xb7\x87\xda\x28" 7942 "\x7a\x18\x10\x0b\x29\xec\x29\xf3" 7943 "\xb0\x7b\xa1\x28\xbf\xbc\x2b\x2c" 7944 "\x92\x2c\x16\xfb\x02\x39\xf9\xa6" 7945 "\xa2\x15\x05\xa6\x72\x10\xbc\x62" 7946 "\x4a\x6e\xb8\xb5\x5d\x59\xae\x3c" 7947 "\x32\xd3\x68\xd7\x8e\x5a\xcd\x1b" 7948 "\xef\xf6\xa7\x5e\x10\x51\x15\x4b" 7949 "\x2c\xe3\xba\x70\x4f\x2c\xa0\x1c" 7950 "\x7b\x97\xd7\xb2\xa5\x05\x17\xcc" 7951 "\xf7\x3a\x29\x6f\xd5\x4b\xb8\x24" 7952 "\xf4\x65\x95\x12\xc0\x86\xd1\x64" 7953 "\x81\xdf\x46\x55\x0d\x22\x06\x77" 7954 "\xd8\xca\x8d\xc8\x87\xc3\xfa\xb9" 7955 "\xe1\x98\x94\xe6\x7b\xed\x65\x66" 7956 "\x0e\xc7\x25\x15\xee\x4a\xe6\x7e" 7957 "\xea\x1b\x58\xee\x96\xa0\x75\x9a" 7958 "\xa3\x00\x9e\x42\xc2\x26\x20\x8c" 7959 "\x3d\x22\x1f\x94\x3e\x74\x43\x72" 7960 "\xe9\x1d\xa6\xa1\x6c\xa7\xb8\x03" 7961 "\xdf\xb9\x7a\xaf\xe9\xe9\x3b\xfe" 7962 "\xdf\x91\xc1\x01\xa8\xba\x5d\x29" 7963 "\xa5\xe0\x98\x9b\x13\xe5\x13\x11" 7964 "\x7c\x04\x3a\xe8\x44\x7e\x78\xfc" 7965 "\xd6\x96\xa8\xbc\x7d\xc1\x89\x3d" 7966 "\x75\x64\xa9\x0e\x86\x33\xfb\x73" 7967 "\xf7\x15\xbc\x2c\x9a\x3f\x29\xce" 7968 "\x1c\x9d\x10\x4e\x85\xe1\x77\x41" 7969 "\x01\xe2\xbc\x88\xec\x81\xef\xc2" 7970 "\x6a\xed\x4f\xf7\xdf\xac\x10\x71" 7971 "\x94\xed\x71\xa4\x01\xd4\xd6\xbe" 7972 "\xfe\x3e\xc3\x92\x6a\xf2\x2b\xb5" 7973 "\xab\x15\x96\xb7\x88\x2c\xc2\xe1" 7974 "\xb0\x04\x22\xe7\x3d\xa9\xc9\x7d" 7975 "\x2c\x7c\x21\xff\x97\x86\x6b\x0c" 7976 "\x2b\x5b\xe0\xb6\x48\x74\x8f\x24" 7977 "\xef\x8e\xdd\x0f\x2a\x5f\xff\x33" 7978 "\xf4\x8e\xc5\xeb\x9c\xd7\x2a\x45" 7979 "\xf3\x50\xf1\xc0\x91\x8f\xc7\xf9" 7980 "\x97\xc1\x3c\x9c\xf4\xed\x8a\x23" 7981 "\x61\x5b\x40\x1a\x09\xee\x23\xa8" 7982 "\x7c\x7a\x96\xe1\x31\x55\x3d\x12" 7983 "\x04\x1f\x21\x78\x72\xf0\x0f\xa5" 7984 "\x80\x58\x7c\x2f\x37\xb5\x67\x24" 7985 "\x2f\xce\xf9\xf6\x86\x9f\xb3\x34" 7986 "\x0c\xfe\x0a\xaf\x27\xe6\x5e\x0a" 7987 "\x21\x44\x68\xe1\x5d\x84\x25\xae" 7988 "\x2c\x5a\x94\x66\x9a\x3f\x0e\x5a" 7989 "\xd0\x60\x2a\xd5\x3a\x4e\x2f\x40" 7990 "\x87\xe9\x27\x3e\xee\x92\xe1\x07" 7991 "\x22\x43\x52\xed\x67\x49\x13\xdd" 7992 "\x68\xd7\x54\xc2\x76\x72\x7e\x75" 7993 "\xaf\x24\x98\x5c\xe8\x22\xaa\x35" 7994 "\x0f\x9a\x1c\x4c\x0b\x43\x68\x99" 7995 "\x45\xdd\xbf\x82\xa5\x6f\x0a\xef" 7996 "\x44\x90\x85\xe7\x57\x23\x22\x41" 7997 "\x2e\xda\x24\x28\x65\x7f\x96\x85" 7998 "\x9f\x4b\x0d\x43\xb9\xa8\xbd\x84" 7999 "\xad\x0b\x09\xcc\x2c\x4a\x0c\xec" 8000 "\x71\x58\xba\xf1\xfc\x49\x4c\xca" 8001 "\x5c\x5d\xb2\x77\x0c\x99\xae\x1c" 8002 "\xce\x70\x05\x5b\x73\x6b\x7c\x28" 8003 "\x3b\xeb\x21\x3f\xa3\x71\xe1\x6a" 8004 "\xf4\x87\xd0\xbf\x73\xaa\x0b\x0b" 8005 "\xed\x70\xb3\xd4\xa3\xca\x76\x3a" 8006 "\xdb\xfa\xd8\x08\x95\xec\xac\x59" 8007 "\xd0\x79\x90\xc2\x33\x7b\xcc\x28" 8008 "\x65\xb6\x5f\x92\xc4\xac\x23\x40" 8009 "\xd1\x20\x44\x1f\xd7\x29\xab\x46" 8010 "\x79\x32\xc6\x8f\x79\xe5\xaa\x2c" 8011 "\xa6\x76\x70\x3a\x9e\x46\x3f\x8c" 8012 "\x1a\x89\x32\x28\x61\x5c\xcf\x93" 8013 "\x1e\xde\x9e\x98\xbe\x06\x30\x23" 8014 "\xc4\x8b\xda\x1c\xd1\x67\x46\x93" 8015 "\x9d\x41\xa2\x8c\x03\x22\xbd\x55" 8016 "\x7e\x91\x51\x13\xdc\xcf\x5c\x1e" 8017 "\xcb\x5d\xfb\x14\x16\x1a\x44\x56" 8018 "\x27\x77\xfd\xed\x7d\xbd\xd1\x49" 8019 "\x7f\x0d\xc3\x59\x48\x6b\x3c\x02" 8020 "\x6b\xb5\xd0\x83\xd5\x81\x29\xe7" 8021 "\xe0\xc9\x36\x23\x8d\x41\x33\x77" 8022 "\xff\x5f\x54\xde\x4d\x3f\xd2\x4e" 8023 "\xb6\x4d\xdd\x85\xf8\x9b\x20\x7d" 8024 "\x39\x27\x68\x63\xd3\x8e\x61\x39" 8025 "\xfa\xe1\xc3\x04\x74\x27\x5a\x34" 8026 "\x7f\xec\x59\x2d\xc5\x6e\x54\x23" 8027 "\xf5\x7b\x4b\xbe\x58\x2b\xf2\x81" 8028 "\x93\x63\xcc\x13\xd9\x90\xbb\x6a" 8029 "\x41\x03\x8d\x95\xeb\xbb\x5d\x06" 8030 "\x38\x4c\x0e\xd6\xa9\x5b\x84\x97" 8031 "\x3e\x64\x72\xe9\x96\x07\x0f\x73" 8032 "\x6e\xc6\x3b\x32\xbe\xac\x13\x14" 8033 "\xd0\x0a\x17\x5f\xb9\x9c\x3e\x34" 8034 "\xd9\xec\xd6\x8f\x89\xbf\x1e\xd3" 8035 "\xda\x80\xb2\x29\xff\x28\x96\xb3" 8036 "\x46\x50\x5b\x15\x80\x97\xee\x1f" 8037 "\x6c\xd8\xe8\xe0\xbd\x09\xe7\x20" 8038 "\x8c\x23\x8e\xd9\xbb\x92\xfa\x82" 8039 "\xaa\x0f\xb5\xf8\x78\x60\x11\xf0", 8040 .ksize = 1088, 8041 .plaintext = "\x0b\xb2\x31\x2d\xad\xfe\xce\xf9" 8042 "\xec\x5d\x3d\x64\x5f\x3f\x75\x43" 8043 "\x05\x5b\x97", 8044 .psize = 19, 8045 .digest = "\x5f\x02\xae\x65\x6c\x13\x21\x67" 8046 "\x77\x9e\xc4\x43\x58\x68\xde\x8f", 8047 }, { 8048 .key = "\x65\x4d\xe3\xf8\xd2\x4c\xac\x28" 8049 "\x68\xf5\xb3\x81\x71\x4b\xa1\xfa" 8050 "\x04\x0e\xd3\x81\x36\xbe\x0c\x81" 8051 "\x5e\xaf\xbc\x3a\xa4\xc0\x8e\x8b" 8052 "\x55\x63\xd3\x52\x97\x88\xd6\x19" 8053 "\xbc\x96\xdf\x49\xff\x04\x63\xf5" 8054 "\x0c\x11\x13\xaa\x9e\x1f\x5a\xf7" 8055 "\xdd\xbd\x37\x80\xc3\xd0\xbe\xa7" 8056 "\x05\xc8\x3c\x98\x1e\x05\x3c\x84" 8057 "\x39\x61\xc4\xed\xed\x71\x1b\xc4" 8058 "\x74\x45\x2c\xa1\x56\x70\x97\xfd" 8059 "\x44\x18\x07\x7d\xca\x60\x1f\x73" 8060 "\x3b\x6d\x21\xcb\x61\x87\x70\x25" 8061 "\x46\x21\xf1\x1f\x21\x91\x31\x2d" 8062 "\x5d\xcc\xb7\xd1\x84\x3e\x3d\xdb" 8063 "\x03\x53\x2a\x82\xa6\x9a\x95\xbc" 8064 "\x1a\x1e\x0a\x5e\x07\x43\xab\x43" 8065 "\xaf\x92\x82\x06\x91\x04\x09\xf4" 8066 "\x17\x0a\x9a\x2c\x54\xdb\xb8\xf4" 8067 "\xd0\xf0\x10\x66\x24\x8d\xcd\xda" 8068 "\xfe\x0e\x45\x9d\x6f\xc4\x4e\xf4" 8069 "\x96\xaf\x13\xdc\xa9\xd4\x8c\xc4" 8070 "\xc8\x57\x39\x3c\xc2\xd3\x0a\x76" 8071 "\x4a\x1f\x75\x83\x44\xc7\xd1\x39" 8072 "\xd8\xb5\x41\xba\x73\x87\xfa\x96" 8073 "\xc7\x18\x53\xfb\x9b\xda\xa0\x97" 8074 "\x1d\xee\x60\x85\x9e\x14\xc3\xce" 8075 "\xc4\x05\x29\x3b\x95\x30\xa3\xd1" 8076 "\x9f\x82\x6a\x04\xf5\xa7\x75\x57" 8077 "\x82\x04\xfe\x71\x51\x71\xb1\x49" 8078 "\x50\xf8\xe0\x96\xf1\xfa\xa8\x88" 8079 "\x3f\xa0\x86\x20\xd4\x60\x79\x59" 8080 "\x17\x2d\xd1\x09\xf4\xec\x05\x57" 8081 "\xcf\x62\x7e\x0e\x7e\x60\x78\xe6" 8082 "\x08\x60\x29\xd8\xd5\x08\x1a\x24" 8083 "\xc4\x6c\x24\xe7\x92\x08\x3d\x8a" 8084 "\x98\x7a\xcf\x99\x0a\x65\x0e\xdc" 8085 "\x8c\x8a\xbe\x92\x82\x91\xcc\x62" 8086 "\x30\xb6\xf4\x3f\xc6\x8a\x7f\x12" 8087 "\x4a\x8a\x49\xfa\x3f\x5c\xd4\x5a" 8088 "\xa6\x82\xa3\xe6\xaa\x34\x76\xb2" 8089 "\xab\x0a\x30\xef\x6c\x77\x58\x3f" 8090 "\x05\x6b\xcc\x5c\xae\xdc\xd7\xb9" 8091 "\x51\x7e\x8d\x32\x5b\x24\x25\xbe" 8092 "\x2b\x24\x01\xcf\x80\xda\x16\xd8" 8093 "\x90\x72\x2c\xad\x34\x8d\x0c\x74" 8094 "\x02\xcb\xfd\xcf\x6e\xef\x97\xb5" 8095 "\x4c\xf2\x68\xca\xde\x43\x9e\x8a" 8096 "\xc5\x5f\x31\x7f\x14\x71\x38\xec" 8097 "\xbd\x98\xe5\x71\xc4\xb5\xdb\xef" 8098 "\x59\xd2\xca\xc0\xc1\x86\x75\x01" 8099 "\xd4\x15\x0d\x6f\xa4\xf7\x7b\x37" 8100 "\x47\xda\x18\x93\x63\xda\xbe\x9e" 8101 "\x07\xfb\xb2\x83\xd5\xc4\x34\x55" 8102 "\xee\x73\xa1\x42\x96\xf9\x66\x41" 8103 "\xa4\xcc\xd2\x93\x6e\xe1\x0a\xbb" 8104 "\xd2\xdd\x18\x23\xe6\x6b\x98\x0b" 8105 "\x8a\x83\x59\x2c\xc3\xa6\x59\x5b" 8106 "\x01\x22\x59\xf7\xdc\xb0\x87\x7e" 8107 "\xdb\x7d\xf4\x71\x41\xab\xbd\xee" 8108 "\x79\xbe\x3c\x01\x76\x0b\x2d\x0a" 8109 "\x42\xc9\x77\x8c\xbb\x54\x95\x60" 8110 "\x43\x2e\xe0\x17\x52\xbd\x90\xc9" 8111 "\xc2\x2c\xdd\x90\x24\x22\x76\x40" 8112 "\x5c\xb9\x41\xc9\xa1\xd5\xbd\xe3" 8113 "\x44\xe0\xa4\xab\xcc\xb8\xe2\x32" 8114 "\x02\x15\x04\x1f\x8c\xec\x5d\x14" 8115 "\xac\x18\xaa\xef\x6e\x33\x19\x6e" 8116 "\xde\xfe\x19\xdb\xeb\x61\xca\x18" 8117 "\xad\xd8\x3d\xbf\x09\x11\xc7\xa5" 8118 "\x86\x0b\x0f\xe5\x3e\xde\xe8\xd9" 8119 "\x0a\x69\x9e\x4c\x20\xff\xf9\xc5" 8120 "\xfa\xf8\xf3\x7f\xa5\x01\x4b\x5e" 8121 "\x0f\xf0\x3b\x68\xf0\x46\x8c\x2a" 8122 "\x7a\xc1\x8f\xa0\xfe\x6a\x5b\x44" 8123 "\x70\x5c\xcc\x92\x2c\x6f\x0f\xbd" 8124 "\x25\x3e\xb7\x8e\x73\x58\xda\xc9" 8125 "\xa5\xaa\x9e\xf3\x9b\xfd\x37\x3e" 8126 "\xe2\x88\xa4\x7b\xc8\x5c\xa8\x93" 8127 "\x0e\xe7\x9a\x9c\x2e\x95\x18\x9f" 8128 "\xc8\x45\x0c\x88\x9e\x53\x4f\x3a" 8129 "\x76\xc1\x35\xfa\x17\xd8\xac\xa0" 8130 "\x0c\x2d\x47\x2e\x4f\x69\x9b\xf7" 8131 "\xd0\xb6\x96\x0c\x19\xb3\x08\x01" 8132 "\x65\x7a\x1f\xc7\x31\x86\xdb\xc8" 8133 "\xc1\x99\x8f\xf8\x08\x4a\x9d\x23" 8134 "\x22\xa8\xcf\x27\x01\x01\x88\x93" 8135 "\x9c\x86\x45\xbd\xe0\x51\xca\x52" 8136 "\x84\xba\xfe\x03\xf7\xda\xc5\xce" 8137 "\x3e\x77\x75\x86\xaf\x84\xc8\x05" 8138 "\x44\x01\x0f\x02\xf3\x58\xb0\x06" 8139 "\x5a\xd7\x12\x30\x8d\xdf\x1f\x1f" 8140 "\x0a\xe6\xd2\xea\xf6\x3a\x7a\x99" 8141 "\x63\xe8\xd2\xc1\x4a\x45\x8b\x40" 8142 "\x4d\x0a\xa9\x76\x92\xb3\xda\x87" 8143 "\x36\x33\xf0\x78\xc3\x2f\x5f\x02" 8144 "\x1a\x6a\x2c\x32\xcd\x76\xbf\xbd" 8145 "\x5a\x26\x20\x28\x8c\x8c\xbc\x52" 8146 "\x3d\x0a\xc9\xcb\xab\xa4\x21\xb0" 8147 "\x54\x40\x81\x44\xc7\xd6\x1c\x11" 8148 "\x44\xc6\x02\x92\x14\x5a\xbf\x1a" 8149 "\x09\x8a\x18\xad\xcd\x64\x3d\x53" 8150 "\x4a\xb6\xa5\x1b\x57\x0e\xef\xe0" 8151 "\x8c\x44\x5f\x7d\xbd\x6c\xfd\x60" 8152 "\xae\x02\x24\xb6\x99\xdd\x8c\xaf" 8153 "\x59\x39\x75\x3c\xd1\x54\x7b\x86" 8154 "\xcc\x99\xd9\x28\x0c\xb0\x94\x62" 8155 "\xf9\x51\xd1\x19\x96\x2d\x66\xf5" 8156 "\x55\xcf\x9e\x59\xe2\x6b\x2c\x08" 8157 "\xc0\x54\x48\x24\x45\xc3\x8c\x73" 8158 "\xea\x27\x6e\x66\x7d\x1d\x0e\x6e" 8159 "\x13\xe8\x56\x65\x3a\xb0\x81\x5c" 8160 "\xf0\xe8\xd8\x00\x6b\xcd\x8f\xad" 8161 "\xdd\x53\xf3\xa4\x6c\x43\xd6\x31" 8162 "\xaf\xd2\x76\x1e\x91\x12\xdb\x3c" 8163 "\x8c\xc2\x81\xf0\x49\xdb\xe2\x6b" 8164 "\x76\x62\x0a\x04\xe4\xaa\x8a\x7c" 8165 "\x08\x0b\x5d\xd0\xee\x1d\xfb\xc4" 8166 "\x02\x75\x42\xd6\xba\xa7\x22\xa8" 8167 "\x47\x29\xb7\x85\x6d\x93\x3a\xdb" 8168 "\x00\x53\x0b\xa2\xeb\xf8\xfe\x01" 8169 "\x6f\x8a\x31\xd6\x17\x05\x6f\x67" 8170 "\x88\x95\x32\xfe\x4f\xa6\x4b\xf8" 8171 "\x03\xe4\xcd\x9a\x18\xe8\x4e\x2d" 8172 "\xf7\x97\x9a\x0c\x7d\x9f\x7e\x44" 8173 "\x69\x51\xe0\x32\x6b\x62\x86\x8f" 8174 "\xa6\x8e\x0b\x21\x96\xe5\xaf\x77" 8175 "\xc0\x83\xdf\xa5\x0e\xd0\xa1\x04" 8176 "\xaf\xc1\x10\xcb\x5a\x40\xe4\xe3" 8177 "\x38\x7e\x07\xe8\x4d\xfa\xed\xc5" 8178 "\xf0\x37\xdf\xbb\x8a\xcf\x3d\xdc" 8179 "\x61\xd2\xc6\x2b\xff\x07\xc9\x2f" 8180 "\x0c\x2d\x5c\x07\xa8\x35\x6a\xfc" 8181 "\xae\x09\x03\x45\x74\x51\x4d\xc4" 8182 "\xb8\x23\x87\x4a\x99\x27\x20\x87" 8183 "\x62\x44\x0a\x4a\xce\x78\x47\x22", 8184 .ksize = 1088, 8185 .plaintext = "\x8e\xb0\x4c\xde\x9c\x4a\x04\x5a" 8186 "\xf6\xa9\x7f\x45\x25\xa5\x7b\x3a" 8187 "\xbc\x4d\x73\x39\x81\xb5\xbd\x3d" 8188 "\x21\x6f\xd7\x37\x50\x3c\x7b\x28" 8189 "\xd1\x03\x3a\x17\xed\x7b\x7c\x2a" 8190 "\x16\xbc\xdf\x19\x89\x52\x71\x31" 8191 "\xb6\xc0\xfd\xb5\xd3\xba\x96\x99" 8192 "\xb6\x34\x0b\xd0\x99\x93\xfc\x1a" 8193 "\x01\x3c\x85\xc6\x9b\x78\x5c\x8b" 8194 "\xfe\xae\xd2\xbf\xb2\x6f\xf9\xed" 8195 "\xc8\x25\x17\xfe\x10\x3b\x7d\xda" 8196 "\xf4\x8d\x35\x4b\x7c\x7b\x82\xe7" 8197 "\xc2\xb3\xee\x60\x4a\x03\x86\xc9" 8198 "\x4e\xb5\xc4\xbe\xd2\xbd\x66\xf1" 8199 "\x13\xf1\x09\xab\x5d\xca\x63\x1f" 8200 "\xfc\xfb\x57\x2a\xfc\xca\x66\xd8" 8201 "\x77\x84\x38\x23\x1d\xac\xd3\xb3" 8202 "\x7a\xad\x4c\x70\xfa\x9c\xc9\x61" 8203 "\xa6\x1b\xba\x33\x4b\x4e\x33\xec" 8204 "\xa0\xa1\x64\x39\x40\x05\x1c\xc2" 8205 "\x3f\x49\x9d\xae\xf2\xc5\xf2\xc5" 8206 "\xfe\xe8\xf4\xc2\xf9\x96\x2d\x28" 8207 "\x92\x30\x44\xbc\xd2\x7f\xe1\x6e" 8208 "\x62\x02\x8f\x3d\x1c\x80\xda\x0e" 8209 "\x6a\x90\x7e\x75\xff\xec\x3e\xc4" 8210 "\xcd\x16\x34\x3b\x05\x6d\x4d\x20" 8211 "\x1c\x7b\xf5\x57\x4f\xfa\x3d\xac" 8212 "\xd0\x13\x55\xe8\xb3\xe1\x1b\x78" 8213 "\x30\xe6\x9f\x84\xd4\x69\xd1\x08" 8214 "\x12\x77\xa7\x4a\xbd\xc0\xf2\xd2" 8215 "\x78\xdd\xa3\x81\x12\xcb\x6c\x14" 8216 "\x90\x61\xe2\x84\xc6\x2b\x16\xcc" 8217 "\x40\x99\x50\x88\x01\x09\x64\x4f" 8218 "\x0a\x80\xbe\x61\xae\x46\xc9\x0a" 8219 "\x5d\xe0\xfb\x72\x7a\x1a\xdd\x61" 8220 "\x63\x20\x05\xa0\x4a\xf0\x60\x69" 8221 "\x7f\x92\xbc\xbf\x4e\x39\x4d\xdd" 8222 "\x74\xd1\xb7\xc0\x5a\x34\xb7\xae" 8223 "\x76\x65\x2e\xbc\x36\xb9\x04\x95" 8224 "\x42\xe9\x6f\xca\x78\xb3\x72\x07" 8225 "\xa3\xba\x02\x94\x67\x4c\xb1\xd7" 8226 "\xe9\x30\x0d\xf0\x3b\xb8\x10\x6d" 8227 "\xea\x2b\x21\xbf\x74\x59\x82\x97" 8228 "\x85\xaa\xf1\xd7\x54\x39\xeb\x05" 8229 "\xbd\xf3\x40\xa0\x97\xe6\x74\xfe" 8230 "\xb4\x82\x5b\xb1\x36\xcb\xe8\x0d" 8231 "\xce\x14\xd9\xdf\xf1\x94\x22\xcd" 8232 "\xd6\x00\xba\x04\x4c\x05\x0c\xc0" 8233 "\xd1\x5a\xeb\x52\xd5\xa8\x8e\xc8" 8234 "\x97\xa1\xaa\xc1\xea\xc1\xbe\x7c" 8235 "\x36\xb3\x36\xa0\xc6\x76\x66\xc5" 8236 "\xe2\xaf\xd6\x5c\xe2\xdb\x2c\xb3" 8237 "\x6c\xb9\x99\x7f\xff\x9f\x03\x24" 8238 "\xe1\x51\x44\x66\xd8\x0c\x5d\x7f" 8239 "\x5c\x85\x22\x2a\xcf\x6d\x79\x28" 8240 "\xab\x98\x01\x72\xfe\x80\x87\x5f" 8241 "\x46\xba\xef\x81\x24\xee\xbf\xb0" 8242 "\x24\x74\xa3\x65\x97\x12\xc4\xaf" 8243 "\x8b\xa0\x39\xda\x8a\x7e\x74\x6e" 8244 "\x1b\x42\xb4\x44\x37\xfc\x59\xfd" 8245 "\x86\xed\xfb\x8c\x66\x33\xda\x63" 8246 "\x75\xeb\xe1\xa4\x85\x4f\x50\x8f" 8247 "\x83\x66\x0d\xd3\x37\xfa\xe6\x9c" 8248 "\x4f\x30\x87\x35\x18\xe3\x0b\xb7" 8249 "\x6e\x64\x54\xcd\x70\xb3\xde\x54" 8250 "\xb7\x1d\xe6\x4c\x4d\x55\x12\x12" 8251 "\xaf\x5f\x7f\x5e\xee\x9d\xe8\x8e" 8252 "\x32\x9d\x4e\x75\xeb\xc6\xdd\xaa" 8253 "\x48\x82\xa4\x3f\x3c\xd7\xd3\xa8" 8254 "\x63\x9e\x64\xfe\xe3\x97\x00\x62" 8255 "\xe5\x40\x5d\xc3\xad\x72\xe1\x28" 8256 "\x18\x50\xb7\x75\xef\xcd\x23\xbf" 8257 "\x3f\xc0\x51\x36\xf8\x41\xc3\x08" 8258 "\xcb\xf1\x8d\x38\x34\xbd\x48\x45" 8259 "\x75\xed\xbc\x65\x7b\xb5\x0c\x9b" 8260 "\xd7\x67\x7d\x27\xb4\xc4\x80\xd7" 8261 "\xa9\xb9\xc7\x4a\x97\xaa\xda\xc8" 8262 "\x3c\x74\xcf\x36\x8f\xe4\x41\xe3" 8263 "\xd4\xd3\x26\xa7\xf3\x23\x9d\x8f" 8264 "\x6c\x20\x05\x32\x3e\xe0\xc3\xc8" 8265 "\x56\x3f\xa7\x09\xb7\xfb\xc7\xf7" 8266 "\xbe\x2a\xdd\x0f\x06\x7b\x0d\xdd" 8267 "\xb0\xb4\x86\x17\xfd\xb9\x04\xe5" 8268 "\xc0\x64\x5d\xad\x2a\x36\x38\xdb" 8269 "\x24\xaf\x5b\xff\xca\xf9\x41\xe8" 8270 "\xf9\x2f\x1e\x5e\xf9\xf5\xd5\xf2" 8271 "\xb2\x88\xca\xc9\xa1\x31\xe2\xe8" 8272 "\x10\x95\x65\xbf\xf1\x11\x61\x7a" 8273 "\x30\x1a\x54\x90\xea\xd2\x30\xf6" 8274 "\xa5\xad\x60\xf9\x4d\x84\x21\x1b" 8275 "\xe4\x42\x22\xc8\x12\x4b\xb0\x58" 8276 "\x3e\x9c\x2d\x32\x95\x0a\x8e\xb0" 8277 "\x0a\x7e\x77\x2f\xe8\x97\x31\x6a" 8278 "\xf5\x59\xb4\x26\xe6\x37\x12\xc9" 8279 "\xcb\xa0\x58\x33\x6f\xd5\x55\x55" 8280 "\x3c\xa1\x33\xb1\x0b\x7e\x2e\xb4" 8281 "\x43\x2a\x84\x39\xf0\x9c\xf4\x69" 8282 "\x4f\x1e\x79\xa6\x15\x1b\x87\xbb" 8283 "\xdb\x9b\xe0\xf1\x0b\xba\xe3\x6e" 8284 "\xcc\x2f\x49\x19\x22\x29\xfc\x71" 8285 "\xbb\x77\x38\x18\x61\xaf\x85\x76" 8286 "\xeb\xd1\x09\xcc\x86\x04\x20\x9a" 8287 "\x66\x53\x2f\x44\x8b\xc6\xa3\xd2" 8288 "\x5f\xc7\x79\x82\x66\xa8\x6e\x75" 8289 "\x7d\x94\xd1\x86\x75\x0f\xa5\x4f" 8290 "\x3c\x7a\x33\xce\xd1\x6e\x9d\x7b" 8291 "\x1f\x91\x37\xb8\x37\x80\xfb\xe0" 8292 "\x52\x26\xd0\x9a\xd4\x48\x02\x41" 8293 "\x05\xe3\x5a\x94\xf1\x65\x61\x19" 8294 "\xb8\x88\x4e\x2b\xea\xba\x8b\x58" 8295 "\x8b\x42\x01\x00\xa8\xfe\x00\x5c" 8296 "\xfe\x1c\xee\x31\x15\x69\xfa\xb3" 8297 "\x9b\x5f\x22\x8e\x0d\x2c\xe3\xa5" 8298 "\x21\xb9\x99\x8a\x8e\x94\x5a\xef" 8299 "\x13\x3e\x99\x96\x79\x6e\xd5\x42" 8300 "\x36\x03\xa9\xe2\xca\x65\x4e\x8a" 8301 "\x8a\x30\xd2\x7d\x74\xe7\xf0\xaa" 8302 "\x23\x26\xdd\xcb\x82\x39\xfc\x9d" 8303 "\x51\x76\x21\x80\xa2\xbe\x93\x03" 8304 "\x47\xb0\xc1\xb6\xdc\x63\xfd\x9f" 8305 "\xca\x9d\xa5\xca\x27\x85\xe2\xd8" 8306 "\x15\x5b\x7e\x14\x7a\xc4\x89\xcc" 8307 "\x74\x14\x4b\x46\xd2\xce\xac\x39" 8308 "\x6b\x6a\x5a\xa4\x0e\xe3\x7b\x15" 8309 "\x94\x4b\x0f\x74\xcb\x0c\x7f\xa9" 8310 "\xbe\x09\x39\xa3\xdd\x56\x5c\xc7" 8311 "\x99\x56\x65\x39\xf4\x0b\x7d\x87" 8312 "\xec\xaa\xe3\x4d\x22\x65\x39\x4e", 8313 .psize = 1024, 8314 .digest = "\x64\x3a\xbc\xc3\x3f\x74\x40\x51" 8315 "\x6e\x56\x01\x1a\x51\xec\x36\xde", 8316 }, { 8317 .key = "\x1b\x82\x2e\x1b\x17\x23\xb9\x6d" 8318 "\xdc\x9c\xda\x99\x07\xe3\x5f\xd8" 8319 "\xd2\xf8\x43\x80\x8d\x86\x7d\x80" 8320 "\x1a\xd0\xcc\x13\xb9\x11\x05\x3f" 8321 "\x7e\xcf\x7e\x80\x0e\xd8\x25\x48" 8322 "\x8b\xaa\x63\x83\x92\xd0\x72\xf5" 8323 "\x4f\x67\x7e\x50\x18\x25\xa4\xd1" 8324 "\xe0\x7e\x1e\xba\xd8\xa7\x6e\xdb" 8325 "\x1a\xcc\x0d\xfe\x9f\x6d\x22\x35" 8326 "\xe1\xe6\xe0\xa8\x7b\x9c\xb1\x66" 8327 "\xa3\xf8\xff\x4d\x90\x84\x28\xbc" 8328 "\xdc\x19\xc7\x91\x49\xfc\xf6\x33" 8329 "\xc9\x6e\x65\x7f\x28\x6f\x68\x2e" 8330 "\xdf\x1a\x75\xe9\xc2\x0c\x96\xb9" 8331 "\x31\x22\xc4\x07\xc6\x0a\x2f\xfd" 8332 "\x36\x06\x5f\x5c\xc5\xb1\x3a\xf4" 8333 "\x5e\x48\xa4\x45\x2b\x88\xa7\xee" 8334 "\xa9\x8b\x52\xcc\x99\xd9\x2f\xb8" 8335 "\xa4\x58\x0a\x13\xeb\x71\x5a\xfa" 8336 "\xe5\x5e\xbe\xf2\x64\xad\x75\xbc" 8337 "\x0b\x5b\x34\x13\x3b\x23\x13\x9a" 8338 "\x69\x30\x1e\x9a\xb8\x03\xb8\x8b" 8339 "\x3e\x46\x18\x6d\x38\xd9\xb3\xd8" 8340 "\xbf\xf1\xd0\x28\xe6\x51\x57\x80" 8341 "\x5e\x99\xfb\xd0\xce\x1e\x83\xf7" 8342 "\xe9\x07\x5a\x63\xa9\xef\xce\xa5" 8343 "\xfb\x3f\x37\x17\xfc\x0b\x37\x0e" 8344 "\xbb\x4b\x21\x62\xb7\x83\x0e\xa9" 8345 "\x9e\xb0\xc4\xad\x47\xbe\x35\xe7" 8346 "\x51\xb2\xf2\xac\x2b\x65\x7b\x48" 8347 "\xe3\x3f\x5f\xb6\x09\x04\x0c\x58" 8348 "\xce\x99\xa9\x15\x2f\x4e\xc1\xf2" 8349 "\x24\x48\xc0\xd8\x6c\xd3\x76\x17" 8350 "\x83\x5d\xe6\xe3\xfd\x01\x8e\xf7" 8351 "\x42\xa5\x04\x29\x30\xdf\xf9\x00" 8352 "\x4a\xdc\x71\x22\x1a\x33\x15\xb6" 8353 "\xd7\x72\xfb\x9a\xb8\xeb\x2b\x38" 8354 "\xea\xa8\x61\xa8\x90\x11\x9d\x73" 8355 "\x2e\x6c\xce\x81\x54\x5a\x9f\xcd" 8356 "\xcf\xd5\xbd\x26\x5d\x66\xdb\xfb" 8357 "\xdc\x1e\x7c\x10\xfe\x58\x82\x10" 8358 "\x16\x24\x01\xce\x67\x55\x51\xd1" 8359 "\xdd\x6b\x44\xa3\x20\x8e\xa9\xa6" 8360 "\x06\xa8\x29\x77\x6e\x00\x38\x5b" 8361 "\xde\x4d\x58\xd8\x1f\x34\xdf\xf9" 8362 "\x2c\xac\x3e\xad\xfb\x92\x0d\x72" 8363 "\x39\xa4\xac\x44\x10\xc0\x43\xc4" 8364 "\xa4\x77\x3b\xfc\xc4\x0d\x37\xd3" 8365 "\x05\x84\xda\x53\x71\xf8\x80\xd3" 8366 "\x34\x44\xdb\x09\xb4\x2b\x8e\xe3" 8367 "\x00\x75\x50\x9e\x43\x22\x00\x0b" 8368 "\x7c\x70\xab\xd4\x41\xf1\x93\xcd" 8369 "\x25\x2d\x84\x74\xb5\xf2\x92\xcd" 8370 "\x0a\x28\xea\x9a\x49\x02\x96\xcb" 8371 "\x85\x9e\x2f\x33\x03\x86\x1d\xdc" 8372 "\x1d\x31\xd5\xfc\x9d\xaa\xc5\xe9" 8373 "\x9a\xc4\x57\xf5\x35\xed\xf4\x4b" 8374 "\x3d\x34\xc2\x29\x13\x86\x36\x42" 8375 "\x5d\xbf\x90\x86\x13\x77\xe5\xc3" 8376 "\x62\xb4\xfe\x0b\x70\x39\x35\x65" 8377 "\x02\xea\xf6\xce\x57\x0c\xbb\x74" 8378 "\x29\xe3\xfd\x60\x90\xfd\x10\x38" 8379 "\xd5\x4e\x86\xbd\x37\x70\xf0\x97" 8380 "\xa6\xab\x3b\x83\x64\x52\xca\x66" 8381 "\x2f\xf9\xa4\xca\x3a\x55\x6b\xb0" 8382 "\xe8\x3a\x34\xdb\x9e\x48\x50\x2f" 8383 "\x3b\xef\xfd\x08\x2d\x5f\xc1\x37" 8384 "\x5d\xbe\x73\xe4\xd8\xe9\xac\xca" 8385 "\x8a\xaa\x48\x7c\x5c\xf4\xa6\x96" 8386 "\x5f\xfa\x70\xa6\xb7\x8b\x50\xcb" 8387 "\xa6\xf5\xa9\xbd\x7b\x75\x4c\x22" 8388 "\x0b\x19\x40\x2e\xc9\x39\x39\x32" 8389 "\x83\x03\xa8\xa4\x98\xe6\x8e\x16" 8390 "\xb9\xde\x08\xc5\xfc\xbf\xad\x39" 8391 "\xa8\xc7\x93\x6c\x6f\x23\xaf\xc1" 8392 "\xab\xe1\xdf\xbb\x39\xae\x93\x29" 8393 "\x0e\x7d\x80\x8d\x3e\x65\xf3\xfd" 8394 "\x96\x06\x65\x90\xa1\x28\x64\x4b" 8395 "\x69\xf9\xa8\x84\x27\x50\xfc\x87" 8396 "\xf7\xbf\x55\x8e\x56\x13\x58\x7b" 8397 "\x85\xb4\x6a\x72\x0f\x40\xf1\x4f" 8398 "\x83\x81\x1f\x76\xde\x15\x64\x7a" 8399 "\x7a\x80\xe4\xc7\x5e\x63\x01\x91" 8400 "\xd7\x6b\xea\x0b\x9b\xa2\x99\x3b" 8401 "\x6c\x88\xd8\xfd\x59\x3c\x8d\x22" 8402 "\x86\x56\xbe\xab\xa1\x37\x08\x01" 8403 "\x50\x85\x69\x29\xee\x9f\xdf\x21" 8404 "\x3e\x20\x20\xf5\xb0\xbb\x6b\xd0" 8405 "\x9c\x41\x38\xec\x54\x6f\x2d\xbd" 8406 "\x0f\xe1\xbd\xf1\x2b\x6e\x60\x56" 8407 "\x29\xe5\x7a\x70\x1c\xe2\xfc\x97" 8408 "\x82\x68\x67\xd9\x3d\x1f\xfb\xd8" 8409 "\x07\x9f\xbf\x96\x74\xba\x6a\x0e" 8410 "\x10\x48\x20\xd8\x13\x1e\xb5\x44" 8411 "\xf2\xcc\xb1\x8b\xfb\xbb\xec\xd7" 8412 "\x37\x70\x1f\x7c\x55\xd2\x4b\xb9" 8413 "\xfd\x70\x5e\xa3\x91\x73\x63\x52" 8414 "\x13\x47\x5a\x06\xfb\x01\x67\xa5" 8415 "\xc0\xd0\x49\x19\x56\x66\x9a\x77" 8416 "\x64\xaf\x8c\x25\x91\x52\x87\x0e" 8417 "\x18\xf3\x5f\x97\xfd\x71\x13\xf8" 8418 "\x05\xa5\x39\xcc\x65\xd3\xcc\x63" 8419 "\x5b\xdb\x5f\x7e\x5f\x6e\xad\xc4" 8420 "\xf4\xa0\xc5\xc2\x2b\x4d\x97\x38" 8421 "\x4f\xbc\xfa\x33\x17\xb4\x47\xb9" 8422 "\x43\x24\x15\x8d\xd2\xed\x80\x68" 8423 "\x84\xdb\x04\x80\xca\x5e\x6a\x35" 8424 "\x2c\x2c\xe7\xc5\x03\x5f\x54\xb0" 8425 "\x5e\x4f\x1d\x40\x54\x3d\x78\x9a" 8426 "\xac\xda\x80\x27\x4d\x15\x4c\x1a" 8427 "\x6e\x80\xc9\xc4\x3b\x84\x0e\xd9" 8428 "\x2e\x93\x01\x8c\xc3\xc8\x91\x4b" 8429 "\xb3\xaa\x07\x04\x68\x5b\x93\xa5" 8430 "\xe7\xc4\x9d\xe7\x07\xee\xf5\x3b" 8431 "\x40\x89\xcc\x60\x34\x9d\xb4\x06" 8432 "\x1b\xef\x92\xe6\xc1\x2a\x7d\x0f" 8433 "\x81\xaa\x56\xe3\xd7\xed\xa7\xd4" 8434 "\xa7\x3a\x49\xc4\xad\x81\x5c\x83" 8435 "\x55\x8e\x91\x54\xb7\x7d\x65\xa5" 8436 "\x06\x16\xd5\x9a\x16\xc1\xb0\xa2" 8437 "\x06\xd8\x98\x47\x73\x7e\x73\xa0" 8438 "\xb8\x23\xb1\x52\xbf\x68\x74\x5d" 8439 "\x0b\xcb\xfa\x8c\x46\xe3\x24\xe6" 8440 "\xab\xd4\x69\x8d\x8c\xf2\x8a\x59" 8441 "\xbe\x48\x46\x50\x8c\x9a\xe8\xe3" 8442 "\x31\x55\x0a\x06\xed\x4f\xf8\xb7" 8443 "\x4f\xe3\x85\x17\x30\xbd\xd5\x20" 8444 "\xe7\x5b\xb2\x32\xcf\x6b\x16\x44" 8445 "\xd2\xf5\x7e\xd7\xd1\x2f\xee\x64" 8446 "\x3e\x9d\x10\xef\x27\x35\x43\x64" 8447 "\x67\xfb\x7a\x7b\xe0\x62\x31\x9a" 8448 "\x4d\xdf\xa5\xab\xc0\x20\xbb\x01" 8449 "\xe9\x7b\x54\xf1\xde\xb2\x79\x50" 8450 "\x6c\x4b\x91\xdb\x7f\xbb\x50\xc1" 8451 "\x55\x44\x38\x9a\xe0\x9f\xe8\x29" 8452 "\x6f\x15\xf8\x4e\xa6\xec\xa0\x60", 8453 .ksize = 1088, 8454 .plaintext = "\x15\x68\x9e\x2f\xad\x15\x52\xdf" 8455 "\xf0\x42\x62\x24\x2a\x2d\xea\xbf" 8456 "\xc7\xf3\xb4\x1a\xf5\xed\xb2\x08" 8457 "\x15\x60\x1c\x00\x77\xbf\x0b\x0e" 8458 "\xb7\x2c\xcf\x32\x3a\xc7\x01\x77" 8459 "\xef\xa6\x75\xd0\x29\xc7\x68\x20" 8460 "\xb2\x92\x25\xbf\x12\x34\xe9\xa4" 8461 "\xfd\x32\x7b\x3f\x7c\xbd\xa5\x02" 8462 "\x38\x41\xde\xc9\xc1\x09\xd9\xfc" 8463 "\x6e\x78\x22\x83\x18\xf7\x50\x8d" 8464 "\x8f\x9c\x2d\x02\xa5\x30\xac\xff" 8465 "\xea\x63\x2e\x80\x37\x83\xb0\x58" 8466 "\xda\x2f\xef\x21\x55\xba\x7b\xb1" 8467 "\xb6\xed\xf5\xd2\x4d\xaa\x8c\xa9" 8468 "\xdd\xdb\x0f\xb4\xce\xc1\x9a\xb1" 8469 "\xc1\xdc\xbd\xab\x86\xc2\xdf\x0b" 8470 "\xe1\x2c\xf9\xbe\xf6\xd8\xda\x62" 8471 "\x72\xdd\x98\x09\x52\xc0\xc4\xb6" 8472 "\x7b\x17\x5c\xf5\xd8\x4b\x88\xd6" 8473 "\x6b\xbf\x84\x4a\x3f\xf5\x4d\xd2" 8474 "\x94\xe2\x9c\xff\xc7\x3c\xd9\xc8" 8475 "\x37\x38\xbc\x8c\xf3\xe7\xb7\xd0" 8476 "\x1d\x78\xc4\x39\x07\xc8\x5e\x79" 8477 "\xb6\x5a\x90\x5b\x6e\x97\xc9\xd4" 8478 "\x82\x9c\xf3\x83\x7a\xe7\x97\xfc" 8479 "\x1d\xbb\xef\xdb\xce\xe0\x82\xad" 8480 "\xca\x07\x6c\x54\x62\x6f\x81\xe6" 8481 "\x7a\x5a\x96\x6e\x80\x3a\xa2\x37" 8482 "\x6f\xc6\xa4\x29\xc3\x9e\x19\x94" 8483 "\x9f\xb0\x3e\x38\xfb\x3c\x2b\x7d" 8484 "\xaa\xb8\x74\xda\x54\x23\x51\x12" 8485 "\x4b\x96\x36\x8f\x91\x4f\x19\x37" 8486 "\x83\xc9\xdd\xc7\x1a\x32\x2d\xab" 8487 "\xc7\x89\xe2\x07\x47\x6c\xe8\xa6" 8488 "\x70\x6b\x8e\x0c\xda\x5c\x6a\x59" 8489 "\x27\x33\x0e\xe1\xe1\x20\xe8\xc8" 8490 "\xae\xdc\xd0\xe3\x6d\xa8\xa6\x06" 8491 "\x41\xb4\xd4\xd4\xcf\x91\x3e\x06" 8492 "\xb0\x9a\xf7\xf1\xaa\xa6\x23\x92" 8493 "\x10\x86\xf0\x94\xd1\x7c\x2e\x07" 8494 "\x30\xfb\xc5\xd8\xf3\x12\xa9\xe8" 8495 "\x22\x1c\x97\x1a\xad\x96\xb0\xa1" 8496 "\x72\x6a\x6b\xb4\xfd\xf7\xe8\xfa" 8497 "\xe2\x74\xd8\x65\x8d\x35\x17\x4b" 8498 "\x00\x23\x5c\x8c\x70\xad\x71\xa2" 8499 "\xca\xc5\x6c\x59\xbf\xb4\xc0\x6d" 8500 "\x86\x98\x3e\x19\x5a\x90\x92\xb1" 8501 "\x66\x57\x6a\x91\x68\x7c\xbc\xf3" 8502 "\xf1\xdb\x94\xf8\x48\xf1\x36\xd8" 8503 "\x78\xac\x1c\xa9\xcc\xd6\x27\xba" 8504 "\x91\x54\x22\xf5\xe6\x05\x3f\xcc" 8505 "\xc2\x8f\x2c\x3b\x2b\xc3\x2b\x2b" 8506 "\x3b\xb8\xb6\x29\xb7\x2f\x94\xb6" 8507 "\x7b\xfc\x94\x3e\xd0\x7a\x41\x59" 8508 "\x7b\x1f\x9a\x09\xa6\xed\x4a\x82" 8509 "\x9d\x34\x1c\xbd\x4e\x1c\x3a\x66" 8510 "\x80\x74\x0e\x9a\x4f\x55\x54\x47" 8511 "\x16\xba\x2a\x0a\x03\x35\x99\xa3" 8512 "\x5c\x63\x8d\xa2\x72\x8b\x17\x15" 8513 "\x68\x39\x73\xeb\xec\xf2\xe8\xf5" 8514 "\x95\x32\x27\xd6\xc4\xfe\xb0\x51" 8515 "\xd5\x0c\x50\xc5\xcd\x6d\x16\xb3" 8516 "\xa3\x1e\x95\x69\xad\x78\x95\x06" 8517 "\xb9\x46\xf2\x6d\x24\x5a\x99\x76" 8518 "\x73\x6a\x91\xa6\xac\x12\xe1\x28" 8519 "\x79\xbc\x08\x4e\x97\x00\x98\x63" 8520 "\x07\x1c\x4e\xd1\x68\xf3\xb3\x81" 8521 "\xa8\xa6\x5f\xf1\x01\xc9\xc1\xaf" 8522 "\x3a\x96\xf9\x9d\xb5\x5a\x5f\x8f" 8523 "\x7e\xc1\x7e\x77\x0a\x40\xc8\x8e" 8524 "\xfc\x0e\xed\xe1\x0d\xb0\xe5\x5e" 8525 "\x5e\x6f\xf5\x7f\xab\x33\x7d\xcd" 8526 "\xf0\x09\x4b\xb2\x11\x37\xdc\x65" 8527 "\x97\x32\x62\x71\x3a\x29\x54\xb9" 8528 "\xc7\xa4\xbf\x75\x0f\xf9\x40\xa9" 8529 "\x8d\xd7\x8b\xa7\xe0\x9a\xbe\x15" 8530 "\xc6\xda\xd8\x00\x14\x69\x1a\xaf" 8531 "\x5f\x79\xc3\xf5\xbb\x6c\x2a\x9d" 8532 "\xdd\x3c\x5f\x97\x21\xe1\x3a\x03" 8533 "\x84\x6a\xe9\x76\x11\x1f\xd3\xd5" 8534 "\xf0\x54\x20\x4d\xc2\x91\xc3\xa4" 8535 "\x36\x25\xbe\x1b\x2a\x06\xb7\xf3" 8536 "\xd1\xd0\x55\x29\x81\x4c\x83\xa3" 8537 "\xa6\x84\x1e\x5c\xd1\xd0\x6c\x90" 8538 "\xa4\x11\xf0\xd7\x63\x6a\x48\x05" 8539 "\xbc\x48\x18\x53\xcd\xb0\x8d\xdb" 8540 "\xdc\xfe\x55\x11\x5c\x51\xb3\xab" 8541 "\xab\x63\x3e\x31\x5a\x8b\x93\x63" 8542 "\x34\xa9\xba\x2b\x69\x1a\xc0\xe3" 8543 "\xcb\x41\xbc\xd7\xf5\x7f\x82\x3e" 8544 "\x01\xa3\x3c\x72\xf4\xfe\xdf\xbe" 8545 "\xb1\x67\x17\x2b\x37\x60\x0d\xca" 8546 "\x6f\xc3\x94\x2c\xd2\x92\x6d\x9d" 8547 "\x75\x18\x77\xaa\x29\x38\x96\xed" 8548 "\x0e\x20\x70\x92\xd5\xd0\xb4\x00" 8549 "\xc0\x31\xf2\xc9\x43\x0e\x75\x1d" 8550 "\x4b\x64\xf2\x1f\xf2\x29\x6c\x7b" 8551 "\x7f\xec\x59\x7d\x8c\x0d\xd4\xd3" 8552 "\xac\x53\x4c\xa3\xde\x42\x92\x95" 8553 "\x6d\xa3\x4f\xd0\xe6\x3d\xe7\xec" 8554 "\x7a\x4d\x68\xf1\xfe\x67\x66\x09" 8555 "\x83\x22\xb1\x98\x43\x8c\xab\xb8" 8556 "\x45\xe6\x6d\xdf\x5e\x50\x71\xce" 8557 "\xf5\x4e\x40\x93\x2b\xfa\x86\x0e" 8558 "\xe8\x30\xbd\x82\xcc\x1c\x9c\x5f" 8559 "\xad\xfd\x08\x31\xbe\x52\xe7\xe6" 8560 "\xf2\x06\x01\x62\x25\x15\x99\x74" 8561 "\x33\x51\x52\x57\x3f\x57\x87\x61" 8562 "\xb9\x7f\x29\x3d\xcd\x92\x5e\xa6" 8563 "\x5c\x3b\xf1\xed\x5f\xeb\x82\xed" 8564 "\x56\x7b\x61\xe7\xfd\x02\x47\x0e" 8565 "\x2a\x15\xa4\xce\x43\x86\x9b\xe1" 8566 "\x2b\x4c\x2a\xd9\x42\x97\xf7\x9a" 8567 "\xe5\x47\x46\x48\xd3\x55\x6f\x4d" 8568 "\xd9\xeb\x4b\xdd\x7b\x21\x2f\xb3" 8569 "\xa8\x36\x28\xdf\xca\xf1\xf6\xd9" 8570 "\x10\xf6\x1c\xfd\x2e\x0c\x27\xe0" 8571 "\x01\xb3\xff\x6d\x47\x08\x4d\xd4" 8572 "\x00\x25\xee\x55\x4a\xe9\xe8\x5b" 8573 "\xd8\xf7\x56\x12\xd4\x50\xb2\xe5" 8574 "\x51\x6f\x34\x63\x69\xd2\x4e\x96" 8575 "\x4e\xbc\x79\xbf\x18\xae\xc6\x13" 8576 "\x80\x92\x77\xb0\xb4\x0f\x29\x94" 8577 "\x6f\x4c\xbb\x53\x11\x36\xc3\x9f" 8578 "\x42\x8e\x96\x8a\x91\xc8\xe9\xfc" 8579 "\xfe\xbf\x7c\x2d\x6f\xf9\xb8\x44" 8580 "\x89\x1b\x09\x53\x0a\x2a\x92\xc3" 8581 "\x54\x7a\x3a\xf9\xe2\xe4\x75\x87" 8582 "\xa0\x5e\x4b\x03\x7a\x0d\x8a\xf4" 8583 "\x55\x59\x94\x2b\x63\x96\x0e\xf5", 8584 .psize = 1040, 8585 .digest = "\xb5\xb9\x08\xb3\x24\x3e\x03\xf0" 8586 "\xd6\x0b\x57\xbc\x0a\x6d\x89\x59", 8587 }, { 8588 .key = "\xf6\x34\x42\x71\x35\x52\x8b\x58" 8589 "\x02\x3a\x8e\x4a\x8d\x41\x13\xe9" 8590 "\x7f\xba\xb9\x55\x9d\x73\x4d\xf8" 8591 "\x3f\x5d\x73\x15\xff\xd3\x9e\x7f" 8592 "\x20\x2a\x6a\xa8\xd1\xf0\x8f\x12" 8593 "\x6b\x02\xd8\x6c\xde\xba\x80\x22" 8594 "\x19\x37\xc8\xd0\x4e\x89\x17\x7c" 8595 "\x7c\xdd\x88\xfd\x41\xc0\x04\xb7" 8596 "\x1d\xac\x19\xe3\x20\xc7\x16\xcf" 8597 "\x58\xee\x1d\x7a\x61\x69\xa9\x12" 8598 "\x4b\xef\x4f\xb6\x38\xdd\x78\xf8" 8599 "\x28\xee\x70\x08\xc7\x7c\xcc\xc8" 8600 "\x1e\x41\xf5\x80\x86\x70\xd0\xf0" 8601 "\xa3\x87\x6b\x0a\x00\xd2\x41\x28" 8602 "\x74\x26\xf1\x24\xf3\xd0\x28\x77" 8603 "\xd7\xcd\xf6\x2d\x61\xf4\xa2\x13" 8604 "\x77\xb4\x6f\xa0\xf4\xfb\xd6\xb5" 8605 "\x38\x9d\x5a\x0c\x51\xaf\xad\x63" 8606 "\x27\x67\x8c\x01\xea\x42\x1a\x66" 8607 "\xda\x16\x7c\x3c\x30\x0c\x66\x53" 8608 "\x1c\x88\xa4\x5c\xb2\xe3\x78\x0a" 8609 "\x13\x05\x6d\xe2\xaf\xb3\xe4\x75" 8610 "\x00\x99\x58\xee\x76\x09\x64\xaa" 8611 "\xbb\x2e\xb1\x81\xec\xd8\x0e\xd3" 8612 "\x0c\x33\x5d\xb7\x98\xef\x36\xb6" 8613 "\xd2\x65\x69\x41\x70\x12\xdc\x25" 8614 "\x41\x03\x99\x81\x41\x19\x62\x13" 8615 "\xd1\x0a\x29\xc5\x8c\xe0\x4c\xf3" 8616 "\xd6\xef\x4c\xf4\x1d\x83\x2e\x6d" 8617 "\x8e\x14\x87\xed\x80\xe0\xaa\xd3" 8618 "\x08\x04\x73\x1a\x84\x40\xf5\x64" 8619 "\xbd\x61\x32\x65\x40\x42\xfb\xb0" 8620 "\x40\xf6\x40\x8d\xc7\x7f\x14\xd0" 8621 "\x83\x99\xaa\x36\x7e\x60\xc6\xbf" 8622 "\x13\x8a\xf9\x21\xe4\x7e\x68\x87" 8623 "\xf3\x33\x86\xb4\xe0\x23\x7e\x0a" 8624 "\x21\xb1\xf5\xad\x67\x3c\x9c\x9d" 8625 "\x09\xab\xaf\x5f\xba\xe0\xd0\x82" 8626 "\x48\x22\x70\xb5\x6d\x53\xd6\x0e" 8627 "\xde\x64\x92\x41\xb0\xd3\xfb\xda" 8628 "\x21\xfe\xab\xea\x20\xc4\x03\x58" 8629 "\x18\x2e\x7d\x2f\x03\xa9\x47\x66" 8630 "\xdf\x7b\xa4\x6b\x34\x6b\x55\x9c" 8631 "\x4f\xd7\x9c\x47\xfb\xa9\x42\xec" 8632 "\x5a\x12\xfd\xfe\x76\xa0\x92\x9d" 8633 "\xfe\x1e\x16\xdd\x24\x2a\xe4\x27" 8634 "\xd5\xa9\xf2\x05\x4f\x83\xa2\xaf" 8635 "\xfe\xee\x83\x7a\xad\xde\xdf\x9a" 8636 "\x80\xd5\x81\x14\x93\x16\x7e\x46" 8637 "\x47\xc2\x14\xef\x49\x6e\xb9\xdb" 8638 "\x40\xe8\x06\x6f\x9c\x2a\xfd\x62" 8639 "\x06\x46\xfd\x15\x1d\x36\x61\x6f" 8640 "\x77\x77\x5e\x64\xce\x78\x1b\x85" 8641 "\xbf\x50\x9a\xfd\x67\xa6\x1a\x65" 8642 "\xad\x5b\x33\x30\xf1\x71\xaa\xd9" 8643 "\x23\x0d\x92\x24\x5f\xae\x57\xb0" 8644 "\x24\x37\x0a\x94\x12\xfb\xb5\xb1" 8645 "\xd3\xb8\x1d\x12\x29\xb0\x80\x24" 8646 "\x2d\x47\x9f\x96\x1f\x95\xf1\xb1" 8647 "\xda\x35\xf6\x29\xe0\xe1\x23\x96" 8648 "\xc7\xe8\x22\x9b\x7c\xac\xf9\x41" 8649 "\x39\x01\xe5\x73\x15\x5e\x99\xec" 8650 "\xb4\xc1\xf4\xe7\xa7\x97\x6a\xd5" 8651 "\x90\x9a\xa0\x1d\xf3\x5a\x8b\x5f" 8652 "\xdf\x01\x52\xa4\x93\x31\x97\xb0" 8653 "\x93\x24\xb5\xbc\xb2\x14\x24\x98" 8654 "\x4a\x8f\x19\x85\xc3\x2d\x0f\x74" 8655 "\x9d\x16\x13\x80\x5e\x59\x62\x62" 8656 "\x25\xe0\xd1\x2f\x64\xef\xba\xac" 8657 "\xcd\x09\x07\x15\x8a\xcf\x73\xb5" 8658 "\x8b\xc9\xd8\x24\xb0\x53\xd5\x6f" 8659 "\xe1\x2b\x77\xb1\xc5\xe4\xa7\x0e" 8660 "\x18\x45\xab\x36\x03\x59\xa8\xbd" 8661 "\x43\xf0\xd8\x2c\x1a\x69\x96\xbb" 8662 "\x13\xdf\x6c\x33\x77\xdf\x25\x34" 8663 "\x5b\xa5\x5b\x8c\xf9\x51\x05\xd4" 8664 "\x8b\x8b\x44\x87\x49\xfc\xa0\x8f" 8665 "\x45\x15\x5b\x40\x42\xc4\x09\x92" 8666 "\x98\x0c\x4d\xf4\x26\x37\x1b\x13" 8667 "\x76\x01\x93\x8d\x4f\xe6\xed\x18" 8668 "\xd0\x79\x7b\x3f\x44\x50\xcb\xee" 8669 "\xf7\x4a\xc9\x9e\xe0\x96\x74\xa7" 8670 "\xe6\x93\xb2\x53\xca\x55\xa8\xdc" 8671 "\x1e\x68\x07\x87\xb7\x2e\xc1\x08" 8672 "\xb2\xa4\x5b\xaf\xc6\xdb\x5c\x66" 8673 "\x41\x1c\x51\xd9\xb0\x07\x00\x0d" 8674 "\xf0\x4c\xdc\x93\xde\xa9\x1e\x8e" 8675 "\xd3\x22\x62\xd8\x8b\x88\x2c\xea" 8676 "\x5e\xf1\x6e\x14\x40\xc7\xbe\xaa" 8677 "\x42\x28\xd0\x26\x30\x78\x01\x9b" 8678 "\x83\x07\xbc\x94\xc7\x57\xa2\x9f" 8679 "\x03\x07\xff\x16\xff\x3c\x6e\x48" 8680 "\x0a\xd0\xdd\x4c\xf6\x64\x9a\xf1" 8681 "\xcd\x30\x12\x82\x2c\x38\xd3\x26" 8682 "\x83\xdb\xab\x3e\xc6\xf8\xe6\xfa" 8683 "\x77\x0a\x78\x82\x75\xf8\x63\x51" 8684 "\x59\xd0\x8d\x24\x9f\x25\xe6\xa3" 8685 "\x4c\xbc\x34\xfc\xe3\x10\xc7\x62" 8686 "\xd4\x23\xc8\x3d\xa7\xc6\xa6\x0a" 8687 "\x4f\x7e\x29\x9d\x6d\xbe\xb5\xf1" 8688 "\xdf\xa4\x53\xfa\xc0\x23\x0f\x37" 8689 "\x84\x68\xd0\xb5\xc8\xc6\xae\xf8" 8690 "\xb7\x8d\xb3\x16\xfe\x8f\x87\xad" 8691 "\xd0\xc1\x08\xee\x12\x1c\x9b\x1d" 8692 "\x90\xf8\xd1\x63\xa4\x92\x3c\xf0" 8693 "\xc7\x34\xd8\xf1\x14\xed\xa3\xbc" 8694 "\x17\x7e\xd4\x62\x42\x54\x57\x2c" 8695 "\x3e\x7a\x35\x35\x17\x0f\x0b\x7f" 8696 "\x81\xa1\x3f\xd0\xcd\xc8\x3b\x96" 8697 "\xe9\xe0\x4a\x04\xe1\xb6\x3c\xa1" 8698 "\xd6\xca\xc4\xbd\xb6\xb5\x95\x34" 8699 "\x12\x9d\xc5\x96\xf2\xdf\xba\x54" 8700 "\x76\xd1\xb2\x6b\x3b\x39\xe0\xb9" 8701 "\x18\x62\xfb\xf7\xfc\x12\xf1\x5f" 8702 "\x7e\xc7\xe3\x59\x4c\xa6\xc2\x3d" 8703 "\x40\x15\xf9\xa3\x95\x64\x4c\x74" 8704 "\x8b\x73\x77\x33\x07\xa7\x04\x1d" 8705 "\x33\x5a\x7e\x8f\xbd\x86\x01\x4f" 8706 "\x3e\xb9\x27\x6f\xe2\x41\xf7\x09" 8707 "\x67\xfd\x29\x28\xc5\xe4\xf6\x18" 8708 "\x4c\x1b\x49\xb2\x9c\x5b\xf6\x81" 8709 "\x4f\xbb\x5c\xcc\x0b\xdf\x84\x23" 8710 "\x58\xd6\x28\x34\x93\x3a\x25\x97" 8711 "\xdf\xb2\xc3\x9e\x97\x38\x0b\x7d" 8712 "\x10\xb3\x54\x35\x23\x8c\x64\xee" 8713 "\xf0\xd8\x66\xff\x8b\x22\xd2\x5b" 8714 "\x05\x16\x3c\x89\xf7\xb1\x75\xaf" 8715 "\xc0\xae\x6a\x4f\x3f\xaf\x9a\xf4" 8716 "\xf4\x9a\x24\xd9\x80\x82\xc0\x12" 8717 "\xde\x96\xd1\xbe\x15\x0b\x8d\x6a" 8718 "\xd7\x12\xe4\x85\x9f\x83\xc9\xc3" 8719 "\xff\x0b\xb5\xaf\x3b\xd8\x6d\x67" 8720 "\x81\x45\xe6\xac\xec\xc1\x7b\x16" 8721 "\x18\x0a\xce\x4b\xc0\x2e\x76\xbc" 8722 "\x1b\xfa\xb4\x34\xb8\xfc\x3e\xc8" 8723 "\x5d\x90\x71\x6d\x7a\x79\xef\x06", 8724 .ksize = 1088, 8725 .plaintext = "\xaa\x5d\x54\xcb\xea\x1e\x46\x0f" 8726 "\x45\x87\x70\x51\x8a\x66\x7a\x33" 8727 "\xb4\x18\xff\xa9\x82\xf9\x45\x4b" 8728 "\x93\xae\x2e\x7f\xab\x98\xfe\xbf" 8729 "\x01\xee\xe5\xa0\x37\x8f\x57\xa6" 8730 "\xb0\x76\x0d\xa4\xd6\x28\x2b\x5d" 8731 "\xe1\x03\xd6\x1c\x6f\x34\x0d\xe7" 8732 "\x61\x2d\x2e\xe5\xae\x5d\x47\xc7" 8733 "\x80\x4b\x18\x8f\xa8\x99\xbc\x28" 8734 "\xed\x1d\x9d\x86\x7d\xd7\x41\xd1" 8735 "\xe0\x2b\xe1\x8c\x93\x2a\xa7\x80" 8736 "\xe1\x07\xa0\xa9\x9f\x8c\x8d\x1a" 8737 "\x55\xfc\x6b\x24\x7a\xbd\x3e\x51" 8738 "\x68\x4b\x26\x59\xc8\xa7\x16\xd9" 8739 "\xb9\x61\x13\xde\x8b\x63\x1c\xf6" 8740 "\x60\x01\xfb\x08\xb3\x5b\x0a\xbf" 8741 "\x34\x73\xda\x87\x87\x3d\x6f\x97" 8742 "\x4a\x0c\xa3\x58\x20\xa2\xc0\x81" 8743 "\x5b\x8c\xef\xa9\xc2\x01\x1e\x64" 8744 "\x83\x8c\xbc\x03\xb6\xd0\x29\x9f" 8745 "\x54\xe2\xce\x8b\xc2\x07\x85\x78" 8746 "\x25\x38\x96\x4c\xb4\xbe\x17\x4a" 8747 "\x65\xa6\xfa\x52\x9d\x66\x9d\x65" 8748 "\x4a\xd1\x01\x01\xf0\xcb\x13\xcc" 8749 "\xa5\x82\xf3\xf2\x66\xcd\x3f\x9d" 8750 "\xd1\xaa\xe4\x67\xea\xf2\xad\x88" 8751 "\x56\x76\xa7\x9b\x59\x3c\xb1\x5d" 8752 "\x78\xfd\x69\x79\x74\x78\x43\x26" 8753 "\x7b\xde\x3f\xf1\xf5\x4e\x14\xd9" 8754 "\x15\xf5\x75\xb5\x2e\x19\xf3\x0c" 8755 "\x48\x72\xd6\x71\x6d\x03\x6e\xaa" 8756 "\xa7\x08\xf9\xaa\x70\xa3\x0f\x4d" 8757 "\x12\x8a\xdd\xe3\x39\x73\x7e\xa7" 8758 "\xea\x1f\x6d\x06\x26\x2a\xf2\xc5" 8759 "\x52\xb4\xbf\xfd\x52\x0c\x06\x60" 8760 "\x90\xd1\xb2\x7b\x56\xae\xac\x58" 8761 "\x5a\x6b\x50\x2a\xf5\xe0\x30\x3c" 8762 "\x2a\x98\x0f\x1b\x5b\x0a\x84\x6c" 8763 "\x31\xae\x92\xe2\xd4\xbb\x7f\x59" 8764 "\x26\x10\xb9\x89\x37\x68\x26\xbf" 8765 "\x41\xc8\x49\xc4\x70\x35\x7d\xff" 8766 "\x2d\x7f\xf6\x8a\x93\x68\x8c\x78" 8767 "\x0d\x53\xce\x7d\xff\x7d\xfb\xae" 8768 "\x13\x1b\x75\xc4\x78\xd7\x71\xd8" 8769 "\xea\xd3\xf4\x9d\x95\x64\x8e\xb4" 8770 "\xde\xb8\xe4\xa6\x68\xc8\xae\x73" 8771 "\x58\xaf\xa8\xb0\x5a\x20\xde\x87" 8772 "\x43\xb9\x0f\xe3\xad\x41\x4b\xd5" 8773 "\xb7\xad\x16\x00\xa6\xff\xf6\x74" 8774 "\xbf\x8c\x9f\xb3\x58\x1b\xb6\x55" 8775 "\xa9\x90\x56\x28\xf0\xb5\x13\x4e" 8776 "\x9e\xf7\x25\x86\xe0\x07\x7b\x98" 8777 "\xd8\x60\x5d\x38\x95\x3c\xe4\x22" 8778 "\x16\x2f\xb2\xa2\xaf\xe8\x90\x17" 8779 "\xec\x11\x83\x1a\xf4\xa9\x26\xda" 8780 "\x39\x72\xf5\x94\x61\x05\x51\xec" 8781 "\xa8\x30\x8b\x2c\x13\xd0\x72\xac" 8782 "\xb9\xd2\xa0\x4c\x4b\x78\xe8\x6e" 8783 "\x04\x85\xe9\x04\x49\x82\x91\xff" 8784 "\x89\xe5\xab\x4c\xaa\x37\x03\x12" 8785 "\xca\x8b\x74\x10\xfd\x9e\xd9\x7b" 8786 "\xcb\xdb\x82\x6e\xce\x2e\x33\x39" 8787 "\xce\xd2\x84\x6e\x34\x71\x51\x6e" 8788 "\x0d\xd6\x01\x87\xc7\xfa\x0a\xd3" 8789 "\xad\x36\xf3\x4c\x9f\x96\x5e\x62" 8790 "\x62\x54\xc3\x03\x78\xd6\xab\xdd" 8791 "\x89\x73\x55\x25\x30\xf8\xa7\xe6" 8792 "\x4f\x11\x0c\x7c\x0a\xa1\x2b\x7b" 8793 "\x3d\x0d\xde\x81\xd4\x9d\x0b\xae" 8794 "\xdf\x00\xf9\x4c\xb6\x90\x8e\x16" 8795 "\xcb\x11\xc8\xd1\x2e\x73\x13\x75" 8796 "\x75\x3e\xaa\xf5\xee\x02\xb3\x18" 8797 "\xa6\x2d\xf5\x3b\x51\xd1\x1f\x47" 8798 "\x6b\x2c\xdb\xc4\x10\xe0\xc8\xba" 8799 "\x9d\xac\xb1\x9d\x75\xd5\x41\x0e" 8800 "\x7e\xbe\x18\x5b\xa4\x1f\xf8\x22" 8801 "\x4c\xc1\x68\xda\x6d\x51\x34\x6c" 8802 "\x19\x59\xec\xb5\xb1\xec\xa7\x03" 8803 "\xca\x54\x99\x63\x05\x6c\xb1\xac" 8804 "\x9c\x31\xd6\xdb\xba\x7b\x14\x12" 8805 "\x7a\xc3\x2f\xbf\x8d\xdc\x37\x46" 8806 "\xdb\xd2\xbc\xd4\x2f\xab\x30\xd5" 8807 "\xed\x34\x99\x8e\x83\x3e\xbe\x4c" 8808 "\x86\x79\x58\xe0\x33\x8d\x9a\xb8" 8809 "\xa9\xa6\x90\x46\xa2\x02\xb8\xdd" 8810 "\xf5\xf9\x1a\x5c\x8c\x01\xaa\x6e" 8811 "\xb4\x22\x12\xf5\x0c\x1b\x9b\x7a" 8812 "\xc3\x80\xf3\x06\x00\x5f\x30\xd5" 8813 "\x06\xdb\x7d\x82\xc2\xd4\x0b\x4c" 8814 "\x5f\xe9\xc5\xf5\xdf\x97\x12\xbf" 8815 "\x56\xaf\x9b\x69\xcd\xee\x30\xb4" 8816 "\xa8\x71\xff\x3e\x7d\x73\x7a\xb4" 8817 "\x0d\xa5\x46\x7a\xf3\xf4\x15\x87" 8818 "\x5d\x93\x2b\x8c\x37\x64\xb5\xdd" 8819 "\x48\xd1\xe5\x8c\xae\xd4\xf1\x76" 8820 "\xda\xf4\xba\x9e\x25\x0e\xad\xa3" 8821 "\x0d\x08\x7c\xa8\x82\x16\x8d\x90" 8822 "\x56\x40\x16\x84\xe7\x22\x53\x3a" 8823 "\x58\xbc\xb9\x8f\x33\xc8\xc2\x84" 8824 "\x22\xe6\x0d\xe7\xb3\xdc\x5d\xdf" 8825 "\xd7\x2a\x36\xe4\x16\x06\x07\xd2" 8826 "\x97\x60\xb2\xf5\x5e\x14\xc9\xfd" 8827 "\x8b\x05\xd1\xce\xee\x9a\x65\x99" 8828 "\xb7\xae\x19\xb7\xc8\xbc\xd5\xa2" 8829 "\x7b\x95\xe1\xcc\xba\x0d\xdc\x8a" 8830 "\x1d\x59\x52\x50\xaa\x16\x02\x82" 8831 "\xdf\x61\x33\x2e\x44\xce\x49\xc7" 8832 "\xe5\xc6\x2e\x76\xcf\x80\x52\xf0" 8833 "\x3d\x17\x34\x47\x3f\xd3\x80\x48" 8834 "\xa2\xba\xd5\xc7\x7b\x02\x28\xdb" 8835 "\xac\x44\xc7\x6e\x05\x5c\xc2\x79" 8836 "\xb3\x7d\x6a\x47\x77\x66\xf1\x38" 8837 "\xf0\xf5\x4f\x27\x1a\x31\xca\x6c" 8838 "\x72\x95\x92\x8e\x3f\xb0\xec\x1d" 8839 "\xc7\x2a\xff\x73\xee\xdf\x55\x80" 8840 "\x93\xd2\xbd\x34\xd3\x9f\x00\x51" 8841 "\xfb\x2e\x41\xba\x6c\x5a\x7c\x17" 8842 "\x7f\xe6\x70\xac\x8d\x39\x3f\x77" 8843 "\xe2\x23\xac\x8f\x72\x4e\xe4\x53" 8844 "\xcc\xf1\x1b\xf1\x35\xfe\x52\xa4" 8845 "\xd6\xb8\x40\x6b\xc1\xfd\xa0\xa1" 8846 "\xf5\x46\x65\xc2\x50\xbb\x43\xe2" 8847 "\xd1\x43\x28\x34\x74\xf5\x87\xa0" 8848 "\xf2\x5e\x27\x3b\x59\x2b\x3e\x49" 8849 "\xdf\x46\xee\xaf\x71\xd7\x32\x36" 8850 "\xc7\x14\x0b\x58\x6e\x3e\x2d\x41" 8851 "\xfa\x75\x66\x3a\x54\xe0\xb2\xb9" 8852 "\xaf\xdd\x04\x80\x15\x19\x3f\x6f" 8853 "\xce\x12\xb4\xd8\xe8\x89\x3c\x05" 8854 "\x30\xeb\xf3\x3d\xcd\x27\xec\xdc" 8855 "\x56\x70\x12\xcf\x78\x2b\x77\xbf" 8856 "\x22\xf0\x1b\x17\x9c\xcc\xd6\x1b" 8857 "\x2d\x3d\xa0\x3b\xd8\xc9\x70\xa4" 8858 "\x7a\x3e\x07\xb9\x06\xc3\xfa\xb0" 8859 "\x33\xee\xc1\xd8\xf6\xe0\xf0\xb2" 8860 "\x61\x12\x69\xb0\x5f\x28\x99\xda" 8861 "\xc3\x61\x48\xfa\x07\x16\x03\xc4" 8862 "\xa8\xe1\x3c\xe8\x0e\x64\x15\x30" 8863 "\xc1\x9d\x84\x2f\x73\x98\x0e\x3a" 8864 "\xf2\x86\x21\xa4\x9e\x1d\xb5\x86" 8865 "\x16\xdb\x2b\x9a\x06\x64\x8e\x79" 8866 "\x8d\x76\x3e\xc3\xc2\x64\x44\xe3" 8867 "\xda\xbc\x1a\x52\xd7\x61\x03\x65" 8868 "\x54\x32\x77\x01\xed\x9d\x8a\x43" 8869 "\x25\x24\xe3\xc1\xbe\xb8\x2f\xcb" 8870 "\x89\x14\x64\xab\xf6\xa0\x6e\x02" 8871 "\x57\xe4\x7d\xa9\x4e\x9a\x03\x36" 8872 "\xad\xf1\xb1\xfc\x0b\xe6\x79\x51" 8873 "\x9f\x81\x77\xc4\x14\x78\x9d\xbf" 8874 "\xb6\xd6\xa3\x8c\xba\x0b\x26\xe7" 8875 "\xc8\xb9\x5c\xcc\xe1\x5f\xd5\xc6" 8876 "\xc4\xca\xc2\xa3\x45\xba\x94\x13" 8877 "\xb2\x8f\xc3\x54\x01\x09\xe7\x8b" 8878 "\xda\x2a\x0a\x11\x02\x43\xcb\x57" 8879 "\xc9\xcc\xb5\x5c\xab\xc4\xec\x54" 8880 "\x00\x06\x34\xe1\x6e\x03\x89\x7c" 8881 "\xc6\xfb\x6a\xc7\x60\x43\xd6\xc5" 8882 "\xb5\x68\x72\x89\x8f\x42\xc3\x74" 8883 "\xbd\x25\xaa\x9f\x67\xb5\xdf\x26" 8884 "\x20\xe8\xb7\x01\x3c\xe4\x77\xce" 8885 "\xc4\x65\xa7\x23\x79\xea\x33\xc7" 8886 "\x82\x14\x5c\x82\xf2\x4e\x3d\xf6" 8887 "\xc6\x4a\x0e\x29\xbb\xec\x44\xcd" 8888 "\x2f\xd1\x4f\x21\x71\xa9\xce\x0f" 8889 "\x5c\xf2\x72\x5c\x08\x2e\x21\xd2" 8890 "\xc3\x29\x13\xd8\xac\xc3\xda\x13" 8891 "\x1a\x9d\xa7\x71\x1d\x27\x1d\x27" 8892 "\x1d\xea\xab\x44\x79\xad\xe5\xeb" 8893 "\xef\x1f\x22\x0a\x44\x4f\xcb\x87" 8894 "\xa7\x58\x71\x0e\x66\xf8\x60\xbf" 8895 "\x60\x74\x4a\xb4\xec\x2e\xfe\xd3" 8896 "\xf5\xb8\xfe\x46\x08\x50\x99\x6c" 8897 "\x66\xa5\xa8\x34\x44\xb5\xe5\xf0" 8898 "\xdd\x2c\x67\x4e\x35\x96\x8e\x67" 8899 "\x48\x3f\x5f\x37\x44\x60\x51\x2e" 8900 "\x14\x91\x5e\x57\xc3\x0e\x79\x77" 8901 "\x2f\x03\xf4\xe2\x1c\x72\xbf\x85" 8902 "\x5d\xd3\x17\xdf\x6c\xc5\x70\x24" 8903 "\x42\xdf\x51\x4e\x2a\xb2\xd2\x5b" 8904 "\x9e\x69\x83\x41\x11\xfe\x73\x22" 8905 "\xde\x8a\x9e\xd8\x8a\xfb\x20\x38" 8906 "\xd8\x47\x6f\xd5\xed\x8f\x41\xfd" 8907 "\x13\x7a\x18\x03\x7d\x0f\xcd\x7d" 8908 "\xa6\x7d\x31\x9e\xf1\x8f\x30\xa3" 8909 "\x8b\x4c\x24\xb7\xf5\x48\xd7\xd9" 8910 "\x12\xe7\x84\x97\x5c\x31\x6d\xfb" 8911 "\xdf\xf3\xd3\xd1\xd5\x0c\x30\x06" 8912 "\x01\x6a\xbc\x6c\x78\x7b\xa6\x50" 8913 "\xfa\x0f\x3c\x42\x2d\xa5\xa3\x3b" 8914 "\xcf\x62\x50\xff\x71\x6d\xe7\xda" 8915 "\x27\xab\xc6\x67\x16\x65\x68\x64" 8916 "\xc7\xd5\x5f\x81\xa9\xf6\x65\xb3" 8917 "\x5e\x43\x91\x16\xcd\x3d\x55\x37" 8918 "\x55\xb3\xf0\x28\xc5\x54\x19\xc0" 8919 "\xe0\xd6\x2a\x61\xd4\xc8\x72\x51" 8920 "\xe9\xa1\x7b\x48\x21\xad\x44\x09" 8921 "\xe4\x01\x61\x3c\x8a\x5b\xf9\xa1" 8922 "\x6e\x1b\xdf\xc0\x04\xa8\x8b\xf2" 8923 "\x21\xbe\x34\x7b\xfc\xa1\xcd\xc9" 8924 "\xa9\x96\xf4\xa4\x4c\xf7\x4e\x8f" 8925 "\x84\xcc\xd3\xa8\x92\x77\x8f\x36" 8926 "\xe2\x2e\x8c\x33\xe8\x84\xa6\x0c" 8927 "\x6c\x8a\xda\x14\x32\xc2\x96\xff" 8928 "\xc6\x4a\xc2\x9b\x30\x7f\xd1\x29" 8929 "\xc0\xd5\x78\x41\x00\x80\x80\x03" 8930 "\x2a\xb1\xde\x26\x03\x48\x49\xee" 8931 "\x57\x14\x76\x51\x3c\x36\x5d\x0a" 8932 "\x5c\x9f\xe8\xd8\x53\xdb\x4f\xd4" 8933 "\x38\xbf\x66\xc9\x75\x12\x18\x75" 8934 "\x34\x2d\x93\x22\x96\x51\x24\x6e" 8935 "\x4e\xd9\x30\xea\x67\xff\x92\x1c" 8936 "\x16\x26\xe9\xb5\x33\xab\x8c\x22" 8937 "\x47\xdb\xa0\x2c\x08\xf0\x12\x69" 8938 "\x7e\x93\x52\xda\xa5\xe5\xca\xc1" 8939 "\x0f\x55\x2a\xbd\x09\x30\x88\x1b" 8940 "\x9c\xc6\x9f\xe6\xdb\xa6\x92\xeb" 8941 "\xf4\xbd\x5c\xc4\xdb\xc6\x71\x09" 8942 "\xab\x5e\x48\x0c\xed\x6f\xda\x8e" 8943 "\x8d\x0c\x98\x71\x7d\x10\xd0\x9c" 8944 "\x20\x9b\x79\x53\x26\x5d\xb9\x85" 8945 "\x8a\x31\xb8\xc5\x1c\x97\xde\x88" 8946 "\x61\x55\x7f\x7c\x21\x06\xea\xc4" 8947 "\x5f\xaf\xf2\xf0\xd5\x5e\x7d\xb4" 8948 "\x6e\xcf\xe9\xae\x1b\x0e\x11\x80" 8949 "\xc1\x9a\x74\x7e\x52\x6f\xa0\xb7" 8950 "\x24\xcd\x8d\x0a\x11\x40\x63\x72" 8951 "\xfa\xe2\xc5\xb3\x94\xef\x29\xa2" 8952 "\x1a\x23\x43\x04\x37\x55\x0d\xe9" 8953 "\x83\xb2\x29\x51\x49\x64\xa0\xbd" 8954 "\xde\x73\xfd\xa5\x7c\x95\x70\x62" 8955 "\x58\xdc\xe2\xd0\xbf\x98\xf5\x8a" 8956 "\x6a\xfd\xce\xa8\x0e\x42\x2a\xeb" 8957 "\xd2\xff\x83\x27\x53\x5c\xa0\x6e" 8958 "\x93\xef\xe2\xb9\x5d\x35\xd6\x98" 8959 "\xf6\x71\x19\x7a\x54\xa1\xa7\xe8" 8960 "\x09\xfe\xf6\x9e\xc7\xbd\x3e\x29" 8961 "\xbd\x6b\x17\xf4\xe7\x3e\x10\x5c" 8962 "\xc1\xd2\x59\x4f\x4b\x12\x1a\x5b" 8963 "\x50\x80\x59\xb9\xec\x13\x66\xa8" 8964 "\xd2\x31\x7b\x6a\x61\x22\xdd\x7d" 8965 "\x61\xee\x87\x16\x46\x9f\xf9\xc7" 8966 "\x41\xee\x74\xf8\xd0\x96\x2c\x76" 8967 "\x2a\xac\x7d\x6e\x9f\x0e\x7f\x95" 8968 "\xfe\x50\x16\xb2\x23\xca\x62\xd5" 8969 "\x68\xcf\x07\x3f\x3f\x97\x85\x2a" 8970 "\x0c\x25\x45\xba\xdb\x32\xcb\x83" 8971 "\x8c\x4f\xe0\x6d\x9a\x99\xf9\xc9" 8972 "\xda\xd4\x19\x31\xc1\x7c\x6d\xd9" 8973 "\x9c\x56\xd3\xec\xc1\x81\x4c\xed" 8974 "\x28\x9d\x87\xeb\x19\xd7\x1a\x4f" 8975 "\x04\x6a\xcb\x1f\xcf\x1f\xa2\x16" 8976 "\xfc\x2a\x0d\xa1\x14\x2d\xfa\xc5" 8977 "\x5a\xd2\xc5\xf9\x19\x7c\x20\x1f" 8978 "\x2d\x10\xc0\x66\x7c\xd9\x2d\xe5" 8979 "\x88\x70\x59\xa7\x85\xd5\x2e\x7c" 8980 "\x5c\xe3\xb7\x12\xd6\x97\x3f\x29", 8981 .psize = 2048, 8982 .digest = "\x37\x90\x92\xc2\xeb\x01\x87\xd9" 8983 "\x95\xc7\x91\xc3\x17\x8b\x38\x52", 8984 } 8985 }; 8986 8987 8988 /* 8989 * DES test vectors. 8990 */ 8991 static const struct cipher_testvec des_tv_template[] = { 8992 { /* From Applied Cryptography */ 8993 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 8994 .klen = 8, 8995 .ptext = "\x01\x23\x45\x67\x89\xab\xcd\xe7", 8996 .ctext = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d", 8997 .len = 8, 8998 }, { /* Same key, different plaintext block */ 8999 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 9000 .klen = 8, 9001 .ptext = "\x22\x33\x44\x55\x66\x77\x88\x99", 9002 .ctext = "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b", 9003 .len = 8, 9004 }, { /* Sbox test from NBS */ 9005 .key = "\x7c\xa1\x10\x45\x4a\x1a\x6e\x57", 9006 .klen = 8, 9007 .ptext = "\x01\xa1\xd6\xd0\x39\x77\x67\x42", 9008 .ctext = "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b", 9009 .len = 8, 9010 }, { /* Three blocks */ 9011 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 9012 .klen = 8, 9013 .ptext = "\x01\x23\x45\x67\x89\xab\xcd\xe7" 9014 "\x22\x33\x44\x55\x66\x77\x88\x99" 9015 "\xca\xfe\xba\xbe\xfe\xed\xbe\xef", 9016 .ctext = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d" 9017 "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b" 9018 "\xb4\x99\x26\xf7\x1f\xe1\xd4\x90", 9019 .len = 24, 9020 }, { /* Weak key */ 9021 .setkey_error = -EINVAL, 9022 .wk = 1, 9023 .key = "\x01\x01\x01\x01\x01\x01\x01\x01", 9024 .klen = 8, 9025 .ptext = "\x01\x23\x45\x67\x89\xab\xcd\xe7", 9026 .ctext = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d", 9027 .len = 8, 9028 }, { /* Two blocks -- for testing encryption across pages */ 9029 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 9030 .klen = 8, 9031 .ptext = "\x01\x23\x45\x67\x89\xab\xcd\xe7" 9032 "\x22\x33\x44\x55\x66\x77\x88\x99", 9033 .ctext = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d" 9034 "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b", 9035 .len = 16, 9036 }, { 9037 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 9038 .klen = 8, 9039 .ptext = "\x01\x23\x45\x67\x89\xab\xcd\xe7" 9040 "\xa3\x99\x7b\xca\xaf\x69\xa0\xf5", 9041 .ctext = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d" 9042 "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b", 9043 .len = 16, 9044 }, { /* Four blocks -- for testing encryption with chunking */ 9045 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 9046 .klen = 8, 9047 .ptext = "\x01\x23\x45\x67\x89\xab\xcd\xe7" 9048 "\x22\x33\x44\x55\x66\x77\x88\x99" 9049 "\xca\xfe\xba\xbe\xfe\xed\xbe\xef" 9050 "\x22\x33\x44\x55\x66\x77\x88\x99", 9051 .ctext = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d" 9052 "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b" 9053 "\xb4\x99\x26\xf7\x1f\xe1\xd4\x90" 9054 "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b", 9055 .len = 32, 9056 }, { /* Generated with Crypto++ */ 9057 .key = "\xC9\x83\xA6\xC9\xEC\x0F\x32\x55", 9058 .klen = 8, 9059 .ptext = "\x50\xB9\x22\xAE\x17\x80\x0C\x75" 9060 "\xDE\x47\xD3\x3C\xA5\x0E\x9A\x03" 9061 "\x6C\xF8\x61\xCA\x33\xBF\x28\x91" 9062 "\x1D\x86\xEF\x58\xE4\x4D\xB6\x1F" 9063 "\xAB\x14\x7D\x09\x72\xDB\x44\xD0" 9064 "\x39\xA2\x0B\x97\x00\x69\xF5\x5E" 9065 "\xC7\x30\xBC\x25\x8E\x1A\x83\xEC" 9066 "\x55\xE1\x4A\xB3\x1C\xA8\x11\x7A" 9067 "\x06\x6F\xD8\x41\xCD\x36\x9F\x08" 9068 "\x94\xFD\x66\xF2\x5B\xC4\x2D\xB9" 9069 "\x22\x8B\x17\x80\xE9\x52\xDE\x47" 9070 "\xB0\x19\xA5\x0E\x77\x03\x6C\xD5" 9071 "\x3E\xCA\x33\x9C\x05\x91\xFA\x63" 9072 "\xEF\x58\xC1\x2A\xB6\x1F\x88\x14" 9073 "\x7D\xE6\x4F\xDB\x44\xAD\x16\xA2" 9074 "\x0B\x74\x00\x69\xD2\x3B\xC7\x30" 9075 "\x99\x02\x8E\xF7\x60\xEC\x55\xBE" 9076 "\x27\xB3\x1C\x85\x11\x7A\xE3\x4C" 9077 "\xD8\x41\xAA\x13\x9F\x08\x71\xFD" 9078 "\x66\xCF\x38\xC4\x2D\x96\x22\x8B" 9079 "\xF4\x5D\xE9\x52\xBB\x24\xB0\x19" 9080 "\x82\x0E\x77\xE0\x49\xD5\x3E\xA7" 9081 "\x10\x9C\x05\x6E\xFA\x63\xCC\x35" 9082 "\xC1\x2A\x93\x1F\x88\xF1\x5A\xE6" 9083 "\x4F\xB8\x21\xAD\x16\x7F\x0B\x74" 9084 "\xDD\x46\xD2\x3B\xA4\x0D\x99\x02" 9085 "\x6B\xF7\x60\xC9\x32\xBE\x27\x90" 9086 "\x1C\x85\xEE\x57\xE3\x4C\xB5\x1E" 9087 "\xAA\x13\x7C\x08\x71\xDA\x43\xCF" 9088 "\x38\xA1\x0A\x96\xFF\x68\xF4\x5D" 9089 "\xC6\x2F\xBB\x24\x8D\x19\x82\xEB", 9090 .ctext = "\x88\xCB\x1F\xAB\x2F\x2A\x49\x57" 9091 "\x92\xB9\x77\xFF\x2F\x47\x58\xDD" 9092 "\xD7\x8A\x91\x95\x26\x33\x78\xB2" 9093 "\x33\xBA\xB2\x3E\x02\xF5\x1F\xEF" 9094 "\x98\xC5\xA6\xD2\x7D\x79\xEC\xB3" 9095 "\x45\xF3\x4C\x61\xAC\x6C\xC2\x55" 9096 "\xE5\xD3\x06\x58\x8A\x42\x3E\xDD" 9097 "\x3D\x20\x45\xE9\x6F\x0D\x25\xA8" 9098 "\xA5\xC7\x69\xCE\xD5\x3B\x7B\xC9" 9099 "\x9E\x65\xE7\xA3\xF2\xE4\x18\x94" 9100 "\xD2\x81\xE9\x33\x2B\x2D\x49\xC4" 9101 "\xFE\xDA\x7F\xE2\xF2\x8C\x9C\xDC" 9102 "\x73\x58\x11\x1F\x81\xD7\x21\x1A" 9103 "\x80\xD0\x0D\xE8\x45\xD6\xD8\xD5" 9104 "\x2E\x51\x16\xCA\x09\x89\x54\x62" 9105 "\xF7\x04\x3D\x75\xB9\xA3\x84\xF4" 9106 "\x62\xF0\x02\x58\x83\xAF\x30\x87" 9107 "\x85\x3F\x01\xCD\x8E\x58\x42\xC4" 9108 "\x41\x73\xE0\x15\x0A\xE6\x2E\x80" 9109 "\x94\xF8\x5B\x3A\x4E\xDF\x51\xB2" 9110 "\x9D\xE4\xC4\x9D\xF7\x3F\xF8\x8E" 9111 "\x37\x22\x4D\x00\x2A\xEF\xC1\x0F" 9112 "\x14\xA0\x66\xAB\x79\x39\xD0\x8E" 9113 "\xE9\x95\x61\x74\x12\xED\x07\xD7" 9114 "\xDD\x95\xDC\x7B\x57\x25\x27\x9C" 9115 "\x51\x96\x16\xF7\x94\x61\xB8\x87" 9116 "\xF0\x21\x1B\x32\xFB\x07\x0F\x29" 9117 "\x56\xBD\x9D\x22\xA2\x9F\xA2\xB9" 9118 "\x46\x31\x4C\x5E\x2E\x95\x61\xEF" 9119 "\xE1\x58\x39\x09\xB4\x8B\x40\xAC" 9120 "\x5F\x62\xC7\x72\xD9\xFC\xCB\x9A", 9121 .len = 248, 9122 }, 9123 }; 9124 9125 static const struct cipher_testvec des_cbc_tv_template[] = { 9126 { /* From OpenSSL */ 9127 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 9128 .klen = 8, 9129 .iv = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 9130 .iv_out = "\x46\x8e\x91\x15\x78\x88\xba\x68", 9131 .ptext = "\x37\x36\x35\x34\x33\x32\x31\x20" 9132 "\x4e\x6f\x77\x20\x69\x73\x20\x74" 9133 "\x68\x65\x20\x74\x69\x6d\x65\x20", 9134 .ctext = "\xcc\xd1\x73\xff\xab\x20\x39\xf4" 9135 "\xac\xd8\xae\xfd\xdf\xd8\xa1\xeb" 9136 "\x46\x8e\x91\x15\x78\x88\xba\x68", 9137 .len = 24, 9138 }, { /* FIPS Pub 81 */ 9139 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 9140 .klen = 8, 9141 .iv = "\x12\x34\x56\x78\x90\xab\xcd\xef", 9142 .iv_out = "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c", 9143 .ptext = "\x4e\x6f\x77\x20\x69\x73\x20\x74", 9144 .ctext = "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c", 9145 .len = 8, 9146 }, { 9147 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 9148 .klen = 8, 9149 .iv = "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c", 9150 .iv_out = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f", 9151 .ptext = "\x68\x65\x20\x74\x69\x6d\x65\x20", 9152 .ctext = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f", 9153 .len = 8, 9154 }, { 9155 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 9156 .klen = 8, 9157 .iv = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f", 9158 .iv_out = "\x68\x37\x88\x49\x9a\x7c\x05\xf6", 9159 .ptext = "\x66\x6f\x72\x20\x61\x6c\x6c\x20", 9160 .ctext = "\x68\x37\x88\x49\x9a\x7c\x05\xf6", 9161 .len = 8, 9162 }, { /* Generated with Crypto++ */ 9163 .key = "\xC9\x83\xA6\xC9\xEC\x0F\x32\x55", 9164 .klen = 8, 9165 .iv = "\xE7\x82\x1D\xB8\x53\x11\xAC\x47", 9166 .iv_out = "\xC6\x4A\xF3\x55\xC7\x29\x2E\x63", 9167 .ptext = "\x50\xB9\x22\xAE\x17\x80\x0C\x75" 9168 "\xDE\x47\xD3\x3C\xA5\x0E\x9A\x03" 9169 "\x6C\xF8\x61\xCA\x33\xBF\x28\x91" 9170 "\x1D\x86\xEF\x58\xE4\x4D\xB6\x1F" 9171 "\xAB\x14\x7D\x09\x72\xDB\x44\xD0" 9172 "\x39\xA2\x0B\x97\x00\x69\xF5\x5E" 9173 "\xC7\x30\xBC\x25\x8E\x1A\x83\xEC" 9174 "\x55\xE1\x4A\xB3\x1C\xA8\x11\x7A" 9175 "\x06\x6F\xD8\x41\xCD\x36\x9F\x08" 9176 "\x94\xFD\x66\xF2\x5B\xC4\x2D\xB9" 9177 "\x22\x8B\x17\x80\xE9\x52\xDE\x47" 9178 "\xB0\x19\xA5\x0E\x77\x03\x6C\xD5" 9179 "\x3E\xCA\x33\x9C\x05\x91\xFA\x63" 9180 "\xEF\x58\xC1\x2A\xB6\x1F\x88\x14" 9181 "\x7D\xE6\x4F\xDB\x44\xAD\x16\xA2" 9182 "\x0B\x74\x00\x69\xD2\x3B\xC7\x30" 9183 "\x99\x02\x8E\xF7\x60\xEC\x55\xBE" 9184 "\x27\xB3\x1C\x85\x11\x7A\xE3\x4C" 9185 "\xD8\x41\xAA\x13\x9F\x08\x71\xFD" 9186 "\x66\xCF\x38\xC4\x2D\x96\x22\x8B" 9187 "\xF4\x5D\xE9\x52\xBB\x24\xB0\x19" 9188 "\x82\x0E\x77\xE0\x49\xD5\x3E\xA7" 9189 "\x10\x9C\x05\x6E\xFA\x63\xCC\x35" 9190 "\xC1\x2A\x93\x1F\x88\xF1\x5A\xE6" 9191 "\x4F\xB8\x21\xAD\x16\x7F\x0B\x74" 9192 "\xDD\x46\xD2\x3B\xA4\x0D\x99\x02" 9193 "\x6B\xF7\x60\xC9\x32\xBE\x27\x90" 9194 "\x1C\x85\xEE\x57\xE3\x4C\xB5\x1E" 9195 "\xAA\x13\x7C\x08\x71\xDA\x43\xCF" 9196 "\x38\xA1\x0A\x96\xFF\x68\xF4\x5D" 9197 "\xC6\x2F\xBB\x24\x8D\x19\x82\xEB", 9198 .ctext = "\x71\xCC\x56\x1C\x87\x2C\x43\x20" 9199 "\x1C\x20\x13\x09\xF9\x2B\x40\x47" 9200 "\x99\x10\xD1\x1B\x65\x33\x33\xBA" 9201 "\x88\x0D\xA2\xD1\x86\xFF\x4D\xF4" 9202 "\x5A\x0C\x12\x96\x32\x57\xAA\x26" 9203 "\xA7\xF4\x32\x8D\xBC\x10\x31\x9E" 9204 "\x81\x72\x74\xDE\x30\x19\x69\x49" 9205 "\x54\x9C\xC3\xEB\x0B\x97\xDD\xD1" 9206 "\xE8\x6D\x0D\x05\x83\xA5\x12\x08" 9207 "\x47\xF8\x88\x03\x86\x51\x3C\xEF" 9208 "\xE7\x11\x73\x4D\x44\x2B\xE2\x16" 9209 "\xE8\xA5\x06\x50\x66\x70\x0E\x14" 9210 "\xBA\x21\x3B\xD5\x23\x5B\xA7\x8F" 9211 "\x56\xB6\xA7\x44\xDB\x86\xAB\x69" 9212 "\x33\x3C\xBE\x64\xC4\x22\xD3\xFE" 9213 "\x49\x90\x88\x6A\x09\x8F\x76\x59" 9214 "\xCB\xB7\xA0\x2D\x79\x75\x92\x8A" 9215 "\x82\x1D\xC2\xFE\x09\x1F\x78\x6B" 9216 "\x2F\xD6\xA4\x87\x1E\xC4\x53\x63" 9217 "\x80\x02\x61\x2F\xE3\x46\xB6\xB5" 9218 "\xAA\x95\xF4\xEE\xA7\x64\x2B\x4F" 9219 "\x20\xCF\xD2\x47\x4E\x39\x65\xB3" 9220 "\x11\x87\xA2\x6C\x49\x7E\x36\xC7" 9221 "\x62\x8B\x48\x0D\x6A\x64\x00\xBD" 9222 "\x71\x91\x8C\xE9\x70\x19\x01\x4F" 9223 "\x4E\x68\x23\xBA\xDA\x24\x2E\x45" 9224 "\x02\x14\x33\x21\xAE\x58\x4B\xCF" 9225 "\x3B\x4B\xE8\xF8\xF6\x4F\x34\x93" 9226 "\xD7\x07\x8A\xD7\x18\x92\x36\x8C" 9227 "\x82\xA9\xBD\x6A\x31\x91\x39\x11" 9228 "\xC6\x4A\xF3\x55\xC7\x29\x2E\x63", 9229 .len = 248, 9230 }, 9231 }; 9232 9233 static const struct cipher_testvec des_ctr_tv_template[] = { 9234 { /* Generated with Crypto++ */ 9235 .key = "\xC9\x83\xA6\xC9\xEC\x0F\x32\x55", 9236 .klen = 8, 9237 .iv = "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFD", 9238 .iv_out = "\x00\x00\x00\x00\x00\x00\x00\x1C", 9239 .ptext = "\x50\xB9\x22\xAE\x17\x80\x0C\x75" 9240 "\xDE\x47\xD3\x3C\xA5\x0E\x9A\x03" 9241 "\x6C\xF8\x61\xCA\x33\xBF\x28\x91" 9242 "\x1D\x86\xEF\x58\xE4\x4D\xB6\x1F" 9243 "\xAB\x14\x7D\x09\x72\xDB\x44\xD0" 9244 "\x39\xA2\x0B\x97\x00\x69\xF5\x5E" 9245 "\xC7\x30\xBC\x25\x8E\x1A\x83\xEC" 9246 "\x55\xE1\x4A\xB3\x1C\xA8\x11\x7A" 9247 "\x06\x6F\xD8\x41\xCD\x36\x9F\x08" 9248 "\x94\xFD\x66\xF2\x5B\xC4\x2D\xB9" 9249 "\x22\x8B\x17\x80\xE9\x52\xDE\x47" 9250 "\xB0\x19\xA5\x0E\x77\x03\x6C\xD5" 9251 "\x3E\xCA\x33\x9C\x05\x91\xFA\x63" 9252 "\xEF\x58\xC1\x2A\xB6\x1F\x88\x14" 9253 "\x7D\xE6\x4F\xDB\x44\xAD\x16\xA2" 9254 "\x0B\x74\x00\x69\xD2\x3B\xC7\x30" 9255 "\x99\x02\x8E\xF7\x60\xEC\x55\xBE" 9256 "\x27\xB3\x1C\x85\x11\x7A\xE3\x4C" 9257 "\xD8\x41\xAA\x13\x9F\x08\x71\xFD" 9258 "\x66\xCF\x38\xC4\x2D\x96\x22\x8B" 9259 "\xF4\x5D\xE9\x52\xBB\x24\xB0\x19" 9260 "\x82\x0E\x77\xE0\x49\xD5\x3E\xA7" 9261 "\x10\x9C\x05\x6E\xFA\x63\xCC\x35" 9262 "\xC1\x2A\x93\x1F\x88\xF1\x5A\xE6" 9263 "\x4F\xB8\x21\xAD\x16\x7F\x0B\x74" 9264 "\xDD\x46\xD2\x3B\xA4\x0D\x99\x02" 9265 "\x6B\xF7\x60\xC9\x32\xBE\x27\x90" 9266 "\x1C\x85\xEE\x57\xE3\x4C\xB5\x1E" 9267 "\xAA\x13\x7C\x08\x71\xDA\x43\xCF" 9268 "\x38\xA1\x0A\x96\xFF\x68\xF4\x5D" 9269 "\xC6\x2F\xBB\x24\x8D\x19\x82\xEB", 9270 .ctext = "\x2F\x96\x06\x0F\x50\xC9\x68\x03" 9271 "\x0F\x31\xD4\x64\xA5\x29\x77\x35" 9272 "\xBC\x7A\x9F\x19\xE7\x0D\x33\x3E" 9273 "\x12\x0B\x8C\xAE\x48\xAE\xD9\x02" 9274 "\x0A\xD4\xB0\xD6\x37\xB2\x65\x1C" 9275 "\x4B\x65\xEB\x24\xB5\x8E\xAD\x47" 9276 "\x0D\xDA\x79\x77\xA0\x29\xA0\x2B" 9277 "\xC8\x0F\x85\xDC\x03\x13\xA9\x04" 9278 "\x19\x40\xBE\xBE\x5C\x49\x4A\x69" 9279 "\xED\xE8\xE1\x9E\x14\x43\x74\xDE" 9280 "\xEC\x6E\x11\x3F\x36\xEF\x7B\xFB" 9281 "\xBE\x4C\x91\x43\x22\x65\x72\x48" 9282 "\xE2\x12\xED\x88\xAC\xA7\xC9\x91" 9283 "\x14\xA2\x36\x1C\x29\xFF\xC8\x4F" 9284 "\x72\x5C\x4B\xB0\x1E\x93\xC2\xFA" 9285 "\x9D\x53\x86\xA0\xAE\xC6\xB7\x3C" 9286 "\x59\x0C\xD0\x8F\xA6\xD8\xA4\x31" 9287 "\xB7\x30\x1C\x21\x38\xFB\x68\x8C" 9288 "\x2E\xF5\x6E\x73\xC3\x16\x5F\x12" 9289 "\x0C\x33\xB9\x1E\x7B\x70\xDE\x86" 9290 "\x32\xB3\xC1\x16\xAB\xD9\x49\x0B" 9291 "\x96\x28\x72\x6B\xF3\x30\xA9\xEB" 9292 "\x69\xE2\x1E\x58\x46\xA2\x8E\xC7" 9293 "\xC0\xEF\x07\xB7\x77\x2C\x00\x05" 9294 "\x46\xBD\xFE\x53\x81\x8B\xA4\x03" 9295 "\x20\x0F\xDB\x78\x0B\x1F\x53\x04" 9296 "\x4C\x60\x4C\xC3\x2A\x86\x86\x7E" 9297 "\x13\xD2\x26\xED\x5D\x3E\x9C\xF2" 9298 "\x5C\xC4\x15\xC9\x9A\x21\xC5\xCD" 9299 "\x19\x7F\x99\x19\x53\xCE\x1D\x14" 9300 "\x69\x74\xA1\x06\x46\x0F\x4E\x75", 9301 .len = 248, 9302 }, { /* Generated with Crypto++ */ 9303 .key = "\xC9\x83\xA6\xC9\xEC\x0F\x32\x55", 9304 .klen = 8, 9305 .iv = "\xE7\x82\x1D\xB8\x53\x11\xAC\x47", 9306 .iv_out = "\xE7\x82\x1D\xB8\x53\x11\xAC\x66", 9307 .ptext = "\x50\xB9\x22\xAE\x17\x80\x0C\x75" 9308 "\xDE\x47\xD3\x3C\xA5\x0E\x9A\x03" 9309 "\x6C\xF8\x61\xCA\x33\xBF\x28\x91" 9310 "\x1D\x86\xEF\x58\xE4\x4D\xB6\x1F" 9311 "\xAB\x14\x7D\x09\x72\xDB\x44\xD0" 9312 "\x39\xA2\x0B\x97\x00\x69\xF5\x5E" 9313 "\xC7\x30\xBC\x25\x8E\x1A\x83\xEC" 9314 "\x55\xE1\x4A\xB3\x1C\xA8\x11\x7A" 9315 "\x06\x6F\xD8\x41\xCD\x36\x9F\x08" 9316 "\x94\xFD\x66\xF2\x5B\xC4\x2D\xB9" 9317 "\x22\x8B\x17\x80\xE9\x52\xDE\x47" 9318 "\xB0\x19\xA5\x0E\x77\x03\x6C\xD5" 9319 "\x3E\xCA\x33\x9C\x05\x91\xFA\x63" 9320 "\xEF\x58\xC1\x2A\xB6\x1F\x88\x14" 9321 "\x7D\xE6\x4F\xDB\x44\xAD\x16\xA2" 9322 "\x0B\x74\x00\x69\xD2\x3B\xC7\x30" 9323 "\x99\x02\x8E\xF7\x60\xEC\x55\xBE" 9324 "\x27\xB3\x1C\x85\x11\x7A\xE3\x4C" 9325 "\xD8\x41\xAA\x13\x9F\x08\x71\xFD" 9326 "\x66\xCF\x38\xC4\x2D\x96\x22\x8B" 9327 "\xF4\x5D\xE9\x52\xBB\x24\xB0\x19" 9328 "\x82\x0E\x77\xE0\x49\xD5\x3E\xA7" 9329 "\x10\x9C\x05\x6E\xFA\x63\xCC\x35" 9330 "\xC1\x2A\x93\x1F\x88\xF1\x5A\xE6" 9331 "\x4F\xB8\x21\xAD\x16\x7F\x0B\x74" 9332 "\xDD\x46\xD2\x3B\xA4\x0D\x99\x02" 9333 "\x6B\xF7\x60\xC9\x32\xBE\x27\x90" 9334 "\x1C\x85\xEE\x57\xE3\x4C\xB5\x1E" 9335 "\xAA\x13\x7C\x08\x71\xDA\x43\xCF" 9336 "\x38\xA1\x0A\x96\xFF\x68\xF4\x5D" 9337 "\xC6\x2F\xBB\x24\x8D\x19\x82", 9338 .ctext = "\x62\xE5\xF4\xDC\x99\xE7\x89\xE3" 9339 "\xF4\x10\xCC\x21\x99\xEB\xDC\x15" 9340 "\x19\x13\x93\x27\x9D\xB6\x6F\x45" 9341 "\x17\x55\x61\x72\xC8\xD3\x7F\xA5" 9342 "\x32\xD0\xD3\x02\x15\xA4\x05\x23" 9343 "\x9C\x23\x61\x60\x77\x7B\x6C\x95" 9344 "\x26\x49\x42\x2E\xF3\xC1\x8C\x6D" 9345 "\xC8\x47\xD5\x94\xE7\x53\xC8\x23" 9346 "\x1B\xA5\x0B\xCB\x12\xD3\x7A\x12" 9347 "\xA4\x42\x15\x34\xF7\x5F\xDC\x58" 9348 "\x5B\x58\x4C\xAD\xD1\x33\x8E\xE6" 9349 "\xE5\xA0\xDA\x4D\x94\x3D\x63\xA8" 9350 "\x02\x82\xBB\x16\xB8\xDC\xB5\x58" 9351 "\xC3\x2D\x79\xE4\x25\x79\x43\xF9" 9352 "\x6D\xD3\xCA\xC0\xE8\x12\xD4\x7E" 9353 "\x04\x25\x79\xFD\x27\xFB\xC4\xEA" 9354 "\x32\x94\x48\x92\xF3\x68\x1A\x7F" 9355 "\x36\x33\x43\x79\xF7\xCA\xC2\x38" 9356 "\xC0\x68\xD4\x53\xA9\xCC\x43\x0C" 9357 "\x40\x57\x3E\xED\x00\x9F\x22\x6E" 9358 "\x80\x99\x0B\xCC\x40\x63\x46\x8A" 9359 "\xE8\xC4\x9B\x6D\x7A\x08\x6E\xA9" 9360 "\x6F\x84\xBC\xB3\xF4\x95\x0B\x2D" 9361 "\x6A\xBA\x37\x50\xC3\xCF\x9F\x7C" 9362 "\x59\x5E\xDE\x0B\x30\xFA\x34\x8A" 9363 "\xF8\xD1\xA2\xF8\x4E\xBD\x5D\x5E" 9364 "\x7D\x71\x99\xE0\xF6\xE5\x7C\xE0" 9365 "\x6D\xEE\x82\x89\x92\xD4\xF5\xD7" 9366 "\xDF\x85\x2D\xE1\xB2\xD6\xAB\x94" 9367 "\xA5\xA6\xE7\xB0\x51\x36\x52\x37" 9368 "\x91\x45\x05\x3E\x58\xBF\x32", 9369 .len = 247, 9370 }, 9371 }; 9372 9373 static const struct cipher_testvec des3_ede_tv_template[] = { 9374 { /* These are from openssl */ 9375 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 9376 "\x55\x55\x55\x55\x55\x55\x55\x55" 9377 "\xfe\xdc\xba\x98\x76\x54\x32\x10", 9378 .klen = 24, 9379 .ptext = "\x73\x6f\x6d\x65\x64\x61\x74\x61", 9380 .ctext = "\x18\xd7\x48\xe5\x63\x62\x05\x72", 9381 .len = 8, 9382 }, { 9383 .key = "\x03\x52\x02\x07\x67\x20\x82\x17" 9384 "\x86\x02\x87\x66\x59\x08\x21\x98" 9385 "\x64\x05\x6a\xbd\xfe\xa9\x34\x57", 9386 .klen = 24, 9387 .ptext = "\x73\x71\x75\x69\x67\x67\x6c\x65", 9388 .ctext = "\xc0\x7d\x2a\x0f\xa5\x66\xfa\x30", 9389 .len = 8, 9390 }, { 9391 .key = "\x10\x46\x10\x34\x89\x98\x80\x20" 9392 "\x91\x07\xd0\x15\x89\x19\x01\x01" 9393 "\x19\x07\x92\x10\x98\x1a\x01\x01", 9394 .klen = 24, 9395 .ptext = "\x00\x00\x00\x00\x00\x00\x00\x00", 9396 .ctext = "\xe1\xef\x62\xc3\x32\xfe\x82\x5b", 9397 .len = 8, 9398 }, { /* Generated with Crypto++ */ 9399 .key = "\xF3\x9C\xD6\xF3\x9C\xB9\x5A\x67" 9400 "\x00\x5A\x67\x00\x2D\xCE\xEB\x2D" 9401 "\xCE\xEB\xB4\x51\x72\xB4\x51\x72", 9402 .klen = 24, 9403 .ptext = "\x05\xEC\x77\xFB\x42\xD5\x59\x20" 9404 "\x8B\x12\x86\x69\xF0\x5B\xCF\x56" 9405 "\x39\xAD\x34\x9F\x66\xEA\x7D\xC4" 9406 "\x48\xD3\xBA\x0D\xB1\x18\xE3\x4A" 9407 "\xFE\x41\x28\x5C\x27\x8E\x11\x85" 9408 "\x6C\xF7\x5E\xC2\x55\x3C\xA0\x0B" 9409 "\x92\x65\xE9\x70\xDB\x4F\xD6\xB9" 9410 "\x00\xB4\x1F\xE6\x49\xFD\x44\x2F" 9411 "\x53\x3A\x8D\x14\x98\x63\xCA\x5D" 9412 "\xC1\xA8\x33\xA7\x0E\x91\x78\xEC" 9413 "\x77\xDE\x42\xD5\xBC\x07\x8B\x12" 9414 "\xE5\x4C\xF0\x5B\x22\x56\x39\x80" 9415 "\x6B\x9F\x66\xC9\x50\xC4\xAF\x36" 9416 "\xBA\x0D\x94\x7F\xE3\x4A\xDD\x41" 9417 "\x28\xB3\x1A\x8E\x11\xF8\x43\xF7" 9418 "\x5E\x21\x55\x3C\x87\x6E\x92\x65" 9419 "\xCC\x57\xDB\xA2\x35\xB9\x00\xEB" 9420 "\x72\xE6\x49\xD0\x44\x2F\xB6\x19" 9421 "\x8D\x14\xFF\x46\xCA\x5D\x24\xA8" 9422 "\x33\x9A\x6D\x91\x78\xC3\x77\xDE" 9423 "\xA1\x08\xBC\x07\xEE\x71\xE5\x4C" 9424 "\xD7\x5B\x22\xB5\x1C\x80\x6B\xF2" 9425 "\x45\xC9\x50\x3B\xAF\x36\x99\x60" 9426 "\x94\x7F\xC6\x4A\xDD\xA4\x0F\xB3" 9427 "\x1A\xED\x74\xF8\x43\x2A\x5E\x21" 9428 "\x88\x13\x87\x6E\xF1\x58\xCC\x57" 9429 "\x3E\xA2\x35\x9C\x67\xEB\x72\xC5" 9430 "\x49\xD0\xBB\x02\xB6\x19\xE0\x4B" 9431 "\xFF\x46\x29\x5D\x24\x8F\x16\x9A" 9432 "\x6D\xF4\x5F\xC3\xAA\x3D\xA1\x08" 9433 "\x93\x7A\xEE\x71\xD8\x4C\xD7\xBE" 9434 "\x01\xB5\x1C\xE7\x4E\xF2\x45\x2C" 9435 "\x50\x3B\x82\x15\x99\x60\xCB\x52" 9436 "\xC6\xA9\x30\xA4\x0F\x96\x79\xED" 9437 "\x74\xDF\x43\x2A\xBD\x04\x88\x13" 9438 "\xFA\x4D\xF1\x58\x23\x57\x3E\x81" 9439 "\x68\x9C\x67\xCE\x51\xC5\xAC\x37" 9440 "\xBB\x02\x95\x7C\xE0\x4B\xD2\x46" 9441 "\x29\xB0\x1B\x8F\x16\xF9\x40\xF4" 9442 "\x5F\x26\xAA\x3D\x84\x6F\x93\x7A" 9443 "\xCD\x54\xD8\xA3\x0A\xBE\x01\xE8" 9444 "\x73\xE7\x4E\xD1\x45\x2C\xB7\x1E" 9445 "\x82\x15\xFC\x47\xCB\x52\x25\xA9" 9446 "\x30\x9B\x62\x96\x79\xC0\x74\xDF" 9447 "\xA6\x09\xBD\x04\xEF\x76\xFA\x4D" 9448 "\xD4\x58\x23\x8A\x1D\x81\x68\xF3" 9449 "\x5A\xCE\x51\x38\xAC\x37\x9E\x61" 9450 "\x95\x7C\xC7\x4B\xD2\xA5\x0C\xB0" 9451 "\x1B\xE2\x75\xF9\x40\x2B\x5F\x26" 9452 "\x89\x10\x84\x6F\xF6\x59\xCD\x54" 9453 "\x3F\xA3\x0A\x9D\x64\xE8\x73\xDA" 9454 "\x4E\xD1\xB8\x03\xB7\x1E\xE1\x48" 9455 "\xFC\x47\x2E\x52\x25\x8C\x17\x9B" 9456 "\x62\xF5\x5C\xC0\xAB\x32\xA6\x09" 9457 "\x90\x7B\xEF\x76\xD9\x4D\xD4\xBF" 9458 "\x06\x8A\x1D\xE4\x4F\xF3\x5A\x2D" 9459 "\x51\x38\x83\x6A\x9E\x61\xC8\x53" 9460 "\xC7\xAE\x31\xA5\x0C\x97\x7E\xE2" 9461 "\x75\xDC\x40\x2B\xB2\x05\x89\x10" 9462 "\xFB\x42\xF6\x59\x20\x54\x3F\x86" 9463 "\x69\x9D\x64\xCF\x56\xDA\xAD\x34" 9464 "\xB8\x03\xEA\x7D\xE1\x48\xD3\x47", 9465 .ctext = "\x4E\x9A\x40\x3D\x61\x7D\x17\xFA" 9466 "\x16\x86\x88\x0B\xD8\xAE\xF8\xE4" 9467 "\x81\x01\x04\x00\x76\xFA\xED\xD3" 9468 "\x44\x7E\x21\x9D\xF0\xFB\x2B\x64" 9469 "\xCA\x4E\x90\xE0\xC0\x63\x28\x92" 9470 "\xF3\x1F\xA4\x53\x2C\x77\xCC\x77" 9471 "\x69\x56\xD0\x19\xAD\x00\x2D\x97" 9472 "\xBC\xDE\x49\x6A\x82\xBC\x16\xE2" 9473 "\x2F\x3E\x72\xEE\xD1\xCE\xFC\x1B" 9474 "\xEA\x32\x56\xE4\x0B\xAF\x27\x36" 9475 "\xAF\x08\xB9\x61\xB7\x48\x23\x27" 9476 "\xEE\x4D\xC8\x79\x56\x06\xEB\xC7" 9477 "\x5B\xCA\x0A\xC6\x5E\x5C\xCB\xB6" 9478 "\x9D\xDA\x04\x59\xE2\x09\x48\x7E" 9479 "\x6B\x37\xC6\xFE\x92\xA9\x1E\x6E" 9480 "\x0D\x19\xFA\x33\x0F\xEE\x36\x68" 9481 "\x11\xBB\xF9\x5A\x73\xAB\x3A\xEA" 9482 "\xAC\x28\xD8\xD5\x27\xE8\x6B\x16" 9483 "\x45\x86\x50\x01\x70\x35\x99\x92" 9484 "\xDF\x0C\x07\x88\x8B\x7F\x9E\x4B" 9485 "\xD2\x04\x84\x90\xC4\x27\xDF\x0A" 9486 "\x49\xA8\xA7\x1A\x6D\x78\x16\xCA" 9487 "\xB3\x18\x5C\xC3\x93\x63\x5A\x68" 9488 "\x77\x02\xBA\xED\x62\x71\xB1\xD9" 9489 "\x5E\xE5\x6F\x1A\xCC\x1D\xBE\x2E" 9490 "\x11\xF3\xA6\x97\xCA\x8E\xBF\xB4" 9491 "\x56\xA1\x36\x6B\xB1\x0A\x3E\x70" 9492 "\xEA\xD7\xCD\x72\x7B\x79\xC8\xAD" 9493 "\x6B\xFE\xFB\xBA\x64\xAE\x19\xC1" 9494 "\x82\xCF\x8A\xA1\x50\x17\x7F\xB2" 9495 "\x6F\x7B\x0F\x52\xC5\x3E\x4A\x52" 9496 "\x3F\xD9\x3F\x01\xA6\x41\x1A\xB3" 9497 "\xB3\x7A\x0E\x8E\x75\xB2\xB1\x5F" 9498 "\xDB\xEA\x84\x13\x26\x6C\x85\x4E" 9499 "\xAE\x6B\xDC\xE7\xE7\xAD\xB0\x06" 9500 "\x5C\xBA\x92\xD0\x30\xBB\x8D\xD2" 9501 "\xAE\x4C\x70\x85\xA0\x07\xE3\x2C" 9502 "\xD1\x27\x9C\xCF\xDB\x13\xB7\xE5" 9503 "\xF9\x6A\x02\xD0\x39\x9D\xB6\xE7" 9504 "\xD1\x17\x25\x08\xF9\xA9\xA6\x67" 9505 "\x38\x80\xD1\x22\xAB\x1A\xD7\x26" 9506 "\xAD\xCA\x19\x1B\xFA\x18\xA7\x57" 9507 "\x31\xEC\xC9\xED\xDB\x79\xC0\x48" 9508 "\xAC\x31\x9F\x03\x8B\x62\x5B\x7E" 9509 "\x0E\xA6\xD0\x64\xEE\xEA\x00\xFC" 9510 "\x58\xC8\xDE\x51\x4E\x17\x15\x11" 9511 "\x66\x58\xB6\x90\xDC\xDF\xA1\x49" 9512 "\xCA\x79\xE9\x31\x31\x42\xDC\x56" 9513 "\x0B\xCD\xB6\x0D\xC7\x64\xF7\x19" 9514 "\xD9\x42\x05\x7F\xBC\x2F\xFC\x90" 9515 "\xAE\x29\x86\xAA\x43\x7A\x4F\x6B" 9516 "\xCE\xEA\xBC\x31\x8D\x65\x9D\x46" 9517 "\xEA\x77\xB4\xF9\x58\xEA\x5D\x84" 9518 "\xE4\xDC\x14\xBB\xBD\x15\x0E\xDA" 9519 "\xD8\xE4\xA4\x5D\x61\xF9\x58\x0F" 9520 "\xE4\x82\x77\xCE\x87\xC0\x09\xF0" 9521 "\xD6\x10\x9E\x34\xE1\x0C\x67\x55" 9522 "\x7B\x6D\xD5\x51\x4B\x00\xEE\xBA" 9523 "\xF2\x7B\xBE\x75\x07\x42\x9D\x99" 9524 "\x12\xE1\x71\x4A\xF9\x2A\xF5\xF6" 9525 "\x93\x03\xD7\x51\x09\xFA\xBE\x68" 9526 "\xD8\x45\xFF\x33\xBA\xBB\x2B\x63", 9527 .len = 496, 9528 }, 9529 }; 9530 9531 static const struct cipher_testvec des3_ede_cbc_tv_template[] = { 9532 { /* Generated from openssl */ 9533 .key = "\xE9\xC0\xFF\x2E\x76\x0B\x64\x24" 9534 "\x44\x4D\x99\x5A\x12\xD6\x40\xC0" 9535 "\xEA\xC2\x84\xE8\x14\x95\xDB\xE8", 9536 .klen = 24, 9537 .iv = "\x7D\x33\x88\x93\x0F\x93\xB2\x42", 9538 .iv_out = "\x6b\xfa\xb1\x91\x13\xb0\xd9\x19", 9539 .ptext = "\x6f\x54\x20\x6f\x61\x4d\x79\x6e" 9540 "\x53\x20\x63\x65\x65\x72\x73\x74" 9541 "\x54\x20\x6f\x6f\x4d\x20\x6e\x61" 9542 "\x20\x79\x65\x53\x72\x63\x74\x65" 9543 "\x20\x73\x6f\x54\x20\x6f\x61\x4d" 9544 "\x79\x6e\x53\x20\x63\x65\x65\x72" 9545 "\x73\x74\x54\x20\x6f\x6f\x4d\x20" 9546 "\x6e\x61\x20\x79\x65\x53\x72\x63" 9547 "\x74\x65\x20\x73\x6f\x54\x20\x6f" 9548 "\x61\x4d\x79\x6e\x53\x20\x63\x65" 9549 "\x65\x72\x73\x74\x54\x20\x6f\x6f" 9550 "\x4d\x20\x6e\x61\x20\x79\x65\x53" 9551 "\x72\x63\x74\x65\x20\x73\x6f\x54" 9552 "\x20\x6f\x61\x4d\x79\x6e\x53\x20" 9553 "\x63\x65\x65\x72\x73\x74\x54\x20" 9554 "\x6f\x6f\x4d\x20\x6e\x61\x0a\x79", 9555 .ctext = "\x0e\x2d\xb6\x97\x3c\x56\x33\xf4" 9556 "\x67\x17\x21\xc7\x6e\x8a\xd5\x49" 9557 "\x74\xb3\x49\x05\xc5\x1c\xd0\xed" 9558 "\x12\x56\x5c\x53\x96\xb6\x00\x7d" 9559 "\x90\x48\xfc\xf5\x8d\x29\x39\xcc" 9560 "\x8a\xd5\x35\x18\x36\x23\x4e\xd7" 9561 "\x76\xd1\xda\x0c\x94\x67\xbb\x04" 9562 "\x8b\xf2\x03\x6c\xa8\xcf\xb6\xea" 9563 "\x22\x64\x47\xaa\x8f\x75\x13\xbf" 9564 "\x9f\xc2\xc3\xf0\xc9\x56\xc5\x7a" 9565 "\x71\x63\x2e\x89\x7b\x1e\x12\xca" 9566 "\xe2\x5f\xaf\xd8\xa4\xf8\xc9\x7a" 9567 "\xd6\xf9\x21\x31\x62\x44\x45\xa6" 9568 "\xd6\xbc\x5a\xd3\x2d\x54\x43\xcc" 9569 "\x9d\xde\xa5\x70\xe9\x42\x45\x8a" 9570 "\x6b\xfa\xb1\x91\x13\xb0\xd9\x19", 9571 .len = 128, 9572 }, { /* Generated with Crypto++ */ 9573 .key = "\x9C\xD6\xF3\x9C\xB9\x5A\x67\x00" 9574 "\x5A\x67\x00\x2D\xCE\xEB\x2D\xCE" 9575 "\xEB\xB4\x51\x72\xB4\x51\x72\x1F", 9576 .klen = 24, 9577 .iv = "\xB2\xD7\x48\xED\x06\x44\xF9\x12" 9578 "\xB7\x28\x4D\x83\x24\x59\xF2\x17", 9579 .iv_out = "\x95\x63\x73\xA2\x44\xAC\xF8\xA5", 9580 .ptext = "\x05\xEC\x77\xFB\x42\xD5\x59\x20" 9581 "\x8B\x12\x86\x69\xF0\x5B\xCF\x56" 9582 "\x39\xAD\x34\x9F\x66\xEA\x7D\xC4" 9583 "\x48\xD3\xBA\x0D\xB1\x18\xE3\x4A" 9584 "\xFE\x41\x28\x5C\x27\x8E\x11\x85" 9585 "\x6C\xF7\x5E\xC2\x55\x3C\xA0\x0B" 9586 "\x92\x65\xE9\x70\xDB\x4F\xD6\xB9" 9587 "\x00\xB4\x1F\xE6\x49\xFD\x44\x2F" 9588 "\x53\x3A\x8D\x14\x98\x63\xCA\x5D" 9589 "\xC1\xA8\x33\xA7\x0E\x91\x78\xEC" 9590 "\x77\xDE\x42\xD5\xBC\x07\x8B\x12" 9591 "\xE5\x4C\xF0\x5B\x22\x56\x39\x80" 9592 "\x6B\x9F\x66\xC9\x50\xC4\xAF\x36" 9593 "\xBA\x0D\x94\x7F\xE3\x4A\xDD\x41" 9594 "\x28\xB3\x1A\x8E\x11\xF8\x43\xF7" 9595 "\x5E\x21\x55\x3C\x87\x6E\x92\x65" 9596 "\xCC\x57\xDB\xA2\x35\xB9\x00\xEB" 9597 "\x72\xE6\x49\xD0\x44\x2F\xB6\x19" 9598 "\x8D\x14\xFF\x46\xCA\x5D\x24\xA8" 9599 "\x33\x9A\x6D\x91\x78\xC3\x77\xDE" 9600 "\xA1\x08\xBC\x07\xEE\x71\xE5\x4C" 9601 "\xD7\x5B\x22\xB5\x1C\x80\x6B\xF2" 9602 "\x45\xC9\x50\x3B\xAF\x36\x99\x60" 9603 "\x94\x7F\xC6\x4A\xDD\xA4\x0F\xB3" 9604 "\x1A\xED\x74\xF8\x43\x2A\x5E\x21" 9605 "\x88\x13\x87\x6E\xF1\x58\xCC\x57" 9606 "\x3E\xA2\x35\x9C\x67\xEB\x72\xC5" 9607 "\x49\xD0\xBB\x02\xB6\x19\xE0\x4B" 9608 "\xFF\x46\x29\x5D\x24\x8F\x16\x9A" 9609 "\x6D\xF4\x5F\xC3\xAA\x3D\xA1\x08" 9610 "\x93\x7A\xEE\x71\xD8\x4C\xD7\xBE" 9611 "\x01\xB5\x1C\xE7\x4E\xF2\x45\x2C" 9612 "\x50\x3B\x82\x15\x99\x60\xCB\x52" 9613 "\xC6\xA9\x30\xA4\x0F\x96\x79\xED" 9614 "\x74\xDF\x43\x2A\xBD\x04\x88\x13" 9615 "\xFA\x4D\xF1\x58\x23\x57\x3E\x81" 9616 "\x68\x9C\x67\xCE\x51\xC5\xAC\x37" 9617 "\xBB\x02\x95\x7C\xE0\x4B\xD2\x46" 9618 "\x29\xB0\x1B\x8F\x16\xF9\x40\xF4" 9619 "\x5F\x26\xAA\x3D\x84\x6F\x93\x7A" 9620 "\xCD\x54\xD8\xA3\x0A\xBE\x01\xE8" 9621 "\x73\xE7\x4E\xD1\x45\x2C\xB7\x1E" 9622 "\x82\x15\xFC\x47\xCB\x52\x25\xA9" 9623 "\x30\x9B\x62\x96\x79\xC0\x74\xDF" 9624 "\xA6\x09\xBD\x04\xEF\x76\xFA\x4D" 9625 "\xD4\x58\x23\x8A\x1D\x81\x68\xF3" 9626 "\x5A\xCE\x51\x38\xAC\x37\x9E\x61" 9627 "\x95\x7C\xC7\x4B\xD2\xA5\x0C\xB0" 9628 "\x1B\xE2\x75\xF9\x40\x2B\x5F\x26" 9629 "\x89\x10\x84\x6F\xF6\x59\xCD\x54" 9630 "\x3F\xA3\x0A\x9D\x64\xE8\x73\xDA" 9631 "\x4E\xD1\xB8\x03\xB7\x1E\xE1\x48" 9632 "\xFC\x47\x2E\x52\x25\x8C\x17\x9B" 9633 "\x62\xF5\x5C\xC0\xAB\x32\xA6\x09" 9634 "\x90\x7B\xEF\x76\xD9\x4D\xD4\xBF" 9635 "\x06\x8A\x1D\xE4\x4F\xF3\x5A\x2D" 9636 "\x51\x38\x83\x6A\x9E\x61\xC8\x53" 9637 "\xC7\xAE\x31\xA5\x0C\x97\x7E\xE2" 9638 "\x75\xDC\x40\x2B\xB2\x05\x89\x10" 9639 "\xFB\x42\xF6\x59\x20\x54\x3F\x86" 9640 "\x69\x9D\x64\xCF\x56\xDA\xAD\x34" 9641 "\xB8\x03\xEA\x7D\xE1\x48\xD3\x47", 9642 .ctext = "\xF8\xF6\xB5\x60\x5C\x5A\x75\x84" 9643 "\x87\x81\x53\xBA\xC9\x6F\xEC\xD5" 9644 "\x1E\x68\x8E\x85\x12\x86\x1D\x38" 9645 "\x1C\x91\x40\xCC\x69\x6A\xD5\x35" 9646 "\x0D\x7C\xB5\x07\x7C\x7B\x2A\xAF" 9647 "\x32\xBC\xA1\xB3\x84\x31\x1B\x3C" 9648 "\x0A\x2B\xFA\xD3\x9F\xB0\x8C\x37" 9649 "\x8F\x9D\xA7\x6D\x6C\xFA\xD7\x90" 9650 "\xE3\x69\x54\xED\x3A\xC4\xF1\x6B" 9651 "\xB1\xCC\xFB\x7D\xD8\x8E\x17\x0B" 9652 "\x9C\xF6\x4C\xD6\xFF\x03\x4E\xD9" 9653 "\xE6\xA5\xAD\x25\xE6\x17\x69\x63" 9654 "\x11\x35\x61\x94\x88\x7B\x1C\x48" 9655 "\xF1\x24\x20\x29\x6B\x93\x1A\x8E" 9656 "\x43\x03\x89\xD8\xB1\xDA\x47\x7B" 9657 "\x79\x3A\x83\x76\xDA\xAE\xC6\xBB" 9658 "\x22\xF8\xE8\x3D\x9A\x65\x54\xD8" 9659 "\x4C\xE9\xE7\xE4\x63\x2F\x5C\x73" 9660 "\x5A\xC3\xAE\x46\xA8\xCD\x57\xE6" 9661 "\x67\x88\xA5\x20\x6F\x5F\x97\xC7" 9662 "\xCC\x15\xA2\x0A\x93\xEA\x33\xE7" 9663 "\x03\x5F\xEC\x64\x30\x6F\xEE\xD7" 9664 "\x7E\xDF\xD6\xE9\x6F\x3F\xD6\x1E" 9665 "\xBE\x67\x6C\x5B\x97\xA0\x09\xE6" 9666 "\xEE\xFE\x55\xA3\x29\x65\xE0\x12" 9667 "\xA1\x6A\x8A\x6F\xF2\xE6\xF1\x96" 9668 "\x87\xFB\x9C\x05\xDD\x80\xEC\xFF" 9669 "\xC5\xED\x50\xFE\xFC\x91\xCD\xCE" 9670 "\x25\x2C\x5F\xD9\xAD\x95\x7D\x99" 9671 "\xF0\x05\xC4\x71\x46\x5F\xF9\x0D" 9672 "\xD2\x63\xDF\x9B\x96\x2E\x2B\xA6" 9673 "\x2B\x1C\xD5\xFB\x96\x24\x60\x60" 9674 "\x54\x40\xB8\x62\xA4\xF8\x46\x95" 9675 "\x73\x28\xA3\xA6\x16\x2B\x17\xE7" 9676 "\x7A\xF8\x62\x54\x3B\x64\x69\xE1" 9677 "\x71\x34\x29\x5B\x4E\x05\x9B\xFA" 9678 "\x5E\xF1\x96\xB7\xCE\x16\x9B\x59" 9679 "\xF1\x1A\x4C\x51\x26\xFD\x79\xE2" 9680 "\x3B\x8E\x71\x69\x6A\x91\xB6\x65" 9681 "\x32\x09\xB8\xE4\x09\x1F\xEA\x39" 9682 "\xCE\x20\x65\x9F\xD6\xD1\xC7\xF0" 9683 "\x73\x50\x08\x56\x20\x9B\x94\x23" 9684 "\x14\x39\xB7\x2B\xB1\x2D\x6D\x6F" 9685 "\x41\x5B\xCC\xE2\x18\xAE\x62\x89" 9686 "\x78\x8E\x67\x23\xD0\xFB\x2B\xE5" 9687 "\x25\xC9\x48\x97\xB5\xD3\x17\xD5" 9688 "\x6A\x9F\xA7\x48\x0C\x2B\x73\x3B" 9689 "\x57\x08\xAE\x91\xF2\xB7\x57\x89" 9690 "\xF4\xD0\xB0\x07\xB0\x42\x6C\xAF" 9691 "\x98\x1A\xE7\xD1\xAC\x1E\xB5\x02" 9692 "\xD4\x56\x42\x79\x79\x7F\x2A\x77" 9693 "\x25\xE9\x7D\xC1\x88\x19\x2B\x49" 9694 "\x6F\x46\x59\xAB\x56\x1F\x61\xE0" 9695 "\x0C\x24\x9C\xC9\x5B\x63\xA9\x12" 9696 "\xCF\x88\x96\xB6\xA8\x24\xC6\xA8" 9697 "\x21\x85\x1A\x62\x7E\x34\xBB\xEB" 9698 "\xBD\x02\x2A\xC7\xD8\x89\x80\xC5" 9699 "\xB1\xBB\x60\xA5\x22\xFC\x6F\x38" 9700 "\x02\x80\xA3\x28\x22\x75\xE1\xE9" 9701 "\x90\xE9\xFA\x4B\x00\x10\xAC\x58" 9702 "\x83\x70\xFF\x86\xE6\xAA\x0F\x1F" 9703 "\x95\x63\x73\xA2\x44\xAC\xF8\xA5", 9704 .len = 496, 9705 }, 9706 }; 9707 9708 static const struct cipher_testvec des3_ede_ctr_tv_template[] = { 9709 { /* Generated with Crypto++ */ 9710 .key = "\x9C\xD6\xF3\x9C\xB9\x5A\x67\x00" 9711 "\x5A\x67\x00\x2D\xCE\xEB\x2D\xCE" 9712 "\xEB\xB4\x51\x72\xB4\x51\x72\x1F", 9713 .klen = 24, 9714 .iv = "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF", 9715 .iv_out = "\x00\x00\x00\x00\x00\x00\x00\x3D", 9716 .ptext = "\x05\xEC\x77\xFB\x42\xD5\x59\x20" 9717 "\x8B\x12\x86\x69\xF0\x5B\xCF\x56" 9718 "\x39\xAD\x34\x9F\x66\xEA\x7D\xC4" 9719 "\x48\xD3\xBA\x0D\xB1\x18\xE3\x4A" 9720 "\xFE\x41\x28\x5C\x27\x8E\x11\x85" 9721 "\x6C\xF7\x5E\xC2\x55\x3C\xA0\x0B" 9722 "\x92\x65\xE9\x70\xDB\x4F\xD6\xB9" 9723 "\x00\xB4\x1F\xE6\x49\xFD\x44\x2F" 9724 "\x53\x3A\x8D\x14\x98\x63\xCA\x5D" 9725 "\xC1\xA8\x33\xA7\x0E\x91\x78\xEC" 9726 "\x77\xDE\x42\xD5\xBC\x07\x8B\x12" 9727 "\xE5\x4C\xF0\x5B\x22\x56\x39\x80" 9728 "\x6B\x9F\x66\xC9\x50\xC4\xAF\x36" 9729 "\xBA\x0D\x94\x7F\xE3\x4A\xDD\x41" 9730 "\x28\xB3\x1A\x8E\x11\xF8\x43\xF7" 9731 "\x5E\x21\x55\x3C\x87\x6E\x92\x65" 9732 "\xCC\x57\xDB\xA2\x35\xB9\x00\xEB" 9733 "\x72\xE6\x49\xD0\x44\x2F\xB6\x19" 9734 "\x8D\x14\xFF\x46\xCA\x5D\x24\xA8" 9735 "\x33\x9A\x6D\x91\x78\xC3\x77\xDE" 9736 "\xA1\x08\xBC\x07\xEE\x71\xE5\x4C" 9737 "\xD7\x5B\x22\xB5\x1C\x80\x6B\xF2" 9738 "\x45\xC9\x50\x3B\xAF\x36\x99\x60" 9739 "\x94\x7F\xC6\x4A\xDD\xA4\x0F\xB3" 9740 "\x1A\xED\x74\xF8\x43\x2A\x5E\x21" 9741 "\x88\x13\x87\x6E\xF1\x58\xCC\x57" 9742 "\x3E\xA2\x35\x9C\x67\xEB\x72\xC5" 9743 "\x49\xD0\xBB\x02\xB6\x19\xE0\x4B" 9744 "\xFF\x46\x29\x5D\x24\x8F\x16\x9A" 9745 "\x6D\xF4\x5F\xC3\xAA\x3D\xA1\x08" 9746 "\x93\x7A\xEE\x71\xD8\x4C\xD7\xBE" 9747 "\x01\xB5\x1C\xE7\x4E\xF2\x45\x2C" 9748 "\x50\x3B\x82\x15\x99\x60\xCB\x52" 9749 "\xC6\xA9\x30\xA4\x0F\x96\x79\xED" 9750 "\x74\xDF\x43\x2A\xBD\x04\x88\x13" 9751 "\xFA\x4D\xF1\x58\x23\x57\x3E\x81" 9752 "\x68\x9C\x67\xCE\x51\xC5\xAC\x37" 9753 "\xBB\x02\x95\x7C\xE0\x4B\xD2\x46" 9754 "\x29\xB0\x1B\x8F\x16\xF9\x40\xF4" 9755 "\x5F\x26\xAA\x3D\x84\x6F\x93\x7A" 9756 "\xCD\x54\xD8\xA3\x0A\xBE\x01\xE8" 9757 "\x73\xE7\x4E\xD1\x45\x2C\xB7\x1E" 9758 "\x82\x15\xFC\x47\xCB\x52\x25\xA9" 9759 "\x30\x9B\x62\x96\x79\xC0\x74\xDF" 9760 "\xA6\x09\xBD\x04\xEF\x76\xFA\x4D" 9761 "\xD4\x58\x23\x8A\x1D\x81\x68\xF3" 9762 "\x5A\xCE\x51\x38\xAC\x37\x9E\x61" 9763 "\x95\x7C\xC7\x4B\xD2\xA5\x0C\xB0" 9764 "\x1B\xE2\x75\xF9\x40\x2B\x5F\x26" 9765 "\x89\x10\x84\x6F\xF6\x59\xCD\x54" 9766 "\x3F\xA3\x0A\x9D\x64\xE8\x73\xDA" 9767 "\x4E\xD1\xB8\x03\xB7\x1E\xE1\x48" 9768 "\xFC\x47\x2E\x52\x25\x8C\x17\x9B" 9769 "\x62\xF5\x5C\xC0\xAB\x32\xA6\x09" 9770 "\x90\x7B\xEF\x76\xD9\x4D\xD4\xBF" 9771 "\x06\x8A\x1D\xE4\x4F\xF3\x5A\x2D" 9772 "\x51\x38\x83\x6A\x9E\x61\xC8\x53" 9773 "\xC7\xAE\x31\xA5\x0C\x97\x7E\xE2" 9774 "\x75\xDC\x40\x2B\xB2\x05\x89\x10" 9775 "\xFB\x42\xF6\x59\x20\x54\x3F\x86" 9776 "\x69\x9D\x64\xCF\x56\xDA\xAD\x34" 9777 "\xB8\x03\xEA\x7D\xE1\x48\xD3\x47", 9778 .ctext = "\x07\xC2\x08\x20\x72\x1F\x49\xEF" 9779 "\x19\xCD\x6F\x32\x53\x05\x22\x15" 9780 "\xA2\x85\x2B\xDB\x85\xD2\xD8\xB9" 9781 "\xDD\x0D\x1B\x45\xCB\x69\x11\xD4" 9782 "\xEA\xBE\xB2\x45\x5D\x0C\xAE\xBE" 9783 "\xA0\xC1\x27\xAC\x65\x9F\x53\x7E" 9784 "\xAF\xC2\x1B\xB5\xB8\x6D\x36\x0C" 9785 "\x25\xC0\xF8\x6D\x0B\x29\x01\xDA" 9786 "\x13\x78\xDC\x89\x12\x12\x43\xFA" 9787 "\xF6\x12\xEF\x8D\x87\x62\x78\x83" 9788 "\xE2\xBE\x41\x20\x4C\x6D\x35\x1B" 9789 "\xD1\x0C\x30\xCF\xE2\xDE\x2B\x03" 9790 "\xBF\x45\x73\xD4\xE5\x59\x95\xD1" 9791 "\xB3\x9B\x27\x62\x97\xBD\xDE\x7F" 9792 "\xA4\xD2\x39\x80\xAA\x50\x23\xF0" 9793 "\x74\x88\x3D\xA8\x6A\x18\x79\x3B" 9794 "\xC4\x96\x6C\x8D\x22\x40\x92\x6E" 9795 "\xD6\xAD\x2A\x1F\xDE\x63\xC0\xE7" 9796 "\x07\xF7\x2D\xF7\xB5\xF3\xF0\xCC" 9797 "\x01\x7C\x2A\x9B\xC2\x10\xCA\xAA" 9798 "\xFD\x2B\x3F\xC5\xF3\xF6\xFC\x9B" 9799 "\x45\xDB\x53\xE4\x5B\xF3\xC9\x7B" 9800 "\x8E\x52\xFF\xC8\x02\xB8\xAC\x9D" 9801 "\xA1\x00\x39\xDA\x3D\x2D\x0E\x01" 9802 "\x09\x7D\x8D\x5E\xBE\x53\xB9\xB0" 9803 "\x8E\xE7\xE2\x96\x6A\xB2\x78\xEA" 9804 "\xDE\x23\x8B\xA5\xFA\x5C\xE3\xDA" 9805 "\xBF\x8E\x31\x6A\x55\xD1\x6A\xB2" 9806 "\xB5\x46\x6F\xA5\xF0\xEE\xBA\x1F" 9807 "\x9F\x98\xB0\x66\x4F\xD0\x3F\xA9" 9808 "\xDF\x5F\x58\xC4\xF4\xFF\x75\x5C" 9809 "\x40\x3A\x09\x7E\x6E\x1C\x97\xD4" 9810 "\xCC\xE7\xE7\x71\xCF\x0B\x15\x08" 9811 "\x71\xFA\x07\x97\xCD\xE6\xCA\x1D" 9812 "\x14\x28\x0C\xCF\x99\x13\x7A\xF1" 9813 "\xEB\xFA\xFA\x92\x07\xDE\x1D\xA1" 9814 "\xD3\x36\x69\xFE\x51\x4D\x9F\x2E" 9815 "\x83\x37\x4F\x1F\x48\x30\xED\x04" 9816 "\x4D\xA4\xEF\x3A\xCA\x76\xF4\x1C" 9817 "\x41\x8F\x63\x37\x78\x2F\x86\xA6" 9818 "\xEF\x41\x7E\xD2\xAF\x88\xAB\x67" 9819 "\x52\x71\xC3\x8E\xF8\x26\x93\x72" 9820 "\xAA\xD6\x0E\xE7\x0B\x46\xB1\x3A" 9821 "\xB4\x08\xA9\xA8\xA0\xCF\x20\x0C" 9822 "\x52\xBC\x8B\x05\x56\xB2\xBC\x31" 9823 "\x9B\x74\xB9\x29\x29\x96\x9A\x50" 9824 "\xDC\x45\xDC\x1A\xEB\x0C\x64\xD4" 9825 "\xD3\x05\x7E\x59\x55\xC3\xF4\x90" 9826 "\xC2\xAB\xF8\x9B\x8A\xDA\xCE\xA1" 9827 "\xC3\xF4\xAD\x77\xDD\x44\xC8\xAC" 9828 "\xA3\xF1\xC9\xD2\x19\x5C\xB0\xCA" 9829 "\xA2\x34\xC1\xF7\x6C\xFD\xAC\x65" 9830 "\x32\xDC\x48\xC4\xF2\x00\x6B\x77" 9831 "\xF1\x7D\x76\xAC\xC0\x31\x63\x2A" 9832 "\xA5\x3A\x62\xC8\x91\xB1\x03\x65" 9833 "\xCB\x43\xD1\x06\xDF\xC3\x67\xBC" 9834 "\xDC\xE0\xCD\x35\xCE\x49\x65\xA0" 9835 "\x52\x7B\xA7\x0D\x07\xA9\x1B\xB0" 9836 "\x40\x77\x72\xC2\xEA\x0E\x3A\x78" 9837 "\x46\xB9\x91\xB6\xE7\x3D\x51\x42" 9838 "\xFD\x51\xB0\xC6\x2C\x63\x13\x78" 9839 "\x5C\xEE\xFC\xCF\xC4\x70\x00\x34", 9840 .len = 496, 9841 }, { /* Generated with Crypto++ */ 9842 .key = "\x9C\xD6\xF3\x9C\xB9\x5A\x67\x00" 9843 "\x5A\x67\x00\x2D\xCE\xEB\x2D\xCE" 9844 "\xEB\xB4\x51\x72\xB4\x51\x72\x1F", 9845 .klen = 24, 9846 .iv = "\xB2\xD7\x48\xED\x06\x44\xF9\x12", 9847 .iv_out = "\xB2\xD7\x48\xED\x06\x44\xF9\x51", 9848 .ptext = "\x05\xEC\x77\xFB\x42\xD5\x59\x20" 9849 "\x8B\x12\x86\x69\xF0\x5B\xCF\x56" 9850 "\x39\xAD\x34\x9F\x66\xEA\x7D\xC4" 9851 "\x48\xD3\xBA\x0D\xB1\x18\xE3\x4A" 9852 "\xFE\x41\x28\x5C\x27\x8E\x11\x85" 9853 "\x6C\xF7\x5E\xC2\x55\x3C\xA0\x0B" 9854 "\x92\x65\xE9\x70\xDB\x4F\xD6\xB9" 9855 "\x00\xB4\x1F\xE6\x49\xFD\x44\x2F" 9856 "\x53\x3A\x8D\x14\x98\x63\xCA\x5D" 9857 "\xC1\xA8\x33\xA7\x0E\x91\x78\xEC" 9858 "\x77\xDE\x42\xD5\xBC\x07\x8B\x12" 9859 "\xE5\x4C\xF0\x5B\x22\x56\x39\x80" 9860 "\x6B\x9F\x66\xC9\x50\xC4\xAF\x36" 9861 "\xBA\x0D\x94\x7F\xE3\x4A\xDD\x41" 9862 "\x28\xB3\x1A\x8E\x11\xF8\x43\xF7" 9863 "\x5E\x21\x55\x3C\x87\x6E\x92\x65" 9864 "\xCC\x57\xDB\xA2\x35\xB9\x00\xEB" 9865 "\x72\xE6\x49\xD0\x44\x2F\xB6\x19" 9866 "\x8D\x14\xFF\x46\xCA\x5D\x24\xA8" 9867 "\x33\x9A\x6D\x91\x78\xC3\x77\xDE" 9868 "\xA1\x08\xBC\x07\xEE\x71\xE5\x4C" 9869 "\xD7\x5B\x22\xB5\x1C\x80\x6B\xF2" 9870 "\x45\xC9\x50\x3B\xAF\x36\x99\x60" 9871 "\x94\x7F\xC6\x4A\xDD\xA4\x0F\xB3" 9872 "\x1A\xED\x74\xF8\x43\x2A\x5E\x21" 9873 "\x88\x13\x87\x6E\xF1\x58\xCC\x57" 9874 "\x3E\xA2\x35\x9C\x67\xEB\x72\xC5" 9875 "\x49\xD0\xBB\x02\xB6\x19\xE0\x4B" 9876 "\xFF\x46\x29\x5D\x24\x8F\x16\x9A" 9877 "\x6D\xF4\x5F\xC3\xAA\x3D\xA1\x08" 9878 "\x93\x7A\xEE\x71\xD8\x4C\xD7\xBE" 9879 "\x01\xB5\x1C\xE7\x4E\xF2\x45\x2C" 9880 "\x50\x3B\x82\x15\x99\x60\xCB\x52" 9881 "\xC6\xA9\x30\xA4\x0F\x96\x79\xED" 9882 "\x74\xDF\x43\x2A\xBD\x04\x88\x13" 9883 "\xFA\x4D\xF1\x58\x23\x57\x3E\x81" 9884 "\x68\x9C\x67\xCE\x51\xC5\xAC\x37" 9885 "\xBB\x02\x95\x7C\xE0\x4B\xD2\x46" 9886 "\x29\xB0\x1B\x8F\x16\xF9\x40\xF4" 9887 "\x5F\x26\xAA\x3D\x84\x6F\x93\x7A" 9888 "\xCD\x54\xD8\xA3\x0A\xBE\x01\xE8" 9889 "\x73\xE7\x4E\xD1\x45\x2C\xB7\x1E" 9890 "\x82\x15\xFC\x47\xCB\x52\x25\xA9" 9891 "\x30\x9B\x62\x96\x79\xC0\x74\xDF" 9892 "\xA6\x09\xBD\x04\xEF\x76\xFA\x4D" 9893 "\xD4\x58\x23\x8A\x1D\x81\x68\xF3" 9894 "\x5A\xCE\x51\x38\xAC\x37\x9E\x61" 9895 "\x95\x7C\xC7\x4B\xD2\xA5\x0C\xB0" 9896 "\x1B\xE2\x75\xF9\x40\x2B\x5F\x26" 9897 "\x89\x10\x84\x6F\xF6\x59\xCD\x54" 9898 "\x3F\xA3\x0A\x9D\x64\xE8\x73\xDA" 9899 "\x4E\xD1\xB8\x03\xB7\x1E\xE1\x48" 9900 "\xFC\x47\x2E\x52\x25\x8C\x17\x9B" 9901 "\x62\xF5\x5C\xC0\xAB\x32\xA6\x09" 9902 "\x90\x7B\xEF\x76\xD9\x4D\xD4\xBF" 9903 "\x06\x8A\x1D\xE4\x4F\xF3\x5A\x2D" 9904 "\x51\x38\x83\x6A\x9E\x61\xC8\x53" 9905 "\xC7\xAE\x31\xA5\x0C\x97\x7E\xE2" 9906 "\x75\xDC\x40\x2B\xB2\x05\x89\x10" 9907 "\xFB\x42\xF6\x59\x20\x54\x3F\x86" 9908 "\x69\x9D\x64\xCF\x56\xDA\xAD\x34" 9909 "\xB8\x03\xEA\x7D\xE1\x48\xD3\x47" 9910 "\x2E\xB1\x18", 9911 .ctext = "\x23\xFF\x5C\x99\x75\xBB\x1F\xD4" 9912 "\xBC\x27\x9D\x36\x60\xA9\xC9\xF7" 9913 "\x94\x9D\x1B\xFF\x8E\x95\x57\x89" 9914 "\x8C\x2E\x33\x70\x43\x61\xE6\xD2" 9915 "\x82\x33\x63\xB6\xC4\x34\x5E\xF8" 9916 "\x96\x07\xA7\xD2\x3B\x8E\xC9\xAA" 9917 "\x7C\xA0\x55\x89\x2E\xE1\x85\x25" 9918 "\x14\x04\xDA\x6B\xE0\xEE\x56\xCF" 9919 "\x08\x2E\x69\xD4\x54\xDE\x22\x84" 9920 "\x69\xA6\xA7\xD3\x3A\x9A\xE8\x05" 9921 "\x63\xDB\xBF\x46\x3A\x26\x2E\x0F" 9922 "\x58\x5C\x46\xEA\x07\x40\xDA\xE1" 9923 "\x14\x1D\xCD\x4F\x06\xC0\xCA\x54" 9924 "\x1E\xC9\x45\x85\x67\x7C\xC2\xB5" 9925 "\x97\x5D\x61\x78\x2E\x46\xEC\x6A" 9926 "\x53\xF4\xD0\xAE\xFA\xB4\x86\x29" 9927 "\x9F\x17\x33\x24\xD8\xB9\xB2\x05" 9928 "\x93\x88\xEA\xF7\xA0\x70\x69\x49" 9929 "\x88\x6B\x73\x40\x41\x8D\xD9\xD9" 9930 "\x7E\x78\xE9\xBE\x6C\x14\x22\x7A" 9931 "\x66\xE1\xDA\xED\x10\xFF\x69\x1D" 9932 "\xB9\xAA\xF2\x56\x72\x1B\x23\xE2" 9933 "\x45\x54\x8B\xA3\x70\x23\xB4\x5E" 9934 "\x8E\x96\xC9\x05\x00\xB3\xB6\xC2" 9935 "\x2A\x02\x43\x7A\x62\xD5\xC8\xD2" 9936 "\xC2\xD0\xE4\x78\xA1\x7B\x3E\xE8" 9937 "\x9F\x7F\x7D\x40\x54\x30\x3B\xC0" 9938 "\xA5\x54\xFD\xCA\x25\xEC\x44\x3E" 9939 "\x1A\x54\x7F\x88\xD0\xE1\xFE\x71" 9940 "\xCE\x05\x49\x89\xBA\xD6\x72\xE7" 9941 "\xD6\x5D\x3F\xA2\xD9\xAB\xC5\x02" 9942 "\xD6\x43\x22\xAF\xA2\xE4\x80\x85" 9943 "\xD7\x87\xB9\xEA\x43\xDB\xC8\xEF" 9944 "\x5C\x82\x2E\x98\x0D\x30\x41\x6B" 9945 "\x08\x48\x8D\xF0\xF8\x60\xD7\x9D" 9946 "\xE9\xDE\x40\xAD\x0D\xAD\x0D\x58" 9947 "\x2A\x98\x35\xFE\xF7\xDD\x4B\x40" 9948 "\xDE\xB0\x05\xD9\x7B\x09\x4D\xBC" 9949 "\x42\xC0\xF1\x15\x0B\xFA\x26\x6B" 9950 "\xC6\x12\x13\x4F\xCB\x35\xBA\x35" 9951 "\xDD\x7A\x36\x9C\x12\x57\x55\x83" 9952 "\x78\x58\x09\xD0\xB0\xCF\x7C\x5C" 9953 "\x38\xCF\xBD\x79\x5B\x13\x4D\x97" 9954 "\xC1\x85\x6F\x97\xC9\xE8\xC2\xA4" 9955 "\x98\xE2\xBD\x77\x6B\x53\x39\x1A" 9956 "\x28\x10\xE7\xE0\xE7\xDE\x9D\x69" 9957 "\x78\x6F\x8E\xD2\xD9\x5D\xD2\x15" 9958 "\x9E\xB5\x4D\x8C\xC0\x78\x22\x2F" 9959 "\x17\x11\x2E\x99\xD7\xE3\xA4\x4F" 9960 "\x65\xA5\x6B\x03\x2C\x35\x6F\xDA" 9961 "\x8A\x19\x08\xE1\x08\x48\x59\x51" 9962 "\x53\x4B\xD1\xDF\xDA\x14\x50\x5F" 9963 "\xDF\xB5\x8C\xDF\xC6\xFD\x85\xFA" 9964 "\xD4\xF9\x64\x45\x65\x0D\x7D\xF4" 9965 "\xC8\xCD\x3F\x32\xAF\xDD\x30\xED" 9966 "\x7B\xAA\xAC\xF0\xDA\x7F\xDF\x75" 9967 "\x1C\xA4\xF1\xCB\x5E\x4F\x0B\xB4" 9968 "\x97\x73\x28\xDE\xCF\xAF\x82\xBD" 9969 "\xC4\xBA\xB4\x9C\x0D\x16\x77\x42" 9970 "\x42\x39\x7C\x53\xA4\xD4\xDD\x40" 9971 "\x5C\x60\x1F\x6E\xA7\xE2\xDC\xE7" 9972 "\x32\x0F\x05\x2F\xF2\x4C\x95\x3B" 9973 "\xF2\x79\xD9", 9974 .len = 499, 9975 }, 9976 }; 9977 9978 /* 9979 * Blowfish test vectors. 9980 */ 9981 static const struct cipher_testvec bf_tv_template[] = { 9982 { /* DES test vectors from OpenSSL */ 9983 .key = "\x00\x00\x00\x00\x00\x00\x00\x00", 9984 .klen = 8, 9985 .ptext = "\x00\x00\x00\x00\x00\x00\x00\x00", 9986 .ctext = "\x4e\xf9\x97\x45\x61\x98\xdd\x78", 9987 .len = 8, 9988 }, { 9989 .key = "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e", 9990 .klen = 8, 9991 .ptext = "\x01\x23\x45\x67\x89\xab\xcd\xef", 9992 .ctext = "\xa7\x90\x79\x51\x08\xea\x3c\xae", 9993 .len = 8, 9994 }, { 9995 .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87", 9996 .klen = 8, 9997 .ptext = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 9998 .ctext = "\xe8\x7a\x24\x4e\x2c\xc8\x5e\x82", 9999 .len = 8, 10000 }, { /* Vary the keylength... */ 10001 .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87" 10002 "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f", 10003 .klen = 16, 10004 .ptext = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 10005 .ctext = "\x93\x14\x28\x87\xee\x3b\xe1\x5c", 10006 .len = 8, 10007 }, { 10008 .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87" 10009 "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f" 10010 "\x00\x11\x22\x33\x44", 10011 .klen = 21, 10012 .ptext = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 10013 .ctext = "\xe6\xf5\x1e\xd7\x9b\x9d\xb2\x1f", 10014 .len = 8, 10015 }, { /* Generated with bf488 */ 10016 .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87" 10017 "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f" 10018 "\x00\x11\x22\x33\x44\x55\x66\x77" 10019 "\x04\x68\x91\x04\xc2\xfd\x3b\x2f" 10020 "\x58\x40\x23\x64\x1a\xba\x61\x76" 10021 "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e" 10022 "\xff\xff\xff\xff\xff\xff\xff\xff", 10023 .klen = 56, 10024 .ptext = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 10025 .ctext = "\xc0\x45\x04\x01\x2e\x4e\x1f\x53", 10026 .len = 8, 10027 }, { /* Generated with Crypto++ */ 10028 .key = "\x85\x62\x3F\x1C\xF9\xD6\x1C\xF9" 10029 "\xD6\xB3\x90\x6D\x4A\x90\x6D\x4A" 10030 "\x27\x04\xE1\x27\x04\xE1\xBE\x9B" 10031 "\x78\xBE\x9B\x78\x55\x32\x0F\x55", 10032 .klen = 32, 10033 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 10034 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 10035 "\x3A\xD1\x45\xDC\x73\x0A\x7E\x15" 10036 "\xAC\x20\xB7\x4E\xE5\x59\xF0\x87" 10037 "\x1E\x92\x29\xC0\x34\xCB\x62\xF9" 10038 "\x6D\x04\x9B\x0F\xA6\x3D\xD4\x48" 10039 "\xDF\x76\x0D\x81\x18\xAF\x23\xBA" 10040 "\x51\xE8\x5C\xF3\x8A\x21\x95\x2C" 10041 "\xC3\x37\xCE\x65\xFC\x70\x07\x9E" 10042 "\x12\xA9\x40\xD7\x4B\xE2\x79\x10" 10043 "\x84\x1B\xB2\x26\xBD\x54\xEB\x5F" 10044 "\xF6\x8D\x01\x98\x2F\xC6\x3A\xD1" 10045 "\x68\xFF\x73\x0A\xA1\x15\xAC\x43" 10046 "\xDA\x4E\xE5\x7C\x13\x87\x1E\xB5" 10047 "\x29\xC0\x57\xEE\x62\xF9\x90\x04" 10048 "\x9B\x32\xC9\x3D\xD4\x6B\x02\x76" 10049 "\x0D\xA4\x18\xAF\x46\xDD\x51\xE8" 10050 "\x7F\x16\x8A\x21\xB8\x2C\xC3\x5A" 10051 "\xF1\x65\xFC\x93\x07\x9E\x35\xCC" 10052 "\x40\xD7\x6E\x05\x79\x10\xA7\x1B" 10053 "\xB2\x49\xE0\x54\xEB\x82\x19\x8D" 10054 "\x24\xBB\x2F\xC6\x5D\xF4\x68\xFF" 10055 "\x96\x0A\xA1\x38\xCF\x43\xDA\x71" 10056 "\x08\x7C\x13\xAA\x1E\xB5\x4C\xE3" 10057 "\x57\xEE\x85\x1C\x90\x27\xBE\x32" 10058 "\xC9\x60\xF7\x6B\x02\x99\x0D\xA4" 10059 "\x3B\xD2\x46\xDD\x74\x0B\x7F\x16" 10060 "\xAD\x21\xB8\x4F\xE6\x5A\xF1\x88" 10061 "\x1F\x93\x2A\xC1\x35\xCC\x63\xFA" 10062 "\x6E\x05\x9C\x10\xA7\x3E\xD5\x49" 10063 "\xE0\x77\x0E\x82\x19\xB0\x24\xBB" 10064 "\x52\xE9\x5D\xF4\x8B\x22\x96\x2D" 10065 "\xC4\x38\xCF\x66\xFD\x71\x08\x9F" 10066 "\x13\xAA\x41\xD8\x4C\xE3\x7A\x11" 10067 "\x85\x1C\xB3\x27\xBE\x55\xEC\x60" 10068 "\xF7\x8E\x02\x99\x30\xC7\x3B\xD2" 10069 "\x69\x00\x74\x0B\xA2\x16\xAD\x44" 10070 "\xDB\x4F\xE6\x7D\x14\x88\x1F\xB6" 10071 "\x2A\xC1\x58\xEF\x63\xFA\x91\x05" 10072 "\x9C\x33\xCA\x3E\xD5\x6C\x03\x77" 10073 "\x0E\xA5\x19\xB0\x47\xDE\x52\xE9" 10074 "\x80\x17\x8B\x22\xB9\x2D\xC4\x5B" 10075 "\xF2\x66\xFD\x94\x08\x9F\x36\xCD" 10076 "\x41\xD8\x6F\x06\x7A\x11\xA8\x1C" 10077 "\xB3\x4A\xE1\x55\xEC\x83\x1A\x8E" 10078 "\x25\xBC\x30\xC7\x5E\xF5\x69\x00" 10079 "\x97\x0B\xA2\x39\xD0\x44\xDB\x72" 10080 "\x09\x7D\x14\xAB\x1F\xB6\x4D\xE4" 10081 "\x58\xEF\x86\x1D\x91\x28\xBF\x33" 10082 "\xCA\x61\xF8\x6C\x03\x9A\x0E\xA5" 10083 "\x3C\xD3\x47\xDE\x75\x0C\x80\x17" 10084 "\xAE\x22\xB9\x50\xE7\x5B\xF2\x89" 10085 "\x20\x94\x2B\xC2\x36\xCD\x64\xFB" 10086 "\x6F\x06\x9D\x11\xA8\x3F\xD6\x4A" 10087 "\xE1\x78\x0F\x83\x1A\xB1\x25\xBC" 10088 "\x53\xEA\x5E\xF5\x8C\x00\x97\x2E" 10089 "\xC5\x39\xD0\x67\xFE\x72\x09\xA0" 10090 "\x14\xAB\x42\xD9\x4D\xE4\x7B\x12" 10091 "\x86\x1D\xB4\x28\xBF\x56\xED\x61" 10092 "\xF8\x8F\x03\x9A\x31\xC8\x3C\xD3" 10093 "\x6A\x01\x75\x0C\xA3\x17\xAE\x45" 10094 "\xDC\x50\xE7\x7E\x15\x89\x20\xB7" 10095 "\x2B\xC2\x59\xF0\x64\xFB\x92\x06", 10096 .ctext = "\x96\x87\x3D\x0C\x7B\xFB\xBD\x1F" 10097 "\xE3\xC1\x99\x6D\x39\xD4\xC2\x7D" 10098 "\xD7\x87\xA1\xF2\xDF\x51\x71\x26" 10099 "\xC2\xF4\x6D\xFF\xF6\xCD\x6B\x40" 10100 "\xE1\xB3\xBF\xD4\x38\x2B\xC8\x3B" 10101 "\xD3\xB2\xD4\x61\xC7\x9F\x06\xE9" 10102 "\xCD\xF3\x88\x39\x39\x7A\xDF\x19" 10103 "\xE8\x03\x2A\x0B\x9E\xA0\x2B\x86" 10104 "\x31\xF8\x9D\xB1\xEE\x78\x9D\xB5" 10105 "\xCD\x8B\x7C\x2E\xF5\xA2\x2D\x5D" 10106 "\x6E\x66\xAF\x38\x6C\xD3\x13\xED" 10107 "\x14\xEA\x5D\xD0\x17\x77\x0F\x4A" 10108 "\x50\xF2\xD0\x0F\xC8\xF7\x1E\x7B" 10109 "\x9D\x5B\x54\x65\x4F\x16\x8A\x97" 10110 "\xF3\xF6\xD4\xAA\x87\x36\x77\x72" 10111 "\x99\x4A\xB5\x5E\x88\xC3\xCD\x7D" 10112 "\x1D\x97\xF9\x11\xBD\xE0\x1F\x1F" 10113 "\x96\x3E\x4B\x22\xF4\xC0\xE6\xB8" 10114 "\x47\x82\x98\x23\x33\x36\xBC\x1B" 10115 "\x36\xE7\xF6\xCF\x97\x37\x16\xC0" 10116 "\x87\x31\x8B\xB0\xDB\x19\x42\xA5" 10117 "\x1F\x90\x7E\x66\x34\xDD\x5E\xE9" 10118 "\x4F\xB2\x2B\x9A\xDE\xB3\x5D\x71" 10119 "\x4D\x68\xF0\xDC\xA6\xEA\xE3\x9B" 10120 "\x60\x00\x55\x57\x06\x8B\xD5\xB3" 10121 "\x86\x30\x78\xDA\x33\x9A\x9D\xCC" 10122 "\xBA\x0B\x81\x06\x77\x43\xC7\xC9" 10123 "\xDB\x37\x60\x11\x45\x59\x6D\x2D" 10124 "\x90\x3D\x65\x3E\xD0\x13\xC6\x3C" 10125 "\x0E\x78\x7D\x9A\x00\xD6\x2F\x0B" 10126 "\x3B\x53\x19\x1E\xA8\x9B\x11\xD9" 10127 "\x98\xE4\x7F\xC3\x6E\x51\x24\x70" 10128 "\x9F\x04\x9C\xC2\x9E\x44\x84\xE3" 10129 "\xE0\x8A\x44\xA2\x5C\x94\x74\x34" 10130 "\x37\x52\x7C\x03\xE8\x8E\x97\xE1" 10131 "\x5B\x5C\x0E\xB0\x70\xFE\x54\x3F" 10132 "\xD8\x65\xA9\xC5\xCD\xEC\xF4\x45" 10133 "\x55\xC5\xA7\xA3\x19\x80\x28\x51" 10134 "\xBE\x64\x4A\xC1\xD4\xE1\xBE\xEB" 10135 "\x73\x4C\xB6\xF9\x5F\x6D\x82\xBC" 10136 "\x3E\x42\x14\x49\x88\x51\xBF\x68" 10137 "\x45\x75\x27\x1B\x0A\x72\xED\xAF" 10138 "\xDA\xC4\x4D\x67\x0D\xEE\x75\xE3" 10139 "\x34\xDD\x91\x19\x42\x3A\xCB\xDA" 10140 "\x38\xFA\x3C\x93\x62\xF2\xE3\x81" 10141 "\xB3\xE4\xBB\xF6\x0D\x0B\x1D\x09" 10142 "\x9C\x52\x0D\x50\x63\xA4\xB2\xD2" 10143 "\x82\xA0\x23\x3F\x1F\xB6\xED\x6E" 10144 "\xC2\x9C\x1C\xD0\x9A\x40\xB6\xFC" 10145 "\x36\x56\x6E\x85\x73\xD7\x52\xBA" 10146 "\x35\x5E\x32\x89\x5D\x42\xF5\x36" 10147 "\x52\x8D\x46\x7D\xC8\x71\xAD\x33" 10148 "\xE1\xAF\x6A\xA8\xEC\xBA\x1C\xDC" 10149 "\xFE\x88\xE6\x16\xE4\xC8\x13\x00" 10150 "\x3C\xDA\x59\x32\x38\x19\xD5\xEB" 10151 "\xB6\x7F\x78\x45\x1B\x8E\x07\x8C" 10152 "\x66\x52\x75\xFF\xAF\xCE\x2D\x2B" 10153 "\x22\x29\xCA\xB3\x5F\x7F\xE3\x29" 10154 "\xB2\xB8\x9D\xEB\x16\xC8\xC5\x1D" 10155 "\xC9\x0D\x59\x82\x27\x57\x9D\x42" 10156 "\x54\x59\x09\xA5\x3D\xC5\x84\x68" 10157 "\x56\xEB\x36\x77\x3D\xAA\xB8\xF5" 10158 "\xC9\x1A\xFB\x5D\xDE\xBB\x43\xF4", 10159 .len = 504, 10160 }, 10161 }; 10162 10163 static const struct cipher_testvec bf_cbc_tv_template[] = { 10164 { /* From OpenSSL */ 10165 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 10166 "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87", 10167 .klen = 16, 10168 .iv = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 10169 .iv_out = "\x59\xf1\x65\x2b\xd5\xff\x92\xcc", 10170 .ptext = "\x37\x36\x35\x34\x33\x32\x31\x20" 10171 "\x4e\x6f\x77\x20\x69\x73\x20\x74" 10172 "\x68\x65\x20\x74\x69\x6d\x65\x20" 10173 "\x66\x6f\x72\x20\x00\x00\x00\x00", 10174 .ctext = "\x6b\x77\xb4\xd6\x30\x06\xde\xe6" 10175 "\x05\xb1\x56\xe2\x74\x03\x97\x93" 10176 "\x58\xde\xb9\xe7\x15\x46\x16\xd9" 10177 "\x59\xf1\x65\x2b\xd5\xff\x92\xcc", 10178 .len = 32, 10179 }, { /* Generated with Crypto++ */ 10180 .key = "\x85\x62\x3F\x1C\xF9\xD6\x1C\xF9" 10181 "\xD6\xB3\x90\x6D\x4A\x90\x6D\x4A" 10182 "\x27\x04\xE1\x27\x04\xE1\xBE\x9B" 10183 "\x78\xBE\x9B\x78\x55\x32\x0F\x55", 10184 .klen = 32, 10185 .iv = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F", 10186 .iv_out = "\xB4\x98\xD8\x6B\x74\xE7\x65\xF4", 10187 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 10188 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 10189 "\x3A\xD1\x45\xDC\x73\x0A\x7E\x15" 10190 "\xAC\x20\xB7\x4E\xE5\x59\xF0\x87" 10191 "\x1E\x92\x29\xC0\x34\xCB\x62\xF9" 10192 "\x6D\x04\x9B\x0F\xA6\x3D\xD4\x48" 10193 "\xDF\x76\x0D\x81\x18\xAF\x23\xBA" 10194 "\x51\xE8\x5C\xF3\x8A\x21\x95\x2C" 10195 "\xC3\x37\xCE\x65\xFC\x70\x07\x9E" 10196 "\x12\xA9\x40\xD7\x4B\xE2\x79\x10" 10197 "\x84\x1B\xB2\x26\xBD\x54\xEB\x5F" 10198 "\xF6\x8D\x01\x98\x2F\xC6\x3A\xD1" 10199 "\x68\xFF\x73\x0A\xA1\x15\xAC\x43" 10200 "\xDA\x4E\xE5\x7C\x13\x87\x1E\xB5" 10201 "\x29\xC0\x57\xEE\x62\xF9\x90\x04" 10202 "\x9B\x32\xC9\x3D\xD4\x6B\x02\x76" 10203 "\x0D\xA4\x18\xAF\x46\xDD\x51\xE8" 10204 "\x7F\x16\x8A\x21\xB8\x2C\xC3\x5A" 10205 "\xF1\x65\xFC\x93\x07\x9E\x35\xCC" 10206 "\x40\xD7\x6E\x05\x79\x10\xA7\x1B" 10207 "\xB2\x49\xE0\x54\xEB\x82\x19\x8D" 10208 "\x24\xBB\x2F\xC6\x5D\xF4\x68\xFF" 10209 "\x96\x0A\xA1\x38\xCF\x43\xDA\x71" 10210 "\x08\x7C\x13\xAA\x1E\xB5\x4C\xE3" 10211 "\x57\xEE\x85\x1C\x90\x27\xBE\x32" 10212 "\xC9\x60\xF7\x6B\x02\x99\x0D\xA4" 10213 "\x3B\xD2\x46\xDD\x74\x0B\x7F\x16" 10214 "\xAD\x21\xB8\x4F\xE6\x5A\xF1\x88" 10215 "\x1F\x93\x2A\xC1\x35\xCC\x63\xFA" 10216 "\x6E\x05\x9C\x10\xA7\x3E\xD5\x49" 10217 "\xE0\x77\x0E\x82\x19\xB0\x24\xBB" 10218 "\x52\xE9\x5D\xF4\x8B\x22\x96\x2D" 10219 "\xC4\x38\xCF\x66\xFD\x71\x08\x9F" 10220 "\x13\xAA\x41\xD8\x4C\xE3\x7A\x11" 10221 "\x85\x1C\xB3\x27\xBE\x55\xEC\x60" 10222 "\xF7\x8E\x02\x99\x30\xC7\x3B\xD2" 10223 "\x69\x00\x74\x0B\xA2\x16\xAD\x44" 10224 "\xDB\x4F\xE6\x7D\x14\x88\x1F\xB6" 10225 "\x2A\xC1\x58\xEF\x63\xFA\x91\x05" 10226 "\x9C\x33\xCA\x3E\xD5\x6C\x03\x77" 10227 "\x0E\xA5\x19\xB0\x47\xDE\x52\xE9" 10228 "\x80\x17\x8B\x22\xB9\x2D\xC4\x5B" 10229 "\xF2\x66\xFD\x94\x08\x9F\x36\xCD" 10230 "\x41\xD8\x6F\x06\x7A\x11\xA8\x1C" 10231 "\xB3\x4A\xE1\x55\xEC\x83\x1A\x8E" 10232 "\x25\xBC\x30\xC7\x5E\xF5\x69\x00" 10233 "\x97\x0B\xA2\x39\xD0\x44\xDB\x72" 10234 "\x09\x7D\x14\xAB\x1F\xB6\x4D\xE4" 10235 "\x58\xEF\x86\x1D\x91\x28\xBF\x33" 10236 "\xCA\x61\xF8\x6C\x03\x9A\x0E\xA5" 10237 "\x3C\xD3\x47\xDE\x75\x0C\x80\x17" 10238 "\xAE\x22\xB9\x50\xE7\x5B\xF2\x89" 10239 "\x20\x94\x2B\xC2\x36\xCD\x64\xFB" 10240 "\x6F\x06\x9D\x11\xA8\x3F\xD6\x4A" 10241 "\xE1\x78\x0F\x83\x1A\xB1\x25\xBC" 10242 "\x53\xEA\x5E\xF5\x8C\x00\x97\x2E" 10243 "\xC5\x39\xD0\x67\xFE\x72\x09\xA0" 10244 "\x14\xAB\x42\xD9\x4D\xE4\x7B\x12" 10245 "\x86\x1D\xB4\x28\xBF\x56\xED\x61" 10246 "\xF8\x8F\x03\x9A\x31\xC8\x3C\xD3" 10247 "\x6A\x01\x75\x0C\xA3\x17\xAE\x45" 10248 "\xDC\x50\xE7\x7E\x15\x89\x20\xB7" 10249 "\x2B\xC2\x59\xF0\x64\xFB\x92\x06", 10250 .ctext = "\xB4\xFE\xA5\xBB\x3D\x2C\x27\x06" 10251 "\x06\x2B\x3A\x92\xB2\xF5\x5E\x62" 10252 "\x84\xCD\xF7\x66\x7E\x41\x6C\x8E" 10253 "\x1B\xD9\x02\xB6\x48\xB0\x87\x25" 10254 "\x01\x9C\x93\x63\x51\x60\x82\xD2" 10255 "\x4D\xE5\xC2\xB7\xAE\x60\xD8\xAD" 10256 "\x9F\xAB\x6C\xFA\x20\x05\xDA\x6F" 10257 "\x1F\xD1\xD8\x36\x0F\xB5\x16\x69" 10258 "\x3C\xAF\xB3\x30\x18\x33\xE6\xB5" 10259 "\x43\x29\x9D\x94\xF4\x2F\x0A\x65" 10260 "\x40\xB2\xB2\xB2\x42\x89\xEE\x8A" 10261 "\x60\xD3\x52\xA8\xED\x91\xDF\xE1" 10262 "\x91\x73\x7C\x28\xA1\x14\xC3\x4C" 10263 "\x82\x72\x4B\x7D\x7D\x32\xD5\x19" 10264 "\xE8\xB8\x6B\x30\x21\x09\x0E\x27" 10265 "\x10\x9D\x2D\x3A\x6A\x4B\x7B\xE6" 10266 "\x8D\x4E\x02\x32\xFF\x7F\x8E\x13" 10267 "\xB0\x96\xF4\xC2\xA1\x60\x8A\x69" 10268 "\xEF\x0F\x86\xD0\x25\x13\x1A\x7C" 10269 "\x6E\xF0\x41\xA3\xFB\xB3\xAB\x40" 10270 "\x7D\x19\xA0\x11\x4F\x3E\x1D\x43" 10271 "\x65\xFE\x15\x40\xD0\x62\x41\x02" 10272 "\xEA\x0C\x7A\xC3\x84\xEE\xB0\xBE" 10273 "\xBE\xC8\x57\x51\xCD\x4F\xAD\x5C" 10274 "\xCC\x79\xBA\x0D\x85\x3A\xED\x6B" 10275 "\xAC\x6B\xA3\x4D\xBC\xE8\x02\x6A" 10276 "\xC2\x6D\xBD\x5E\x89\x95\x86\x43" 10277 "\x2C\x17\x4B\xC6\x40\xA2\xBD\x24" 10278 "\x04\xF0\x86\x08\x78\x18\x42\xE0" 10279 "\x39\x1B\x22\x9E\x89\x4C\x04\x6B" 10280 "\x65\xC5\xB6\x0E\xF6\x63\xFC\xD7" 10281 "\xAE\x9E\x87\x13\xCC\xD3\x1A\xEC" 10282 "\xF0\x51\xCC\x93\x68\xFC\xE9\x19" 10283 "\x7C\x4E\x9B\xCC\x17\xAD\xD2\xFC" 10284 "\x97\x18\x92\xFF\x15\x11\xCE\xED" 10285 "\x04\x41\x05\xA3\x92\xFF\x3B\xE6" 10286 "\xB6\x8C\x90\xC6\xCD\x15\xA0\x04" 10287 "\x25\x8B\x5D\x5B\x5F\xDB\xAE\x68" 10288 "\xEF\xB3\x61\x18\xDB\x83\x9B\x39" 10289 "\xCA\x82\xD1\x88\xF0\xA2\x5C\x02" 10290 "\x87\xBD\x8D\x8F\xBB\x62\xF0\x35" 10291 "\x75\x6F\x06\x81\x0A\x97\x4D\xF0" 10292 "\x43\x12\x73\x77\xDB\x91\x83\x5B" 10293 "\xE7\x3A\xA6\x07\x7B\xBF\x2C\x50" 10294 "\x94\xDE\x7B\x65\xDA\x1C\xF1\x9F" 10295 "\x7E\x12\x40\xB2\x3E\x19\x23\xF1" 10296 "\x7C\x1B\x5F\xA8\xF3\xAC\x63\x87" 10297 "\xEB\x3E\x0C\xBE\xA3\x63\x97\x88" 10298 "\x8D\x27\xC6\x2A\xF8\xF2\x67\x9A" 10299 "\x0D\x14\x16\x2B\x6F\xCB\xD4\x76" 10300 "\x14\x48\x2E\xDE\x2A\x44\x5E\x45" 10301 "\xF1\x97\x82\xEF\xB7\xAE\xED\x3A" 10302 "\xED\x73\xD3\x79\xF7\x38\x1D\xD0" 10303 "\xC5\xF8\x69\x83\x28\x84\x87\x56" 10304 "\x3F\xAE\x81\x04\x79\x1F\xD1\x09" 10305 "\xC5\xE5\x05\x0D\x64\x16\xCE\x42" 10306 "\xC5\xF8\xDB\x57\x89\x33\x22\xFC" 10307 "\xB4\xD7\x94\xB9\xF3\xCC\x02\x90" 10308 "\x02\xBA\x55\x1E\x24\x3E\x02\x1D" 10309 "\xC6\xCD\x8F\xD9\xBD\xED\xB0\x51" 10310 "\xCD\xE9\xD5\x0C\xFE\x12\x39\xA9" 10311 "\x93\x9B\xEE\xB5\x97\x41\xD2\xA0" 10312 "\xB4\x98\xD8\x6B\x74\xE7\x65\xF4", 10313 .len = 504, 10314 }, 10315 }; 10316 10317 static const struct cipher_testvec bf_ctr_tv_template[] = { 10318 { /* Generated with Crypto++ */ 10319 .key = "\x85\x62\x3F\x1C\xF9\xD6\x1C\xF9" 10320 "\xD6\xB3\x90\x6D\x4A\x90\x6D\x4A" 10321 "\x27\x04\xE1\x27\x04\xE1\xBE\x9B" 10322 "\x78\xBE\x9B\x78\x55\x32\x0F\x55", 10323 .klen = 32, 10324 .iv = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F", 10325 .iv_out = "\xE2\x24\x89\xEE\x53\xB8\x1D\x9E", 10326 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 10327 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 10328 "\x3A\xD1\x45\xDC\x73\x0A\x7E\x15" 10329 "\xAC\x20\xB7\x4E\xE5\x59\xF0\x87" 10330 "\x1E\x92\x29\xC0\x34\xCB\x62\xF9" 10331 "\x6D\x04\x9B\x0F\xA6\x3D\xD4\x48" 10332 "\xDF\x76\x0D\x81\x18\xAF\x23\xBA" 10333 "\x51\xE8\x5C\xF3\x8A\x21\x95\x2C" 10334 "\xC3\x37\xCE\x65\xFC\x70\x07\x9E" 10335 "\x12\xA9\x40\xD7\x4B\xE2\x79\x10" 10336 "\x84\x1B\xB2\x26\xBD\x54\xEB\x5F" 10337 "\xF6\x8D\x01\x98\x2F\xC6\x3A\xD1" 10338 "\x68\xFF\x73\x0A\xA1\x15\xAC\x43" 10339 "\xDA\x4E\xE5\x7C\x13\x87\x1E\xB5" 10340 "\x29\xC0\x57\xEE\x62\xF9\x90\x04" 10341 "\x9B\x32\xC9\x3D\xD4\x6B\x02\x76" 10342 "\x0D\xA4\x18\xAF\x46\xDD\x51\xE8" 10343 "\x7F\x16\x8A\x21\xB8\x2C\xC3\x5A" 10344 "\xF1\x65\xFC\x93\x07\x9E\x35\xCC" 10345 "\x40\xD7\x6E\x05\x79\x10\xA7\x1B" 10346 "\xB2\x49\xE0\x54\xEB\x82\x19\x8D" 10347 "\x24\xBB\x2F\xC6\x5D\xF4\x68\xFF" 10348 "\x96\x0A\xA1\x38\xCF\x43\xDA\x71" 10349 "\x08\x7C\x13\xAA\x1E\xB5\x4C\xE3" 10350 "\x57\xEE\x85\x1C\x90\x27\xBE\x32" 10351 "\xC9\x60\xF7\x6B\x02\x99\x0D\xA4" 10352 "\x3B\xD2\x46\xDD\x74\x0B\x7F\x16" 10353 "\xAD\x21\xB8\x4F\xE6\x5A\xF1\x88" 10354 "\x1F\x93\x2A\xC1\x35\xCC\x63\xFA" 10355 "\x6E\x05\x9C\x10\xA7\x3E\xD5\x49" 10356 "\xE0\x77\x0E\x82\x19\xB0\x24\xBB" 10357 "\x52\xE9\x5D\xF4\x8B\x22\x96\x2D" 10358 "\xC4\x38\xCF\x66\xFD\x71\x08\x9F" 10359 "\x13\xAA\x41\xD8\x4C\xE3\x7A\x11" 10360 "\x85\x1C\xB3\x27\xBE\x55\xEC\x60" 10361 "\xF7\x8E\x02\x99\x30\xC7\x3B\xD2" 10362 "\x69\x00\x74\x0B\xA2\x16\xAD\x44" 10363 "\xDB\x4F\xE6\x7D\x14\x88\x1F\xB6" 10364 "\x2A\xC1\x58\xEF\x63\xFA\x91\x05" 10365 "\x9C\x33\xCA\x3E\xD5\x6C\x03\x77" 10366 "\x0E\xA5\x19\xB0\x47\xDE\x52\xE9" 10367 "\x80\x17\x8B\x22\xB9\x2D\xC4\x5B" 10368 "\xF2\x66\xFD\x94\x08\x9F\x36\xCD" 10369 "\x41\xD8\x6F\x06\x7A\x11\xA8\x1C" 10370 "\xB3\x4A\xE1\x55\xEC\x83\x1A\x8E" 10371 "\x25\xBC\x30\xC7\x5E\xF5\x69\x00" 10372 "\x97\x0B\xA2\x39\xD0\x44\xDB\x72" 10373 "\x09\x7D\x14\xAB\x1F\xB6\x4D\xE4" 10374 "\x58\xEF\x86\x1D\x91\x28\xBF\x33" 10375 "\xCA\x61\xF8\x6C\x03\x9A\x0E\xA5" 10376 "\x3C\xD3\x47\xDE\x75\x0C\x80\x17" 10377 "\xAE\x22\xB9\x50\xE7\x5B\xF2\x89" 10378 "\x20\x94\x2B\xC2\x36\xCD\x64\xFB" 10379 "\x6F\x06\x9D\x11\xA8\x3F\xD6\x4A" 10380 "\xE1\x78\x0F\x83\x1A\xB1\x25\xBC" 10381 "\x53\xEA\x5E\xF5\x8C\x00\x97\x2E" 10382 "\xC5\x39\xD0\x67\xFE\x72\x09\xA0" 10383 "\x14\xAB\x42\xD9\x4D\xE4\x7B\x12" 10384 "\x86\x1D\xB4\x28\xBF\x56\xED\x61" 10385 "\xF8\x8F\x03\x9A\x31\xC8\x3C\xD3" 10386 "\x6A\x01\x75\x0C\xA3\x17\xAE\x45" 10387 "\xDC\x50\xE7\x7E\x15\x89\x20\xB7" 10388 "\x2B\xC2\x59\xF0\x64\xFB\x92\x06", 10389 .ctext = "\xC7\xA3\xDF\xB9\x05\xF4\x9E\x8D" 10390 "\x9E\xDF\x38\x18\x83\x07\xEF\xC1" 10391 "\x93\x3C\xAA\xAA\xFE\x06\x42\xCC" 10392 "\x0D\x70\x86\x5A\x44\xAD\x85\x17" 10393 "\xE4\x1F\x5E\xA5\x89\xAC\x32\xBC" 10394 "\x3D\xA7\xE9\x0A\x5C\x70\x4D\xDE" 10395 "\x99\x38\x07\xCA\x1D\x21\xC1\x11" 10396 "\x97\xEB\x98\x75\xC4\x73\x45\x83" 10397 "\x46\x1C\x9C\x91\x87\xC1\xA0\x56" 10398 "\x98\xA1\x8B\xDB\x22\x76\xBD\x62" 10399 "\xA4\xBC\xE8\x86\xDA\xD2\x51\x13" 10400 "\x13\xD2\x96\x68\x69\x10\x67\x0C" 10401 "\xD0\x17\x25\x7C\xB2\xAE\x4F\x93" 10402 "\xA6\x82\x20\xCF\x0F\xA6\x47\x79" 10403 "\x88\x09\x40\x59\xBD\x12\x64\xB5" 10404 "\x19\x38\x0D\xFF\x86\xD9\x42\x20" 10405 "\x81\x0D\x96\x99\xAF\x22\x1F\x94" 10406 "\x5C\x6E\xEC\xEA\xA3\x39\xCB\x09" 10407 "\x43\x19\x7F\xD0\xBB\x10\xC2\x49" 10408 "\xF7\xE9\xF2\xEE\xBF\xF7\xF8\xB3" 10409 "\x0E\x1A\xF1\x8D\x70\x82\x0C\x04" 10410 "\xFD\x29\x1A\xAC\xC0\x92\x48\x34" 10411 "\x6A\xE3\x1D\x4F\xFC\x1C\x72\x6A" 10412 "\x57\xCB\xAD\xD0\x98\xAB\xB1\x01" 10413 "\x03\x6A\x45\xDD\x07\x71\x5F\x5B" 10414 "\xB5\x4A\xE4\xE5\xB9\xB9\xBC\xAC" 10415 "\x44\xF7\x41\xA4\x5F\x2E\xE9\x28" 10416 "\xE3\x05\xD2\x94\x78\x4C\x33\x1B" 10417 "\xBD\xC1\x6E\x51\xD9\xAD\xD9\x86" 10418 "\x15\x4A\x78\xAE\x7B\xAD\x3B\xBC" 10419 "\x2F\xE0\x0E\xC5\x7B\x54\x97\x5F" 10420 "\x60\x51\x14\x65\xF9\x91\xE9\xDA" 10421 "\x9A\xBC\xFC\x19\x29\x67\xAA\x63" 10422 "\x5E\xF2\x48\x88\xEB\x79\xE1\xE4" 10423 "\xF7\xF6\x4C\xA9\xE2\x8C\x3B\xE0" 10424 "\xED\x52\xAE\x90\x8F\x5B\x98\x34" 10425 "\x29\x94\x34\x7F\xF9\x6C\x1E\xB6" 10426 "\xA4\xE7\x2D\x06\x54\x9D\xC3\x02" 10427 "\xC1\x90\xA4\x72\x31\x6B\x24\x51" 10428 "\x0B\xB3\x7C\x63\x15\xBA\xAF\x5D" 10429 "\x41\xE0\x37\x6D\xBE\x41\x58\xDE" 10430 "\xF2\x07\x62\x99\xBE\xC1\x8C\x0F" 10431 "\x0F\x28\xFB\x8F\x0E\x1D\x91\xE2" 10432 "\xDA\x99\x5C\x49\xBA\x9C\xA8\x86" 10433 "\x82\x63\x11\xB3\x54\x49\x00\x08" 10434 "\x07\xF2\xE8\x1F\x34\x49\x61\xF4" 10435 "\x81\xE9\xF6\xA9\x5A\x28\x60\x1F" 10436 "\x66\x99\x08\x06\xF2\xE8\x2D\xD1" 10437 "\xD0\x67\xBA\x32\x1F\x02\x86\x7B" 10438 "\xFB\x79\x3D\xC5\xB1\x7F\x15\xAF" 10439 "\xD7\xBF\x31\x46\x22\x7F\xAE\x5B" 10440 "\x8B\x95\x47\xC2\xB1\x62\xA1\xCE" 10441 "\x52\xAC\x9C\x8B\xC2\x49\x7F\xBC" 10442 "\x9C\x89\xB8\xB6\xCA\xE3\x8F\xEA" 10443 "\xAC\xB4\x5D\xE4\x50\xDC\x3A\xB5" 10444 "\x91\x04\x94\x99\x03\x3B\x42\x6D" 10445 "\x9C\x4A\x02\xF5\xB5\x38\x98\xA8" 10446 "\x5C\x97\x2E\x4D\x79\x67\x71\xAF" 10447 "\xF0\x70\x77\xFF\x2D\xDA\xA0\x9E" 10448 "\x23\x8D\xD6\xA6\x68\x10\x78\x9A" 10449 "\x64\xBB\x15\xB8\x56\xCF\xEE\xE5" 10450 "\x32\x44\x96\x1C\xD8\xEB\x95\xD2" 10451 "\xF3\x71\xEF\xEB\x4E\xBB\x4D\x29", 10452 .len = 504, 10453 }, { /* Generated with Crypto++ */ 10454 .key = "\x85\x62\x3F\x1C\xF9\xD6\x1C\xF9" 10455 "\xD6\xB3\x90\x6D\x4A\x90\x6D\x4A" 10456 "\x27\x04\xE1\x27\x04\xE1\xBE\x9B" 10457 "\x78\xBE\x9B\x78\x55\x32\x0F\x55", 10458 .klen = 32, 10459 .iv = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F", 10460 .iv_out = "\xE2\x24\x89\xEE\x53\xB8\x1D\x9E", 10461 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 10462 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 10463 "\x3A\xD1\x45\xDC\x73\x0A\x7E\x15" 10464 "\xAC\x20\xB7\x4E\xE5\x59\xF0\x87" 10465 "\x1E\x92\x29\xC0\x34\xCB\x62\xF9" 10466 "\x6D\x04\x9B\x0F\xA6\x3D\xD4\x48" 10467 "\xDF\x76\x0D\x81\x18\xAF\x23\xBA" 10468 "\x51\xE8\x5C\xF3\x8A\x21\x95\x2C" 10469 "\xC3\x37\xCE\x65\xFC\x70\x07\x9E" 10470 "\x12\xA9\x40\xD7\x4B\xE2\x79\x10" 10471 "\x84\x1B\xB2\x26\xBD\x54\xEB\x5F" 10472 "\xF6\x8D\x01\x98\x2F\xC6\x3A\xD1" 10473 "\x68\xFF\x73\x0A\xA1\x15\xAC\x43" 10474 "\xDA\x4E\xE5\x7C\x13\x87\x1E\xB5" 10475 "\x29\xC0\x57\xEE\x62\xF9\x90\x04" 10476 "\x9B\x32\xC9\x3D\xD4\x6B\x02\x76" 10477 "\x0D\xA4\x18\xAF\x46\xDD\x51\xE8" 10478 "\x7F\x16\x8A\x21\xB8\x2C\xC3\x5A" 10479 "\xF1\x65\xFC\x93\x07\x9E\x35\xCC" 10480 "\x40\xD7\x6E\x05\x79\x10\xA7\x1B" 10481 "\xB2\x49\xE0\x54\xEB\x82\x19\x8D" 10482 "\x24\xBB\x2F\xC6\x5D\xF4\x68\xFF" 10483 "\x96\x0A\xA1\x38\xCF\x43\xDA\x71" 10484 "\x08\x7C\x13\xAA\x1E\xB5\x4C\xE3" 10485 "\x57\xEE\x85\x1C\x90\x27\xBE\x32" 10486 "\xC9\x60\xF7\x6B\x02\x99\x0D\xA4" 10487 "\x3B\xD2\x46\xDD\x74\x0B\x7F\x16" 10488 "\xAD\x21\xB8\x4F\xE6\x5A\xF1\x88" 10489 "\x1F\x93\x2A\xC1\x35\xCC\x63\xFA" 10490 "\x6E\x05\x9C\x10\xA7\x3E\xD5\x49" 10491 "\xE0\x77\x0E\x82\x19\xB0\x24\xBB" 10492 "\x52\xE9\x5D\xF4\x8B\x22\x96\x2D" 10493 "\xC4\x38\xCF\x66\xFD\x71\x08\x9F" 10494 "\x13\xAA\x41\xD8\x4C\xE3\x7A\x11" 10495 "\x85\x1C\xB3\x27\xBE\x55\xEC\x60" 10496 "\xF7\x8E\x02\x99\x30\xC7\x3B\xD2" 10497 "\x69\x00\x74\x0B\xA2\x16\xAD\x44" 10498 "\xDB\x4F\xE6\x7D\x14\x88\x1F\xB6" 10499 "\x2A\xC1\x58\xEF\x63\xFA\x91\x05" 10500 "\x9C\x33\xCA\x3E\xD5\x6C\x03\x77" 10501 "\x0E\xA5\x19\xB0\x47\xDE\x52\xE9" 10502 "\x80\x17\x8B\x22\xB9\x2D\xC4\x5B" 10503 "\xF2\x66\xFD\x94\x08\x9F\x36\xCD" 10504 "\x41\xD8\x6F\x06\x7A\x11\xA8\x1C" 10505 "\xB3\x4A\xE1\x55\xEC\x83\x1A\x8E" 10506 "\x25\xBC\x30\xC7\x5E\xF5\x69\x00" 10507 "\x97\x0B\xA2\x39\xD0\x44\xDB\x72" 10508 "\x09\x7D\x14\xAB\x1F\xB6\x4D\xE4" 10509 "\x58\xEF\x86\x1D\x91\x28\xBF\x33" 10510 "\xCA\x61\xF8\x6C\x03\x9A\x0E\xA5" 10511 "\x3C\xD3\x47\xDE\x75\x0C\x80\x17" 10512 "\xAE\x22\xB9\x50\xE7\x5B\xF2\x89" 10513 "\x20\x94\x2B\xC2\x36\xCD\x64\xFB" 10514 "\x6F\x06\x9D\x11\xA8\x3F\xD6\x4A" 10515 "\xE1\x78\x0F\x83\x1A\xB1\x25\xBC" 10516 "\x53\xEA\x5E\xF5\x8C\x00\x97\x2E" 10517 "\xC5\x39\xD0\x67\xFE\x72\x09\xA0" 10518 "\x14\xAB\x42\xD9\x4D\xE4\x7B\x12" 10519 "\x86\x1D\xB4\x28\xBF\x56\xED\x61" 10520 "\xF8\x8F\x03\x9A\x31\xC8\x3C\xD3" 10521 "\x6A\x01\x75\x0C\xA3\x17\xAE\x45" 10522 "\xDC\x50\xE7\x7E\x15\x89\x20\xB7" 10523 "\x2B\xC2\x59\xF0\x64\xFB\x92", 10524 .ctext = "\xC7\xA3\xDF\xB9\x05\xF4\x9E\x8D" 10525 "\x9E\xDF\x38\x18\x83\x07\xEF\xC1" 10526 "\x93\x3C\xAA\xAA\xFE\x06\x42\xCC" 10527 "\x0D\x70\x86\x5A\x44\xAD\x85\x17" 10528 "\xE4\x1F\x5E\xA5\x89\xAC\x32\xBC" 10529 "\x3D\xA7\xE9\x0A\x5C\x70\x4D\xDE" 10530 "\x99\x38\x07\xCA\x1D\x21\xC1\x11" 10531 "\x97\xEB\x98\x75\xC4\x73\x45\x83" 10532 "\x46\x1C\x9C\x91\x87\xC1\xA0\x56" 10533 "\x98\xA1\x8B\xDB\x22\x76\xBD\x62" 10534 "\xA4\xBC\xE8\x86\xDA\xD2\x51\x13" 10535 "\x13\xD2\x96\x68\x69\x10\x67\x0C" 10536 "\xD0\x17\x25\x7C\xB2\xAE\x4F\x93" 10537 "\xA6\x82\x20\xCF\x0F\xA6\x47\x79" 10538 "\x88\x09\x40\x59\xBD\x12\x64\xB5" 10539 "\x19\x38\x0D\xFF\x86\xD9\x42\x20" 10540 "\x81\x0D\x96\x99\xAF\x22\x1F\x94" 10541 "\x5C\x6E\xEC\xEA\xA3\x39\xCB\x09" 10542 "\x43\x19\x7F\xD0\xBB\x10\xC2\x49" 10543 "\xF7\xE9\xF2\xEE\xBF\xF7\xF8\xB3" 10544 "\x0E\x1A\xF1\x8D\x70\x82\x0C\x04" 10545 "\xFD\x29\x1A\xAC\xC0\x92\x48\x34" 10546 "\x6A\xE3\x1D\x4F\xFC\x1C\x72\x6A" 10547 "\x57\xCB\xAD\xD0\x98\xAB\xB1\x01" 10548 "\x03\x6A\x45\xDD\x07\x71\x5F\x5B" 10549 "\xB5\x4A\xE4\xE5\xB9\xB9\xBC\xAC" 10550 "\x44\xF7\x41\xA4\x5F\x2E\xE9\x28" 10551 "\xE3\x05\xD2\x94\x78\x4C\x33\x1B" 10552 "\xBD\xC1\x6E\x51\xD9\xAD\xD9\x86" 10553 "\x15\x4A\x78\xAE\x7B\xAD\x3B\xBC" 10554 "\x2F\xE0\x0E\xC5\x7B\x54\x97\x5F" 10555 "\x60\x51\x14\x65\xF9\x91\xE9\xDA" 10556 "\x9A\xBC\xFC\x19\x29\x67\xAA\x63" 10557 "\x5E\xF2\x48\x88\xEB\x79\xE1\xE4" 10558 "\xF7\xF6\x4C\xA9\xE2\x8C\x3B\xE0" 10559 "\xED\x52\xAE\x90\x8F\x5B\x98\x34" 10560 "\x29\x94\x34\x7F\xF9\x6C\x1E\xB6" 10561 "\xA4\xE7\x2D\x06\x54\x9D\xC3\x02" 10562 "\xC1\x90\xA4\x72\x31\x6B\x24\x51" 10563 "\x0B\xB3\x7C\x63\x15\xBA\xAF\x5D" 10564 "\x41\xE0\x37\x6D\xBE\x41\x58\xDE" 10565 "\xF2\x07\x62\x99\xBE\xC1\x8C\x0F" 10566 "\x0F\x28\xFB\x8F\x0E\x1D\x91\xE2" 10567 "\xDA\x99\x5C\x49\xBA\x9C\xA8\x86" 10568 "\x82\x63\x11\xB3\x54\x49\x00\x08" 10569 "\x07\xF2\xE8\x1F\x34\x49\x61\xF4" 10570 "\x81\xE9\xF6\xA9\x5A\x28\x60\x1F" 10571 "\x66\x99\x08\x06\xF2\xE8\x2D\xD1" 10572 "\xD0\x67\xBA\x32\x1F\x02\x86\x7B" 10573 "\xFB\x79\x3D\xC5\xB1\x7F\x15\xAF" 10574 "\xD7\xBF\x31\x46\x22\x7F\xAE\x5B" 10575 "\x8B\x95\x47\xC2\xB1\x62\xA1\xCE" 10576 "\x52\xAC\x9C\x8B\xC2\x49\x7F\xBC" 10577 "\x9C\x89\xB8\xB6\xCA\xE3\x8F\xEA" 10578 "\xAC\xB4\x5D\xE4\x50\xDC\x3A\xB5" 10579 "\x91\x04\x94\x99\x03\x3B\x42\x6D" 10580 "\x9C\x4A\x02\xF5\xB5\x38\x98\xA8" 10581 "\x5C\x97\x2E\x4D\x79\x67\x71\xAF" 10582 "\xF0\x70\x77\xFF\x2D\xDA\xA0\x9E" 10583 "\x23\x8D\xD6\xA6\x68\x10\x78\x9A" 10584 "\x64\xBB\x15\xB8\x56\xCF\xEE\xE5" 10585 "\x32\x44\x96\x1C\xD8\xEB\x95\xD2" 10586 "\xF3\x71\xEF\xEB\x4E\xBB\x4D", 10587 .len = 503, 10588 }, { /* Generated with Crypto++ */ 10589 .key = "\x85\x62\x3F\x1C\xF9\xD6\x1C\xF9" 10590 "\xD6\xB3\x90\x6D\x4A\x90\x6D\x4A" 10591 "\x27\x04\xE1\x27\x04\xE1\xBE\x9B" 10592 "\x78\xBE\x9B\x78\x55\x32\x0F\x55", 10593 .klen = 32, 10594 .iv = "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFD", 10595 .iv_out = "\x00\x00\x00\x00\x00\x00\x00\x3C", 10596 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 10597 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 10598 "\x3A\xD1\x45\xDC\x73\x0A\x7E\x15" 10599 "\xAC\x20\xB7\x4E\xE5\x59\xF0\x87" 10600 "\x1E\x92\x29\xC0\x34\xCB\x62\xF9" 10601 "\x6D\x04\x9B\x0F\xA6\x3D\xD4\x48" 10602 "\xDF\x76\x0D\x81\x18\xAF\x23\xBA" 10603 "\x51\xE8\x5C\xF3\x8A\x21\x95\x2C" 10604 "\xC3\x37\xCE\x65\xFC\x70\x07\x9E" 10605 "\x12\xA9\x40\xD7\x4B\xE2\x79\x10" 10606 "\x84\x1B\xB2\x26\xBD\x54\xEB\x5F" 10607 "\xF6\x8D\x01\x98\x2F\xC6\x3A\xD1" 10608 "\x68\xFF\x73\x0A\xA1\x15\xAC\x43" 10609 "\xDA\x4E\xE5\x7C\x13\x87\x1E\xB5" 10610 "\x29\xC0\x57\xEE\x62\xF9\x90\x04" 10611 "\x9B\x32\xC9\x3D\xD4\x6B\x02\x76" 10612 "\x0D\xA4\x18\xAF\x46\xDD\x51\xE8" 10613 "\x7F\x16\x8A\x21\xB8\x2C\xC3\x5A" 10614 "\xF1\x65\xFC\x93\x07\x9E\x35\xCC" 10615 "\x40\xD7\x6E\x05\x79\x10\xA7\x1B" 10616 "\xB2\x49\xE0\x54\xEB\x82\x19\x8D" 10617 "\x24\xBB\x2F\xC6\x5D\xF4\x68\xFF" 10618 "\x96\x0A\xA1\x38\xCF\x43\xDA\x71" 10619 "\x08\x7C\x13\xAA\x1E\xB5\x4C\xE3" 10620 "\x57\xEE\x85\x1C\x90\x27\xBE\x32" 10621 "\xC9\x60\xF7\x6B\x02\x99\x0D\xA4" 10622 "\x3B\xD2\x46\xDD\x74\x0B\x7F\x16" 10623 "\xAD\x21\xB8\x4F\xE6\x5A\xF1\x88" 10624 "\x1F\x93\x2A\xC1\x35\xCC\x63\xFA" 10625 "\x6E\x05\x9C\x10\xA7\x3E\xD5\x49" 10626 "\xE0\x77\x0E\x82\x19\xB0\x24\xBB" 10627 "\x52\xE9\x5D\xF4\x8B\x22\x96\x2D" 10628 "\xC4\x38\xCF\x66\xFD\x71\x08\x9F" 10629 "\x13\xAA\x41\xD8\x4C\xE3\x7A\x11" 10630 "\x85\x1C\xB3\x27\xBE\x55\xEC\x60" 10631 "\xF7\x8E\x02\x99\x30\xC7\x3B\xD2" 10632 "\x69\x00\x74\x0B\xA2\x16\xAD\x44" 10633 "\xDB\x4F\xE6\x7D\x14\x88\x1F\xB6" 10634 "\x2A\xC1\x58\xEF\x63\xFA\x91\x05" 10635 "\x9C\x33\xCA\x3E\xD5\x6C\x03\x77" 10636 "\x0E\xA5\x19\xB0\x47\xDE\x52\xE9" 10637 "\x80\x17\x8B\x22\xB9\x2D\xC4\x5B" 10638 "\xF2\x66\xFD\x94\x08\x9F\x36\xCD" 10639 "\x41\xD8\x6F\x06\x7A\x11\xA8\x1C" 10640 "\xB3\x4A\xE1\x55\xEC\x83\x1A\x8E" 10641 "\x25\xBC\x30\xC7\x5E\xF5\x69\x00" 10642 "\x97\x0B\xA2\x39\xD0\x44\xDB\x72" 10643 "\x09\x7D\x14\xAB\x1F\xB6\x4D\xE4" 10644 "\x58\xEF\x86\x1D\x91\x28\xBF\x33" 10645 "\xCA\x61\xF8\x6C\x03\x9A\x0E\xA5" 10646 "\x3C\xD3\x47\xDE\x75\x0C\x80\x17" 10647 "\xAE\x22\xB9\x50\xE7\x5B\xF2\x89" 10648 "\x20\x94\x2B\xC2\x36\xCD\x64\xFB" 10649 "\x6F\x06\x9D\x11\xA8\x3F\xD6\x4A" 10650 "\xE1\x78\x0F\x83\x1A\xB1\x25\xBC" 10651 "\x53\xEA\x5E\xF5\x8C\x00\x97\x2E" 10652 "\xC5\x39\xD0\x67\xFE\x72\x09\xA0" 10653 "\x14\xAB\x42\xD9\x4D\xE4\x7B\x12" 10654 "\x86\x1D\xB4\x28\xBF\x56\xED\x61" 10655 "\xF8\x8F\x03\x9A\x31\xC8\x3C\xD3" 10656 "\x6A\x01\x75\x0C\xA3\x17\xAE\x45" 10657 "\xDC\x50\xE7\x7E\x15\x89\x20\xB7" 10658 "\x2B\xC2\x59\xF0\x64\xFB\x92\x06", 10659 .ctext = "\x5F\x58\x6E\x60\x51\x6E\xDC\x3D" 10660 "\xD1\xBB\xF7\xB7\xFD\x04\x44\x82" 10661 "\xDC\x9F\x4B\x02\xF1\xD2\x5A\x6F" 10662 "\x25\xF9\x27\x21\xF2\xD2\x9A\x01" 10663 "\xBD\xAD\x3D\x93\x87\xCA\x0D\xFE" 10664 "\xB7\x2C\x17\x1F\x42\x8C\x13\xB2" 10665 "\x62\x44\x72\xB9\x5D\xC0\xF8\x37" 10666 "\xDF\xEA\x78\x81\x8F\xA6\x34\xB2" 10667 "\x07\x09\x7C\xB9\x3A\xA0\x2B\x18" 10668 "\x34\x6A\x9D\x3D\xA5\xEB\xF4\x60" 10669 "\xF8\x98\xA2\x39\x81\x23\x6C\xA9" 10670 "\x70\xCA\xCC\x45\xD8\x1F\xDF\x44" 10671 "\x2A\x67\x7A\x88\x28\xDC\x36\x83" 10672 "\x18\xD7\x48\x43\x17\x2B\x1B\xE6" 10673 "\x0B\x82\x59\x14\x26\x67\x08\x09" 10674 "\x5B\x5D\x38\xD0\x81\xCE\x54\x2A" 10675 "\xCD\x22\x94\x42\xF5\xBA\x74\x7E" 10676 "\xD9\x00\x40\xA9\x0D\x0B\xBD\x8E" 10677 "\xC4\x8E\x5E\x17\x8F\x48\xE2\xB8" 10678 "\xF4\xCC\x19\x76\xAB\x48\x29\xAA" 10679 "\x81\xD5\xCE\xD5\x8A\x3B\xC9\x21" 10680 "\xEF\x50\x4F\x04\x02\xBF\xE1\x1F" 10681 "\x59\x28\x1A\xE4\x18\x16\xA0\x29" 10682 "\xBF\x34\xA9\x2D\x28\x83\xC0\x5E" 10683 "\xEA\x44\xC4\x6E\xAB\x24\x79\x9D" 10684 "\x2D\xA1\xE8\x55\xCA\x74\xFC\xBD" 10685 "\xFE\xDD\xDA\xA5\xFB\x34\x90\x31" 10686 "\x0E\x62\x28\x9B\xDC\xD7\xA1\xBB" 10687 "\xF0\x1A\xB3\xE2\xD0\xFA\xBD\xE8" 10688 "\x5C\x5A\x10\x67\xF6\x6A\x17\x3F" 10689 "\xC5\xE9\x09\x08\xDD\x22\x77\x42" 10690 "\x26\x6A\x6A\x7A\x3F\x87\x80\x0C" 10691 "\xF0\xFF\x15\x8E\x84\x86\xC0\x10" 10692 "\x0F\x8D\x33\x06\xB8\x72\xA4\x47" 10693 "\x6B\xED\x2E\x05\x94\x6C\x5C\x5B" 10694 "\x13\xF6\x77\xEE\x3B\x16\xDF\xC2" 10695 "\x63\x66\x07\x6D\x3F\x6C\x51\x7C" 10696 "\x1C\xAC\x80\xB6\x58\x48\xB7\x9D" 10697 "\xB4\x19\xD8\x19\x45\x66\x27\x02" 10698 "\xA1\xA9\x99\xF3\x1F\xE5\xA7\x1D" 10699 "\x31\xE7\x1B\x0D\xFF\xBB\xB5\xA1" 10700 "\xF5\x9C\x45\x1E\x18\x19\xA1\xE7" 10701 "\xC2\xF1\xBF\x68\xC3\xEC\xCF\x53" 10702 "\x67\xA6\x2B\x7D\x3C\x6D\x24\xC3" 10703 "\xE8\xE6\x07\x5A\x09\xE0\x32\xA8" 10704 "\x52\xF6\xE9\xED\x0E\xC6\x0A\x6A" 10705 "\xFC\x60\x2A\xE0\x93\xCE\xB8\x2E" 10706 "\xA2\xA8\x0E\x79\x9E\x34\x5D\x37" 10707 "\x6F\x12\xFE\x48\x7B\xE7\xB9\x22" 10708 "\x29\xE8\xD7\xBE\x5D\xD1\x8B\xD9" 10709 "\x91\x51\x4E\x71\xF2\x98\x85\x16" 10710 "\x25\x7A\x76\x8A\x51\x0E\x65\x14" 10711 "\x81\xB5\x3A\x37\xFD\xEC\xB5\x8A" 10712 "\xE1\xCF\x41\x72\x14\x29\x4C\xF0" 10713 "\x20\xD9\x9A\xC5\x66\xA4\x03\x76" 10714 "\x5B\xA4\x15\x4F\x0E\x64\x39\x40" 10715 "\x25\xF9\x20\x22\xF5\x88\xF5\xBA" 10716 "\xE4\xDF\x45\x61\xBF\x8D\x7A\x24" 10717 "\x4B\x92\x71\xD9\x2F\x77\xA7\x95" 10718 "\xA8\x7F\x61\xD5\xA4\x57\xB0\xFB" 10719 "\xB5\x77\xBA\x1C\xEE\x71\xFA\xB0" 10720 "\x16\x4C\x18\x6B\xF2\x69\xA0\x07" 10721 "\xEF\xBE\xEC\x69\xAC\xA8\x63\x9E", 10722 .len = 504, 10723 }, 10724 }; 10725 10726 /* 10727 * Twofish test vectors. 10728 */ 10729 static const struct cipher_testvec tf_tv_template[] = { 10730 { 10731 .key = zeroed_string, 10732 .klen = 16, 10733 .ptext = zeroed_string, 10734 .ctext = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32" 10735 "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a", 10736 .len = 16, 10737 }, { 10738 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 10739 "\xfe\xdc\xba\x98\x76\x54\x32\x10" 10740 "\x00\x11\x22\x33\x44\x55\x66\x77", 10741 .klen = 24, 10742 .ptext = zeroed_string, 10743 .ctext = "\xcf\xd1\xd2\xe5\xa9\xbe\x9c\xdf" 10744 "\x50\x1f\x13\xb8\x92\xbd\x22\x48", 10745 .len = 16, 10746 }, { 10747 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 10748 "\xfe\xdc\xba\x98\x76\x54\x32\x10" 10749 "\x00\x11\x22\x33\x44\x55\x66\x77" 10750 "\x88\x99\xaa\xbb\xcc\xdd\xee\xff", 10751 .klen = 32, 10752 .ptext = zeroed_string, 10753 .ctext = "\x37\x52\x7b\xe0\x05\x23\x34\xb8" 10754 "\x9f\x0c\xfc\xca\xe8\x7c\xfa\x20", 10755 .len = 16, 10756 }, { /* Generated with Crypto++ */ 10757 .key = "\x3F\x85\x62\x3F\x1C\xF9\xD6\x1C" 10758 "\xF9\xD6\xB3\x90\x6D\x4A\x90\x6D" 10759 "\x4A\x27\x04\xE1\x27\x04\xE1\xBE" 10760 "\x9B\x78\xBE\x9B\x78\x55\x32\x0F", 10761 .klen = 32, 10762 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 10763 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 10764 "\x3A\xD1\x45\xDC\x73\x0A\x7E\x15" 10765 "\xAC\x20\xB7\x4E\xE5\x59\xF0\x87" 10766 "\x1E\x92\x29\xC0\x34\xCB\x62\xF9" 10767 "\x6D\x04\x9B\x0F\xA6\x3D\xD4\x48" 10768 "\xDF\x76\x0D\x81\x18\xAF\x23\xBA" 10769 "\x51\xE8\x5C\xF3\x8A\x21\x95\x2C" 10770 "\xC3\x37\xCE\x65\xFC\x70\x07\x9E" 10771 "\x12\xA9\x40\xD7\x4B\xE2\x79\x10" 10772 "\x84\x1B\xB2\x26\xBD\x54\xEB\x5F" 10773 "\xF6\x8D\x01\x98\x2F\xC6\x3A\xD1" 10774 "\x68\xFF\x73\x0A\xA1\x15\xAC\x43" 10775 "\xDA\x4E\xE5\x7C\x13\x87\x1E\xB5" 10776 "\x29\xC0\x57\xEE\x62\xF9\x90\x04" 10777 "\x9B\x32\xC9\x3D\xD4\x6B\x02\x76" 10778 "\x0D\xA4\x18\xAF\x46\xDD\x51\xE8" 10779 "\x7F\x16\x8A\x21\xB8\x2C\xC3\x5A" 10780 "\xF1\x65\xFC\x93\x07\x9E\x35\xCC" 10781 "\x40\xD7\x6E\x05\x79\x10\xA7\x1B" 10782 "\xB2\x49\xE0\x54\xEB\x82\x19\x8D" 10783 "\x24\xBB\x2F\xC6\x5D\xF4\x68\xFF" 10784 "\x96\x0A\xA1\x38\xCF\x43\xDA\x71" 10785 "\x08\x7C\x13\xAA\x1E\xB5\x4C\xE3" 10786 "\x57\xEE\x85\x1C\x90\x27\xBE\x32" 10787 "\xC9\x60\xF7\x6B\x02\x99\x0D\xA4" 10788 "\x3B\xD2\x46\xDD\x74\x0B\x7F\x16" 10789 "\xAD\x21\xB8\x4F\xE6\x5A\xF1\x88" 10790 "\x1F\x93\x2A\xC1\x35\xCC\x63\xFA" 10791 "\x6E\x05\x9C\x10\xA7\x3E\xD5\x49" 10792 "\xE0\x77\x0E\x82\x19\xB0\x24\xBB" 10793 "\x52\xE9\x5D\xF4\x8B\x22\x96\x2D" 10794 "\xC4\x38\xCF\x66\xFD\x71\x08\x9F" 10795 "\x13\xAA\x41\xD8\x4C\xE3\x7A\x11" 10796 "\x85\x1C\xB3\x27\xBE\x55\xEC\x60" 10797 "\xF7\x8E\x02\x99\x30\xC7\x3B\xD2" 10798 "\x69\x00\x74\x0B\xA2\x16\xAD\x44" 10799 "\xDB\x4F\xE6\x7D\x14\x88\x1F\xB6" 10800 "\x2A\xC1\x58\xEF\x63\xFA\x91\x05" 10801 "\x9C\x33\xCA\x3E\xD5\x6C\x03\x77" 10802 "\x0E\xA5\x19\xB0\x47\xDE\x52\xE9" 10803 "\x80\x17\x8B\x22\xB9\x2D\xC4\x5B" 10804 "\xF2\x66\xFD\x94\x08\x9F\x36\xCD" 10805 "\x41\xD8\x6F\x06\x7A\x11\xA8\x1C" 10806 "\xB3\x4A\xE1\x55\xEC\x83\x1A\x8E" 10807 "\x25\xBC\x30\xC7\x5E\xF5\x69\x00" 10808 "\x97\x0B\xA2\x39\xD0\x44\xDB\x72" 10809 "\x09\x7D\x14\xAB\x1F\xB6\x4D\xE4" 10810 "\x58\xEF\x86\x1D\x91\x28\xBF\x33" 10811 "\xCA\x61\xF8\x6C\x03\x9A\x0E\xA5" 10812 "\x3C\xD3\x47\xDE\x75\x0C\x80\x17" 10813 "\xAE\x22\xB9\x50\xE7\x5B\xF2\x89" 10814 "\x20\x94\x2B\xC2\x36\xCD\x64\xFB" 10815 "\x6F\x06\x9D\x11\xA8\x3F\xD6\x4A" 10816 "\xE1\x78\x0F\x83\x1A\xB1\x25\xBC" 10817 "\x53\xEA\x5E\xF5\x8C\x00\x97\x2E" 10818 "\xC5\x39\xD0\x67\xFE\x72\x09\xA0" 10819 "\x14\xAB\x42\xD9\x4D\xE4\x7B\x12" 10820 "\x86\x1D\xB4\x28\xBF\x56\xED\x61" 10821 "\xF8\x8F\x03\x9A\x31\xC8\x3C\xD3" 10822 "\x6A\x01\x75\x0C\xA3\x17\xAE\x45" 10823 "\xDC\x50\xE7\x7E\x15\x89\x20\xB7", 10824 .ctext = "\x88\xCB\x1E\xC2\xAF\x8A\x97\xFF" 10825 "\xF6\x90\x46\x9C\x4A\x0F\x08\xDC" 10826 "\xDE\xAB\xAD\xFA\xFC\xA8\xC2\x3D" 10827 "\xE0\xE4\x8B\x3F\xD5\xA3\xF7\x14" 10828 "\x34\x9E\xB6\x08\xB2\xDD\xA8\xF5" 10829 "\xDF\xFA\xC7\xE8\x09\x50\x76\x08" 10830 "\xA2\xB6\x6A\x59\xC0\x2B\x6D\x05" 10831 "\x89\xF6\x82\xF0\xD3\xDB\x06\x02" 10832 "\xB5\x11\x5C\x5E\x79\x1A\xAC\x43" 10833 "\x5C\xC0\x30\x4B\x6B\x16\xA1\x40" 10834 "\x80\x27\x88\xBA\x2C\x74\x42\xE0" 10835 "\x1B\xA5\x85\x08\xB9\xE6\x22\x7A" 10836 "\x36\x3B\x0D\x9F\xA0\x22\x6C\x2A" 10837 "\x91\x75\x47\xBC\x67\x21\x4E\xF9" 10838 "\xEA\xFF\xD9\xD5\xC0\xFC\x9E\x2C" 10839 "\x3E\xAD\xC6\x61\x0E\x93\x7A\x22" 10840 "\x09\xC8\x8D\xC1\x8E\xB4\x8B\x5C" 10841 "\xC6\x24\x42\xB8\x23\x66\x80\xA9" 10842 "\x32\x0B\x7A\x29\xBF\xB3\x0B\x63" 10843 "\x43\x27\x13\xA9\xBE\xEB\xBD\xF3" 10844 "\x33\x62\x70\xE2\x1B\x86\x7A\xA1" 10845 "\x51\x4A\x16\xFE\x29\x63\x7E\xD0" 10846 "\x7A\xA4\x6E\x2C\xF8\xC1\xDB\xE8" 10847 "\xCB\x4D\xD2\x8C\x04\x14\xB4\x66" 10848 "\x41\xB7\x3A\x96\x16\x7C\x1D\x5B" 10849 "\xB6\x41\x42\x64\x43\xEE\x6E\x7C" 10850 "\x8B\xAF\x01\x9C\xA4\x6E\x75\x8F" 10851 "\xDE\x10\x9F\xA6\xE7\xD6\x44\x97" 10852 "\x66\xA3\x96\x0F\x1C\x25\x60\xF5" 10853 "\x3C\x2E\x32\x69\x0E\x82\xFF\x27" 10854 "\x0F\xB5\x06\xDA\xD8\x31\x15\x6C" 10855 "\xDF\x18\x6C\x87\xF5\x3B\x11\x9A" 10856 "\x1B\x42\x1F\x5B\x29\x19\x96\x13" 10857 "\x68\x2E\x5E\x08\x1C\x8F\x32\x4B" 10858 "\x81\x77\x6D\xF4\xA0\x01\x42\xEC" 10859 "\xDD\x5B\xFD\x3A\x8E\x6A\x14\xFB" 10860 "\x83\x54\xDF\x0F\x86\xB7\xEA\x40" 10861 "\x46\x39\xF7\x2A\x89\x8D\x4E\x96" 10862 "\x5F\x5F\x6D\x76\xC6\x13\x9D\x3D" 10863 "\x1D\x5F\x0C\x7D\xE2\xBC\xC2\x16" 10864 "\x16\xBE\x89\x3E\xB0\x61\xA2\x5D" 10865 "\xAF\xD1\x40\x5F\x1A\xB8\x26\x41" 10866 "\xC6\xBD\x36\xEF\xED\x29\x50\x6D" 10867 "\x10\xEF\x26\xE8\xA8\x93\x11\x3F" 10868 "\x2D\x1F\x88\x20\x77\x45\xF5\x66" 10869 "\x08\xB9\xF1\xEF\xB1\x93\xA8\x81" 10870 "\x65\xC5\xCD\x3E\x8C\x06\x60\x2C" 10871 "\xB2\x10\x7A\xCA\x05\x25\x59\xDB" 10872 "\xC7\x28\xF5\x20\x35\x52\x9E\x62" 10873 "\xF8\x88\x24\x1C\x4D\x84\x12\x39" 10874 "\x39\xE4\x2E\xF4\xD4\x9D\x2B\xBC" 10875 "\x87\x66\xE6\xC0\x6B\x31\x9A\x66" 10876 "\x03\xDC\x95\xD8\x6B\xD0\x30\x8F" 10877 "\xDF\x8F\x8D\xFA\xEC\x1F\x08\xBD" 10878 "\xA3\x63\xE2\x71\x4F\x03\x94\x87" 10879 "\x50\xDF\x15\x1F\xED\x3A\xA3\x7F" 10880 "\x1F\x2A\xB5\xA1\x69\xAC\x4B\x0D" 10881 "\x84\x9B\x2A\xE9\x55\xDD\x46\x91" 10882 "\x15\x33\xF3\x2B\x9B\x46\x97\x00" 10883 "\xF0\x29\xD8\x59\x5D\x33\x37\xF9" 10884 "\x58\x33\x9B\x78\xC7\x58\x48\x6B" 10885 "\x2C\x75\x64\xC4\xCA\xC1\x7E\xD5", 10886 .len = 496, 10887 }, 10888 }; 10889 10890 static const struct cipher_testvec tf_cbc_tv_template[] = { 10891 { /* Generated with Nettle */ 10892 .key = zeroed_string, 10893 .klen = 16, 10894 .iv = zeroed_string, 10895 .iv_out = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32" 10896 "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a", 10897 .ptext = zeroed_string, 10898 .ctext = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32" 10899 "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a", 10900 .len = 16, 10901 }, { 10902 .key = zeroed_string, 10903 .klen = 16, 10904 .iv = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32" 10905 "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a", 10906 .iv_out = "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e" 10907 "\x86\xcb\x08\x6b\x78\x9f\x54\x19", 10908 .ptext = zeroed_string, 10909 .ctext = "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e" 10910 "\x86\xcb\x08\x6b\x78\x9f\x54\x19", 10911 .len = 16, 10912 }, { 10913 .key = zeroed_string, 10914 .klen = 16, 10915 .iv = "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e" 10916 "\x86\xcb\x08\x6b\x78\x9f\x54\x19", 10917 .iv_out = "\x05\xef\x8c\x61\xa8\x11\x58\x26" 10918 "\x34\xba\x5c\xb7\x10\x6a\xa6\x41", 10919 .ptext = zeroed_string, 10920 .ctext = "\x05\xef\x8c\x61\xa8\x11\x58\x26" 10921 "\x34\xba\x5c\xb7\x10\x6a\xa6\x41", 10922 .len = 16, 10923 }, { 10924 .key = zeroed_string, 10925 .klen = 16, 10926 .iv = zeroed_string, 10927 .iv_out = "\x05\xef\x8c\x61\xa8\x11\x58\x26" 10928 "\x34\xba\x5c\xb7\x10\x6a\xa6\x41", 10929 .ptext = zeroed_string, 10930 .ctext = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32" 10931 "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a" 10932 "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e" 10933 "\x86\xcb\x08\x6b\x78\x9f\x54\x19" 10934 "\x05\xef\x8c\x61\xa8\x11\x58\x26" 10935 "\x34\xba\x5c\xb7\x10\x6a\xa6\x41", 10936 .len = 48, 10937 }, { /* Generated with Crypto++ */ 10938 .key = "\x85\x62\x3F\x1C\xF9\xD6\x1C\xF9" 10939 "\xD6\xB3\x90\x6D\x4A\x90\x6D\x4A" 10940 "\x27\x04\xE1\x27\x04\xE1\xBE\x9B" 10941 "\x78\xBE\x9B\x78\x55\x32\x0F\x55", 10942 .klen = 32, 10943 .iv = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F" 10944 "\xC4\x29\x8E\xF3\x35\x9A\xFF\x64", 10945 .iv_out = "\x30\x70\x56\xA4\x37\xDD\x7C\xC0" 10946 "\x0A\xA3\x30\x10\x26\x25\x41\x2C", 10947 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 10948 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 10949 "\x3A\xD1\x45\xDC\x73\x0A\x7E\x15" 10950 "\xAC\x20\xB7\x4E\xE5\x59\xF0\x87" 10951 "\x1E\x92\x29\xC0\x34\xCB\x62\xF9" 10952 "\x6D\x04\x9B\x0F\xA6\x3D\xD4\x48" 10953 "\xDF\x76\x0D\x81\x18\xAF\x23\xBA" 10954 "\x51\xE8\x5C\xF3\x8A\x21\x95\x2C" 10955 "\xC3\x37\xCE\x65\xFC\x70\x07\x9E" 10956 "\x12\xA9\x40\xD7\x4B\xE2\x79\x10" 10957 "\x84\x1B\xB2\x26\xBD\x54\xEB\x5F" 10958 "\xF6\x8D\x01\x98\x2F\xC6\x3A\xD1" 10959 "\x68\xFF\x73\x0A\xA1\x15\xAC\x43" 10960 "\xDA\x4E\xE5\x7C\x13\x87\x1E\xB5" 10961 "\x29\xC0\x57\xEE\x62\xF9\x90\x04" 10962 "\x9B\x32\xC9\x3D\xD4\x6B\x02\x76" 10963 "\x0D\xA4\x18\xAF\x46\xDD\x51\xE8" 10964 "\x7F\x16\x8A\x21\xB8\x2C\xC3\x5A" 10965 "\xF1\x65\xFC\x93\x07\x9E\x35\xCC" 10966 "\x40\xD7\x6E\x05\x79\x10\xA7\x1B" 10967 "\xB2\x49\xE0\x54\xEB\x82\x19\x8D" 10968 "\x24\xBB\x2F\xC6\x5D\xF4\x68\xFF" 10969 "\x96\x0A\xA1\x38\xCF\x43\xDA\x71" 10970 "\x08\x7C\x13\xAA\x1E\xB5\x4C\xE3" 10971 "\x57\xEE\x85\x1C\x90\x27\xBE\x32" 10972 "\xC9\x60\xF7\x6B\x02\x99\x0D\xA4" 10973 "\x3B\xD2\x46\xDD\x74\x0B\x7F\x16" 10974 "\xAD\x21\xB8\x4F\xE6\x5A\xF1\x88" 10975 "\x1F\x93\x2A\xC1\x35\xCC\x63\xFA" 10976 "\x6E\x05\x9C\x10\xA7\x3E\xD5\x49" 10977 "\xE0\x77\x0E\x82\x19\xB0\x24\xBB" 10978 "\x52\xE9\x5D\xF4\x8B\x22\x96\x2D" 10979 "\xC4\x38\xCF\x66\xFD\x71\x08\x9F" 10980 "\x13\xAA\x41\xD8\x4C\xE3\x7A\x11" 10981 "\x85\x1C\xB3\x27\xBE\x55\xEC\x60" 10982 "\xF7\x8E\x02\x99\x30\xC7\x3B\xD2" 10983 "\x69\x00\x74\x0B\xA2\x16\xAD\x44" 10984 "\xDB\x4F\xE6\x7D\x14\x88\x1F\xB6" 10985 "\x2A\xC1\x58\xEF\x63\xFA\x91\x05" 10986 "\x9C\x33\xCA\x3E\xD5\x6C\x03\x77" 10987 "\x0E\xA5\x19\xB0\x47\xDE\x52\xE9" 10988 "\x80\x17\x8B\x22\xB9\x2D\xC4\x5B" 10989 "\xF2\x66\xFD\x94\x08\x9F\x36\xCD" 10990 "\x41\xD8\x6F\x06\x7A\x11\xA8\x1C" 10991 "\xB3\x4A\xE1\x55\xEC\x83\x1A\x8E" 10992 "\x25\xBC\x30\xC7\x5E\xF5\x69\x00" 10993 "\x97\x0B\xA2\x39\xD0\x44\xDB\x72" 10994 "\x09\x7D\x14\xAB\x1F\xB6\x4D\xE4" 10995 "\x58\xEF\x86\x1D\x91\x28\xBF\x33" 10996 "\xCA\x61\xF8\x6C\x03\x9A\x0E\xA5" 10997 "\x3C\xD3\x47\xDE\x75\x0C\x80\x17" 10998 "\xAE\x22\xB9\x50\xE7\x5B\xF2\x89" 10999 "\x20\x94\x2B\xC2\x36\xCD\x64\xFB" 11000 "\x6F\x06\x9D\x11\xA8\x3F\xD6\x4A" 11001 "\xE1\x78\x0F\x83\x1A\xB1\x25\xBC" 11002 "\x53\xEA\x5E\xF5\x8C\x00\x97\x2E" 11003 "\xC5\x39\xD0\x67\xFE\x72\x09\xA0" 11004 "\x14\xAB\x42\xD9\x4D\xE4\x7B\x12" 11005 "\x86\x1D\xB4\x28\xBF\x56\xED\x61" 11006 "\xF8\x8F\x03\x9A\x31\xC8\x3C\xD3" 11007 "\x6A\x01\x75\x0C\xA3\x17\xAE\x45" 11008 "\xDC\x50\xE7\x7E\x15\x89\x20\xB7", 11009 .ctext = "\xC8\xFF\xF2\x53\xA6\x27\x09\xD1" 11010 "\x33\x38\xC2\xC0\x0C\x14\x7E\xB5" 11011 "\x26\x1B\x05\x0C\x05\x12\x3F\xC0" 11012 "\xF9\x1C\x02\x28\x40\x96\x6F\xD0" 11013 "\x3D\x32\xDF\xDA\x56\x00\x6E\xEE" 11014 "\x5B\x2A\x72\x9D\xC2\x4D\x19\xBC" 11015 "\x8C\x53\xFA\x87\x6F\xDD\x81\xA3" 11016 "\xB1\xD3\x44\x65\xDF\xE7\x63\x38" 11017 "\x4A\xFC\xDC\xEC\x3F\x26\x8E\xB8" 11018 "\x43\xFC\xFE\x18\xB5\x11\x6D\x31" 11019 "\x81\x8B\x0D\x75\xF6\x80\xEC\x84" 11020 "\x04\xB9\xE6\x09\x63\xED\x39\xDB" 11021 "\xC3\xF6\x14\xD6\x6E\x5E\x8B\xBD" 11022 "\x3E\xFA\xD7\x98\x50\x6F\xD9\x63" 11023 "\x02\xCD\x0D\x39\x4B\x0D\xEC\x80" 11024 "\xE3\x6A\x17\xF4\xCC\xAD\xFF\x68" 11025 "\x45\xDD\xC8\x83\x1D\x41\x96\x0D" 11026 "\x91\x2E\x05\xD3\x59\x82\xE0\x43" 11027 "\x90\x4F\xB9\xF7\xAD\x6B\x2E\xAF" 11028 "\xA7\x84\x00\x53\xCD\x6F\xD1\x0C" 11029 "\x4E\xF9\x5A\x23\xFB\xCA\xC7\xD3" 11030 "\xA9\xAA\x9D\xB2\x3F\x66\xF1\xAC" 11031 "\x25\x21\x8F\xF7\xEF\xF2\x6A\xDF" 11032 "\xE8\xDA\x75\x1A\x8A\xF1\xDD\x38" 11033 "\x1F\xF9\x3D\x68\x4A\xBB\x9E\x34" 11034 "\x1F\x66\x1F\x9C\x2B\x54\xFF\x60" 11035 "\x7F\x29\x4B\x55\x80\x8F\x4E\xA7" 11036 "\xA6\x9A\x0A\xD9\x0D\x19\x00\xF8" 11037 "\x1F\xBC\x0C\x40\x6B\xEC\x99\x25" 11038 "\x94\x70\x74\x0E\x1D\xC5\xBC\x12" 11039 "\xF3\x42\xBE\x95\xBF\xFB\x4E\x55" 11040 "\x9A\xB9\xCE\x14\x16\x5B\xDC\xD3" 11041 "\x75\x42\x62\x04\x31\x1F\x95\x7C" 11042 "\x66\x1A\x97\xDC\x2F\x40\x5C\x39" 11043 "\x78\xE6\x02\xDB\x49\xE1\xC6\x47" 11044 "\xC2\x78\x9A\xBB\xF3\xBE\xCB\x93" 11045 "\xD8\xB8\xE8\xBB\x8C\xB3\x9B\xA7" 11046 "\xC2\x89\xF3\x91\x88\x83\x3D\xF0" 11047 "\x29\xA2\xCD\xB5\x79\x16\xC2\x40" 11048 "\x11\x03\x8E\x9C\xFD\xC9\x43\xC4" 11049 "\xC2\x19\xF0\x4A\x32\xEF\x0C\x2B" 11050 "\xD3\x2B\xE9\xD4\x4C\xDE\x95\xCF" 11051 "\x04\x03\xD3\x2C\x7F\x82\xC8\xFA" 11052 "\x0F\xD8\x7A\x39\x7B\x01\x41\x9C" 11053 "\x78\xB6\xC9\xBF\xF9\x78\x57\x88" 11054 "\xB1\xA5\xE1\xE0\xD9\x16\xD4\xC8" 11055 "\xEE\xC4\xBE\x7B\x55\x59\x00\x48" 11056 "\x1B\xBC\x14\xFA\x2A\x9D\xC9\x1C" 11057 "\xFB\x28\x3F\x95\xDD\xB7\xD6\xCE" 11058 "\x3A\x7F\x09\x0C\x0E\x69\x30\x7D" 11059 "\xBC\x68\x9C\x91\x2A\x59\x57\x04" 11060 "\xED\x1A\x1E\x00\xB1\x85\x92\x04" 11061 "\x28\x8C\x0C\x3C\xC1\xD5\x12\xF7" 11062 "\x4C\x3E\xB0\xE7\x86\x62\x68\x91" 11063 "\xFC\xC4\xE2\xCE\xA6\xDC\x5E\x93" 11064 "\x5D\x8D\x8C\x68\xB3\xB2\xB9\x64" 11065 "\x16\xB8\xC8\x6F\xD8\xEE\x21\xBD" 11066 "\xAC\x18\x0C\x7D\x0D\x05\xAB\xF1" 11067 "\xFA\xDD\xE2\x48\xDF\x4C\x02\x39" 11068 "\x69\xA1\x62\xBD\x49\x3A\x9D\x91" 11069 "\x30\x70\x56\xA4\x37\xDD\x7C\xC0" 11070 "\x0A\xA3\x30\x10\x26\x25\x41\x2C", 11071 .len = 496, 11072 }, 11073 }; 11074 11075 static const struct cipher_testvec tf_ctr_tv_template[] = { 11076 { /* Generated with Crypto++ */ 11077 .key = "\x85\x62\x3F\x1C\xF9\xD6\x1C\xF9" 11078 "\xD6\xB3\x90\x6D\x4A\x90\x6D\x4A" 11079 "\x27\x04\xE1\x27\x04\xE1\xBE\x9B" 11080 "\x78\xBE\x9B\x78\x55\x32\x0F\x55", 11081 .klen = 32, 11082 .iv = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F" 11083 "\xC4\x29\x8E\xF3\x35\x9A\xFF\x64", 11084 .iv_out = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F" 11085 "\xC4\x29\x8E\xF3\x35\x9A\xFF\x83", 11086 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 11087 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 11088 "\x3A\xD1\x45\xDC\x73\x0A\x7E\x15" 11089 "\xAC\x20\xB7\x4E\xE5\x59\xF0\x87" 11090 "\x1E\x92\x29\xC0\x34\xCB\x62\xF9" 11091 "\x6D\x04\x9B\x0F\xA6\x3D\xD4\x48" 11092 "\xDF\x76\x0D\x81\x18\xAF\x23\xBA" 11093 "\x51\xE8\x5C\xF3\x8A\x21\x95\x2C" 11094 "\xC3\x37\xCE\x65\xFC\x70\x07\x9E" 11095 "\x12\xA9\x40\xD7\x4B\xE2\x79\x10" 11096 "\x84\x1B\xB2\x26\xBD\x54\xEB\x5F" 11097 "\xF6\x8D\x01\x98\x2F\xC6\x3A\xD1" 11098 "\x68\xFF\x73\x0A\xA1\x15\xAC\x43" 11099 "\xDA\x4E\xE5\x7C\x13\x87\x1E\xB5" 11100 "\x29\xC0\x57\xEE\x62\xF9\x90\x04" 11101 "\x9B\x32\xC9\x3D\xD4\x6B\x02\x76" 11102 "\x0D\xA4\x18\xAF\x46\xDD\x51\xE8" 11103 "\x7F\x16\x8A\x21\xB8\x2C\xC3\x5A" 11104 "\xF1\x65\xFC\x93\x07\x9E\x35\xCC" 11105 "\x40\xD7\x6E\x05\x79\x10\xA7\x1B" 11106 "\xB2\x49\xE0\x54\xEB\x82\x19\x8D" 11107 "\x24\xBB\x2F\xC6\x5D\xF4\x68\xFF" 11108 "\x96\x0A\xA1\x38\xCF\x43\xDA\x71" 11109 "\x08\x7C\x13\xAA\x1E\xB5\x4C\xE3" 11110 "\x57\xEE\x85\x1C\x90\x27\xBE\x32" 11111 "\xC9\x60\xF7\x6B\x02\x99\x0D\xA4" 11112 "\x3B\xD2\x46\xDD\x74\x0B\x7F\x16" 11113 "\xAD\x21\xB8\x4F\xE6\x5A\xF1\x88" 11114 "\x1F\x93\x2A\xC1\x35\xCC\x63\xFA" 11115 "\x6E\x05\x9C\x10\xA7\x3E\xD5\x49" 11116 "\xE0\x77\x0E\x82\x19\xB0\x24\xBB" 11117 "\x52\xE9\x5D\xF4\x8B\x22\x96\x2D" 11118 "\xC4\x38\xCF\x66\xFD\x71\x08\x9F" 11119 "\x13\xAA\x41\xD8\x4C\xE3\x7A\x11" 11120 "\x85\x1C\xB3\x27\xBE\x55\xEC\x60" 11121 "\xF7\x8E\x02\x99\x30\xC7\x3B\xD2" 11122 "\x69\x00\x74\x0B\xA2\x16\xAD\x44" 11123 "\xDB\x4F\xE6\x7D\x14\x88\x1F\xB6" 11124 "\x2A\xC1\x58\xEF\x63\xFA\x91\x05" 11125 "\x9C\x33\xCA\x3E\xD5\x6C\x03\x77" 11126 "\x0E\xA5\x19\xB0\x47\xDE\x52\xE9" 11127 "\x80\x17\x8B\x22\xB9\x2D\xC4\x5B" 11128 "\xF2\x66\xFD\x94\x08\x9F\x36\xCD" 11129 "\x41\xD8\x6F\x06\x7A\x11\xA8\x1C" 11130 "\xB3\x4A\xE1\x55\xEC\x83\x1A\x8E" 11131 "\x25\xBC\x30\xC7\x5E\xF5\x69\x00" 11132 "\x97\x0B\xA2\x39\xD0\x44\xDB\x72" 11133 "\x09\x7D\x14\xAB\x1F\xB6\x4D\xE4" 11134 "\x58\xEF\x86\x1D\x91\x28\xBF\x33" 11135 "\xCA\x61\xF8\x6C\x03\x9A\x0E\xA5" 11136 "\x3C\xD3\x47\xDE\x75\x0C\x80\x17" 11137 "\xAE\x22\xB9\x50\xE7\x5B\xF2\x89" 11138 "\x20\x94\x2B\xC2\x36\xCD\x64\xFB" 11139 "\x6F\x06\x9D\x11\xA8\x3F\xD6\x4A" 11140 "\xE1\x78\x0F\x83\x1A\xB1\x25\xBC" 11141 "\x53\xEA\x5E\xF5\x8C\x00\x97\x2E" 11142 "\xC5\x39\xD0\x67\xFE\x72\x09\xA0" 11143 "\x14\xAB\x42\xD9\x4D\xE4\x7B\x12" 11144 "\x86\x1D\xB4\x28\xBF\x56\xED\x61" 11145 "\xF8\x8F\x03\x9A\x31\xC8\x3C\xD3" 11146 "\x6A\x01\x75\x0C\xA3\x17\xAE\x45" 11147 "\xDC\x50\xE7\x7E\x15\x89\x20\xB7", 11148 .ctext = "\xDF\xDD\x69\xFA\xB0\x2E\xFD\xFE" 11149 "\x70\x9E\xC5\x4B\xC9\xD4\xA1\x30" 11150 "\x26\x9B\x89\xA1\xEE\x43\xE0\x52" 11151 "\x55\x17\x4E\xC7\x0E\x33\x1F\xF1" 11152 "\x9F\x8D\x40\x9F\x24\xFD\x92\xA0" 11153 "\xBC\x8F\x35\xDD\x67\x38\xD8\xAA" 11154 "\xCF\xF8\x48\xCA\xFB\xE4\x5C\x60" 11155 "\x01\x41\x21\x12\x38\xAB\x52\x4F" 11156 "\xA8\x57\x20\xE0\x21\x6A\x17\x0D" 11157 "\x0E\xF9\x8E\x49\x42\x00\x3C\x94" 11158 "\x14\xC0\xD0\x8D\x8A\x98\xEB\x29" 11159 "\xEC\xAE\x96\x44\xC0\x3C\x48\xDC" 11160 "\x29\x35\x25\x2F\xE7\x11\x6C\x68" 11161 "\xC8\x67\x0A\x2F\xF4\x07\xBE\xF9" 11162 "\x2C\x31\x87\x40\xAB\xB2\xB6\xFA" 11163 "\xD2\xC9\x6D\x5C\x50\xE9\xE6\x7E" 11164 "\xE3\x0A\xD2\xD5\x6D\x8D\x64\x9E" 11165 "\x70\xCE\x03\x76\xDD\xE0\xF0\x8C" 11166 "\x84\x86\x8B\x6A\xFE\xC7\xF9\x69" 11167 "\x2E\xFE\xFC\xC2\xC4\x1A\x55\x58" 11168 "\xB3\xBE\xE2\x7E\xED\x39\x42\x6C" 11169 "\xB4\x42\x97\x9A\xEC\xE1\x0A\x06" 11170 "\x02\xC5\x03\x9D\xC4\x48\x15\x66" 11171 "\x35\x6A\xC2\xC9\xA2\x26\x30\xBB" 11172 "\xDB\x2D\xC8\x08\x2B\xA0\x29\x1A" 11173 "\x23\x61\x48\xEA\x80\x04\x27\xAA" 11174 "\x69\x49\xE8\xE8\x4A\x83\x6B\x5A" 11175 "\xCA\x7C\xD3\xB1\xB5\x0B\xCC\x23" 11176 "\x74\x1F\xA9\x87\xCD\xED\xC0\x2D" 11177 "\xBF\xEB\xCF\x16\x2D\x2A\x2E\x1D" 11178 "\x96\xBA\x36\x11\x45\x41\xDA\xCE" 11179 "\xA4\x48\x80\x8B\x06\xF4\x98\x89" 11180 "\x8B\x23\x08\x53\xF4\xD4\x5A\x24" 11181 "\x8B\xF8\x43\x73\xD1\xEE\xC4\xB0" 11182 "\xF8\xFE\x09\x0C\x75\x05\x38\x0B" 11183 "\x7C\x81\xDE\x9D\xE4\x61\x37\x63" 11184 "\x63\xAD\x12\xD2\x04\xB9\xCE\x45" 11185 "\x5A\x1A\x6E\xB3\x78\x2A\xA4\x74" 11186 "\x86\xD0\xE3\xFF\xDA\x38\x9C\xB5" 11187 "\xB8\xB1\xDB\x38\x2F\xC5\x6A\xB4" 11188 "\xEB\x6E\x96\xE8\x43\x80\xB5\x51" 11189 "\x61\x2D\x48\xAA\x07\x65\x11\x8C" 11190 "\x48\xE3\x90\x7E\x78\x3A\xEC\x97" 11191 "\x05\x3D\x84\xE7\x90\x2B\xAA\xBD" 11192 "\x83\x29\x0E\x1A\x81\x73\x7B\xE0" 11193 "\x7A\x01\x4A\x37\x3B\x77\x7F\x8D" 11194 "\x49\xA4\x2F\x6E\xBE\x68\x99\x08" 11195 "\x99\xAA\x4C\x12\x04\xAE\x1F\x77" 11196 "\x35\x88\xF1\x65\x06\x0A\x0B\x4D" 11197 "\x47\xF9\x50\x38\x5D\x71\xF9\x6E" 11198 "\xDE\xEC\x61\x35\x2C\x4C\x96\x50" 11199 "\xE8\x28\x93\x9C\x7E\x01\xC6\x04" 11200 "\xB2\xD6\xBC\x6C\x17\xEB\xC1\x7D" 11201 "\x11\xE9\x43\x83\x76\xAA\x53\x37" 11202 "\x0C\x1D\x39\x89\x53\x72\x09\x7E" 11203 "\xD9\x85\x16\x04\xA5\x2C\x05\x6F" 11204 "\x17\x0C\x6E\x66\xAA\x84\xA7\xD9" 11205 "\xE2\xD9\xC4\xEB\x43\x3E\xB1\x8D" 11206 "\x7C\x36\xC7\x71\x70\x9C\x10\xD8" 11207 "\xE8\x47\x2A\x4D\xFD\xA1\xBC\xE3" 11208 "\xB9\x32\xE2\xC1\x82\xAC\xFE\xCC" 11209 "\xC5\xC9\x7F\x9E\xCF\x33\x7A\xDF", 11210 .len = 496, 11211 }, { /* Generated with Crypto++ */ 11212 .key = "\x85\x62\x3F\x1C\xF9\xD6\x1C\xF9" 11213 "\xD6\xB3\x90\x6D\x4A\x90\x6D\x4A" 11214 "\x27\x04\xE1\x27\x04\xE1\xBE\x9B" 11215 "\x78\xBE\x9B\x78\x55\x32\x0F\x55", 11216 .klen = 32, 11217 .iv = "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" 11218 "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFD", 11219 .iv_out = "\x00\x00\x00\x00\x00\x00\x00\x00" 11220 "\x00\x00\x00\x00\x00\x00\x00\x1C", 11221 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 11222 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 11223 "\x3A\xD1\x45\xDC\x73\x0A\x7E\x15" 11224 "\xAC\x20\xB7\x4E\xE5\x59\xF0\x87" 11225 "\x1E\x92\x29\xC0\x34\xCB\x62\xF9" 11226 "\x6D\x04\x9B\x0F\xA6\x3D\xD4\x48" 11227 "\xDF\x76\x0D\x81\x18\xAF\x23\xBA" 11228 "\x51\xE8\x5C\xF3\x8A\x21\x95\x2C" 11229 "\xC3\x37\xCE\x65\xFC\x70\x07\x9E" 11230 "\x12\xA9\x40\xD7\x4B\xE2\x79\x10" 11231 "\x84\x1B\xB2\x26\xBD\x54\xEB\x5F" 11232 "\xF6\x8D\x01\x98\x2F\xC6\x3A\xD1" 11233 "\x68\xFF\x73\x0A\xA1\x15\xAC\x43" 11234 "\xDA\x4E\xE5\x7C\x13\x87\x1E\xB5" 11235 "\x29\xC0\x57\xEE\x62\xF9\x90\x04" 11236 "\x9B\x32\xC9\x3D\xD4\x6B\x02\x76" 11237 "\x0D\xA4\x18\xAF\x46\xDD\x51\xE8" 11238 "\x7F\x16\x8A\x21\xB8\x2C\xC3\x5A" 11239 "\xF1\x65\xFC\x93\x07\x9E\x35\xCC" 11240 "\x40\xD7\x6E\x05\x79\x10\xA7\x1B" 11241 "\xB2\x49\xE0\x54\xEB\x82\x19\x8D" 11242 "\x24\xBB\x2F\xC6\x5D\xF4\x68\xFF" 11243 "\x96\x0A\xA1\x38\xCF\x43\xDA\x71" 11244 "\x08\x7C\x13\xAA\x1E\xB5\x4C\xE3" 11245 "\x57\xEE\x85\x1C\x90\x27\xBE\x32" 11246 "\xC9\x60\xF7\x6B\x02\x99\x0D\xA4" 11247 "\x3B\xD2\x46\xDD\x74\x0B\x7F\x16" 11248 "\xAD\x21\xB8\x4F\xE6\x5A\xF1\x88" 11249 "\x1F\x93\x2A\xC1\x35\xCC\x63\xFA" 11250 "\x6E\x05\x9C\x10\xA7\x3E\xD5\x49" 11251 "\xE0\x77\x0E\x82\x19\xB0\x24\xBB" 11252 "\x52\xE9\x5D\xF4\x8B\x22\x96\x2D" 11253 "\xC4\x38\xCF\x66\xFD\x71\x08\x9F" 11254 "\x13\xAA\x41\xD8\x4C\xE3\x7A\x11" 11255 "\x85\x1C\xB3\x27\xBE\x55\xEC\x60" 11256 "\xF7\x8E\x02\x99\x30\xC7\x3B\xD2" 11257 "\x69\x00\x74\x0B\xA2\x16\xAD\x44" 11258 "\xDB\x4F\xE6\x7D\x14\x88\x1F\xB6" 11259 "\x2A\xC1\x58\xEF\x63\xFA\x91\x05" 11260 "\x9C\x33\xCA\x3E\xD5\x6C\x03\x77" 11261 "\x0E\xA5\x19\xB0\x47\xDE\x52\xE9" 11262 "\x80\x17\x8B\x22\xB9\x2D\xC4\x5B" 11263 "\xF2\x66\xFD\x94\x08\x9F\x36\xCD" 11264 "\x41\xD8\x6F\x06\x7A\x11\xA8\x1C" 11265 "\xB3\x4A\xE1\x55\xEC\x83\x1A\x8E" 11266 "\x25\xBC\x30\xC7\x5E\xF5\x69\x00" 11267 "\x97\x0B\xA2\x39\xD0\x44\xDB\x72" 11268 "\x09\x7D\x14\xAB\x1F\xB6\x4D\xE4" 11269 "\x58\xEF\x86\x1D\x91\x28\xBF\x33" 11270 "\xCA\x61\xF8\x6C\x03\x9A\x0E\xA5" 11271 "\x3C\xD3\x47\xDE\x75\x0C\x80\x17" 11272 "\xAE\x22\xB9\x50\xE7\x5B\xF2\x89" 11273 "\x20\x94\x2B\xC2\x36\xCD\x64\xFB" 11274 "\x6F\x06\x9D\x11\xA8\x3F\xD6\x4A" 11275 "\xE1\x78\x0F\x83\x1A\xB1\x25\xBC" 11276 "\x53\xEA\x5E\xF5\x8C\x00\x97\x2E" 11277 "\xC5\x39\xD0\x67\xFE\x72\x09\xA0" 11278 "\x14\xAB\x42\xD9\x4D\xE4\x7B\x12" 11279 "\x86\x1D\xB4\x28\xBF\x56\xED\x61" 11280 "\xF8\x8F\x03\x9A\x31\xC8\x3C\xD3" 11281 "\x6A\x01\x75\x0C\xA3\x17\xAE\x45" 11282 "\xDC\x50\xE7\x7E\x15\x89\x20\xB7", 11283 .ctext = "\xEB\x44\xAF\x49\x27\xB8\xFB\x44" 11284 "\x4C\xA6\xC3\x0C\x8B\xD0\x01\x0C" 11285 "\x53\xC8\x16\x38\xDE\x40\x4F\x91" 11286 "\x25\x6D\x4C\xA0\x9A\x87\x1E\xDA" 11287 "\x88\x7E\x89\xE9\x67\x2B\x83\xA2" 11288 "\x5F\x2E\x23\x3E\x45\xB9\x77\x7B" 11289 "\xA6\x7E\x47\x36\x81\x9F\x9B\xF3" 11290 "\xE0\xF0\xD7\x47\xA9\xC8\xEF\x33" 11291 "\x0C\x43\xFE\x67\x50\x0A\x2C\x3E" 11292 "\xA0\xE1\x25\x8E\x80\x07\x4A\xC0" 11293 "\x64\x89\x9F\x6A\x27\x96\x07\xA6" 11294 "\x9B\xC8\x1B\x21\x60\xAE\x5D\x01" 11295 "\xE2\xCD\xC8\xAA\x6C\x9D\x1C\x34" 11296 "\x39\x18\x09\xA4\x82\x59\x78\xE7" 11297 "\xFC\x59\x65\xF2\x94\xFF\xFB\xE2" 11298 "\x3C\xDA\xB1\x90\x95\xBF\x91\xE3" 11299 "\xE6\x87\x31\x9E\x16\x85\xAD\xB1" 11300 "\x4C\xAE\x43\x4D\x19\x58\xB5\x5E" 11301 "\x2E\xF5\x09\xAA\x39\xF4\xC0\xB3" 11302 "\xD4\x4D\xDB\x73\x7A\xD4\xF1\xBF" 11303 "\x89\x16\x4D\x2D\xA2\x26\x33\x72" 11304 "\x18\x33\x7E\xD6\xD2\x16\xA4\x54" 11305 "\xF4\x8C\xB3\x52\xDF\x21\x9C\xEB" 11306 "\xBF\x49\xD3\xF9\x05\x06\xCB\xD2" 11307 "\xA9\xD2\x3B\x6E\x19\x8C\xBC\x19" 11308 "\xAB\x89\xD6\xD8\xCD\x56\x89\x5E" 11309 "\xAC\x00\xE3\x50\x63\x4A\x80\x9A" 11310 "\x05\xBC\x50\x39\xD3\x32\xD9\x0D" 11311 "\xE3\x20\x0D\x75\x54\xEC\xE6\x31" 11312 "\x14\xB9\x3A\x59\x00\x43\x37\x8E" 11313 "\x8C\x5A\x79\x62\x14\x76\x8A\xAE" 11314 "\x8F\xCC\xA1\x6C\x38\x78\xDD\x2D" 11315 "\x8B\x6D\xEA\xBD\x7B\x25\xFF\x60" 11316 "\xC9\x87\xB1\x79\x1E\xA5\x86\x68" 11317 "\x81\xB4\xE2\xC1\x05\x7D\x3A\x73" 11318 "\xD0\xDA\x75\x77\x9E\x05\x27\xF1" 11319 "\x08\xA9\x66\x64\x6C\xBC\x82\x17" 11320 "\x2C\x23\x5F\x62\x4D\x02\x1A\x58" 11321 "\xE7\xB7\x23\x6D\xE2\x20\xDA\xEF" 11322 "\xB4\xB3\x3F\xB2\x2B\x69\x98\x83" 11323 "\x95\x87\x13\x57\x60\xD7\xB5\xB1" 11324 "\xEE\x0A\x2F\x95\x36\x4C\x76\x5D" 11325 "\x5F\xD9\x19\xED\xB9\xA5\x48\xBF" 11326 "\xC8\xAB\x0F\x71\xCC\x61\x8E\x0A" 11327 "\xD0\x29\x44\xA8\xB9\xC1\xE8\xC8" 11328 "\xC9\xA8\x28\x81\xFB\x50\xF2\xF0" 11329 "\x26\xAE\x39\xB8\x91\xCD\xA8\xAC" 11330 "\xDE\x55\x1B\x50\x14\x53\x44\x17" 11331 "\x54\x46\xFC\xB1\xE4\x07\x6B\x9A" 11332 "\x01\x14\xF0\x2E\x2E\xDB\x46\x1B" 11333 "\x1A\x09\x97\xA9\xB6\x97\x79\x06" 11334 "\xFB\xCB\x85\xCF\xDD\xA1\x41\xB1" 11335 "\x00\xAA\xF7\xE0\x89\x73\xFB\xE5" 11336 "\xBF\x84\xDB\xC9\xCD\xC4\xA2\x0D" 11337 "\x3B\xAC\xF9\xDF\x96\xBF\x88\x23" 11338 "\x41\x67\xA1\x24\x99\x7E\xCC\x9B" 11339 "\x02\x8F\x6A\x49\xF6\x25\xBA\x7A" 11340 "\xF4\x78\xFD\x79\x62\x63\x4F\x14" 11341 "\xD6\x11\x11\x04\x05\x5F\x7E\xEA" 11342 "\x4C\xB6\xF8\xF4\x5F\x48\x52\x54" 11343 "\x94\x63\xA8\x4E\xCF\xD2\x1B\x1B" 11344 "\x22\x18\x6A\xAF\x6E\x3E\xE1\x0D", 11345 .len = 496, 11346 }, { /* Generated with Crypto++ */ 11347 .key = "\x85\x62\x3F\x1C\xF9\xD6\x1C\xF9" 11348 "\xD6\xB3\x90\x6D\x4A\x90\x6D\x4A" 11349 "\x27\x04\xE1\x27\x04\xE1\xBE\x9B" 11350 "\x78\xBE\x9B\x78\x55\x32\x0F\x55", 11351 .klen = 32, 11352 .iv = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F" 11353 "\xC4\x29\x8E\xF3\x35\x9A\xFF\x64", 11354 .iv_out = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F" 11355 "\xC4\x29\x8E\xF3\x35\x9A\xFF\x84", 11356 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 11357 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 11358 "\x3A\xD1\x45\xDC\x73\x0A\x7E\x15" 11359 "\xAC\x20\xB7\x4E\xE5\x59\xF0\x87" 11360 "\x1E\x92\x29\xC0\x34\xCB\x62\xF9" 11361 "\x6D\x04\x9B\x0F\xA6\x3D\xD4\x48" 11362 "\xDF\x76\x0D\x81\x18\xAF\x23\xBA" 11363 "\x51\xE8\x5C\xF3\x8A\x21\x95\x2C" 11364 "\xC3\x37\xCE\x65\xFC\x70\x07\x9E" 11365 "\x12\xA9\x40\xD7\x4B\xE2\x79\x10" 11366 "\x84\x1B\xB2\x26\xBD\x54\xEB\x5F" 11367 "\xF6\x8D\x01\x98\x2F\xC6\x3A\xD1" 11368 "\x68\xFF\x73\x0A\xA1\x15\xAC\x43" 11369 "\xDA\x4E\xE5\x7C\x13\x87\x1E\xB5" 11370 "\x29\xC0\x57\xEE\x62\xF9\x90\x04" 11371 "\x9B\x32\xC9\x3D\xD4\x6B\x02\x76" 11372 "\x0D\xA4\x18\xAF\x46\xDD\x51\xE8" 11373 "\x7F\x16\x8A\x21\xB8\x2C\xC3\x5A" 11374 "\xF1\x65\xFC\x93\x07\x9E\x35\xCC" 11375 "\x40\xD7\x6E\x05\x79\x10\xA7\x1B" 11376 "\xB2\x49\xE0\x54\xEB\x82\x19\x8D" 11377 "\x24\xBB\x2F\xC6\x5D\xF4\x68\xFF" 11378 "\x96\x0A\xA1\x38\xCF\x43\xDA\x71" 11379 "\x08\x7C\x13\xAA\x1E\xB5\x4C\xE3" 11380 "\x57\xEE\x85\x1C\x90\x27\xBE\x32" 11381 "\xC9\x60\xF7\x6B\x02\x99\x0D\xA4" 11382 "\x3B\xD2\x46\xDD\x74\x0B\x7F\x16" 11383 "\xAD\x21\xB8\x4F\xE6\x5A\xF1\x88" 11384 "\x1F\x93\x2A\xC1\x35\xCC\x63\xFA" 11385 "\x6E\x05\x9C\x10\xA7\x3E\xD5\x49" 11386 "\xE0\x77\x0E\x82\x19\xB0\x24\xBB" 11387 "\x52\xE9\x5D\xF4\x8B\x22\x96\x2D" 11388 "\xC4\x38\xCF\x66\xFD\x71\x08\x9F" 11389 "\x13\xAA\x41\xD8\x4C\xE3\x7A\x11" 11390 "\x85\x1C\xB3\x27\xBE\x55\xEC\x60" 11391 "\xF7\x8E\x02\x99\x30\xC7\x3B\xD2" 11392 "\x69\x00\x74\x0B\xA2\x16\xAD\x44" 11393 "\xDB\x4F\xE6\x7D\x14\x88\x1F\xB6" 11394 "\x2A\xC1\x58\xEF\x63\xFA\x91\x05" 11395 "\x9C\x33\xCA\x3E\xD5\x6C\x03\x77" 11396 "\x0E\xA5\x19\xB0\x47\xDE\x52\xE9" 11397 "\x80\x17\x8B\x22\xB9\x2D\xC4\x5B" 11398 "\xF2\x66\xFD\x94\x08\x9F\x36\xCD" 11399 "\x41\xD8\x6F\x06\x7A\x11\xA8\x1C" 11400 "\xB3\x4A\xE1\x55\xEC\x83\x1A\x8E" 11401 "\x25\xBC\x30\xC7\x5E\xF5\x69\x00" 11402 "\x97\x0B\xA2\x39\xD0\x44\xDB\x72" 11403 "\x09\x7D\x14\xAB\x1F\xB6\x4D\xE4" 11404 "\x58\xEF\x86\x1D\x91\x28\xBF\x33" 11405 "\xCA\x61\xF8\x6C\x03\x9A\x0E\xA5" 11406 "\x3C\xD3\x47\xDE\x75\x0C\x80\x17" 11407 "\xAE\x22\xB9\x50\xE7\x5B\xF2\x89" 11408 "\x20\x94\x2B\xC2\x36\xCD\x64\xFB" 11409 "\x6F\x06\x9D\x11\xA8\x3F\xD6\x4A" 11410 "\xE1\x78\x0F\x83\x1A\xB1\x25\xBC" 11411 "\x53\xEA\x5E\xF5\x8C\x00\x97\x2E" 11412 "\xC5\x39\xD0\x67\xFE\x72\x09\xA0" 11413 "\x14\xAB\x42\xD9\x4D\xE4\x7B\x12" 11414 "\x86\x1D\xB4\x28\xBF\x56\xED\x61" 11415 "\xF8\x8F\x03\x9A\x31\xC8\x3C\xD3" 11416 "\x6A\x01\x75\x0C\xA3\x17\xAE\x45" 11417 "\xDC\x50\xE7\x7E\x15\x89\x20\xB7" 11418 "\x2B\xC2\x59", 11419 .ctext = "\xDF\xDD\x69\xFA\xB0\x2E\xFD\xFE" 11420 "\x70\x9E\xC5\x4B\xC9\xD4\xA1\x30" 11421 "\x26\x9B\x89\xA1\xEE\x43\xE0\x52" 11422 "\x55\x17\x4E\xC7\x0E\x33\x1F\xF1" 11423 "\x9F\x8D\x40\x9F\x24\xFD\x92\xA0" 11424 "\xBC\x8F\x35\xDD\x67\x38\xD8\xAA" 11425 "\xCF\xF8\x48\xCA\xFB\xE4\x5C\x60" 11426 "\x01\x41\x21\x12\x38\xAB\x52\x4F" 11427 "\xA8\x57\x20\xE0\x21\x6A\x17\x0D" 11428 "\x0E\xF9\x8E\x49\x42\x00\x3C\x94" 11429 "\x14\xC0\xD0\x8D\x8A\x98\xEB\x29" 11430 "\xEC\xAE\x96\x44\xC0\x3C\x48\xDC" 11431 "\x29\x35\x25\x2F\xE7\x11\x6C\x68" 11432 "\xC8\x67\x0A\x2F\xF4\x07\xBE\xF9" 11433 "\x2C\x31\x87\x40\xAB\xB2\xB6\xFA" 11434 "\xD2\xC9\x6D\x5C\x50\xE9\xE6\x7E" 11435 "\xE3\x0A\xD2\xD5\x6D\x8D\x64\x9E" 11436 "\x70\xCE\x03\x76\xDD\xE0\xF0\x8C" 11437 "\x84\x86\x8B\x6A\xFE\xC7\xF9\x69" 11438 "\x2E\xFE\xFC\xC2\xC4\x1A\x55\x58" 11439 "\xB3\xBE\xE2\x7E\xED\x39\x42\x6C" 11440 "\xB4\x42\x97\x9A\xEC\xE1\x0A\x06" 11441 "\x02\xC5\x03\x9D\xC4\x48\x15\x66" 11442 "\x35\x6A\xC2\xC9\xA2\x26\x30\xBB" 11443 "\xDB\x2D\xC8\x08\x2B\xA0\x29\x1A" 11444 "\x23\x61\x48\xEA\x80\x04\x27\xAA" 11445 "\x69\x49\xE8\xE8\x4A\x83\x6B\x5A" 11446 "\xCA\x7C\xD3\xB1\xB5\x0B\xCC\x23" 11447 "\x74\x1F\xA9\x87\xCD\xED\xC0\x2D" 11448 "\xBF\xEB\xCF\x16\x2D\x2A\x2E\x1D" 11449 "\x96\xBA\x36\x11\x45\x41\xDA\xCE" 11450 "\xA4\x48\x80\x8B\x06\xF4\x98\x89" 11451 "\x8B\x23\x08\x53\xF4\xD4\x5A\x24" 11452 "\x8B\xF8\x43\x73\xD1\xEE\xC4\xB0" 11453 "\xF8\xFE\x09\x0C\x75\x05\x38\x0B" 11454 "\x7C\x81\xDE\x9D\xE4\x61\x37\x63" 11455 "\x63\xAD\x12\xD2\x04\xB9\xCE\x45" 11456 "\x5A\x1A\x6E\xB3\x78\x2A\xA4\x74" 11457 "\x86\xD0\xE3\xFF\xDA\x38\x9C\xB5" 11458 "\xB8\xB1\xDB\x38\x2F\xC5\x6A\xB4" 11459 "\xEB\x6E\x96\xE8\x43\x80\xB5\x51" 11460 "\x61\x2D\x48\xAA\x07\x65\x11\x8C" 11461 "\x48\xE3\x90\x7E\x78\x3A\xEC\x97" 11462 "\x05\x3D\x84\xE7\x90\x2B\xAA\xBD" 11463 "\x83\x29\x0E\x1A\x81\x73\x7B\xE0" 11464 "\x7A\x01\x4A\x37\x3B\x77\x7F\x8D" 11465 "\x49\xA4\x2F\x6E\xBE\x68\x99\x08" 11466 "\x99\xAA\x4C\x12\x04\xAE\x1F\x77" 11467 "\x35\x88\xF1\x65\x06\x0A\x0B\x4D" 11468 "\x47\xF9\x50\x38\x5D\x71\xF9\x6E" 11469 "\xDE\xEC\x61\x35\x2C\x4C\x96\x50" 11470 "\xE8\x28\x93\x9C\x7E\x01\xC6\x04" 11471 "\xB2\xD6\xBC\x6C\x17\xEB\xC1\x7D" 11472 "\x11\xE9\x43\x83\x76\xAA\x53\x37" 11473 "\x0C\x1D\x39\x89\x53\x72\x09\x7E" 11474 "\xD9\x85\x16\x04\xA5\x2C\x05\x6F" 11475 "\x17\x0C\x6E\x66\xAA\x84\xA7\xD9" 11476 "\xE2\xD9\xC4\xEB\x43\x3E\xB1\x8D" 11477 "\x7C\x36\xC7\x71\x70\x9C\x10\xD8" 11478 "\xE8\x47\x2A\x4D\xFD\xA1\xBC\xE3" 11479 "\xB9\x32\xE2\xC1\x82\xAC\xFE\xCC" 11480 "\xC5\xC9\x7F\x9E\xCF\x33\x7A\xDF" 11481 "\x6C\x82\x9D", 11482 .len = 499, 11483 }, 11484 }; 11485 11486 static const struct cipher_testvec tf_lrw_tv_template[] = { 11487 /* Generated from AES-LRW test vectors */ 11488 { 11489 .key = "\x45\x62\xac\x25\xf8\x28\x17\x6d" 11490 "\x4c\x26\x84\x14\xb5\x68\x01\x85" 11491 "\x25\x8e\x2a\x05\xe7\x3e\x9d\x03" 11492 "\xee\x5a\x83\x0c\xcc\x09\x4c\x87", 11493 .klen = 32, 11494 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 11495 "\x00\x00\x00\x00\x00\x00\x00\x01", 11496 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 11497 "\x38\x39\x41\x42\x43\x44\x45\x46", 11498 .ctext = "\xa1\x6c\x50\x69\x26\xa4\xef\x7b" 11499 "\x7c\xc6\x91\xeb\x72\xdd\x9b\xee", 11500 .len = 16, 11501 }, { 11502 .key = "\x59\x70\x47\x14\xf5\x57\x47\x8c" 11503 "\xd7\x79\xe8\x0f\x54\x88\x79\x44" 11504 "\x0d\x48\xf0\xb7\xb1\x5a\x53\xea" 11505 "\x1c\xaa\x6b\x29\xc2\xca\xfb\xaf", 11506 .klen = 32, 11507 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 11508 "\x00\x00\x00\x00\x00\x00\x00\x02", 11509 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 11510 "\x38\x39\x41\x42\x43\x44\x45\x46", 11511 .ctext = "\xab\x72\x0a\xad\x3b\x0c\xf0\xc9" 11512 "\x42\x2f\xf1\xae\xf1\x3c\xb1\xbd", 11513 .len = 16, 11514 }, { 11515 .key = "\xd8\x2a\x91\x34\xb2\x6a\x56\x50" 11516 "\x30\xfe\x69\xe2\x37\x7f\x98\x47" 11517 "\xcd\xf9\x0b\x16\x0c\x64\x8f\xb6" 11518 "\xb0\x0d\x0d\x1b\xae\x85\x87\x1f", 11519 .klen = 32, 11520 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 11521 "\x00\x00\x00\x02\x00\x00\x00\x00", 11522 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 11523 "\x38\x39\x41\x42\x43\x44\x45\x46", 11524 .ctext = "\x85\xa7\x56\x67\x08\xfa\x42\xe1" 11525 "\x22\xe6\x82\xfc\xd9\xb4\xd7\xd4", 11526 .len = 16, 11527 }, { 11528 .key = "\x0f\x6a\xef\xf8\xd3\xd2\xbb\x15" 11529 "\x25\x83\xf7\x3c\x1f\x01\x28\x74" 11530 "\xca\xc6\xbc\x35\x4d\x4a\x65\x54" 11531 "\x90\xae\x61\xcf\x7b\xae\xbd\xcc" 11532 "\xad\xe4\x94\xc5\x4a\x29\xae\x70", 11533 .klen = 40, 11534 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 11535 "\x00\x00\x00\x00\x00\x00\x00\x01", 11536 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 11537 "\x38\x39\x41\x42\x43\x44\x45\x46", 11538 .ctext = "\xd2\xaf\x69\x35\x24\x1d\x0e\x1c" 11539 "\x84\x8b\x05\xe4\xa2\x2f\x16\xf5", 11540 .len = 16, 11541 }, { 11542 .key = "\x8a\xd4\xee\x10\x2f\xbd\x81\xff" 11543 "\xf8\x86\xce\xac\x93\xc5\xad\xc6" 11544 "\xa0\x19\x07\xc0\x9d\xf7\xbb\xdd" 11545 "\x52\x13\xb2\xb7\xf0\xff\x11\xd8" 11546 "\xd6\x08\xd0\xcd\x2e\xb1\x17\x6f", 11547 .klen = 40, 11548 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 11549 "\x00\x00\x00\x02\x00\x00\x00\x00", 11550 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 11551 "\x38\x39\x41\x42\x43\x44\x45\x46", 11552 .ctext = "\x4a\x23\x56\xd7\xff\x90\xd0\x9a" 11553 "\x0d\x7c\x26\xfc\xf0\xf0\xf6\xe4", 11554 .len = 16, 11555 }, { 11556 .key = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c" 11557 "\x23\x84\xcb\x1c\x77\xd6\x19\x5d" 11558 "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21" 11559 "\xa7\x9c\x21\xf8\xcb\x90\x02\x89" 11560 "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1" 11561 "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e", 11562 .klen = 48, 11563 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 11564 "\x00\x00\x00\x00\x00\x00\x00\x01", 11565 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 11566 "\x38\x39\x41\x42\x43\x44\x45\x46", 11567 .ctext = "\x30\xaf\x26\x05\x9d\x5d\x0a\x58" 11568 "\xe2\xe7\xce\x8a\xb2\x56\x6d\x76", 11569 .len = 16, 11570 }, { 11571 .key = "\xfb\x76\x15\xb2\x3d\x80\x89\x1d" 11572 "\xd4\x70\x98\x0b\xc7\x95\x84\xc8" 11573 "\xb2\xfb\x64\xce\x60\x97\x87\x8d" 11574 "\x17\xfc\xe4\x5a\x49\xe8\x30\xb7" 11575 "\x6e\x78\x17\xe7\x2d\x5e\x12\xd4" 11576 "\x60\x64\x04\x7a\xf1\x2f\x9e\x0c", 11577 .klen = 48, 11578 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 11579 "\x00\x00\x00\x02\x00\x00\x00\x00", 11580 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 11581 "\x38\x39\x41\x42\x43\x44\x45\x46", 11582 .ctext = "\xdf\xcf\xdc\xd2\xe1\xcf\x86\x75" 11583 "\x17\x66\x5e\x0c\x14\xa1\x3d\x40", 11584 .len = 16, 11585 }, { 11586 .key = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c" 11587 "\x23\x84\xcb\x1c\x77\xd6\x19\x5d" 11588 "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21" 11589 "\xa7\x9c\x21\xf8\xcb\x90\x02\x89" 11590 "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1" 11591 "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e", 11592 .klen = 48, 11593 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 11594 "\x00\x00\x00\x00\x00\x00\x00\x01", 11595 .ptext = "\x05\x11\xb7\x18\xab\xc6\x2d\xac" 11596 "\x70\x5d\xf6\x22\x94\xcd\xe5\x6c" 11597 "\x17\x6b\xf6\x1c\xf0\xf3\x6e\xf8" 11598 "\x50\x38\x1f\x71\x49\xb6\x57\xd6" 11599 "\x8f\xcb\x8d\x6b\xe3\xa6\x29\x90" 11600 "\xfe\x2a\x62\x82\xae\x6d\x8b\xf6" 11601 "\xad\x1e\x9e\x20\x5f\x38\xbe\x04" 11602 "\xda\x10\x8e\xed\xa2\xa4\x87\xab" 11603 "\xda\x6b\xb4\x0c\x75\xba\xd3\x7c" 11604 "\xc9\xac\x42\x31\x95\x7c\xc9\x04" 11605 "\xeb\xd5\x6e\x32\x69\x8a\xdb\xa6" 11606 "\x15\xd7\x3f\x4f\x2f\x66\x69\x03" 11607 "\x9c\x1f\x54\x0f\xde\x1f\xf3\x65" 11608 "\x4c\x96\x12\xed\x7c\x92\x03\x01" 11609 "\x6f\xbc\x35\x93\xac\xf1\x27\xf1" 11610 "\xb4\x96\x82\x5a\x5f\xb0\xa0\x50" 11611 "\x89\xa4\x8e\x66\x44\x85\xcc\xfd" 11612 "\x33\x14\x70\xe3\x96\xb2\xc3\xd3" 11613 "\xbb\x54\x5a\x1a\xf9\x74\xa2\xc5" 11614 "\x2d\x64\x75\xdd\xb4\x54\xe6\x74" 11615 "\x8c\xd3\x9d\x9e\x86\xab\x51\x53" 11616 "\xb7\x93\x3e\x6f\xd0\x4e\x2c\x40" 11617 "\xf6\xa8\x2e\x3e\x9d\xf4\x66\xa5" 11618 "\x76\x12\x73\x44\x1a\x56\xd7\x72" 11619 "\x88\xcd\x21\x8c\x4c\x0f\xfe\xda" 11620 "\x95\xe0\x3a\xa6\xa5\x84\x46\xcd" 11621 "\xd5\x3e\x9d\x3a\xe2\x67\xe6\x60" 11622 "\x1a\xe2\x70\x85\x58\xc2\x1b\x09" 11623 "\xe1\xd7\x2c\xca\xad\xa8\x8f\xf9" 11624 "\xac\xb3\x0e\xdb\xca\x2e\xe2\xb8" 11625 "\x51\x71\xd9\x3c\x6c\xf1\x56\xf8" 11626 "\xea\x9c\xf1\xfb\x0c\xe6\xb7\x10" 11627 "\x1c\xf8\xa9\x7c\xe8\x53\x35\xc1" 11628 "\x90\x3e\x76\x4a\x74\xa4\x21\x2c" 11629 "\xf6\x2c\x4e\x0f\x94\x3a\x88\x2e" 11630 "\x41\x09\x6a\x33\x7d\xf6\xdd\x3f" 11631 "\x8d\x23\x31\x74\x84\xeb\x88\x6e" 11632 "\xcc\xb9\xbc\x22\x83\x19\x07\x22" 11633 "\xa5\x2d\xdf\xa5\xf3\x80\x85\x78" 11634 "\x84\x39\x6a\x6d\x6a\x99\x4f\xa5" 11635 "\x15\xfe\x46\xb0\xe4\x6c\xa5\x41" 11636 "\x3c\xce\x8f\x42\x60\x71\xa7\x75" 11637 "\x08\x40\x65\x8a\x82\xbf\xf5\x43" 11638 "\x71\x96\xa9\x4d\x44\x8a\x20\xbe" 11639 "\xfa\x4d\xbb\xc0\x7d\x31\x96\x65" 11640 "\xe7\x75\xe5\x3e\xfd\x92\x3b\xc9" 11641 "\x55\xbb\x16\x7e\xf7\xc2\x8c\xa4" 11642 "\x40\x1d\xe5\xef\x0e\xdf\xe4\x9a" 11643 "\x62\x73\x65\xfd\x46\x63\x25\x3d" 11644 "\x2b\xaf\xe5\x64\xfe\xa5\x5c\xcf" 11645 "\x24\xf3\xb4\xac\x64\xba\xdf\x4b" 11646 "\xc6\x96\x7d\x81\x2d\x8d\x97\xf7" 11647 "\xc5\x68\x77\x84\x32\x2b\xcc\x85" 11648 "\x74\x96\xf0\x12\x77\x61\xb9\xeb" 11649 "\x71\xaa\x82\xcb\x1c\xdb\x89\xc8" 11650 "\xc6\xb5\xe3\x5c\x7d\x39\x07\x24" 11651 "\xda\x39\x87\x45\xc0\x2b\xbb\x01" 11652 "\xac\xbc\x2a\x5c\x7f\xfc\xe8\xce" 11653 "\x6d\x9c\x6f\xed\xd3\xc1\xa1\xd6" 11654 "\xc5\x55\xa9\x66\x2f\xe1\xc8\x32" 11655 "\xa6\x5d\xa4\x3a\x98\x73\xe8\x45" 11656 "\xa4\xc7\xa8\xb4\xf6\x13\x03\xf6" 11657 "\xe9\x2e\xc4\x29\x0f\x84\xdb\xc4" 11658 "\x21\xc4\xc2\x75\x67\x89\x37\x0a", 11659 .ctext = "\x30\x38\xeb\xaf\x12\x43\x1a\x89" 11660 "\x62\xa2\x36\xe5\xcf\x77\x1e\xd9" 11661 "\x08\xc3\x0d\xdd\x95\xab\x19\x96" 11662 "\x27\x52\x41\xc3\xca\xfb\xf6\xee" 11663 "\x40\x2d\xdf\xdd\x00\x0c\xb9\x0a" 11664 "\x3a\xf0\xc0\xd1\xda\x63\x9e\x45" 11665 "\x42\xe9\x29\xc0\xb4\x07\xb4\x31" 11666 "\x66\x77\x72\xb5\xb6\xb3\x57\x46" 11667 "\x34\x9a\xfe\x03\xaf\x6b\x36\x07" 11668 "\x63\x8e\xc2\x5d\xa6\x0f\xb6\x7d" 11669 "\xfb\x6d\x82\x51\xb6\x98\xd0\x71" 11670 "\xe7\x10\x7a\xdf\xb2\xbd\xf1\x1d" 11671 "\x72\x2b\x54\x13\xe3\x6d\x79\x37" 11672 "\xa9\x39\x2c\xdf\x21\xab\x87\xd5" 11673 "\xee\xef\x9a\x12\x50\x39\x2e\x1b" 11674 "\x7d\xe6\x6a\x27\x48\xb9\xe7\xac" 11675 "\xaa\xcd\x79\x5f\xf2\xf3\xa0\x08" 11676 "\x6f\x2c\xf4\x0e\xd1\xb8\x89\x25" 11677 "\x31\x9d\xef\xb1\x1d\x27\x55\x04" 11678 "\xc9\x8c\xb7\x68\xdc\xb6\x67\x8a" 11679 "\xdb\xcf\x22\xf2\x3b\x6f\xce\xbb" 11680 "\x26\xbe\x4f\x27\x04\x42\xd1\x44" 11681 "\x4c\x08\xa3\x95\x4c\x7f\x1a\xaf" 11682 "\x1d\x28\x14\xfd\xb1\x1a\x34\x18" 11683 "\xf5\x1e\x28\x69\x95\x6a\x5a\xba" 11684 "\x8e\xb2\x58\x1d\x28\x17\x13\x3d" 11685 "\x38\x7d\x14\x8d\xab\x5d\xf9\xe8" 11686 "\x3c\x0f\x2b\x0d\x2b\x08\xb4\x4b" 11687 "\x6b\x0d\xc8\xa7\x84\xc2\x3a\x1a" 11688 "\xb7\xbd\xda\x92\x29\xb8\x5b\x5a" 11689 "\x63\xa5\x99\x82\x09\x72\x8f\xc6" 11690 "\xa4\x62\x24\x69\x8c\x2d\x26\x00" 11691 "\x99\x83\x91\xd6\xc6\xcf\x57\x67" 11692 "\x38\xea\xf2\xfc\x29\xe0\x73\x39" 11693 "\xf9\x13\x94\x6d\xe2\x58\x28\x75" 11694 "\x3e\xae\x71\x90\x07\x70\x1c\x38" 11695 "\x5b\x4c\x1e\xb5\xa5\x3b\x20\xef" 11696 "\xb1\x4c\x3e\x1a\x72\x62\xbb\x22" 11697 "\x82\x09\xe3\x18\x3f\x4f\x48\xfc" 11698 "\xdd\xac\xfc\xb6\x09\xdb\xd2\x7b" 11699 "\xd6\xb7\x7e\x41\x2f\x14\xf5\x0e" 11700 "\xc3\xac\x4a\xed\xe7\x82\xef\x31" 11701 "\x1f\x1a\x51\x1e\x29\x60\xc8\x98" 11702 "\x93\x51\x1d\x3d\x62\x59\x83\x82" 11703 "\x0c\xf1\xd7\x8d\xac\x33\x44\x81" 11704 "\x3c\x59\xb7\xd4\x5b\x65\x82\xc4" 11705 "\xec\xdc\x24\xfd\x0e\x1a\x79\x94" 11706 "\x34\xb0\x62\xfa\x98\x49\x26\x1f" 11707 "\xf4\x9e\x40\x44\x5b\x1f\xf8\xbe" 11708 "\x36\xff\xc6\xc6\x9d\xf2\xd6\xcc" 11709 "\x63\x93\x29\xb9\x0b\x6d\xd7\x6c" 11710 "\xdb\xf6\x21\x80\xf7\x5a\x37\x15" 11711 "\x0c\xe3\x36\xc8\x74\x75\x20\x91" 11712 "\xdf\x52\x2d\x0c\xe7\x45\xff\x46" 11713 "\xb3\xf4\xec\xc2\xbd\xd3\x37\xb6" 11714 "\x26\xa2\x5d\x7d\x61\xbf\x10\x46" 11715 "\x57\x8d\x05\x96\x70\x0b\xd6\x41" 11716 "\x5c\xe9\xd3\x54\x81\x39\x3a\xdd" 11717 "\x5f\x92\x81\x6e\x35\x03\xd4\x72" 11718 "\x3d\x5a\xe7\xb9\x3b\x0c\x84\x23" 11719 "\x45\x5d\xec\x72\xc1\x52\xef\x2e" 11720 "\x81\x00\xd3\xfe\x4c\x3c\x05\x61" 11721 "\x80\x18\xc4\x6c\x03\xd3\xb7\xba" 11722 "\x11\xd7\xb8\x6e\xea\xe1\x80\x30", 11723 .len = 512, 11724 }, 11725 }; 11726 11727 static const struct cipher_testvec tf_xts_tv_template[] = { 11728 /* Generated from AES-XTS test vectors */ 11729 { 11730 .key = "\x00\x00\x00\x00\x00\x00\x00\x00" 11731 "\x00\x00\x00\x00\x00\x00\x00\x00" 11732 "\x00\x00\x00\x00\x00\x00\x00\x00" 11733 "\x00\x00\x00\x00\x00\x00\x00\x00", 11734 .klen = 32, 11735 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 11736 "\x00\x00\x00\x00\x00\x00\x00\x00", 11737 .ptext = "\x00\x00\x00\x00\x00\x00\x00\x00" 11738 "\x00\x00\x00\x00\x00\x00\x00\x00" 11739 "\x00\x00\x00\x00\x00\x00\x00\x00" 11740 "\x00\x00\x00\x00\x00\x00\x00\x00", 11741 .ctext = "\x4b\xc9\x44\x4a\x11\xa3\xef\xac" 11742 "\x30\x74\xe4\x44\x52\x77\x97\x43" 11743 "\xa7\x60\xb2\x45\x2e\xf9\x00\x90" 11744 "\x9f\xaa\xfd\x89\x6e\x9d\x4a\xe0", 11745 .len = 32, 11746 }, { 11747 .key = "\x11\x11\x11\x11\x11\x11\x11\x11" 11748 "\x11\x11\x11\x11\x11\x11\x11\x11" 11749 "\x22\x22\x22\x22\x22\x22\x22\x22" 11750 "\x22\x22\x22\x22\x22\x22\x22\x22", 11751 .klen = 32, 11752 .iv = "\x33\x33\x33\x33\x33\x00\x00\x00" 11753 "\x00\x00\x00\x00\x00\x00\x00\x00", 11754 .ptext = "\x44\x44\x44\x44\x44\x44\x44\x44" 11755 "\x44\x44\x44\x44\x44\x44\x44\x44" 11756 "\x44\x44\x44\x44\x44\x44\x44\x44" 11757 "\x44\x44\x44\x44\x44\x44\x44\x44", 11758 .ctext = "\x57\x0e\x8f\xe5\x2a\x35\x61\x4f" 11759 "\x32\xd3\xbd\x36\x05\x15\x44\x2c" 11760 "\x58\x06\xf7\xf8\x00\xa8\xb6\xd5" 11761 "\xc6\x28\x92\xdb\xd8\x34\xa2\xe9", 11762 .len = 32, 11763 }, { 11764 .key = "\xff\xfe\xfd\xfc\xfb\xfa\xf9\xf8" 11765 "\xf7\xf6\xf5\xf4\xf3\xf2\xf1\xf0" 11766 "\x22\x22\x22\x22\x22\x22\x22\x22" 11767 "\x22\x22\x22\x22\x22\x22\x22\x22", 11768 .klen = 32, 11769 .iv = "\x33\x33\x33\x33\x33\x00\x00\x00" 11770 "\x00\x00\x00\x00\x00\x00\x00\x00", 11771 .ptext = "\x44\x44\x44\x44\x44\x44\x44\x44" 11772 "\x44\x44\x44\x44\x44\x44\x44\x44" 11773 "\x44\x44\x44\x44\x44\x44\x44\x44" 11774 "\x44\x44\x44\x44\x44\x44\x44\x44", 11775 .ctext = "\x96\x45\x8f\x8d\x7a\x75\xb1\xde" 11776 "\x40\x0c\x89\x56\xf6\x4d\xa7\x07" 11777 "\x38\xbb\x5b\xe9\xcd\x84\xae\xb2" 11778 "\x7b\x6a\x62\xf4\x8c\xb5\x37\xea", 11779 .len = 32, 11780 }, { 11781 .key = "\x27\x18\x28\x18\x28\x45\x90\x45" 11782 "\x23\x53\x60\x28\x74\x71\x35\x26" 11783 "\x31\x41\x59\x26\x53\x58\x97\x93" 11784 "\x23\x84\x62\x64\x33\x83\x27\x95", 11785 .klen = 32, 11786 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 11787 "\x00\x00\x00\x00\x00\x00\x00\x00", 11788 .ptext = "\x00\x01\x02\x03\x04\x05\x06\x07" 11789 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 11790 "\x10\x11\x12\x13\x14\x15\x16\x17" 11791 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 11792 "\x20\x21\x22\x23\x24\x25\x26\x27" 11793 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 11794 "\x30\x31\x32\x33\x34\x35\x36\x37" 11795 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 11796 "\x40\x41\x42\x43\x44\x45\x46\x47" 11797 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 11798 "\x50\x51\x52\x53\x54\x55\x56\x57" 11799 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 11800 "\x60\x61\x62\x63\x64\x65\x66\x67" 11801 "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 11802 "\x70\x71\x72\x73\x74\x75\x76\x77" 11803 "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 11804 "\x80\x81\x82\x83\x84\x85\x86\x87" 11805 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 11806 "\x90\x91\x92\x93\x94\x95\x96\x97" 11807 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 11808 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 11809 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 11810 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 11811 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 11812 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 11813 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 11814 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 11815 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 11816 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 11817 "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 11818 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 11819 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff" 11820 "\x00\x01\x02\x03\x04\x05\x06\x07" 11821 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 11822 "\x10\x11\x12\x13\x14\x15\x16\x17" 11823 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 11824 "\x20\x21\x22\x23\x24\x25\x26\x27" 11825 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 11826 "\x30\x31\x32\x33\x34\x35\x36\x37" 11827 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 11828 "\x40\x41\x42\x43\x44\x45\x46\x47" 11829 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 11830 "\x50\x51\x52\x53\x54\x55\x56\x57" 11831 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 11832 "\x60\x61\x62\x63\x64\x65\x66\x67" 11833 "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 11834 "\x70\x71\x72\x73\x74\x75\x76\x77" 11835 "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 11836 "\x80\x81\x82\x83\x84\x85\x86\x87" 11837 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 11838 "\x90\x91\x92\x93\x94\x95\x96\x97" 11839 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 11840 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 11841 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 11842 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 11843 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 11844 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 11845 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 11846 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 11847 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 11848 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 11849 "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 11850 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 11851 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff", 11852 .ctext = "\xa9\x78\xae\x1e\xea\xa2\x44\x4c" 11853 "\xa2\x7a\x64\x1f\xaf\x46\xc1\xe0" 11854 "\x6c\xb2\xf3\x92\x9a\xd6\x7d\x58" 11855 "\xb8\x2d\xb9\x5d\x58\x07\x66\x50" 11856 "\xea\x35\x35\x8c\xb2\x46\x61\x06" 11857 "\x5d\x65\xfc\x57\x8f\x69\x74\xab" 11858 "\x8a\x06\x69\xb5\x6c\xda\x66\xc7" 11859 "\x52\x90\xbb\x8e\x6d\x8b\xb5\xa2" 11860 "\x78\x1d\xc2\xa9\xc2\x73\x00\xc3" 11861 "\x32\x36\x7c\x97\x6b\x4e\x8a\x50" 11862 "\xe4\x91\x83\x96\x8f\xf4\x94\x1a" 11863 "\xa6\x27\xe1\x33\xcb\x91\xc6\x5f" 11864 "\x94\x75\xbc\xd7\x3e\x3e\x6f\x9e" 11865 "\xa9\x31\x80\x5e\xe5\xdb\xc8\x53" 11866 "\x01\x73\x68\x32\x25\x19\xfa\xfb" 11867 "\xe4\xcf\xb9\x3e\xa2\xa0\x8f\x31" 11868 "\xbf\x54\x06\x93\xa8\xb1\x0f\xb6" 11869 "\x7c\x3c\xde\x6f\x0f\xfb\x0c\x11" 11870 "\x39\x80\x39\x09\x97\x65\xf2\x83" 11871 "\xae\xe6\xa1\x6f\x47\xb8\x49\xde" 11872 "\x99\x36\x20\x7d\x97\x3b\xec\xfa" 11873 "\xb4\x33\x6e\x7a\xc7\x46\x84\x49" 11874 "\x91\xcd\xe1\x57\x0d\xed\x40\x08" 11875 "\x13\xf1\x4e\x3e\xa4\xa4\x5c\xe6" 11876 "\xd2\x0c\x20\x8f\x3e\xdf\x3f\x47" 11877 "\x9a\x2f\xde\x6d\x66\xc9\x99\x4a" 11878 "\x2d\x9e\x9d\x4b\x1a\x27\xa2\x12" 11879 "\x99\xf0\xf8\xb1\xb6\xf6\x57\xc3" 11880 "\xca\x1c\xa3\x8e\xed\x39\x28\xb5" 11881 "\x10\x1b\x4b\x08\x42\x00\x4a\xd3" 11882 "\xad\x5a\xc6\x8e\xc8\xbb\x95\xc4" 11883 "\x4b\xaa\xfe\xd5\x42\xa8\xa3\x6d" 11884 "\x3c\xf3\x34\x91\x2d\xb4\xdd\x20" 11885 "\x0c\x90\x6d\xa3\x9b\x66\x9d\x24" 11886 "\x02\xa6\xa9\x3f\x3f\x58\x5d\x47" 11887 "\x24\x65\x63\x7e\xbd\x8c\xe6\x52" 11888 "\x7d\xef\x33\x53\x63\xec\xaa\x0b" 11889 "\x64\x15\xa9\xa6\x1f\x10\x00\x38" 11890 "\x35\xa8\xe7\xbe\x23\x70\x22\xe0" 11891 "\xd3\xb9\xe6\xfd\xe6\xaa\x03\x50" 11892 "\xf3\x3c\x27\x36\x8b\xcc\xfe\x9c" 11893 "\x9c\xa3\xb3\xe7\x68\x9b\xa2\x71" 11894 "\xe0\x07\xd9\x1f\x68\x1f\xac\x5e" 11895 "\x7a\x74\x85\xa9\x6a\x90\xab\x2c" 11896 "\x38\x51\xbc\x1f\x43\x4a\x56\x1c" 11897 "\xf8\x47\x03\x4e\x67\xa8\x1f\x99" 11898 "\x04\x39\x73\x32\xb2\x86\x79\xe7" 11899 "\x14\x28\x70\xb8\xe2\x7d\x69\x85" 11900 "\xb6\x0f\xc5\xd0\xd0\x01\x5c\xe6" 11901 "\x09\x0f\x75\xf7\xb6\x81\xd2\x11" 11902 "\x20\x9c\xa1\xee\x11\x44\x79\xd0" 11903 "\xb2\x34\x77\xda\x10\x9a\x6f\x6f" 11904 "\xef\x7c\xd9\xdc\x35\xb7\x61\xdd" 11905 "\xf1\xa4\xc6\x1c\xbf\x05\x22\xac" 11906 "\xfe\x2f\x85\x00\x44\xdf\x33\x16" 11907 "\x35\xb6\xa3\xd3\x70\xdf\x69\x35" 11908 "\x6a\xc7\xb4\x99\x45\x27\xc8\x8e" 11909 "\x5a\x14\x30\xd0\x55\x3e\x4f\x64" 11910 "\x0d\x38\xe3\xdf\x8b\xa8\x93\x26" 11911 "\x75\xae\xf6\xb5\x23\x0b\x17\x31" 11912 "\xbf\x27\xb8\xb5\x94\x31\xa7\x8f" 11913 "\x43\xc4\x46\x24\x22\x4f\x8f\x7e" 11914 "\xe5\xf4\x6d\x1e\x0e\x18\x7a\xbb" 11915 "\xa6\x8f\xfb\x49\x49\xd8\x7e\x5a", 11916 .len = 512, 11917 }, { 11918 .key = "\x27\x18\x28\x18\x28\x45\x90\x45" 11919 "\x23\x53\x60\x28\x74\x71\x35\x26" 11920 "\x62\x49\x77\x57\x24\x70\x93\x69" 11921 "\x99\x59\x57\x49\x66\x96\x76\x27" 11922 "\x31\x41\x59\x26\x53\x58\x97\x93" 11923 "\x23\x84\x62\x64\x33\x83\x27\x95" 11924 "\x02\x88\x41\x97\x16\x93\x99\x37" 11925 "\x51\x05\x82\x09\x74\x94\x45\x92", 11926 .klen = 64, 11927 .iv = "\xff\x00\x00\x00\x00\x00\x00\x00" 11928 "\x00\x00\x00\x00\x00\x00\x00\x00", 11929 .ptext = "\x00\x01\x02\x03\x04\x05\x06\x07" 11930 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 11931 "\x10\x11\x12\x13\x14\x15\x16\x17" 11932 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 11933 "\x20\x21\x22\x23\x24\x25\x26\x27" 11934 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 11935 "\x30\x31\x32\x33\x34\x35\x36\x37" 11936 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 11937 "\x40\x41\x42\x43\x44\x45\x46\x47" 11938 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 11939 "\x50\x51\x52\x53\x54\x55\x56\x57" 11940 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 11941 "\x60\x61\x62\x63\x64\x65\x66\x67" 11942 "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 11943 "\x70\x71\x72\x73\x74\x75\x76\x77" 11944 "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 11945 "\x80\x81\x82\x83\x84\x85\x86\x87" 11946 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 11947 "\x90\x91\x92\x93\x94\x95\x96\x97" 11948 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 11949 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 11950 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 11951 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 11952 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 11953 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 11954 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 11955 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 11956 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 11957 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 11958 "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 11959 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 11960 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff" 11961 "\x00\x01\x02\x03\x04\x05\x06\x07" 11962 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 11963 "\x10\x11\x12\x13\x14\x15\x16\x17" 11964 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 11965 "\x20\x21\x22\x23\x24\x25\x26\x27" 11966 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 11967 "\x30\x31\x32\x33\x34\x35\x36\x37" 11968 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 11969 "\x40\x41\x42\x43\x44\x45\x46\x47" 11970 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 11971 "\x50\x51\x52\x53\x54\x55\x56\x57" 11972 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 11973 "\x60\x61\x62\x63\x64\x65\x66\x67" 11974 "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 11975 "\x70\x71\x72\x73\x74\x75\x76\x77" 11976 "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 11977 "\x80\x81\x82\x83\x84\x85\x86\x87" 11978 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 11979 "\x90\x91\x92\x93\x94\x95\x96\x97" 11980 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 11981 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 11982 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 11983 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 11984 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 11985 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 11986 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 11987 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 11988 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 11989 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 11990 "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 11991 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 11992 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff", 11993 .ctext = "\xd7\x4b\x93\x7d\x13\xa2\xa2\xe1" 11994 "\x35\x39\x71\x88\x76\x1e\xc9\xea" 11995 "\x86\xad\xf3\x14\x48\x3d\x5e\xe9" 11996 "\xe9\x2d\xb2\x56\x59\x35\x9d\xec" 11997 "\x84\xfa\x7e\x9d\x6d\x33\x36\x8f" 11998 "\xce\xf4\xa9\x21\x0b\x5f\x96\xec" 11999 "\xcb\xf9\x57\x68\x33\x88\x39\xbf" 12000 "\x2f\xbb\x59\x03\xbd\x66\x8b\x11" 12001 "\x11\x65\x51\x2e\xb8\x67\x05\xd1" 12002 "\x27\x11\x5c\xd4\xcc\x97\xc2\xb3" 12003 "\xa9\x55\xaf\x07\x56\xd1\xdc\xf5" 12004 "\x85\xdc\x46\xe6\xf0\x24\xeb\x93" 12005 "\x4d\xf0\x9b\xf5\x73\x1c\xda\x03" 12006 "\x22\xc8\x3a\x4f\xb4\x19\x91\x09" 12007 "\x54\x0b\xf6\xfe\x17\x3d\x1a\x53" 12008 "\x72\x60\x79\xcb\x0e\x32\x8a\x77" 12009 "\xd5\xed\xdb\x33\xd7\x62\x16\x69" 12010 "\x63\xe0\xab\xb5\xf6\x9c\x5f\x3d" 12011 "\x69\x35\x61\x86\xf8\x86\xb9\x89" 12012 "\x6e\x59\x35\xac\xf6\x6b\x33\xa0" 12013 "\xea\xef\x96\x62\xd8\xa9\xcf\x56" 12014 "\xbf\xdb\x8a\xfd\xa1\x82\x77\x73" 12015 "\x3d\x94\x4a\x49\x42\x6d\x08\x60" 12016 "\xa1\xea\xab\xb6\x88\x13\x94\xb8" 12017 "\x51\x98\xdb\x35\x85\xdf\xf6\xb9" 12018 "\x8f\xcd\xdf\x80\xd3\x40\x2d\x72" 12019 "\xb8\xb2\x6c\x02\x43\x35\x22\x2a" 12020 "\x31\xed\xcd\x16\x19\xdf\x62\x0f" 12021 "\x29\xcf\x87\x04\xec\x02\x4f\xe4" 12022 "\xa2\xed\x73\xc6\x69\xd3\x7e\x89" 12023 "\x0b\x76\x10\x7c\xd6\xf9\x6a\x25" 12024 "\xed\xcc\x60\x5d\x61\x20\xc1\x97" 12025 "\x56\x91\x57\x28\xbe\x71\x0d\xcd" 12026 "\xde\xc4\x9e\x55\x91\xbe\xd1\x28" 12027 "\x9b\x90\xeb\x73\xf3\x68\x51\xc6" 12028 "\xdf\x82\xcc\xd8\x1f\xce\x5b\x27" 12029 "\xc0\x60\x5e\x33\xd6\xa7\x20\xea" 12030 "\xb2\x54\xc7\x5d\x6a\x3b\x67\x47" 12031 "\xcf\xa0\xe3\xab\x86\xaf\xc1\x42" 12032 "\xe6\xb0\x23\x4a\xaf\x53\xdf\xa0" 12033 "\xad\x12\x32\x31\x03\xf7\x21\xbe" 12034 "\x2d\xd5\x82\x42\xb6\x4a\x3d\xcd" 12035 "\xd8\x81\x77\xa9\x49\x98\x6c\x09" 12036 "\xc5\xa3\x61\x12\x62\x85\x6b\xcd" 12037 "\xb3\xf4\x20\x0c\x41\xc4\x05\x37" 12038 "\x46\x5f\xeb\x71\x8b\xf1\xaf\x6e" 12039 "\xba\xf3\x50\x2e\xfe\xa8\x37\xeb" 12040 "\xe8\x8c\x4f\xa4\x0c\xf1\x31\xc8" 12041 "\x6e\x71\x4f\xa5\xd7\x97\x73\xe0" 12042 "\x93\x4a\x2f\xda\x7b\xe0\x20\x54" 12043 "\x1f\x8d\x85\x79\x0b\x7b\x5e\x75" 12044 "\xb9\x07\x67\xcc\xc8\xe7\x21\x15" 12045 "\xa7\xc8\x98\xff\x4b\x80\x1c\x12" 12046 "\xa8\x54\xe1\x38\x52\xe6\x74\x81" 12047 "\x97\x47\xa1\x41\x0e\xc0\x50\xe3" 12048 "\x55\x0e\xc3\xa7\x70\x77\xce\x07" 12049 "\xed\x8c\x88\xe6\xa1\x5b\x14\xec" 12050 "\xe6\xde\x06\x6d\x74\xc5\xd9\xfa" 12051 "\xe5\x2f\x5a\xff\xc8\x05\xee\x27" 12052 "\x35\x61\xbf\x0b\x19\x78\x9b\xd2" 12053 "\x04\xc7\x05\xb1\x79\xb4\xff\x5f" 12054 "\xf3\xea\x67\x52\x78\xc2\xce\x70" 12055 "\xa4\x05\x0b\xb2\xb3\xa8\x30\x97" 12056 "\x37\x30\xe1\x91\x8d\xb3\x2a\xff", 12057 .len = 512, 12058 }, 12059 }; 12060 12061 /* 12062 * Serpent test vectors. These are backwards because Serpent writes 12063 * octet sequences in right-to-left mode. 12064 */ 12065 static const struct cipher_testvec serpent_tv_template[] = { 12066 { 12067 .ptext = "\x00\x01\x02\x03\x04\x05\x06\x07" 12068 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 12069 .ctext = "\x12\x07\xfc\xce\x9b\xd0\xd6\x47" 12070 "\x6a\xe9\x8f\xbe\xd1\x43\xa0\xe2", 12071 .len = 16, 12072 }, { 12073 .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 12074 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 12075 .klen = 16, 12076 .ptext = "\x00\x01\x02\x03\x04\x05\x06\x07" 12077 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 12078 .ctext = "\x4c\x7d\x8a\x32\x80\x72\xa2\x2c" 12079 "\x82\x3e\x4a\x1f\x3a\xcd\xa1\x6d", 12080 .len = 16, 12081 }, { 12082 .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 12083 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 12084 "\x10\x11\x12\x13\x14\x15\x16\x17" 12085 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 12086 .klen = 32, 12087 .ptext = "\x00\x01\x02\x03\x04\x05\x06\x07" 12088 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 12089 .ctext = "\xde\x26\x9f\xf8\x33\xe4\x32\xb8" 12090 "\x5b\x2e\x88\xd2\x70\x1c\xe7\x5c", 12091 .len = 16, 12092 }, { 12093 .key = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80", 12094 .klen = 16, 12095 .ptext = zeroed_string, 12096 .ctext = "\xdd\xd2\x6b\x98\xa5\xff\xd8\x2c" 12097 "\x05\x34\x5a\x9d\xad\xbf\xaf\x49", 12098 .len = 16, 12099 }, { /* Generated with Crypto++ */ 12100 .key = "\x85\x62\x3F\x1C\xF9\xD6\x1C\xF9" 12101 "\xD6\xB3\x90\x6D\x4A\x90\x6D\x4A" 12102 "\x27\x04\xE1\x27\x04\xE1\xBE\x9B" 12103 "\x78\xBE\x9B\x78\x55\x32\x0F\x55", 12104 .klen = 32, 12105 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 12106 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 12107 "\x3A\xD1\x45\xDC\x73\x0A\x7E\x15" 12108 "\xAC\x20\xB7\x4E\xE5\x59\xF0\x87" 12109 "\x1E\x92\x29\xC0\x34\xCB\x62\xF9" 12110 "\x6D\x04\x9B\x0F\xA6\x3D\xD4\x48" 12111 "\xDF\x76\x0D\x81\x18\xAF\x23\xBA" 12112 "\x51\xE8\x5C\xF3\x8A\x21\x95\x2C" 12113 "\xC3\x37\xCE\x65\xFC\x70\x07\x9E" 12114 "\x12\xA9\x40\xD7\x4B\xE2\x79\x10" 12115 "\x84\x1B\xB2\x26\xBD\x54\xEB\x5F" 12116 "\xF6\x8D\x01\x98\x2F\xC6\x3A\xD1" 12117 "\x68\xFF\x73\x0A\xA1\x15\xAC\x43" 12118 "\xDA\x4E\xE5\x7C\x13\x87\x1E\xB5" 12119 "\x29\xC0\x57\xEE\x62\xF9\x90\x04" 12120 "\x9B\x32\xC9\x3D\xD4\x6B\x02\x76" 12121 "\x0D\xA4\x18\xAF\x46\xDD\x51\xE8" 12122 "\x7F\x16\x8A\x21\xB8\x2C\xC3\x5A" 12123 "\xF1\x65\xFC\x93\x07\x9E\x35\xCC" 12124 "\x40\xD7\x6E\x05\x79\x10\xA7\x1B" 12125 "\xB2\x49\xE0\x54\xEB\x82\x19\x8D" 12126 "\x24\xBB\x2F\xC6\x5D\xF4\x68\xFF" 12127 "\x96\x0A\xA1\x38\xCF\x43\xDA\x71" 12128 "\x08\x7C\x13\xAA\x1E\xB5\x4C\xE3" 12129 "\x57\xEE\x85\x1C\x90\x27\xBE\x32" 12130 "\xC9\x60\xF7\x6B\x02\x99\x0D\xA4" 12131 "\x3B\xD2\x46\xDD\x74\x0B\x7F\x16" 12132 "\xAD\x21\xB8\x4F\xE6\x5A\xF1\x88" 12133 "\x1F\x93\x2A\xC1\x35\xCC\x63\xFA" 12134 "\x6E\x05\x9C\x10\xA7\x3E\xD5\x49" 12135 "\xE0\x77\x0E\x82\x19\xB0\x24\xBB" 12136 "\x52\xE9\x5D\xF4\x8B\x22\x96\x2D" 12137 "\xC4\x38\xCF\x66\xFD\x71\x08\x9F" 12138 "\x13\xAA\x41\xD8\x4C\xE3\x7A\x11" 12139 "\x85\x1C\xB3\x27\xBE\x55\xEC\x60" 12140 "\xF7\x8E\x02\x99\x30\xC7\x3B\xD2" 12141 "\x69\x00\x74\x0B\xA2\x16\xAD\x44" 12142 "\xDB\x4F\xE6\x7D\x14\x88\x1F\xB6" 12143 "\x2A\xC1\x58\xEF\x63\xFA\x91\x05" 12144 "\x9C\x33\xCA\x3E\xD5\x6C\x03\x77" 12145 "\x0E\xA5\x19\xB0\x47\xDE\x52\xE9" 12146 "\x80\x17\x8B\x22\xB9\x2D\xC4\x5B" 12147 "\xF2\x66\xFD\x94\x08\x9F\x36\xCD" 12148 "\x41\xD8\x6F\x06\x7A\x11\xA8\x1C" 12149 "\xB3\x4A\xE1\x55\xEC\x83\x1A\x8E" 12150 "\x25\xBC\x30\xC7\x5E\xF5\x69\x00" 12151 "\x97\x0B\xA2\x39\xD0\x44\xDB\x72" 12152 "\x09\x7D\x14\xAB\x1F\xB6\x4D\xE4" 12153 "\x58\xEF\x86\x1D\x91\x28\xBF\x33" 12154 "\xCA\x61\xF8\x6C\x03\x9A\x0E\xA5" 12155 "\x3C\xD3\x47\xDE\x75\x0C\x80\x17" 12156 "\xAE\x22\xB9\x50\xE7\x5B\xF2\x89" 12157 "\x20\x94\x2B\xC2\x36\xCD\x64\xFB" 12158 "\x6F\x06\x9D\x11\xA8\x3F\xD6\x4A" 12159 "\xE1\x78\x0F\x83\x1A\xB1\x25\xBC" 12160 "\x53\xEA\x5E\xF5\x8C\x00\x97\x2E" 12161 "\xC5\x39\xD0\x67\xFE\x72\x09\xA0" 12162 "\x14\xAB\x42\xD9\x4D\xE4\x7B\x12" 12163 "\x86\x1D\xB4\x28\xBF\x56\xED\x61" 12164 "\xF8\x8F\x03\x9A\x31\xC8\x3C\xD3" 12165 "\x6A\x01\x75\x0C\xA3\x17\xAE\x45" 12166 "\xDC\x50\xE7\x7E\x15\x89\x20\xB7", 12167 .ctext = "\xFB\xB0\x5D\xDE\xC0\xFE\xFC\xEB" 12168 "\xB1\x80\x10\x43\xDE\x62\x70\xBD" 12169 "\xFA\x8A\x93\xEA\x6B\xF7\xC5\xD7" 12170 "\x0C\xD1\xBB\x29\x25\x14\x4C\x22" 12171 "\x77\xA6\x38\x00\xDB\xB9\xE2\x07" 12172 "\xD1\xAC\x82\xBA\xEA\x67\xAA\x39" 12173 "\x99\x34\x89\x5B\x54\xE9\x12\x13" 12174 "\x3B\x04\xE5\x12\x42\xC5\x79\xAB" 12175 "\x0D\xC7\x3C\x58\x2D\xA3\x98\xF6" 12176 "\xE4\x61\x9E\x17\x0B\xCE\xE8\xAA" 12177 "\xB5\x6C\x1A\x3A\x67\x52\x81\x6A" 12178 "\x04\xFF\x8A\x1B\x96\xFE\xE6\x87" 12179 "\x3C\xD4\x39\x7D\x36\x9B\x03\xD5" 12180 "\xB6\xA0\x75\x3C\x83\xE6\x1C\x73" 12181 "\x9D\x74\x2B\x77\x53\x2D\xE5\xBD" 12182 "\x69\xDA\x7A\x01\xF5\x6A\x70\x39" 12183 "\x30\xD4\x2C\xF2\x8E\x06\x4B\x39" 12184 "\xB3\x12\x1D\xB3\x17\x46\xE6\xD6" 12185 "\xB6\x31\x36\x34\x38\x3C\x1D\x69" 12186 "\x9F\x47\x28\x9A\x1D\x96\x70\x54" 12187 "\x8E\x88\xCB\xE0\xF5\x6A\xAE\x0A" 12188 "\x3C\xD5\x93\x1C\x21\xC9\x14\x3A" 12189 "\x23\x9C\x9B\x79\xC7\x75\xC8\x39" 12190 "\xA6\xAC\x65\x9A\x99\x37\xAF\x6D" 12191 "\xBD\xB5\x32\xFD\xD8\x9C\x95\x7B" 12192 "\xC6\x6A\x80\x64\xEA\xEF\x6D\x3F" 12193 "\xA9\xFE\x5B\x16\xA3\xCF\x32\xC8" 12194 "\xEF\x50\x22\x20\x93\x30\xBE\xE2" 12195 "\x38\x05\x65\xAF\xBA\xB6\xE4\x72" 12196 "\xA9\xEE\x05\x42\x88\xBD\x9D\x49" 12197 "\xAD\x93\xCA\x4D\x45\x11\x43\x4D" 12198 "\xB8\xF5\x74\x2B\x48\xE7\x21\xE4" 12199 "\x4E\x3A\x4C\xDE\x65\x7A\x5A\xAD" 12200 "\x86\xE6\x23\xEC\x6B\xA7\x17\xE6" 12201 "\xF6\xA1\xAC\x29\xAE\xF9\x9B\x69" 12202 "\x73\x65\x65\x51\xD6\x0B\x4E\x8C" 12203 "\x17\x15\x9D\xB0\xCF\xB2\x42\x2B" 12204 "\x51\xC3\x03\xE8\xB7\x7D\x2D\x39" 12205 "\xE8\x10\x93\x16\xC8\x68\x4C\x60" 12206 "\x87\x70\x14\xD0\x01\x57\xCB\x42" 12207 "\x13\x59\xB1\x7F\x12\x4F\xBB\xC7" 12208 "\xBD\x2B\xD4\xA9\x12\x26\x4F\xDE" 12209 "\xFD\x72\xEC\xD7\x6F\x97\x14\x90" 12210 "\x0E\x37\x13\xE6\x67\x1D\xE5\xFE" 12211 "\x9E\x18\x3C\x8F\x3A\x3F\x59\x9B" 12212 "\x71\x80\x05\x35\x3F\x40\x0B\x21" 12213 "\x76\xE5\xEF\x42\x6C\xDB\x31\x05" 12214 "\x5F\x05\xCF\x14\xE3\xF0\x61\xA2" 12215 "\x49\x03\x5E\x77\x2E\x20\xBA\xA1" 12216 "\xAF\x46\x51\xC0\x2B\xC4\x64\x1E" 12217 "\x65\xCC\x51\x58\x0A\xDF\xF0\x5F" 12218 "\x75\x9F\x48\xCD\x81\xEC\xC3\xF6" 12219 "\xED\xC9\x4B\x7B\x4E\x26\x23\xE1" 12220 "\xBB\xE9\x83\x0B\xCF\xE4\xDE\x00" 12221 "\x48\xFF\xBF\x6C\xB4\x72\x16\xEF" 12222 "\xC7\x46\xEE\x48\x8C\xB8\xAF\x45" 12223 "\x91\x76\xE7\x6E\x65\x3D\x15\x86" 12224 "\x10\xF8\xDB\x66\x97\x7C\x43\x4D" 12225 "\x79\x12\x4E\xCE\x06\xD1\xD1\x6A" 12226 "\x34\xC1\xC9\xF2\x28\x4A\xCD\x02" 12227 "\x75\x55\x9B\xFF\x36\x73\xAB\x7C" 12228 "\xF4\x46\x2E\xEB\xAC\xF3\xD2\xB7", 12229 .len = 496, 12230 }, 12231 }; 12232 12233 static const struct cipher_testvec tnepres_tv_template[] = { 12234 { /* KeySize=0 */ 12235 .ptext = "\x00\x01\x02\x03\x04\x05\x06\x07" 12236 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 12237 .ctext = "\x41\xcc\x6b\x31\x59\x31\x45\x97" 12238 "\x6d\x6f\xbb\x38\x4b\x37\x21\x28", 12239 .len = 16, 12240 }, 12241 { /* KeySize=128, PT=0, I=1 */ 12242 .ptext = "\x00\x00\x00\x00\x00\x00\x00\x00" 12243 "\x00\x00\x00\x00\x00\x00\x00\x00", 12244 .key = "\x80\x00\x00\x00\x00\x00\x00\x00" 12245 "\x00\x00\x00\x00\x00\x00\x00\x00", 12246 .klen = 16, 12247 .ctext = "\x49\xaf\xbf\xad\x9d\x5a\x34\x05" 12248 "\x2c\xd8\xff\xa5\x98\x6b\xd2\xdd", 12249 .len = 16, 12250 }, { /* KeySize=128 */ 12251 .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 12252 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 12253 .klen = 16, 12254 .ptext = "\x00\x01\x02\x03\x04\x05\x06\x07" 12255 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 12256 .ctext = "\xea\xf4\xd7\xfc\xd8\x01\x34\x47" 12257 "\x81\x45\x0b\xfa\x0c\xd6\xad\x6e", 12258 .len = 16, 12259 }, { /* KeySize=128, I=121 */ 12260 .key = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80", 12261 .klen = 16, 12262 .ptext = zeroed_string, 12263 .ctext = "\x3d\xda\xbf\xc0\x06\xda\xab\x06" 12264 "\x46\x2a\xf4\xef\x81\x54\x4e\x26", 12265 .len = 16, 12266 }, { /* KeySize=192, PT=0, I=1 */ 12267 .key = "\x80\x00\x00\x00\x00\x00\x00\x00" 12268 "\x00\x00\x00\x00\x00\x00\x00\x00" 12269 "\x00\x00\x00\x00\x00\x00\x00\x00", 12270 .klen = 24, 12271 .ptext = "\x00\x00\x00\x00\x00\x00\x00\x00" 12272 "\x00\x00\x00\x00\x00\x00\x00\x00", 12273 .ctext = "\xe7\x8e\x54\x02\xc7\x19\x55\x68" 12274 "\xac\x36\x78\xf7\xa3\xf6\x0c\x66", 12275 .len = 16, 12276 }, { /* KeySize=256, PT=0, I=1 */ 12277 .key = "\x80\x00\x00\x00\x00\x00\x00\x00" 12278 "\x00\x00\x00\x00\x00\x00\x00\x00" 12279 "\x00\x00\x00\x00\x00\x00\x00\x00" 12280 "\x00\x00\x00\x00\x00\x00\x00\x00", 12281 .klen = 32, 12282 .ptext = "\x00\x00\x00\x00\x00\x00\x00\x00" 12283 "\x00\x00\x00\x00\x00\x00\x00\x00", 12284 .ctext = "\xab\xed\x96\xe7\x66\xbf\x28\xcb" 12285 "\xc0\xeb\xd2\x1a\x82\xef\x08\x19", 12286 .len = 16, 12287 }, { /* KeySize=256, I=257 */ 12288 .key = "\x1f\x1e\x1d\x1c\x1b\x1a\x19\x18" 12289 "\x17\x16\x15\x14\x13\x12\x11\x10" 12290 "\x0f\x0e\x0d\x0c\x0b\x0a\x09\x08" 12291 "\x07\x06\x05\x04\x03\x02\x01\x00", 12292 .klen = 32, 12293 .ptext = "\x0f\x0e\x0d\x0c\x0b\x0a\x09\x08" 12294 "\x07\x06\x05\x04\x03\x02\x01\x00", 12295 .ctext = "\x5c\xe7\x1c\x70\xd2\x88\x2e\x5b" 12296 "\xb8\x32\xe4\x33\xf8\x9f\x26\xde", 12297 .len = 16, 12298 }, { /* KeySize=256 */ 12299 .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 12300 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 12301 "\x10\x11\x12\x13\x14\x15\x16\x17" 12302 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 12303 .klen = 32, 12304 .ptext = "\x00\x01\x02\x03\x04\x05\x06\x07" 12305 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 12306 .ctext = "\x64\xa9\x1a\x37\xed\x9f\xe7\x49" 12307 "\xa8\x4e\x76\xd6\xf5\x0d\x78\xee", 12308 .len = 16, 12309 } 12310 }; 12311 12312 static const struct cipher_testvec serpent_cbc_tv_template[] = { 12313 { /* Generated with Crypto++ */ 12314 .key = "\x85\x62\x3F\x1C\xF9\xD6\x1C\xF9" 12315 "\xD6\xB3\x90\x6D\x4A\x90\x6D\x4A" 12316 "\x27\x04\xE1\x27\x04\xE1\xBE\x9B" 12317 "\x78\xBE\x9B\x78\x55\x32\x0F\x55", 12318 .klen = 32, 12319 .iv = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F" 12320 "\xC4\x29\x8E\xF3\x35\x9A\xFF\x64", 12321 .iv_out = "\xFC\x66\xAA\x37\xF2\x37\x39\x6B" 12322 "\xBC\x08\x3A\xA2\x29\xB3\xDF\xD1", 12323 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 12324 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 12325 "\x3A\xD1\x45\xDC\x73\x0A\x7E\x15" 12326 "\xAC\x20\xB7\x4E\xE5\x59\xF0\x87" 12327 "\x1E\x92\x29\xC0\x34\xCB\x62\xF9" 12328 "\x6D\x04\x9B\x0F\xA6\x3D\xD4\x48" 12329 "\xDF\x76\x0D\x81\x18\xAF\x23\xBA" 12330 "\x51\xE8\x5C\xF3\x8A\x21\x95\x2C" 12331 "\xC3\x37\xCE\x65\xFC\x70\x07\x9E" 12332 "\x12\xA9\x40\xD7\x4B\xE2\x79\x10" 12333 "\x84\x1B\xB2\x26\xBD\x54\xEB\x5F" 12334 "\xF6\x8D\x01\x98\x2F\xC6\x3A\xD1" 12335 "\x68\xFF\x73\x0A\xA1\x15\xAC\x43" 12336 "\xDA\x4E\xE5\x7C\x13\x87\x1E\xB5" 12337 "\x29\xC0\x57\xEE\x62\xF9\x90\x04" 12338 "\x9B\x32\xC9\x3D\xD4\x6B\x02\x76" 12339 "\x0D\xA4\x18\xAF\x46\xDD\x51\xE8" 12340 "\x7F\x16\x8A\x21\xB8\x2C\xC3\x5A" 12341 "\xF1\x65\xFC\x93\x07\x9E\x35\xCC" 12342 "\x40\xD7\x6E\x05\x79\x10\xA7\x1B" 12343 "\xB2\x49\xE0\x54\xEB\x82\x19\x8D" 12344 "\x24\xBB\x2F\xC6\x5D\xF4\x68\xFF" 12345 "\x96\x0A\xA1\x38\xCF\x43\xDA\x71" 12346 "\x08\x7C\x13\xAA\x1E\xB5\x4C\xE3" 12347 "\x57\xEE\x85\x1C\x90\x27\xBE\x32" 12348 "\xC9\x60\xF7\x6B\x02\x99\x0D\xA4" 12349 "\x3B\xD2\x46\xDD\x74\x0B\x7F\x16" 12350 "\xAD\x21\xB8\x4F\xE6\x5A\xF1\x88" 12351 "\x1F\x93\x2A\xC1\x35\xCC\x63\xFA" 12352 "\x6E\x05\x9C\x10\xA7\x3E\xD5\x49" 12353 "\xE0\x77\x0E\x82\x19\xB0\x24\xBB" 12354 "\x52\xE9\x5D\xF4\x8B\x22\x96\x2D" 12355 "\xC4\x38\xCF\x66\xFD\x71\x08\x9F" 12356 "\x13\xAA\x41\xD8\x4C\xE3\x7A\x11" 12357 "\x85\x1C\xB3\x27\xBE\x55\xEC\x60" 12358 "\xF7\x8E\x02\x99\x30\xC7\x3B\xD2" 12359 "\x69\x00\x74\x0B\xA2\x16\xAD\x44" 12360 "\xDB\x4F\xE6\x7D\x14\x88\x1F\xB6" 12361 "\x2A\xC1\x58\xEF\x63\xFA\x91\x05" 12362 "\x9C\x33\xCA\x3E\xD5\x6C\x03\x77" 12363 "\x0E\xA5\x19\xB0\x47\xDE\x52\xE9" 12364 "\x80\x17\x8B\x22\xB9\x2D\xC4\x5B" 12365 "\xF2\x66\xFD\x94\x08\x9F\x36\xCD" 12366 "\x41\xD8\x6F\x06\x7A\x11\xA8\x1C" 12367 "\xB3\x4A\xE1\x55\xEC\x83\x1A\x8E" 12368 "\x25\xBC\x30\xC7\x5E\xF5\x69\x00" 12369 "\x97\x0B\xA2\x39\xD0\x44\xDB\x72" 12370 "\x09\x7D\x14\xAB\x1F\xB6\x4D\xE4" 12371 "\x58\xEF\x86\x1D\x91\x28\xBF\x33" 12372 "\xCA\x61\xF8\x6C\x03\x9A\x0E\xA5" 12373 "\x3C\xD3\x47\xDE\x75\x0C\x80\x17" 12374 "\xAE\x22\xB9\x50\xE7\x5B\xF2\x89" 12375 "\x20\x94\x2B\xC2\x36\xCD\x64\xFB" 12376 "\x6F\x06\x9D\x11\xA8\x3F\xD6\x4A" 12377 "\xE1\x78\x0F\x83\x1A\xB1\x25\xBC" 12378 "\x53\xEA\x5E\xF5\x8C\x00\x97\x2E" 12379 "\xC5\x39\xD0\x67\xFE\x72\x09\xA0" 12380 "\x14\xAB\x42\xD9\x4D\xE4\x7B\x12" 12381 "\x86\x1D\xB4\x28\xBF\x56\xED\x61" 12382 "\xF8\x8F\x03\x9A\x31\xC8\x3C\xD3" 12383 "\x6A\x01\x75\x0C\xA3\x17\xAE\x45" 12384 "\xDC\x50\xE7\x7E\x15\x89\x20\xB7", 12385 .ctext = "\x80\xCF\x11\x41\x1A\xB9\x4B\x9C" 12386 "\xFF\xB7\x6C\xEA\xF0\xAF\x77\x6E" 12387 "\x71\x75\x95\x9D\x4E\x1C\xCF\xAD" 12388 "\x81\x34\xE9\x8F\xAE\x5A\x91\x1C" 12389 "\x38\x63\x35\x7E\x79\x18\x0A\xE8" 12390 "\x67\x06\x76\xD5\xFF\x22\x2F\xDA" 12391 "\xB6\x2D\x57\x13\xB6\x3C\xBC\x97" 12392 "\xFE\x53\x75\x35\x97\x7F\x51\xEA" 12393 "\xDF\x5D\xE8\x9D\xCC\xD9\xAE\xE7" 12394 "\x62\x67\xFF\x04\xC2\x18\x22\x5F" 12395 "\x2E\x06\xC1\xE2\x26\xCD\xC6\x1E" 12396 "\xE5\x2C\x4E\x87\x23\xDD\xF0\x41" 12397 "\x08\xA5\xB4\x3E\x07\x1E\x0B\xBB" 12398 "\x72\x84\xF8\x0A\x3F\x38\x5E\x91" 12399 "\x15\x26\xE1\xDB\xA4\x3D\x74\xD2" 12400 "\x41\x1E\x3F\xA9\xC6\x7D\x2A\xAB" 12401 "\x27\xDF\x89\x1D\x86\x3E\xF7\x5A" 12402 "\xF6\xE3\x0F\xC7\x6B\x4C\x96\x7C" 12403 "\x2D\x12\xA5\x05\x92\xCB\xD7\x4A" 12404 "\x4D\x1E\x88\x21\xE1\x63\xB4\xFC" 12405 "\x4A\xF2\xCD\x35\xB9\xD7\x70\x97" 12406 "\x5A\x5E\x7E\x96\x52\x20\xDC\x25" 12407 "\xE9\x6B\x36\xB4\xE0\x98\x85\x2C" 12408 "\x3C\xD2\xF7\x78\x8A\x73\x26\x9B" 12409 "\xAF\x0B\x11\xE8\x4D\x67\x23\xE9" 12410 "\x77\xDF\x58\xF6\x6F\x9E\xA4\xC5" 12411 "\x10\xA1\x82\x0E\x80\xA0\x8F\x4B" 12412 "\xA1\xC0\x12\x54\x4E\xC9\x20\x92" 12413 "\x11\x00\x10\x4E\xB3\x7C\xCA\x63" 12414 "\xE5\x3F\xD3\x41\x37\xCD\x74\xB7" 12415 "\xA5\x7C\x61\xB8\x0B\x7A\x7F\x4D" 12416 "\xFE\x96\x7D\x1B\xBE\x60\x37\xB7" 12417 "\x81\x92\x66\x67\x15\x1E\x39\x98" 12418 "\x52\xC0\xF4\x69\xC0\x99\x4F\x5A" 12419 "\x2E\x32\xAD\x7C\x8B\xE9\xAD\x05" 12420 "\x55\xF9\x0A\x1F\x97\x5C\xFA\x2B" 12421 "\xF4\x99\x76\x3A\x6E\x4D\xE1\x4C" 12422 "\x14\x4E\x6F\x87\xEE\x1A\x85\xA3" 12423 "\x96\xC6\x66\x49\xDA\x0D\x71\xAC" 12424 "\x04\x05\x46\xD3\x90\x0F\x64\x64" 12425 "\x01\x66\x2C\x62\x5D\x34\xD1\xCB" 12426 "\x3A\x24\xCE\x95\xEF\xAE\x2C\x97" 12427 "\x0E\x0C\x1D\x36\x49\xEB\xE9\x3D" 12428 "\x62\xA6\x19\x28\x9E\x26\xB4\x3F" 12429 "\xD7\x55\x42\x3C\xCD\x72\x0A\xF0" 12430 "\x7D\xE9\x95\x45\x86\xED\xB1\xE0" 12431 "\x8D\xE9\xC5\x86\x13\x24\x28\x7D" 12432 "\x74\xEF\xCA\x50\x12\x7E\x64\x8F" 12433 "\x1B\xF5\x5B\xFE\xE2\xAC\xFA\xE7" 12434 "\xBD\x38\x8C\x11\x20\xEF\xB1\xAA" 12435 "\x7B\xE5\xE5\x78\xAD\x9D\x2D\xA2" 12436 "\x8E\xDD\x48\xB3\xEF\x18\x92\x7E" 12437 "\xE6\x75\x0D\x54\x64\x11\xA3\x3A" 12438 "\xDB\x97\x0F\xD3\xDF\x07\xD3\x7E" 12439 "\x1E\xD1\x87\xE4\x74\xBB\x46\xF4" 12440 "\xBA\x23\x2D\x8D\x29\x07\x12\xCF" 12441 "\x34\xCD\x72\x7F\x01\x30\xE7\xA0" 12442 "\xF8\xDD\xA8\x08\xF0\xBC\xB1\xA2" 12443 "\xCC\xE1\x6B\x5F\xBE\xEA\xF1\xE4" 12444 "\x02\xC4\xAF\xFA\xAD\x31\xF4\xBF" 12445 "\xFC\x66\xAA\x37\xF2\x37\x39\x6B" 12446 "\xBC\x08\x3A\xA2\x29\xB3\xDF\xD1", 12447 .len = 496, 12448 }, 12449 }; 12450 12451 static const struct cipher_testvec serpent_ctr_tv_template[] = { 12452 { /* Generated with Crypto++ */ 12453 .key = "\x85\x62\x3F\x1C\xF9\xD6\x1C\xF9" 12454 "\xD6\xB3\x90\x6D\x4A\x90\x6D\x4A" 12455 "\x27\x04\xE1\x27\x04\xE1\xBE\x9B" 12456 "\x78\xBE\x9B\x78\x55\x32\x0F\x55", 12457 .klen = 32, 12458 .iv = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F" 12459 "\xC4\x29\x8E\xF3\x35\x9A\xFF\x64", 12460 .iv_out = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F" 12461 "\xC4\x29\x8E\xF3\x35\x9A\xFF\x83", 12462 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 12463 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 12464 "\x3A\xD1\x45\xDC\x73\x0A\x7E\x15" 12465 "\xAC\x20\xB7\x4E\xE5\x59\xF0\x87" 12466 "\x1E\x92\x29\xC0\x34\xCB\x62\xF9" 12467 "\x6D\x04\x9B\x0F\xA6\x3D\xD4\x48" 12468 "\xDF\x76\x0D\x81\x18\xAF\x23\xBA" 12469 "\x51\xE8\x5C\xF3\x8A\x21\x95\x2C" 12470 "\xC3\x37\xCE\x65\xFC\x70\x07\x9E" 12471 "\x12\xA9\x40\xD7\x4B\xE2\x79\x10" 12472 "\x84\x1B\xB2\x26\xBD\x54\xEB\x5F" 12473 "\xF6\x8D\x01\x98\x2F\xC6\x3A\xD1" 12474 "\x68\xFF\x73\x0A\xA1\x15\xAC\x43" 12475 "\xDA\x4E\xE5\x7C\x13\x87\x1E\xB5" 12476 "\x29\xC0\x57\xEE\x62\xF9\x90\x04" 12477 "\x9B\x32\xC9\x3D\xD4\x6B\x02\x76" 12478 "\x0D\xA4\x18\xAF\x46\xDD\x51\xE8" 12479 "\x7F\x16\x8A\x21\xB8\x2C\xC3\x5A" 12480 "\xF1\x65\xFC\x93\x07\x9E\x35\xCC" 12481 "\x40\xD7\x6E\x05\x79\x10\xA7\x1B" 12482 "\xB2\x49\xE0\x54\xEB\x82\x19\x8D" 12483 "\x24\xBB\x2F\xC6\x5D\xF4\x68\xFF" 12484 "\x96\x0A\xA1\x38\xCF\x43\xDA\x71" 12485 "\x08\x7C\x13\xAA\x1E\xB5\x4C\xE3" 12486 "\x57\xEE\x85\x1C\x90\x27\xBE\x32" 12487 "\xC9\x60\xF7\x6B\x02\x99\x0D\xA4" 12488 "\x3B\xD2\x46\xDD\x74\x0B\x7F\x16" 12489 "\xAD\x21\xB8\x4F\xE6\x5A\xF1\x88" 12490 "\x1F\x93\x2A\xC1\x35\xCC\x63\xFA" 12491 "\x6E\x05\x9C\x10\xA7\x3E\xD5\x49" 12492 "\xE0\x77\x0E\x82\x19\xB0\x24\xBB" 12493 "\x52\xE9\x5D\xF4\x8B\x22\x96\x2D" 12494 "\xC4\x38\xCF\x66\xFD\x71\x08\x9F" 12495 "\x13\xAA\x41\xD8\x4C\xE3\x7A\x11" 12496 "\x85\x1C\xB3\x27\xBE\x55\xEC\x60" 12497 "\xF7\x8E\x02\x99\x30\xC7\x3B\xD2" 12498 "\x69\x00\x74\x0B\xA2\x16\xAD\x44" 12499 "\xDB\x4F\xE6\x7D\x14\x88\x1F\xB6" 12500 "\x2A\xC1\x58\xEF\x63\xFA\x91\x05" 12501 "\x9C\x33\xCA\x3E\xD5\x6C\x03\x77" 12502 "\x0E\xA5\x19\xB0\x47\xDE\x52\xE9" 12503 "\x80\x17\x8B\x22\xB9\x2D\xC4\x5B" 12504 "\xF2\x66\xFD\x94\x08\x9F\x36\xCD" 12505 "\x41\xD8\x6F\x06\x7A\x11\xA8\x1C" 12506 "\xB3\x4A\xE1\x55\xEC\x83\x1A\x8E" 12507 "\x25\xBC\x30\xC7\x5E\xF5\x69\x00" 12508 "\x97\x0B\xA2\x39\xD0\x44\xDB\x72" 12509 "\x09\x7D\x14\xAB\x1F\xB6\x4D\xE4" 12510 "\x58\xEF\x86\x1D\x91\x28\xBF\x33" 12511 "\xCA\x61\xF8\x6C\x03\x9A\x0E\xA5" 12512 "\x3C\xD3\x47\xDE\x75\x0C\x80\x17" 12513 "\xAE\x22\xB9\x50\xE7\x5B\xF2\x89" 12514 "\x20\x94\x2B\xC2\x36\xCD\x64\xFB" 12515 "\x6F\x06\x9D\x11\xA8\x3F\xD6\x4A" 12516 "\xE1\x78\x0F\x83\x1A\xB1\x25\xBC" 12517 "\x53\xEA\x5E\xF5\x8C\x00\x97\x2E" 12518 "\xC5\x39\xD0\x67\xFE\x72\x09\xA0" 12519 "\x14\xAB\x42\xD9\x4D\xE4\x7B\x12" 12520 "\x86\x1D\xB4\x28\xBF\x56\xED\x61" 12521 "\xF8\x8F\x03\x9A\x31\xC8\x3C\xD3" 12522 "\x6A\x01\x75\x0C\xA3\x17\xAE\x45" 12523 "\xDC\x50\xE7\x7E\x15\x89\x20\xB7", 12524 .ctext = "\x84\x68\xEC\xF2\x1C\x88\x20\xCA" 12525 "\x37\x69\xE3\x3A\x22\x85\x48\x46" 12526 "\x70\xAA\x25\xB4\xCD\x8B\x04\x4E" 12527 "\x8D\x15\x2B\x98\xDF\x7B\x6D\xB9" 12528 "\xE0\x4A\x73\x00\x65\xB6\x1A\x0D" 12529 "\x5C\x60\xDF\x34\xDC\x60\x4C\xDF" 12530 "\xB5\x1F\x26\x8C\xDA\xC1\x11\xA8" 12531 "\x80\xFA\x37\x7A\x89\xAA\xAE\x7B" 12532 "\x92\x6E\xB9\xDC\xC9\x62\x4F\x88" 12533 "\x0A\x5D\x97\x2F\x6B\xAC\x03\x7C" 12534 "\x22\xF6\x55\x5A\xFA\x35\xA5\x17" 12535 "\xA1\x5C\x5E\x2B\x63\x2D\xB9\x91" 12536 "\x3E\x83\x26\x00\x4E\xD5\xBE\xCE" 12537 "\x79\xC4\x3D\xFC\x70\xA0\xAD\x96" 12538 "\xBA\x58\x2A\x1C\xDF\xC2\x3A\xA5" 12539 "\x7C\xB5\x12\x89\xED\xBF\xB6\x09" 12540 "\x13\x4F\x7D\x61\x3C\x5C\x27\xFC" 12541 "\x5D\xE1\x4F\xA1\xEA\xB3\xCA\xB9" 12542 "\xE6\xD0\x97\x81\xDE\xD1\xFB\x8A" 12543 "\x30\xDB\xA3\x5D\xEC\x25\x0B\x86" 12544 "\x71\xC8\xA7\x67\xE8\xBC\x7D\x4C" 12545 "\xAE\x82\xD3\x73\x31\x09\xCB\xB3" 12546 "\x4D\xD4\xC0\x8A\x2B\xFA\xA6\x55" 12547 "\x39\x0A\xBC\x6E\x75\xAB\xC2\xE2" 12548 "\x8A\xF2\x26\xCD\x63\x38\x35\xF7" 12549 "\xAE\x12\x83\xCD\x8A\x9E\x7E\x4C" 12550 "\xFE\x4D\xD7\xCE\x5C\x6E\x4C\xAF" 12551 "\xE3\xCD\x76\xA7\x87\xA1\x54\x7C" 12552 "\xEC\x32\xC7\x83\x2A\xFF\xF8\xEA" 12553 "\x87\xB2\x47\xA3\x9D\xC2\x9C\xA2" 12554 "\xB7\x2C\x7C\x1A\x24\xCB\x88\x61" 12555 "\xFF\xA7\x1A\x16\x01\xDD\x4B\xFC" 12556 "\x2E\xE0\x48\x67\x09\x42\xCC\x91" 12557 "\xBE\x20\x38\xC0\x5E\x3B\x95\x00" 12558 "\xA1\x96\x66\x0B\x8A\xE9\x9E\xF7" 12559 "\x6B\x34\x0A\x51\xC0\x3B\xEB\x71" 12560 "\x07\x97\x38\x4B\x5C\x56\x98\x67" 12561 "\x78\x9C\xD0\x0E\x2B\xB5\x67\x90" 12562 "\x75\xF8\xFE\x6D\x4E\x85\xCC\x0D" 12563 "\x18\x06\x15\x9D\x5A\x10\x13\x37" 12564 "\xA3\xD6\x68\xA2\xDF\x7E\xC7\x12" 12565 "\xC9\x0D\x4D\x91\xB0\x2A\x55\xFF" 12566 "\x6F\x73\x13\xDF\x28\xB5\x2A\x2C" 12567 "\xE4\xFC\x20\xD9\xF1\x7A\x82\xB1" 12568 "\xCB\x57\xB6\x3D\x8C\xF4\x8E\x27" 12569 "\x37\xDC\x35\xF3\x79\x01\x53\xA4" 12570 "\x7B\x37\xDE\x7C\x04\xAE\x50\xDB" 12571 "\x9B\x1E\x8C\x07\xA7\x52\x49\x50" 12572 "\x34\x25\x65\xDD\xA9\x8F\x7E\xBD" 12573 "\x7A\xC9\x36\xAE\xDE\x21\x48\x64" 12574 "\xC2\x02\xBA\xBE\x11\x1E\x3D\x9C" 12575 "\x98\x52\xCC\x04\xBD\x5E\x61\x26" 12576 "\x10\xD3\x21\xD9\x6E\x25\x98\x77" 12577 "\x8E\x98\x63\xF6\xF6\x52\xFB\x13" 12578 "\xAA\x30\xF2\xB9\xA4\x43\x53\x39" 12579 "\x1C\x97\x07\x7E\x6B\xFF\x3D\x43" 12580 "\xA6\x71\x6B\x66\x8F\x58\x3F\x71" 12581 "\x90\x47\x40\x92\xE6\x69\xD1\x96" 12582 "\x34\xB3\x3B\xE5\x43\xE4\xD5\x56" 12583 "\xB2\xE6\x7E\x86\x7A\x12\x17\x5B" 12584 "\x30\xF3\x9B\x0D\xFA\x57\xE4\x50" 12585 "\x40\x53\x77\x8C\x15\xF8\x8D\x13", 12586 .len = 496, 12587 }, { /* Generated with Crypto++ */ 12588 .key = "\x85\x62\x3F\x1C\xF9\xD6\x1C\xF9" 12589 "\xD6\xB3\x90\x6D\x4A\x90\x6D\x4A" 12590 "\x27\x04\xE1\x27\x04\xE1\xBE\x9B" 12591 "\x78\xBE\x9B\x78\x55\x32\x0F\x55", 12592 .klen = 32, 12593 .iv = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F" 12594 "\xC4\x29\x8E\xF3\x35\x9A\xFF\x64", 12595 .iv_out = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F" 12596 "\xC4\x29\x8E\xF3\x35\x9A\xFF\x84", 12597 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 12598 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 12599 "\x3A\xD1\x45\xDC\x73\x0A\x7E\x15" 12600 "\xAC\x20\xB7\x4E\xE5\x59\xF0\x87" 12601 "\x1E\x92\x29\xC0\x34\xCB\x62\xF9" 12602 "\x6D\x04\x9B\x0F\xA6\x3D\xD4\x48" 12603 "\xDF\x76\x0D\x81\x18\xAF\x23\xBA" 12604 "\x51\xE8\x5C\xF3\x8A\x21\x95\x2C" 12605 "\xC3\x37\xCE\x65\xFC\x70\x07\x9E" 12606 "\x12\xA9\x40\xD7\x4B\xE2\x79\x10" 12607 "\x84\x1B\xB2\x26\xBD\x54\xEB\x5F" 12608 "\xF6\x8D\x01\x98\x2F\xC6\x3A\xD1" 12609 "\x68\xFF\x73\x0A\xA1\x15\xAC\x43" 12610 "\xDA\x4E\xE5\x7C\x13\x87\x1E\xB5" 12611 "\x29\xC0\x57\xEE\x62\xF9\x90\x04" 12612 "\x9B\x32\xC9\x3D\xD4\x6B\x02\x76" 12613 "\x0D\xA4\x18\xAF\x46\xDD\x51\xE8" 12614 "\x7F\x16\x8A\x21\xB8\x2C\xC3\x5A" 12615 "\xF1\x65\xFC\x93\x07\x9E\x35\xCC" 12616 "\x40\xD7\x6E\x05\x79\x10\xA7\x1B" 12617 "\xB2\x49\xE0\x54\xEB\x82\x19\x8D" 12618 "\x24\xBB\x2F\xC6\x5D\xF4\x68\xFF" 12619 "\x96\x0A\xA1\x38\xCF\x43\xDA\x71" 12620 "\x08\x7C\x13\xAA\x1E\xB5\x4C\xE3" 12621 "\x57\xEE\x85\x1C\x90\x27\xBE\x32" 12622 "\xC9\x60\xF7\x6B\x02\x99\x0D\xA4" 12623 "\x3B\xD2\x46\xDD\x74\x0B\x7F\x16" 12624 "\xAD\x21\xB8\x4F\xE6\x5A\xF1\x88" 12625 "\x1F\x93\x2A\xC1\x35\xCC\x63\xFA" 12626 "\x6E\x05\x9C\x10\xA7\x3E\xD5\x49" 12627 "\xE0\x77\x0E\x82\x19\xB0\x24\xBB" 12628 "\x52\xE9\x5D\xF4\x8B\x22\x96\x2D" 12629 "\xC4\x38\xCF\x66\xFD\x71\x08\x9F" 12630 "\x13\xAA\x41\xD8\x4C\xE3\x7A\x11" 12631 "\x85\x1C\xB3\x27\xBE\x55\xEC\x60" 12632 "\xF7\x8E\x02\x99\x30\xC7\x3B\xD2" 12633 "\x69\x00\x74\x0B\xA2\x16\xAD\x44" 12634 "\xDB\x4F\xE6\x7D\x14\x88\x1F\xB6" 12635 "\x2A\xC1\x58\xEF\x63\xFA\x91\x05" 12636 "\x9C\x33\xCA\x3E\xD5\x6C\x03\x77" 12637 "\x0E\xA5\x19\xB0\x47\xDE\x52\xE9" 12638 "\x80\x17\x8B\x22\xB9\x2D\xC4\x5B" 12639 "\xF2\x66\xFD\x94\x08\x9F\x36\xCD" 12640 "\x41\xD8\x6F\x06\x7A\x11\xA8\x1C" 12641 "\xB3\x4A\xE1\x55\xEC\x83\x1A\x8E" 12642 "\x25\xBC\x30\xC7\x5E\xF5\x69\x00" 12643 "\x97\x0B\xA2\x39\xD0\x44\xDB\x72" 12644 "\x09\x7D\x14\xAB\x1F\xB6\x4D\xE4" 12645 "\x58\xEF\x86\x1D\x91\x28\xBF\x33" 12646 "\xCA\x61\xF8\x6C\x03\x9A\x0E\xA5" 12647 "\x3C\xD3\x47\xDE\x75\x0C\x80\x17" 12648 "\xAE\x22\xB9\x50\xE7\x5B\xF2\x89" 12649 "\x20\x94\x2B\xC2\x36\xCD\x64\xFB" 12650 "\x6F\x06\x9D\x11\xA8\x3F\xD6\x4A" 12651 "\xE1\x78\x0F\x83\x1A\xB1\x25\xBC" 12652 "\x53\xEA\x5E\xF5\x8C\x00\x97\x2E" 12653 "\xC5\x39\xD0\x67\xFE\x72\x09\xA0" 12654 "\x14\xAB\x42\xD9\x4D\xE4\x7B\x12" 12655 "\x86\x1D\xB4\x28\xBF\x56\xED\x61" 12656 "\xF8\x8F\x03\x9A\x31\xC8\x3C\xD3" 12657 "\x6A\x01\x75\x0C\xA3\x17\xAE\x45" 12658 "\xDC\x50\xE7\x7E\x15\x89\x20\xB7" 12659 "\x2B\xC2\x59", 12660 .ctext = "\x84\x68\xEC\xF2\x1C\x88\x20\xCA" 12661 "\x37\x69\xE3\x3A\x22\x85\x48\x46" 12662 "\x70\xAA\x25\xB4\xCD\x8B\x04\x4E" 12663 "\x8D\x15\x2B\x98\xDF\x7B\x6D\xB9" 12664 "\xE0\x4A\x73\x00\x65\xB6\x1A\x0D" 12665 "\x5C\x60\xDF\x34\xDC\x60\x4C\xDF" 12666 "\xB5\x1F\x26\x8C\xDA\xC1\x11\xA8" 12667 "\x80\xFA\x37\x7A\x89\xAA\xAE\x7B" 12668 "\x92\x6E\xB9\xDC\xC9\x62\x4F\x88" 12669 "\x0A\x5D\x97\x2F\x6B\xAC\x03\x7C" 12670 "\x22\xF6\x55\x5A\xFA\x35\xA5\x17" 12671 "\xA1\x5C\x5E\x2B\x63\x2D\xB9\x91" 12672 "\x3E\x83\x26\x00\x4E\xD5\xBE\xCE" 12673 "\x79\xC4\x3D\xFC\x70\xA0\xAD\x96" 12674 "\xBA\x58\x2A\x1C\xDF\xC2\x3A\xA5" 12675 "\x7C\xB5\x12\x89\xED\xBF\xB6\x09" 12676 "\x13\x4F\x7D\x61\x3C\x5C\x27\xFC" 12677 "\x5D\xE1\x4F\xA1\xEA\xB3\xCA\xB9" 12678 "\xE6\xD0\x97\x81\xDE\xD1\xFB\x8A" 12679 "\x30\xDB\xA3\x5D\xEC\x25\x0B\x86" 12680 "\x71\xC8\xA7\x67\xE8\xBC\x7D\x4C" 12681 "\xAE\x82\xD3\x73\x31\x09\xCB\xB3" 12682 "\x4D\xD4\xC0\x8A\x2B\xFA\xA6\x55" 12683 "\x39\x0A\xBC\x6E\x75\xAB\xC2\xE2" 12684 "\x8A\xF2\x26\xCD\x63\x38\x35\xF7" 12685 "\xAE\x12\x83\xCD\x8A\x9E\x7E\x4C" 12686 "\xFE\x4D\xD7\xCE\x5C\x6E\x4C\xAF" 12687 "\xE3\xCD\x76\xA7\x87\xA1\x54\x7C" 12688 "\xEC\x32\xC7\x83\x2A\xFF\xF8\xEA" 12689 "\x87\xB2\x47\xA3\x9D\xC2\x9C\xA2" 12690 "\xB7\x2C\x7C\x1A\x24\xCB\x88\x61" 12691 "\xFF\xA7\x1A\x16\x01\xDD\x4B\xFC" 12692 "\x2E\xE0\x48\x67\x09\x42\xCC\x91" 12693 "\xBE\x20\x38\xC0\x5E\x3B\x95\x00" 12694 "\xA1\x96\x66\x0B\x8A\xE9\x9E\xF7" 12695 "\x6B\x34\x0A\x51\xC0\x3B\xEB\x71" 12696 "\x07\x97\x38\x4B\x5C\x56\x98\x67" 12697 "\x78\x9C\xD0\x0E\x2B\xB5\x67\x90" 12698 "\x75\xF8\xFE\x6D\x4E\x85\xCC\x0D" 12699 "\x18\x06\x15\x9D\x5A\x10\x13\x37" 12700 "\xA3\xD6\x68\xA2\xDF\x7E\xC7\x12" 12701 "\xC9\x0D\x4D\x91\xB0\x2A\x55\xFF" 12702 "\x6F\x73\x13\xDF\x28\xB5\x2A\x2C" 12703 "\xE4\xFC\x20\xD9\xF1\x7A\x82\xB1" 12704 "\xCB\x57\xB6\x3D\x8C\xF4\x8E\x27" 12705 "\x37\xDC\x35\xF3\x79\x01\x53\xA4" 12706 "\x7B\x37\xDE\x7C\x04\xAE\x50\xDB" 12707 "\x9B\x1E\x8C\x07\xA7\x52\x49\x50" 12708 "\x34\x25\x65\xDD\xA9\x8F\x7E\xBD" 12709 "\x7A\xC9\x36\xAE\xDE\x21\x48\x64" 12710 "\xC2\x02\xBA\xBE\x11\x1E\x3D\x9C" 12711 "\x98\x52\xCC\x04\xBD\x5E\x61\x26" 12712 "\x10\xD3\x21\xD9\x6E\x25\x98\x77" 12713 "\x8E\x98\x63\xF6\xF6\x52\xFB\x13" 12714 "\xAA\x30\xF2\xB9\xA4\x43\x53\x39" 12715 "\x1C\x97\x07\x7E\x6B\xFF\x3D\x43" 12716 "\xA6\x71\x6B\x66\x8F\x58\x3F\x71" 12717 "\x90\x47\x40\x92\xE6\x69\xD1\x96" 12718 "\x34\xB3\x3B\xE5\x43\xE4\xD5\x56" 12719 "\xB2\xE6\x7E\x86\x7A\x12\x17\x5B" 12720 "\x30\xF3\x9B\x0D\xFA\x57\xE4\x50" 12721 "\x40\x53\x77\x8C\x15\xF8\x8D\x13" 12722 "\x38\xE2\xE5", 12723 .len = 499, 12724 }, { /* Generated with Crypto++ */ 12725 .key = "\x85\x62\x3F\x1C\xF9\xD6\x1C\xF9" 12726 "\xD6\xB3\x90\x6D\x4A\x90\x6D\x4A" 12727 "\x27\x04\xE1\x27\x04\xE1\xBE\x9B" 12728 "\x78\xBE\x9B\x78\x55\x32\x0F\x55", 12729 .klen = 32, 12730 .iv = "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" 12731 "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFD", 12732 .iv_out = "\x00\x00\x00\x00\x00\x00\x00\x00" 12733 "\x00\x00\x00\x00\x00\x00\x00\x1C", 12734 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 12735 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 12736 "\x3A\xD1\x45\xDC\x73\x0A\x7E\x15" 12737 "\xAC\x20\xB7\x4E\xE5\x59\xF0\x87" 12738 "\x1E\x92\x29\xC0\x34\xCB\x62\xF9" 12739 "\x6D\x04\x9B\x0F\xA6\x3D\xD4\x48" 12740 "\xDF\x76\x0D\x81\x18\xAF\x23\xBA" 12741 "\x51\xE8\x5C\xF3\x8A\x21\x95\x2C" 12742 "\xC3\x37\xCE\x65\xFC\x70\x07\x9E" 12743 "\x12\xA9\x40\xD7\x4B\xE2\x79\x10" 12744 "\x84\x1B\xB2\x26\xBD\x54\xEB\x5F" 12745 "\xF6\x8D\x01\x98\x2F\xC6\x3A\xD1" 12746 "\x68\xFF\x73\x0A\xA1\x15\xAC\x43" 12747 "\xDA\x4E\xE5\x7C\x13\x87\x1E\xB5" 12748 "\x29\xC0\x57\xEE\x62\xF9\x90\x04" 12749 "\x9B\x32\xC9\x3D\xD4\x6B\x02\x76" 12750 "\x0D\xA4\x18\xAF\x46\xDD\x51\xE8" 12751 "\x7F\x16\x8A\x21\xB8\x2C\xC3\x5A" 12752 "\xF1\x65\xFC\x93\x07\x9E\x35\xCC" 12753 "\x40\xD7\x6E\x05\x79\x10\xA7\x1B" 12754 "\xB2\x49\xE0\x54\xEB\x82\x19\x8D" 12755 "\x24\xBB\x2F\xC6\x5D\xF4\x68\xFF" 12756 "\x96\x0A\xA1\x38\xCF\x43\xDA\x71" 12757 "\x08\x7C\x13\xAA\x1E\xB5\x4C\xE3" 12758 "\x57\xEE\x85\x1C\x90\x27\xBE\x32" 12759 "\xC9\x60\xF7\x6B\x02\x99\x0D\xA4" 12760 "\x3B\xD2\x46\xDD\x74\x0B\x7F\x16" 12761 "\xAD\x21\xB8\x4F\xE6\x5A\xF1\x88" 12762 "\x1F\x93\x2A\xC1\x35\xCC\x63\xFA" 12763 "\x6E\x05\x9C\x10\xA7\x3E\xD5\x49" 12764 "\xE0\x77\x0E\x82\x19\xB0\x24\xBB" 12765 "\x52\xE9\x5D\xF4\x8B\x22\x96\x2D" 12766 "\xC4\x38\xCF\x66\xFD\x71\x08\x9F" 12767 "\x13\xAA\x41\xD8\x4C\xE3\x7A\x11" 12768 "\x85\x1C\xB3\x27\xBE\x55\xEC\x60" 12769 "\xF7\x8E\x02\x99\x30\xC7\x3B\xD2" 12770 "\x69\x00\x74\x0B\xA2\x16\xAD\x44" 12771 "\xDB\x4F\xE6\x7D\x14\x88\x1F\xB6" 12772 "\x2A\xC1\x58\xEF\x63\xFA\x91\x05" 12773 "\x9C\x33\xCA\x3E\xD5\x6C\x03\x77" 12774 "\x0E\xA5\x19\xB0\x47\xDE\x52\xE9" 12775 "\x80\x17\x8B\x22\xB9\x2D\xC4\x5B" 12776 "\xF2\x66\xFD\x94\x08\x9F\x36\xCD" 12777 "\x41\xD8\x6F\x06\x7A\x11\xA8\x1C" 12778 "\xB3\x4A\xE1\x55\xEC\x83\x1A\x8E" 12779 "\x25\xBC\x30\xC7\x5E\xF5\x69\x00" 12780 "\x97\x0B\xA2\x39\xD0\x44\xDB\x72" 12781 "\x09\x7D\x14\xAB\x1F\xB6\x4D\xE4" 12782 "\x58\xEF\x86\x1D\x91\x28\xBF\x33" 12783 "\xCA\x61\xF8\x6C\x03\x9A\x0E\xA5" 12784 "\x3C\xD3\x47\xDE\x75\x0C\x80\x17" 12785 "\xAE\x22\xB9\x50\xE7\x5B\xF2\x89" 12786 "\x20\x94\x2B\xC2\x36\xCD\x64\xFB" 12787 "\x6F\x06\x9D\x11\xA8\x3F\xD6\x4A" 12788 "\xE1\x78\x0F\x83\x1A\xB1\x25\xBC" 12789 "\x53\xEA\x5E\xF5\x8C\x00\x97\x2E" 12790 "\xC5\x39\xD0\x67\xFE\x72\x09\xA0" 12791 "\x14\xAB\x42\xD9\x4D\xE4\x7B\x12" 12792 "\x86\x1D\xB4\x28\xBF\x56\xED\x61" 12793 "\xF8\x8F\x03\x9A\x31\xC8\x3C\xD3" 12794 "\x6A\x01\x75\x0C\xA3\x17\xAE\x45" 12795 "\xDC\x50\xE7\x7E\x15\x89\x20\xB7", 12796 .ctext = "\x06\x9A\xF8\xB4\x53\x88\x62\xFC" 12797 "\x68\xB8\x2E\xDF\xC1\x05\x0F\x3D" 12798 "\xAF\x4D\x95\xAE\xC4\xE9\x1C\xDC" 12799 "\xF6\x2B\x8F\x90\x89\xF6\x7E\x1A" 12800 "\xA6\xB9\xE4\xF4\xFA\xCA\xE5\x7E" 12801 "\x71\x28\x06\x4F\xE8\x08\x39\xDA" 12802 "\xA5\x0E\xC8\xC0\xB8\x16\xE5\x69" 12803 "\xE5\xCA\xEC\x4F\x63\x2C\xC0\x9B" 12804 "\x9F\x3E\x39\x79\xF0\xCD\x64\x35" 12805 "\x4A\xD3\xC8\xA9\x31\xCD\x48\x5B" 12806 "\x92\x3D\x8F\x3F\x96\xBD\xB3\x18" 12807 "\x74\x2A\x5D\x29\x3F\x57\x8F\xE2" 12808 "\x67\x9A\xE0\xE5\xD4\x4A\xE2\x47" 12809 "\xBC\xF6\xEB\x14\xF3\x8C\x20\xC2" 12810 "\x7D\xE2\x43\x81\x86\x72\x2E\xB1" 12811 "\x39\xF6\x95\xE1\x1F\xCB\x76\x33" 12812 "\x5B\x7D\x23\x0F\x3A\x67\x2A\x2F" 12813 "\xB9\x37\x9D\xDD\x1F\x16\xA1\x3C" 12814 "\x70\xFE\x52\xAA\x93\x3C\xC4\x46" 12815 "\xB1\xE5\xFF\xDA\xAF\xE2\x84\xFE" 12816 "\x25\x92\xB2\x63\xBD\x49\x77\xB4" 12817 "\x22\xA4\x6A\xD5\x04\xE0\x45\x58" 12818 "\x1C\x34\x96\x7C\x03\x0C\x13\xA2" 12819 "\x05\x22\xE2\xCB\x5A\x35\x03\x09" 12820 "\x40\xD2\x82\x05\xCA\x58\x73\xF2" 12821 "\x29\x5E\x01\x47\x13\x32\x78\xBE" 12822 "\x06\xB0\x51\xDB\x6C\x31\xA0\x1C" 12823 "\x74\xBC\x8D\x25\xDF\xF8\x65\xD1" 12824 "\x38\x35\x11\x26\x4A\xB4\x06\x32" 12825 "\xFA\xD2\x07\x77\xB3\x74\x98\x80" 12826 "\x61\x59\xA8\x9F\xF3\x6F\x2A\xBF" 12827 "\xE6\xA5\x9A\xC4\x6B\xA6\x49\x6F" 12828 "\xBC\x47\xD9\xFB\xC6\xEF\x25\x65" 12829 "\x96\xAC\x9F\xE4\x81\x4B\xD8\xBA" 12830 "\xD6\x9B\xC9\x6D\x58\x40\x81\x02" 12831 "\x73\x44\x4E\x43\x6E\x37\xBB\x11" 12832 "\xE3\xF9\xB8\x2F\xEC\x76\x34\xEA" 12833 "\x90\xCD\xB7\x2E\x0E\x32\x71\xE8" 12834 "\xBB\x4E\x0B\x98\xA4\x17\x17\x5B" 12835 "\x07\xB5\x82\x3A\xC4\xE8\x42\x51" 12836 "\x5A\x4C\x4E\x7D\xBF\xC4\xC0\x4F" 12837 "\x68\xB8\xC6\x4A\x32\x6F\x0B\xD7" 12838 "\x85\xED\x6B\xFB\x72\xD2\xA5\x8F" 12839 "\xBF\xF9\xAC\x59\x50\xA8\x08\x70" 12840 "\xEC\xBD\x0A\xBF\xE5\x87\xA1\xC2" 12841 "\x92\x14\x78\xAF\xE8\xEA\x2E\xDD" 12842 "\xC1\x03\x9A\xAA\x89\x8B\x32\x46" 12843 "\x5B\x18\x27\xBA\x46\xAA\x64\xDE" 12844 "\xE3\xD5\xA3\xFC\x7B\x5B\x61\xDB" 12845 "\x7E\xDA\xEC\x30\x17\x19\xF8\x80" 12846 "\xB5\x5E\x27\xB5\x37\x3A\x1F\x28" 12847 "\x07\x73\xC3\x63\xCE\xFF\x8C\xFE" 12848 "\x81\x4E\xF8\x24\xF3\xB8\xC7\xE8" 12849 "\x16\x9A\xCC\x58\x2F\x88\x1C\x4B" 12850 "\xBB\x33\xA2\x73\xF0\x1C\x89\x0E" 12851 "\xDC\x34\x27\x89\x98\xCE\x1C\xA2" 12852 "\xD8\xB8\x90\xBE\xEC\x72\x28\x13" 12853 "\xAC\x7B\xF1\xD0\x7F\x7A\x28\x50" 12854 "\xB7\x99\x65\x8A\xC9\xC6\x21\x34" 12855 "\x7F\x67\x9D\xB7\x2C\xCC\xF5\x17" 12856 "\x2B\x89\xAC\xB0\xD7\x1E\x47\xB0" 12857 "\x61\xAF\xD4\x63\x6D\xB8\x2D\x20", 12858 .len = 496, 12859 }, 12860 }; 12861 12862 static const struct cipher_testvec serpent_lrw_tv_template[] = { 12863 /* Generated from AES-LRW test vectors */ 12864 { 12865 .key = "\x45\x62\xac\x25\xf8\x28\x17\x6d" 12866 "\x4c\x26\x84\x14\xb5\x68\x01\x85" 12867 "\x25\x8e\x2a\x05\xe7\x3e\x9d\x03" 12868 "\xee\x5a\x83\x0c\xcc\x09\x4c\x87", 12869 .klen = 32, 12870 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 12871 "\x00\x00\x00\x00\x00\x00\x00\x01", 12872 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 12873 "\x38\x39\x41\x42\x43\x44\x45\x46", 12874 .ctext = "\x6f\xbf\xd4\xa4\x5d\x71\x16\x79" 12875 "\x63\x9c\xa6\x8e\x40\xbe\x0d\x8a", 12876 .len = 16, 12877 }, { 12878 .key = "\x59\x70\x47\x14\xf5\x57\x47\x8c" 12879 "\xd7\x79\xe8\x0f\x54\x88\x79\x44" 12880 "\x0d\x48\xf0\xb7\xb1\x5a\x53\xea" 12881 "\x1c\xaa\x6b\x29\xc2\xca\xfb\xaf", 12882 .klen = 32, 12883 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 12884 "\x00\x00\x00\x00\x00\x00\x00\x02", 12885 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 12886 "\x38\x39\x41\x42\x43\x44\x45\x46", 12887 .ctext = "\xfd\xb2\x66\x98\x80\x96\x55\xad" 12888 "\x08\x94\x54\x9c\x21\x7c\x69\xe3", 12889 .len = 16, 12890 }, { 12891 .key = "\xd8\x2a\x91\x34\xb2\x6a\x56\x50" 12892 "\x30\xfe\x69\xe2\x37\x7f\x98\x47" 12893 "\xcd\xf9\x0b\x16\x0c\x64\x8f\xb6" 12894 "\xb0\x0d\x0d\x1b\xae\x85\x87\x1f", 12895 .klen = 32, 12896 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 12897 "\x00\x00\x00\x02\x00\x00\x00\x00", 12898 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 12899 "\x38\x39\x41\x42\x43\x44\x45\x46", 12900 .ctext = "\x14\x5e\x3d\x70\xc0\x6e\x9c\x34" 12901 "\x5b\x5e\xcf\x0f\xe4\x8c\x21\x5c", 12902 .len = 16, 12903 }, { 12904 .key = "\x0f\x6a\xef\xf8\xd3\xd2\xbb\x15" 12905 "\x25\x83\xf7\x3c\x1f\x01\x28\x74" 12906 "\xca\xc6\xbc\x35\x4d\x4a\x65\x54" 12907 "\x90\xae\x61\xcf\x7b\xae\xbd\xcc" 12908 "\xad\xe4\x94\xc5\x4a\x29\xae\x70", 12909 .klen = 40, 12910 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 12911 "\x00\x00\x00\x00\x00\x00\x00\x01", 12912 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 12913 "\x38\x39\x41\x42\x43\x44\x45\x46", 12914 .ctext = "\x25\x39\xaa\xa5\xf0\x65\xc8\xdc" 12915 "\x5d\x45\x95\x30\x8f\xff\x2f\x1b", 12916 .len = 16, 12917 }, { 12918 .key = "\x8a\xd4\xee\x10\x2f\xbd\x81\xff" 12919 "\xf8\x86\xce\xac\x93\xc5\xad\xc6" 12920 "\xa0\x19\x07\xc0\x9d\xf7\xbb\xdd" 12921 "\x52\x13\xb2\xb7\xf0\xff\x11\xd8" 12922 "\xd6\x08\xd0\xcd\x2e\xb1\x17\x6f", 12923 .klen = 40, 12924 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 12925 "\x00\x00\x00\x02\x00\x00\x00\x00", 12926 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 12927 "\x38\x39\x41\x42\x43\x44\x45\x46", 12928 .ctext = "\x0c\x20\x20\x63\xd6\x8b\xfc\x8f" 12929 "\xc0\xe2\x17\xbb\xd2\x59\x6f\x26", 12930 .len = 16, 12931 }, { 12932 .key = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c" 12933 "\x23\x84\xcb\x1c\x77\xd6\x19\x5d" 12934 "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21" 12935 "\xa7\x9c\x21\xf8\xcb\x90\x02\x89" 12936 "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1" 12937 "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e", 12938 .klen = 48, 12939 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 12940 "\x00\x00\x00\x00\x00\x00\x00\x01", 12941 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 12942 "\x38\x39\x41\x42\x43\x44\x45\x46", 12943 .ctext = "\xc1\x35\x2e\x53\xf0\x96\x4d\x9c" 12944 "\x2e\x18\xe6\x99\xcd\xd3\x15\x68", 12945 .len = 16, 12946 }, { 12947 .key = "\xfb\x76\x15\xb2\x3d\x80\x89\x1d" 12948 "\xd4\x70\x98\x0b\xc7\x95\x84\xc8" 12949 "\xb2\xfb\x64\xce\x60\x97\x87\x8d" 12950 "\x17\xfc\xe4\x5a\x49\xe8\x30\xb7" 12951 "\x6e\x78\x17\xe7\x2d\x5e\x12\xd4" 12952 "\x60\x64\x04\x7a\xf1\x2f\x9e\x0c", 12953 .klen = 48, 12954 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 12955 "\x00\x00\x00\x02\x00\x00\x00\x00", 12956 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 12957 "\x38\x39\x41\x42\x43\x44\x45\x46", 12958 .ctext = "\x86\x0a\xc6\xa9\x1a\x9f\xe7\xe6" 12959 "\x64\x3b\x33\xd6\xd5\x84\xd6\xdf", 12960 .len = 16, 12961 }, { 12962 .key = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c" 12963 "\x23\x84\xcb\x1c\x77\xd6\x19\x5d" 12964 "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21" 12965 "\xa7\x9c\x21\xf8\xcb\x90\x02\x89" 12966 "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1" 12967 "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e", 12968 .klen = 48, 12969 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 12970 "\x00\x00\x00\x00\x00\x00\x00\x01", 12971 .ptext = "\x05\x11\xb7\x18\xab\xc6\x2d\xac" 12972 "\x70\x5d\xf6\x22\x94\xcd\xe5\x6c" 12973 "\x17\x6b\xf6\x1c\xf0\xf3\x6e\xf8" 12974 "\x50\x38\x1f\x71\x49\xb6\x57\xd6" 12975 "\x8f\xcb\x8d\x6b\xe3\xa6\x29\x90" 12976 "\xfe\x2a\x62\x82\xae\x6d\x8b\xf6" 12977 "\xad\x1e\x9e\x20\x5f\x38\xbe\x04" 12978 "\xda\x10\x8e\xed\xa2\xa4\x87\xab" 12979 "\xda\x6b\xb4\x0c\x75\xba\xd3\x7c" 12980 "\xc9\xac\x42\x31\x95\x7c\xc9\x04" 12981 "\xeb\xd5\x6e\x32\x69\x8a\xdb\xa6" 12982 "\x15\xd7\x3f\x4f\x2f\x66\x69\x03" 12983 "\x9c\x1f\x54\x0f\xde\x1f\xf3\x65" 12984 "\x4c\x96\x12\xed\x7c\x92\x03\x01" 12985 "\x6f\xbc\x35\x93\xac\xf1\x27\xf1" 12986 "\xb4\x96\x82\x5a\x5f\xb0\xa0\x50" 12987 "\x89\xa4\x8e\x66\x44\x85\xcc\xfd" 12988 "\x33\x14\x70\xe3\x96\xb2\xc3\xd3" 12989 "\xbb\x54\x5a\x1a\xf9\x74\xa2\xc5" 12990 "\x2d\x64\x75\xdd\xb4\x54\xe6\x74" 12991 "\x8c\xd3\x9d\x9e\x86\xab\x51\x53" 12992 "\xb7\x93\x3e\x6f\xd0\x4e\x2c\x40" 12993 "\xf6\xa8\x2e\x3e\x9d\xf4\x66\xa5" 12994 "\x76\x12\x73\x44\x1a\x56\xd7\x72" 12995 "\x88\xcd\x21\x8c\x4c\x0f\xfe\xda" 12996 "\x95\xe0\x3a\xa6\xa5\x84\x46\xcd" 12997 "\xd5\x3e\x9d\x3a\xe2\x67\xe6\x60" 12998 "\x1a\xe2\x70\x85\x58\xc2\x1b\x09" 12999 "\xe1\xd7\x2c\xca\xad\xa8\x8f\xf9" 13000 "\xac\xb3\x0e\xdb\xca\x2e\xe2\xb8" 13001 "\x51\x71\xd9\x3c\x6c\xf1\x56\xf8" 13002 "\xea\x9c\xf1\xfb\x0c\xe6\xb7\x10" 13003 "\x1c\xf8\xa9\x7c\xe8\x53\x35\xc1" 13004 "\x90\x3e\x76\x4a\x74\xa4\x21\x2c" 13005 "\xf6\x2c\x4e\x0f\x94\x3a\x88\x2e" 13006 "\x41\x09\x6a\x33\x7d\xf6\xdd\x3f" 13007 "\x8d\x23\x31\x74\x84\xeb\x88\x6e" 13008 "\xcc\xb9\xbc\x22\x83\x19\x07\x22" 13009 "\xa5\x2d\xdf\xa5\xf3\x80\x85\x78" 13010 "\x84\x39\x6a\x6d\x6a\x99\x4f\xa5" 13011 "\x15\xfe\x46\xb0\xe4\x6c\xa5\x41" 13012 "\x3c\xce\x8f\x42\x60\x71\xa7\x75" 13013 "\x08\x40\x65\x8a\x82\xbf\xf5\x43" 13014 "\x71\x96\xa9\x4d\x44\x8a\x20\xbe" 13015 "\xfa\x4d\xbb\xc0\x7d\x31\x96\x65" 13016 "\xe7\x75\xe5\x3e\xfd\x92\x3b\xc9" 13017 "\x55\xbb\x16\x7e\xf7\xc2\x8c\xa4" 13018 "\x40\x1d\xe5\xef\x0e\xdf\xe4\x9a" 13019 "\x62\x73\x65\xfd\x46\x63\x25\x3d" 13020 "\x2b\xaf\xe5\x64\xfe\xa5\x5c\xcf" 13021 "\x24\xf3\xb4\xac\x64\xba\xdf\x4b" 13022 "\xc6\x96\x7d\x81\x2d\x8d\x97\xf7" 13023 "\xc5\x68\x77\x84\x32\x2b\xcc\x85" 13024 "\x74\x96\xf0\x12\x77\x61\xb9\xeb" 13025 "\x71\xaa\x82\xcb\x1c\xdb\x89\xc8" 13026 "\xc6\xb5\xe3\x5c\x7d\x39\x07\x24" 13027 "\xda\x39\x87\x45\xc0\x2b\xbb\x01" 13028 "\xac\xbc\x2a\x5c\x7f\xfc\xe8\xce" 13029 "\x6d\x9c\x6f\xed\xd3\xc1\xa1\xd6" 13030 "\xc5\x55\xa9\x66\x2f\xe1\xc8\x32" 13031 "\xa6\x5d\xa4\x3a\x98\x73\xe8\x45" 13032 "\xa4\xc7\xa8\xb4\xf6\x13\x03\xf6" 13033 "\xe9\x2e\xc4\x29\x0f\x84\xdb\xc4" 13034 "\x21\xc4\xc2\x75\x67\x89\x37\x0a", 13035 .ctext = "\xe3\x5a\x38\x0f\x4d\x92\x3a\x74" 13036 "\x15\xb1\x50\x8c\x9a\xd8\x99\x1d" 13037 "\x82\xec\xf1\x5f\x03\x6d\x02\x58" 13038 "\x90\x67\xfc\xdd\x8d\xe1\x38\x08" 13039 "\x7b\xc9\x9b\x4b\x04\x09\x50\x15" 13040 "\xce\xab\xda\x33\x30\x20\x12\xfa" 13041 "\x83\xc4\xa6\x9a\x2e\x7d\x90\xd9" 13042 "\xa6\xa6\x67\x43\xb4\xa7\xa8\x5c" 13043 "\xbb\x6a\x49\x2b\x8b\xf8\xd0\x22" 13044 "\xe5\x9e\xba\xe8\x8c\x67\xb8\x5b" 13045 "\x60\xbc\xf5\xa4\x95\x4e\x66\xe5" 13046 "\x6d\x8e\xa9\xf6\x65\x2e\x04\xf5" 13047 "\xba\xb5\xdb\x88\xc2\xf6\x7a\x4b" 13048 "\x89\x58\x7c\x9a\xae\x26\xe8\xb7" 13049 "\xb7\x28\xcc\xd6\xcc\xa5\x98\x4d" 13050 "\xb9\x91\xcb\xb4\xe4\x8b\x96\x47" 13051 "\x5f\x03\x8b\xdd\x94\xd1\xee\x12" 13052 "\xa7\x83\x80\xf2\xc1\x15\x74\x4f" 13053 "\x49\xf9\xb0\x7e\x6f\xdc\x73\x2f" 13054 "\xe2\xcf\xe0\x1b\x34\xa5\xa0\x52" 13055 "\xfb\x3c\x5d\x85\x91\xe6\x6d\x98" 13056 "\x04\xd6\xdd\x4c\x00\x64\xd9\x54" 13057 "\x5c\x3c\x08\x1d\x4c\x06\x9f\xb8" 13058 "\x1c\x4d\x8d\xdc\xa4\x3c\xb9\x3b" 13059 "\x9e\x85\xce\xc3\xa8\x4a\x0c\xd9" 13060 "\x04\xc3\x6f\x17\x66\xa9\x1f\x59" 13061 "\xd9\xe2\x19\x36\xa3\x88\xb8\x0b" 13062 "\x0f\x4a\x4d\xf8\xc8\x6f\xd5\x43" 13063 "\xeb\xa0\xab\x1f\x61\xc0\x06\xeb" 13064 "\x93\xb7\xb8\x6f\x0d\xbd\x07\x49" 13065 "\xb3\xac\x5d\xcf\x31\xa0\x27\x26" 13066 "\x21\xbe\x94\x2e\x19\xea\xf4\xee" 13067 "\xb5\x13\x89\xf7\x94\x0b\xef\x59" 13068 "\x44\xc5\x78\x8b\x3c\x3b\x71\x20" 13069 "\xf9\x35\x0c\x70\x74\xdc\x5b\xc2" 13070 "\xb4\x11\x0e\x2c\x61\xa1\x52\x46" 13071 "\x18\x11\x16\xc6\x86\x44\xa7\xaf" 13072 "\xd5\x0c\x7d\xa6\x9e\x25\x2d\x1b" 13073 "\x9a\x8f\x0f\xf8\x6a\x61\xa0\xea" 13074 "\x3f\x0e\x90\xd6\x8f\x83\x30\x64" 13075 "\xb5\x51\x2d\x08\x3c\xcd\x99\x36" 13076 "\x96\xd4\xb1\xb5\x48\x30\xca\x48" 13077 "\xf7\x11\xa8\xf5\x97\x8a\x6a\x6d" 13078 "\x12\x33\x2f\xc0\xe8\xda\xec\x8a" 13079 "\xe1\x88\x72\x63\xde\x20\xa3\xe1" 13080 "\x8e\xac\x84\x37\x35\xf5\xf7\x3f" 13081 "\x00\x02\x0e\xe4\xc1\x53\x68\x3f" 13082 "\xaa\xd5\xac\x52\x3d\x20\x2f\x4d" 13083 "\x7c\x83\xd0\xbd\xaa\x97\x35\x36" 13084 "\x98\x88\x59\x5d\xe7\x24\xe3\x90" 13085 "\x9d\x30\x47\xa7\xc3\x60\x35\xf4" 13086 "\xd5\xdb\x0e\x4d\x44\xc1\x81\x8b" 13087 "\xfd\xbd\xc3\x2b\xba\x68\xfe\x8d" 13088 "\x49\x5a\x3c\x8a\xa3\x01\xae\x25" 13089 "\x42\xab\xd2\x87\x1b\x35\xd6\xd2" 13090 "\xd7\x70\x1c\x1f\x72\xd1\xe1\x39" 13091 "\x1c\x58\xa2\xb4\xd0\x78\x55\x72" 13092 "\x76\x59\xea\xd9\xd7\x6e\x63\x8b" 13093 "\xcc\x9b\xa7\x74\x89\xfc\xa3\x68" 13094 "\x86\x28\xd1\xbb\x54\x8d\x66\xad" 13095 "\x2a\x92\xf9\x4e\x04\x3d\xae\xfd" 13096 "\x1b\x2b\x7f\xc3\x2f\x1a\x78\x0a" 13097 "\x5c\xc6\x84\xfe\x7c\xcb\x26\xfd" 13098 "\xd9\x51\x0f\xd7\x94\x2f\xc5\xa7", 13099 .len = 512, 13100 }, 13101 }; 13102 13103 static const struct cipher_testvec serpent_xts_tv_template[] = { 13104 /* Generated from AES-XTS test vectors */ 13105 { 13106 .key = "\x00\x00\x00\x00\x00\x00\x00\x00" 13107 "\x00\x00\x00\x00\x00\x00\x00\x00" 13108 "\x00\x00\x00\x00\x00\x00\x00\x00" 13109 "\x00\x00\x00\x00\x00\x00\x00\x00", 13110 .klen = 32, 13111 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 13112 "\x00\x00\x00\x00\x00\x00\x00\x00", 13113 .ptext = "\x00\x00\x00\x00\x00\x00\x00\x00" 13114 "\x00\x00\x00\x00\x00\x00\x00\x00" 13115 "\x00\x00\x00\x00\x00\x00\x00\x00" 13116 "\x00\x00\x00\x00\x00\x00\x00\x00", 13117 .ctext = "\xe1\x08\xb8\x1d\x2c\xf5\x33\x64" 13118 "\xc8\x12\x04\xc7\xb3\x70\xe8\xc4" 13119 "\x6a\x31\xc5\xf3\x00\xca\xb9\x16" 13120 "\xde\xe2\x77\x66\xf7\xfe\x62\x08", 13121 .len = 32, 13122 }, { 13123 .key = "\x11\x11\x11\x11\x11\x11\x11\x11" 13124 "\x11\x11\x11\x11\x11\x11\x11\x11" 13125 "\x22\x22\x22\x22\x22\x22\x22\x22" 13126 "\x22\x22\x22\x22\x22\x22\x22\x22", 13127 .klen = 32, 13128 .iv = "\x33\x33\x33\x33\x33\x00\x00\x00" 13129 "\x00\x00\x00\x00\x00\x00\x00\x00", 13130 .ptext = "\x44\x44\x44\x44\x44\x44\x44\x44" 13131 "\x44\x44\x44\x44\x44\x44\x44\x44" 13132 "\x44\x44\x44\x44\x44\x44\x44\x44" 13133 "\x44\x44\x44\x44\x44\x44\x44\x44", 13134 .ctext = "\x1a\x0a\x09\x5f\xcd\x07\x07\x98" 13135 "\x41\x86\x12\xaf\xb3\xd7\x68\x13" 13136 "\xed\x81\xcd\x06\x87\x43\x1a\xbb" 13137 "\x13\x3d\xd6\x1e\x2b\xe1\x77\xbe", 13138 .len = 32, 13139 }, { 13140 .key = "\xff\xfe\xfd\xfc\xfb\xfa\xf9\xf8" 13141 "\xf7\xf6\xf5\xf4\xf3\xf2\xf1\xf0" 13142 "\x22\x22\x22\x22\x22\x22\x22\x22" 13143 "\x22\x22\x22\x22\x22\x22\x22\x22", 13144 .klen = 32, 13145 .iv = "\x33\x33\x33\x33\x33\x00\x00\x00" 13146 "\x00\x00\x00\x00\x00\x00\x00\x00", 13147 .ptext = "\x44\x44\x44\x44\x44\x44\x44\x44" 13148 "\x44\x44\x44\x44\x44\x44\x44\x44" 13149 "\x44\x44\x44\x44\x44\x44\x44\x44" 13150 "\x44\x44\x44\x44\x44\x44\x44\x44", 13151 .ctext = "\xf9\x9b\x28\xb8\x5c\xaf\x8c\x61" 13152 "\xb6\x1c\x81\x8f\x2c\x87\x60\x89" 13153 "\x0d\x8d\x7a\xe8\x60\x48\xcc\x86" 13154 "\xc1\x68\x45\xaa\x00\xe9\x24\xc5", 13155 .len = 32, 13156 }, { 13157 .key = "\x27\x18\x28\x18\x28\x45\x90\x45" 13158 "\x23\x53\x60\x28\x74\x71\x35\x26" 13159 "\x31\x41\x59\x26\x53\x58\x97\x93" 13160 "\x23\x84\x62\x64\x33\x83\x27\x95", 13161 .klen = 32, 13162 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 13163 "\x00\x00\x00\x00\x00\x00\x00\x00", 13164 .ptext = "\x00\x01\x02\x03\x04\x05\x06\x07" 13165 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 13166 "\x10\x11\x12\x13\x14\x15\x16\x17" 13167 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 13168 "\x20\x21\x22\x23\x24\x25\x26\x27" 13169 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 13170 "\x30\x31\x32\x33\x34\x35\x36\x37" 13171 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 13172 "\x40\x41\x42\x43\x44\x45\x46\x47" 13173 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 13174 "\x50\x51\x52\x53\x54\x55\x56\x57" 13175 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 13176 "\x60\x61\x62\x63\x64\x65\x66\x67" 13177 "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 13178 "\x70\x71\x72\x73\x74\x75\x76\x77" 13179 "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 13180 "\x80\x81\x82\x83\x84\x85\x86\x87" 13181 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 13182 "\x90\x91\x92\x93\x94\x95\x96\x97" 13183 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 13184 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 13185 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 13186 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 13187 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 13188 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 13189 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 13190 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 13191 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 13192 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 13193 "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 13194 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 13195 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff" 13196 "\x00\x01\x02\x03\x04\x05\x06\x07" 13197 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 13198 "\x10\x11\x12\x13\x14\x15\x16\x17" 13199 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 13200 "\x20\x21\x22\x23\x24\x25\x26\x27" 13201 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 13202 "\x30\x31\x32\x33\x34\x35\x36\x37" 13203 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 13204 "\x40\x41\x42\x43\x44\x45\x46\x47" 13205 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 13206 "\x50\x51\x52\x53\x54\x55\x56\x57" 13207 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 13208 "\x60\x61\x62\x63\x64\x65\x66\x67" 13209 "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 13210 "\x70\x71\x72\x73\x74\x75\x76\x77" 13211 "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 13212 "\x80\x81\x82\x83\x84\x85\x86\x87" 13213 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 13214 "\x90\x91\x92\x93\x94\x95\x96\x97" 13215 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 13216 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 13217 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 13218 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 13219 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 13220 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 13221 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 13222 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 13223 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 13224 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 13225 "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 13226 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 13227 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff", 13228 .ctext = "\xfe\x47\x4a\xc8\x60\x7e\xb4\x8b" 13229 "\x0d\x10\xf4\xb0\x0d\xba\xf8\x53" 13230 "\x65\x6e\x38\x4b\xdb\xaa\xb1\x9e" 13231 "\x28\xca\xb0\x22\xb3\x85\x75\xf4" 13232 "\x00\x5c\x75\x14\x06\xd6\x25\x82" 13233 "\xe6\xcb\x08\xf7\x29\x90\x23\x8e" 13234 "\xa4\x68\x57\xe4\xf0\xd8\x32\xf3" 13235 "\x80\x51\x67\xb5\x0b\x85\x69\xe8" 13236 "\x19\xfe\xc4\xc7\x3e\xea\x90\xd3" 13237 "\x8f\xa3\xf2\x0a\xac\x17\x4b\xa0" 13238 "\x63\x5a\x16\x0f\xf0\xce\x66\x1f" 13239 "\x2c\x21\x07\xf1\xa4\x03\xa3\x44" 13240 "\x41\x61\x87\x5d\x6b\xb3\xef\xd4" 13241 "\xfc\xaa\x32\x7e\x55\x58\x04\x41" 13242 "\xc9\x07\x33\xc6\xa2\x68\xd6\x5a" 13243 "\x55\x79\x4b\x6f\xcf\x89\xb9\x19" 13244 "\xe5\x54\x13\x15\xb2\x1a\xfa\x15" 13245 "\xc2\xf0\x06\x59\xfa\xa0\x25\x05" 13246 "\x58\xfa\x43\x91\x16\x85\x40\xbb" 13247 "\x0d\x34\x4d\xc5\x1e\x20\xd5\x08" 13248 "\xcd\x22\x22\x41\x11\x9f\x6c\x7c" 13249 "\x8d\x57\xc9\xba\x57\xe8\x2c\xf7" 13250 "\xa0\x42\xa8\xde\xfc\xa3\xca\x98" 13251 "\x4b\x43\xb1\xce\x4b\xbf\x01\x67" 13252 "\x6e\x29\x60\xbd\x10\x14\x84\x82" 13253 "\x83\x82\x0c\x63\x73\x92\x02\x7c" 13254 "\x55\x37\x20\x80\x17\x51\xc8\xbc" 13255 "\x46\x02\xcb\x38\x07\x6d\xe2\x85" 13256 "\xaa\x29\xaf\x24\x58\x0d\xf0\x75" 13257 "\x08\x0a\xa5\x34\x25\x16\xf3\x74" 13258 "\xa7\x0b\x97\xbe\xc1\xa9\xdc\x29" 13259 "\x1a\x0a\x56\xc1\x1a\x91\x97\x8c" 13260 "\x0b\xc7\x16\xed\x5a\x22\xa6\x2e" 13261 "\x8c\x2b\x4f\x54\x76\x47\x53\x8e" 13262 "\xe8\x00\xec\x92\xb9\x55\xe6\xa2" 13263 "\xf3\xe2\x4f\x6a\x66\x60\xd0\x87" 13264 "\xe6\xd1\xcc\xe3\x6a\xc5\x2d\x21" 13265 "\xcc\x9d\x6a\xb6\x75\xaa\xe2\x19" 13266 "\x21\x9f\xa1\x5e\x4c\xfd\x72\xf9" 13267 "\x94\x4e\x63\xc7\xae\xfc\xed\x47" 13268 "\xe2\xfe\x7a\x63\x77\xfe\x97\x82" 13269 "\xb1\x10\x6e\x36\x1d\xe1\xc4\x80" 13270 "\xec\x69\x41\xec\xa7\x8a\xe0\x2f" 13271 "\xe3\x49\x26\xa2\x41\xb2\x08\x0f" 13272 "\x28\xb4\xa7\x39\xa1\x99\x2d\x1e" 13273 "\x43\x42\x35\xd0\xcf\xec\x77\x67" 13274 "\xb2\x3b\x9e\x1c\x35\xde\x4f\x5e" 13275 "\x73\x3f\x5d\x6f\x07\x4b\x2e\x50" 13276 "\xab\x6c\x6b\xff\xea\x00\x67\xaa" 13277 "\x0e\x82\x32\xdd\x3d\xb5\xe5\x76" 13278 "\x2b\x77\x3f\xbe\x12\x75\xfb\x92" 13279 "\xc6\x89\x67\x4d\xca\xf7\xd4\x50" 13280 "\xc0\x74\x47\xcc\xd9\x0a\xd4\xc6" 13281 "\x3b\x17\x2e\xe3\x35\xbb\x53\xb5" 13282 "\x86\xad\x51\xcc\xd5\x96\xb8\xdc" 13283 "\x03\x57\xe6\x98\x52\x2f\x61\x62" 13284 "\xc4\x5c\x9c\x36\x71\x07\xfb\x94" 13285 "\xe3\x02\xc4\x2b\x08\x75\xc7\x35" 13286 "\xfb\x2e\x88\x7b\xbb\x67\x00\xe1" 13287 "\xc9\xdd\x99\xb2\x13\x53\x1a\x4e" 13288 "\x76\x87\x19\x04\x1a\x2f\x38\x3e" 13289 "\xef\x91\x64\x1d\x18\x07\x4e\x31" 13290 "\x88\x21\x7c\xb0\xa5\x12\x4c\x3c" 13291 "\xb0\x20\xbd\xda\xdf\xf9\x7c\xdd", 13292 .len = 512, 13293 }, { 13294 .key = "\x27\x18\x28\x18\x28\x45\x90\x45" 13295 "\x23\x53\x60\x28\x74\x71\x35\x26" 13296 "\x62\x49\x77\x57\x24\x70\x93\x69" 13297 "\x99\x59\x57\x49\x66\x96\x76\x27" 13298 "\x31\x41\x59\x26\x53\x58\x97\x93" 13299 "\x23\x84\x62\x64\x33\x83\x27\x95" 13300 "\x02\x88\x41\x97\x16\x93\x99\x37" 13301 "\x51\x05\x82\x09\x74\x94\x45\x92", 13302 .klen = 64, 13303 .iv = "\xff\x00\x00\x00\x00\x00\x00\x00" 13304 "\x00\x00\x00\x00\x00\x00\x00\x00", 13305 .ptext = "\x00\x01\x02\x03\x04\x05\x06\x07" 13306 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 13307 "\x10\x11\x12\x13\x14\x15\x16\x17" 13308 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 13309 "\x20\x21\x22\x23\x24\x25\x26\x27" 13310 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 13311 "\x30\x31\x32\x33\x34\x35\x36\x37" 13312 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 13313 "\x40\x41\x42\x43\x44\x45\x46\x47" 13314 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 13315 "\x50\x51\x52\x53\x54\x55\x56\x57" 13316 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 13317 "\x60\x61\x62\x63\x64\x65\x66\x67" 13318 "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 13319 "\x70\x71\x72\x73\x74\x75\x76\x77" 13320 "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 13321 "\x80\x81\x82\x83\x84\x85\x86\x87" 13322 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 13323 "\x90\x91\x92\x93\x94\x95\x96\x97" 13324 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 13325 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 13326 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 13327 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 13328 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 13329 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 13330 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 13331 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 13332 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 13333 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 13334 "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 13335 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 13336 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff" 13337 "\x00\x01\x02\x03\x04\x05\x06\x07" 13338 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 13339 "\x10\x11\x12\x13\x14\x15\x16\x17" 13340 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 13341 "\x20\x21\x22\x23\x24\x25\x26\x27" 13342 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 13343 "\x30\x31\x32\x33\x34\x35\x36\x37" 13344 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 13345 "\x40\x41\x42\x43\x44\x45\x46\x47" 13346 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 13347 "\x50\x51\x52\x53\x54\x55\x56\x57" 13348 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 13349 "\x60\x61\x62\x63\x64\x65\x66\x67" 13350 "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 13351 "\x70\x71\x72\x73\x74\x75\x76\x77" 13352 "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 13353 "\x80\x81\x82\x83\x84\x85\x86\x87" 13354 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 13355 "\x90\x91\x92\x93\x94\x95\x96\x97" 13356 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 13357 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 13358 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 13359 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 13360 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 13361 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 13362 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 13363 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 13364 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 13365 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 13366 "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 13367 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 13368 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff", 13369 .ctext = "\x2b\xc9\xb4\x6b\x10\x94\xa9\x32" 13370 "\xaa\xb0\x20\xc6\x44\x3d\x74\x1f" 13371 "\x75\x01\xa7\xf6\xf5\xf7\x62\x1b" 13372 "\x80\x1b\x82\xcb\x01\x59\x91\x7f" 13373 "\x80\x3a\x98\xf0\xd2\xca\xc4\xc3" 13374 "\x34\xfd\xe6\x11\xf9\x33\x45\x12" 13375 "\x48\xc5\x8c\x25\xf1\xc5\xc5\x23" 13376 "\xd3\x44\xb4\x73\xd5\x04\xc0\xb7" 13377 "\xca\x2f\xf5\xcd\xc5\xb4\xdd\xb0" 13378 "\xf4\x60\xe8\xfb\xc6\x9c\xc5\x78" 13379 "\xcd\xec\x7d\xdc\x19\x9c\x72\x64" 13380 "\x63\x0b\x38\x2e\x76\xdd\x2d\x36" 13381 "\x49\xb0\x1d\xea\x78\x9e\x00\xca" 13382 "\x20\xcc\x1b\x1e\x98\x74\xab\xed" 13383 "\x79\xf7\xd0\x6c\xd8\x93\x80\x29" 13384 "\xac\xa5\x5e\x34\xa9\xab\xa0\x55" 13385 "\x9a\xea\xaa\x95\x4d\x7b\xfe\x46" 13386 "\x26\x8a\xfd\x88\xa2\xa8\xa6\xae" 13387 "\x25\x42\x17\xbf\x76\x8f\x1c\x3d" 13388 "\xec\x9a\xda\x64\x96\xb5\x61\xff" 13389 "\x99\xeb\x12\x96\x85\x82\x9d\xd5" 13390 "\x81\x85\x14\xa8\x59\xac\x8c\x94" 13391 "\xbb\x3b\x85\x2b\xdf\xb3\x0c\xba" 13392 "\x82\xc6\x4d\xca\x86\xea\x53\x28" 13393 "\x4c\xe0\x4e\x31\xe3\x73\x2f\x79" 13394 "\x9d\x42\xe1\x03\xe3\x8b\xc4\xff" 13395 "\x05\xca\x81\x7b\xda\xa2\xde\x63" 13396 "\x3a\x10\xbe\xc2\xac\x32\xc4\x05" 13397 "\x47\x7e\xef\x67\xe2\x5f\x5b\xae" 13398 "\xed\xf1\x70\x34\x16\x9a\x07\x7b" 13399 "\xf2\x25\x2b\xb0\xf8\x3c\x15\x9a" 13400 "\xa6\x59\x55\x5f\xc1\xf4\x1e\xcd" 13401 "\x93\x1f\x06\xba\xd4\x9a\x22\x69" 13402 "\xfa\x8e\x95\x0d\xf3\x23\x59\x2c" 13403 "\xfe\x00\xba\xf0\x0e\xbc\x6d\xd6" 13404 "\x62\xf0\x7a\x0e\x83\x3e\xdb\x32" 13405 "\xfd\x43\x7d\xda\x42\x51\x87\x43" 13406 "\x9d\xf9\xef\xf4\x30\x97\xf8\x09" 13407 "\x88\xfc\x3f\x93\x70\xc1\x4a\xec" 13408 "\x27\x5f\x11\xac\x71\xc7\x48\x46" 13409 "\x2f\xf9\xdf\x8d\x9f\xf7\x2e\x56" 13410 "\x0d\x4e\xb0\x32\x76\xce\x86\x81" 13411 "\xcd\xdf\xe4\x00\xbf\xfd\x5f\x24" 13412 "\xaf\xf7\x9a\xde\xff\x18\xac\x14" 13413 "\x90\xc5\x01\x39\x34\x0f\x24\xf3" 13414 "\x13\x2f\x5e\x4f\x30\x9a\x36\x40" 13415 "\xec\xea\xbc\xcd\x9e\x0e\x5b\x23" 13416 "\x50\x88\x97\x40\x69\xb1\x37\xf5" 13417 "\xc3\x15\xf9\x3f\xb7\x79\x64\xe8" 13418 "\x7b\x10\x20\xb9\x2b\x46\x83\x5b" 13419 "\xd8\x39\xfc\xe4\xfa\x88\x52\xf2" 13420 "\x72\xb0\x97\x4e\x89\xb3\x48\x00" 13421 "\xc1\x16\x73\x50\x77\xba\xa6\x65" 13422 "\x20\x2d\xb0\x02\x27\x89\xda\x99" 13423 "\x45\xfb\xe9\xd3\x1d\x39\x2f\xd6" 13424 "\x2a\xda\x09\x12\x11\xaf\xe6\x57" 13425 "\x01\x04\x8a\xff\x86\x8b\xac\xf8" 13426 "\xee\xe4\x1c\x98\x5b\xcf\x6b\x76" 13427 "\xa3\x0e\x33\x74\x40\x18\x39\x72" 13428 "\x66\x50\x31\xfd\x70\xdf\xe8\x51" 13429 "\x96\x21\x36\xb2\x9b\xfa\x85\xd1" 13430 "\x30\x05\xc8\x92\x98\x80\xff\x7a" 13431 "\xaf\x43\x0b\xc5\x20\x41\x92\x20" 13432 "\xd4\xa0\x91\x98\x11\x5f\x4d\xb1", 13433 .len = 512, 13434 }, 13435 }; 13436 13437 /* 13438 * SM4 test vectors taken from the "The SM4 Blockcipher Algorithm And Its 13439 * Modes Of Operations" draft RFC 13440 * https://datatracker.ietf.org/doc/draft-ribose-cfrg-sm4 13441 */ 13442 13443 static const struct cipher_testvec sm4_tv_template[] = { 13444 { /* GB/T 32907-2016 Example 1. */ 13445 .key = "\x01\x23\x45\x67\x89\xAB\xCD\xEF" 13446 "\xFE\xDC\xBA\x98\x76\x54\x32\x10", 13447 .klen = 16, 13448 .ptext = "\x01\x23\x45\x67\x89\xAB\xCD\xEF" 13449 "\xFE\xDC\xBA\x98\x76\x54\x32\x10", 13450 .ctext = "\x68\x1E\xDF\x34\xD2\x06\x96\x5E" 13451 "\x86\xB3\xE9\x4F\x53\x6E\x42\x46", 13452 .len = 16, 13453 }, { /* Last 10 iterations of GB/T 32907-2016 Example 2. */ 13454 .key = "\x01\x23\x45\x67\x89\xAB\xCD\xEF" 13455 "\xFE\xDC\xBA\x98\x76\x54\x32\x10", 13456 .klen = 16, 13457 .ptext = "\x99\x4a\xc3\xe7\xc3\x57\x89\x6a" 13458 "\x81\xfc\xa8\xe\x38\x3e\xef\x80" 13459 "\xb1\x98\xf2\xde\x3f\x4b\xae\xd1" 13460 "\xf0\xf1\x30\x4c\x1\x27\x5a\x8f" 13461 "\x45\xe1\x39\xb7\xae\xff\x1f\x27" 13462 "\xad\x57\x15\xab\x31\x5d\xc\xef" 13463 "\x8c\xc8\x80\xbd\x11\x98\xf3\x7b" 13464 "\xa2\xdd\x14\x20\xf9\xe8\xbb\x82" 13465 "\xf7\x32\xca\x4b\xa8\xf7\xb3\x4d" 13466 "\x27\xd1\xcd\xe6\xb6\x65\x5a\x23" 13467 "\xc2\xf3\x54\x84\x53\xe3\xb9\x20" 13468 "\xa5\x37\x0\xbe\xe7\x7b\x48\xfb" 13469 "\x21\x3d\x9e\x48\x1d\x9e\xf5\xbf" 13470 "\x77\xd5\xb4\x4a\x53\x71\x94\x7a" 13471 "\x88\xa6\x6e\x6\x93\xca\x43\xa5" 13472 "\xc4\xf6\xcd\x53\x4b\x7b\x8e\xfe" 13473 "\xb4\x28\x7c\x42\x29\x32\x5d\x88" 13474 "\xed\xce\x0\x19\xe\x16\x2\x6e" 13475 "\x87\xff\x2c\xac\xe8\xe7\xe9\xbf" 13476 "\x31\x51\xec\x47\xc3\x51\x83\xc1", 13477 .ctext = "\xb1\x98\xf2\xde\x3f\x4b\xae\xd1" 13478 "\xf0\xf1\x30\x4c\x1\x27\x5a\x8f" 13479 "\x45\xe1\x39\xb7\xae\xff\x1f\x27" 13480 "\xad\x57\x15\xab\x31\x5d\xc\xef" 13481 "\x8c\xc8\x80\xbd\x11\x98\xf3\x7b" 13482 "\xa2\xdd\x14\x20\xf9\xe8\xbb\x82" 13483 "\xf7\x32\xca\x4b\xa8\xf7\xb3\x4d" 13484 "\x27\xd1\xcd\xe6\xb6\x65\x5a\x23" 13485 "\xc2\xf3\x54\x84\x53\xe3\xb9\x20" 13486 "\xa5\x37\x0\xbe\xe7\x7b\x48\xfb" 13487 "\x21\x3d\x9e\x48\x1d\x9e\xf5\xbf" 13488 "\x77\xd5\xb4\x4a\x53\x71\x94\x7a" 13489 "\x88\xa6\x6e\x6\x93\xca\x43\xa5" 13490 "\xc4\xf6\xcd\x53\x4b\x7b\x8e\xfe" 13491 "\xb4\x28\x7c\x42\x29\x32\x5d\x88" 13492 "\xed\xce\x0\x19\xe\x16\x2\x6e" 13493 "\x87\xff\x2c\xac\xe8\xe7\xe9\xbf" 13494 "\x31\x51\xec\x47\xc3\x51\x83\xc1" 13495 "\x59\x52\x98\xc7\xc6\xfd\x27\x1f" 13496 "\x4\x2\xf8\x4\xc3\x3d\x3f\x66", 13497 .len = 160 13498 }, { /* A.2.1.1 SM4-ECB Example 1 */ 13499 .key = "\x01\x23\x45\x67\x89\xAB\xCD\xEF" 13500 "\xFE\xDC\xBA\x98\x76\x54\x32\x10", 13501 .klen = 16, 13502 .ptext = "\xaa\xaa\xaa\xaa\xbb\xbb\xbb\xbb" 13503 "\xcc\xcc\xcc\xcc\xdd\xdd\xdd\xdd" 13504 "\xee\xee\xee\xee\xff\xff\xff\xff" 13505 "\xaa\xaa\xaa\xaa\xbb\xbb\xbb\xbb", 13506 .ctext = "\x5e\xc8\x14\x3d\xe5\x09\xcf\xf7" 13507 "\xb5\x17\x9f\x8f\x47\x4b\x86\x19" 13508 "\x2f\x1d\x30\x5a\x7f\xb1\x7d\xf9" 13509 "\x85\xf8\x1c\x84\x82\x19\x23\x04", 13510 .len = 32, 13511 }, { /* A.2.1.2 SM4-ECB Example 2 */ 13512 .key = "\xFE\xDC\xBA\x98\x76\x54\x32\x10" 13513 "\x01\x23\x45\x67\x89\xAB\xCD\xEF", 13514 .klen = 16, 13515 .ptext = "\xaa\xaa\xaa\xaa\xbb\xbb\xbb\xbb" 13516 "\xcc\xcc\xcc\xcc\xdd\xdd\xdd\xdd" 13517 "\xee\xee\xee\xee\xff\xff\xff\xff" 13518 "\xaa\xaa\xaa\xaa\xbb\xbb\xbb\xbb", 13519 .ctext = "\xC5\x87\x68\x97\xE4\xA5\x9B\xBB" 13520 "\xA7\x2A\x10\xC8\x38\x72\x24\x5B" 13521 "\x12\xDD\x90\xBC\x2D\x20\x06\x92" 13522 "\xB5\x29\xA4\x15\x5A\xC9\xE6\x00", 13523 .len = 32, 13524 } 13525 }; 13526 13527 static const struct cipher_testvec sm4_cbc_tv_template[] = { 13528 { /* A.2.2.1 SM4-CBC Example 1 */ 13529 .key = "\x01\x23\x45\x67\x89\xAB\xCD\xEF" 13530 "\xFE\xDC\xBA\x98\x76\x54\x32\x10", 13531 .klen = 16, 13532 .ptext = "\xaa\xaa\xaa\xaa\xbb\xbb\xbb\xbb" 13533 "\xcc\xcc\xcc\xcc\xdd\xdd\xdd\xdd" 13534 "\xee\xee\xee\xee\xff\xff\xff\xff" 13535 "\xaa\xaa\xaa\xaa\xbb\xbb\xbb\xbb", 13536 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 13537 "\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F", 13538 .iv_out = "\x4C\xB7\x01\x69\x51\x90\x92\x26" 13539 "\x97\x9B\x0D\x15\xDC\x6A\x8F\x6D", 13540 .ctext = "\x78\xEB\xB1\x1C\xC4\x0B\x0A\x48" 13541 "\x31\x2A\xAE\xB2\x04\x02\x44\xCB" 13542 "\x4C\xB7\x01\x69\x51\x90\x92\x26" 13543 "\x97\x9B\x0D\x15\xDC\x6A\x8F\x6D", 13544 .len = 32, 13545 }, { /* A.2.2.2 SM4-CBC Example 2 */ 13546 .key = "\xFE\xDC\xBA\x98\x76\x54\x32\x10" 13547 "\x01\x23\x45\x67\x89\xAB\xCD\xEF", 13548 .klen = 16, 13549 .ptext = "\xaa\xaa\xaa\xaa\xbb\xbb\xbb\xbb" 13550 "\xcc\xcc\xcc\xcc\xdd\xdd\xdd\xdd" 13551 "\xee\xee\xee\xee\xff\xff\xff\xff" 13552 "\xaa\xaa\xaa\xaa\xbb\xbb\xbb\xbb", 13553 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 13554 "\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F", 13555 .iv_out = "\x91\xf2\xc1\x47\x91\x1a\x41\x44" 13556 "\x66\x5e\x1f\xa1\xd4\x0b\xae\x38", 13557 .ctext = "\x0d\x3a\x6d\xdc\x2d\x21\xc6\x98" 13558 "\x85\x72\x15\x58\x7b\x7b\xb5\x9a" 13559 "\x91\xf2\xc1\x47\x91\x1a\x41\x44" 13560 "\x66\x5e\x1f\xa1\xd4\x0b\xae\x38", 13561 .len = 32, 13562 } 13563 }; 13564 13565 static const struct cipher_testvec sm4_ctr_tv_template[] = { 13566 { /* A.2.5.1 SM4-CTR Example 1 */ 13567 .key = "\x01\x23\x45\x67\x89\xAB\xCD\xEF" 13568 "\xFE\xDC\xBA\x98\x76\x54\x32\x10", 13569 .klen = 16, 13570 .ptext = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 13571 "\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb" 13572 "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc" 13573 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 13574 "\xee\xee\xee\xee\xee\xee\xee\xee" 13575 "\xff\xff\xff\xff\xff\xff\xff\xff" 13576 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 13577 "\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb", 13578 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 13579 "\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F", 13580 .iv_out = "\x00\x01\x02\x03\x04\x05\x06\x07" 13581 "\x08\x09\x0A\x0B\x0C\x0D\x0E\x13", 13582 .ctext = "\xac\x32\x36\xcb\x97\x0c\xc2\x07" 13583 "\x91\x36\x4c\x39\x5a\x13\x42\xd1" 13584 "\xa3\xcb\xc1\x87\x8c\x6f\x30\xcd" 13585 "\x07\x4c\xce\x38\x5c\xdd\x70\xc7" 13586 "\xf2\x34\xbc\x0e\x24\xc1\x19\x80" 13587 "\xfd\x12\x86\x31\x0c\xe3\x7b\x92" 13588 "\x6e\x02\xfc\xd0\xfa\xa0\xba\xf3" 13589 "\x8b\x29\x33\x85\x1d\x82\x45\x14", 13590 .len = 64, 13591 }, { /* A.2.5.2 SM4-CTR Example 2 */ 13592 .key = "\xFE\xDC\xBA\x98\x76\x54\x32\x10" 13593 "\x01\x23\x45\x67\x89\xAB\xCD\xEF", 13594 .klen = 16, 13595 .ptext = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 13596 "\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb" 13597 "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc" 13598 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 13599 "\xee\xee\xee\xee\xee\xee\xee\xee" 13600 "\xff\xff\xff\xff\xff\xff\xff\xff" 13601 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 13602 "\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb", 13603 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 13604 "\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F", 13605 .iv_out = "\x00\x01\x02\x03\x04\x05\x06\x07" 13606 "\x08\x09\x0A\x0B\x0C\x0D\x0E\x13", 13607 .ctext = "\x5d\xcc\xcd\x25\xb9\x5a\xb0\x74" 13608 "\x17\xa0\x85\x12\xee\x16\x0e\x2f" 13609 "\x8f\x66\x15\x21\xcb\xba\xb4\x4c" 13610 "\xc8\x71\x38\x44\x5b\xc2\x9e\x5c" 13611 "\x0a\xe0\x29\x72\x05\xd6\x27\x04" 13612 "\x17\x3b\x21\x23\x9b\x88\x7f\x6c" 13613 "\x8c\xb5\xb8\x00\x91\x7a\x24\x88" 13614 "\x28\x4b\xde\x9e\x16\xea\x29\x06", 13615 .len = 64, 13616 } 13617 }; 13618 13619 static const struct cipher_testvec sm4_ctr_rfc3686_tv_template[] = { 13620 { 13621 .key = "\xae\x68\x52\xf8\x12\x10\x67\xcc" 13622 "\x4b\xf7\xa5\x76\x55\x77\xf3\x9e" 13623 "\x00\x00\x00\x30", 13624 .klen = 20, 13625 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00", 13626 .ptext = "Single block msg", 13627 .ctext = "\x20\x9b\x77\x31\xd3\x65\xdb\xab" 13628 "\x9e\x48\x74\x7e\xbd\x13\x83\xeb", 13629 .len = 16, 13630 }, { 13631 .key = "\x7e\x24\x06\x78\x17\xfa\xe0\xd7" 13632 "\x43\xd6\xce\x1f\x32\x53\x91\x63" 13633 "\x00\x6c\xb6\xdb", 13634 .klen = 20, 13635 .iv = "\xc0\x54\x3b\x59\xda\x48\xd9\x0b", 13636 .ptext = "\x00\x01\x02\x03\x04\x05\x06\x07" 13637 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 13638 "\x10\x11\x12\x13\x14\x15\x16\x17" 13639 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 13640 .ctext = "\x33\xe0\x28\x01\x92\xed\xc9\x1e" 13641 "\x97\x35\xd9\x4a\xec\xd4\xbc\x23" 13642 "\x4f\x35\x9f\x1c\x55\x1f\xe0\x27" 13643 "\xe0\xdf\xc5\x43\xbc\xb0\x23\x94", 13644 .len = 32, 13645 } 13646 }; 13647 13648 static const struct cipher_testvec sm4_ofb_tv_template[] = { 13649 { /* From: draft-ribose-cfrg-sm4-02, paragraph 12.2.3 */ 13650 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 13651 "\xfe\xdc\xba\x98\x76\x54\x32\x10", 13652 .klen = 16, 13653 .iv = "\x01\x23\x45\x67\x89\xab\xcd\xef" 13654 "\xfe\xdc\xba\x98\x76\x54\x32\x10", 13655 .ptext = "\x01\x23\x45\x67\x89\xab\xcd\xef" 13656 "\xfe\xdc\xba\x98\x76\x54\x32\x10" 13657 "\x01\x23\x45\x67\x89\xab\xcd\xef" 13658 "\xfe\xdc\xba\x98\x76\x54\x32\x10", 13659 .ctext = "\x69\x3d\x9a\x53\x5b\xad\x5b\xb1" 13660 "\x78\x6f\x53\xd7\x25\x3a\x70\x56" 13661 "\xf2\x07\x5d\x28\xb5\x23\x5f\x58" 13662 "\xd5\x00\x27\xe4\x17\x7d\x2b\xce", 13663 .len = 32, 13664 }, { /* From: draft-ribose-cfrg-sm4-09, appendix A.2.3, Example 1 */ 13665 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 13666 "\xfe\xdc\xba\x98\x76\x54\x32\x10", 13667 .klen = 16, 13668 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 13669 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 13670 .ptext = "\xaa\xaa\xaa\xaa\xbb\xbb\xbb\xbb" 13671 "\xcc\xcc\xcc\xcc\xdd\xdd\xdd\xdd" 13672 "\xee\xee\xee\xee\xff\xff\xff\xff" 13673 "\xaa\xaa\xaa\xaa\xbb\xbb\xbb\xbb", 13674 .ctext = "\xac\x32\x36\xcb\x86\x1d\xd3\x16" 13675 "\xe6\x41\x3b\x4e\x3c\x75\x24\xb7" 13676 "\x1d\x01\xac\xa2\x48\x7c\xa5\x82" 13677 "\xcb\xf5\x46\x3e\x66\x98\x53\x9b", 13678 .len = 32, 13679 }, { /* From: draft-ribose-cfrg-sm4-09, appendix A.2.3, Example 2 */ 13680 .key = "\xfe\xdc\xba\x98\x76\x54\x32\x10" 13681 "\x01\x23\x45\x67\x89\xab\xcd\xef", 13682 .klen = 16, 13683 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 13684 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 13685 .ptext = "\xaa\xaa\xaa\xaa\xbb\xbb\xbb\xbb" 13686 "\xcc\xcc\xcc\xcc\xdd\xdd\xdd\xdd" 13687 "\xee\xee\xee\xee\xff\xff\xff\xff" 13688 "\xaa\xaa\xaa\xaa\xbb\xbb\xbb\xbb", 13689 .ctext = "\x5d\xcc\xcd\x25\xa8\x4b\xa1\x65" 13690 "\x60\xd7\xf2\x65\x88\x70\x68\x49" 13691 "\x33\xfa\x16\xbd\x5c\xd9\xc8\x56" 13692 "\xca\xca\xa1\xe1\x01\x89\x7a\x97", 13693 .len = 32, 13694 } 13695 }; 13696 13697 static const struct cipher_testvec sm4_cfb_tv_template[] = { 13698 { /* From: draft-ribose-cfrg-sm4-02, paragraph 12.2.4 */ 13699 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 13700 "\xfe\xdc\xba\x98\x76\x54\x32\x10", 13701 .klen = 16, 13702 .iv = "\x01\x23\x45\x67\x89\xab\xcd\xef" 13703 "\xfe\xdc\xba\x98\x76\x54\x32\x10", 13704 .ptext = "\x01\x23\x45\x67\x89\xab\xcd\xef" 13705 "\xfe\xdc\xba\x98\x76\x54\x32\x10" 13706 "\x01\x23\x45\x67\x89\xab\xcd\xef" 13707 "\xfe\xdc\xba\x98\x76\x54\x32\x10", 13708 .ctext = "\x69\x3d\x9a\x53\x5b\xad\x5b\xb1" 13709 "\x78\x6f\x53\xd7\x25\x3a\x70\x56" 13710 "\x9e\xd2\x58\xa8\x5a\x04\x67\xcc" 13711 "\x92\xaa\xb3\x93\xdd\x97\x89\x95", 13712 .len = 32, 13713 }, { /* From: draft-ribose-cfrg-sm4-09, appendix A.2.4, Example 1 */ 13714 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 13715 "\xfe\xdc\xba\x98\x76\x54\x32\x10", 13716 .klen = 16, 13717 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 13718 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 13719 .ptext = "\xaa\xaa\xaa\xaa\xbb\xbb\xbb\xbb" 13720 "\xcc\xcc\xcc\xcc\xdd\xdd\xdd\xdd" 13721 "\xee\xee\xee\xee\xff\xff\xff\xff" 13722 "\xaa\xaa\xaa\xaa\xbb\xbb\xbb\xbb", 13723 .ctext = "\xac\x32\x36\xcb\x86\x1d\xd3\x16" 13724 "\xe6\x41\x3b\x4e\x3c\x75\x24\xb7" 13725 "\x69\xd4\xc5\x4e\xd4\x33\xb9\xa0" 13726 "\x34\x60\x09\xbe\xb3\x7b\x2b\x3f", 13727 .len = 32, 13728 }, { /* From: draft-ribose-cfrg-sm4-09, appendix A.2.4, Example 2 */ 13729 .key = "\xfe\xdc\xba\x98\x76\x54\x32\x10" 13730 "\x01\x23\x45\x67\x89\xab\xcd\xef", 13731 .klen = 16, 13732 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 13733 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 13734 .ptext = "\xaa\xaa\xaa\xaa\xbb\xbb\xbb\xbb" 13735 "\xcc\xcc\xcc\xcc\xdd\xdd\xdd\xdd" 13736 "\xee\xee\xee\xee\xff\xff\xff\xff" 13737 "\xaa\xaa\xaa\xaa\xbb\xbb\xbb\xbb", 13738 .ctext = "\x5d\xcc\xcd\x25\xa8\x4b\xa1\x65" 13739 "\x60\xd7\xf2\x65\x88\x70\x68\x49" 13740 "\x0d\x9b\x86\xff\x20\xc3\xbf\xe1" 13741 "\x15\xff\xa0\x2c\xa6\x19\x2c\xc5", 13742 .len = 32, 13743 } 13744 }; 13745 13746 /* Cast6 test vectors from RFC 2612 */ 13747 static const struct cipher_testvec cast6_tv_template[] = { 13748 { 13749 .key = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c" 13750 "\x0a\xf7\x56\x47\xf2\x9f\x61\x5d", 13751 .klen = 16, 13752 .ptext = zeroed_string, 13753 .ctext = "\xc8\x42\xa0\x89\x72\xb4\x3d\x20" 13754 "\x83\x6c\x91\xd1\xb7\x53\x0f\x6b", 13755 .len = 16, 13756 }, { 13757 .key = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c" 13758 "\xbe\xd0\xac\x83\x94\x0a\xc2\x98" 13759 "\xba\xc7\x7a\x77\x17\x94\x28\x63", 13760 .klen = 24, 13761 .ptext = zeroed_string, 13762 .ctext = "\x1b\x38\x6c\x02\x10\xdc\xad\xcb" 13763 "\xdd\x0e\x41\xaa\x08\xa7\xa7\xe8", 13764 .len = 16, 13765 }, { 13766 .key = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c" 13767 "\xbe\xd0\xac\x83\x94\x0a\xc2\x98" 13768 "\x8d\x7c\x47\xce\x26\x49\x08\x46" 13769 "\x1c\xc1\xb5\x13\x7a\xe6\xb6\x04", 13770 .klen = 32, 13771 .ptext = zeroed_string, 13772 .ctext = "\x4f\x6a\x20\x38\x28\x68\x97\xb9" 13773 "\xc9\x87\x01\x36\x55\x33\x17\xfa", 13774 .len = 16, 13775 }, { /* Generated from TF test vectors */ 13776 .key = "\x85\x62\x3F\x1C\xF9\xD6\x1C\xF9" 13777 "\xD6\xB3\x90\x6D\x4A\x90\x6D\x4A" 13778 "\x27\x04\xE1\x27\x04\xE1\xBE\x9B" 13779 "\x78\xBE\x9B\x78\x55\x32\x0F\x55", 13780 .klen = 32, 13781 .iv = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F" 13782 "\xC4\x29\x8E\xF3\x35\x9A\xFF\x64", 13783 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 13784 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 13785 "\x3A\xD1\x45\xDC\x73\x0A\x7E\x15" 13786 "\xAC\x20\xB7\x4E\xE5\x59\xF0\x87" 13787 "\x1E\x92\x29\xC0\x34\xCB\x62\xF9" 13788 "\x6D\x04\x9B\x0F\xA6\x3D\xD4\x48" 13789 "\xDF\x76\x0D\x81\x18\xAF\x23\xBA" 13790 "\x51\xE8\x5C\xF3\x8A\x21\x95\x2C" 13791 "\xC3\x37\xCE\x65\xFC\x70\x07\x9E" 13792 "\x12\xA9\x40\xD7\x4B\xE2\x79\x10" 13793 "\x84\x1B\xB2\x26\xBD\x54\xEB\x5F" 13794 "\xF6\x8D\x01\x98\x2F\xC6\x3A\xD1" 13795 "\x68\xFF\x73\x0A\xA1\x15\xAC\x43" 13796 "\xDA\x4E\xE5\x7C\x13\x87\x1E\xB5" 13797 "\x29\xC0\x57\xEE\x62\xF9\x90\x04" 13798 "\x9B\x32\xC9\x3D\xD4\x6B\x02\x76" 13799 "\x0D\xA4\x18\xAF\x46\xDD\x51\xE8" 13800 "\x7F\x16\x8A\x21\xB8\x2C\xC3\x5A" 13801 "\xF1\x65\xFC\x93\x07\x9E\x35\xCC" 13802 "\x40\xD7\x6E\x05\x79\x10\xA7\x1B" 13803 "\xB2\x49\xE0\x54\xEB\x82\x19\x8D" 13804 "\x24\xBB\x2F\xC6\x5D\xF4\x68\xFF" 13805 "\x96\x0A\xA1\x38\xCF\x43\xDA\x71" 13806 "\x08\x7C\x13\xAA\x1E\xB5\x4C\xE3" 13807 "\x57\xEE\x85\x1C\x90\x27\xBE\x32" 13808 "\xC9\x60\xF7\x6B\x02\x99\x0D\xA4" 13809 "\x3B\xD2\x46\xDD\x74\x0B\x7F\x16" 13810 "\xAD\x21\xB8\x4F\xE6\x5A\xF1\x88" 13811 "\x1F\x93\x2A\xC1\x35\xCC\x63\xFA" 13812 "\x6E\x05\x9C\x10\xA7\x3E\xD5\x49" 13813 "\xE0\x77\x0E\x82\x19\xB0\x24\xBB" 13814 "\x52\xE9\x5D\xF4\x8B\x22\x96\x2D" 13815 "\xC4\x38\xCF\x66\xFD\x71\x08\x9F" 13816 "\x13\xAA\x41\xD8\x4C\xE3\x7A\x11" 13817 "\x85\x1C\xB3\x27\xBE\x55\xEC\x60" 13818 "\xF7\x8E\x02\x99\x30\xC7\x3B\xD2" 13819 "\x69\x00\x74\x0B\xA2\x16\xAD\x44" 13820 "\xDB\x4F\xE6\x7D\x14\x88\x1F\xB6" 13821 "\x2A\xC1\x58\xEF\x63\xFA\x91\x05" 13822 "\x9C\x33\xCA\x3E\xD5\x6C\x03\x77" 13823 "\x0E\xA5\x19\xB0\x47\xDE\x52\xE9" 13824 "\x80\x17\x8B\x22\xB9\x2D\xC4\x5B" 13825 "\xF2\x66\xFD\x94\x08\x9F\x36\xCD" 13826 "\x41\xD8\x6F\x06\x7A\x11\xA8\x1C" 13827 "\xB3\x4A\xE1\x55\xEC\x83\x1A\x8E" 13828 "\x25\xBC\x30\xC7\x5E\xF5\x69\x00" 13829 "\x97\x0B\xA2\x39\xD0\x44\xDB\x72" 13830 "\x09\x7D\x14\xAB\x1F\xB6\x4D\xE4" 13831 "\x58\xEF\x86\x1D\x91\x28\xBF\x33" 13832 "\xCA\x61\xF8\x6C\x03\x9A\x0E\xA5" 13833 "\x3C\xD3\x47\xDE\x75\x0C\x80\x17" 13834 "\xAE\x22\xB9\x50\xE7\x5B\xF2\x89" 13835 "\x20\x94\x2B\xC2\x36\xCD\x64\xFB" 13836 "\x6F\x06\x9D\x11\xA8\x3F\xD6\x4A" 13837 "\xE1\x78\x0F\x83\x1A\xB1\x25\xBC" 13838 "\x53\xEA\x5E\xF5\x8C\x00\x97\x2E" 13839 "\xC5\x39\xD0\x67\xFE\x72\x09\xA0" 13840 "\x14\xAB\x42\xD9\x4D\xE4\x7B\x12" 13841 "\x86\x1D\xB4\x28\xBF\x56\xED\x61" 13842 "\xF8\x8F\x03\x9A\x31\xC8\x3C\xD3" 13843 "\x6A\x01\x75\x0C\xA3\x17\xAE\x45" 13844 "\xDC\x50\xE7\x7E\x15\x89\x20\xB7", 13845 .ctext = "\xC3\x70\x22\x32\xF5\x80\xCB\x54" 13846 "\xFC\x30\xE0\xF6\xEB\x39\x57\xA6" 13847 "\xB6\xB9\xC5\xA4\x91\x55\x14\x97" 13848 "\xC1\x20\xFF\x6C\x5C\xF0\x67\xEA" 13849 "\x2F\xED\xD8\xC9\xFB\x38\x3F\xFE" 13850 "\x93\xBE\xDC\x00\xD3\x7F\xAD\x4C" 13851 "\x5A\x08\x92\xD1\x47\x0C\xFA\x6C" 13852 "\xD0\x6A\x99\x10\x72\xF8\x47\x62" 13853 "\x81\x42\xF8\xD8\xF5\xBB\x94\x08" 13854 "\xAA\x97\xA2\x8B\x69\xB3\xD2\x7E" 13855 "\xBC\xB5\x00\x0C\xE5\x44\x4B\x58" 13856 "\xE8\x63\xDC\xB3\xC4\xE5\x23\x12" 13857 "\x5A\x72\x85\x47\x8B\xEC\x9F\x26" 13858 "\x84\xB6\xED\x10\x33\x63\x9B\x5F" 13859 "\x4D\x53\xEE\x94\x45\x8B\x60\x58" 13860 "\x86\x20\xF9\x1E\x82\x08\x3E\x58" 13861 "\x60\x1B\x34\x19\x02\xBE\x4E\x09" 13862 "\xBB\x7C\x15\xCC\x60\x27\x55\x7A" 13863 "\x12\xB8\xD8\x08\x89\x3C\xA6\xF3" 13864 "\xF1\xDD\xA7\x07\xA3\x12\x85\x28" 13865 "\xE9\x57\xAC\x80\x0C\x5C\x0F\x3A" 13866 "\x5D\xC2\x91\xC7\x90\xE4\x8C\x43" 13867 "\x92\xE4\x7C\x26\x69\x4D\x83\x68" 13868 "\x14\x96\x42\x47\xBD\xA9\xE4\x8A" 13869 "\x33\x19\xEB\x54\x8E\x0D\x4B\x6E" 13870 "\x91\x51\xB5\x36\x08\xDE\x1C\x06" 13871 "\x03\xBD\xDE\x81\x26\xF7\x99\xC2" 13872 "\xBA\xF7\x6D\x87\x0D\xE4\xA6\xCF" 13873 "\xC1\xF5\x27\x05\xB8\x02\x57\x72" 13874 "\xE6\x42\x13\x0B\xC6\x47\x05\x74" 13875 "\x24\x15\xF7\x0D\xC2\x23\x9D\xB9" 13876 "\x3C\x77\x18\x93\xBA\xB4\xFC\x8C" 13877 "\x98\x82\x67\x67\xB4\xD7\xD3\x43" 13878 "\x23\x08\x02\xB7\x9B\x99\x05\xFB" 13879 "\xD3\xB5\x00\x0A\xA9\x9D\x66\xD6" 13880 "\x2E\x49\x58\xD0\xA8\x57\x29\x7F" 13881 "\x0A\x0E\x7D\xFC\x92\x83\xCC\x67" 13882 "\xA2\xB1\x70\x3A\x8F\x87\x4A\x8D" 13883 "\x17\xE2\x58\x2B\x88\x0D\x68\x62" 13884 "\xBF\x35\xD1\x6F\xC0\xF0\x18\x62" 13885 "\xB2\xC7\x2D\x58\xC7\x16\xDE\x08" 13886 "\xEB\x84\x1D\x25\xA7\x38\x94\x06" 13887 "\x93\x9D\xF8\xFE\x88\x71\xE7\x84" 13888 "\x2C\xA0\x38\xA3\x1D\x48\xCF\x29" 13889 "\x0B\xBC\xD8\x50\x99\x1A\x26\xFB" 13890 "\x8E\x75\x3D\x73\xEB\x6A\xED\x29" 13891 "\xE0\x8E\xED\xFC\xFE\x6F\xF6\xBA" 13892 "\x41\xE2\x10\x4C\x01\x8B\x69\x2B" 13893 "\x25\x3F\x4D\x70\x7B\x92\xD6\x3B" 13894 "\xAC\xF9\x77\x18\xD9\x6A\x30\xA6" 13895 "\x2E\xFA\x30\xFF\xC8\xD5\x1D\x06" 13896 "\x59\x28\x1D\x86\x43\x04\x5D\x3B" 13897 "\x99\x4C\x04\x5A\x21\x17\x8B\x76" 13898 "\x8F\x72\xCB\xA1\x9C\x29\x4C\xC3" 13899 "\x65\xA2\x58\x2A\xC5\x66\x24\xBF" 13900 "\xBA\xE6\x0C\xDD\x34\x24\x74\xC8" 13901 "\x84\x0A\x66\x2C\xBE\x8F\x32\xA9" 13902 "\xE7\xE4\xA1\xD7\xDA\xAB\x23\x1E" 13903 "\xEB\xEE\x6C\x94\x6F\x9C\x2E\xD1" 13904 "\x49\x2C\xF3\xD4\x90\xCC\x93\x4C" 13905 "\x84\x52\x6D\x68\xDE\xC6\x64\xB2" 13906 "\x11\x74\x93\x57\xB4\x7E\xC6\x00", 13907 .len = 496, 13908 }, 13909 }; 13910 13911 static const struct cipher_testvec cast6_cbc_tv_template[] = { 13912 { /* Generated from TF test vectors */ 13913 .key = "\x85\x62\x3F\x1C\xF9\xD6\x1C\xF9" 13914 "\xD6\xB3\x90\x6D\x4A\x90\x6D\x4A" 13915 "\x27\x04\xE1\x27\x04\xE1\xBE\x9B" 13916 "\x78\xBE\x9B\x78\x55\x32\x0F\x55", 13917 .klen = 32, 13918 .iv = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F" 13919 "\xC4\x29\x8E\xF3\x35\x9A\xFF\x64", 13920 .iv_out = "\x4D\x59\x7D\xC5\x28\x69\xFA\x92" 13921 "\x22\x46\x89\x2D\x0F\x2B\x08\x24", 13922 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 13923 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 13924 "\x3A\xD1\x45\xDC\x73\x0A\x7E\x15" 13925 "\xAC\x20\xB7\x4E\xE5\x59\xF0\x87" 13926 "\x1E\x92\x29\xC0\x34\xCB\x62\xF9" 13927 "\x6D\x04\x9B\x0F\xA6\x3D\xD4\x48" 13928 "\xDF\x76\x0D\x81\x18\xAF\x23\xBA" 13929 "\x51\xE8\x5C\xF3\x8A\x21\x95\x2C" 13930 "\xC3\x37\xCE\x65\xFC\x70\x07\x9E" 13931 "\x12\xA9\x40\xD7\x4B\xE2\x79\x10" 13932 "\x84\x1B\xB2\x26\xBD\x54\xEB\x5F" 13933 "\xF6\x8D\x01\x98\x2F\xC6\x3A\xD1" 13934 "\x68\xFF\x73\x0A\xA1\x15\xAC\x43" 13935 "\xDA\x4E\xE5\x7C\x13\x87\x1E\xB5" 13936 "\x29\xC0\x57\xEE\x62\xF9\x90\x04" 13937 "\x9B\x32\xC9\x3D\xD4\x6B\x02\x76" 13938 "\x0D\xA4\x18\xAF\x46\xDD\x51\xE8" 13939 "\x7F\x16\x8A\x21\xB8\x2C\xC3\x5A" 13940 "\xF1\x65\xFC\x93\x07\x9E\x35\xCC" 13941 "\x40\xD7\x6E\x05\x79\x10\xA7\x1B" 13942 "\xB2\x49\xE0\x54\xEB\x82\x19\x8D" 13943 "\x24\xBB\x2F\xC6\x5D\xF4\x68\xFF" 13944 "\x96\x0A\xA1\x38\xCF\x43\xDA\x71" 13945 "\x08\x7C\x13\xAA\x1E\xB5\x4C\xE3" 13946 "\x57\xEE\x85\x1C\x90\x27\xBE\x32" 13947 "\xC9\x60\xF7\x6B\x02\x99\x0D\xA4" 13948 "\x3B\xD2\x46\xDD\x74\x0B\x7F\x16" 13949 "\xAD\x21\xB8\x4F\xE6\x5A\xF1\x88" 13950 "\x1F\x93\x2A\xC1\x35\xCC\x63\xFA" 13951 "\x6E\x05\x9C\x10\xA7\x3E\xD5\x49" 13952 "\xE0\x77\x0E\x82\x19\xB0\x24\xBB" 13953 "\x52\xE9\x5D\xF4\x8B\x22\x96\x2D" 13954 "\xC4\x38\xCF\x66\xFD\x71\x08\x9F" 13955 "\x13\xAA\x41\xD8\x4C\xE3\x7A\x11" 13956 "\x85\x1C\xB3\x27\xBE\x55\xEC\x60" 13957 "\xF7\x8E\x02\x99\x30\xC7\x3B\xD2" 13958 "\x69\x00\x74\x0B\xA2\x16\xAD\x44" 13959 "\xDB\x4F\xE6\x7D\x14\x88\x1F\xB6" 13960 "\x2A\xC1\x58\xEF\x63\xFA\x91\x05" 13961 "\x9C\x33\xCA\x3E\xD5\x6C\x03\x77" 13962 "\x0E\xA5\x19\xB0\x47\xDE\x52\xE9" 13963 "\x80\x17\x8B\x22\xB9\x2D\xC4\x5B" 13964 "\xF2\x66\xFD\x94\x08\x9F\x36\xCD" 13965 "\x41\xD8\x6F\x06\x7A\x11\xA8\x1C" 13966 "\xB3\x4A\xE1\x55\xEC\x83\x1A\x8E" 13967 "\x25\xBC\x30\xC7\x5E\xF5\x69\x00" 13968 "\x97\x0B\xA2\x39\xD0\x44\xDB\x72" 13969 "\x09\x7D\x14\xAB\x1F\xB6\x4D\xE4" 13970 "\x58\xEF\x86\x1D\x91\x28\xBF\x33" 13971 "\xCA\x61\xF8\x6C\x03\x9A\x0E\xA5" 13972 "\x3C\xD3\x47\xDE\x75\x0C\x80\x17" 13973 "\xAE\x22\xB9\x50\xE7\x5B\xF2\x89" 13974 "\x20\x94\x2B\xC2\x36\xCD\x64\xFB" 13975 "\x6F\x06\x9D\x11\xA8\x3F\xD6\x4A" 13976 "\xE1\x78\x0F\x83\x1A\xB1\x25\xBC" 13977 "\x53\xEA\x5E\xF5\x8C\x00\x97\x2E" 13978 "\xC5\x39\xD0\x67\xFE\x72\x09\xA0" 13979 "\x14\xAB\x42\xD9\x4D\xE4\x7B\x12" 13980 "\x86\x1D\xB4\x28\xBF\x56\xED\x61" 13981 "\xF8\x8F\x03\x9A\x31\xC8\x3C\xD3" 13982 "\x6A\x01\x75\x0C\xA3\x17\xAE\x45" 13983 "\xDC\x50\xE7\x7E\x15\x89\x20\xB7", 13984 .ctext = "\xDF\x77\x68\x96\xC7\xBA\xF8\xE2" 13985 "\x0E\x24\x99\x1A\xAA\xF3\xC6\x9F" 13986 "\xA0\x73\xB3\x70\xC3\x68\x64\x70" 13987 "\xAD\x33\x02\xFB\x88\x74\xAA\x78" 13988 "\xC7\x47\x1A\x18\x61\x2D\xAC\x9F" 13989 "\x7E\x6F\xDF\x05\x13\x76\xA6\x72" 13990 "\xB7\x13\x09\x0F\x7D\x38\xDF\x25" 13991 "\x4E\xFD\x50\x45\xFA\x35\x6A\xC0" 13992 "\x57\x95\xE1\x21\x26\x10\x9A\x21" 13993 "\xA1\x8A\x51\x05\xD1\xB1\x78\x35" 13994 "\x98\xF5\xAE\xC0\xC1\x8B\x94\xFF" 13995 "\xD0\x69\x3F\x42\xC2\x01\xA7\x9B" 13996 "\x23\x16\x47\x72\x81\x13\x3A\x72" 13997 "\xEC\xD9\x40\x88\x00\x9C\xB0\xA8" 13998 "\x9C\xAC\xCE\x11\x73\x7B\x63\x3E" 13999 "\xA3\x63\x98\x7D\x35\xE4\xD9\x83" 14000 "\xE2\xD0\x52\x87\x0C\x1F\xB0\xB3" 14001 "\x41\x1A\x93\x8D\x76\x31\x9F\xF2" 14002 "\xFE\x09\xA3\x8F\x22\x6A\x3B\xB9" 14003 "\x6C\x9E\xE4\xA1\xA0\xC4\xE7\xA1" 14004 "\x21\x9C\x1A\xCA\x65\xDE\x44\x03" 14005 "\x99\xF2\xD2\x39\xE3\x3F\x0F\x37" 14006 "\x53\x50\x23\xA4\x81\x6E\xDA\xFB" 14007 "\xF8\x7B\x01\xD7\xB2\x32\x9C\xB8" 14008 "\xB1\x0E\x99\x17\xB5\x38\xF9\xD7" 14009 "\x86\x2D\x6E\x94\x5C\x99\x9D\xB3" 14010 "\xD3\x63\x4B\x2A\x7D\x44\x6A\xB2" 14011 "\xC1\x03\xE6\x5A\x37\xD8\x64\x18" 14012 "\xAA\x32\xCE\x29\xED\xC0\xA2\xCB" 14013 "\x8D\xAF\xCD\xBE\x8F\xB6\xEC\xB4" 14014 "\x89\x05\x81\x6E\x71\x4F\xC3\x28" 14015 "\x10\xC1\x62\xC4\x41\xE9\xD2\x39" 14016 "\xF3\x22\x39\x12\x2C\xC2\x95\x2D" 14017 "\xBF\x93\x58\x4B\x04\xD1\x8D\x57" 14018 "\xAE\xEB\x60\x03\x56\x35\xAD\x5A" 14019 "\xE9\xC3\xFF\x4E\x31\xE1\x37\xF8" 14020 "\x7D\xEE\x65\x8A\xB6\x88\x1A\x3E" 14021 "\x07\x09\x82\xBA\xF0\x80\x8A\xD0" 14022 "\xA0\x3F\x6A\xE9\x24\x87\x19\x65" 14023 "\x73\x3F\x12\x91\x47\x54\xBA\x39" 14024 "\x30\x5B\x1E\xE5\xC2\xF9\x3F\xEF" 14025 "\xD6\x75\xF9\xB8\x7C\x8B\x05\x76" 14026 "\xEE\xB7\x08\x25\x4B\xB6\x7B\x47" 14027 "\x72\xC0\x4C\xD4\xDA\xE0\x75\xF1" 14028 "\x7C\xE8\x94\x9E\x16\x6E\xB8\x12" 14029 "\xA1\xC1\x6E\x3B\x1C\x59\x41\x2D" 14030 "\x23\xFA\x7D\x77\xB8\x46\x75\xFE" 14031 "\x4F\x10\xD3\x09\x60\xA1\x36\x96" 14032 "\x5B\xC2\xDC\x6E\x84\x7D\x9B\x14" 14033 "\x80\x21\x83\x58\x3C\x76\xFD\x28" 14034 "\x1D\xF9\x93\x13\xD7\x0E\x62\x14" 14035 "\x5A\xC5\x4E\x08\xA5\x56\xA4\x3C" 14036 "\x68\x93\x44\x70\xDF\xCF\x4A\x51" 14037 "\x0B\x81\x29\x41\xE5\x62\x4D\x36" 14038 "\xB3\xEA\x94\xA6\xB9\xDD\x3F\x09" 14039 "\x62\x34\xA0\x6A\x7E\x7D\xF5\xF6" 14040 "\x01\x91\xB4\x27\xDA\x59\xD6\x17" 14041 "\x56\x4D\x82\x62\x37\xA3\x48\x01" 14042 "\x99\x91\x77\xB2\x08\x6B\x2C\x37" 14043 "\xC5\x5C\xAD\xB6\x07\xB6\x84\xF3" 14044 "\x4D\x59\x7D\xC5\x28\x69\xFA\x92" 14045 "\x22\x46\x89\x2D\x0F\x2B\x08\x24", 14046 .len = 496, 14047 }, 14048 }; 14049 14050 static const struct cipher_testvec cast6_ctr_tv_template[] = { 14051 { /* Generated from TF test vectors */ 14052 .key = "\x85\x62\x3F\x1C\xF9\xD6\x1C\xF9" 14053 "\xD6\xB3\x90\x6D\x4A\x90\x6D\x4A" 14054 "\x27\x04\xE1\x27\x04\xE1\xBE\x9B" 14055 "\x78\xBE\x9B\x78\x55\x32\x0F\x55", 14056 .klen = 32, 14057 .iv = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F" 14058 "\xC4\x29\x8E\xF3\x35\x9A\xFF\x64", 14059 .iv_out = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F" 14060 "\xC4\x29\x8E\xF3\x35\x9A\xFF\x66", 14061 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 14062 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 14063 "\x3A", 14064 .ctext = "\x26\x0A\xF1\xE2\x3F\x8A\xEF\xA3" 14065 "\x53\x9A\x5E\x1B\x2A\x1A\xC6\x0A" 14066 "\x57", 14067 .len = 17, 14068 }, { /* Generated from TF test vectors */ 14069 .key = "\x85\x62\x3F\x1C\xF9\xD6\x1C\xF9" 14070 "\xD6\xB3\x90\x6D\x4A\x90\x6D\x4A" 14071 "\x27\x04\xE1\x27\x04\xE1\xBE\x9B" 14072 "\x78\xBE\x9B\x78\x55\x32\x0F\x55", 14073 .klen = 32, 14074 .iv = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F" 14075 "\xC4\x29\x8E\xF3\x35\x9A\xFF\x64", 14076 .iv_out = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F" 14077 "\xC4\x29\x8E\xF3\x35\x9A\xFF\x83", 14078 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 14079 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 14080 "\x3A\xD1\x45\xDC\x73\x0A\x7E\x15" 14081 "\xAC\x20\xB7\x4E\xE5\x59\xF0\x87" 14082 "\x1E\x92\x29\xC0\x34\xCB\x62\xF9" 14083 "\x6D\x04\x9B\x0F\xA6\x3D\xD4\x48" 14084 "\xDF\x76\x0D\x81\x18\xAF\x23\xBA" 14085 "\x51\xE8\x5C\xF3\x8A\x21\x95\x2C" 14086 "\xC3\x37\xCE\x65\xFC\x70\x07\x9E" 14087 "\x12\xA9\x40\xD7\x4B\xE2\x79\x10" 14088 "\x84\x1B\xB2\x26\xBD\x54\xEB\x5F" 14089 "\xF6\x8D\x01\x98\x2F\xC6\x3A\xD1" 14090 "\x68\xFF\x73\x0A\xA1\x15\xAC\x43" 14091 "\xDA\x4E\xE5\x7C\x13\x87\x1E\xB5" 14092 "\x29\xC0\x57\xEE\x62\xF9\x90\x04" 14093 "\x9B\x32\xC9\x3D\xD4\x6B\x02\x76" 14094 "\x0D\xA4\x18\xAF\x46\xDD\x51\xE8" 14095 "\x7F\x16\x8A\x21\xB8\x2C\xC3\x5A" 14096 "\xF1\x65\xFC\x93\x07\x9E\x35\xCC" 14097 "\x40\xD7\x6E\x05\x79\x10\xA7\x1B" 14098 "\xB2\x49\xE0\x54\xEB\x82\x19\x8D" 14099 "\x24\xBB\x2F\xC6\x5D\xF4\x68\xFF" 14100 "\x96\x0A\xA1\x38\xCF\x43\xDA\x71" 14101 "\x08\x7C\x13\xAA\x1E\xB5\x4C\xE3" 14102 "\x57\xEE\x85\x1C\x90\x27\xBE\x32" 14103 "\xC9\x60\xF7\x6B\x02\x99\x0D\xA4" 14104 "\x3B\xD2\x46\xDD\x74\x0B\x7F\x16" 14105 "\xAD\x21\xB8\x4F\xE6\x5A\xF1\x88" 14106 "\x1F\x93\x2A\xC1\x35\xCC\x63\xFA" 14107 "\x6E\x05\x9C\x10\xA7\x3E\xD5\x49" 14108 "\xE0\x77\x0E\x82\x19\xB0\x24\xBB" 14109 "\x52\xE9\x5D\xF4\x8B\x22\x96\x2D" 14110 "\xC4\x38\xCF\x66\xFD\x71\x08\x9F" 14111 "\x13\xAA\x41\xD8\x4C\xE3\x7A\x11" 14112 "\x85\x1C\xB3\x27\xBE\x55\xEC\x60" 14113 "\xF7\x8E\x02\x99\x30\xC7\x3B\xD2" 14114 "\x69\x00\x74\x0B\xA2\x16\xAD\x44" 14115 "\xDB\x4F\xE6\x7D\x14\x88\x1F\xB6" 14116 "\x2A\xC1\x58\xEF\x63\xFA\x91\x05" 14117 "\x9C\x33\xCA\x3E\xD5\x6C\x03\x77" 14118 "\x0E\xA5\x19\xB0\x47\xDE\x52\xE9" 14119 "\x80\x17\x8B\x22\xB9\x2D\xC4\x5B" 14120 "\xF2\x66\xFD\x94\x08\x9F\x36\xCD" 14121 "\x41\xD8\x6F\x06\x7A\x11\xA8\x1C" 14122 "\xB3\x4A\xE1\x55\xEC\x83\x1A\x8E" 14123 "\x25\xBC\x30\xC7\x5E\xF5\x69\x00" 14124 "\x97\x0B\xA2\x39\xD0\x44\xDB\x72" 14125 "\x09\x7D\x14\xAB\x1F\xB6\x4D\xE4" 14126 "\x58\xEF\x86\x1D\x91\x28\xBF\x33" 14127 "\xCA\x61\xF8\x6C\x03\x9A\x0E\xA5" 14128 "\x3C\xD3\x47\xDE\x75\x0C\x80\x17" 14129 "\xAE\x22\xB9\x50\xE7\x5B\xF2\x89" 14130 "\x20\x94\x2B\xC2\x36\xCD\x64\xFB" 14131 "\x6F\x06\x9D\x11\xA8\x3F\xD6\x4A" 14132 "\xE1\x78\x0F\x83\x1A\xB1\x25\xBC" 14133 "\x53\xEA\x5E\xF5\x8C\x00\x97\x2E" 14134 "\xC5\x39\xD0\x67\xFE\x72\x09\xA0" 14135 "\x14\xAB\x42\xD9\x4D\xE4\x7B\x12" 14136 "\x86\x1D\xB4\x28\xBF\x56\xED\x61" 14137 "\xF8\x8F\x03\x9A\x31\xC8\x3C\xD3" 14138 "\x6A\x01\x75\x0C\xA3\x17\xAE\x45" 14139 "\xDC\x50\xE7\x7E\x15\x89\x20\xB7", 14140 .ctext = "\x26\x0A\xF1\xE2\x3F\x8A\xEF\xA3" 14141 "\x53\x9A\x5E\x1B\x2A\x1A\xC6\x0A" 14142 "\x57\xA3\xEF\x47\x2A\xE8\x88\xA7" 14143 "\x3C\xD0\xEC\xB9\x94\x50\x7D\x56" 14144 "\xBC\xE1\xC1\xF5\xE1\xEE\x12\xF8" 14145 "\x4F\x03\x82\x3A\x93\x6B\x4C\xD3" 14146 "\xE3\xF3\xFA\xC2\x23\x55\x98\x20" 14147 "\x49\x76\x9B\x6B\xC1\x23\xBF\xE5" 14148 "\xD4\xC4\x2F\x61\xE1\x67\x2A\x30" 14149 "\x6F\x29\xCA\x54\xF8\x1B\xA6\x7D" 14150 "\x66\x45\xEE\xC8\x19\xBE\x50\xF0" 14151 "\x5F\x65\xF8\x1E\x4D\x07\x87\xD9" 14152 "\xD3\xD9\x1B\x09\x89\xFD\x42\xC5" 14153 "\xDB\xEB\x86\xF1\x67\x04\x0F\x5C" 14154 "\x81\xDF\x82\x12\xC7\x4C\x1B\x07" 14155 "\xDE\xE6\xFA\x29\x86\xD1\xB0\xBA" 14156 "\x3D\x6A\x69\x76\xEC\x0F\xB4\xE6" 14157 "\xCD\xA7\xF8\xA8\xB8\xE0\x33\xF5" 14158 "\x49\x61\x22\x52\x64\x8C\x46\x41" 14159 "\x1F\x48\x5F\x4F\xA2\x89\x36\x17" 14160 "\x20\xF8\x2F\x8F\x4B\xFA\xF2\xC0" 14161 "\x1E\x18\xA2\xF8\xB7\x6D\x98\xE3" 14162 "\x00\x14\x15\x59\xC1\x30\x64\xAF" 14163 "\xA8\x01\x38\xAB\xD4\x8B\xEC\x7C" 14164 "\x44\x9A\xC6\x2C\x2E\x2B\x2B\xF4" 14165 "\x02\x37\xC4\x69\xEF\x36\xC1\xF3" 14166 "\xA0\xFB\xFE\x29\xAD\x39\xCF\xD0" 14167 "\x51\x73\xA3\x22\x42\x41\xAB\xD2" 14168 "\x0F\x50\x14\xB9\x54\xD3\xD4\xFA" 14169 "\xBF\xC9\xBB\xCE\xC4\x1D\x2D\xAF" 14170 "\xC9\x3F\x07\x87\x42\x4B\x3A\x54" 14171 "\x34\x8E\x37\xA3\x03\x6F\x65\x66" 14172 "\xDB\x44\xC3\xE8\xD7\xDD\x7D\xDD" 14173 "\x61\xB4\x2B\x80\xA3\x98\x13\xF5" 14174 "\x5A\xD3\x34\x58\xC3\x6E\xF6\xB8" 14175 "\x0A\xC6\x50\x01\x8E\xD5\x6C\x7D" 14176 "\xFE\x16\xB6\xCF\xFC\x51\x40\xAE" 14177 "\xB3\x15\xAC\x90\x6F\x0B\x28\x3A" 14178 "\x60\x40\x38\x90\x20\x46\xC7\xB3" 14179 "\x0B\x12\x6D\x3B\x15\x14\xF9\xF4" 14180 "\x11\x41\x76\x6B\xB3\x60\x82\x3C" 14181 "\x84\xFB\x08\x2E\x92\x25\xCB\x79" 14182 "\x6F\x58\xC5\x94\x00\x00\x47\xB6" 14183 "\x9E\xDC\x0F\x29\x70\x46\x20\x76" 14184 "\x65\x75\x66\x5C\x00\x96\xB3\xE1" 14185 "\x0B\xA7\x11\x8B\x2E\x61\x4E\x45" 14186 "\x73\xFC\x91\xAB\x79\x41\x23\x14" 14187 "\x13\xB6\x72\x6C\x46\xB3\x03\x11" 14188 "\xE4\xF1\xEE\xC9\x7A\xCF\x96\x32" 14189 "\xB6\xF0\x8B\x97\xB4\xCF\x82\xB7" 14190 "\x15\x48\x44\x99\x09\xF6\xE0\xD7" 14191 "\xBC\xF1\x5B\x91\x4F\x30\x22\xA2" 14192 "\x45\xC4\x68\x55\xC2\xBE\xA7\xD2" 14193 "\x12\x53\x35\x9C\xF9\xE7\x35\x5D" 14194 "\x81\xE4\x86\x42\xC3\x58\xFB\xF0" 14195 "\x38\x9B\x8E\x5A\xEF\x83\x33\x0F" 14196 "\x00\x4E\x3F\x9F\xF5\x84\x62\xC4" 14197 "\x19\x35\x88\x22\x45\x59\x0E\x8F" 14198 "\xEC\x27\xDD\x4A\xA4\x1F\xBC\x41" 14199 "\x9B\x66\x8D\x32\xBA\x81\x34\x87" 14200 "\x0E\x74\x33\x30\x62\xB9\x89\xDF" 14201 "\xF9\xC5\xDD\x27\xB3\x39\xCB\xCB", 14202 .len = 496, 14203 }, 14204 }; 14205 14206 static const struct cipher_testvec cast6_lrw_tv_template[] = { 14207 { /* Generated from TF test vectors */ 14208 .key = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c" 14209 "\x23\x84\xcb\x1c\x77\xd6\x19\x5d" 14210 "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21" 14211 "\xa7\x9c\x21\xf8\xcb\x90\x02\x89" 14212 "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1" 14213 "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e", 14214 .klen = 48, 14215 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 14216 "\x00\x00\x00\x00\x00\x00\x00\x01", 14217 .ptext = "\x05\x11\xb7\x18\xab\xc6\x2d\xac" 14218 "\x70\x5d\xf6\x22\x94\xcd\xe5\x6c" 14219 "\x17\x6b\xf6\x1c\xf0\xf3\x6e\xf8" 14220 "\x50\x38\x1f\x71\x49\xb6\x57\xd6" 14221 "\x8f\xcb\x8d\x6b\xe3\xa6\x29\x90" 14222 "\xfe\x2a\x62\x82\xae\x6d\x8b\xf6" 14223 "\xad\x1e\x9e\x20\x5f\x38\xbe\x04" 14224 "\xda\x10\x8e\xed\xa2\xa4\x87\xab" 14225 "\xda\x6b\xb4\x0c\x75\xba\xd3\x7c" 14226 "\xc9\xac\x42\x31\x95\x7c\xc9\x04" 14227 "\xeb\xd5\x6e\x32\x69\x8a\xdb\xa6" 14228 "\x15\xd7\x3f\x4f\x2f\x66\x69\x03" 14229 "\x9c\x1f\x54\x0f\xde\x1f\xf3\x65" 14230 "\x4c\x96\x12\xed\x7c\x92\x03\x01" 14231 "\x6f\xbc\x35\x93\xac\xf1\x27\xf1" 14232 "\xb4\x96\x82\x5a\x5f\xb0\xa0\x50" 14233 "\x89\xa4\x8e\x66\x44\x85\xcc\xfd" 14234 "\x33\x14\x70\xe3\x96\xb2\xc3\xd3" 14235 "\xbb\x54\x5a\x1a\xf9\x74\xa2\xc5" 14236 "\x2d\x64\x75\xdd\xb4\x54\xe6\x74" 14237 "\x8c\xd3\x9d\x9e\x86\xab\x51\x53" 14238 "\xb7\x93\x3e\x6f\xd0\x4e\x2c\x40" 14239 "\xf6\xa8\x2e\x3e\x9d\xf4\x66\xa5" 14240 "\x76\x12\x73\x44\x1a\x56\xd7\x72" 14241 "\x88\xcd\x21\x8c\x4c\x0f\xfe\xda" 14242 "\x95\xe0\x3a\xa6\xa5\x84\x46\xcd" 14243 "\xd5\x3e\x9d\x3a\xe2\x67\xe6\x60" 14244 "\x1a\xe2\x70\x85\x58\xc2\x1b\x09" 14245 "\xe1\xd7\x2c\xca\xad\xa8\x8f\xf9" 14246 "\xac\xb3\x0e\xdb\xca\x2e\xe2\xb8" 14247 "\x51\x71\xd9\x3c\x6c\xf1\x56\xf8" 14248 "\xea\x9c\xf1\xfb\x0c\xe6\xb7\x10" 14249 "\x1c\xf8\xa9\x7c\xe8\x53\x35\xc1" 14250 "\x90\x3e\x76\x4a\x74\xa4\x21\x2c" 14251 "\xf6\x2c\x4e\x0f\x94\x3a\x88\x2e" 14252 "\x41\x09\x6a\x33\x7d\xf6\xdd\x3f" 14253 "\x8d\x23\x31\x74\x84\xeb\x88\x6e" 14254 "\xcc\xb9\xbc\x22\x83\x19\x07\x22" 14255 "\xa5\x2d\xdf\xa5\xf3\x80\x85\x78" 14256 "\x84\x39\x6a\x6d\x6a\x99\x4f\xa5" 14257 "\x15\xfe\x46\xb0\xe4\x6c\xa5\x41" 14258 "\x3c\xce\x8f\x42\x60\x71\xa7\x75" 14259 "\x08\x40\x65\x8a\x82\xbf\xf5\x43" 14260 "\x71\x96\xa9\x4d\x44\x8a\x20\xbe" 14261 "\xfa\x4d\xbb\xc0\x7d\x31\x96\x65" 14262 "\xe7\x75\xe5\x3e\xfd\x92\x3b\xc9" 14263 "\x55\xbb\x16\x7e\xf7\xc2\x8c\xa4" 14264 "\x40\x1d\xe5\xef\x0e\xdf\xe4\x9a" 14265 "\x62\x73\x65\xfd\x46\x63\x25\x3d" 14266 "\x2b\xaf\xe5\x64\xfe\xa5\x5c\xcf" 14267 "\x24\xf3\xb4\xac\x64\xba\xdf\x4b" 14268 "\xc6\x96\x7d\x81\x2d\x8d\x97\xf7" 14269 "\xc5\x68\x77\x84\x32\x2b\xcc\x85" 14270 "\x74\x96\xf0\x12\x77\x61\xb9\xeb" 14271 "\x71\xaa\x82\xcb\x1c\xdb\x89\xc8" 14272 "\xc6\xb5\xe3\x5c\x7d\x39\x07\x24" 14273 "\xda\x39\x87\x45\xc0\x2b\xbb\x01" 14274 "\xac\xbc\x2a\x5c\x7f\xfc\xe8\xce" 14275 "\x6d\x9c\x6f\xed\xd3\xc1\xa1\xd6" 14276 "\xc5\x55\xa9\x66\x2f\xe1\xc8\x32" 14277 "\xa6\x5d\xa4\x3a\x98\x73\xe8\x45" 14278 "\xa4\xc7\xa8\xb4\xf6\x13\x03\xf6" 14279 "\xe9\x2e\xc4\x29\x0f\x84\xdb\xc4" 14280 "\x21\xc4\xc2\x75\x67\x89\x37\x0a", 14281 .ctext = "\x55\x25\x09\x8B\xB5\xD5\xF8\xBF" 14282 "\x37\x4A\xFE\x3C\x47\xD8\xE6\xEB" 14283 "\xCA\xA4\x9B\xB0\xAB\x6D\x64\xCA" 14284 "\x58\xB6\x73\xF0\xD7\x52\x34\xEF" 14285 "\xFB\x3E\x96\x81\xB7\x71\x34\xA4" 14286 "\x55\x20\xBE\x39\x5A\x2B\xF9\xD1" 14287 "\x65\x0B\xDA\xD3\x7E\xB3\xA6\xF7" 14288 "\x2E\x0B\x5A\x52\xDB\x39\x8C\x9B" 14289 "\x61\x17\x5F\xAF\xB6\x5A\xC8\x08" 14290 "\xA7\xB7\x2A\x11\x7C\x97\x38\x9D" 14291 "\x59\x0E\x66\x59\x5E\xD8\x8B\xCE" 14292 "\x70\xE0\xC3\x42\xB0\x8C\x0F\xBA" 14293 "\xB2\x0D\x81\xB6\xBE\x61\x1C\x2D" 14294 "\x7E\xEA\x91\x25\xAC\xEC\xF8\x28" 14295 "\x80\x1D\xF0\x30\xBA\x62\x77\x7D" 14296 "\xDB\x15\x69\xDF\xFA\x2A\x81\x64" 14297 "\x95\x5B\xA4\x7F\x3E\x4F\xE3\x30" 14298 "\xB0\x5C\xC2\x05\xF8\xF0\x29\xE7" 14299 "\x0A\xA0\x66\xB2\x5D\x0F\x39\x2B" 14300 "\xB4\xB3\x00\xA9\xD0\xAB\x63\x61" 14301 "\x5E\xDB\xFC\x11\x74\x25\x96\x65" 14302 "\xE8\xE2\x34\x57\x77\x15\x5E\x70" 14303 "\xFF\x10\x90\xC3\x64\xF0\x11\x0A" 14304 "\x63\x3A\xD3\x55\x92\x15\x4B\x0C" 14305 "\xC7\x08\x89\x17\x3B\x99\xAD\x63" 14306 "\xE7\x06\xDF\x52\xBC\x15\x64\x45" 14307 "\x9D\x7A\xFB\x69\xBC\x2D\x6E\xA9" 14308 "\x35\xD9\xD8\xF5\x0C\xC4\xA2\x23" 14309 "\x9C\x18\x8B\xA8\x8C\xFE\xF8\x0E" 14310 "\xBD\xAB\x60\x1A\x51\x17\x54\x27" 14311 "\xB6\xE8\xBE\x0F\xA9\xA5\x82\x19" 14312 "\x2F\x6F\x20\xA7\x47\xED\x74\x6C" 14313 "\x4E\xC1\xF8\x8C\x14\xF3\xBB\x1F" 14314 "\xED\x4D\x8F\x7C\x37\xEF\x19\xA1" 14315 "\x07\x16\xDE\x76\xCC\x5E\x94\x02" 14316 "\xFB\xBF\xE4\x81\x50\xCE\xFC\x0F" 14317 "\x9E\xCF\x3D\xF6\x67\x00\xBF\xA7" 14318 "\x6E\x21\x58\x36\x06\xDE\xB3\xD4" 14319 "\xA2\xFA\xD8\x4E\xE0\xB9\x7F\x23" 14320 "\x51\x21\x2B\x32\x68\xAA\xF8\xA8" 14321 "\x93\x08\xB5\x6D\xE6\x43\x2C\xB7" 14322 "\x31\xB2\x0F\xD0\xA2\x51\xC0\x25" 14323 "\x30\xC7\x10\x3F\x97\x27\x01\x8E" 14324 "\xFA\xD8\x4F\x78\xD8\x2E\x1D\xEB" 14325 "\xA1\x37\x52\x0F\x7B\x5E\x87\xA8" 14326 "\x22\xE2\xE6\x92\xA7\x5F\x11\x32" 14327 "\xCC\x93\x34\xFC\xD1\x7E\xAE\x54" 14328 "\xBC\x6A\x1B\x91\xD1\x2E\x21\xEC" 14329 "\x5D\xF1\xC4\xF1\x55\x20\xBF\xE5" 14330 "\x96\x3D\x69\x91\x20\x4E\xF2\x61" 14331 "\xDA\x77\xFE\xEE\xC3\x74\x57\x2A" 14332 "\x78\x39\xB0\xE0\xCF\x12\x56\xD6" 14333 "\x05\xDC\xF9\x19\x66\x44\x1D\xF9" 14334 "\x82\x37\xD4\xC2\x60\xB6\x31\xDF" 14335 "\x0C\xAF\xBC\x8B\x55\x9A\xC8\x2D" 14336 "\xAB\xA7\x88\x7B\x41\xE8\x29\xC9" 14337 "\x9B\x8D\xA7\x00\x86\x25\xB6\x14" 14338 "\xF5\x13\x73\xD7\x4B\x6B\x83\xF3" 14339 "\xAF\x96\x00\xE4\xB7\x3C\x65\xA6" 14340 "\x15\xB7\x94\x7D\x4E\x70\x4C\x75" 14341 "\xF3\xB4\x02\xA9\x17\x1C\x7A\x0A" 14342 "\xC0\xD5\x33\x11\x56\xDE\xDC\xF5" 14343 "\x8D\xD9\xCD\x3B\x22\x67\x18\xC7" 14344 "\xC4\xF5\x99\x61\xBC\xBB\x5B\x46", 14345 .len = 512, 14346 }, 14347 }; 14348 14349 static const struct cipher_testvec cast6_xts_tv_template[] = { 14350 { /* Generated from TF test vectors */ 14351 .key = "\x27\x18\x28\x18\x28\x45\x90\x45" 14352 "\x23\x53\x60\x28\x74\x71\x35\x26" 14353 "\x62\x49\x77\x57\x24\x70\x93\x69" 14354 "\x99\x59\x57\x49\x66\x96\x76\x27" 14355 "\x31\x41\x59\x26\x53\x58\x97\x93" 14356 "\x23\x84\x62\x64\x33\x83\x27\x95" 14357 "\x02\x88\x41\x97\x16\x93\x99\x37" 14358 "\x51\x05\x82\x09\x74\x94\x45\x92", 14359 .klen = 64, 14360 .iv = "\xff\x00\x00\x00\x00\x00\x00\x00" 14361 "\x00\x00\x00\x00\x00\x00\x00\x00", 14362 .ptext = "\x00\x01\x02\x03\x04\x05\x06\x07" 14363 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 14364 "\x10\x11\x12\x13\x14\x15\x16\x17" 14365 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 14366 "\x20\x21\x22\x23\x24\x25\x26\x27" 14367 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 14368 "\x30\x31\x32\x33\x34\x35\x36\x37" 14369 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 14370 "\x40\x41\x42\x43\x44\x45\x46\x47" 14371 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 14372 "\x50\x51\x52\x53\x54\x55\x56\x57" 14373 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 14374 "\x60\x61\x62\x63\x64\x65\x66\x67" 14375 "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 14376 "\x70\x71\x72\x73\x74\x75\x76\x77" 14377 "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 14378 "\x80\x81\x82\x83\x84\x85\x86\x87" 14379 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 14380 "\x90\x91\x92\x93\x94\x95\x96\x97" 14381 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 14382 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 14383 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 14384 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 14385 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 14386 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 14387 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 14388 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 14389 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 14390 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 14391 "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 14392 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 14393 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff" 14394 "\x00\x01\x02\x03\x04\x05\x06\x07" 14395 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 14396 "\x10\x11\x12\x13\x14\x15\x16\x17" 14397 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 14398 "\x20\x21\x22\x23\x24\x25\x26\x27" 14399 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 14400 "\x30\x31\x32\x33\x34\x35\x36\x37" 14401 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 14402 "\x40\x41\x42\x43\x44\x45\x46\x47" 14403 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 14404 "\x50\x51\x52\x53\x54\x55\x56\x57" 14405 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 14406 "\x60\x61\x62\x63\x64\x65\x66\x67" 14407 "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 14408 "\x70\x71\x72\x73\x74\x75\x76\x77" 14409 "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 14410 "\x80\x81\x82\x83\x84\x85\x86\x87" 14411 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 14412 "\x90\x91\x92\x93\x94\x95\x96\x97" 14413 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 14414 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 14415 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 14416 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 14417 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 14418 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 14419 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 14420 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 14421 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 14422 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 14423 "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 14424 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 14425 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff", 14426 .ctext = "\xDE\x6F\x22\xA5\xE8\x39\xE8\x78" 14427 "\x88\x5A\x4F\x8D\x82\x76\x52\x6D" 14428 "\xB2\x41\x16\xF4\x2B\xA6\xEB\xF6" 14429 "\xE2\xC5\x62\x8D\x61\xA1\x01\xED" 14430 "\xD9\x38\x01\xC1\x43\x63\x4E\x88" 14431 "\xC9\x4B\x5A\x88\x80\xB7\x5C\x71" 14432 "\x47\xEE\x11\xD8\xB7\x2D\x5D\x13" 14433 "\x1A\xB1\x68\x5B\x61\xA7\xA9\x81" 14434 "\x8B\x83\xA1\x6A\xAA\x36\xD6\xB6" 14435 "\x60\x54\x09\x32\xFE\x6A\x76\x2E" 14436 "\x28\xFF\xD5\xD6\xDD\x1D\x45\x7D" 14437 "\xF0\x8B\xF3\x32\x4E\x6C\x12\xCB" 14438 "\xB8\x25\x70\xF8\x40\xBC\x90\x1B" 14439 "\x11\xC3\x59\xAF\xF0\x2F\x92\xDD" 14440 "\xD3\x3B\xCF\x60\xA1\x78\x94\x57" 14441 "\xAF\x76\xC1\x67\xA6\x3C\xCD\x98" 14442 "\xB1\xF7\x27\xB9\xA3\xBD\x10\xEA" 14443 "\xCD\x8B\xC2\xF2\x14\xF2\xB2\x67" 14444 "\x05\xDD\x1D\x58\x6E\x2F\x95\x08" 14445 "\x3A\xF8\x78\x76\x82\x56\xA7\xEC" 14446 "\x51\x4B\x85\x77\xC2\x4C\x4A\x34" 14447 "\x71\x38\x17\x91\x44\xE8\xFC\x65" 14448 "\x99\x0D\x52\x91\xEE\xF8\xEF\x27" 14449 "\x2A\x9E\x6E\x78\xC4\x26\x87\xF4" 14450 "\x8A\xF0\x2D\x04\xE8\x14\x92\x5D" 14451 "\x59\x22\x9B\x29\x5C\x18\xF0\xC3" 14452 "\x47\xF3\x76\xD8\xE4\xF3\x1B\xD1" 14453 "\x70\xA3\x0D\xB5\x70\x02\x1D\xA3" 14454 "\x91\x3B\x49\x73\x18\xAB\xD4\xC9" 14455 "\xC3\x1E\xEF\x1F\xFE\xD5\x59\x8A" 14456 "\xD7\xF6\xC9\x71\x67\x79\xD7\x0E" 14457 "\xBE\x1F\x8E\xEC\x55\x7E\x4F\x24" 14458 "\xE6\x87\xEA\xFE\x96\x25\x67\x8E" 14459 "\x93\x03\xFA\xFF\xCE\xAF\xB2\x3C" 14460 "\x6F\xEB\x57\xFB\xD3\x28\x87\xA9" 14461 "\xCE\xC2\xF5\x9C\xC6\x67\xB5\x97" 14462 "\x49\xF7\x04\xCB\xEF\x84\x98\x33" 14463 "\xAF\x38\xD3\x04\x1C\x24\x71\x38" 14464 "\xC7\x71\xDD\x43\x0D\x12\x4A\x18" 14465 "\xBA\xC4\xAF\xBA\xB2\x5B\xEB\x95" 14466 "\x02\x43\x5D\xCE\x19\xCC\xCD\x66" 14467 "\x91\x0B\x8C\x7F\x51\xC4\xBF\x3C" 14468 "\x8B\xF1\xCC\xAA\x29\xD7\x87\xCB" 14469 "\x3E\xC5\xF3\xC9\x75\xE8\xA3\x5B" 14470 "\x30\x45\xA9\xB7\xAF\x80\x64\x6F" 14471 "\x75\x4A\xA7\xC0\x6D\x19\x6B\xDE" 14472 "\x17\xDE\x6D\xEA\x87\x9F\x95\xAE" 14473 "\xF5\x3C\xEE\x54\xB8\x27\x84\xF8" 14474 "\x97\xA3\xE1\x6F\x38\x24\x34\x88" 14475 "\xCE\xBD\x32\x52\xE0\x00\x6C\x94" 14476 "\xC9\xD7\x5D\x37\x81\x33\x2E\x7F" 14477 "\x4F\x7E\x2E\x0D\x94\xBD\xEA\x59" 14478 "\x34\x39\xA8\x35\x12\xB7\xBC\xAC" 14479 "\xEA\x52\x9C\x78\x02\x6D\x92\x36" 14480 "\xFB\x59\x2B\xA4\xEA\x7B\x1B\x83" 14481 "\xE1\x4D\x5E\x2A\x7E\x92\xB1\x64" 14482 "\xDE\xE0\x27\x4B\x0A\x6F\x4C\xE3" 14483 "\xB0\xEB\x31\xE4\x69\x95\xAB\x35" 14484 "\x8B\x2C\xF5\x6B\x7F\xF1\xA2\x82" 14485 "\xF8\xD9\x47\x82\xA9\x82\x03\x91" 14486 "\x69\x1F\xBE\x4C\xE7\xC7\x34\x2F" 14487 "\x45\x72\x80\x17\x81\xBD\x9D\x62" 14488 "\xA1\xAC\xE8\xCF\xC6\x74\xCF\xDC" 14489 "\x22\x60\x4E\xE8\xA4\x5D\x85\xB9", 14490 .len = 512, 14491 }, 14492 }; 14493 14494 /* 14495 * AES test vectors. 14496 */ 14497 static const struct cipher_testvec aes_tv_template[] = { 14498 { /* From FIPS-197 */ 14499 .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 14500 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 14501 .klen = 16, 14502 .ptext = "\x00\x11\x22\x33\x44\x55\x66\x77" 14503 "\x88\x99\xaa\xbb\xcc\xdd\xee\xff", 14504 .ctext = "\x69\xc4\xe0\xd8\x6a\x7b\x04\x30" 14505 "\xd8\xcd\xb7\x80\x70\xb4\xc5\x5a", 14506 .len = 16, 14507 }, { 14508 .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 14509 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 14510 "\x10\x11\x12\x13\x14\x15\x16\x17", 14511 .klen = 24, 14512 .ptext = "\x00\x11\x22\x33\x44\x55\x66\x77" 14513 "\x88\x99\xaa\xbb\xcc\xdd\xee\xff", 14514 .ctext = "\xdd\xa9\x7c\xa4\x86\x4c\xdf\xe0" 14515 "\x6e\xaf\x70\xa0\xec\x0d\x71\x91", 14516 .len = 16, 14517 }, { 14518 .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 14519 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 14520 "\x10\x11\x12\x13\x14\x15\x16\x17" 14521 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 14522 .klen = 32, 14523 .ptext = "\x00\x11\x22\x33\x44\x55\x66\x77" 14524 "\x88\x99\xaa\xbb\xcc\xdd\xee\xff", 14525 .ctext = "\x8e\xa2\xb7\xca\x51\x67\x45\xbf" 14526 "\xea\xfc\x49\x90\x4b\x49\x60\x89", 14527 .len = 16, 14528 }, { /* Generated with Crypto++ */ 14529 .key = "\xA6\xC9\x83\xA6\xC9\xEC\x0F\x32" 14530 "\x55\x0F\x32\x55\x78\x9B\xBE\x78" 14531 "\x9B\xBE\xE1\x04\x27\xE1\x04\x27" 14532 "\x4A\x6D\x90\x4A\x6D\x90\xB3\xD6", 14533 .klen = 32, 14534 .ptext = "\x50\xB9\x22\xAE\x17\x80\x0C\x75" 14535 "\xDE\x47\xD3\x3C\xA5\x0E\x9A\x03" 14536 "\x6C\xF8\x61\xCA\x33\xBF\x28\x91" 14537 "\x1D\x86\xEF\x58\xE4\x4D\xB6\x1F" 14538 "\xAB\x14\x7D\x09\x72\xDB\x44\xD0" 14539 "\x39\xA2\x0B\x97\x00\x69\xF5\x5E" 14540 "\xC7\x30\xBC\x25\x8E\x1A\x83\xEC" 14541 "\x55\xE1\x4A\xB3\x1C\xA8\x11\x7A" 14542 "\x06\x6F\xD8\x41\xCD\x36\x9F\x08" 14543 "\x94\xFD\x66\xF2\x5B\xC4\x2D\xB9" 14544 "\x22\x8B\x17\x80\xE9\x52\xDE\x47" 14545 "\xB0\x19\xA5\x0E\x77\x03\x6C\xD5" 14546 "\x3E\xCA\x33\x9C\x05\x91\xFA\x63" 14547 "\xEF\x58\xC1\x2A\xB6\x1F\x88\x14" 14548 "\x7D\xE6\x4F\xDB\x44\xAD\x16\xA2" 14549 "\x0B\x74\x00\x69\xD2\x3B\xC7\x30" 14550 "\x99\x02\x8E\xF7\x60\xEC\x55\xBE" 14551 "\x27\xB3\x1C\x85\x11\x7A\xE3\x4C" 14552 "\xD8\x41\xAA\x13\x9F\x08\x71\xFD" 14553 "\x66\xCF\x38\xC4\x2D\x96\x22\x8B" 14554 "\xF4\x5D\xE9\x52\xBB\x24\xB0\x19" 14555 "\x82\x0E\x77\xE0\x49\xD5\x3E\xA7" 14556 "\x10\x9C\x05\x6E\xFA\x63\xCC\x35" 14557 "\xC1\x2A\x93\x1F\x88\xF1\x5A\xE6" 14558 "\x4F\xB8\x21\xAD\x16\x7F\x0B\x74" 14559 "\xDD\x46\xD2\x3B\xA4\x0D\x99\x02" 14560 "\x6B\xF7\x60\xC9\x32\xBE\x27\x90" 14561 "\x1C\x85\xEE\x57\xE3\x4C\xB5\x1E" 14562 "\xAA\x13\x7C\x08\x71\xDA\x43\xCF" 14563 "\x38\xA1\x0A\x96\xFF\x68\xF4\x5D" 14564 "\xC6\x2F\xBB\x24\x8D\x19\x82\xEB" 14565 "\x54\xE0\x49\xB2\x1B\xA7\x10\x79" 14566 "\x05\x6E\xD7\x40\xCC\x35\x9E\x07" 14567 "\x93\xFC\x65\xF1\x5A\xC3\x2C\xB8" 14568 "\x21\x8A\x16\x7F\xE8\x51\xDD\x46" 14569 "\xAF\x18\xA4\x0D\x76\x02\x6B\xD4" 14570 "\x3D\xC9\x32\x9B\x04\x90\xF9\x62" 14571 "\xEE\x57\xC0\x29\xB5\x1E\x87\x13" 14572 "\x7C\xE5\x4E\xDA\x43\xAC\x15\xA1" 14573 "\x0A\x73\xFF\x68\xD1\x3A\xC6\x2F" 14574 "\x98\x01\x8D\xF6\x5F\xEB\x54\xBD" 14575 "\x26\xB2\x1B\x84\x10\x79\xE2\x4B" 14576 "\xD7\x40\xA9\x12\x9E\x07\x70\xFC" 14577 "\x65\xCE\x37\xC3\x2C\x95\x21\x8A" 14578 "\xF3\x5C\xE8\x51\xBA\x23\xAF\x18" 14579 "\x81\x0D\x76\xDF\x48\xD4\x3D\xA6" 14580 "\x0F\x9B\x04\x6D\xF9\x62\xCB\x34" 14581 "\xC0\x29\x92\x1E\x87\xF0\x59\xE5" 14582 "\x4E\xB7\x20\xAC\x15\x7E\x0A\x73" 14583 "\xDC\x45\xD1\x3A\xA3\x0C\x98\x01" 14584 "\x6A\xF6\x5F\xC8\x31\xBD\x26\x8F" 14585 "\x1B\x84\xED\x56\xE2\x4B\xB4\x1D" 14586 "\xA9\x12\x7B\x07\x70\xD9\x42\xCE" 14587 "\x37\xA0\x09\x95\xFE\x67\xF3\x5C" 14588 "\xC5\x2E\xBA\x23\x8C\x18\x81\xEA" 14589 "\x53\xDF\x48\xB1\x1A\xA6\x0F\x78" 14590 "\x04\x6D\xD6\x3F\xCB\x34\x9D\x06" 14591 "\x92\xFB\x64\xF0\x59\xC2\x2B\xB7" 14592 "\x20\x89\x15\x7E\xE7\x50\xDC\x45" 14593 "\xAE\x17\xA3\x0C\x75\x01\x6A\xD3" 14594 "\x3C\xC8\x31\x9A\x03\x8F\xF8\x61" 14595 "\xED\x56\xBF\x28\xB4\x1D\x86\x12", 14596 .ctext = "\x71\x73\xF7\xDB\x24\x93\x21\x6D" 14597 "\x61\x1E\xBB\x63\x42\x79\xDB\x64" 14598 "\x6F\x82\xC0\xCA\xA3\x9B\xFA\x0B" 14599 "\xD9\x08\xC7\x4A\x90\xAE\x8F\x5F" 14600 "\x5E\x06\xF0\x5F\x31\x51\x18\x37" 14601 "\x45\xD7\xCA\x3A\xFD\x6C\x3F\xE1" 14602 "\xDD\x8D\x22\x65\x2B\x00\x50\xCE" 14603 "\xBA\x28\x67\xD7\xCE\x0E\x0D\xEA" 14604 "\x78\x69\x7F\xAE\x8F\x8B\x69\x37" 14605 "\x75\xE0\xDC\x96\xE0\xB7\xF4\x09" 14606 "\xCB\x6D\xA2\xFB\xDA\xAF\x09\xF8" 14607 "\x81\x82\x27\xFA\x45\x9C\x29\xA4" 14608 "\x22\x8B\x78\x69\x5B\x46\xF9\x39" 14609 "\x1B\xCC\xF9\x1D\x09\xEB\xBC\x5C" 14610 "\x41\x72\x51\x97\x1D\x07\x49\xA0" 14611 "\x1B\x8E\x65\x4B\xB2\x6A\x12\x03" 14612 "\x6A\x60\x95\xAC\xBD\xAC\x1A\x64" 14613 "\xDE\x5A\xA5\xF0\x83\x2F\xCB\xCA" 14614 "\x22\x74\xA6\x6C\x9B\x73\xCE\x3F" 14615 "\xE1\x8B\x22\x17\x59\x0C\x47\x89" 14616 "\x33\xA1\xD6\x47\x03\x19\x4F\xA8" 14617 "\x67\x69\xF0\x5B\xF0\x20\xAD\x06" 14618 "\x27\x81\x92\xD8\xC5\xBA\x98\x12" 14619 "\xBE\x24\xB5\x2F\x75\x02\xC2\xAD" 14620 "\x12\x2F\x07\x32\xEE\x39\xAF\x64" 14621 "\x05\x8F\xB3\xD4\xEB\x1B\x46\x6E" 14622 "\xD9\x21\xF9\xC4\xB7\xC9\x45\x68" 14623 "\xB4\xA1\x74\x9F\x82\x47\xEB\xCC" 14624 "\xBD\x0A\x14\x95\x0F\x8B\xA8\x2F" 14625 "\x4B\x1B\xA7\xBF\x82\xA6\x43\x0C" 14626 "\xB9\x39\x4A\xA8\x10\x6F\x50\x7B" 14627 "\x25\xFB\x26\x81\xE0\x2F\xF0\x96" 14628 "\x8D\x8B\xAC\x92\x0F\xF6\xED\x64" 14629 "\x63\x29\x4C\x8E\x18\x13\xC5\xBF" 14630 "\xFC\xA0\xD9\xBF\x7C\x3A\x0E\x29" 14631 "\x6F\xD1\x6C\x6F\xA5\xDA\xBF\xB1" 14632 "\x30\xEA\x44\x2D\xC3\x8F\x16\xE1" 14633 "\x66\xFA\xA3\x21\x3E\xFC\x13\xCA" 14634 "\xF0\xF6\xF0\x59\xBD\x8F\x38\x50" 14635 "\x31\xCB\x69\x3F\x96\x15\xD6\xF5" 14636 "\xAE\xFF\xF6\xAA\x41\x85\x4C\x10" 14637 "\x58\xE3\xF9\x44\xE6\x28\xDA\x9A" 14638 "\xDC\x6A\x80\x34\x73\x97\x1B\xC5" 14639 "\xCA\x26\x16\x77\x0E\x60\xAB\x89" 14640 "\x0F\x04\x27\xBD\xCE\x3E\x71\xB4" 14641 "\xA0\xD7\x22\x7E\xDB\xEB\x24\x70" 14642 "\x42\x71\x51\x78\x70\xB3\xE0\x3D" 14643 "\x84\x8E\x8D\x7B\xD0\x6D\xEA\x92" 14644 "\x11\x08\x42\x4F\xE5\xAD\x26\x92" 14645 "\xD2\x00\xAE\xA8\xE3\x4B\x37\x47" 14646 "\x22\xC1\x95\xC1\x63\x7F\xCB\x03" 14647 "\xF3\xE3\xD7\x9D\x60\xC7\xBC\xEA" 14648 "\x35\xA2\xFD\x45\x52\x39\x13\x6F" 14649 "\xC1\x53\xF3\x53\xDF\x33\x84\xD7" 14650 "\xD2\xC8\x37\xB0\x75\xE3\x41\x46" 14651 "\xB3\xC7\x83\x2E\x8A\xBB\xA4\xE5" 14652 "\x7F\x3C\xFD\x8B\xEB\xEA\x63\xBD" 14653 "\xB7\x46\xE7\xBF\x09\x9C\x0D\x0F" 14654 "\x40\x86\x7F\x51\xE1\x11\x9C\xCB" 14655 "\x88\xE6\x68\x47\xE3\x2B\xC5\xFF" 14656 "\x09\x79\xA0\x43\x5C\x0D\x08\x58" 14657 "\x17\xBB\xC0\x6B\x62\x3F\x56\xE9", 14658 .len = 496, 14659 }, 14660 }; 14661 14662 static const struct cipher_testvec aes_cbc_tv_template[] = { 14663 { /* From RFC 3602 */ 14664 .key = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b" 14665 "\x51\x2e\x03\xd5\x34\x12\x00\x06", 14666 .klen = 16, 14667 .iv = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30" 14668 "\xb4\x22\xda\x80\x2c\x9f\xac\x41", 14669 .iv_out = "\xe3\x53\x77\x9c\x10\x79\xae\xb8" 14670 "\x27\x08\x94\x2d\xbe\x77\x18\x1a", 14671 .ptext = "Single block msg", 14672 .ctext = "\xe3\x53\x77\x9c\x10\x79\xae\xb8" 14673 "\x27\x08\x94\x2d\xbe\x77\x18\x1a", 14674 .len = 16, 14675 }, { 14676 .key = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0" 14677 "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a", 14678 .klen = 16, 14679 .iv = "\x56\x2e\x17\x99\x6d\x09\x3d\x28" 14680 "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58", 14681 .iv_out = "\x75\x86\x60\x2d\x25\x3c\xff\xf9" 14682 "\x1b\x82\x66\xbe\xa6\xd6\x1a\xb1", 14683 .ptext = "\x00\x01\x02\x03\x04\x05\x06\x07" 14684 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 14685 "\x10\x11\x12\x13\x14\x15\x16\x17" 14686 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 14687 .ctext = "\xd2\x96\xcd\x94\xc2\xcc\xcf\x8a" 14688 "\x3a\x86\x30\x28\xb5\xe1\xdc\x0a" 14689 "\x75\x86\x60\x2d\x25\x3c\xff\xf9" 14690 "\x1b\x82\x66\xbe\xa6\xd6\x1a\xb1", 14691 .len = 32, 14692 }, { /* From NIST SP800-38A */ 14693 .key = "\x8e\x73\xb0\xf7\xda\x0e\x64\x52" 14694 "\xc8\x10\xf3\x2b\x80\x90\x79\xe5" 14695 "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b", 14696 .klen = 24, 14697 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 14698 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 14699 .iv_out = "\x08\xb0\xe2\x79\x88\x59\x88\x81" 14700 "\xd9\x20\xa9\xe6\x4f\x56\x15\xcd", 14701 .ptext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 14702 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 14703 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 14704 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 14705 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 14706 "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 14707 "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 14708 "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 14709 .ctext = "\x4f\x02\x1d\xb2\x43\xbc\x63\x3d" 14710 "\x71\x78\x18\x3a\x9f\xa0\x71\xe8" 14711 "\xb4\xd9\xad\xa9\xad\x7d\xed\xf4" 14712 "\xe5\xe7\x38\x76\x3f\x69\x14\x5a" 14713 "\x57\x1b\x24\x20\x12\xfb\x7a\xe0" 14714 "\x7f\xa9\xba\xac\x3d\xf1\x02\xe0" 14715 "\x08\xb0\xe2\x79\x88\x59\x88\x81" 14716 "\xd9\x20\xa9\xe6\x4f\x56\x15\xcd", 14717 .len = 64, 14718 }, { 14719 .key = "\x60\x3d\xeb\x10\x15\xca\x71\xbe" 14720 "\x2b\x73\xae\xf0\x85\x7d\x77\x81" 14721 "\x1f\x35\x2c\x07\x3b\x61\x08\xd7" 14722 "\x2d\x98\x10\xa3\x09\x14\xdf\xf4", 14723 .klen = 32, 14724 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 14725 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 14726 .iv_out = "\xb2\xeb\x05\xe2\xc3\x9b\xe9\xfc" 14727 "\xda\x6c\x19\x07\x8c\x6a\x9d\x1b", 14728 .ptext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 14729 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 14730 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 14731 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 14732 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 14733 "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 14734 "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 14735 "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 14736 .ctext = "\xf5\x8c\x4c\x04\xd6\xe5\xf1\xba" 14737 "\x77\x9e\xab\xfb\x5f\x7b\xfb\xd6" 14738 "\x9c\xfc\x4e\x96\x7e\xdb\x80\x8d" 14739 "\x67\x9f\x77\x7b\xc6\x70\x2c\x7d" 14740 "\x39\xf2\x33\x69\xa9\xd9\xba\xcf" 14741 "\xa5\x30\xe2\x63\x04\x23\x14\x61" 14742 "\xb2\xeb\x05\xe2\xc3\x9b\xe9\xfc" 14743 "\xda\x6c\x19\x07\x8c\x6a\x9d\x1b", 14744 .len = 64, 14745 }, { /* Generated with Crypto++ */ 14746 .key = "\xC9\x83\xA6\xC9\xEC\x0F\x32\x55" 14747 "\x0F\x32\x55\x78\x9B\xBE\x78\x9B" 14748 "\xBE\xE1\x04\x27\xE1\x04\x27\x4A" 14749 "\x6D\x90\x4A\x6D\x90\xB3\xD6\xF9", 14750 .klen = 32, 14751 .iv = "\xE7\x82\x1D\xB8\x53\x11\xAC\x47" 14752 "\xE2\x7D\x18\xD6\x71\x0C\xA7\x42", 14753 .iv_out = "\xE0\x1F\x91\xF8\x82\x96\x2D\x65" 14754 "\xA3\xAA\x13\xCC\x50\xFF\x7B\x02", 14755 .ptext = "\x50\xB9\x22\xAE\x17\x80\x0C\x75" 14756 "\xDE\x47\xD3\x3C\xA5\x0E\x9A\x03" 14757 "\x6C\xF8\x61\xCA\x33\xBF\x28\x91" 14758 "\x1D\x86\xEF\x58\xE4\x4D\xB6\x1F" 14759 "\xAB\x14\x7D\x09\x72\xDB\x44\xD0" 14760 "\x39\xA2\x0B\x97\x00\x69\xF5\x5E" 14761 "\xC7\x30\xBC\x25\x8E\x1A\x83\xEC" 14762 "\x55\xE1\x4A\xB3\x1C\xA8\x11\x7A" 14763 "\x06\x6F\xD8\x41\xCD\x36\x9F\x08" 14764 "\x94\xFD\x66\xF2\x5B\xC4\x2D\xB9" 14765 "\x22\x8B\x17\x80\xE9\x52\xDE\x47" 14766 "\xB0\x19\xA5\x0E\x77\x03\x6C\xD5" 14767 "\x3E\xCA\x33\x9C\x05\x91\xFA\x63" 14768 "\xEF\x58\xC1\x2A\xB6\x1F\x88\x14" 14769 "\x7D\xE6\x4F\xDB\x44\xAD\x16\xA2" 14770 "\x0B\x74\x00\x69\xD2\x3B\xC7\x30" 14771 "\x99\x02\x8E\xF7\x60\xEC\x55\xBE" 14772 "\x27\xB3\x1C\x85\x11\x7A\xE3\x4C" 14773 "\xD8\x41\xAA\x13\x9F\x08\x71\xFD" 14774 "\x66\xCF\x38\xC4\x2D\x96\x22\x8B" 14775 "\xF4\x5D\xE9\x52\xBB\x24\xB0\x19" 14776 "\x82\x0E\x77\xE0\x49\xD5\x3E\xA7" 14777 "\x10\x9C\x05\x6E\xFA\x63\xCC\x35" 14778 "\xC1\x2A\x93\x1F\x88\xF1\x5A\xE6" 14779 "\x4F\xB8\x21\xAD\x16\x7F\x0B\x74" 14780 "\xDD\x46\xD2\x3B\xA4\x0D\x99\x02" 14781 "\x6B\xF7\x60\xC9\x32\xBE\x27\x90" 14782 "\x1C\x85\xEE\x57\xE3\x4C\xB5\x1E" 14783 "\xAA\x13\x7C\x08\x71\xDA\x43\xCF" 14784 "\x38\xA1\x0A\x96\xFF\x68\xF4\x5D" 14785 "\xC6\x2F\xBB\x24\x8D\x19\x82\xEB" 14786 "\x54\xE0\x49\xB2\x1B\xA7\x10\x79" 14787 "\x05\x6E\xD7\x40\xCC\x35\x9E\x07" 14788 "\x93\xFC\x65\xF1\x5A\xC3\x2C\xB8" 14789 "\x21\x8A\x16\x7F\xE8\x51\xDD\x46" 14790 "\xAF\x18\xA4\x0D\x76\x02\x6B\xD4" 14791 "\x3D\xC9\x32\x9B\x04\x90\xF9\x62" 14792 "\xEE\x57\xC0\x29\xB5\x1E\x87\x13" 14793 "\x7C\xE5\x4E\xDA\x43\xAC\x15\xA1" 14794 "\x0A\x73\xFF\x68\xD1\x3A\xC6\x2F" 14795 "\x98\x01\x8D\xF6\x5F\xEB\x54\xBD" 14796 "\x26\xB2\x1B\x84\x10\x79\xE2\x4B" 14797 "\xD7\x40\xA9\x12\x9E\x07\x70\xFC" 14798 "\x65\xCE\x37\xC3\x2C\x95\x21\x8A" 14799 "\xF3\x5C\xE8\x51\xBA\x23\xAF\x18" 14800 "\x81\x0D\x76\xDF\x48\xD4\x3D\xA6" 14801 "\x0F\x9B\x04\x6D\xF9\x62\xCB\x34" 14802 "\xC0\x29\x92\x1E\x87\xF0\x59\xE5" 14803 "\x4E\xB7\x20\xAC\x15\x7E\x0A\x73" 14804 "\xDC\x45\xD1\x3A\xA3\x0C\x98\x01" 14805 "\x6A\xF6\x5F\xC8\x31\xBD\x26\x8F" 14806 "\x1B\x84\xED\x56\xE2\x4B\xB4\x1D" 14807 "\xA9\x12\x7B\x07\x70\xD9\x42\xCE" 14808 "\x37\xA0\x09\x95\xFE\x67\xF3\x5C" 14809 "\xC5\x2E\xBA\x23\x8C\x18\x81\xEA" 14810 "\x53\xDF\x48\xB1\x1A\xA6\x0F\x78" 14811 "\x04\x6D\xD6\x3F\xCB\x34\x9D\x06" 14812 "\x92\xFB\x64\xF0\x59\xC2\x2B\xB7" 14813 "\x20\x89\x15\x7E\xE7\x50\xDC\x45" 14814 "\xAE\x17\xA3\x0C\x75\x01\x6A\xD3" 14815 "\x3C\xC8\x31\x9A\x03\x8F\xF8\x61" 14816 "\xED\x56\xBF\x28\xB4\x1D\x86\x12", 14817 .ctext = "\xEA\x65\x8A\x19\xB0\x66\xC1\x3F" 14818 "\xCE\xF1\x97\x75\xC1\xFD\xB5\xAF" 14819 "\x52\x65\xF7\xFF\xBC\xD8\x2D\x9F" 14820 "\x2F\xB9\x26\x9B\x6F\x10\xB7\xB8" 14821 "\x26\xA1\x02\x46\xA2\xAD\xC6\xC0" 14822 "\x11\x15\xFF\x6D\x1E\x82\x04\xA6" 14823 "\xB1\x74\xD1\x08\x13\xFD\x90\x7C" 14824 "\xF5\xED\xD3\xDB\x5A\x0A\x0C\x2F" 14825 "\x0A\x70\xF1\x88\x07\xCF\x21\x26" 14826 "\x40\x40\x8A\xF5\x53\xF7\x24\x4F" 14827 "\x83\x38\x43\x5F\x08\x99\xEB\xE3" 14828 "\xDC\x02\x64\x67\x50\x6E\x15\xC3" 14829 "\x01\x1A\xA0\x81\x13\x65\xA6\x73" 14830 "\x71\xA6\x3B\x91\x83\x77\xBE\xFA" 14831 "\xDB\x71\x73\xA6\xC1\xAE\x43\xC3" 14832 "\x36\xCE\xD6\xEB\xF9\x30\x1C\x4F" 14833 "\x80\x38\x5E\x9C\x6E\xAB\x98\x2F" 14834 "\x53\xAF\xCF\xC8\x9A\xB8\x86\x43" 14835 "\x3E\x86\xE7\xA1\xF4\x2F\x30\x40" 14836 "\x03\xA8\x6C\x50\x42\x9F\x77\x59" 14837 "\x89\xA0\xC5\xEC\x9A\xB8\xDD\x99" 14838 "\x16\x24\x02\x07\x48\xAE\xF2\x31" 14839 "\x34\x0E\xC3\x85\xFE\x1C\x95\x99" 14840 "\x87\x58\x98\x8B\xE7\xC6\xC5\x70" 14841 "\x73\x81\x07\x7C\x56\x2F\xD8\x1B" 14842 "\xB7\xB9\x2B\xAB\xE3\x01\x87\x0F" 14843 "\xD8\xBB\xC0\x0D\xAC\x2C\x2F\x98" 14844 "\x3C\x0B\xA2\x99\x4A\x8C\xF7\x04" 14845 "\xE0\xE0\xCF\xD1\x81\x5B\xFE\xF5" 14846 "\x24\x04\xFD\xB8\xDF\x13\xD8\xCD" 14847 "\xF1\xE3\x3D\x98\x50\x02\x77\x9E" 14848 "\xBC\x22\xAB\xFA\xC2\x43\x1F\x66" 14849 "\x20\x02\x23\xDA\xDF\xA0\x89\xF6" 14850 "\xD8\xF3\x45\x24\x53\x6F\x16\x77" 14851 "\x02\x3E\x7B\x36\x5F\xA0\x3B\x78" 14852 "\x63\xA2\xBD\xB5\xA4\xCA\x1E\xD3" 14853 "\x57\xBC\x0B\x9F\x43\x51\x28\x4F" 14854 "\x07\x50\x6C\x68\x12\x07\xCF\xFA" 14855 "\x6B\x72\x0B\xEB\xF8\x88\x90\x2C" 14856 "\x7E\xF5\x91\xD1\x03\xD8\xD5\xBD" 14857 "\x22\x39\x7B\x16\x03\x01\x69\xAF" 14858 "\x3D\x38\x66\x28\x0C\xBE\x5B\xC5" 14859 "\x03\xB4\x2F\x51\x8A\x56\x17\x2B" 14860 "\x88\x42\x6D\x40\x68\x8F\xD0\x11" 14861 "\x19\xF9\x1F\x43\x79\x95\x31\xFA" 14862 "\x28\x7A\x3D\xF7\x66\xEB\xEF\xAC" 14863 "\x06\xB2\x01\xAD\xDB\x68\xDB\xEC" 14864 "\x8D\x53\x6E\x72\x68\xA3\xC7\x63" 14865 "\x43\x2B\x78\xE0\x04\x29\x8F\x72" 14866 "\xB2\x2C\xE6\x84\x03\x30\x6D\xCD" 14867 "\x26\x92\x37\xE1\x2F\xBB\x8B\x9D" 14868 "\xE4\x4C\xF6\x93\xBC\xD9\xAD\x44" 14869 "\x52\x65\xC7\xB0\x0E\x3F\x0E\x61" 14870 "\x56\x5D\x1C\x6D\xA7\x05\x2E\xBC" 14871 "\x58\x08\x15\xAB\x12\xAB\x17\x4A" 14872 "\x5E\x1C\xF2\xCD\xB8\xA2\xAE\xFB" 14873 "\x9B\x2E\x0E\x85\x34\x80\x0E\x3F" 14874 "\x4C\xB8\xDB\xCE\x1C\x90\xA1\x61" 14875 "\x6C\x69\x09\x35\x9E\xD4\xF4\xAD" 14876 "\xBC\x06\x41\xE3\x01\xB4\x4E\x0A" 14877 "\xE0\x1F\x91\xF8\x82\x96\x2D\x65" 14878 "\xA3\xAA\x13\xCC\x50\xFF\x7B\x02", 14879 .len = 496, 14880 }, 14881 }; 14882 14883 static const struct cipher_testvec aes_cfb_tv_template[] = { 14884 { /* From NIST SP800-38A */ 14885 .key = "\x2b\x7e\x15\x16\x28\xae\xd2\xa6" 14886 "\xab\xf7\x15\x88\x09\xcf\x4f\x3c", 14887 .klen = 16, 14888 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 14889 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 14890 .ptext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 14891 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 14892 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 14893 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 14894 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 14895 "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 14896 "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 14897 "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 14898 .ctext = "\x3b\x3f\xd9\x2e\xb7\x2d\xad\x20" 14899 "\x33\x34\x49\xf8\xe8\x3c\xfb\x4a" 14900 "\xc8\xa6\x45\x37\xa0\xb3\xa9\x3f" 14901 "\xcd\xe3\xcd\xad\x9f\x1c\xe5\x8b" 14902 "\x26\x75\x1f\x67\xa3\xcb\xb1\x40" 14903 "\xb1\x80\x8c\xf1\x87\xa4\xf4\xdf" 14904 "\xc0\x4b\x05\x35\x7c\x5d\x1c\x0e" 14905 "\xea\xc4\xc6\x6f\x9f\xf7\xf2\xe6", 14906 .len = 64, 14907 }, { 14908 .key = "\x8e\x73\xb0\xf7\xda\x0e\x64\x52" 14909 "\xc8\x10\xf3\x2b\x80\x90\x79\xe5" 14910 "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b", 14911 .klen = 24, 14912 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 14913 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 14914 .ptext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 14915 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 14916 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 14917 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 14918 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 14919 "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 14920 "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 14921 "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 14922 .ctext = "\xcd\xc8\x0d\x6f\xdd\xf1\x8c\xab" 14923 "\x34\xc2\x59\x09\xc9\x9a\x41\x74" 14924 "\x67\xce\x7f\x7f\x81\x17\x36\x21" 14925 "\x96\x1a\x2b\x70\x17\x1d\x3d\x7a" 14926 "\x2e\x1e\x8a\x1d\xd5\x9b\x88\xb1" 14927 "\xc8\xe6\x0f\xed\x1e\xfa\xc4\xc9" 14928 "\xc0\x5f\x9f\x9c\xa9\x83\x4f\xa0" 14929 "\x42\xae\x8f\xba\x58\x4b\x09\xff", 14930 .len = 64, 14931 }, { 14932 .key = "\x60\x3d\xeb\x10\x15\xca\x71\xbe" 14933 "\x2b\x73\xae\xf0\x85\x7d\x77\x81" 14934 "\x1f\x35\x2c\x07\x3b\x61\x08\xd7" 14935 "\x2d\x98\x10\xa3\x09\x14\xdf\xf4", 14936 .klen = 32, 14937 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 14938 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 14939 .ptext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 14940 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 14941 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 14942 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 14943 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 14944 "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 14945 "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 14946 "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 14947 .ctext = "\xdc\x7e\x84\xbf\xda\x79\x16\x4b" 14948 "\x7e\xcd\x84\x86\x98\x5d\x38\x60" 14949 "\x39\xff\xed\x14\x3b\x28\xb1\xc8" 14950 "\x32\x11\x3c\x63\x31\xe5\x40\x7b" 14951 "\xdf\x10\x13\x24\x15\xe5\x4b\x92" 14952 "\xa1\x3e\xd0\xa8\x26\x7a\xe2\xf9" 14953 "\x75\xa3\x85\x74\x1a\xb9\xce\xf8" 14954 "\x20\x31\x62\x3d\x55\xb1\xe4\x71", 14955 .len = 64, 14956 }, { /* > 16 bytes, not a multiple of 16 bytes */ 14957 .key = "\x2b\x7e\x15\x16\x28\xae\xd2\xa6" 14958 "\xab\xf7\x15\x88\x09\xcf\x4f\x3c", 14959 .klen = 16, 14960 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 14961 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 14962 .ptext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 14963 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 14964 "\xae", 14965 .ctext = "\x3b\x3f\xd9\x2e\xb7\x2d\xad\x20" 14966 "\x33\x34\x49\xf8\xe8\x3c\xfb\x4a" 14967 "\xc8", 14968 .len = 17, 14969 }, { /* < 16 bytes */ 14970 .key = "\x2b\x7e\x15\x16\x28\xae\xd2\xa6" 14971 "\xab\xf7\x15\x88\x09\xcf\x4f\x3c", 14972 .klen = 16, 14973 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 14974 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 14975 .ptext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f", 14976 .ctext = "\x3b\x3f\xd9\x2e\xb7\x2d\xad", 14977 .len = 7, 14978 }, 14979 }; 14980 14981 static const struct aead_testvec hmac_md5_ecb_cipher_null_tv_template[] = { 14982 { /* Input data from RFC 2410 Case 1 */ 14983 #ifdef __LITTLE_ENDIAN 14984 .key = "\x08\x00" /* rta length */ 14985 "\x01\x00" /* rta type */ 14986 #else 14987 .key = "\x00\x08" /* rta length */ 14988 "\x00\x01" /* rta type */ 14989 #endif 14990 "\x00\x00\x00\x00" /* enc key length */ 14991 "\x00\x00\x00\x00\x00\x00\x00\x00" 14992 "\x00\x00\x00\x00\x00\x00\x00\x00", 14993 .klen = 8 + 16 + 0, 14994 .iv = "", 14995 .ptext = "\x01\x23\x45\x67\x89\xab\xcd\xef", 14996 .plen = 8, 14997 .ctext = "\x01\x23\x45\x67\x89\xab\xcd\xef" 14998 "\xaa\x42\xfe\x43\x8d\xea\xa3\x5a" 14999 "\xb9\x3d\x9f\xb1\xa3\x8e\x9b\xae", 15000 .clen = 8 + 16, 15001 }, { /* Input data from RFC 2410 Case 2 */ 15002 #ifdef __LITTLE_ENDIAN 15003 .key = "\x08\x00" /* rta length */ 15004 "\x01\x00" /* rta type */ 15005 #else 15006 .key = "\x00\x08" /* rta length */ 15007 "\x00\x01" /* rta type */ 15008 #endif 15009 "\x00\x00\x00\x00" /* enc key length */ 15010 "\x00\x00\x00\x00\x00\x00\x00\x00" 15011 "\x00\x00\x00\x00\x00\x00\x00\x00", 15012 .klen = 8 + 16 + 0, 15013 .iv = "", 15014 .ptext = "Network Security People Have A Strange Sense Of Humor", 15015 .plen = 53, 15016 .ctext = "Network Security People Have A Strange Sense Of Humor" 15017 "\x73\xa5\x3e\x1c\x08\x0e\x8a\x8a" 15018 "\x8e\xb5\x5f\x90\x8e\xfe\x13\x23", 15019 .clen = 53 + 16, 15020 }, 15021 }; 15022 15023 static const struct aead_testvec hmac_sha1_aes_cbc_tv_temp[] = { 15024 { /* RFC 3602 Case 1 */ 15025 #ifdef __LITTLE_ENDIAN 15026 .key = "\x08\x00" /* rta length */ 15027 "\x01\x00" /* rta type */ 15028 #else 15029 .key = "\x00\x08" /* rta length */ 15030 "\x00\x01" /* rta type */ 15031 #endif 15032 "\x00\x00\x00\x10" /* enc key length */ 15033 "\x00\x00\x00\x00\x00\x00\x00\x00" 15034 "\x00\x00\x00\x00\x00\x00\x00\x00" 15035 "\x00\x00\x00\x00" 15036 "\x06\xa9\x21\x40\x36\xb8\xa1\x5b" 15037 "\x51\x2e\x03\xd5\x34\x12\x00\x06", 15038 .klen = 8 + 20 + 16, 15039 .iv = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30" 15040 "\xb4\x22\xda\x80\x2c\x9f\xac\x41", 15041 .assoc = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30" 15042 "\xb4\x22\xda\x80\x2c\x9f\xac\x41", 15043 .alen = 16, 15044 .ptext = "Single block msg", 15045 .plen = 16, 15046 .ctext = "\xe3\x53\x77\x9c\x10\x79\xae\xb8" 15047 "\x27\x08\x94\x2d\xbe\x77\x18\x1a" 15048 "\x1b\x13\xcb\xaf\x89\x5e\xe1\x2c" 15049 "\x13\xc5\x2e\xa3\xcc\xed\xdc\xb5" 15050 "\x03\x71\xa2\x06", 15051 .clen = 16 + 20, 15052 }, { /* RFC 3602 Case 2 */ 15053 #ifdef __LITTLE_ENDIAN 15054 .key = "\x08\x00" /* rta length */ 15055 "\x01\x00" /* rta type */ 15056 #else 15057 .key = "\x00\x08" /* rta length */ 15058 "\x00\x01" /* rta type */ 15059 #endif 15060 "\x00\x00\x00\x10" /* enc key length */ 15061 "\x20\x21\x22\x23\x24\x25\x26\x27" 15062 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 15063 "\x30\x31\x32\x33" 15064 "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0" 15065 "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a", 15066 .klen = 8 + 20 + 16, 15067 .iv = "\x56\x2e\x17\x99\x6d\x09\x3d\x28" 15068 "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58", 15069 .assoc = "\x56\x2e\x17\x99\x6d\x09\x3d\x28" 15070 "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58", 15071 .alen = 16, 15072 .ptext = "\x00\x01\x02\x03\x04\x05\x06\x07" 15073 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 15074 "\x10\x11\x12\x13\x14\x15\x16\x17" 15075 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 15076 .plen = 32, 15077 .ctext = "\xd2\x96\xcd\x94\xc2\xcc\xcf\x8a" 15078 "\x3a\x86\x30\x28\xb5\xe1\xdc\x0a" 15079 "\x75\x86\x60\x2d\x25\x3c\xff\xf9" 15080 "\x1b\x82\x66\xbe\xa6\xd6\x1a\xb1" 15081 "\xad\x9b\x4c\x5c\x85\xe1\xda\xae" 15082 "\xee\x81\x4e\xd7\xdb\x74\xcf\x58" 15083 "\x65\x39\xf8\xde", 15084 .clen = 32 + 20, 15085 }, { /* RFC 3602 Case 3 */ 15086 #ifdef __LITTLE_ENDIAN 15087 .key = "\x08\x00" /* rta length */ 15088 "\x01\x00" /* rta type */ 15089 #else 15090 .key = "\x00\x08" /* rta length */ 15091 "\x00\x01" /* rta type */ 15092 #endif 15093 "\x00\x00\x00\x10" /* enc key length */ 15094 "\x11\x22\x33\x44\x55\x66\x77\x88" 15095 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 15096 "\x22\x33\x44\x55" 15097 "\x6c\x3e\xa0\x47\x76\x30\xce\x21" 15098 "\xa2\xce\x33\x4a\xa7\x46\xc2\xcd", 15099 .klen = 8 + 20 + 16, 15100 .iv = "\xc7\x82\xdc\x4c\x09\x8c\x66\xcb" 15101 "\xd9\xcd\x27\xd8\x25\x68\x2c\x81", 15102 .assoc = "\xc7\x82\xdc\x4c\x09\x8c\x66\xcb" 15103 "\xd9\xcd\x27\xd8\x25\x68\x2c\x81", 15104 .alen = 16, 15105 .ptext = "This is a 48-byte message (exactly 3 AES blocks)", 15106 .plen = 48, 15107 .ctext = "\xd0\xa0\x2b\x38\x36\x45\x17\x53" 15108 "\xd4\x93\x66\x5d\x33\xf0\xe8\x86" 15109 "\x2d\xea\x54\xcd\xb2\x93\xab\xc7" 15110 "\x50\x69\x39\x27\x67\x72\xf8\xd5" 15111 "\x02\x1c\x19\x21\x6b\xad\x52\x5c" 15112 "\x85\x79\x69\x5d\x83\xba\x26\x84" 15113 "\xc2\xec\x0c\xf8\x7f\x05\xba\xca" 15114 "\xff\xee\x4c\xd0\x93\xe6\x36\x7f" 15115 "\x8d\x62\xf2\x1e", 15116 .clen = 48 + 20, 15117 }, { /* RFC 3602 Case 4 */ 15118 #ifdef __LITTLE_ENDIAN 15119 .key = "\x08\x00" /* rta length */ 15120 "\x01\x00" /* rta type */ 15121 #else 15122 .key = "\x00\x08" /* rta length */ 15123 "\x00\x01" /* rta type */ 15124 #endif 15125 "\x00\x00\x00\x10" /* enc key length */ 15126 "\x11\x22\x33\x44\x55\x66\x77\x88" 15127 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 15128 "\x22\x33\x44\x55" 15129 "\x56\xe4\x7a\x38\xc5\x59\x89\x74" 15130 "\xbc\x46\x90\x3d\xba\x29\x03\x49", 15131 .klen = 8 + 20 + 16, 15132 .iv = "\x8c\xe8\x2e\xef\xbe\xa0\xda\x3c" 15133 "\x44\x69\x9e\xd7\xdb\x51\xb7\xd9", 15134 .assoc = "\x8c\xe8\x2e\xef\xbe\xa0\xda\x3c" 15135 "\x44\x69\x9e\xd7\xdb\x51\xb7\xd9", 15136 .alen = 16, 15137 .ptext = "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 15138 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 15139 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 15140 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 15141 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 15142 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 15143 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 15144 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf", 15145 .plen = 64, 15146 .ctext = "\xc3\x0e\x32\xff\xed\xc0\x77\x4e" 15147 "\x6a\xff\x6a\xf0\x86\x9f\x71\xaa" 15148 "\x0f\x3a\xf0\x7a\x9a\x31\xa9\xc6" 15149 "\x84\xdb\x20\x7e\xb0\xef\x8e\x4e" 15150 "\x35\x90\x7a\xa6\x32\xc3\xff\xdf" 15151 "\x86\x8b\xb7\xb2\x9d\x3d\x46\xad" 15152 "\x83\xce\x9f\x9a\x10\x2e\xe9\x9d" 15153 "\x49\xa5\x3e\x87\xf4\xc3\xda\x55" 15154 "\x1c\x45\x57\xa9\x56\xcb\xa9\x2d" 15155 "\x18\xac\xf1\xc7\x5d\xd1\xcd\x0d" 15156 "\x1d\xbe\xc6\xe9", 15157 .clen = 64 + 20, 15158 }, { /* RFC 3602 Case 5 */ 15159 #ifdef __LITTLE_ENDIAN 15160 .key = "\x08\x00" /* rta length */ 15161 "\x01\x00" /* rta type */ 15162 #else 15163 .key = "\x00\x08" /* rta length */ 15164 "\x00\x01" /* rta type */ 15165 #endif 15166 "\x00\x00\x00\x10" /* enc key length */ 15167 "\x11\x22\x33\x44\x55\x66\x77\x88" 15168 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 15169 "\x22\x33\x44\x55" 15170 "\x90\xd3\x82\xb4\x10\xee\xba\x7a" 15171 "\xd9\x38\xc4\x6c\xec\x1a\x82\xbf", 15172 .klen = 8 + 20 + 16, 15173 .iv = "\xe9\x6e\x8c\x08\xab\x46\x57\x63" 15174 "\xfd\x09\x8d\x45\xdd\x3f\xf8\x93", 15175 .assoc = "\x00\x00\x43\x21\x00\x00\x00\x01" 15176 "\xe9\x6e\x8c\x08\xab\x46\x57\x63" 15177 "\xfd\x09\x8d\x45\xdd\x3f\xf8\x93", 15178 .alen = 24, 15179 .ptext = "\x08\x00\x0e\xbd\xa7\x0a\x00\x00" 15180 "\x8e\x9c\x08\x3d\xb9\x5b\x07\x00" 15181 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 15182 "\x10\x11\x12\x13\x14\x15\x16\x17" 15183 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 15184 "\x20\x21\x22\x23\x24\x25\x26\x27" 15185 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 15186 "\x30\x31\x32\x33\x34\x35\x36\x37" 15187 "\x01\x02\x03\x04\x05\x06\x07\x08" 15188 "\x09\x0a\x0b\x0c\x0d\x0e\x0e\x01", 15189 .plen = 80, 15190 .ctext = "\xf6\x63\xc2\x5d\x32\x5c\x18\xc6" 15191 "\xa9\x45\x3e\x19\x4e\x12\x08\x49" 15192 "\xa4\x87\x0b\x66\xcc\x6b\x99\x65" 15193 "\x33\x00\x13\xb4\x89\x8d\xc8\x56" 15194 "\xa4\x69\x9e\x52\x3a\x55\xdb\x08" 15195 "\x0b\x59\xec\x3a\x8e\x4b\x7e\x52" 15196 "\x77\x5b\x07\xd1\xdb\x34\xed\x9c" 15197 "\x53\x8a\xb5\x0c\x55\x1b\x87\x4a" 15198 "\xa2\x69\xad\xd0\x47\xad\x2d\x59" 15199 "\x13\xac\x19\xb7\xcf\xba\xd4\xa6" 15200 "\x58\xc6\x84\x75\xe4\xe9\x6b\x0c" 15201 "\xe1\xc5\x0b\x73\x4d\x82\x55\xa8" 15202 "\x85\xe1\x59\xf7", 15203 .clen = 80 + 20, 15204 }, { /* NIST SP800-38A F.2.3 CBC-AES192.Encrypt */ 15205 #ifdef __LITTLE_ENDIAN 15206 .key = "\x08\x00" /* rta length */ 15207 "\x01\x00" /* rta type */ 15208 #else 15209 .key = "\x00\x08" /* rta length */ 15210 "\x00\x01" /* rta type */ 15211 #endif 15212 "\x00\x00\x00\x18" /* enc key length */ 15213 "\x11\x22\x33\x44\x55\x66\x77\x88" 15214 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 15215 "\x22\x33\x44\x55" 15216 "\x8e\x73\xb0\xf7\xda\x0e\x64\x52" 15217 "\xc8\x10\xf3\x2b\x80\x90\x79\xe5" 15218 "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b", 15219 .klen = 8 + 20 + 24, 15220 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 15221 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 15222 .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07" 15223 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 15224 .alen = 16, 15225 .ptext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 15226 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 15227 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 15228 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 15229 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 15230 "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 15231 "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 15232 "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 15233 .plen = 64, 15234 .ctext = "\x4f\x02\x1d\xb2\x43\xbc\x63\x3d" 15235 "\x71\x78\x18\x3a\x9f\xa0\x71\xe8" 15236 "\xb4\xd9\xad\xa9\xad\x7d\xed\xf4" 15237 "\xe5\xe7\x38\x76\x3f\x69\x14\x5a" 15238 "\x57\x1b\x24\x20\x12\xfb\x7a\xe0" 15239 "\x7f\xa9\xba\xac\x3d\xf1\x02\xe0" 15240 "\x08\xb0\xe2\x79\x88\x59\x88\x81" 15241 "\xd9\x20\xa9\xe6\x4f\x56\x15\xcd" 15242 "\x73\xe3\x19\x3f\x8b\xc9\xc6\xf4" 15243 "\x5a\xf1\x5b\xa8\x98\x07\xc5\x36" 15244 "\x47\x4c\xfc\x36", 15245 .clen = 64 + 20, 15246 }, { /* NIST SP800-38A F.2.5 CBC-AES256.Encrypt */ 15247 #ifdef __LITTLE_ENDIAN 15248 .key = "\x08\x00" /* rta length */ 15249 "\x01\x00" /* rta type */ 15250 #else 15251 .key = "\x00\x08" /* rta length */ 15252 "\x00\x01" /* rta type */ 15253 #endif 15254 "\x00\x00\x00\x20" /* enc key length */ 15255 "\x11\x22\x33\x44\x55\x66\x77\x88" 15256 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 15257 "\x22\x33\x44\x55" 15258 "\x60\x3d\xeb\x10\x15\xca\x71\xbe" 15259 "\x2b\x73\xae\xf0\x85\x7d\x77\x81" 15260 "\x1f\x35\x2c\x07\x3b\x61\x08\xd7" 15261 "\x2d\x98\x10\xa3\x09\x14\xdf\xf4", 15262 .klen = 8 + 20 + 32, 15263 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 15264 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 15265 .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07" 15266 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 15267 .alen = 16, 15268 .ptext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 15269 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 15270 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 15271 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 15272 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 15273 "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 15274 "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 15275 "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 15276 .plen = 64, 15277 .ctext = "\xf5\x8c\x4c\x04\xd6\xe5\xf1\xba" 15278 "\x77\x9e\xab\xfb\x5f\x7b\xfb\xd6" 15279 "\x9c\xfc\x4e\x96\x7e\xdb\x80\x8d" 15280 "\x67\x9f\x77\x7b\xc6\x70\x2c\x7d" 15281 "\x39\xf2\x33\x69\xa9\xd9\xba\xcf" 15282 "\xa5\x30\xe2\x63\x04\x23\x14\x61" 15283 "\xb2\xeb\x05\xe2\xc3\x9b\xe9\xfc" 15284 "\xda\x6c\x19\x07\x8c\x6a\x9d\x1b" 15285 "\xa3\xe8\x9b\x17\xe3\xf4\x7f\xde" 15286 "\x1b\x9f\xc6\x81\x26\x43\x4a\x87" 15287 "\x51\xee\xd6\x4e", 15288 .clen = 64 + 20, 15289 }, 15290 }; 15291 15292 static const struct aead_testvec hmac_sha1_ecb_cipher_null_tv_temp[] = { 15293 { /* Input data from RFC 2410 Case 1 */ 15294 #ifdef __LITTLE_ENDIAN 15295 .key = "\x08\x00" /* rta length */ 15296 "\x01\x00" /* rta type */ 15297 #else 15298 .key = "\x00\x08" /* rta length */ 15299 "\x00\x01" /* rta type */ 15300 #endif 15301 "\x00\x00\x00\x00" /* enc key length */ 15302 "\x00\x00\x00\x00\x00\x00\x00\x00" 15303 "\x00\x00\x00\x00\x00\x00\x00\x00" 15304 "\x00\x00\x00\x00", 15305 .klen = 8 + 20 + 0, 15306 .iv = "", 15307 .ptext = "\x01\x23\x45\x67\x89\xab\xcd\xef", 15308 .plen = 8, 15309 .ctext = "\x01\x23\x45\x67\x89\xab\xcd\xef" 15310 "\x40\xc3\x0a\xa1\xc9\xa0\x28\xab" 15311 "\x99\x5e\x19\x04\xd1\x72\xef\xb8" 15312 "\x8c\x5e\xe4\x08", 15313 .clen = 8 + 20, 15314 }, { /* Input data from RFC 2410 Case 2 */ 15315 #ifdef __LITTLE_ENDIAN 15316 .key = "\x08\x00" /* rta length */ 15317 "\x01\x00" /* rta type */ 15318 #else 15319 .key = "\x00\x08" /* rta length */ 15320 "\x00\x01" /* rta type */ 15321 #endif 15322 "\x00\x00\x00\x00" /* enc key length */ 15323 "\x00\x00\x00\x00\x00\x00\x00\x00" 15324 "\x00\x00\x00\x00\x00\x00\x00\x00" 15325 "\x00\x00\x00\x00", 15326 .klen = 8 + 20 + 0, 15327 .iv = "", 15328 .ptext = "Network Security People Have A Strange Sense Of Humor", 15329 .plen = 53, 15330 .ctext = "Network Security People Have A Strange Sense Of Humor" 15331 "\x75\x6f\x42\x1e\xf8\x50\x21\xd2" 15332 "\x65\x47\xee\x8e\x1a\xef\x16\xf6" 15333 "\x91\x56\xe4\xd6", 15334 .clen = 53 + 20, 15335 }, 15336 }; 15337 15338 static const struct aead_testvec hmac_sha256_aes_cbc_tv_temp[] = { 15339 { /* RFC 3602 Case 1 */ 15340 #ifdef __LITTLE_ENDIAN 15341 .key = "\x08\x00" /* rta length */ 15342 "\x01\x00" /* rta type */ 15343 #else 15344 .key = "\x00\x08" /* rta length */ 15345 "\x00\x01" /* rta type */ 15346 #endif 15347 "\x00\x00\x00\x10" /* enc key length */ 15348 "\x00\x00\x00\x00\x00\x00\x00\x00" 15349 "\x00\x00\x00\x00\x00\x00\x00\x00" 15350 "\x00\x00\x00\x00\x00\x00\x00\x00" 15351 "\x00\x00\x00\x00\x00\x00\x00\x00" 15352 "\x06\xa9\x21\x40\x36\xb8\xa1\x5b" 15353 "\x51\x2e\x03\xd5\x34\x12\x00\x06", 15354 .klen = 8 + 32 + 16, 15355 .iv = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30" 15356 "\xb4\x22\xda\x80\x2c\x9f\xac\x41", 15357 .assoc = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30" 15358 "\xb4\x22\xda\x80\x2c\x9f\xac\x41", 15359 .alen = 16, 15360 .ptext = "Single block msg", 15361 .plen = 16, 15362 .ctext = "\xe3\x53\x77\x9c\x10\x79\xae\xb8" 15363 "\x27\x08\x94\x2d\xbe\x77\x18\x1a" 15364 "\xcc\xde\x2d\x6a\xae\xf1\x0b\xcc" 15365 "\x38\x06\x38\x51\xb4\xb8\xf3\x5b" 15366 "\x5c\x34\xa6\xa3\x6e\x0b\x05\xe5" 15367 "\x6a\x6d\x44\xaa\x26\xa8\x44\xa5", 15368 .clen = 16 + 32, 15369 }, { /* RFC 3602 Case 2 */ 15370 #ifdef __LITTLE_ENDIAN 15371 .key = "\x08\x00" /* rta length */ 15372 "\x01\x00" /* rta type */ 15373 #else 15374 .key = "\x00\x08" /* rta length */ 15375 "\x00\x01" /* rta type */ 15376 #endif 15377 "\x00\x00\x00\x10" /* enc key length */ 15378 "\x20\x21\x22\x23\x24\x25\x26\x27" 15379 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 15380 "\x30\x31\x32\x33\x34\x35\x36\x37" 15381 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 15382 "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0" 15383 "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a", 15384 .klen = 8 + 32 + 16, 15385 .iv = "\x56\x2e\x17\x99\x6d\x09\x3d\x28" 15386 "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58", 15387 .assoc = "\x56\x2e\x17\x99\x6d\x09\x3d\x28" 15388 "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58", 15389 .alen = 16, 15390 .ptext = "\x00\x01\x02\x03\x04\x05\x06\x07" 15391 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 15392 "\x10\x11\x12\x13\x14\x15\x16\x17" 15393 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 15394 .plen = 32, 15395 .ctext = "\xd2\x96\xcd\x94\xc2\xcc\xcf\x8a" 15396 "\x3a\x86\x30\x28\xb5\xe1\xdc\x0a" 15397 "\x75\x86\x60\x2d\x25\x3c\xff\xf9" 15398 "\x1b\x82\x66\xbe\xa6\xd6\x1a\xb1" 15399 "\xf5\x33\x53\xf3\x68\x85\x2a\x99" 15400 "\x0e\x06\x58\x8f\xba\xf6\x06\xda" 15401 "\x49\x69\x0d\x5b\xd4\x36\x06\x62" 15402 "\x35\x5e\x54\x58\x53\x4d\xdf\xbf", 15403 .clen = 32 + 32, 15404 }, { /* RFC 3602 Case 3 */ 15405 #ifdef __LITTLE_ENDIAN 15406 .key = "\x08\x00" /* rta length */ 15407 "\x01\x00" /* rta type */ 15408 #else 15409 .key = "\x00\x08" /* rta length */ 15410 "\x00\x01" /* rta type */ 15411 #endif 15412 "\x00\x00\x00\x10" /* enc key length */ 15413 "\x11\x22\x33\x44\x55\x66\x77\x88" 15414 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 15415 "\x22\x33\x44\x55\x66\x77\x88\x99" 15416 "\xaa\xbb\xcc\xdd\xee\xff\x11\x22" 15417 "\x6c\x3e\xa0\x47\x76\x30\xce\x21" 15418 "\xa2\xce\x33\x4a\xa7\x46\xc2\xcd", 15419 .klen = 8 + 32 + 16, 15420 .iv = "\xc7\x82\xdc\x4c\x09\x8c\x66\xcb" 15421 "\xd9\xcd\x27\xd8\x25\x68\x2c\x81", 15422 .assoc = "\xc7\x82\xdc\x4c\x09\x8c\x66\xcb" 15423 "\xd9\xcd\x27\xd8\x25\x68\x2c\x81", 15424 .alen = 16, 15425 .ptext = "This is a 48-byte message (exactly 3 AES blocks)", 15426 .plen = 48, 15427 .ctext = "\xd0\xa0\x2b\x38\x36\x45\x17\x53" 15428 "\xd4\x93\x66\x5d\x33\xf0\xe8\x86" 15429 "\x2d\xea\x54\xcd\xb2\x93\xab\xc7" 15430 "\x50\x69\x39\x27\x67\x72\xf8\xd5" 15431 "\x02\x1c\x19\x21\x6b\xad\x52\x5c" 15432 "\x85\x79\x69\x5d\x83\xba\x26\x84" 15433 "\x68\xb9\x3e\x90\x38\xa0\x88\x01" 15434 "\xe7\xc6\xce\x10\x31\x2f\x9b\x1d" 15435 "\x24\x78\xfb\xbe\x02\xe0\x4f\x40" 15436 "\x10\xbd\xaa\xc6\xa7\x79\xe0\x1a", 15437 .clen = 48 + 32, 15438 }, { /* RFC 3602 Case 4 */ 15439 #ifdef __LITTLE_ENDIAN 15440 .key = "\x08\x00" /* rta length */ 15441 "\x01\x00" /* rta type */ 15442 #else 15443 .key = "\x00\x08" /* rta length */ 15444 "\x00\x01" /* rta type */ 15445 #endif 15446 "\x00\x00\x00\x10" /* enc key length */ 15447 "\x11\x22\x33\x44\x55\x66\x77\x88" 15448 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 15449 "\x22\x33\x44\x55\x66\x77\x88\x99" 15450 "\xaa\xbb\xcc\xdd\xee\xff\x11\x22" 15451 "\x56\xe4\x7a\x38\xc5\x59\x89\x74" 15452 "\xbc\x46\x90\x3d\xba\x29\x03\x49", 15453 .klen = 8 + 32 + 16, 15454 .iv = "\x8c\xe8\x2e\xef\xbe\xa0\xda\x3c" 15455 "\x44\x69\x9e\xd7\xdb\x51\xb7\xd9", 15456 .assoc = "\x8c\xe8\x2e\xef\xbe\xa0\xda\x3c" 15457 "\x44\x69\x9e\xd7\xdb\x51\xb7\xd9", 15458 .alen = 16, 15459 .ptext = "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 15460 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 15461 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 15462 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 15463 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 15464 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 15465 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 15466 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf", 15467 .plen = 64, 15468 .ctext = "\xc3\x0e\x32\xff\xed\xc0\x77\x4e" 15469 "\x6a\xff\x6a\xf0\x86\x9f\x71\xaa" 15470 "\x0f\x3a\xf0\x7a\x9a\x31\xa9\xc6" 15471 "\x84\xdb\x20\x7e\xb0\xef\x8e\x4e" 15472 "\x35\x90\x7a\xa6\x32\xc3\xff\xdf" 15473 "\x86\x8b\xb7\xb2\x9d\x3d\x46\xad" 15474 "\x83\xce\x9f\x9a\x10\x2e\xe9\x9d" 15475 "\x49\xa5\x3e\x87\xf4\xc3\xda\x55" 15476 "\x7a\x1b\xd4\x3c\xdb\x17\x95\xe2" 15477 "\xe0\x93\xec\xc9\x9f\xf7\xce\xd8" 15478 "\x3f\x54\xe2\x49\x39\xe3\x71\x25" 15479 "\x2b\x6c\xe9\x5d\xec\xec\x2b\x64", 15480 .clen = 64 + 32, 15481 }, { /* RFC 3602 Case 5 */ 15482 #ifdef __LITTLE_ENDIAN 15483 .key = "\x08\x00" /* rta length */ 15484 "\x01\x00" /* rta type */ 15485 #else 15486 .key = "\x00\x08" /* rta length */ 15487 "\x00\x01" /* rta type */ 15488 #endif 15489 "\x00\x00\x00\x10" /* enc key length */ 15490 "\x11\x22\x33\x44\x55\x66\x77\x88" 15491 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 15492 "\x22\x33\x44\x55\x66\x77\x88\x99" 15493 "\xaa\xbb\xcc\xdd\xee\xff\x11\x22" 15494 "\x90\xd3\x82\xb4\x10\xee\xba\x7a" 15495 "\xd9\x38\xc4\x6c\xec\x1a\x82\xbf", 15496 .klen = 8 + 32 + 16, 15497 .iv = "\xe9\x6e\x8c\x08\xab\x46\x57\x63" 15498 "\xfd\x09\x8d\x45\xdd\x3f\xf8\x93", 15499 .assoc = "\x00\x00\x43\x21\x00\x00\x00\x01" 15500 "\xe9\x6e\x8c\x08\xab\x46\x57\x63" 15501 "\xfd\x09\x8d\x45\xdd\x3f\xf8\x93", 15502 .alen = 24, 15503 .ptext = "\x08\x00\x0e\xbd\xa7\x0a\x00\x00" 15504 "\x8e\x9c\x08\x3d\xb9\x5b\x07\x00" 15505 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 15506 "\x10\x11\x12\x13\x14\x15\x16\x17" 15507 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 15508 "\x20\x21\x22\x23\x24\x25\x26\x27" 15509 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 15510 "\x30\x31\x32\x33\x34\x35\x36\x37" 15511 "\x01\x02\x03\x04\x05\x06\x07\x08" 15512 "\x09\x0a\x0b\x0c\x0d\x0e\x0e\x01", 15513 .plen = 80, 15514 .ctext = "\xf6\x63\xc2\x5d\x32\x5c\x18\xc6" 15515 "\xa9\x45\x3e\x19\x4e\x12\x08\x49" 15516 "\xa4\x87\x0b\x66\xcc\x6b\x99\x65" 15517 "\x33\x00\x13\xb4\x89\x8d\xc8\x56" 15518 "\xa4\x69\x9e\x52\x3a\x55\xdb\x08" 15519 "\x0b\x59\xec\x3a\x8e\x4b\x7e\x52" 15520 "\x77\x5b\x07\xd1\xdb\x34\xed\x9c" 15521 "\x53\x8a\xb5\x0c\x55\x1b\x87\x4a" 15522 "\xa2\x69\xad\xd0\x47\xad\x2d\x59" 15523 "\x13\xac\x19\xb7\xcf\xba\xd4\xa6" 15524 "\xbb\xd4\x0f\xbe\xa3\x3b\x4c\xb8" 15525 "\x3a\xd2\xe1\x03\x86\xa5\x59\xb7" 15526 "\x73\xc3\x46\x20\x2c\xb1\xef\x68" 15527 "\xbb\x8a\x32\x7e\x12\x8c\x69\xcf", 15528 .clen = 80 + 32, 15529 }, { /* NIST SP800-38A F.2.3 CBC-AES192.Encrypt */ 15530 #ifdef __LITTLE_ENDIAN 15531 .key = "\x08\x00" /* rta length */ 15532 "\x01\x00" /* rta type */ 15533 #else 15534 .key = "\x00\x08" /* rta length */ 15535 "\x00\x01" /* rta type */ 15536 #endif 15537 "\x00\x00\x00\x18" /* enc key length */ 15538 "\x11\x22\x33\x44\x55\x66\x77\x88" 15539 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 15540 "\x22\x33\x44\x55\x66\x77\x88\x99" 15541 "\xaa\xbb\xcc\xdd\xee\xff\x11\x22" 15542 "\x8e\x73\xb0\xf7\xda\x0e\x64\x52" 15543 "\xc8\x10\xf3\x2b\x80\x90\x79\xe5" 15544 "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b", 15545 .klen = 8 + 32 + 24, 15546 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 15547 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 15548 .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07" 15549 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 15550 .alen = 16, 15551 .ptext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 15552 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 15553 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 15554 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 15555 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 15556 "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 15557 "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 15558 "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 15559 .plen = 64, 15560 .ctext = "\x4f\x02\x1d\xb2\x43\xbc\x63\x3d" 15561 "\x71\x78\x18\x3a\x9f\xa0\x71\xe8" 15562 "\xb4\xd9\xad\xa9\xad\x7d\xed\xf4" 15563 "\xe5\xe7\x38\x76\x3f\x69\x14\x5a" 15564 "\x57\x1b\x24\x20\x12\xfb\x7a\xe0" 15565 "\x7f\xa9\xba\xac\x3d\xf1\x02\xe0" 15566 "\x08\xb0\xe2\x79\x88\x59\x88\x81" 15567 "\xd9\x20\xa9\xe6\x4f\x56\x15\xcd" 15568 "\x2f\xee\x5f\xdb\x66\xfe\x79\x09" 15569 "\x61\x81\x31\xea\x5b\x3d\x8e\xfb" 15570 "\xca\x71\x85\x93\xf7\x85\x55\x8b" 15571 "\x7a\xe4\x94\xca\x8b\xba\x19\x33", 15572 .clen = 64 + 32, 15573 }, { /* NIST SP800-38A F.2.5 CBC-AES256.Encrypt */ 15574 #ifdef __LITTLE_ENDIAN 15575 .key = "\x08\x00" /* rta length */ 15576 "\x01\x00" /* rta type */ 15577 #else 15578 .key = "\x00\x08" /* rta length */ 15579 "\x00\x01" /* rta type */ 15580 #endif 15581 "\x00\x00\x00\x20" /* enc key length */ 15582 "\x11\x22\x33\x44\x55\x66\x77\x88" 15583 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 15584 "\x22\x33\x44\x55\x66\x77\x88\x99" 15585 "\xaa\xbb\xcc\xdd\xee\xff\x11\x22" 15586 "\x60\x3d\xeb\x10\x15\xca\x71\xbe" 15587 "\x2b\x73\xae\xf0\x85\x7d\x77\x81" 15588 "\x1f\x35\x2c\x07\x3b\x61\x08\xd7" 15589 "\x2d\x98\x10\xa3\x09\x14\xdf\xf4", 15590 .klen = 8 + 32 + 32, 15591 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 15592 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 15593 .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07" 15594 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 15595 .alen = 16, 15596 .ptext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 15597 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 15598 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 15599 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 15600 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 15601 "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 15602 "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 15603 "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 15604 .plen = 64, 15605 .ctext = "\xf5\x8c\x4c\x04\xd6\xe5\xf1\xba" 15606 "\x77\x9e\xab\xfb\x5f\x7b\xfb\xd6" 15607 "\x9c\xfc\x4e\x96\x7e\xdb\x80\x8d" 15608 "\x67\x9f\x77\x7b\xc6\x70\x2c\x7d" 15609 "\x39\xf2\x33\x69\xa9\xd9\xba\xcf" 15610 "\xa5\x30\xe2\x63\x04\x23\x14\x61" 15611 "\xb2\xeb\x05\xe2\xc3\x9b\xe9\xfc" 15612 "\xda\x6c\x19\x07\x8c\x6a\x9d\x1b" 15613 "\x24\x29\xed\xc2\x31\x49\xdb\xb1" 15614 "\x8f\x74\xbd\x17\x92\x03\xbe\x8f" 15615 "\xf3\x61\xde\x1c\xe9\xdb\xcd\xd0" 15616 "\xcc\xce\xe9\x85\x57\xcf\x6f\x5f", 15617 .clen = 64 + 32, 15618 }, 15619 }; 15620 15621 static const struct aead_testvec hmac_sha512_aes_cbc_tv_temp[] = { 15622 { /* RFC 3602 Case 1 */ 15623 #ifdef __LITTLE_ENDIAN 15624 .key = "\x08\x00" /* rta length */ 15625 "\x01\x00" /* rta type */ 15626 #else 15627 .key = "\x00\x08" /* rta length */ 15628 "\x00\x01" /* rta type */ 15629 #endif 15630 "\x00\x00\x00\x10" /* enc key length */ 15631 "\x00\x00\x00\x00\x00\x00\x00\x00" 15632 "\x00\x00\x00\x00\x00\x00\x00\x00" 15633 "\x00\x00\x00\x00\x00\x00\x00\x00" 15634 "\x00\x00\x00\x00\x00\x00\x00\x00" 15635 "\x00\x00\x00\x00\x00\x00\x00\x00" 15636 "\x00\x00\x00\x00\x00\x00\x00\x00" 15637 "\x00\x00\x00\x00\x00\x00\x00\x00" 15638 "\x00\x00\x00\x00\x00\x00\x00\x00" 15639 "\x06\xa9\x21\x40\x36\xb8\xa1\x5b" 15640 "\x51\x2e\x03\xd5\x34\x12\x00\x06", 15641 .klen = 8 + 64 + 16, 15642 .iv = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30" 15643 "\xb4\x22\xda\x80\x2c\x9f\xac\x41", 15644 .assoc = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30" 15645 "\xb4\x22\xda\x80\x2c\x9f\xac\x41", 15646 .alen = 16, 15647 .ptext = "Single block msg", 15648 .plen = 16, 15649 .ctext = "\xe3\x53\x77\x9c\x10\x79\xae\xb8" 15650 "\x27\x08\x94\x2d\xbe\x77\x18\x1a" 15651 "\x3f\xdc\xad\x90\x03\x63\x5e\x68" 15652 "\xc3\x13\xdd\xa4\x5c\x4d\x54\xa7" 15653 "\x19\x6e\x03\x75\x2b\xa1\x62\xce" 15654 "\xe0\xc6\x96\x75\xb2\x14\xca\x96" 15655 "\xec\xbd\x50\x08\x07\x64\x1a\x49" 15656 "\xe8\x9a\x7c\x06\x3d\xcb\xff\xb2" 15657 "\xfa\x20\x89\xdd\x9c\xac\x9e\x16" 15658 "\x18\x8a\xa0\x6d\x01\x6c\xa3\x3a", 15659 .clen = 16 + 64, 15660 }, { /* RFC 3602 Case 2 */ 15661 #ifdef __LITTLE_ENDIAN 15662 .key = "\x08\x00" /* rta length */ 15663 "\x01\x00" /* rta type */ 15664 #else 15665 .key = "\x00\x08" /* rta length */ 15666 "\x00\x01" /* rta type */ 15667 #endif 15668 "\x00\x00\x00\x10" /* enc key length */ 15669 "\x20\x21\x22\x23\x24\x25\x26\x27" 15670 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 15671 "\x30\x31\x32\x33\x34\x35\x36\x37" 15672 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 15673 "\x40\x41\x42\x43\x44\x45\x46\x47" 15674 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 15675 "\x50\x51\x52\x53\x54\x55\x56\x57" 15676 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 15677 "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0" 15678 "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a", 15679 .klen = 8 + 64 + 16, 15680 .iv = "\x56\x2e\x17\x99\x6d\x09\x3d\x28" 15681 "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58", 15682 .assoc = "\x56\x2e\x17\x99\x6d\x09\x3d\x28" 15683 "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58", 15684 .alen = 16, 15685 .ptext = "\x00\x01\x02\x03\x04\x05\x06\x07" 15686 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 15687 "\x10\x11\x12\x13\x14\x15\x16\x17" 15688 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 15689 .plen = 32, 15690 .ctext = "\xd2\x96\xcd\x94\xc2\xcc\xcf\x8a" 15691 "\x3a\x86\x30\x28\xb5\xe1\xdc\x0a" 15692 "\x75\x86\x60\x2d\x25\x3c\xff\xf9" 15693 "\x1b\x82\x66\xbe\xa6\xd6\x1a\xb1" 15694 "\xda\xb2\x0c\xb2\x26\xc4\xd5\xef" 15695 "\x60\x38\xa4\x5e\x9a\x8c\x1b\x41" 15696 "\x03\x9f\xc4\x64\x7f\x01\x42\x9b" 15697 "\x0e\x1b\xea\xef\xbc\x88\x19\x5e" 15698 "\x31\x7e\xc2\x95\xfc\x09\x32\x0a" 15699 "\x46\x32\x7c\x41\x9c\x59\x3e\xe9" 15700 "\x8f\x9f\xd4\x31\xd6\x22\xbd\xf8" 15701 "\xf7\x0a\x94\xe5\xa9\xc3\xf6\x9d", 15702 .clen = 32 + 64, 15703 }, { /* RFC 3602 Case 3 */ 15704 #ifdef __LITTLE_ENDIAN 15705 .key = "\x08\x00" /* rta length */ 15706 "\x01\x00" /* rta type */ 15707 #else 15708 .key = "\x00\x08" /* rta length */ 15709 "\x00\x01" /* rta type */ 15710 #endif 15711 "\x00\x00\x00\x10" /* enc key length */ 15712 "\x11\x22\x33\x44\x55\x66\x77\x88" 15713 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 15714 "\x22\x33\x44\x55\x66\x77\x88\x99" 15715 "\xaa\xbb\xcc\xdd\xee\xff\x11\x22" 15716 "\x33\x44\x55\x66\x77\x88\x99\xaa" 15717 "\xbb\xcc\xdd\xee\xff\x11\x22\x33" 15718 "\x44\x55\x66\x77\x88\x99\xaa\xbb" 15719 "\xcc\xdd\xee\xff\x11\x22\x33\x44" 15720 "\x6c\x3e\xa0\x47\x76\x30\xce\x21" 15721 "\xa2\xce\x33\x4a\xa7\x46\xc2\xcd", 15722 .klen = 8 + 64 + 16, 15723 .iv = "\xc7\x82\xdc\x4c\x09\x8c\x66\xcb" 15724 "\xd9\xcd\x27\xd8\x25\x68\x2c\x81", 15725 .assoc = "\xc7\x82\xdc\x4c\x09\x8c\x66\xcb" 15726 "\xd9\xcd\x27\xd8\x25\x68\x2c\x81", 15727 .alen = 16, 15728 .ptext = "This is a 48-byte message (exactly 3 AES blocks)", 15729 .plen = 48, 15730 .ctext = "\xd0\xa0\x2b\x38\x36\x45\x17\x53" 15731 "\xd4\x93\x66\x5d\x33\xf0\xe8\x86" 15732 "\x2d\xea\x54\xcd\xb2\x93\xab\xc7" 15733 "\x50\x69\x39\x27\x67\x72\xf8\xd5" 15734 "\x02\x1c\x19\x21\x6b\xad\x52\x5c" 15735 "\x85\x79\x69\x5d\x83\xba\x26\x84" 15736 "\x64\x19\x17\x5b\x57\xe0\x21\x0f" 15737 "\xca\xdb\xa1\x26\x38\x14\xa2\x69" 15738 "\xdb\x54\x67\x80\xc0\x54\xe0\xfd" 15739 "\x3e\x91\xe7\x91\x7f\x13\x38\x44" 15740 "\xb7\xb1\xd6\xc8\x7d\x48\x8d\x41" 15741 "\x08\xea\x29\x6c\x74\x67\x3f\xb0" 15742 "\xac\x7f\x5c\x1d\xf5\xee\x22\x66" 15743 "\x27\xa6\xb6\x13\xba\xba\xf0\xc2", 15744 .clen = 48 + 64, 15745 }, { /* RFC 3602 Case 4 */ 15746 #ifdef __LITTLE_ENDIAN 15747 .key = "\x08\x00" /* rta length */ 15748 "\x01\x00" /* rta type */ 15749 #else 15750 .key = "\x00\x08" /* rta length */ 15751 "\x00\x01" /* rta type */ 15752 #endif 15753 "\x00\x00\x00\x10" /* enc key length */ 15754 "\x11\x22\x33\x44\x55\x66\x77\x88" 15755 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 15756 "\x22\x33\x44\x55\x66\x77\x88\x99" 15757 "\xaa\xbb\xcc\xdd\xee\xff\x11\x22" 15758 "\x33\x44\x55\x66\x77\x88\x99\xaa" 15759 "\xbb\xcc\xdd\xee\xff\x11\x22\x33" 15760 "\x44\x55\x66\x77\x88\x99\xaa\xbb" 15761 "\xcc\xdd\xee\xff\x11\x22\x33\x44" 15762 "\x56\xe4\x7a\x38\xc5\x59\x89\x74" 15763 "\xbc\x46\x90\x3d\xba\x29\x03\x49", 15764 .klen = 8 + 64 + 16, 15765 .iv = "\x8c\xe8\x2e\xef\xbe\xa0\xda\x3c" 15766 "\x44\x69\x9e\xd7\xdb\x51\xb7\xd9", 15767 .assoc = "\x8c\xe8\x2e\xef\xbe\xa0\xda\x3c" 15768 "\x44\x69\x9e\xd7\xdb\x51\xb7\xd9", 15769 .alen = 16, 15770 .ptext = "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 15771 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 15772 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 15773 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 15774 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 15775 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 15776 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 15777 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf", 15778 .plen = 64, 15779 .ctext = "\xc3\x0e\x32\xff\xed\xc0\x77\x4e" 15780 "\x6a\xff\x6a\xf0\x86\x9f\x71\xaa" 15781 "\x0f\x3a\xf0\x7a\x9a\x31\xa9\xc6" 15782 "\x84\xdb\x20\x7e\xb0\xef\x8e\x4e" 15783 "\x35\x90\x7a\xa6\x32\xc3\xff\xdf" 15784 "\x86\x8b\xb7\xb2\x9d\x3d\x46\xad" 15785 "\x83\xce\x9f\x9a\x10\x2e\xe9\x9d" 15786 "\x49\xa5\x3e\x87\xf4\xc3\xda\x55" 15787 "\x82\xcd\x42\x28\x21\x20\x15\xcc" 15788 "\xb7\xb2\x48\x40\xc7\x64\x41\x3a" 15789 "\x61\x32\x82\x85\xcf\x27\xed\xb4" 15790 "\xe4\x68\xa2\xf5\x79\x26\x27\xb2" 15791 "\x51\x67\x6a\xc4\xf0\x66\x55\x50" 15792 "\xbc\x6f\xed\xd5\x8d\xde\x23\x7c" 15793 "\x62\x98\x14\xd7\x2f\x37\x8d\xdf" 15794 "\xf4\x33\x80\xeb\x8e\xb4\xa4\xda", 15795 .clen = 64 + 64, 15796 }, { /* RFC 3602 Case 5 */ 15797 #ifdef __LITTLE_ENDIAN 15798 .key = "\x08\x00" /* rta length */ 15799 "\x01\x00" /* rta type */ 15800 #else 15801 .key = "\x00\x08" /* rta length */ 15802 "\x00\x01" /* rta type */ 15803 #endif 15804 "\x00\x00\x00\x10" /* enc key length */ 15805 "\x11\x22\x33\x44\x55\x66\x77\x88" 15806 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 15807 "\x22\x33\x44\x55\x66\x77\x88\x99" 15808 "\xaa\xbb\xcc\xdd\xee\xff\x11\x22" 15809 "\x33\x44\x55\x66\x77\x88\x99\xaa" 15810 "\xbb\xcc\xdd\xee\xff\x11\x22\x33" 15811 "\x44\x55\x66\x77\x88\x99\xaa\xbb" 15812 "\xcc\xdd\xee\xff\x11\x22\x33\x44" 15813 "\x90\xd3\x82\xb4\x10\xee\xba\x7a" 15814 "\xd9\x38\xc4\x6c\xec\x1a\x82\xbf", 15815 .klen = 8 + 64 + 16, 15816 .iv = "\xe9\x6e\x8c\x08\xab\x46\x57\x63" 15817 "\xfd\x09\x8d\x45\xdd\x3f\xf8\x93", 15818 .assoc = "\x00\x00\x43\x21\x00\x00\x00\x01" 15819 "\xe9\x6e\x8c\x08\xab\x46\x57\x63" 15820 "\xfd\x09\x8d\x45\xdd\x3f\xf8\x93", 15821 .alen = 24, 15822 .ptext = "\x08\x00\x0e\xbd\xa7\x0a\x00\x00" 15823 "\x8e\x9c\x08\x3d\xb9\x5b\x07\x00" 15824 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 15825 "\x10\x11\x12\x13\x14\x15\x16\x17" 15826 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 15827 "\x20\x21\x22\x23\x24\x25\x26\x27" 15828 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 15829 "\x30\x31\x32\x33\x34\x35\x36\x37" 15830 "\x01\x02\x03\x04\x05\x06\x07\x08" 15831 "\x09\x0a\x0b\x0c\x0d\x0e\x0e\x01", 15832 .plen = 80, 15833 .ctext = "\xf6\x63\xc2\x5d\x32\x5c\x18\xc6" 15834 "\xa9\x45\x3e\x19\x4e\x12\x08\x49" 15835 "\xa4\x87\x0b\x66\xcc\x6b\x99\x65" 15836 "\x33\x00\x13\xb4\x89\x8d\xc8\x56" 15837 "\xa4\x69\x9e\x52\x3a\x55\xdb\x08" 15838 "\x0b\x59\xec\x3a\x8e\x4b\x7e\x52" 15839 "\x77\x5b\x07\xd1\xdb\x34\xed\x9c" 15840 "\x53\x8a\xb5\x0c\x55\x1b\x87\x4a" 15841 "\xa2\x69\xad\xd0\x47\xad\x2d\x59" 15842 "\x13\xac\x19\xb7\xcf\xba\xd4\xa6" 15843 "\x74\x84\x94\xe2\xd7\x7a\xf9\xbf" 15844 "\x00\x8a\xa2\xd5\xb7\xf3\x60\xcf" 15845 "\xa0\x47\xdf\x4e\x09\xf4\xb1\x7f" 15846 "\x14\xd9\x3d\x53\x8e\x12\xb3\x00" 15847 "\x4c\x0a\x4e\x32\x40\x43\x88\xce" 15848 "\x92\x26\xc1\x76\x20\x11\xeb\xba" 15849 "\x62\x4f\x9a\x62\x25\xc3\x75\x80" 15850 "\xb7\x0a\x17\xf5\xd7\x94\xb4\x14", 15851 .clen = 80 + 64, 15852 }, { /* NIST SP800-38A F.2.3 CBC-AES192.Encrypt */ 15853 #ifdef __LITTLE_ENDIAN 15854 .key = "\x08\x00" /* rta length */ 15855 "\x01\x00" /* rta type */ 15856 #else 15857 .key = "\x00\x08" /* rta length */ 15858 "\x00\x01" /* rta type */ 15859 #endif 15860 "\x00\x00\x00\x18" /* enc key length */ 15861 "\x11\x22\x33\x44\x55\x66\x77\x88" 15862 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 15863 "\x22\x33\x44\x55\x66\x77\x88\x99" 15864 "\xaa\xbb\xcc\xdd\xee\xff\x11\x22" 15865 "\x33\x44\x55\x66\x77\x88\x99\xaa" 15866 "\xbb\xcc\xdd\xee\xff\x11\x22\x33" 15867 "\x44\x55\x66\x77\x88\x99\xaa\xbb" 15868 "\xcc\xdd\xee\xff\x11\x22\x33\x44" 15869 "\x8e\x73\xb0\xf7\xda\x0e\x64\x52" 15870 "\xc8\x10\xf3\x2b\x80\x90\x79\xe5" 15871 "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b", 15872 .klen = 8 + 64 + 24, 15873 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 15874 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 15875 .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07" 15876 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 15877 .alen = 16, 15878 .ptext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 15879 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 15880 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 15881 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 15882 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 15883 "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 15884 "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 15885 "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 15886 .plen = 64, 15887 .ctext = "\x4f\x02\x1d\xb2\x43\xbc\x63\x3d" 15888 "\x71\x78\x18\x3a\x9f\xa0\x71\xe8" 15889 "\xb4\xd9\xad\xa9\xad\x7d\xed\xf4" 15890 "\xe5\xe7\x38\x76\x3f\x69\x14\x5a" 15891 "\x57\x1b\x24\x20\x12\xfb\x7a\xe0" 15892 "\x7f\xa9\xba\xac\x3d\xf1\x02\xe0" 15893 "\x08\xb0\xe2\x79\x88\x59\x88\x81" 15894 "\xd9\x20\xa9\xe6\x4f\x56\x15\xcd" 15895 "\x77\x4b\x69\x9d\x3a\x0d\xb4\x99" 15896 "\x8f\xc6\x8e\x0e\x72\x58\xe3\x56" 15897 "\xbb\x21\xd2\x7d\x93\x11\x17\x91" 15898 "\xc4\x83\xfd\x0a\xea\x71\xfe\x77" 15899 "\xae\x6f\x0a\xa5\xf0\xcf\xe1\x35" 15900 "\xba\x03\xd5\x32\xfa\x5f\x41\x58" 15901 "\x8d\x43\x98\xa7\x94\x16\x07\x02" 15902 "\x0f\xb6\x81\x50\x28\x95\x2e\x75", 15903 .clen = 64 + 64, 15904 }, { /* NIST SP800-38A F.2.5 CBC-AES256.Encrypt */ 15905 #ifdef __LITTLE_ENDIAN 15906 .key = "\x08\x00" /* rta length */ 15907 "\x01\x00" /* rta type */ 15908 #else 15909 .key = "\x00\x08" /* rta length */ 15910 "\x00\x01" /* rta type */ 15911 #endif 15912 "\x00\x00\x00\x20" /* enc key length */ 15913 "\x11\x22\x33\x44\x55\x66\x77\x88" 15914 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 15915 "\x22\x33\x44\x55\x66\x77\x88\x99" 15916 "\xaa\xbb\xcc\xdd\xee\xff\x11\x22" 15917 "\x33\x44\x55\x66\x77\x88\x99\xaa" 15918 "\xbb\xcc\xdd\xee\xff\x11\x22\x33" 15919 "\x44\x55\x66\x77\x88\x99\xaa\xbb" 15920 "\xcc\xdd\xee\xff\x11\x22\x33\x44" 15921 "\x60\x3d\xeb\x10\x15\xca\x71\xbe" 15922 "\x2b\x73\xae\xf0\x85\x7d\x77\x81" 15923 "\x1f\x35\x2c\x07\x3b\x61\x08\xd7" 15924 "\x2d\x98\x10\xa3\x09\x14\xdf\xf4", 15925 .klen = 8 + 64 + 32, 15926 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 15927 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 15928 .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07" 15929 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 15930 .alen = 16, 15931 .ptext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 15932 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 15933 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 15934 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 15935 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 15936 "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 15937 "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 15938 "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 15939 .plen = 64, 15940 .ctext = "\xf5\x8c\x4c\x04\xd6\xe5\xf1\xba" 15941 "\x77\x9e\xab\xfb\x5f\x7b\xfb\xd6" 15942 "\x9c\xfc\x4e\x96\x7e\xdb\x80\x8d" 15943 "\x67\x9f\x77\x7b\xc6\x70\x2c\x7d" 15944 "\x39\xf2\x33\x69\xa9\xd9\xba\xcf" 15945 "\xa5\x30\xe2\x63\x04\x23\x14\x61" 15946 "\xb2\xeb\x05\xe2\xc3\x9b\xe9\xfc" 15947 "\xda\x6c\x19\x07\x8c\x6a\x9d\x1b" 15948 "\xb2\x27\x69\x7f\x45\x64\x79\x2b" 15949 "\xb7\xb8\x4c\xd4\x75\x94\x68\x40" 15950 "\x2a\xea\x91\xc7\x3f\x7c\xed\x7b" 15951 "\x95\x2c\x9b\xa8\xf5\xe5\x52\x8d" 15952 "\x6b\xe1\xae\xf1\x74\xfa\x0d\x0c" 15953 "\xe3\x8d\x64\xc3\x8d\xff\x7c\x8c" 15954 "\xdb\xbf\xa0\xb4\x01\xa2\xa8\xa2" 15955 "\x2c\xb1\x62\x2c\x10\xca\xf1\x21", 15956 .clen = 64 + 64, 15957 }, 15958 }; 15959 15960 static const struct aead_testvec hmac_sha1_des_cbc_tv_temp[] = { 15961 { /*Generated with cryptopp*/ 15962 #ifdef __LITTLE_ENDIAN 15963 .key = "\x08\x00" /* rta length */ 15964 "\x01\x00" /* rta type */ 15965 #else 15966 .key = "\x00\x08" /* rta length */ 15967 "\x00\x01" /* rta type */ 15968 #endif 15969 "\x00\x00\x00\x08" /* enc key length */ 15970 "\x11\x22\x33\x44\x55\x66\x77\x88" 15971 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 15972 "\x22\x33\x44\x55" 15973 "\xE9\xC0\xFF\x2E\x76\x0B\x64\x24", 15974 .klen = 8 + 20 + 8, 15975 .iv = "\x7D\x33\x88\x93\x0F\x93\xB2\x42", 15976 .assoc = "\x00\x00\x43\x21\x00\x00\x00\x01" 15977 "\x7D\x33\x88\x93\x0F\x93\xB2\x42", 15978 .alen = 16, 15979 .ptext = "\x6f\x54\x20\x6f\x61\x4d\x79\x6e" 15980 "\x53\x20\x63\x65\x65\x72\x73\x74" 15981 "\x54\x20\x6f\x6f\x4d\x20\x6e\x61" 15982 "\x20\x79\x65\x53\x72\x63\x74\x65" 15983 "\x20\x73\x6f\x54\x20\x6f\x61\x4d" 15984 "\x79\x6e\x53\x20\x63\x65\x65\x72" 15985 "\x73\x74\x54\x20\x6f\x6f\x4d\x20" 15986 "\x6e\x61\x20\x79\x65\x53\x72\x63" 15987 "\x74\x65\x20\x73\x6f\x54\x20\x6f" 15988 "\x61\x4d\x79\x6e\x53\x20\x63\x65" 15989 "\x65\x72\x73\x74\x54\x20\x6f\x6f" 15990 "\x4d\x20\x6e\x61\x20\x79\x65\x53" 15991 "\x72\x63\x74\x65\x20\x73\x6f\x54" 15992 "\x20\x6f\x61\x4d\x79\x6e\x53\x20" 15993 "\x63\x65\x65\x72\x73\x74\x54\x20" 15994 "\x6f\x6f\x4d\x20\x6e\x61\x0a\x79", 15995 .plen = 128, 15996 .ctext = "\x70\xd6\xde\x64\x87\x17\xf1\xe8" 15997 "\x54\x31\x85\x37\xed\x6b\x01\x8d" 15998 "\xe3\xcc\xe0\x1d\x5e\xf3\xfe\xf1" 15999 "\x41\xaa\x33\x91\xa7\x7d\x99\x88" 16000 "\x4d\x85\x6e\x2f\xa3\x69\xf5\x82" 16001 "\x3a\x6f\x25\xcb\x7d\x58\x1f\x9b" 16002 "\xaa\x9c\x11\xd5\x76\x67\xce\xde" 16003 "\x56\xd7\x5a\x80\x69\xea\x3a\x02" 16004 "\xf0\xc7\x7c\xe3\xcb\x40\xe5\x52" 16005 "\xd1\x10\x92\x78\x0b\x8e\x5b\xf1" 16006 "\xe3\x26\x1f\xe1\x15\x41\xc7\xba" 16007 "\x99\xdb\x08\x51\x1c\xd3\x01\xf4" 16008 "\x87\x47\x39\xb8\xd2\xdd\xbd\xfb" 16009 "\x66\x13\xdf\x1c\x01\x44\xf0\x7a" 16010 "\x1a\x6b\x13\xf5\xd5\x0b\xb8\xba" 16011 "\x53\xba\xe1\x76\xe3\x82\x07\x86" 16012 "\x95\x16\x20\x09\xf5\x95\x19\xfd" 16013 "\x3c\xc7\xe0\x42\xc0\x14\x69\xfa" 16014 "\x5c\x44\xa9\x37", 16015 .clen = 128 + 20, 16016 }, 16017 }; 16018 16019 static const struct aead_testvec hmac_sha224_des_cbc_tv_temp[] = { 16020 { /*Generated with cryptopp*/ 16021 #ifdef __LITTLE_ENDIAN 16022 .key = "\x08\x00" /* rta length */ 16023 "\x01\x00" /* rta type */ 16024 #else 16025 .key = "\x00\x08" /* rta length */ 16026 "\x00\x01" /* rta type */ 16027 #endif 16028 "\x00\x00\x00\x08" /* enc key length */ 16029 "\x11\x22\x33\x44\x55\x66\x77\x88" 16030 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 16031 "\x22\x33\x44\x55\x66\x77\x88\x99" 16032 "\xE9\xC0\xFF\x2E\x76\x0B\x64\x24", 16033 .klen = 8 + 24 + 8, 16034 .iv = "\x7D\x33\x88\x93\x0F\x93\xB2\x42", 16035 .assoc = "\x00\x00\x43\x21\x00\x00\x00\x01" 16036 "\x7D\x33\x88\x93\x0F\x93\xB2\x42", 16037 .alen = 16, 16038 .ptext = "\x6f\x54\x20\x6f\x61\x4d\x79\x6e" 16039 "\x53\x20\x63\x65\x65\x72\x73\x74" 16040 "\x54\x20\x6f\x6f\x4d\x20\x6e\x61" 16041 "\x20\x79\x65\x53\x72\x63\x74\x65" 16042 "\x20\x73\x6f\x54\x20\x6f\x61\x4d" 16043 "\x79\x6e\x53\x20\x63\x65\x65\x72" 16044 "\x73\x74\x54\x20\x6f\x6f\x4d\x20" 16045 "\x6e\x61\x20\x79\x65\x53\x72\x63" 16046 "\x74\x65\x20\x73\x6f\x54\x20\x6f" 16047 "\x61\x4d\x79\x6e\x53\x20\x63\x65" 16048 "\x65\x72\x73\x74\x54\x20\x6f\x6f" 16049 "\x4d\x20\x6e\x61\x20\x79\x65\x53" 16050 "\x72\x63\x74\x65\x20\x73\x6f\x54" 16051 "\x20\x6f\x61\x4d\x79\x6e\x53\x20" 16052 "\x63\x65\x65\x72\x73\x74\x54\x20" 16053 "\x6f\x6f\x4d\x20\x6e\x61\x0a\x79", 16054 .plen = 128, 16055 .ctext = "\x70\xd6\xde\x64\x87\x17\xf1\xe8" 16056 "\x54\x31\x85\x37\xed\x6b\x01\x8d" 16057 "\xe3\xcc\xe0\x1d\x5e\xf3\xfe\xf1" 16058 "\x41\xaa\x33\x91\xa7\x7d\x99\x88" 16059 "\x4d\x85\x6e\x2f\xa3\x69\xf5\x82" 16060 "\x3a\x6f\x25\xcb\x7d\x58\x1f\x9b" 16061 "\xaa\x9c\x11\xd5\x76\x67\xce\xde" 16062 "\x56\xd7\x5a\x80\x69\xea\x3a\x02" 16063 "\xf0\xc7\x7c\xe3\xcb\x40\xe5\x52" 16064 "\xd1\x10\x92\x78\x0b\x8e\x5b\xf1" 16065 "\xe3\x26\x1f\xe1\x15\x41\xc7\xba" 16066 "\x99\xdb\x08\x51\x1c\xd3\x01\xf4" 16067 "\x87\x47\x39\xb8\xd2\xdd\xbd\xfb" 16068 "\x66\x13\xdf\x1c\x01\x44\xf0\x7a" 16069 "\x1a\x6b\x13\xf5\xd5\x0b\xb8\xba" 16070 "\x53\xba\xe1\x76\xe3\x82\x07\x86" 16071 "\x9c\x2d\x7e\xee\x20\x34\x55\x0a" 16072 "\xce\xb5\x4e\x64\x53\xe7\xbf\x91" 16073 "\xab\xd4\xd9\xda\xc9\x12\xae\xf7", 16074 .clen = 128 + 24, 16075 }, 16076 }; 16077 16078 static const struct aead_testvec hmac_sha256_des_cbc_tv_temp[] = { 16079 { /*Generated with cryptopp*/ 16080 #ifdef __LITTLE_ENDIAN 16081 .key = "\x08\x00" /* rta length */ 16082 "\x01\x00" /* rta type */ 16083 #else 16084 .key = "\x00\x08" /* rta length */ 16085 "\x00\x01" /* rta type */ 16086 #endif 16087 "\x00\x00\x00\x08" /* enc key length */ 16088 "\x11\x22\x33\x44\x55\x66\x77\x88" 16089 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 16090 "\x22\x33\x44\x55\x66\x77\x88\x99" 16091 "\xaa\xbb\xcc\xdd\xee\xff\x11\x22" 16092 "\xE9\xC0\xFF\x2E\x76\x0B\x64\x24", 16093 .klen = 8 + 32 + 8, 16094 .iv = "\x7D\x33\x88\x93\x0F\x93\xB2\x42", 16095 .assoc = "\x00\x00\x43\x21\x00\x00\x00\x01" 16096 "\x7D\x33\x88\x93\x0F\x93\xB2\x42", 16097 .alen = 16, 16098 .ptext = "\x6f\x54\x20\x6f\x61\x4d\x79\x6e" 16099 "\x53\x20\x63\x65\x65\x72\x73\x74" 16100 "\x54\x20\x6f\x6f\x4d\x20\x6e\x61" 16101 "\x20\x79\x65\x53\x72\x63\x74\x65" 16102 "\x20\x73\x6f\x54\x20\x6f\x61\x4d" 16103 "\x79\x6e\x53\x20\x63\x65\x65\x72" 16104 "\x73\x74\x54\x20\x6f\x6f\x4d\x20" 16105 "\x6e\x61\x20\x79\x65\x53\x72\x63" 16106 "\x74\x65\x20\x73\x6f\x54\x20\x6f" 16107 "\x61\x4d\x79\x6e\x53\x20\x63\x65" 16108 "\x65\x72\x73\x74\x54\x20\x6f\x6f" 16109 "\x4d\x20\x6e\x61\x20\x79\x65\x53" 16110 "\x72\x63\x74\x65\x20\x73\x6f\x54" 16111 "\x20\x6f\x61\x4d\x79\x6e\x53\x20" 16112 "\x63\x65\x65\x72\x73\x74\x54\x20" 16113 "\x6f\x6f\x4d\x20\x6e\x61\x0a\x79", 16114 .plen = 128, 16115 .ctext = "\x70\xd6\xde\x64\x87\x17\xf1\xe8" 16116 "\x54\x31\x85\x37\xed\x6b\x01\x8d" 16117 "\xe3\xcc\xe0\x1d\x5e\xf3\xfe\xf1" 16118 "\x41\xaa\x33\x91\xa7\x7d\x99\x88" 16119 "\x4d\x85\x6e\x2f\xa3\x69\xf5\x82" 16120 "\x3a\x6f\x25\xcb\x7d\x58\x1f\x9b" 16121 "\xaa\x9c\x11\xd5\x76\x67\xce\xde" 16122 "\x56\xd7\x5a\x80\x69\xea\x3a\x02" 16123 "\xf0\xc7\x7c\xe3\xcb\x40\xe5\x52" 16124 "\xd1\x10\x92\x78\x0b\x8e\x5b\xf1" 16125 "\xe3\x26\x1f\xe1\x15\x41\xc7\xba" 16126 "\x99\xdb\x08\x51\x1c\xd3\x01\xf4" 16127 "\x87\x47\x39\xb8\xd2\xdd\xbd\xfb" 16128 "\x66\x13\xdf\x1c\x01\x44\xf0\x7a" 16129 "\x1a\x6b\x13\xf5\xd5\x0b\xb8\xba" 16130 "\x53\xba\xe1\x76\xe3\x82\x07\x86" 16131 "\xc6\x58\xa1\x60\x70\x91\x39\x36" 16132 "\x50\xf6\x5d\xab\x4b\x51\x4e\x5e" 16133 "\xde\x63\xde\x76\x52\xde\x9f\xba" 16134 "\x90\xcf\x15\xf2\xbb\x6e\x84\x00", 16135 .clen = 128 + 32, 16136 }, 16137 }; 16138 16139 static const struct aead_testvec hmac_sha384_des_cbc_tv_temp[] = { 16140 { /*Generated with cryptopp*/ 16141 #ifdef __LITTLE_ENDIAN 16142 .key = "\x08\x00" /* rta length */ 16143 "\x01\x00" /* rta type */ 16144 #else 16145 .key = "\x00\x08" /* rta length */ 16146 "\x00\x01" /* rta type */ 16147 #endif 16148 "\x00\x00\x00\x08" /* enc key length */ 16149 "\x11\x22\x33\x44\x55\x66\x77\x88" 16150 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 16151 "\x22\x33\x44\x55\x66\x77\x88\x99" 16152 "\xaa\xbb\xcc\xdd\xee\xff\x11\x22" 16153 "\x33\x44\x55\x66\x77\x88\x99\xaa" 16154 "\xbb\xcc\xdd\xee\xff\x11\x22\x33" 16155 "\xE9\xC0\xFF\x2E\x76\x0B\x64\x24", 16156 .klen = 8 + 48 + 8, 16157 .iv = "\x7D\x33\x88\x93\x0F\x93\xB2\x42", 16158 .assoc = "\x00\x00\x43\x21\x00\x00\x00\x01" 16159 "\x7D\x33\x88\x93\x0F\x93\xB2\x42", 16160 .alen = 16, 16161 .ptext = "\x6f\x54\x20\x6f\x61\x4d\x79\x6e" 16162 "\x53\x20\x63\x65\x65\x72\x73\x74" 16163 "\x54\x20\x6f\x6f\x4d\x20\x6e\x61" 16164 "\x20\x79\x65\x53\x72\x63\x74\x65" 16165 "\x20\x73\x6f\x54\x20\x6f\x61\x4d" 16166 "\x79\x6e\x53\x20\x63\x65\x65\x72" 16167 "\x73\x74\x54\x20\x6f\x6f\x4d\x20" 16168 "\x6e\x61\x20\x79\x65\x53\x72\x63" 16169 "\x74\x65\x20\x73\x6f\x54\x20\x6f" 16170 "\x61\x4d\x79\x6e\x53\x20\x63\x65" 16171 "\x65\x72\x73\x74\x54\x20\x6f\x6f" 16172 "\x4d\x20\x6e\x61\x20\x79\x65\x53" 16173 "\x72\x63\x74\x65\x20\x73\x6f\x54" 16174 "\x20\x6f\x61\x4d\x79\x6e\x53\x20" 16175 "\x63\x65\x65\x72\x73\x74\x54\x20" 16176 "\x6f\x6f\x4d\x20\x6e\x61\x0a\x79", 16177 .plen = 128, 16178 .ctext = "\x70\xd6\xde\x64\x87\x17\xf1\xe8" 16179 "\x54\x31\x85\x37\xed\x6b\x01\x8d" 16180 "\xe3\xcc\xe0\x1d\x5e\xf3\xfe\xf1" 16181 "\x41\xaa\x33\x91\xa7\x7d\x99\x88" 16182 "\x4d\x85\x6e\x2f\xa3\x69\xf5\x82" 16183 "\x3a\x6f\x25\xcb\x7d\x58\x1f\x9b" 16184 "\xaa\x9c\x11\xd5\x76\x67\xce\xde" 16185 "\x56\xd7\x5a\x80\x69\xea\x3a\x02" 16186 "\xf0\xc7\x7c\xe3\xcb\x40\xe5\x52" 16187 "\xd1\x10\x92\x78\x0b\x8e\x5b\xf1" 16188 "\xe3\x26\x1f\xe1\x15\x41\xc7\xba" 16189 "\x99\xdb\x08\x51\x1c\xd3\x01\xf4" 16190 "\x87\x47\x39\xb8\xd2\xdd\xbd\xfb" 16191 "\x66\x13\xdf\x1c\x01\x44\xf0\x7a" 16192 "\x1a\x6b\x13\xf5\xd5\x0b\xb8\xba" 16193 "\x53\xba\xe1\x76\xe3\x82\x07\x86" 16194 "\xa8\x8e\x9c\x74\x8c\x2b\x99\xa0" 16195 "\xc8\x8c\xef\x25\x07\x83\x11\x3a" 16196 "\x31\x8d\xbe\x3b\x6a\xd7\x96\xfe" 16197 "\x5e\x67\xb5\x74\xe7\xe7\x85\x61" 16198 "\x6a\x95\x26\x75\xcc\x53\x89\xf3" 16199 "\x74\xc9\x2a\x76\x20\xa2\x64\x62", 16200 .clen = 128 + 48, 16201 }, 16202 }; 16203 16204 static const struct aead_testvec hmac_sha512_des_cbc_tv_temp[] = { 16205 { /*Generated with cryptopp*/ 16206 #ifdef __LITTLE_ENDIAN 16207 .key = "\x08\x00" /* rta length */ 16208 "\x01\x00" /* rta type */ 16209 #else 16210 .key = "\x00\x08" /* rta length */ 16211 "\x00\x01" /* rta type */ 16212 #endif 16213 "\x00\x00\x00\x08" /* enc key length */ 16214 "\x11\x22\x33\x44\x55\x66\x77\x88" 16215 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 16216 "\x22\x33\x44\x55\x66\x77\x88\x99" 16217 "\xaa\xbb\xcc\xdd\xee\xff\x11\x22" 16218 "\x33\x44\x55\x66\x77\x88\x99\xaa" 16219 "\xbb\xcc\xdd\xee\xff\x11\x22\x33" 16220 "\x44\x55\x66\x77\x88\x99\xaa\xbb" 16221 "\xcc\xdd\xee\xff\x11\x22\x33\x44" 16222 "\xE9\xC0\xFF\x2E\x76\x0B\x64\x24", 16223 .klen = 8 + 64 + 8, 16224 .iv = "\x7D\x33\x88\x93\x0F\x93\xB2\x42", 16225 .assoc = "\x00\x00\x43\x21\x00\x00\x00\x01" 16226 "\x7D\x33\x88\x93\x0F\x93\xB2\x42", 16227 .alen = 16, 16228 .ptext = "\x6f\x54\x20\x6f\x61\x4d\x79\x6e" 16229 "\x53\x20\x63\x65\x65\x72\x73\x74" 16230 "\x54\x20\x6f\x6f\x4d\x20\x6e\x61" 16231 "\x20\x79\x65\x53\x72\x63\x74\x65" 16232 "\x20\x73\x6f\x54\x20\x6f\x61\x4d" 16233 "\x79\x6e\x53\x20\x63\x65\x65\x72" 16234 "\x73\x74\x54\x20\x6f\x6f\x4d\x20" 16235 "\x6e\x61\x20\x79\x65\x53\x72\x63" 16236 "\x74\x65\x20\x73\x6f\x54\x20\x6f" 16237 "\x61\x4d\x79\x6e\x53\x20\x63\x65" 16238 "\x65\x72\x73\x74\x54\x20\x6f\x6f" 16239 "\x4d\x20\x6e\x61\x20\x79\x65\x53" 16240 "\x72\x63\x74\x65\x20\x73\x6f\x54" 16241 "\x20\x6f\x61\x4d\x79\x6e\x53\x20" 16242 "\x63\x65\x65\x72\x73\x74\x54\x20" 16243 "\x6f\x6f\x4d\x20\x6e\x61\x0a\x79", 16244 .plen = 128, 16245 .ctext = "\x70\xd6\xde\x64\x87\x17\xf1\xe8" 16246 "\x54\x31\x85\x37\xed\x6b\x01\x8d" 16247 "\xe3\xcc\xe0\x1d\x5e\xf3\xfe\xf1" 16248 "\x41\xaa\x33\x91\xa7\x7d\x99\x88" 16249 "\x4d\x85\x6e\x2f\xa3\x69\xf5\x82" 16250 "\x3a\x6f\x25\xcb\x7d\x58\x1f\x9b" 16251 "\xaa\x9c\x11\xd5\x76\x67\xce\xde" 16252 "\x56\xd7\x5a\x80\x69\xea\x3a\x02" 16253 "\xf0\xc7\x7c\xe3\xcb\x40\xe5\x52" 16254 "\xd1\x10\x92\x78\x0b\x8e\x5b\xf1" 16255 "\xe3\x26\x1f\xe1\x15\x41\xc7\xba" 16256 "\x99\xdb\x08\x51\x1c\xd3\x01\xf4" 16257 "\x87\x47\x39\xb8\xd2\xdd\xbd\xfb" 16258 "\x66\x13\xdf\x1c\x01\x44\xf0\x7a" 16259 "\x1a\x6b\x13\xf5\xd5\x0b\xb8\xba" 16260 "\x53\xba\xe1\x76\xe3\x82\x07\x86" 16261 "\xc6\x2c\x73\x88\xb0\x9d\x5f\x3e" 16262 "\x5b\x78\xca\x0e\xab\x8a\xa3\xbb" 16263 "\xd9\x1d\xc3\xe3\x05\xac\x76\xfb" 16264 "\x58\x83\xda\x67\xfb\x21\x24\xa2" 16265 "\xb1\xa7\xd7\x66\xa6\x8d\xa6\x93" 16266 "\x97\xe2\xe3\xb8\xaa\x48\x85\xee" 16267 "\x8c\xf6\x07\x95\x1f\xa6\x6c\x96" 16268 "\x99\xc7\x5c\x8d\xd8\xb5\x68\x7b", 16269 .clen = 128 + 64, 16270 }, 16271 }; 16272 16273 static const struct aead_testvec hmac_sha1_des3_ede_cbc_tv_temp[] = { 16274 { /*Generated with cryptopp*/ 16275 #ifdef __LITTLE_ENDIAN 16276 .key = "\x08\x00" /* rta length */ 16277 "\x01\x00" /* rta type */ 16278 #else 16279 .key = "\x00\x08" /* rta length */ 16280 "\x00\x01" /* rta type */ 16281 #endif 16282 "\x00\x00\x00\x18" /* enc key length */ 16283 "\x11\x22\x33\x44\x55\x66\x77\x88" 16284 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 16285 "\x22\x33\x44\x55" 16286 "\xE9\xC0\xFF\x2E\x76\x0B\x64\x24" 16287 "\x44\x4D\x99\x5A\x12\xD6\x40\xC0" 16288 "\xEA\xC2\x84\xE8\x14\x95\xDB\xE8", 16289 .klen = 8 + 20 + 24, 16290 .iv = "\x7D\x33\x88\x93\x0F\x93\xB2\x42", 16291 .assoc = "\x00\x00\x43\x21\x00\x00\x00\x01" 16292 "\x7D\x33\x88\x93\x0F\x93\xB2\x42", 16293 .alen = 16, 16294 .ptext = "\x6f\x54\x20\x6f\x61\x4d\x79\x6e" 16295 "\x53\x20\x63\x65\x65\x72\x73\x74" 16296 "\x54\x20\x6f\x6f\x4d\x20\x6e\x61" 16297 "\x20\x79\x65\x53\x72\x63\x74\x65" 16298 "\x20\x73\x6f\x54\x20\x6f\x61\x4d" 16299 "\x79\x6e\x53\x20\x63\x65\x65\x72" 16300 "\x73\x74\x54\x20\x6f\x6f\x4d\x20" 16301 "\x6e\x61\x20\x79\x65\x53\x72\x63" 16302 "\x74\x65\x20\x73\x6f\x54\x20\x6f" 16303 "\x61\x4d\x79\x6e\x53\x20\x63\x65" 16304 "\x65\x72\x73\x74\x54\x20\x6f\x6f" 16305 "\x4d\x20\x6e\x61\x20\x79\x65\x53" 16306 "\x72\x63\x74\x65\x20\x73\x6f\x54" 16307 "\x20\x6f\x61\x4d\x79\x6e\x53\x20" 16308 "\x63\x65\x65\x72\x73\x74\x54\x20" 16309 "\x6f\x6f\x4d\x20\x6e\x61\x0a\x79", 16310 .plen = 128, 16311 .ctext = "\x0e\x2d\xb6\x97\x3c\x56\x33\xf4" 16312 "\x67\x17\x21\xc7\x6e\x8a\xd5\x49" 16313 "\x74\xb3\x49\x05\xc5\x1c\xd0\xed" 16314 "\x12\x56\x5c\x53\x96\xb6\x00\x7d" 16315 "\x90\x48\xfc\xf5\x8d\x29\x39\xcc" 16316 "\x8a\xd5\x35\x18\x36\x23\x4e\xd7" 16317 "\x76\xd1\xda\x0c\x94\x67\xbb\x04" 16318 "\x8b\xf2\x03\x6c\xa8\xcf\xb6\xea" 16319 "\x22\x64\x47\xaa\x8f\x75\x13\xbf" 16320 "\x9f\xc2\xc3\xf0\xc9\x56\xc5\x7a" 16321 "\x71\x63\x2e\x89\x7b\x1e\x12\xca" 16322 "\xe2\x5f\xaf\xd8\xa4\xf8\xc9\x7a" 16323 "\xd6\xf9\x21\x31\x62\x44\x45\xa6" 16324 "\xd6\xbc\x5a\xd3\x2d\x54\x43\xcc" 16325 "\x9d\xde\xa5\x70\xe9\x42\x45\x8a" 16326 "\x6b\xfa\xb1\x91\x13\xb0\xd9\x19" 16327 "\x67\x6d\xb1\xf5\xb8\x10\xdc\xc6" 16328 "\x75\x86\x96\x6b\xb1\xc5\xe4\xcf" 16329 "\xd1\x60\x91\xb3", 16330 .clen = 128 + 20, 16331 }, 16332 }; 16333 16334 static const struct aead_testvec hmac_sha224_des3_ede_cbc_tv_temp[] = { 16335 { /*Generated with cryptopp*/ 16336 #ifdef __LITTLE_ENDIAN 16337 .key = "\x08\x00" /* rta length */ 16338 "\x01\x00" /* rta type */ 16339 #else 16340 .key = "\x00\x08" /* rta length */ 16341 "\x00\x01" /* rta type */ 16342 #endif 16343 "\x00\x00\x00\x18" /* enc key length */ 16344 "\x11\x22\x33\x44\x55\x66\x77\x88" 16345 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 16346 "\x22\x33\x44\x55\x66\x77\x88\x99" 16347 "\xE9\xC0\xFF\x2E\x76\x0B\x64\x24" 16348 "\x44\x4D\x99\x5A\x12\xD6\x40\xC0" 16349 "\xEA\xC2\x84\xE8\x14\x95\xDB\xE8", 16350 .klen = 8 + 24 + 24, 16351 .iv = "\x7D\x33\x88\x93\x0F\x93\xB2\x42", 16352 .assoc = "\x00\x00\x43\x21\x00\x00\x00\x01" 16353 "\x7D\x33\x88\x93\x0F\x93\xB2\x42", 16354 .alen = 16, 16355 .ptext = "\x6f\x54\x20\x6f\x61\x4d\x79\x6e" 16356 "\x53\x20\x63\x65\x65\x72\x73\x74" 16357 "\x54\x20\x6f\x6f\x4d\x20\x6e\x61" 16358 "\x20\x79\x65\x53\x72\x63\x74\x65" 16359 "\x20\x73\x6f\x54\x20\x6f\x61\x4d" 16360 "\x79\x6e\x53\x20\x63\x65\x65\x72" 16361 "\x73\x74\x54\x20\x6f\x6f\x4d\x20" 16362 "\x6e\x61\x20\x79\x65\x53\x72\x63" 16363 "\x74\x65\x20\x73\x6f\x54\x20\x6f" 16364 "\x61\x4d\x79\x6e\x53\x20\x63\x65" 16365 "\x65\x72\x73\x74\x54\x20\x6f\x6f" 16366 "\x4d\x20\x6e\x61\x20\x79\x65\x53" 16367 "\x72\x63\x74\x65\x20\x73\x6f\x54" 16368 "\x20\x6f\x61\x4d\x79\x6e\x53\x20" 16369 "\x63\x65\x65\x72\x73\x74\x54\x20" 16370 "\x6f\x6f\x4d\x20\x6e\x61\x0a\x79", 16371 .plen = 128, 16372 .ctext = "\x0e\x2d\xb6\x97\x3c\x56\x33\xf4" 16373 "\x67\x17\x21\xc7\x6e\x8a\xd5\x49" 16374 "\x74\xb3\x49\x05\xc5\x1c\xd0\xed" 16375 "\x12\x56\x5c\x53\x96\xb6\x00\x7d" 16376 "\x90\x48\xfc\xf5\x8d\x29\x39\xcc" 16377 "\x8a\xd5\x35\x18\x36\x23\x4e\xd7" 16378 "\x76\xd1\xda\x0c\x94\x67\xbb\x04" 16379 "\x8b\xf2\x03\x6c\xa8\xcf\xb6\xea" 16380 "\x22\x64\x47\xaa\x8f\x75\x13\xbf" 16381 "\x9f\xc2\xc3\xf0\xc9\x56\xc5\x7a" 16382 "\x71\x63\x2e\x89\x7b\x1e\x12\xca" 16383 "\xe2\x5f\xaf\xd8\xa4\xf8\xc9\x7a" 16384 "\xd6\xf9\x21\x31\x62\x44\x45\xa6" 16385 "\xd6\xbc\x5a\xd3\x2d\x54\x43\xcc" 16386 "\x9d\xde\xa5\x70\xe9\x42\x45\x8a" 16387 "\x6b\xfa\xb1\x91\x13\xb0\xd9\x19" 16388 "\x15\x24\x7f\x5a\x45\x4a\x66\xce" 16389 "\x2b\x0b\x93\x99\x2f\x9d\x0c\x6c" 16390 "\x56\x1f\xe1\xa6\x41\xb2\x4c\xd0", 16391 .clen = 128 + 24, 16392 }, 16393 }; 16394 16395 static const struct aead_testvec hmac_sha256_des3_ede_cbc_tv_temp[] = { 16396 { /*Generated with cryptopp*/ 16397 #ifdef __LITTLE_ENDIAN 16398 .key = "\x08\x00" /* rta length */ 16399 "\x01\x00" /* rta type */ 16400 #else 16401 .key = "\x00\x08" /* rta length */ 16402 "\x00\x01" /* rta type */ 16403 #endif 16404 "\x00\x00\x00\x18" /* enc key length */ 16405 "\x11\x22\x33\x44\x55\x66\x77\x88" 16406 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 16407 "\x22\x33\x44\x55\x66\x77\x88\x99" 16408 "\xaa\xbb\xcc\xdd\xee\xff\x11\x22" 16409 "\xE9\xC0\xFF\x2E\x76\x0B\x64\x24" 16410 "\x44\x4D\x99\x5A\x12\xD6\x40\xC0" 16411 "\xEA\xC2\x84\xE8\x14\x95\xDB\xE8", 16412 .klen = 8 + 32 + 24, 16413 .iv = "\x7D\x33\x88\x93\x0F\x93\xB2\x42", 16414 .assoc = "\x00\x00\x43\x21\x00\x00\x00\x01" 16415 "\x7D\x33\x88\x93\x0F\x93\xB2\x42", 16416 .alen = 16, 16417 .ptext = "\x6f\x54\x20\x6f\x61\x4d\x79\x6e" 16418 "\x53\x20\x63\x65\x65\x72\x73\x74" 16419 "\x54\x20\x6f\x6f\x4d\x20\x6e\x61" 16420 "\x20\x79\x65\x53\x72\x63\x74\x65" 16421 "\x20\x73\x6f\x54\x20\x6f\x61\x4d" 16422 "\x79\x6e\x53\x20\x63\x65\x65\x72" 16423 "\x73\x74\x54\x20\x6f\x6f\x4d\x20" 16424 "\x6e\x61\x20\x79\x65\x53\x72\x63" 16425 "\x74\x65\x20\x73\x6f\x54\x20\x6f" 16426 "\x61\x4d\x79\x6e\x53\x20\x63\x65" 16427 "\x65\x72\x73\x74\x54\x20\x6f\x6f" 16428 "\x4d\x20\x6e\x61\x20\x79\x65\x53" 16429 "\x72\x63\x74\x65\x20\x73\x6f\x54" 16430 "\x20\x6f\x61\x4d\x79\x6e\x53\x20" 16431 "\x63\x65\x65\x72\x73\x74\x54\x20" 16432 "\x6f\x6f\x4d\x20\x6e\x61\x0a\x79", 16433 .plen = 128, 16434 .ctext = "\x0e\x2d\xb6\x97\x3c\x56\x33\xf4" 16435 "\x67\x17\x21\xc7\x6e\x8a\xd5\x49" 16436 "\x74\xb3\x49\x05\xc5\x1c\xd0\xed" 16437 "\x12\x56\x5c\x53\x96\xb6\x00\x7d" 16438 "\x90\x48\xfc\xf5\x8d\x29\x39\xcc" 16439 "\x8a\xd5\x35\x18\x36\x23\x4e\xd7" 16440 "\x76\xd1\xda\x0c\x94\x67\xbb\x04" 16441 "\x8b\xf2\x03\x6c\xa8\xcf\xb6\xea" 16442 "\x22\x64\x47\xaa\x8f\x75\x13\xbf" 16443 "\x9f\xc2\xc3\xf0\xc9\x56\xc5\x7a" 16444 "\x71\x63\x2e\x89\x7b\x1e\x12\xca" 16445 "\xe2\x5f\xaf\xd8\xa4\xf8\xc9\x7a" 16446 "\xd6\xf9\x21\x31\x62\x44\x45\xa6" 16447 "\xd6\xbc\x5a\xd3\x2d\x54\x43\xcc" 16448 "\x9d\xde\xa5\x70\xe9\x42\x45\x8a" 16449 "\x6b\xfa\xb1\x91\x13\xb0\xd9\x19" 16450 "\x73\xb0\xea\x9f\xe8\x18\x80\xd6" 16451 "\x56\x38\x44\xc0\xdb\xe3\x4f\x71" 16452 "\xf7\xce\xd1\xd3\xf8\xbd\x3e\x4f" 16453 "\xca\x43\x95\xdf\x80\x61\x81\xa9", 16454 .clen = 128 + 32, 16455 }, 16456 }; 16457 16458 static const struct aead_testvec hmac_sha384_des3_ede_cbc_tv_temp[] = { 16459 { /*Generated with cryptopp*/ 16460 #ifdef __LITTLE_ENDIAN 16461 .key = "\x08\x00" /* rta length */ 16462 "\x01\x00" /* rta type */ 16463 #else 16464 .key = "\x00\x08" /* rta length */ 16465 "\x00\x01" /* rta type */ 16466 #endif 16467 "\x00\x00\x00\x18" /* enc key length */ 16468 "\x11\x22\x33\x44\x55\x66\x77\x88" 16469 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 16470 "\x22\x33\x44\x55\x66\x77\x88\x99" 16471 "\xaa\xbb\xcc\xdd\xee\xff\x11\x22" 16472 "\x33\x44\x55\x66\x77\x88\x99\xaa" 16473 "\xbb\xcc\xdd\xee\xff\x11\x22\x33" 16474 "\xE9\xC0\xFF\x2E\x76\x0B\x64\x24" 16475 "\x44\x4D\x99\x5A\x12\xD6\x40\xC0" 16476 "\xEA\xC2\x84\xE8\x14\x95\xDB\xE8", 16477 .klen = 8 + 48 + 24, 16478 .iv = "\x7D\x33\x88\x93\x0F\x93\xB2\x42", 16479 .assoc = "\x00\x00\x43\x21\x00\x00\x00\x01" 16480 "\x7D\x33\x88\x93\x0F\x93\xB2\x42", 16481 .alen = 16, 16482 .ptext = "\x6f\x54\x20\x6f\x61\x4d\x79\x6e" 16483 "\x53\x20\x63\x65\x65\x72\x73\x74" 16484 "\x54\x20\x6f\x6f\x4d\x20\x6e\x61" 16485 "\x20\x79\x65\x53\x72\x63\x74\x65" 16486 "\x20\x73\x6f\x54\x20\x6f\x61\x4d" 16487 "\x79\x6e\x53\x20\x63\x65\x65\x72" 16488 "\x73\x74\x54\x20\x6f\x6f\x4d\x20" 16489 "\x6e\x61\x20\x79\x65\x53\x72\x63" 16490 "\x74\x65\x20\x73\x6f\x54\x20\x6f" 16491 "\x61\x4d\x79\x6e\x53\x20\x63\x65" 16492 "\x65\x72\x73\x74\x54\x20\x6f\x6f" 16493 "\x4d\x20\x6e\x61\x20\x79\x65\x53" 16494 "\x72\x63\x74\x65\x20\x73\x6f\x54" 16495 "\x20\x6f\x61\x4d\x79\x6e\x53\x20" 16496 "\x63\x65\x65\x72\x73\x74\x54\x20" 16497 "\x6f\x6f\x4d\x20\x6e\x61\x0a\x79", 16498 .plen = 128, 16499 .ctext = "\x0e\x2d\xb6\x97\x3c\x56\x33\xf4" 16500 "\x67\x17\x21\xc7\x6e\x8a\xd5\x49" 16501 "\x74\xb3\x49\x05\xc5\x1c\xd0\xed" 16502 "\x12\x56\x5c\x53\x96\xb6\x00\x7d" 16503 "\x90\x48\xfc\xf5\x8d\x29\x39\xcc" 16504 "\x8a\xd5\x35\x18\x36\x23\x4e\xd7" 16505 "\x76\xd1\xda\x0c\x94\x67\xbb\x04" 16506 "\x8b\xf2\x03\x6c\xa8\xcf\xb6\xea" 16507 "\x22\x64\x47\xaa\x8f\x75\x13\xbf" 16508 "\x9f\xc2\xc3\xf0\xc9\x56\xc5\x7a" 16509 "\x71\x63\x2e\x89\x7b\x1e\x12\xca" 16510 "\xe2\x5f\xaf\xd8\xa4\xf8\xc9\x7a" 16511 "\xd6\xf9\x21\x31\x62\x44\x45\xa6" 16512 "\xd6\xbc\x5a\xd3\x2d\x54\x43\xcc" 16513 "\x9d\xde\xa5\x70\xe9\x42\x45\x8a" 16514 "\x6b\xfa\xb1\x91\x13\xb0\xd9\x19" 16515 "\x6d\x77\xfc\x80\x9d\x8a\x9c\xb7" 16516 "\x70\xe7\x93\xbf\x73\xe6\x9f\x83" 16517 "\x99\x62\x23\xe6\x5b\xd0\xda\x18" 16518 "\xa4\x32\x8a\x0b\x46\xd7\xf0\x39" 16519 "\x36\x5d\x13\x2f\x86\x10\x78\xd6" 16520 "\xd6\xbe\x5c\xb9\x15\x89\xf9\x1b", 16521 .clen = 128 + 48, 16522 }, 16523 }; 16524 16525 static const struct aead_testvec hmac_sha512_des3_ede_cbc_tv_temp[] = { 16526 { /*Generated with cryptopp*/ 16527 #ifdef __LITTLE_ENDIAN 16528 .key = "\x08\x00" /* rta length */ 16529 "\x01\x00" /* rta type */ 16530 #else 16531 .key = "\x00\x08" /* rta length */ 16532 "\x00\x01" /* rta type */ 16533 #endif 16534 "\x00\x00\x00\x18" /* enc key length */ 16535 "\x11\x22\x33\x44\x55\x66\x77\x88" 16536 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 16537 "\x22\x33\x44\x55\x66\x77\x88\x99" 16538 "\xaa\xbb\xcc\xdd\xee\xff\x11\x22" 16539 "\x33\x44\x55\x66\x77\x88\x99\xaa" 16540 "\xbb\xcc\xdd\xee\xff\x11\x22\x33" 16541 "\x44\x55\x66\x77\x88\x99\xaa\xbb" 16542 "\xcc\xdd\xee\xff\x11\x22\x33\x44" 16543 "\xE9\xC0\xFF\x2E\x76\x0B\x64\x24" 16544 "\x44\x4D\x99\x5A\x12\xD6\x40\xC0" 16545 "\xEA\xC2\x84\xE8\x14\x95\xDB\xE8", 16546 .klen = 8 + 64 + 24, 16547 .iv = "\x7D\x33\x88\x93\x0F\x93\xB2\x42", 16548 .assoc = "\x00\x00\x43\x21\x00\x00\x00\x01" 16549 "\x7D\x33\x88\x93\x0F\x93\xB2\x42", 16550 .alen = 16, 16551 .ptext = "\x6f\x54\x20\x6f\x61\x4d\x79\x6e" 16552 "\x53\x20\x63\x65\x65\x72\x73\x74" 16553 "\x54\x20\x6f\x6f\x4d\x20\x6e\x61" 16554 "\x20\x79\x65\x53\x72\x63\x74\x65" 16555 "\x20\x73\x6f\x54\x20\x6f\x61\x4d" 16556 "\x79\x6e\x53\x20\x63\x65\x65\x72" 16557 "\x73\x74\x54\x20\x6f\x6f\x4d\x20" 16558 "\x6e\x61\x20\x79\x65\x53\x72\x63" 16559 "\x74\x65\x20\x73\x6f\x54\x20\x6f" 16560 "\x61\x4d\x79\x6e\x53\x20\x63\x65" 16561 "\x65\x72\x73\x74\x54\x20\x6f\x6f" 16562 "\x4d\x20\x6e\x61\x20\x79\x65\x53" 16563 "\x72\x63\x74\x65\x20\x73\x6f\x54" 16564 "\x20\x6f\x61\x4d\x79\x6e\x53\x20" 16565 "\x63\x65\x65\x72\x73\x74\x54\x20" 16566 "\x6f\x6f\x4d\x20\x6e\x61\x0a\x79", 16567 .plen = 128, 16568 .ctext = "\x0e\x2d\xb6\x97\x3c\x56\x33\xf4" 16569 "\x67\x17\x21\xc7\x6e\x8a\xd5\x49" 16570 "\x74\xb3\x49\x05\xc5\x1c\xd0\xed" 16571 "\x12\x56\x5c\x53\x96\xb6\x00\x7d" 16572 "\x90\x48\xfc\xf5\x8d\x29\x39\xcc" 16573 "\x8a\xd5\x35\x18\x36\x23\x4e\xd7" 16574 "\x76\xd1\xda\x0c\x94\x67\xbb\x04" 16575 "\x8b\xf2\x03\x6c\xa8\xcf\xb6\xea" 16576 "\x22\x64\x47\xaa\x8f\x75\x13\xbf" 16577 "\x9f\xc2\xc3\xf0\xc9\x56\xc5\x7a" 16578 "\x71\x63\x2e\x89\x7b\x1e\x12\xca" 16579 "\xe2\x5f\xaf\xd8\xa4\xf8\xc9\x7a" 16580 "\xd6\xf9\x21\x31\x62\x44\x45\xa6" 16581 "\xd6\xbc\x5a\xd3\x2d\x54\x43\xcc" 16582 "\x9d\xde\xa5\x70\xe9\x42\x45\x8a" 16583 "\x6b\xfa\xb1\x91\x13\xb0\xd9\x19" 16584 "\x41\xb5\x1f\xbb\xbd\x4e\xb8\x32" 16585 "\x22\x86\x4e\x57\x1b\x2a\xd8\x6e" 16586 "\xa9\xfb\xc8\xf3\xbf\x2d\xae\x2b" 16587 "\x3b\xbc\x41\xe8\x38\xbb\xf1\x60" 16588 "\x4c\x68\xa9\x4e\x8c\x73\xa7\xc0" 16589 "\x2a\x74\xd4\x65\x12\xcb\x55\xf2" 16590 "\xd5\x02\x6d\xe6\xaf\xc9\x2f\xf2" 16591 "\x57\xaa\x85\xf7\xf3\x6a\xcb\xdb", 16592 .clen = 128 + 64, 16593 }, 16594 }; 16595 16596 static const struct cipher_testvec aes_lrw_tv_template[] = { 16597 /* from http://grouper.ieee.org/groups/1619/email/pdf00017.pdf */ 16598 { /* LRW-32-AES 1 */ 16599 .key = "\x45\x62\xac\x25\xf8\x28\x17\x6d" 16600 "\x4c\x26\x84\x14\xb5\x68\x01\x85" 16601 "\x25\x8e\x2a\x05\xe7\x3e\x9d\x03" 16602 "\xee\x5a\x83\x0c\xcc\x09\x4c\x87", 16603 .klen = 32, 16604 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 16605 "\x00\x00\x00\x00\x00\x00\x00\x01", 16606 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 16607 "\x38\x39\x41\x42\x43\x44\x45\x46", 16608 .ctext = "\xf1\xb2\x73\xcd\x65\xa3\xdf\x5f" 16609 "\xe9\x5d\x48\x92\x54\x63\x4e\xb8", 16610 .len = 16, 16611 }, { /* LRW-32-AES 2 */ 16612 .key = "\x59\x70\x47\x14\xf5\x57\x47\x8c" 16613 "\xd7\x79\xe8\x0f\x54\x88\x79\x44" 16614 "\x0d\x48\xf0\xb7\xb1\x5a\x53\xea" 16615 "\x1c\xaa\x6b\x29\xc2\xca\xfb\xaf", 16616 .klen = 32, 16617 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 16618 "\x00\x00\x00\x00\x00\x00\x00\x02", 16619 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 16620 "\x38\x39\x41\x42\x43\x44\x45\x46", 16621 .ctext = "\x00\xc8\x2b\xae\x95\xbb\xcd\xe5" 16622 "\x27\x4f\x07\x69\xb2\x60\xe1\x36", 16623 .len = 16, 16624 }, { /* LRW-32-AES 3 */ 16625 .key = "\xd8\x2a\x91\x34\xb2\x6a\x56\x50" 16626 "\x30\xfe\x69\xe2\x37\x7f\x98\x47" 16627 "\xcd\xf9\x0b\x16\x0c\x64\x8f\xb6" 16628 "\xb0\x0d\x0d\x1b\xae\x85\x87\x1f", 16629 .klen = 32, 16630 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 16631 "\x00\x00\x00\x02\x00\x00\x00\x00", 16632 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 16633 "\x38\x39\x41\x42\x43\x44\x45\x46", 16634 .ctext = "\x76\x32\x21\x83\xed\x8f\xf1\x82" 16635 "\xf9\x59\x62\x03\x69\x0e\x5e\x01", 16636 .len = 16, 16637 }, { /* LRW-32-AES 4 */ 16638 .key = "\x0f\x6a\xef\xf8\xd3\xd2\xbb\x15" 16639 "\x25\x83\xf7\x3c\x1f\x01\x28\x74" 16640 "\xca\xc6\xbc\x35\x4d\x4a\x65\x54" 16641 "\x90\xae\x61\xcf\x7b\xae\xbd\xcc" 16642 "\xad\xe4\x94\xc5\x4a\x29\xae\x70", 16643 .klen = 40, 16644 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 16645 "\x00\x00\x00\x00\x00\x00\x00\x01", 16646 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 16647 "\x38\x39\x41\x42\x43\x44\x45\x46", 16648 .ctext = "\x9c\x0f\x15\x2f\x55\xa2\xd8\xf0" 16649 "\xd6\x7b\x8f\x9e\x28\x22\xbc\x41", 16650 .len = 16, 16651 }, { /* LRW-32-AES 5 */ 16652 .key = "\x8a\xd4\xee\x10\x2f\xbd\x81\xff" 16653 "\xf8\x86\xce\xac\x93\xc5\xad\xc6" 16654 "\xa0\x19\x07\xc0\x9d\xf7\xbb\xdd" 16655 "\x52\x13\xb2\xb7\xf0\xff\x11\xd8" 16656 "\xd6\x08\xd0\xcd\x2e\xb1\x17\x6f", 16657 .klen = 40, 16658 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 16659 "\x00\x00\x00\x02\x00\x00\x00\x00", 16660 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 16661 "\x38\x39\x41\x42\x43\x44\x45\x46", 16662 .ctext = "\xd4\x27\x6a\x7f\x14\x91\x3d\x65" 16663 "\xc8\x60\x48\x02\x87\xe3\x34\x06", 16664 .len = 16, 16665 }, { /* LRW-32-AES 6 */ 16666 .key = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c" 16667 "\x23\x84\xcb\x1c\x77\xd6\x19\x5d" 16668 "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21" 16669 "\xa7\x9c\x21\xf8\xcb\x90\x02\x89" 16670 "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1" 16671 "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e", 16672 .klen = 48, 16673 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 16674 "\x00\x00\x00\x00\x00\x00\x00\x01", 16675 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 16676 "\x38\x39\x41\x42\x43\x44\x45\x46", 16677 .ctext = "\xbd\x06\xb8\xe1\xdb\x98\x89\x9e" 16678 "\xc4\x98\xe4\x91\xcf\x1c\x70\x2b", 16679 .len = 16, 16680 }, { /* LRW-32-AES 7 */ 16681 .key = "\xfb\x76\x15\xb2\x3d\x80\x89\x1d" 16682 "\xd4\x70\x98\x0b\xc7\x95\x84\xc8" 16683 "\xb2\xfb\x64\xce\x60\x97\x87\x8d" 16684 "\x17\xfc\xe4\x5a\x49\xe8\x30\xb7" 16685 "\x6e\x78\x17\xe7\x2d\x5e\x12\xd4" 16686 "\x60\x64\x04\x7a\xf1\x2f\x9e\x0c", 16687 .klen = 48, 16688 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 16689 "\x00\x00\x00\x02\x00\x00\x00\x00", 16690 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 16691 "\x38\x39\x41\x42\x43\x44\x45\x46", 16692 .ctext = "\x5b\x90\x8e\xc1\xab\xdd\x67\x5f" 16693 "\x3d\x69\x8a\x95\x53\xc8\x9c\xe5", 16694 .len = 16, 16695 }, { /* Test counter wrap-around, modified from LRW-32-AES 1 */ 16696 .key = "\x45\x62\xac\x25\xf8\x28\x17\x6d" 16697 "\x4c\x26\x84\x14\xb5\x68\x01\x85" 16698 "\x25\x8e\x2a\x05\xe7\x3e\x9d\x03" 16699 "\xee\x5a\x83\x0c\xcc\x09\x4c\x87", 16700 .klen = 32, 16701 .iv = "\xff\xff\xff\xff\xff\xff\xff\xff" 16702 "\xff\xff\xff\xff\xff\xff\xff\xff", 16703 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 16704 "\x38\x39\x41\x42\x43\x44\x45\x46" 16705 "\x30\x31\x32\x33\x34\x35\x36\x37" 16706 "\x38\x39\x41\x42\x43\x44\x45\x46" 16707 "\x30\x31\x32\x33\x34\x35\x36\x37" 16708 "\x38\x39\x41\x42\x43\x44\x45\x46", 16709 .ctext = "\x47\x90\x50\xf6\xf4\x8d\x5c\x7f" 16710 "\x84\xc7\x83\x95\x2d\xa2\x02\xc0" 16711 "\xda\x7f\xa3\xc0\x88\x2a\x0a\x50" 16712 "\xfb\xc1\x78\x03\x39\xfe\x1d\xe5" 16713 "\xf1\xb2\x73\xcd\x65\xa3\xdf\x5f" 16714 "\xe9\x5d\x48\x92\x54\x63\x4e\xb8", 16715 .len = 48, 16716 }, { 16717 /* http://www.mail-archive.com/stds-p1619@listserv.ieee.org/msg00173.html */ 16718 .key = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c" 16719 "\x23\x84\xcb\x1c\x77\xd6\x19\x5d" 16720 "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21" 16721 "\xa7\x9c\x21\xf8\xcb\x90\x02\x89" 16722 "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1" 16723 "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e", 16724 .klen = 48, 16725 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 16726 "\x00\x00\x00\x00\x00\x00\x00\x01", 16727 .ptext = "\x05\x11\xb7\x18\xab\xc6\x2d\xac" 16728 "\x70\x5d\xf6\x22\x94\xcd\xe5\x6c" 16729 "\x17\x6b\xf6\x1c\xf0\xf3\x6e\xf8" 16730 "\x50\x38\x1f\x71\x49\xb6\x57\xd6" 16731 "\x8f\xcb\x8d\x6b\xe3\xa6\x29\x90" 16732 "\xfe\x2a\x62\x82\xae\x6d\x8b\xf6" 16733 "\xad\x1e\x9e\x20\x5f\x38\xbe\x04" 16734 "\xda\x10\x8e\xed\xa2\xa4\x87\xab" 16735 "\xda\x6b\xb4\x0c\x75\xba\xd3\x7c" 16736 "\xc9\xac\x42\x31\x95\x7c\xc9\x04" 16737 "\xeb\xd5\x6e\x32\x69\x8a\xdb\xa6" 16738 "\x15\xd7\x3f\x4f\x2f\x66\x69\x03" 16739 "\x9c\x1f\x54\x0f\xde\x1f\xf3\x65" 16740 "\x4c\x96\x12\xed\x7c\x92\x03\x01" 16741 "\x6f\xbc\x35\x93\xac\xf1\x27\xf1" 16742 "\xb4\x96\x82\x5a\x5f\xb0\xa0\x50" 16743 "\x89\xa4\x8e\x66\x44\x85\xcc\xfd" 16744 "\x33\x14\x70\xe3\x96\xb2\xc3\xd3" 16745 "\xbb\x54\x5a\x1a\xf9\x74\xa2\xc5" 16746 "\x2d\x64\x75\xdd\xb4\x54\xe6\x74" 16747 "\x8c\xd3\x9d\x9e\x86\xab\x51\x53" 16748 "\xb7\x93\x3e\x6f\xd0\x4e\x2c\x40" 16749 "\xf6\xa8\x2e\x3e\x9d\xf4\x66\xa5" 16750 "\x76\x12\x73\x44\x1a\x56\xd7\x72" 16751 "\x88\xcd\x21\x8c\x4c\x0f\xfe\xda" 16752 "\x95\xe0\x3a\xa6\xa5\x84\x46\xcd" 16753 "\xd5\x3e\x9d\x3a\xe2\x67\xe6\x60" 16754 "\x1a\xe2\x70\x85\x58\xc2\x1b\x09" 16755 "\xe1\xd7\x2c\xca\xad\xa8\x8f\xf9" 16756 "\xac\xb3\x0e\xdb\xca\x2e\xe2\xb8" 16757 "\x51\x71\xd9\x3c\x6c\xf1\x56\xf8" 16758 "\xea\x9c\xf1\xfb\x0c\xe6\xb7\x10" 16759 "\x1c\xf8\xa9\x7c\xe8\x53\x35\xc1" 16760 "\x90\x3e\x76\x4a\x74\xa4\x21\x2c" 16761 "\xf6\x2c\x4e\x0f\x94\x3a\x88\x2e" 16762 "\x41\x09\x6a\x33\x7d\xf6\xdd\x3f" 16763 "\x8d\x23\x31\x74\x84\xeb\x88\x6e" 16764 "\xcc\xb9\xbc\x22\x83\x19\x07\x22" 16765 "\xa5\x2d\xdf\xa5\xf3\x80\x85\x78" 16766 "\x84\x39\x6a\x6d\x6a\x99\x4f\xa5" 16767 "\x15\xfe\x46\xb0\xe4\x6c\xa5\x41" 16768 "\x3c\xce\x8f\x42\x60\x71\xa7\x75" 16769 "\x08\x40\x65\x8a\x82\xbf\xf5\x43" 16770 "\x71\x96\xa9\x4d\x44\x8a\x20\xbe" 16771 "\xfa\x4d\xbb\xc0\x7d\x31\x96\x65" 16772 "\xe7\x75\xe5\x3e\xfd\x92\x3b\xc9" 16773 "\x55\xbb\x16\x7e\xf7\xc2\x8c\xa4" 16774 "\x40\x1d\xe5\xef\x0e\xdf\xe4\x9a" 16775 "\x62\x73\x65\xfd\x46\x63\x25\x3d" 16776 "\x2b\xaf\xe5\x64\xfe\xa5\x5c\xcf" 16777 "\x24\xf3\xb4\xac\x64\xba\xdf\x4b" 16778 "\xc6\x96\x7d\x81\x2d\x8d\x97\xf7" 16779 "\xc5\x68\x77\x84\x32\x2b\xcc\x85" 16780 "\x74\x96\xf0\x12\x77\x61\xb9\xeb" 16781 "\x71\xaa\x82\xcb\x1c\xdb\x89\xc8" 16782 "\xc6\xb5\xe3\x5c\x7d\x39\x07\x24" 16783 "\xda\x39\x87\x45\xc0\x2b\xbb\x01" 16784 "\xac\xbc\x2a\x5c\x7f\xfc\xe8\xce" 16785 "\x6d\x9c\x6f\xed\xd3\xc1\xa1\xd6" 16786 "\xc5\x55\xa9\x66\x2f\xe1\xc8\x32" 16787 "\xa6\x5d\xa4\x3a\x98\x73\xe8\x45" 16788 "\xa4\xc7\xa8\xb4\xf6\x13\x03\xf6" 16789 "\xe9\x2e\xc4\x29\x0f\x84\xdb\xc4" 16790 "\x21\xc4\xc2\x75\x67\x89\x37\x0a", 16791 .ctext = "\x1a\x1d\xa9\x30\xad\xf9\x2f\x9b" 16792 "\xb6\x1d\xae\xef\xf0\x2f\xf8\x5a" 16793 "\x39\x3c\xbf\x2a\xb2\x45\xb2\x23" 16794 "\x1b\x63\x3c\xcf\xaa\xbe\xcf\x4e" 16795 "\xfa\xe8\x29\xc2\x20\x68\x2b\x3c" 16796 "\x2e\x8b\xf7\x6e\x25\xbd\xe3\x3d" 16797 "\x66\x27\xd6\xaf\xd6\x64\x3e\xe3" 16798 "\xe8\x58\x46\x97\x39\x51\x07\xde" 16799 "\xcb\x37\xbc\xa9\xc0\x5f\x75\xc3" 16800 "\x0e\x84\x23\x1d\x16\xd4\x1c\x59" 16801 "\x9c\x1a\x02\x55\xab\x3a\x97\x1d" 16802 "\xdf\xdd\xc7\x06\x51\xd7\x70\xae" 16803 "\x23\xc6\x8c\xf5\x1e\xa0\xe5\x82" 16804 "\xb8\xb2\xbf\x04\xa0\x32\x8e\x68" 16805 "\xeb\xaf\x6e\x2d\x94\x22\x2f\xce" 16806 "\x4c\xb5\x59\xe2\xa2\x2f\xa0\x98" 16807 "\x1a\x97\xc6\xd4\xb5\x00\x59\xf2" 16808 "\x84\x14\x72\xb1\x9a\x6e\xa3\x7f" 16809 "\xea\x20\xe7\xcb\x65\x77\x3a\xdf" 16810 "\xc8\x97\x67\x15\xc2\x2a\x27\xcc" 16811 "\x18\x55\xa1\x24\x0b\x24\x24\xaf" 16812 "\x5b\xec\x68\xb8\xc8\xf5\xba\x63" 16813 "\xff\xed\x89\xce\xd5\x3d\x88\xf3" 16814 "\x25\xef\x05\x7c\x3a\xef\xeb\xd8" 16815 "\x7a\x32\x0d\xd1\x1e\x58\x59\x99" 16816 "\x90\x25\xb5\x26\xb0\xe3\x2b\x6c" 16817 "\x4c\xa9\x8b\x84\x4f\x5e\x01\x50" 16818 "\x41\x30\x58\xc5\x62\x74\x52\x1d" 16819 "\x45\x24\x6a\x42\x64\x4f\x97\x1c" 16820 "\xa8\x66\xb5\x6d\x79\xd4\x0d\x48" 16821 "\xc5\x5f\xf3\x90\x32\xdd\xdd\xe1" 16822 "\xe4\xa9\x9f\xfc\xc3\x52\x5a\x46" 16823 "\xe4\x81\x84\x95\x36\x59\x7a\x6b" 16824 "\xaa\xb3\x60\xad\xce\x9f\x9f\x28" 16825 "\xe0\x01\x75\x22\xc4\x4e\xa9\x62" 16826 "\x5c\x62\x0d\x00\xcb\x13\xe8\x43" 16827 "\x72\xd4\x2d\x53\x46\xb5\xd1\x16" 16828 "\x22\x18\xdf\x34\x33\xf5\xd6\x1c" 16829 "\xb8\x79\x78\x97\x94\xff\x72\x13" 16830 "\x4c\x27\xfc\xcb\xbf\x01\x53\xa6" 16831 "\xb4\x50\x6e\xde\xdf\xb5\x43\xa4" 16832 "\x59\xdf\x52\xf9\x7c\xe0\x11\x6f" 16833 "\x2d\x14\x8e\x24\x61\x2c\xe1\x17" 16834 "\xcc\xce\x51\x0c\x19\x8a\x82\x30" 16835 "\x94\xd5\x3d\x6a\x53\x06\x5e\xbd" 16836 "\xb7\xeb\xfa\xfd\x27\x51\xde\x85" 16837 "\x1e\x86\x53\x11\x53\x94\x00\xee" 16838 "\x2b\x8c\x08\x2a\xbf\xdd\xae\x11" 16839 "\xcb\x1e\xa2\x07\x9a\x80\xcf\x62" 16840 "\x9b\x09\xdc\x95\x3c\x96\x8e\xb1" 16841 "\x09\xbd\xe4\xeb\xdb\xca\x70\x7a" 16842 "\x9e\xfa\x31\x18\x45\x3c\x21\x33" 16843 "\xb0\xb3\x2b\xea\xf3\x71\x2d\xe1" 16844 "\x03\xad\x1b\x48\xd4\x67\x27\xf0" 16845 "\x62\xe4\x3d\xfb\x9b\x08\x76\xe7" 16846 "\xdd\x2b\x01\x39\x04\x5a\x58\x7a" 16847 "\xf7\x11\x90\xec\xbd\x51\x5c\x32" 16848 "\x6b\xd7\x35\x39\x02\x6b\xf2\xa6" 16849 "\xd0\x0d\x07\xe1\x06\xc4\x5b\x7d" 16850 "\xe4\x6a\xd7\xee\x15\x1f\x83\xb4" 16851 "\xa3\xa7\x5e\xc3\x90\xb7\xef\xd3" 16852 "\xb7\x4f\xf8\x92\x4c\xb7\x3c\x29" 16853 "\xcd\x7e\x2b\x5d\x43\xea\x42\xe7" 16854 "\x74\x3f\x7d\x58\x88\x75\xde\x3e", 16855 .len = 512, 16856 } 16857 }; 16858 16859 static const struct cipher_testvec aes_xts_tv_template[] = { 16860 /* http://grouper.ieee.org/groups/1619/email/pdf00086.pdf */ 16861 { /* XTS-AES 1 */ 16862 .key = "\x00\x00\x00\x00\x00\x00\x00\x00" 16863 "\x00\x00\x00\x00\x00\x00\x00\x00" 16864 "\x00\x00\x00\x00\x00\x00\x00\x00" 16865 "\x00\x00\x00\x00\x00\x00\x00\x00", 16866 .klen = 32, 16867 .fips_skip = 1, 16868 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 16869 "\x00\x00\x00\x00\x00\x00\x00\x00", 16870 .ptext = "\x00\x00\x00\x00\x00\x00\x00\x00" 16871 "\x00\x00\x00\x00\x00\x00\x00\x00" 16872 "\x00\x00\x00\x00\x00\x00\x00\x00" 16873 "\x00\x00\x00\x00\x00\x00\x00\x00", 16874 .ctext = "\x91\x7c\xf6\x9e\xbd\x68\xb2\xec" 16875 "\x9b\x9f\xe9\xa3\xea\xdd\xa6\x92" 16876 "\xcd\x43\xd2\xf5\x95\x98\xed\x85" 16877 "\x8c\x02\xc2\x65\x2f\xbf\x92\x2e", 16878 .len = 32, 16879 }, { /* XTS-AES 2 */ 16880 .key = "\x11\x11\x11\x11\x11\x11\x11\x11" 16881 "\x11\x11\x11\x11\x11\x11\x11\x11" 16882 "\x22\x22\x22\x22\x22\x22\x22\x22" 16883 "\x22\x22\x22\x22\x22\x22\x22\x22", 16884 .klen = 32, 16885 .iv = "\x33\x33\x33\x33\x33\x00\x00\x00" 16886 "\x00\x00\x00\x00\x00\x00\x00\x00", 16887 .ptext = "\x44\x44\x44\x44\x44\x44\x44\x44" 16888 "\x44\x44\x44\x44\x44\x44\x44\x44" 16889 "\x44\x44\x44\x44\x44\x44\x44\x44" 16890 "\x44\x44\x44\x44\x44\x44\x44\x44", 16891 .ctext = "\xc4\x54\x18\x5e\x6a\x16\x93\x6e" 16892 "\x39\x33\x40\x38\xac\xef\x83\x8b" 16893 "\xfb\x18\x6f\xff\x74\x80\xad\xc4" 16894 "\x28\x93\x82\xec\xd6\xd3\x94\xf0", 16895 .len = 32, 16896 }, { /* XTS-AES 3 */ 16897 .key = "\xff\xfe\xfd\xfc\xfb\xfa\xf9\xf8" 16898 "\xf7\xf6\xf5\xf4\xf3\xf2\xf1\xf0" 16899 "\x22\x22\x22\x22\x22\x22\x22\x22" 16900 "\x22\x22\x22\x22\x22\x22\x22\x22", 16901 .klen = 32, 16902 .iv = "\x33\x33\x33\x33\x33\x00\x00\x00" 16903 "\x00\x00\x00\x00\x00\x00\x00\x00", 16904 .ptext = "\x44\x44\x44\x44\x44\x44\x44\x44" 16905 "\x44\x44\x44\x44\x44\x44\x44\x44" 16906 "\x44\x44\x44\x44\x44\x44\x44\x44" 16907 "\x44\x44\x44\x44\x44\x44\x44\x44", 16908 .ctext = "\xaf\x85\x33\x6b\x59\x7a\xfc\x1a" 16909 "\x90\x0b\x2e\xb2\x1e\xc9\x49\xd2" 16910 "\x92\xdf\x4c\x04\x7e\x0b\x21\x53" 16911 "\x21\x86\xa5\x97\x1a\x22\x7a\x89", 16912 .len = 32, 16913 }, { /* XTS-AES 4 */ 16914 .key = "\x27\x18\x28\x18\x28\x45\x90\x45" 16915 "\x23\x53\x60\x28\x74\x71\x35\x26" 16916 "\x31\x41\x59\x26\x53\x58\x97\x93" 16917 "\x23\x84\x62\x64\x33\x83\x27\x95", 16918 .klen = 32, 16919 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 16920 "\x00\x00\x00\x00\x00\x00\x00\x00", 16921 .ptext = "\x00\x01\x02\x03\x04\x05\x06\x07" 16922 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 16923 "\x10\x11\x12\x13\x14\x15\x16\x17" 16924 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 16925 "\x20\x21\x22\x23\x24\x25\x26\x27" 16926 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 16927 "\x30\x31\x32\x33\x34\x35\x36\x37" 16928 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 16929 "\x40\x41\x42\x43\x44\x45\x46\x47" 16930 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 16931 "\x50\x51\x52\x53\x54\x55\x56\x57" 16932 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 16933 "\x60\x61\x62\x63\x64\x65\x66\x67" 16934 "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 16935 "\x70\x71\x72\x73\x74\x75\x76\x77" 16936 "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 16937 "\x80\x81\x82\x83\x84\x85\x86\x87" 16938 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 16939 "\x90\x91\x92\x93\x94\x95\x96\x97" 16940 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 16941 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 16942 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 16943 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 16944 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 16945 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 16946 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 16947 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 16948 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 16949 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 16950 "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 16951 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 16952 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff" 16953 "\x00\x01\x02\x03\x04\x05\x06\x07" 16954 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 16955 "\x10\x11\x12\x13\x14\x15\x16\x17" 16956 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 16957 "\x20\x21\x22\x23\x24\x25\x26\x27" 16958 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 16959 "\x30\x31\x32\x33\x34\x35\x36\x37" 16960 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 16961 "\x40\x41\x42\x43\x44\x45\x46\x47" 16962 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 16963 "\x50\x51\x52\x53\x54\x55\x56\x57" 16964 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 16965 "\x60\x61\x62\x63\x64\x65\x66\x67" 16966 "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 16967 "\x70\x71\x72\x73\x74\x75\x76\x77" 16968 "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 16969 "\x80\x81\x82\x83\x84\x85\x86\x87" 16970 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 16971 "\x90\x91\x92\x93\x94\x95\x96\x97" 16972 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 16973 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 16974 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 16975 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 16976 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 16977 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 16978 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 16979 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 16980 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 16981 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 16982 "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 16983 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 16984 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff", 16985 .ctext = "\x27\xa7\x47\x9b\xef\xa1\xd4\x76" 16986 "\x48\x9f\x30\x8c\xd4\xcf\xa6\xe2" 16987 "\xa9\x6e\x4b\xbe\x32\x08\xff\x25" 16988 "\x28\x7d\xd3\x81\x96\x16\xe8\x9c" 16989 "\xc7\x8c\xf7\xf5\xe5\x43\x44\x5f" 16990 "\x83\x33\xd8\xfa\x7f\x56\x00\x00" 16991 "\x05\x27\x9f\xa5\xd8\xb5\xe4\xad" 16992 "\x40\xe7\x36\xdd\xb4\xd3\x54\x12" 16993 "\x32\x80\x63\xfd\x2a\xab\x53\xe5" 16994 "\xea\x1e\x0a\x9f\x33\x25\x00\xa5" 16995 "\xdf\x94\x87\xd0\x7a\x5c\x92\xcc" 16996 "\x51\x2c\x88\x66\xc7\xe8\x60\xce" 16997 "\x93\xfd\xf1\x66\xa2\x49\x12\xb4" 16998 "\x22\x97\x61\x46\xae\x20\xce\x84" 16999 "\x6b\xb7\xdc\x9b\xa9\x4a\x76\x7a" 17000 "\xae\xf2\x0c\x0d\x61\xad\x02\x65" 17001 "\x5e\xa9\x2d\xc4\xc4\xe4\x1a\x89" 17002 "\x52\xc6\x51\xd3\x31\x74\xbe\x51" 17003 "\xa1\x0c\x42\x11\x10\xe6\xd8\x15" 17004 "\x88\xed\xe8\x21\x03\xa2\x52\xd8" 17005 "\xa7\x50\xe8\x76\x8d\xef\xff\xed" 17006 "\x91\x22\x81\x0a\xae\xb9\x9f\x91" 17007 "\x72\xaf\x82\xb6\x04\xdc\x4b\x8e" 17008 "\x51\xbc\xb0\x82\x35\xa6\xf4\x34" 17009 "\x13\x32\xe4\xca\x60\x48\x2a\x4b" 17010 "\xa1\xa0\x3b\x3e\x65\x00\x8f\xc5" 17011 "\xda\x76\xb7\x0b\xf1\x69\x0d\xb4" 17012 "\xea\xe2\x9c\x5f\x1b\xad\xd0\x3c" 17013 "\x5c\xcf\x2a\x55\xd7\x05\xdd\xcd" 17014 "\x86\xd4\x49\x51\x1c\xeb\x7e\xc3" 17015 "\x0b\xf1\x2b\x1f\xa3\x5b\x91\x3f" 17016 "\x9f\x74\x7a\x8a\xfd\x1b\x13\x0e" 17017 "\x94\xbf\xf9\x4e\xff\xd0\x1a\x91" 17018 "\x73\x5c\xa1\x72\x6a\xcd\x0b\x19" 17019 "\x7c\x4e\x5b\x03\x39\x36\x97\xe1" 17020 "\x26\x82\x6f\xb6\xbb\xde\x8e\xcc" 17021 "\x1e\x08\x29\x85\x16\xe2\xc9\xed" 17022 "\x03\xff\x3c\x1b\x78\x60\xf6\xde" 17023 "\x76\xd4\xce\xcd\x94\xc8\x11\x98" 17024 "\x55\xef\x52\x97\xca\x67\xe9\xf3" 17025 "\xe7\xff\x72\xb1\xe9\x97\x85\xca" 17026 "\x0a\x7e\x77\x20\xc5\xb3\x6d\xc6" 17027 "\xd7\x2c\xac\x95\x74\xc8\xcb\xbc" 17028 "\x2f\x80\x1e\x23\xe5\x6f\xd3\x44" 17029 "\xb0\x7f\x22\x15\x4b\xeb\xa0\xf0" 17030 "\x8c\xe8\x89\x1e\x64\x3e\xd9\x95" 17031 "\xc9\x4d\x9a\x69\xc9\xf1\xb5\xf4" 17032 "\x99\x02\x7a\x78\x57\x2a\xee\xbd" 17033 "\x74\xd2\x0c\xc3\x98\x81\xc2\x13" 17034 "\xee\x77\x0b\x10\x10\xe4\xbe\xa7" 17035 "\x18\x84\x69\x77\xae\x11\x9f\x7a" 17036 "\x02\x3a\xb5\x8c\xca\x0a\xd7\x52" 17037 "\xaf\xe6\x56\xbb\x3c\x17\x25\x6a" 17038 "\x9f\x6e\x9b\xf1\x9f\xdd\x5a\x38" 17039 "\xfc\x82\xbb\xe8\x72\xc5\x53\x9e" 17040 "\xdb\x60\x9e\xf4\xf7\x9c\x20\x3e" 17041 "\xbb\x14\x0f\x2e\x58\x3c\xb2\xad" 17042 "\x15\xb4\xaa\x5b\x65\x50\x16\xa8" 17043 "\x44\x92\x77\xdb\xd4\x77\xef\x2c" 17044 "\x8d\x6c\x01\x7d\xb7\x38\xb1\x8d" 17045 "\xeb\x4a\x42\x7d\x19\x23\xce\x3f" 17046 "\xf2\x62\x73\x57\x79\xa4\x18\xf2" 17047 "\x0a\x28\x2d\xf9\x20\x14\x7b\xea" 17048 "\xbe\x42\x1e\xe5\x31\x9d\x05\x68", 17049 .len = 512, 17050 }, { /* XTS-AES 10, XTS-AES-256, data unit 512 bytes */ 17051 .key = "\x27\x18\x28\x18\x28\x45\x90\x45" 17052 "\x23\x53\x60\x28\x74\x71\x35\x26" 17053 "\x62\x49\x77\x57\x24\x70\x93\x69" 17054 "\x99\x59\x57\x49\x66\x96\x76\x27" 17055 "\x31\x41\x59\x26\x53\x58\x97\x93" 17056 "\x23\x84\x62\x64\x33\x83\x27\x95" 17057 "\x02\x88\x41\x97\x16\x93\x99\x37" 17058 "\x51\x05\x82\x09\x74\x94\x45\x92", 17059 .klen = 64, 17060 .iv = "\xff\x00\x00\x00\x00\x00\x00\x00" 17061 "\x00\x00\x00\x00\x00\x00\x00\x00", 17062 .ptext = "\x00\x01\x02\x03\x04\x05\x06\x07" 17063 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 17064 "\x10\x11\x12\x13\x14\x15\x16\x17" 17065 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 17066 "\x20\x21\x22\x23\x24\x25\x26\x27" 17067 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 17068 "\x30\x31\x32\x33\x34\x35\x36\x37" 17069 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 17070 "\x40\x41\x42\x43\x44\x45\x46\x47" 17071 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 17072 "\x50\x51\x52\x53\x54\x55\x56\x57" 17073 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 17074 "\x60\x61\x62\x63\x64\x65\x66\x67" 17075 "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 17076 "\x70\x71\x72\x73\x74\x75\x76\x77" 17077 "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 17078 "\x80\x81\x82\x83\x84\x85\x86\x87" 17079 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 17080 "\x90\x91\x92\x93\x94\x95\x96\x97" 17081 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 17082 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 17083 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 17084 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 17085 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 17086 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 17087 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 17088 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 17089 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 17090 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 17091 "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 17092 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 17093 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff" 17094 "\x00\x01\x02\x03\x04\x05\x06\x07" 17095 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 17096 "\x10\x11\x12\x13\x14\x15\x16\x17" 17097 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 17098 "\x20\x21\x22\x23\x24\x25\x26\x27" 17099 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 17100 "\x30\x31\x32\x33\x34\x35\x36\x37" 17101 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 17102 "\x40\x41\x42\x43\x44\x45\x46\x47" 17103 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 17104 "\x50\x51\x52\x53\x54\x55\x56\x57" 17105 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 17106 "\x60\x61\x62\x63\x64\x65\x66\x67" 17107 "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 17108 "\x70\x71\x72\x73\x74\x75\x76\x77" 17109 "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 17110 "\x80\x81\x82\x83\x84\x85\x86\x87" 17111 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 17112 "\x90\x91\x92\x93\x94\x95\x96\x97" 17113 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 17114 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 17115 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 17116 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 17117 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 17118 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 17119 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 17120 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 17121 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 17122 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 17123 "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 17124 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 17125 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff", 17126 .ctext = "\x1c\x3b\x3a\x10\x2f\x77\x03\x86" 17127 "\xe4\x83\x6c\x99\xe3\x70\xcf\x9b" 17128 "\xea\x00\x80\x3f\x5e\x48\x23\x57" 17129 "\xa4\xae\x12\xd4\x14\xa3\xe6\x3b" 17130 "\x5d\x31\xe2\x76\xf8\xfe\x4a\x8d" 17131 "\x66\xb3\x17\xf9\xac\x68\x3f\x44" 17132 "\x68\x0a\x86\xac\x35\xad\xfc\x33" 17133 "\x45\xbe\xfe\xcb\x4b\xb1\x88\xfd" 17134 "\x57\x76\x92\x6c\x49\xa3\x09\x5e" 17135 "\xb1\x08\xfd\x10\x98\xba\xec\x70" 17136 "\xaa\xa6\x69\x99\xa7\x2a\x82\xf2" 17137 "\x7d\x84\x8b\x21\xd4\xa7\x41\xb0" 17138 "\xc5\xcd\x4d\x5f\xff\x9d\xac\x89" 17139 "\xae\xba\x12\x29\x61\xd0\x3a\x75" 17140 "\x71\x23\xe9\x87\x0f\x8a\xcf\x10" 17141 "\x00\x02\x08\x87\x89\x14\x29\xca" 17142 "\x2a\x3e\x7a\x7d\x7d\xf7\xb1\x03" 17143 "\x55\x16\x5c\x8b\x9a\x6d\x0a\x7d" 17144 "\xe8\xb0\x62\xc4\x50\x0d\xc4\xcd" 17145 "\x12\x0c\x0f\x74\x18\xda\xe3\xd0" 17146 "\xb5\x78\x1c\x34\x80\x3f\xa7\x54" 17147 "\x21\xc7\x90\xdf\xe1\xde\x18\x34" 17148 "\xf2\x80\xd7\x66\x7b\x32\x7f\x6c" 17149 "\x8c\xd7\x55\x7e\x12\xac\x3a\x0f" 17150 "\x93\xec\x05\xc5\x2e\x04\x93\xef" 17151 "\x31\xa1\x2d\x3d\x92\x60\xf7\x9a" 17152 "\x28\x9d\x6a\x37\x9b\xc7\x0c\x50" 17153 "\x84\x14\x73\xd1\xa8\xcc\x81\xec" 17154 "\x58\x3e\x96\x45\xe0\x7b\x8d\x96" 17155 "\x70\x65\x5b\xa5\xbb\xcf\xec\xc6" 17156 "\xdc\x39\x66\x38\x0a\xd8\xfe\xcb" 17157 "\x17\xb6\xba\x02\x46\x9a\x02\x0a" 17158 "\x84\xe1\x8e\x8f\x84\x25\x20\x70" 17159 "\xc1\x3e\x9f\x1f\x28\x9b\xe5\x4f" 17160 "\xbc\x48\x14\x57\x77\x8f\x61\x60" 17161 "\x15\xe1\x32\x7a\x02\xb1\x40\xf1" 17162 "\x50\x5e\xb3\x09\x32\x6d\x68\x37" 17163 "\x8f\x83\x74\x59\x5c\x84\x9d\x84" 17164 "\xf4\xc3\x33\xec\x44\x23\x88\x51" 17165 "\x43\xcb\x47\xbd\x71\xc5\xed\xae" 17166 "\x9b\xe6\x9a\x2f\xfe\xce\xb1\xbe" 17167 "\xc9\xde\x24\x4f\xbe\x15\x99\x2b" 17168 "\x11\xb7\x7c\x04\x0f\x12\xbd\x8f" 17169 "\x6a\x97\x5a\x44\xa0\xf9\x0c\x29" 17170 "\xa9\xab\xc3\xd4\xd8\x93\x92\x72" 17171 "\x84\xc5\x87\x54\xcc\xe2\x94\x52" 17172 "\x9f\x86\x14\xdc\xd2\xab\xa9\x91" 17173 "\x92\x5f\xed\xc4\xae\x74\xff\xac" 17174 "\x6e\x33\x3b\x93\xeb\x4a\xff\x04" 17175 "\x79\xda\x9a\x41\x0e\x44\x50\xe0" 17176 "\xdd\x7a\xe4\xc6\xe2\x91\x09\x00" 17177 "\x57\x5d\xa4\x01\xfc\x07\x05\x9f" 17178 "\x64\x5e\x8b\x7e\x9b\xfd\xef\x33" 17179 "\x94\x30\x54\xff\x84\x01\x14\x93" 17180 "\xc2\x7b\x34\x29\xea\xed\xb4\xed" 17181 "\x53\x76\x44\x1a\x77\xed\x43\x85" 17182 "\x1a\xd7\x7f\x16\xf5\x41\xdf\xd2" 17183 "\x69\xd5\x0d\x6a\x5f\x14\xfb\x0a" 17184 "\xab\x1c\xbb\x4c\x15\x50\xbe\x97" 17185 "\xf7\xab\x40\x66\x19\x3c\x4c\xaa" 17186 "\x77\x3d\xad\x38\x01\x4b\xd2\x09" 17187 "\x2f\xa7\x55\xc8\x24\xbb\x5e\x54" 17188 "\xc4\xf3\x6f\xfd\xa9\xfc\xea\x70" 17189 "\xb9\xc6\xe6\x93\xe1\x48\xc1\x51", 17190 .len = 512, 17191 } 17192 }; 17193 17194 static const struct cipher_testvec aes_ctr_tv_template[] = { 17195 { /* From NIST Special Publication 800-38A, Appendix F.5 */ 17196 .key = "\x2b\x7e\x15\x16\x28\xae\xd2\xa6" 17197 "\xab\xf7\x15\x88\x09\xcf\x4f\x3c", 17198 .klen = 16, 17199 .iv = "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 17200 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff", 17201 .iv_out = "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 17202 "\xf8\xf9\xfa\xfb\xfc\xfd\xff\x03", 17203 .ptext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 17204 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 17205 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 17206 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 17207 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 17208 "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 17209 "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 17210 "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 17211 .ctext = "\x87\x4d\x61\x91\xb6\x20\xe3\x26" 17212 "\x1b\xef\x68\x64\x99\x0d\xb6\xce" 17213 "\x98\x06\xf6\x6b\x79\x70\xfd\xff" 17214 "\x86\x17\x18\x7b\xb9\xff\xfd\xff" 17215 "\x5a\xe4\xdf\x3e\xdb\xd5\xd3\x5e" 17216 "\x5b\x4f\x09\x02\x0d\xb0\x3e\xab" 17217 "\x1e\x03\x1d\xda\x2f\xbe\x03\xd1" 17218 "\x79\x21\x70\xa0\xf3\x00\x9c\xee", 17219 .len = 64, 17220 }, { 17221 .key = "\x8e\x73\xb0\xf7\xda\x0e\x64\x52" 17222 "\xc8\x10\xf3\x2b\x80\x90\x79\xe5" 17223 "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b", 17224 .klen = 24, 17225 .iv = "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 17226 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff", 17227 .iv_out = "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 17228 "\xf8\xf9\xfa\xfb\xfc\xfd\xff\x03", 17229 .ptext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 17230 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 17231 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 17232 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 17233 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 17234 "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 17235 "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 17236 "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 17237 .ctext = "\x1a\xbc\x93\x24\x17\x52\x1c\xa2" 17238 "\x4f\x2b\x04\x59\xfe\x7e\x6e\x0b" 17239 "\x09\x03\x39\xec\x0a\xa6\xfa\xef" 17240 "\xd5\xcc\xc2\xc6\xf4\xce\x8e\x94" 17241 "\x1e\x36\xb2\x6b\xd1\xeb\xc6\x70" 17242 "\xd1\xbd\x1d\x66\x56\x20\xab\xf7" 17243 "\x4f\x78\xa7\xf6\xd2\x98\x09\x58" 17244 "\x5a\x97\xda\xec\x58\xc6\xb0\x50", 17245 .len = 64, 17246 }, { 17247 .key = "\x60\x3d\xeb\x10\x15\xca\x71\xbe" 17248 "\x2b\x73\xae\xf0\x85\x7d\x77\x81" 17249 "\x1f\x35\x2c\x07\x3b\x61\x08\xd7" 17250 "\x2d\x98\x10\xa3\x09\x14\xdf\xf4", 17251 .klen = 32, 17252 .iv = "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 17253 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff", 17254 .iv_out = "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 17255 "\xf8\xf9\xfa\xfb\xfc\xfd\xff\x03", 17256 .ptext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 17257 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 17258 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 17259 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 17260 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 17261 "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 17262 "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 17263 "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 17264 .ctext = "\x60\x1e\xc3\x13\x77\x57\x89\xa5" 17265 "\xb7\xa7\xf5\x04\xbb\xf3\xd2\x28" 17266 "\xf4\x43\xe3\xca\x4d\x62\xb5\x9a" 17267 "\xca\x84\xe9\x90\xca\xca\xf5\xc5" 17268 "\x2b\x09\x30\xda\xa2\x3d\xe9\x4c" 17269 "\xe8\x70\x17\xba\x2d\x84\x98\x8d" 17270 "\xdf\xc9\xc5\x8d\xb6\x7a\xad\xa6" 17271 "\x13\xc2\xdd\x08\x45\x79\x41\xa6", 17272 .len = 64, 17273 }, { /* Generated with Crypto++ */ 17274 .key = "\xC9\x83\xA6\xC9\xEC\x0F\x32\x55" 17275 "\x0F\x32\x55\x78\x9B\xBE\x78\x9B" 17276 "\xBE\xE1\x04\x27\xE1\x04\x27\x4A" 17277 "\x6D\x90\x4A\x6D\x90\xB3\xD6\xF9", 17278 .klen = 32, 17279 .iv = "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" 17280 "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFD", 17281 .iv_out = "\x00\x00\x00\x00\x00\x00\x00\x00" 17282 "\x00\x00\x00\x00\x00\x00\x00\x1C", 17283 .ptext = "\x50\xB9\x22\xAE\x17\x80\x0C\x75" 17284 "\xDE\x47\xD3\x3C\xA5\x0E\x9A\x03" 17285 "\x6C\xF8\x61\xCA\x33\xBF\x28\x91" 17286 "\x1D\x86\xEF\x58\xE4\x4D\xB6\x1F" 17287 "\xAB\x14\x7D\x09\x72\xDB\x44\xD0" 17288 "\x39\xA2\x0B\x97\x00\x69\xF5\x5E" 17289 "\xC7\x30\xBC\x25\x8E\x1A\x83\xEC" 17290 "\x55\xE1\x4A\xB3\x1C\xA8\x11\x7A" 17291 "\x06\x6F\xD8\x41\xCD\x36\x9F\x08" 17292 "\x94\xFD\x66\xF2\x5B\xC4\x2D\xB9" 17293 "\x22\x8B\x17\x80\xE9\x52\xDE\x47" 17294 "\xB0\x19\xA5\x0E\x77\x03\x6C\xD5" 17295 "\x3E\xCA\x33\x9C\x05\x91\xFA\x63" 17296 "\xEF\x58\xC1\x2A\xB6\x1F\x88\x14" 17297 "\x7D\xE6\x4F\xDB\x44\xAD\x16\xA2" 17298 "\x0B\x74\x00\x69\xD2\x3B\xC7\x30" 17299 "\x99\x02\x8E\xF7\x60\xEC\x55\xBE" 17300 "\x27\xB3\x1C\x85\x11\x7A\xE3\x4C" 17301 "\xD8\x41\xAA\x13\x9F\x08\x71\xFD" 17302 "\x66\xCF\x38\xC4\x2D\x96\x22\x8B" 17303 "\xF4\x5D\xE9\x52\xBB\x24\xB0\x19" 17304 "\x82\x0E\x77\xE0\x49\xD5\x3E\xA7" 17305 "\x10\x9C\x05\x6E\xFA\x63\xCC\x35" 17306 "\xC1\x2A\x93\x1F\x88\xF1\x5A\xE6" 17307 "\x4F\xB8\x21\xAD\x16\x7F\x0B\x74" 17308 "\xDD\x46\xD2\x3B\xA4\x0D\x99\x02" 17309 "\x6B\xF7\x60\xC9\x32\xBE\x27\x90" 17310 "\x1C\x85\xEE\x57\xE3\x4C\xB5\x1E" 17311 "\xAA\x13\x7C\x08\x71\xDA\x43\xCF" 17312 "\x38\xA1\x0A\x96\xFF\x68\xF4\x5D" 17313 "\xC6\x2F\xBB\x24\x8D\x19\x82\xEB" 17314 "\x54\xE0\x49\xB2\x1B\xA7\x10\x79" 17315 "\x05\x6E\xD7\x40\xCC\x35\x9E\x07" 17316 "\x93\xFC\x65\xF1\x5A\xC3\x2C\xB8" 17317 "\x21\x8A\x16\x7F\xE8\x51\xDD\x46" 17318 "\xAF\x18\xA4\x0D\x76\x02\x6B\xD4" 17319 "\x3D\xC9\x32\x9B\x04\x90\xF9\x62" 17320 "\xEE\x57\xC0\x29\xB5\x1E\x87\x13" 17321 "\x7C\xE5\x4E\xDA\x43\xAC\x15\xA1" 17322 "\x0A\x73\xFF\x68\xD1\x3A\xC6\x2F" 17323 "\x98\x01\x8D\xF6\x5F\xEB\x54\xBD" 17324 "\x26\xB2\x1B\x84\x10\x79\xE2\x4B" 17325 "\xD7\x40\xA9\x12\x9E\x07\x70\xFC" 17326 "\x65\xCE\x37\xC3\x2C\x95\x21\x8A" 17327 "\xF3\x5C\xE8\x51\xBA\x23\xAF\x18" 17328 "\x81\x0D\x76\xDF\x48\xD4\x3D\xA6" 17329 "\x0F\x9B\x04\x6D\xF9\x62\xCB\x34" 17330 "\xC0\x29\x92\x1E\x87\xF0\x59\xE5" 17331 "\x4E\xB7\x20\xAC\x15\x7E\x0A\x73" 17332 "\xDC\x45\xD1\x3A\xA3\x0C\x98\x01" 17333 "\x6A\xF6\x5F\xC8\x31\xBD\x26\x8F" 17334 "\x1B\x84\xED\x56\xE2\x4B\xB4\x1D" 17335 "\xA9\x12\x7B\x07\x70\xD9\x42\xCE" 17336 "\x37\xA0\x09\x95\xFE\x67\xF3\x5C" 17337 "\xC5\x2E\xBA\x23\x8C\x18\x81\xEA" 17338 "\x53\xDF\x48\xB1\x1A\xA6\x0F\x78" 17339 "\x04\x6D\xD6\x3F\xCB\x34\x9D\x06" 17340 "\x92\xFB\x64\xF0\x59\xC2\x2B\xB7" 17341 "\x20\x89\x15\x7E\xE7\x50\xDC\x45" 17342 "\xAE\x17\xA3\x0C\x75\x01\x6A\xD3" 17343 "\x3C\xC8\x31\x9A\x03\x8F\xF8\x61" 17344 "\xED\x56\xBF\x28\xB4\x1D\x86\x12", 17345 .ctext = "\x04\xF3\xD3\x88\x17\xEF\xDC\xEF" 17346 "\x8B\x04\xF8\x3A\x66\x8D\x1A\x53" 17347 "\x57\x1F\x4B\x23\xE4\xA0\xAF\xF9" 17348 "\x69\x95\x35\x98\x8D\x4D\x8C\xC1" 17349 "\xF0\xB2\x7F\x80\xBB\x54\x28\xA2" 17350 "\x7A\x1B\x9F\x77\xEC\x0E\x6E\xDE" 17351 "\xF0\xEC\xB8\xE4\x20\x62\xEE\xDB" 17352 "\x5D\xF5\xDD\xE3\x54\xFC\xDD\xEB" 17353 "\x6A\xEE\x65\xA1\x21\xD6\xD7\x81" 17354 "\x47\x61\x12\x4D\xC2\x8C\xFA\x78" 17355 "\x1F\x28\x02\x01\xC3\xFC\x1F\xEC" 17356 "\x0F\x10\x4F\xB3\x12\x45\xC6\x3B" 17357 "\x7E\x08\xF9\x5A\xD0\x5D\x73\x2D" 17358 "\x58\xA4\xE5\xCB\x1C\xB4\xCE\x74" 17359 "\x32\x41\x1F\x31\x9C\x08\xA2\x5D" 17360 "\x67\xEB\x72\x1D\xF8\xE7\x70\x54" 17361 "\x34\x4B\x31\x69\x84\x66\x96\x44" 17362 "\x56\xCC\x1E\xD9\xE6\x13\x6A\xB9" 17363 "\x2D\x0A\x05\x45\x2D\x90\xCC\xDF" 17364 "\x16\x5C\x5F\x79\x34\x52\x54\xFE" 17365 "\xFE\xCD\xAD\x04\x2E\xAD\x86\x06" 17366 "\x1F\x37\xE8\x28\xBC\xD3\x8F\x5B" 17367 "\x92\x66\x87\x3B\x8A\x0A\x1A\xCC" 17368 "\x6E\xAB\x9F\x0B\xFA\x5C\xE6\xFD" 17369 "\x3C\x98\x08\x12\xEC\xAA\x9E\x11" 17370 "\xCA\xB2\x1F\xCE\x5E\x5B\xB2\x72" 17371 "\x9C\xCC\x5D\xC5\xE0\x32\xC0\x56" 17372 "\xD5\x45\x16\xD2\xAF\x13\x66\xF7" 17373 "\x8C\x67\xAC\x79\xB2\xAF\x56\x27" 17374 "\x3F\xCC\xFE\xCB\x1E\xC0\x75\xF1" 17375 "\xA7\xC9\xC3\x1D\x8E\xDD\xF9\xD4" 17376 "\x42\xC8\x21\x08\x16\xF7\x01\xD7" 17377 "\xAC\x8E\x3F\x1D\x56\xC1\x06\xE4" 17378 "\x9C\x62\xD6\xA5\x6A\x50\x44\xB3" 17379 "\x35\x1C\x82\xB9\x10\xF9\x42\xA1" 17380 "\xFC\x74\x9B\x44\x4F\x25\x02\xE3" 17381 "\x08\xF5\xD4\x32\x39\x08\x11\xE8" 17382 "\xD2\x6B\x50\x53\xD4\x08\xD1\x6B" 17383 "\x3A\x4A\x68\x7B\x7C\xCD\x46\x5E" 17384 "\x0D\x07\x19\xDB\x67\xD7\x98\x91" 17385 "\xD7\x17\x10\x9B\x7B\x8A\x9B\x33" 17386 "\xAE\xF3\x00\xA6\xD4\x15\xD9\xEA" 17387 "\x85\x99\x22\xE8\x91\x38\x70\x83" 17388 "\x93\x01\x24\x6C\xFA\x9A\xB9\x07" 17389 "\xEA\x8D\x3B\xD9\x2A\x43\x59\x16" 17390 "\x2F\x69\xEE\x84\x36\x44\x76\x98" 17391 "\xF3\x04\x2A\x7C\x74\x3D\x29\x2B" 17392 "\x0D\xAD\x8F\x44\x82\x9E\x57\x8D" 17393 "\xAC\xED\x18\x1F\x50\xA4\xF5\x98" 17394 "\x1F\xBD\x92\x91\x1B\x2D\xA6\xD6" 17395 "\xD2\xE3\x02\xAA\x92\x3B\xC6\xB3" 17396 "\x1B\x39\x72\xD5\x26\xCA\x04\xE0" 17397 "\xFC\x58\x78\xBB\xB1\x3F\xA1\x9C" 17398 "\x42\x24\x3E\x2E\x22\xBB\x4B\xBA" 17399 "\xF4\x52\x0A\xE6\xAE\x47\xB4\x7D" 17400 "\x1D\xA8\xBE\x81\x1A\x75\xDA\xAC" 17401 "\xA6\x25\x1E\xEF\x3A\xC0\x6C\x63" 17402 "\xEF\xDC\xC9\x79\x10\x26\xE8\x61" 17403 "\x29\xFC\xA4\x05\xDF\x7D\x5C\x63" 17404 "\x10\x09\x9B\x46\x9B\xF2\x2C\x2B" 17405 "\xFA\x3A\x05\x4C\xFA\xD1\xFF\xFE" 17406 "\xF1\x4C\xE5\xB2\x91\x64\x0C\x51", 17407 .len = 496, 17408 }, { /* Generated with Crypto++ */ 17409 .key = "\xC9\x83\xA6\xC9\xEC\x0F\x32\x55" 17410 "\x0F\x32\x55\x78\x9B\xBE\x78\x9B" 17411 "\xBE\xE1\x04\x27\xE1\x04\x27\x4A" 17412 "\x6D\x90\x4A\x6D\x90\xB3\xD6\xF9", 17413 .klen = 32, 17414 .iv = "\xE7\x82\x1D\xB8\x53\x11\xAC\x47" 17415 "\xE2\x7D\x18\xD6\x71\x0C\xA7\x42", 17416 .iv_out = "\xE7\x82\x1D\xB8\x53\x11\xAC\x47" 17417 "\xE2\x7D\x18\xD6\x71\x0C\xA7\x62", 17418 .ptext = "\x50\xB9\x22\xAE\x17\x80\x0C\x75" 17419 "\xDE\x47\xD3\x3C\xA5\x0E\x9A\x03" 17420 "\x6C\xF8\x61\xCA\x33\xBF\x28\x91" 17421 "\x1D\x86\xEF\x58\xE4\x4D\xB6\x1F" 17422 "\xAB\x14\x7D\x09\x72\xDB\x44\xD0" 17423 "\x39\xA2\x0B\x97\x00\x69\xF5\x5E" 17424 "\xC7\x30\xBC\x25\x8E\x1A\x83\xEC" 17425 "\x55\xE1\x4A\xB3\x1C\xA8\x11\x7A" 17426 "\x06\x6F\xD8\x41\xCD\x36\x9F\x08" 17427 "\x94\xFD\x66\xF2\x5B\xC4\x2D\xB9" 17428 "\x22\x8B\x17\x80\xE9\x52\xDE\x47" 17429 "\xB0\x19\xA5\x0E\x77\x03\x6C\xD5" 17430 "\x3E\xCA\x33\x9C\x05\x91\xFA\x63" 17431 "\xEF\x58\xC1\x2A\xB6\x1F\x88\x14" 17432 "\x7D\xE6\x4F\xDB\x44\xAD\x16\xA2" 17433 "\x0B\x74\x00\x69\xD2\x3B\xC7\x30" 17434 "\x99\x02\x8E\xF7\x60\xEC\x55\xBE" 17435 "\x27\xB3\x1C\x85\x11\x7A\xE3\x4C" 17436 "\xD8\x41\xAA\x13\x9F\x08\x71\xFD" 17437 "\x66\xCF\x38\xC4\x2D\x96\x22\x8B" 17438 "\xF4\x5D\xE9\x52\xBB\x24\xB0\x19" 17439 "\x82\x0E\x77\xE0\x49\xD5\x3E\xA7" 17440 "\x10\x9C\x05\x6E\xFA\x63\xCC\x35" 17441 "\xC1\x2A\x93\x1F\x88\xF1\x5A\xE6" 17442 "\x4F\xB8\x21\xAD\x16\x7F\x0B\x74" 17443 "\xDD\x46\xD2\x3B\xA4\x0D\x99\x02" 17444 "\x6B\xF7\x60\xC9\x32\xBE\x27\x90" 17445 "\x1C\x85\xEE\x57\xE3\x4C\xB5\x1E" 17446 "\xAA\x13\x7C\x08\x71\xDA\x43\xCF" 17447 "\x38\xA1\x0A\x96\xFF\x68\xF4\x5D" 17448 "\xC6\x2F\xBB\x24\x8D\x19\x82\xEB" 17449 "\x54\xE0\x49\xB2\x1B\xA7\x10\x79" 17450 "\x05\x6E\xD7\x40\xCC\x35\x9E\x07" 17451 "\x93\xFC\x65\xF1\x5A\xC3\x2C\xB8" 17452 "\x21\x8A\x16\x7F\xE8\x51\xDD\x46" 17453 "\xAF\x18\xA4\x0D\x76\x02\x6B\xD4" 17454 "\x3D\xC9\x32\x9B\x04\x90\xF9\x62" 17455 "\xEE\x57\xC0\x29\xB5\x1E\x87\x13" 17456 "\x7C\xE5\x4E\xDA\x43\xAC\x15\xA1" 17457 "\x0A\x73\xFF\x68\xD1\x3A\xC6\x2F" 17458 "\x98\x01\x8D\xF6\x5F\xEB\x54\xBD" 17459 "\x26\xB2\x1B\x84\x10\x79\xE2\x4B" 17460 "\xD7\x40\xA9\x12\x9E\x07\x70\xFC" 17461 "\x65\xCE\x37\xC3\x2C\x95\x21\x8A" 17462 "\xF3\x5C\xE8\x51\xBA\x23\xAF\x18" 17463 "\x81\x0D\x76\xDF\x48\xD4\x3D\xA6" 17464 "\x0F\x9B\x04\x6D\xF9\x62\xCB\x34" 17465 "\xC0\x29\x92\x1E\x87\xF0\x59\xE5" 17466 "\x4E\xB7\x20\xAC\x15\x7E\x0A\x73" 17467 "\xDC\x45\xD1\x3A\xA3\x0C\x98\x01" 17468 "\x6A\xF6\x5F\xC8\x31\xBD\x26\x8F" 17469 "\x1B\x84\xED\x56\xE2\x4B\xB4\x1D" 17470 "\xA9\x12\x7B\x07\x70\xD9\x42\xCE" 17471 "\x37\xA0\x09\x95\xFE\x67\xF3\x5C" 17472 "\xC5\x2E\xBA\x23\x8C\x18\x81\xEA" 17473 "\x53\xDF\x48\xB1\x1A\xA6\x0F\x78" 17474 "\x04\x6D\xD6\x3F\xCB\x34\x9D\x06" 17475 "\x92\xFB\x64\xF0\x59\xC2\x2B\xB7" 17476 "\x20\x89\x15\x7E\xE7\x50\xDC\x45" 17477 "\xAE\x17\xA3\x0C\x75\x01\x6A\xD3" 17478 "\x3C\xC8\x31\x9A\x03\x8F\xF8\x61" 17479 "\xED\x56\xBF\x28\xB4\x1D\x86\x12" 17480 "\x7B\xE4\x4D", 17481 .ctext = "\xDA\x4E\x3F\xBC\xE8\xB6\x3A\xA2" 17482 "\xD5\x4D\x84\x4A\xA9\x0C\xE1\xA5" 17483 "\xB8\x73\xBC\xF9\xBB\x59\x2F\x44" 17484 "\x8B\xAB\x82\x6C\xB4\x32\x9A\xDE" 17485 "\x5A\x0B\xDB\x7A\x6B\xF2\x38\x9F" 17486 "\x06\xF7\xF7\xFF\xFF\xC0\x8A\x2E" 17487 "\x76\xEA\x06\x32\x23\xF3\x59\x2E" 17488 "\x75\xDE\x71\x86\x3C\x98\x23\x44" 17489 "\x5B\xF2\xFA\x6A\x00\xBB\xC1\xAD" 17490 "\x58\xBD\x3E\x6F\x2E\xB4\x19\x04" 17491 "\x70\x8B\x92\x55\x23\xE9\x6A\x3A" 17492 "\x78\x7A\x1B\x10\x85\x52\x9C\x12" 17493 "\xE4\x55\x81\x21\xCE\x53\xD0\x3B" 17494 "\x63\x77\x2C\x74\xD1\xF5\x60\xF3" 17495 "\xA1\xDE\x44\x3C\x8F\x4D\x2F\xDD" 17496 "\x8A\xFE\x3C\x42\x8E\xD3\xF2\x8E" 17497 "\xA8\x28\x69\x65\x31\xE1\x45\x83" 17498 "\xE4\x49\xC4\x9C\xA7\x28\xAA\x21" 17499 "\xCD\x5D\x0F\x15\xB7\x93\x07\x26" 17500 "\xB0\x65\x6D\x91\x90\x23\x7A\xC6" 17501 "\xDB\x68\xB0\xA1\x8E\xA4\x76\x4E" 17502 "\xC6\x91\x83\x20\x92\x4D\x63\x7A" 17503 "\x45\x18\x18\x74\x19\xAD\x71\x01" 17504 "\x6B\x23\xAD\x9D\x4E\xE4\x6E\x46" 17505 "\xC9\x73\x7A\xF9\x02\x95\xF4\x07" 17506 "\x0E\x7A\xA6\xC5\xAE\xFA\x15\x2C" 17507 "\x51\x71\xF1\xDC\x22\xB6\xAC\xD8" 17508 "\x19\x24\x44\xBC\x0C\xFB\x3C\x2D" 17509 "\xB1\x50\x47\x15\x0E\xDB\xB6\xD7" 17510 "\xE8\x61\xE5\x95\x52\x1E\x3E\x49" 17511 "\x70\xE9\x66\x04\x4C\xE1\xAF\xBD" 17512 "\xDD\x15\x3B\x20\x59\x24\xFF\xB0" 17513 "\x39\xAA\xE7\xBF\x23\xA3\x6E\xD5" 17514 "\x15\xF0\x61\x4F\xAE\x89\x10\x58" 17515 "\x5A\x33\x95\x52\x2A\xB5\x77\x9C" 17516 "\xA5\x43\x80\x40\x27\x2D\xAE\xD9" 17517 "\x3F\xE0\x80\x94\x78\x79\xCB\x7E" 17518 "\xAD\x12\x44\x4C\xEC\x27\xB0\xEE" 17519 "\x0B\x05\x2A\x82\x99\x58\xBB\x7A" 17520 "\x8D\x6D\x9D\x8E\xE2\x8E\xE7\x93" 17521 "\x2F\xB3\x09\x8D\x06\xD5\xEE\x70" 17522 "\x16\xAE\x35\xC5\x52\x0F\x46\x1F" 17523 "\x71\xF9\x5E\xF2\x67\xDC\x98\x2F" 17524 "\xA3\x23\xAA\xD5\xD0\x49\xF4\xA6" 17525 "\xF6\xB8\x32\xCD\xD6\x85\x73\x60" 17526 "\x59\x20\xE7\x55\x0E\x91\xE2\x0C" 17527 "\x3F\x1C\xEB\x3D\xDF\x52\x64\xF2" 17528 "\x7D\x8B\x5D\x63\x16\xB9\xB2\x5D" 17529 "\x5E\xAB\xB2\x97\xAB\x78\x44\xE7" 17530 "\xC6\x72\x20\xC5\x90\x9B\xDC\x5D" 17531 "\xB0\xEF\x44\xEF\x87\x31\x8D\xF4" 17532 "\xFB\x81\x5D\xF7\x96\x96\xD4\x50" 17533 "\x89\xA7\xF6\xB9\x67\x76\x40\x9E" 17534 "\x9D\x40\xD5\x2C\x30\xB8\x01\x8F" 17535 "\xE4\x7B\x71\x48\xA9\xA0\xA0\x1D" 17536 "\x87\x52\xA4\x91\xA9\xD7\xA9\x51" 17537 "\xD9\x59\xF7\xCC\x63\x22\xC1\x8D" 17538 "\x84\x7B\xD8\x22\x32\x5C\x6F\x1D" 17539 "\x6E\x9F\xFA\xDD\x49\x40\xDC\x37" 17540 "\x14\x8C\xE1\x80\x1B\xDD\x36\x2A" 17541 "\xD0\xE9\x54\x99\x5D\xBA\x3B\x11" 17542 "\xD8\xFE\xC9\x5B\x5C\x25\xE5\x76" 17543 "\xFB\xF2\x3F", 17544 .len = 499, 17545 }, 17546 }; 17547 17548 static const struct cipher_testvec aes_ctr_rfc3686_tv_template[] = { 17549 { /* From RFC 3686 */ 17550 .key = "\xae\x68\x52\xf8\x12\x10\x67\xcc" 17551 "\x4b\xf7\xa5\x76\x55\x77\xf3\x9e" 17552 "\x00\x00\x00\x30", 17553 .klen = 20, 17554 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00", 17555 .ptext = "Single block msg", 17556 .ctext = "\xe4\x09\x5d\x4f\xb7\xa7\xb3\x79" 17557 "\x2d\x61\x75\xa3\x26\x13\x11\xb8", 17558 .len = 16, 17559 }, { 17560 .key = "\x7e\x24\x06\x78\x17\xfa\xe0\xd7" 17561 "\x43\xd6\xce\x1f\x32\x53\x91\x63" 17562 "\x00\x6c\xb6\xdb", 17563 .klen = 20, 17564 .iv = "\xc0\x54\x3b\x59\xda\x48\xd9\x0b", 17565 .ptext = "\x00\x01\x02\x03\x04\x05\x06\x07" 17566 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 17567 "\x10\x11\x12\x13\x14\x15\x16\x17" 17568 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 17569 .ctext = "\x51\x04\xa1\x06\x16\x8a\x72\xd9" 17570 "\x79\x0d\x41\xee\x8e\xda\xd3\x88" 17571 "\xeb\x2e\x1e\xfc\x46\xda\x57\xc8" 17572 "\xfc\xe6\x30\xdf\x91\x41\xbe\x28", 17573 .len = 32, 17574 }, { 17575 .key = "\x16\xaf\x5b\x14\x5f\xc9\xf5\x79" 17576 "\xc1\x75\xf9\x3e\x3b\xfb\x0e\xed" 17577 "\x86\x3d\x06\xcc\xfd\xb7\x85\x15" 17578 "\x00\x00\x00\x48", 17579 .klen = 28, 17580 .iv = "\x36\x73\x3c\x14\x7d\x6d\x93\xcb", 17581 .ptext = "Single block msg", 17582 .ctext = "\x4b\x55\x38\x4f\xe2\x59\xc9\xc8" 17583 "\x4e\x79\x35\xa0\x03\xcb\xe9\x28", 17584 .len = 16, 17585 }, { 17586 .key = "\x7c\x5c\xb2\x40\x1b\x3d\xc3\x3c" 17587 "\x19\xe7\x34\x08\x19\xe0\xf6\x9c" 17588 "\x67\x8c\x3d\xb8\xe6\xf6\xa9\x1a" 17589 "\x00\x96\xb0\x3b", 17590 .klen = 28, 17591 .iv = "\x02\x0c\x6e\xad\xc2\xcb\x50\x0d", 17592 .ptext = "\x00\x01\x02\x03\x04\x05\x06\x07" 17593 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 17594 "\x10\x11\x12\x13\x14\x15\x16\x17" 17595 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 17596 .ctext = "\x45\x32\x43\xfc\x60\x9b\x23\x32" 17597 "\x7e\xdf\xaa\xfa\x71\x31\xcd\x9f" 17598 "\x84\x90\x70\x1c\x5a\xd4\xa7\x9c" 17599 "\xfc\x1f\xe0\xff\x42\xf4\xfb\x00", 17600 .len = 32, 17601 }, { 17602 .key = "\x77\x6b\xef\xf2\x85\x1d\xb0\x6f" 17603 "\x4c\x8a\x05\x42\xc8\x69\x6f\x6c" 17604 "\x6a\x81\xaf\x1e\xec\x96\xb4\xd3" 17605 "\x7f\xc1\xd6\x89\xe6\xc1\xc1\x04" 17606 "\x00\x00\x00\x60", 17607 .klen = 36, 17608 .iv = "\xdb\x56\x72\xc9\x7a\xa8\xf0\xb2", 17609 .ptext = "Single block msg", 17610 .ctext = "\x14\x5a\xd0\x1d\xbf\x82\x4e\xc7" 17611 "\x56\x08\x63\xdc\x71\xe3\xe0\xc0", 17612 .len = 16, 17613 }, { 17614 .key = "\xf6\xd6\x6d\x6b\xd5\x2d\x59\xbb" 17615 "\x07\x96\x36\x58\x79\xef\xf8\x86" 17616 "\xc6\x6d\xd5\x1a\x5b\x6a\x99\x74" 17617 "\x4b\x50\x59\x0c\x87\xa2\x38\x84" 17618 "\x00\xfa\xac\x24", 17619 .klen = 36, 17620 .iv = "\xc1\x58\x5e\xf1\x5a\x43\xd8\x75", 17621 .ptext = "\x00\x01\x02\x03\x04\x05\x06\x07" 17622 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 17623 "\x10\x11\x12\x13\x14\x15\x16\x17" 17624 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 17625 .ctext = "\xf0\x5e\x23\x1b\x38\x94\x61\x2c" 17626 "\x49\xee\x00\x0b\x80\x4e\xb2\xa9" 17627 "\xb8\x30\x6b\x50\x8f\x83\x9d\x6a" 17628 "\x55\x30\x83\x1d\x93\x44\xaf\x1c", 17629 .len = 32, 17630 }, { 17631 // generated using Crypto++ 17632 .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 17633 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 17634 "\x10\x11\x12\x13\x14\x15\x16\x17" 17635 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 17636 "\x00\x00\x00\x00", 17637 .klen = 32 + 4, 17638 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00", 17639 .ptext = 17640 "\x00\x01\x02\x03\x04\x05\x06\x07" 17641 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 17642 "\x10\x11\x12\x13\x14\x15\x16\x17" 17643 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 17644 "\x20\x21\x22\x23\x24\x25\x26\x27" 17645 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 17646 "\x30\x31\x32\x33\x34\x35\x36\x37" 17647 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 17648 "\x40\x41\x42\x43\x44\x45\x46\x47" 17649 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 17650 "\x50\x51\x52\x53\x54\x55\x56\x57" 17651 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 17652 "\x60\x61\x62\x63\x64\x65\x66\x67" 17653 "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 17654 "\x70\x71\x72\x73\x74\x75\x76\x77" 17655 "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 17656 "\x80\x81\x82\x83\x84\x85\x86\x87" 17657 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 17658 "\x90\x91\x92\x93\x94\x95\x96\x97" 17659 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 17660 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 17661 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 17662 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 17663 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 17664 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 17665 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 17666 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 17667 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 17668 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 17669 "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 17670 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 17671 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff" 17672 "\x00\x03\x06\x09\x0c\x0f\x12\x15" 17673 "\x18\x1b\x1e\x21\x24\x27\x2a\x2d" 17674 "\x30\x33\x36\x39\x3c\x3f\x42\x45" 17675 "\x48\x4b\x4e\x51\x54\x57\x5a\x5d" 17676 "\x60\x63\x66\x69\x6c\x6f\x72\x75" 17677 "\x78\x7b\x7e\x81\x84\x87\x8a\x8d" 17678 "\x90\x93\x96\x99\x9c\x9f\xa2\xa5" 17679 "\xa8\xab\xae\xb1\xb4\xb7\xba\xbd" 17680 "\xc0\xc3\xc6\xc9\xcc\xcf\xd2\xd5" 17681 "\xd8\xdb\xde\xe1\xe4\xe7\xea\xed" 17682 "\xf0\xf3\xf6\xf9\xfc\xff\x02\x05" 17683 "\x08\x0b\x0e\x11\x14\x17\x1a\x1d" 17684 "\x20\x23\x26\x29\x2c\x2f\x32\x35" 17685 "\x38\x3b\x3e\x41\x44\x47\x4a\x4d" 17686 "\x50\x53\x56\x59\x5c\x5f\x62\x65" 17687 "\x68\x6b\x6e\x71\x74\x77\x7a\x7d" 17688 "\x80\x83\x86\x89\x8c\x8f\x92\x95" 17689 "\x98\x9b\x9e\xa1\xa4\xa7\xaa\xad" 17690 "\xb0\xb3\xb6\xb9\xbc\xbf\xc2\xc5" 17691 "\xc8\xcb\xce\xd1\xd4\xd7\xda\xdd" 17692 "\xe0\xe3\xe6\xe9\xec\xef\xf2\xf5" 17693 "\xf8\xfb\xfe\x01\x04\x07\x0a\x0d" 17694 "\x10\x13\x16\x19\x1c\x1f\x22\x25" 17695 "\x28\x2b\x2e\x31\x34\x37\x3a\x3d" 17696 "\x40\x43\x46\x49\x4c\x4f\x52\x55" 17697 "\x58\x5b\x5e\x61\x64\x67\x6a\x6d" 17698 "\x70\x73\x76\x79\x7c\x7f\x82\x85" 17699 "\x88\x8b\x8e\x91\x94\x97\x9a\x9d" 17700 "\xa0\xa3\xa6\xa9\xac\xaf\xb2\xb5" 17701 "\xb8\xbb\xbe\xc1\xc4\xc7\xca\xcd" 17702 "\xd0\xd3\xd6\xd9\xdc\xdf\xe2\xe5" 17703 "\xe8\xeb\xee\xf1\xf4\xf7\xfa\xfd" 17704 "\x00\x05\x0a\x0f\x14\x19\x1e\x23" 17705 "\x28\x2d\x32\x37\x3c\x41\x46\x4b" 17706 "\x50\x55\x5a\x5f\x64\x69\x6e\x73" 17707 "\x78\x7d\x82\x87\x8c\x91\x96\x9b" 17708 "\xa0\xa5\xaa\xaf\xb4\xb9\xbe\xc3" 17709 "\xc8\xcd\xd2\xd7\xdc\xe1\xe6\xeb" 17710 "\xf0\xf5\xfa\xff\x04\x09\x0e\x13" 17711 "\x18\x1d\x22\x27\x2c\x31\x36\x3b" 17712 "\x40\x45\x4a\x4f\x54\x59\x5e\x63" 17713 "\x68\x6d\x72\x77\x7c\x81\x86\x8b" 17714 "\x90\x95\x9a\x9f\xa4\xa9\xae\xb3" 17715 "\xb8\xbd\xc2\xc7\xcc\xd1\xd6\xdb" 17716 "\xe0\xe5\xea\xef\xf4\xf9\xfe\x03" 17717 "\x08\x0d\x12\x17\x1c\x21\x26\x2b" 17718 "\x30\x35\x3a\x3f\x44\x49\x4e\x53" 17719 "\x58\x5d\x62\x67\x6c\x71\x76\x7b" 17720 "\x80\x85\x8a\x8f\x94\x99\x9e\xa3" 17721 "\xa8\xad\xb2\xb7\xbc\xc1\xc6\xcb" 17722 "\xd0\xd5\xda\xdf\xe4\xe9\xee\xf3" 17723 "\xf8\xfd\x02\x07\x0c\x11\x16\x1b" 17724 "\x20\x25\x2a\x2f\x34\x39\x3e\x43" 17725 "\x48\x4d\x52\x57\x5c\x61\x66\x6b" 17726 "\x70\x75\x7a\x7f\x84\x89\x8e\x93" 17727 "\x98\x9d\xa2\xa7\xac\xb1\xb6\xbb" 17728 "\xc0\xc5\xca\xcf\xd4\xd9\xde\xe3" 17729 "\xe8\xed\xf2\xf7\xfc\x01\x06\x0b" 17730 "\x10\x15\x1a\x1f\x24\x29\x2e\x33" 17731 "\x38\x3d\x42\x47\x4c\x51\x56\x5b" 17732 "\x60\x65\x6a\x6f\x74\x79\x7e\x83" 17733 "\x88\x8d\x92\x97\x9c\xa1\xa6\xab" 17734 "\xb0\xb5\xba\xbf\xc4\xc9\xce\xd3" 17735 "\xd8\xdd\xe2\xe7\xec\xf1\xf6\xfb" 17736 "\x00\x07\x0e\x15\x1c\x23\x2a\x31" 17737 "\x38\x3f\x46\x4d\x54\x5b\x62\x69" 17738 "\x70\x77\x7e\x85\x8c\x93\x9a\xa1" 17739 "\xa8\xaf\xb6\xbd\xc4\xcb\xd2\xd9" 17740 "\xe0\xe7\xee\xf5\xfc\x03\x0a\x11" 17741 "\x18\x1f\x26\x2d\x34\x3b\x42\x49" 17742 "\x50\x57\x5e\x65\x6c\x73\x7a\x81" 17743 "\x88\x8f\x96\x9d\xa4\xab\xb2\xb9" 17744 "\xc0\xc7\xce\xd5\xdc\xe3\xea\xf1" 17745 "\xf8\xff\x06\x0d\x14\x1b\x22\x29" 17746 "\x30\x37\x3e\x45\x4c\x53\x5a\x61" 17747 "\x68\x6f\x76\x7d\x84\x8b\x92\x99" 17748 "\xa0\xa7\xae\xb5\xbc\xc3\xca\xd1" 17749 "\xd8\xdf\xe6\xed\xf4\xfb\x02\x09" 17750 "\x10\x17\x1e\x25\x2c\x33\x3a\x41" 17751 "\x48\x4f\x56\x5d\x64\x6b\x72\x79" 17752 "\x80\x87\x8e\x95\x9c\xa3\xaa\xb1" 17753 "\xb8\xbf\xc6\xcd\xd4\xdb\xe2\xe9" 17754 "\xf0\xf7\xfe\x05\x0c\x13\x1a\x21" 17755 "\x28\x2f\x36\x3d\x44\x4b\x52\x59" 17756 "\x60\x67\x6e\x75\x7c\x83\x8a\x91" 17757 "\x98\x9f\xa6\xad\xb4\xbb\xc2\xc9" 17758 "\xd0\xd7\xde\xe5\xec\xf3\xfa\x01" 17759 "\x08\x0f\x16\x1d\x24\x2b\x32\x39" 17760 "\x40\x47\x4e\x55\x5c\x63\x6a\x71" 17761 "\x78\x7f\x86\x8d\x94\x9b\xa2\xa9" 17762 "\xb0\xb7\xbe\xc5\xcc\xd3\xda\xe1" 17763 "\xe8\xef\xf6\xfd\x04\x0b\x12\x19" 17764 "\x20\x27\x2e\x35\x3c\x43\x4a\x51" 17765 "\x58\x5f\x66\x6d\x74\x7b\x82\x89" 17766 "\x90\x97\x9e\xa5\xac\xb3\xba\xc1" 17767 "\xc8\xcf\xd6\xdd\xe4\xeb\xf2\xf9" 17768 "\x00\x09\x12\x1b\x24\x2d\x36\x3f" 17769 "\x48\x51\x5a\x63\x6c\x75\x7e\x87" 17770 "\x90\x99\xa2\xab\xb4\xbd\xc6\xcf" 17771 "\xd8\xe1\xea\xf3\xfc\x05\x0e\x17" 17772 "\x20\x29\x32\x3b\x44\x4d\x56\x5f" 17773 "\x68\x71\x7a\x83\x8c\x95\x9e\xa7" 17774 "\xb0\xb9\xc2\xcb\xd4\xdd\xe6\xef" 17775 "\xf8\x01\x0a\x13\x1c\x25\x2e\x37" 17776 "\x40\x49\x52\x5b\x64\x6d\x76\x7f" 17777 "\x88\x91\x9a\xa3\xac\xb5\xbe\xc7" 17778 "\xd0\xd9\xe2\xeb\xf4\xfd\x06\x0f" 17779 "\x18\x21\x2a\x33\x3c\x45\x4e\x57" 17780 "\x60\x69\x72\x7b\x84\x8d\x96\x9f" 17781 "\xa8\xb1\xba\xc3\xcc\xd5\xde\xe7" 17782 "\xf0\xf9\x02\x0b\x14\x1d\x26\x2f" 17783 "\x38\x41\x4a\x53\x5c\x65\x6e\x77" 17784 "\x80\x89\x92\x9b\xa4\xad\xb6\xbf" 17785 "\xc8\xd1\xda\xe3\xec\xf5\xfe\x07" 17786 "\x10\x19\x22\x2b\x34\x3d\x46\x4f" 17787 "\x58\x61\x6a\x73\x7c\x85\x8e\x97" 17788 "\xa0\xa9\xb2\xbb\xc4\xcd\xd6\xdf" 17789 "\xe8\xf1\xfa\x03\x0c\x15\x1e\x27" 17790 "\x30\x39\x42\x4b\x54\x5d\x66\x6f" 17791 "\x78\x81\x8a\x93\x9c\xa5\xae\xb7" 17792 "\xc0\xc9\xd2\xdb\xe4\xed\xf6\xff" 17793 "\x08\x11\x1a\x23\x2c\x35\x3e\x47" 17794 "\x50\x59\x62\x6b\x74\x7d\x86\x8f" 17795 "\x98\xa1\xaa\xb3\xbc\xc5\xce\xd7" 17796 "\xe0\xe9\xf2\xfb\x04\x0d\x16\x1f" 17797 "\x28\x31\x3a\x43\x4c\x55\x5e\x67" 17798 "\x70\x79\x82\x8b\x94\x9d\xa6\xaf" 17799 "\xb8\xc1\xca\xd3\xdc\xe5\xee\xf7" 17800 "\x00\x0b\x16\x21\x2c\x37\x42\x4d" 17801 "\x58\x63\x6e\x79\x84\x8f\x9a\xa5" 17802 "\xb0\xbb\xc6\xd1\xdc\xe7\xf2\xfd" 17803 "\x08\x13\x1e\x29\x34\x3f\x4a\x55" 17804 "\x60\x6b\x76\x81\x8c\x97\xa2\xad" 17805 "\xb8\xc3\xce\xd9\xe4\xef\xfa\x05" 17806 "\x10\x1b\x26\x31\x3c\x47\x52\x5d" 17807 "\x68\x73\x7e\x89\x94\x9f\xaa\xb5" 17808 "\xc0\xcb\xd6\xe1\xec\xf7\x02\x0d" 17809 "\x18\x23\x2e\x39\x44\x4f\x5a\x65" 17810 "\x70\x7b\x86\x91\x9c\xa7\xb2\xbd" 17811 "\xc8\xd3\xde\xe9\xf4\xff\x0a\x15" 17812 "\x20\x2b\x36\x41\x4c\x57\x62\x6d" 17813 "\x78\x83\x8e\x99\xa4\xaf\xba\xc5" 17814 "\xd0\xdb\xe6\xf1\xfc\x07\x12\x1d" 17815 "\x28\x33\x3e\x49\x54\x5f\x6a\x75" 17816 "\x80\x8b\x96\xa1\xac\xb7\xc2\xcd" 17817 "\xd8\xe3\xee\xf9\x04\x0f\x1a\x25" 17818 "\x30\x3b\x46\x51\x5c\x67\x72\x7d" 17819 "\x88\x93\x9e\xa9\xb4\xbf\xca\xd5" 17820 "\xe0\xeb\xf6\x01\x0c\x17\x22\x2d" 17821 "\x38\x43\x4e\x59\x64\x6f\x7a\x85" 17822 "\x90\x9b\xa6\xb1\xbc\xc7\xd2\xdd" 17823 "\xe8\xf3\xfe\x09\x14\x1f\x2a\x35" 17824 "\x40\x4b\x56\x61\x6c\x77\x82\x8d" 17825 "\x98\xa3\xae\xb9\xc4\xcf\xda\xe5" 17826 "\xf0\xfb\x06\x11\x1c\x27\x32\x3d" 17827 "\x48\x53\x5e\x69\x74\x7f\x8a\x95" 17828 "\xa0\xab\xb6\xc1\xcc\xd7\xe2\xed" 17829 "\xf8\x03\x0e\x19\x24\x2f\x3a\x45" 17830 "\x50\x5b\x66\x71\x7c\x87\x92\x9d" 17831 "\xa8\xb3\xbe\xc9\xd4\xdf\xea\xf5" 17832 "\x00\x0d\x1a\x27\x34\x41\x4e\x5b" 17833 "\x68\x75\x82\x8f\x9c\xa9\xb6\xc3" 17834 "\xd0\xdd\xea\xf7\x04\x11\x1e\x2b" 17835 "\x38\x45\x52\x5f\x6c\x79\x86\x93" 17836 "\xa0\xad\xba\xc7\xd4\xe1\xee\xfb" 17837 "\x08\x15\x22\x2f\x3c\x49\x56\x63" 17838 "\x70\x7d\x8a\x97\xa4\xb1\xbe\xcb" 17839 "\xd8\xe5\xf2\xff\x0c\x19\x26\x33" 17840 "\x40\x4d\x5a\x67\x74\x81\x8e\x9b" 17841 "\xa8\xb5\xc2\xcf\xdc\xe9\xf6\x03" 17842 "\x10\x1d\x2a\x37\x44\x51\x5e\x6b" 17843 "\x78\x85\x92\x9f\xac\xb9\xc6\xd3" 17844 "\xe0\xed\xfa\x07\x14\x21\x2e\x3b" 17845 "\x48\x55\x62\x6f\x7c\x89\x96\xa3" 17846 "\xb0\xbd\xca\xd7\xe4\xf1\xfe\x0b" 17847 "\x18\x25\x32\x3f\x4c\x59\x66\x73" 17848 "\x80\x8d\x9a\xa7\xb4\xc1\xce\xdb" 17849 "\xe8\xf5\x02\x0f\x1c\x29\x36\x43" 17850 "\x50\x5d\x6a\x77\x84\x91\x9e\xab" 17851 "\xb8\xc5\xd2\xdf\xec\xf9\x06\x13" 17852 "\x20\x2d\x3a\x47\x54\x61\x6e\x7b" 17853 "\x88\x95\xa2\xaf\xbc\xc9\xd6\xe3" 17854 "\xf0\xfd\x0a\x17\x24\x31\x3e\x4b" 17855 "\x58\x65\x72\x7f\x8c\x99\xa6\xb3" 17856 "\xc0\xcd\xda\xe7\xf4\x01\x0e\x1b" 17857 "\x28\x35\x42\x4f\x5c\x69\x76\x83" 17858 "\x90\x9d\xaa\xb7\xc4\xd1\xde\xeb" 17859 "\xf8\x05\x12\x1f\x2c\x39\x46\x53" 17860 "\x60\x6d\x7a\x87\x94\xa1\xae\xbb" 17861 "\xc8\xd5\xe2\xef\xfc\x09\x16\x23" 17862 "\x30\x3d\x4a\x57\x64\x71\x7e\x8b" 17863 "\x98\xa5\xb2\xbf\xcc\xd9\xe6\xf3" 17864 "\x00\x0f\x1e\x2d\x3c\x4b\x5a\x69" 17865 "\x78\x87\x96\xa5\xb4\xc3\xd2\xe1" 17866 "\xf0\xff\x0e\x1d\x2c\x3b\x4a\x59" 17867 "\x68\x77\x86\x95\xa4\xb3\xc2\xd1" 17868 "\xe0\xef\xfe\x0d\x1c\x2b\x3a\x49" 17869 "\x58\x67\x76\x85\x94\xa3\xb2\xc1" 17870 "\xd0\xdf\xee\xfd\x0c\x1b\x2a\x39" 17871 "\x48\x57\x66\x75\x84\x93\xa2\xb1" 17872 "\xc0\xcf\xde\xed\xfc\x0b\x1a\x29" 17873 "\x38\x47\x56\x65\x74\x83\x92\xa1" 17874 "\xb0\xbf\xce\xdd\xec\xfb\x0a\x19" 17875 "\x28\x37\x46\x55\x64\x73\x82\x91" 17876 "\xa0\xaf\xbe\xcd\xdc\xeb\xfa\x09" 17877 "\x18\x27\x36\x45\x54\x63\x72\x81" 17878 "\x90\x9f\xae\xbd\xcc\xdb\xea\xf9" 17879 "\x08\x17\x26\x35\x44\x53\x62\x71" 17880 "\x80\x8f\x9e\xad\xbc\xcb\xda\xe9" 17881 "\xf8\x07\x16\x25\x34\x43\x52\x61" 17882 "\x70\x7f\x8e\x9d\xac\xbb\xca\xd9" 17883 "\xe8\xf7\x06\x15\x24\x33\x42\x51" 17884 "\x60\x6f\x7e\x8d\x9c\xab\xba\xc9" 17885 "\xd8\xe7\xf6\x05\x14\x23\x32\x41" 17886 "\x50\x5f\x6e\x7d\x8c\x9b\xaa\xb9" 17887 "\xc8\xd7\xe6\xf5\x04\x13\x22\x31" 17888 "\x40\x4f\x5e\x6d\x7c\x8b\x9a\xa9" 17889 "\xb8\xc7\xd6\xe5\xf4\x03\x12\x21" 17890 "\x30\x3f\x4e\x5d\x6c\x7b\x8a\x99" 17891 "\xa8\xb7\xc6\xd5\xe4\xf3\x02\x11" 17892 "\x20\x2f\x3e\x4d\x5c\x6b\x7a\x89" 17893 "\x98\xa7\xb6\xc5\xd4\xe3\xf2\x01" 17894 "\x10\x1f\x2e\x3d\x4c\x5b\x6a\x79" 17895 "\x88\x97\xa6\xb5\xc4\xd3\xe2\xf1" 17896 "\x00\x11\x22\x33\x44\x55\x66\x77" 17897 "\x88\x99\xaa\xbb\xcc\xdd\xee\xff" 17898 "\x10\x21\x32\x43\x54\x65\x76\x87" 17899 "\x98\xa9\xba\xcb\xdc\xed\xfe\x0f" 17900 "\x20\x31\x42\x53\x64\x75\x86\x97" 17901 "\xa8\xb9\xca\xdb\xec\xfd\x0e\x1f" 17902 "\x30\x41\x52\x63\x74\x85\x96\xa7" 17903 "\xb8\xc9\xda\xeb\xfc\x0d\x1e\x2f" 17904 "\x40\x51\x62\x73\x84\x95\xa6\xb7" 17905 "\xc8\xd9\xea\xfb\x0c\x1d\x2e\x3f" 17906 "\x50\x61\x72\x83\x94\xa5\xb6\xc7" 17907 "\xd8\xe9\xfa\x0b\x1c\x2d\x3e\x4f" 17908 "\x60\x71\x82\x93\xa4\xb5\xc6\xd7" 17909 "\xe8\xf9\x0a\x1b\x2c\x3d\x4e\x5f" 17910 "\x70\x81\x92\xa3\xb4\xc5\xd6\xe7" 17911 "\xf8\x09\x1a\x2b\x3c\x4d\x5e\x6f" 17912 "\x80\x91\xa2\xb3\xc4\xd5\xe6\xf7" 17913 "\x08\x19\x2a\x3b\x4c\x5d\x6e\x7f" 17914 "\x90\xa1\xb2\xc3\xd4\xe5\xf6\x07" 17915 "\x18\x29\x3a\x4b\x5c\x6d\x7e\x8f" 17916 "\xa0\xb1\xc2\xd3\xe4\xf5\x06\x17" 17917 "\x28\x39\x4a\x5b\x6c\x7d\x8e\x9f" 17918 "\xb0\xc1\xd2\xe3\xf4\x05\x16\x27" 17919 "\x38\x49\x5a\x6b\x7c\x8d\x9e\xaf" 17920 "\xc0\xd1\xe2\xf3\x04\x15\x26\x37" 17921 "\x48\x59\x6a\x7b\x8c\x9d\xae\xbf" 17922 "\xd0\xe1\xf2\x03\x14\x25\x36\x47" 17923 "\x58\x69\x7a\x8b\x9c\xad\xbe\xcf" 17924 "\xe0\xf1\x02\x13\x24\x35\x46\x57" 17925 "\x68\x79\x8a\x9b\xac\xbd\xce\xdf" 17926 "\xf0\x01\x12\x23\x34\x45\x56\x67" 17927 "\x78\x89\x9a\xab\xbc\xcd\xde\xef" 17928 "\x00\x13\x26\x39\x4c\x5f\x72\x85" 17929 "\x98\xab\xbe\xd1\xe4\xf7\x0a\x1d" 17930 "\x30\x43\x56\x69\x7c\x8f\xa2\xb5" 17931 "\xc8\xdb\xee\x01\x14\x27\x3a\x4d" 17932 "\x60\x73\x86\x99\xac\xbf\xd2\xe5" 17933 "\xf8\x0b\x1e\x31\x44\x57\x6a\x7d" 17934 "\x90\xa3\xb6\xc9\xdc\xef\x02\x15" 17935 "\x28\x3b\x4e\x61\x74\x87\x9a\xad" 17936 "\xc0\xd3\xe6\xf9\x0c\x1f\x32\x45" 17937 "\x58\x6b\x7e\x91\xa4\xb7\xca\xdd" 17938 "\xf0\x03\x16\x29\x3c\x4f\x62\x75" 17939 "\x88\x9b\xae\xc1\xd4\xe7\xfa\x0d" 17940 "\x20\x33\x46\x59\x6c\x7f\x92\xa5" 17941 "\xb8\xcb\xde\xf1\x04\x17\x2a\x3d" 17942 "\x50\x63\x76\x89\x9c\xaf\xc2\xd5" 17943 "\xe8\xfb\x0e\x21\x34\x47\x5a\x6d" 17944 "\x80\x93\xa6\xb9\xcc\xdf\xf2\x05" 17945 "\x18\x2b\x3e\x51\x64\x77\x8a\x9d" 17946 "\xb0\xc3\xd6\xe9\xfc\x0f\x22\x35" 17947 "\x48\x5b\x6e\x81\x94\xa7\xba\xcd" 17948 "\xe0\xf3\x06\x19\x2c\x3f\x52\x65" 17949 "\x78\x8b\x9e\xb1\xc4\xd7\xea\xfd" 17950 "\x10\x23\x36\x49\x5c\x6f\x82\x95" 17951 "\xa8\xbb\xce\xe1\xf4\x07\x1a\x2d" 17952 "\x40\x53\x66\x79\x8c\x9f\xb2\xc5" 17953 "\xd8\xeb\xfe\x11\x24\x37\x4a\x5d" 17954 "\x70\x83\x96\xa9\xbc\xcf\xe2\xf5" 17955 "\x08\x1b\x2e\x41\x54\x67\x7a\x8d" 17956 "\xa0\xb3\xc6\xd9\xec\xff\x12\x25" 17957 "\x38\x4b\x5e\x71\x84\x97\xaa\xbd" 17958 "\xd0\xe3\xf6\x09\x1c\x2f\x42\x55" 17959 "\x68\x7b\x8e\xa1\xb4\xc7\xda\xed" 17960 "\x00\x15\x2a\x3f\x54\x69\x7e\x93" 17961 "\xa8\xbd\xd2\xe7\xfc\x11\x26\x3b" 17962 "\x50\x65\x7a\x8f\xa4\xb9\xce\xe3" 17963 "\xf8\x0d\x22\x37\x4c\x61\x76\x8b" 17964 "\xa0\xb5\xca\xdf\xf4\x09\x1e\x33" 17965 "\x48\x5d\x72\x87\x9c\xb1\xc6\xdb" 17966 "\xf0\x05\x1a\x2f\x44\x59\x6e\x83" 17967 "\x98\xad\xc2\xd7\xec\x01\x16\x2b" 17968 "\x40\x55\x6a\x7f\x94\xa9\xbe\xd3" 17969 "\xe8\xfd\x12\x27\x3c\x51\x66\x7b" 17970 "\x90\xa5\xba\xcf\xe4\xf9\x0e\x23" 17971 "\x38\x4d\x62\x77\x8c\xa1\xb6\xcb" 17972 "\xe0\xf5\x0a\x1f\x34\x49\x5e\x73" 17973 "\x88\x9d\xb2\xc7\xdc\xf1\x06\x1b" 17974 "\x30\x45\x5a\x6f\x84\x99\xae\xc3" 17975 "\xd8\xed\x02\x17\x2c\x41\x56\x6b" 17976 "\x80\x95\xaa\xbf\xd4\xe9\xfe\x13" 17977 "\x28\x3d\x52\x67\x7c\x91\xa6\xbb" 17978 "\xd0\xe5\xfa\x0f\x24\x39\x4e\x63" 17979 "\x78\x8d\xa2\xb7\xcc\xe1\xf6\x0b" 17980 "\x20\x35\x4a\x5f\x74\x89\x9e\xb3" 17981 "\xc8\xdd\xf2\x07\x1c\x31\x46\x5b" 17982 "\x70\x85\x9a\xaf\xc4\xd9\xee\x03" 17983 "\x18\x2d\x42\x57\x6c\x81\x96\xab" 17984 "\xc0\xd5\xea\xff\x14\x29\x3e\x53" 17985 "\x68\x7d\x92\xa7\xbc\xd1\xe6\xfb" 17986 "\x10\x25\x3a\x4f\x64\x79\x8e\xa3" 17987 "\xb8\xcd\xe2\xf7\x0c\x21\x36\x4b" 17988 "\x60\x75\x8a\x9f\xb4\xc9\xde\xf3" 17989 "\x08\x1d\x32\x47\x5c\x71\x86\x9b" 17990 "\xb0\xc5\xda\xef\x04\x19\x2e\x43" 17991 "\x58\x6d\x82\x97\xac\xc1\xd6\xeb" 17992 "\x00\x17\x2e\x45\x5c\x73\x8a\xa1" 17993 "\xb8\xcf\xe6\xfd\x14\x2b\x42\x59" 17994 "\x70\x87\x9e\xb5\xcc\xe3\xfa\x11" 17995 "\x28\x3f\x56\x6d\x84\x9b\xb2\xc9" 17996 "\xe0\xf7\x0e\x25\x3c\x53\x6a\x81" 17997 "\x98\xaf\xc6\xdd\xf4\x0b\x22\x39" 17998 "\x50\x67\x7e\x95\xac\xc3\xda\xf1" 17999 "\x08\x1f\x36\x4d\x64\x7b\x92\xa9" 18000 "\xc0\xd7\xee\x05\x1c\x33\x4a\x61" 18001 "\x78\x8f\xa6\xbd\xd4\xeb\x02\x19" 18002 "\x30\x47\x5e\x75\x8c\xa3\xba\xd1" 18003 "\xe8\xff\x16\x2d\x44\x5b\x72\x89" 18004 "\xa0\xb7\xce\xe5\xfc\x13\x2a\x41" 18005 "\x58\x6f\x86\x9d\xb4\xcb\xe2\xf9" 18006 "\x10\x27\x3e\x55\x6c\x83\x9a\xb1" 18007 "\xc8\xdf\xf6\x0d\x24\x3b\x52\x69" 18008 "\x80\x97\xae\xc5\xdc\xf3\x0a\x21" 18009 "\x38\x4f\x66\x7d\x94\xab\xc2\xd9" 18010 "\xf0\x07\x1e\x35\x4c\x63\x7a\x91" 18011 "\xa8\xbf\xd6\xed\x04\x1b\x32\x49" 18012 "\x60\x77\x8e\xa5\xbc\xd3\xea\x01" 18013 "\x18\x2f\x46\x5d\x74\x8b\xa2\xb9" 18014 "\xd0\xe7\xfe\x15\x2c\x43\x5a\x71" 18015 "\x88\x9f\xb6\xcd\xe4\xfb\x12\x29" 18016 "\x40\x57\x6e\x85\x9c\xb3\xca\xe1" 18017 "\xf8\x0f\x26\x3d\x54\x6b\x82\x99" 18018 "\xb0\xc7\xde\xf5\x0c\x23\x3a\x51" 18019 "\x68\x7f\x96\xad\xc4\xdb\xf2\x09" 18020 "\x20\x37\x4e\x65\x7c\x93\xaa\xc1" 18021 "\xd8\xef\x06\x1d\x34\x4b\x62\x79" 18022 "\x90\xa7\xbe\xd5\xec\x03\x1a\x31" 18023 "\x48\x5f\x76\x8d\xa4\xbb\xd2\xe9" 18024 "\x00\x19\x32\x4b\x64\x7d\x96\xaf" 18025 "\xc8\xe1\xfa\x13\x2c\x45\x5e\x77" 18026 "\x90\xa9\xc2\xdb\xf4\x0d\x26\x3f" 18027 "\x58\x71\x8a\xa3\xbc\xd5\xee\x07" 18028 "\x20\x39\x52\x6b\x84\x9d\xb6\xcf" 18029 "\xe8\x01\x1a\x33\x4c\x65\x7e\x97" 18030 "\xb0\xc9\xe2\xfb\x14\x2d\x46\x5f" 18031 "\x78\x91\xaa\xc3\xdc\xf5\x0e\x27" 18032 "\x40\x59\x72\x8b\xa4\xbd\xd6\xef" 18033 "\x08\x21\x3a\x53\x6c\x85\x9e\xb7" 18034 "\xd0\xe9\x02\x1b\x34\x4d\x66\x7f" 18035 "\x98\xb1\xca\xe3\xfc\x15\x2e\x47" 18036 "\x60\x79\x92\xab\xc4\xdd\xf6\x0f" 18037 "\x28\x41\x5a\x73\x8c\xa5\xbe\xd7" 18038 "\xf0\x09\x22\x3b\x54\x6d\x86\x9f" 18039 "\xb8\xd1\xea\x03\x1c\x35\x4e\x67" 18040 "\x80\x99\xb2\xcb\xe4\xfd\x16\x2f" 18041 "\x48\x61\x7a\x93\xac\xc5\xde\xf7" 18042 "\x10\x29\x42\x5b\x74\x8d\xa6\xbf" 18043 "\xd8\xf1\x0a\x23\x3c\x55\x6e\x87" 18044 "\xa0\xb9\xd2\xeb\x04\x1d\x36\x4f" 18045 "\x68\x81\x9a\xb3\xcc\xe5\xfe\x17" 18046 "\x30\x49\x62\x7b\x94\xad\xc6\xdf" 18047 "\xf8\x11\x2a\x43\x5c\x75\x8e\xa7" 18048 "\xc0\xd9\xf2\x0b\x24\x3d\x56\x6f" 18049 "\x88\xa1\xba\xd3\xec\x05\x1e\x37" 18050 "\x50\x69\x82\x9b\xb4\xcd\xe6\xff" 18051 "\x18\x31\x4a\x63\x7c\x95\xae\xc7" 18052 "\xe0\xf9\x12\x2b\x44\x5d\x76\x8f" 18053 "\xa8\xc1\xda\xf3\x0c\x25\x3e\x57" 18054 "\x70\x89\xa2\xbb\xd4\xed\x06\x1f" 18055 "\x38\x51\x6a\x83\x9c\xb5\xce\xe7" 18056 "\x00\x1b\x36\x51\x6c\x87\xa2\xbd" 18057 "\xd8\xf3\x0e\x29\x44\x5f\x7a\x95" 18058 "\xb0\xcb\xe6\x01\x1c\x37\x52\x6d" 18059 "\x88\xa3\xbe\xd9\xf4\x0f\x2a\x45" 18060 "\x60\x7b\x96\xb1\xcc\xe7\x02\x1d" 18061 "\x38\x53\x6e\x89\xa4\xbf\xda\xf5" 18062 "\x10\x2b\x46\x61\x7c\x97\xb2\xcd" 18063 "\xe8\x03\x1e\x39\x54\x6f\x8a\xa5" 18064 "\xc0\xdb\xf6\x11\x2c\x47\x62\x7d" 18065 "\x98\xb3\xce\xe9\x04\x1f\x3a\x55" 18066 "\x70\x8b\xa6\xc1\xdc\xf7\x12\x2d" 18067 "\x48\x63\x7e\x99\xb4\xcf\xea\x05" 18068 "\x20\x3b\x56\x71\x8c\xa7\xc2\xdd" 18069 "\xf8\x13\x2e\x49\x64\x7f\x9a\xb5" 18070 "\xd0\xeb\x06\x21\x3c\x57\x72\x8d" 18071 "\xa8\xc3\xde\xf9\x14\x2f\x4a\x65" 18072 "\x80\x9b\xb6\xd1\xec\x07\x22\x3d" 18073 "\x58\x73\x8e\xa9\xc4\xdf\xfa\x15" 18074 "\x30\x4b\x66\x81\x9c\xb7\xd2\xed" 18075 "\x08\x23\x3e\x59\x74\x8f\xaa\xc5" 18076 "\xe0\xfb\x16\x31\x4c\x67\x82\x9d" 18077 "\xb8\xd3\xee\x09\x24\x3f\x5a\x75" 18078 "\x90\xab\xc6\xe1\xfc\x17\x32\x4d" 18079 "\x68\x83\x9e\xb9\xd4\xef\x0a\x25" 18080 "\x40\x5b\x76\x91\xac\xc7\xe2\xfd" 18081 "\x18\x33\x4e\x69\x84\x9f\xba\xd5" 18082 "\xf0\x0b\x26\x41\x5c\x77\x92\xad" 18083 "\xc8\xe3\xfe\x19\x34\x4f\x6a\x85" 18084 "\xa0\xbb\xd6\xf1\x0c\x27\x42\x5d" 18085 "\x78\x93\xae\xc9\xe4\xff\x1a\x35" 18086 "\x50\x6b\x86\xa1\xbc\xd7\xf2\x0d" 18087 "\x28\x43\x5e\x79\x94\xaf\xca\xe5" 18088 "\x00\x1d\x3a\x57\x74\x91\xae\xcb" 18089 "\xe8\x05\x22\x3f\x5c\x79\x96\xb3" 18090 "\xd0\xed\x0a\x27\x44\x61\x7e\x9b" 18091 "\xb8\xd5\xf2\x0f\x2c\x49\x66\x83" 18092 "\xa0\xbd\xda\xf7\x14\x31\x4e\x6b" 18093 "\x88\xa5\xc2\xdf\xfc\x19\x36\x53" 18094 "\x70\x8d\xaa\xc7\xe4\x01\x1e\x3b" 18095 "\x58\x75\x92\xaf\xcc\xe9\x06\x23" 18096 "\x40\x5d\x7a\x97\xb4\xd1\xee\x0b" 18097 "\x28\x45\x62\x7f\x9c\xb9\xd6\xf3" 18098 "\x10\x2d\x4a\x67\x84\xa1\xbe\xdb" 18099 "\xf8\x15\x32\x4f\x6c\x89\xa6\xc3" 18100 "\xe0\xfd\x1a\x37\x54\x71\x8e\xab" 18101 "\xc8\xe5\x02\x1f\x3c\x59\x76\x93" 18102 "\xb0\xcd\xea\x07\x24\x41\x5e\x7b" 18103 "\x98\xb5\xd2\xef\x0c\x29\x46\x63" 18104 "\x80\x9d\xba\xd7\xf4\x11\x2e\x4b" 18105 "\x68\x85\xa2\xbf\xdc\xf9\x16\x33" 18106 "\x50\x6d\x8a\xa7\xc4\xe1\xfe\x1b" 18107 "\x38\x55\x72\x8f\xac\xc9\xe6\x03" 18108 "\x20\x3d\x5a\x77\x94\xb1\xce\xeb" 18109 "\x08\x25\x42\x5f\x7c\x99\xb6\xd3" 18110 "\xf0\x0d\x2a\x47\x64\x81\x9e\xbb" 18111 "\xd8\xf5\x12\x2f\x4c\x69\x86\xa3" 18112 "\xc0\xdd\xfa\x17\x34\x51\x6e\x8b" 18113 "\xa8\xc5\xe2\xff\x1c\x39\x56\x73" 18114 "\x90\xad\xca\xe7\x04\x21\x3e\x5b" 18115 "\x78\x95\xb2\xcf\xec\x09\x26\x43" 18116 "\x60\x7d\x9a\xb7\xd4\xf1\x0e\x2b" 18117 "\x48\x65\x82\x9f\xbc\xd9\xf6\x13" 18118 "\x30\x4d\x6a\x87\xa4\xc1\xde\xfb" 18119 "\x18\x35\x52\x6f\x8c\xa9\xc6\xe3" 18120 "\x00\x1f\x3e\x5d\x7c\x9b\xba\xd9" 18121 "\xf8\x17\x36\x55\x74\x93\xb2\xd1" 18122 "\xf0\x0f\x2e\x4d\x6c\x8b\xaa\xc9" 18123 "\xe8\x07\x26\x45\x64\x83\xa2\xc1" 18124 "\xe0\xff\x1e\x3d\x5c\x7b\x9a\xb9" 18125 "\xd8\xf7\x16\x35\x54\x73\x92\xb1" 18126 "\xd0\xef\x0e\x2d\x4c\x6b\x8a\xa9" 18127 "\xc8\xe7\x06\x25\x44\x63\x82\xa1" 18128 "\xc0\xdf\xfe\x1d\x3c\x5b\x7a\x99" 18129 "\xb8\xd7\xf6\x15\x34\x53\x72\x91" 18130 "\xb0\xcf\xee\x0d\x2c\x4b\x6a\x89" 18131 "\xa8\xc7\xe6\x05\x24\x43\x62\x81" 18132 "\xa0\xbf\xde\xfd\x1c\x3b\x5a\x79" 18133 "\x98\xb7\xd6\xf5\x14\x33\x52\x71" 18134 "\x90\xaf\xce\xed\x0c\x2b\x4a\x69" 18135 "\x88\xa7\xc6\xe5\x04\x23\x42\x61" 18136 "\x80\x9f\xbe\xdd\xfc\x1b\x3a\x59" 18137 "\x78\x97\xb6\xd5\xf4\x13\x32\x51" 18138 "\x70\x8f\xae\xcd\xec\x0b\x2a\x49" 18139 "\x68\x87\xa6\xc5\xe4\x03\x22\x41" 18140 "\x60\x7f\x9e\xbd\xdc\xfb\x1a\x39" 18141 "\x58\x77\x96\xb5\xd4\xf3\x12\x31" 18142 "\x50\x6f\x8e\xad\xcc\xeb\x0a\x29" 18143 "\x48\x67\x86\xa5\xc4\xe3\x02\x21" 18144 "\x40\x5f\x7e\x9d\xbc\xdb\xfa\x19" 18145 "\x38\x57\x76\x95\xb4\xd3\xf2\x11" 18146 "\x30\x4f\x6e\x8d\xac\xcb\xea\x09" 18147 "\x28\x47\x66\x85\xa4\xc3\xe2\x01" 18148 "\x20\x3f\x5e\x7d\x9c\xbb\xda\xf9" 18149 "\x18\x37\x56\x75\x94\xb3\xd2\xf1" 18150 "\x10\x2f\x4e\x6d\x8c\xab\xca\xe9" 18151 "\x08\x27\x46\x65\x84\xa3\xc2\xe1" 18152 "\x00\x21\x42\x63", 18153 .ctext = 18154 "\xf0\x5c\x74\xad\x4e\xbc\x99\xe2" 18155 "\xae\xff\x91\x3a\x44\xcf\x38\x32" 18156 "\x1e\xad\xa7\xcd\xa1\x39\x95\xaa" 18157 "\x10\xb1\xb3\x2e\x04\x31\x8f\x86" 18158 "\xf2\x62\x74\x70\x0c\xa4\x46\x08" 18159 "\xa8\xb7\x99\xa8\xe9\xd2\x73\x79" 18160 "\x7e\x6e\xd4\x8f\x1e\xc7\x8e\x31" 18161 "\x0b\xfa\x4b\xce\xfd\xf3\x57\x71" 18162 "\xe9\x46\x03\xa5\x3d\x34\x00\xe2" 18163 "\x18\xff\x75\x6d\x06\x2d\x00\xab" 18164 "\xb9\x3e\x6c\x59\xc5\x84\x06\xb5" 18165 "\x8b\xd0\x89\x9c\x4a\x79\x16\xc6" 18166 "\x3d\x74\x54\xfa\x44\xcd\x23\x26" 18167 "\x5c\xcf\x7e\x28\x92\x32\xbf\xdf" 18168 "\xa7\x20\x3c\x74\x58\x2a\x9a\xde" 18169 "\x61\x00\x1c\x4f\xff\x59\xc4\x22" 18170 "\xac\x3c\xd0\xe8\x6c\xf9\x97\x1b" 18171 "\x58\x9b\xad\x71\xe8\xa9\xb5\x0d" 18172 "\xee\x2f\x04\x1f\x7f\xbc\x99\xee" 18173 "\x84\xff\x42\x60\xdc\x3a\x18\xa5" 18174 "\x81\xf9\xef\xdc\x7a\x0f\x65\x41" 18175 "\x2f\xa3\xd3\xf9\xc2\xcb\xc0\x4d" 18176 "\x8f\xd3\x76\x96\xad\x49\x6d\x38" 18177 "\x3d\x39\x0b\x6c\x80\xb7\x54\x69" 18178 "\xf0\x2c\x90\x02\x29\x0d\x1c\x12" 18179 "\xad\x55\xc3\x8b\x68\xd9\xcc\xb3" 18180 "\xb2\x64\x33\x90\x5e\xca\x4b\xe2" 18181 "\xfb\x75\xdc\x63\xf7\x9f\x82\x74" 18182 "\xf0\xc9\xaa\x7f\xe9\x2a\x9b\x33" 18183 "\xbc\x88\x00\x7f\xca\xb2\x1f\x14" 18184 "\xdb\xc5\x8e\x7b\x11\x3c\x3e\x08" 18185 "\xf3\x83\xe8\xe0\x94\x86\x2e\x92" 18186 "\x78\x6b\x01\xc9\xc7\x83\xba\x21" 18187 "\x6a\x25\x15\x33\x4e\x45\x08\xec" 18188 "\x35\xdb\xe0\x6e\x31\x51\x79\xa9" 18189 "\x42\x44\x65\xc1\xa0\xf1\xf9\x2a" 18190 "\x70\xd5\xb6\xc6\xc1\x8c\x39\xfc" 18191 "\x25\xa6\x55\xd9\xdd\x2d\x4c\xec" 18192 "\x49\xc6\xeb\x0e\xa8\x25\x2a\x16" 18193 "\x1b\x66\x84\xda\xe2\x92\xe5\xc0" 18194 "\xc8\x53\x07\xaf\x80\x84\xec\xfd" 18195 "\xcd\xd1\x6e\xcd\x6f\x6a\xf5\x36" 18196 "\xc5\x15\xe5\x25\x7d\x77\xd1\x1a" 18197 "\x93\x36\xa9\xcf\x7c\xa4\x54\x4a" 18198 "\x06\x51\x48\x4e\xf6\x59\x87\xd2" 18199 "\x04\x02\xef\xd3\x44\xde\x76\x31" 18200 "\xb3\x34\x17\x1b\x9d\x66\x11\x9f" 18201 "\x1e\xcc\x17\xe9\xc7\x3c\x1b\xe7" 18202 "\xcb\x50\x08\xfc\xdc\x2b\x24\xdb" 18203 "\x65\x83\xd0\x3b\xe3\x30\xea\x94" 18204 "\x6c\xe7\xe8\x35\x32\xc7\xdb\x64" 18205 "\xb4\x01\xab\x36\x2c\x77\x13\xaf" 18206 "\xf8\x2b\x88\x3f\x54\x39\xc4\x44" 18207 "\xfe\xef\x6f\x68\x34\xbe\x0f\x05" 18208 "\x16\x6d\xf6\x0a\x30\xe7\xe3\xed" 18209 "\xc4\xde\x3c\x1b\x13\xd8\xdb\xfe" 18210 "\x41\x62\xe5\x28\xd4\x8d\xa3\xc7" 18211 "\x93\x97\xc6\x48\x45\x1d\x9f\x83" 18212 "\xdf\x4b\x40\x3e\x42\x25\x87\x80" 18213 "\x4c\x7d\xa8\xd4\x98\x23\x95\x75" 18214 "\x41\x8c\xda\x41\x9b\xd4\xa7\x06" 18215 "\xb5\xf1\x71\x09\x53\xbe\xca\xbf" 18216 "\x32\x03\xed\xf0\x50\x1c\x56\x39" 18217 "\x5b\xa4\x75\x18\xf7\x9b\x58\xef" 18218 "\x53\xfc\x2a\x38\x23\x15\x75\xcd" 18219 "\x45\xe5\x5a\x82\x55\xba\x21\xfa" 18220 "\xd4\xbd\xc6\x94\x7c\xc5\x80\x12" 18221 "\xf7\x4b\x32\xc4\x9a\x82\xd8\x28" 18222 "\x8f\xd9\xc2\x0f\x60\x03\xbe\x5e" 18223 "\x21\xd6\x5f\x58\xbf\x5c\xb1\x32" 18224 "\x82\x8d\xa9\xe5\xf2\x66\x1a\xc0" 18225 "\xa0\xbc\x58\x2f\x71\xf5\x2f\xed" 18226 "\xd1\x26\xb9\xd8\x49\x5a\x07\x19" 18227 "\x01\x7c\x59\xb0\xf8\xa4\xb7\xd3" 18228 "\x7b\x1a\x8c\x38\xf4\x50\xa4\x59" 18229 "\xb0\xcc\x41\x0b\x88\x7f\xe5\x31" 18230 "\xb3\x42\xba\xa2\x7e\xd4\x32\x71" 18231 "\x45\x87\x48\xa9\xc2\xf2\x89\xb3" 18232 "\xe4\xa7\x7e\x52\x15\x61\xfa\xfe" 18233 "\xc9\xdd\x81\xeb\x13\xab\xab\xc3" 18234 "\x98\x59\xd8\x16\x3d\x14\x7a\x1c" 18235 "\x3c\x41\x9a\x16\x16\x9b\xd2\xd2" 18236 "\x69\x3a\x29\x23\xac\x86\x32\xa5" 18237 "\x48\x9c\x9e\xf3\x47\x77\x81\x70" 18238 "\x24\xe8\x85\xd2\xf5\xb5\xfa\xff" 18239 "\x59\x6a\xd3\x50\x59\x43\x59\xde" 18240 "\xd9\xf1\x55\xa5\x0c\xc3\x1a\x1a" 18241 "\x18\x34\x0d\x1a\x63\x33\xed\x10" 18242 "\xe0\x1d\x2a\x18\xd2\xc0\x54\xa8" 18243 "\xca\xb5\x9a\xd3\xdd\xca\x45\x84" 18244 "\x50\xe7\x0f\xfe\xa4\x99\x5a\xbe" 18245 "\x43\x2d\x9a\xcb\x92\x3f\x5a\x1d" 18246 "\x85\xd8\xc9\xdf\x68\xc9\x12\x80" 18247 "\x56\x0c\xdc\x00\xdc\x3a\x7d\x9d" 18248 "\xa3\xa2\xe8\x4d\xbf\xf9\x70\xa0" 18249 "\xa4\x13\x4f\x6b\xaf\x0a\x89\x7f" 18250 "\xda\xf0\xbf\x9b\xc8\x1d\xe5\xf8" 18251 "\x2e\x8b\x07\xb5\x73\x1b\xcc\xa2" 18252 "\xa6\xad\x30\xbc\x78\x3c\x5b\x10" 18253 "\xfa\x5e\x62\x2d\x9e\x64\xb3\x33" 18254 "\xce\xf9\x1f\x86\xe7\x8b\xa2\xb8" 18255 "\xe8\x99\x57\x8c\x11\xed\x66\xd9" 18256 "\x3c\x72\xb9\xc3\xe6\x4e\x17\x3a" 18257 "\x6a\xcb\x42\x24\x06\xed\x3e\x4e" 18258 "\xa3\xe8\x6a\x94\xda\x0d\x4e\xd5" 18259 "\x14\x19\xcf\xb6\x26\xd8\x2e\xcc" 18260 "\x64\x76\x38\x49\x4d\xfe\x30\x6d" 18261 "\xe4\xc8\x8c\x7b\xc4\xe0\x35\xba" 18262 "\x22\x6e\x76\xe1\x1a\xf2\x53\xc3" 18263 "\x28\xa2\x82\x1f\x61\x69\xad\xc1" 18264 "\x7b\x28\x4b\x1e\x6c\x85\x95\x9b" 18265 "\x51\xb5\x17\x7f\x12\x69\x8c\x24" 18266 "\xd5\xc7\x5a\x5a\x11\x54\xff\x5a" 18267 "\xf7\x16\xc3\x91\xa6\xf0\xdc\x0a" 18268 "\xb6\xa7\x4a\x0d\x7a\x58\xfe\xa5" 18269 "\xf5\xcb\x8f\x7b\x0e\xea\x57\xe7" 18270 "\xbd\x79\xd6\x1c\x88\x23\x6c\xf2" 18271 "\x4d\x29\x77\x53\x35\x6a\x00\x8d" 18272 "\xcd\xa3\x58\xbe\x77\x99\x18\xf8" 18273 "\xe6\xe1\x8f\xe9\x37\x8f\xe3\xe2" 18274 "\x5a\x8a\x93\x25\xaf\xf3\x78\x80" 18275 "\xbe\xa6\x1b\xc6\xac\x8b\x1c\x91" 18276 "\x58\xe1\x9f\x89\x35\x9d\x1d\x21" 18277 "\x29\x9f\xf4\x99\x02\x27\x0f\xa8" 18278 "\x4f\x79\x94\x2b\x33\x2c\xda\xa2" 18279 "\x26\x39\x83\x94\xef\x27\xd8\x53" 18280 "\x8f\x66\x0d\xe4\x41\x7d\x34\xcd" 18281 "\x43\x7c\x95\x0a\x53\xef\x66\xda" 18282 "\x7e\x9b\xf3\x93\xaf\xd0\x73\x71" 18283 "\xba\x40\x9b\x74\xf8\xd7\xd7\x41" 18284 "\x6d\xaf\x72\x9c\x8d\x21\x87\x3c" 18285 "\xfd\x0a\x90\xa9\x47\x96\x9e\xd3" 18286 "\x88\xee\x73\xcf\x66\x2f\x52\x56" 18287 "\x6d\xa9\x80\x4c\xe2\x6f\x62\x88" 18288 "\x3f\x0e\x54\x17\x48\x80\x5d\xd3" 18289 "\xc3\xda\x25\x3d\xa1\xc8\xcb\x9f" 18290 "\x9b\x70\xb3\xa1\xeb\x04\x52\xa1" 18291 "\xf2\x22\x0f\xfc\xc8\x18\xfa\xf9" 18292 "\x85\x9c\xf1\xac\xeb\x0c\x02\x46" 18293 "\x75\xd2\xf5\x2c\xe3\xd2\x59\x94" 18294 "\x12\xf3\x3c\xfc\xd7\x92\xfa\x36" 18295 "\xba\x61\x34\x38\x7c\xda\x48\x3e" 18296 "\x08\xc9\x39\x23\x5e\x02\x2c\x1a" 18297 "\x18\x7e\xb4\xd9\xfd\x9e\x40\x02" 18298 "\xb1\x33\x37\x32\xe7\xde\xd6\xd0" 18299 "\x7c\x58\x65\x4b\xf8\x34\x27\x9c" 18300 "\x44\xb4\xbd\xe9\xe9\x4c\x78\x7d" 18301 "\x4b\x9f\xce\xb1\xcd\x47\xa5\x37" 18302 "\xe5\x6d\xbd\xb9\x43\x94\x0a\xd4" 18303 "\xd6\xf9\x04\x5f\xb5\x66\x6c\x1a" 18304 "\x35\x12\xe3\x36\x28\x27\x36\x58" 18305 "\x01\x2b\x79\xe4\xba\x6d\x10\x7d" 18306 "\x65\xdf\x84\x95\xf4\xd5\xb6\x8f" 18307 "\x2b\x9f\x96\x00\x86\x60\xf0\x21" 18308 "\x76\xa8\x6a\x8c\x28\x1c\xb3\x6b" 18309 "\x97\xd7\xb6\x53\x2a\xcc\xab\x40" 18310 "\x9d\x62\x79\x58\x52\xe6\x65\xb7" 18311 "\xab\x55\x67\x9c\x89\x7c\x03\xb0" 18312 "\x73\x59\xc5\x81\xf5\x18\x17\x5c" 18313 "\x89\xf3\x78\x35\x44\x62\x78\x72" 18314 "\xd0\x96\xeb\x31\xe7\x87\x77\x14" 18315 "\x99\x51\xf2\x59\x26\x9e\xb5\xa6" 18316 "\x45\xfe\x6e\xbd\x07\x4c\x94\x5a" 18317 "\xa5\x7d\xfc\xf1\x2b\x77\xe2\xfe" 18318 "\x17\xd4\x84\xa0\xac\xb5\xc7\xda" 18319 "\xa9\x1a\xb6\xf3\x74\x11\xb4\x9d" 18320 "\xfb\x79\x2e\x04\x2d\x50\x28\x83" 18321 "\xbf\xc6\x52\xd3\x34\xd6\xe8\x7a" 18322 "\xb6\xea\xe7\xa8\x6c\x15\x1e\x2c" 18323 "\x57\xbc\x48\x4e\x5f\x5c\xb6\x92" 18324 "\xd2\x49\x77\x81\x6d\x90\x70\xae" 18325 "\x98\xa1\x03\x0d\x6b\xb9\x77\x14" 18326 "\xf1\x4e\x23\xd3\xf8\x68\xbd\xc2" 18327 "\xfe\x04\xb7\x5c\xc5\x17\x60\x8f" 18328 "\x65\x54\xa4\x7a\x42\xdc\x18\x0d" 18329 "\xb5\xcf\x0f\xd3\xc7\x91\x66\x1b" 18330 "\x45\x42\x27\x75\x50\xe5\xee\xb8" 18331 "\x7f\x33\x2c\xba\x4a\x92\x4d\x2c" 18332 "\x3c\xe3\x0d\x80\x01\xba\x0d\x29" 18333 "\xd8\x3c\xe9\x13\x16\x57\xe6\xea" 18334 "\x94\x52\xe7\x00\x4d\x30\xb0\x0f" 18335 "\x35\xb8\xb8\xa7\xb1\xb5\x3b\x44" 18336 "\xe1\x2f\xfd\x88\xed\x43\xe7\x52" 18337 "\x10\x93\xb3\x8a\x30\x6b\x0a\xf7" 18338 "\x23\xc6\x50\x9d\x4a\xb0\xde\xc3" 18339 "\xdc\x9b\x2f\x01\x56\x36\x09\xc5" 18340 "\x2f\x6b\xfe\xf1\xd8\x27\x45\x03" 18341 "\x30\x5e\x5c\x5b\xb4\x62\x0e\x1a" 18342 "\xa9\x21\x2b\x92\x94\x87\x62\x57" 18343 "\x4c\x10\x74\x1a\xf1\x0a\xc5\x84" 18344 "\x3b\x9e\x72\x02\xd7\xcc\x09\x56" 18345 "\xbd\x54\xc1\xf0\xc3\xe3\xb3\xf8" 18346 "\xd2\x0d\x61\xcb\xef\xce\x0d\x05" 18347 "\xb0\x98\xd9\x8e\x4f\xf9\xbc\x93" 18348 "\xa6\xea\xc8\xcf\x10\x53\x4b\xf1" 18349 "\xec\xfc\x89\xf9\x64\xb0\x22\xbf" 18350 "\x9e\x55\x46\x9f\x7c\x50\x8e\x84" 18351 "\x54\x20\x98\xd7\x6c\x40\x1e\xdb" 18352 "\x69\x34\x78\x61\x24\x21\x9c\x8a" 18353 "\xb3\x62\x31\x8b\x6e\xf5\x2a\x35" 18354 "\x86\x13\xb1\x6c\x64\x2e\x41\xa5" 18355 "\x05\xf2\x42\xba\xd2\x3a\x0d\x8e" 18356 "\x8a\x59\x94\x3c\xcf\x36\x27\x82" 18357 "\xc2\x45\xee\x58\xcd\x88\xb4\xec" 18358 "\xde\xb2\x96\x0a\xaf\x38\x6f\x88" 18359 "\xd7\xd8\xe1\xdf\xb9\x96\xa9\x0a" 18360 "\xb1\x95\x28\x86\x20\xe9\x17\x49" 18361 "\xa2\x29\x38\xaa\xa5\xe9\x6e\xf1" 18362 "\x19\x27\xc0\xd5\x2a\x22\xc3\x0b" 18363 "\xdb\x7c\x73\x10\xb9\xba\x89\x76" 18364 "\x54\xae\x7d\x71\xb3\x93\xf6\x32" 18365 "\xe6\x47\x43\x55\xac\xa0\x0d\xc2" 18366 "\x93\x27\x4a\x8e\x0e\x74\x15\xc7" 18367 "\x0b\x85\xd9\x0c\xa9\x30\x7a\x3e" 18368 "\xea\x8f\x85\x6d\x3a\x12\x4f\x72" 18369 "\x69\x58\x7a\x80\xbb\xb5\x97\xf3" 18370 "\xcf\x70\xd2\x5d\xdd\x4d\x21\x79" 18371 "\x54\x4d\xe4\x05\xe8\xbd\xc2\x62" 18372 "\xb1\x3b\x77\x1c\xd6\x5c\xf3\xa0" 18373 "\x79\x00\xa8\x6c\x29\xd9\x18\x24" 18374 "\x36\xa2\x46\xc0\x96\x65\x7f\xbd" 18375 "\x2a\xed\x36\x16\x0c\xaa\x9f\xf4" 18376 "\xc5\xb4\xe2\x12\xed\x69\xed\x4f" 18377 "\x26\x2c\x39\x52\x89\x98\xe7\x2c" 18378 "\x99\xa4\x9e\xa3\x9b\x99\x46\x7a" 18379 "\x3a\xdc\xa8\x59\xa3\xdb\xc3\x3b" 18380 "\x95\x0d\x3b\x09\x6e\xee\x83\x5d" 18381 "\x32\x4d\xed\xab\xfa\x98\x14\x4e" 18382 "\xc3\x15\x45\x53\x61\xc4\x93\xbd" 18383 "\x90\xf4\x99\x95\x4c\xe6\x76\x92" 18384 "\x29\x90\x46\x30\x92\x69\x7d\x13" 18385 "\xf2\xa5\xcd\x69\x49\x44\xb2\x0f" 18386 "\x63\x40\x36\x5f\x09\xe2\x78\xf8" 18387 "\x91\xe3\xe2\xfa\x10\xf7\xc8\x24" 18388 "\xa8\x89\x32\x5c\x37\x25\x1d\xb2" 18389 "\xea\x17\x8a\x0a\xa9\x64\xc3\x7c" 18390 "\x3c\x7c\xbd\xc6\x79\x34\xe7\xe2" 18391 "\x85\x8e\xbf\xf8\xde\x92\xa0\xae" 18392 "\x20\xc4\xf6\xbb\x1f\x38\x19\x0e" 18393 "\xe8\x79\x9c\xa1\x23\xe9\x54\x7e" 18394 "\x37\x2f\xe2\x94\x32\xaf\xa0\x23" 18395 "\x49\xe4\xc0\xb3\xac\x00\x8f\x36" 18396 "\x05\xc4\xa6\x96\xec\x05\x98\x4f" 18397 "\x96\x67\x57\x1f\x20\x86\x1b\x2d" 18398 "\x69\xe4\x29\x93\x66\x5f\xaf\x6b" 18399 "\x88\x26\x2c\x67\x02\x4b\x52\xd0" 18400 "\x83\x7a\x43\x1f\xc0\x71\x15\x25" 18401 "\x77\x65\x08\x60\x11\x76\x4c\x8d" 18402 "\xed\xa9\x27\xc6\xb1\x2a\x2c\x6a" 18403 "\x4a\x97\xf5\xc6\xb7\x70\x42\xd3" 18404 "\x03\xd1\x24\x95\xec\x6d\xab\x38" 18405 "\x72\xce\xe2\x8b\x33\xd7\x51\x09" 18406 "\xdc\x45\xe0\x09\x96\x32\xf3\xc4" 18407 "\x84\xdc\x73\x73\x2d\x1b\x11\x98" 18408 "\xc5\x0e\x69\x28\x94\xc7\xb5\x4d" 18409 "\xc8\x8a\xd0\xaa\x13\x2e\x18\x74" 18410 "\xdd\xd1\x1e\xf3\x90\xe8\xfc\x9a" 18411 "\x72\x4a\x0e\xd1\xe4\xfb\x0d\x96" 18412 "\xd1\x0c\x79\x85\x1b\x1c\xfe\xe1" 18413 "\x62\x8f\x7a\x73\x32\xab\xc8\x18" 18414 "\x69\xe3\x34\x30\xdf\x13\xa6\xe5" 18415 "\xe8\x0e\x67\x7f\x81\x11\xb4\x60" 18416 "\xc7\xbd\x79\x65\x50\xdc\xc4\x5b" 18417 "\xde\x39\xa4\x01\x72\x63\xf3\xd1" 18418 "\x64\x4e\xdf\xfc\x27\x92\x37\x0d" 18419 "\x57\xcd\x11\x4f\x11\x04\x8e\x1d" 18420 "\x16\xf7\xcd\x92\x9a\x99\x30\x14" 18421 "\xf1\x7c\x67\x1b\x1f\x41\x0b\xe8" 18422 "\x32\xe8\xb8\xc1\x4f\x54\x86\x4f" 18423 "\xe5\x79\x81\x73\xcd\x43\x59\x68" 18424 "\x73\x02\x3b\x78\x21\x72\x43\x00" 18425 "\x49\x17\xf7\x00\xaf\x68\x24\x53" 18426 "\x05\x0a\xc3\x33\xe0\x33\x3f\x69" 18427 "\xd2\x84\x2f\x0b\xed\xde\x04\xf4" 18428 "\x11\x94\x13\x69\x51\x09\x28\xde" 18429 "\x57\x5c\xef\xdc\x9a\x49\x1c\x17" 18430 "\x97\xf3\x96\xc1\x7f\x5d\x2e\x7d" 18431 "\x55\xb8\xb3\x02\x09\xb3\x1f\xe7" 18432 "\xc9\x8d\xa3\x36\x34\x8a\x77\x13" 18433 "\x30\x63\x4c\xa5\xcd\xc3\xe0\x7e" 18434 "\x05\xa1\x7b\x0c\xcb\x74\x47\x31" 18435 "\x62\x03\x43\xf1\x87\xb4\xb0\x85" 18436 "\x87\x8e\x4b\x25\xc7\xcf\xae\x4b" 18437 "\x36\x46\x3e\x62\xbc\x6f\xeb\x5f" 18438 "\x73\xac\xe6\x07\xee\xc1\xa1\xd6" 18439 "\xc4\xab\xc9\xd6\x89\x45\xe1\xf1" 18440 "\x04\x4e\x1a\x6f\xbb\x4f\x3a\xa3" 18441 "\xa0\xcb\xa3\x0a\xd8\x71\x35\x55" 18442 "\xe4\xbc\x2e\x04\x06\xe6\xff\x5b" 18443 "\x1c\xc0\x11\x7c\xc5\x17\xf3\x38" 18444 "\xcf\xe9\xba\x0f\x0e\xef\x02\xc2" 18445 "\x8d\xc6\xbc\x4b\x67\x20\x95\xd7" 18446 "\x2c\x45\x5b\x86\x44\x8c\x6f\x2e" 18447 "\x7e\x9f\x1c\x77\xba\x6b\x0e\xa3" 18448 "\x69\xdc\xab\x24\x57\x60\x47\xc1" 18449 "\xd1\xa5\x9d\x23\xe6\xb1\x37\xfe" 18450 "\x93\xd2\x4c\x46\xf9\x0c\xc6\xfb" 18451 "\xd6\x9d\x99\x69\xab\x7a\x07\x0c" 18452 "\x65\xe7\xc4\x08\x96\xe2\xa5\x01" 18453 "\x3f\x46\x07\x05\x7e\xe8\x9a\x90" 18454 "\x50\xdc\xe9\x7a\xea\xa1\x39\x6e" 18455 "\x66\xe4\x6f\xa5\x5f\xb2\xd9\x5b" 18456 "\xf5\xdb\x2a\x32\xf0\x11\x6f\x7c" 18457 "\x26\x10\x8f\x3d\x80\xe9\x58\xf7" 18458 "\xe0\xa8\x57\xf8\xdb\x0e\xce\x99" 18459 "\x63\x19\x3d\xd5\xec\x1b\x77\x69" 18460 "\x98\xf6\xe4\x5f\x67\x17\x4b\x09" 18461 "\x85\x62\x82\x70\x18\xe2\x9a\x78" 18462 "\xe2\x62\xbd\xb4\xf1\x42\xc6\xfb" 18463 "\x08\xd0\xbd\xeb\x4e\x09\xf2\xc8" 18464 "\x1e\xdc\x3d\x32\x21\x56\x9c\x4f" 18465 "\x35\xf3\x61\x06\x72\x84\xc4\x32" 18466 "\xf2\xf1\xfa\x0b\x2f\xc3\xdb\x02" 18467 "\x04\xc2\xde\x57\x64\x60\x8d\xcf" 18468 "\xcb\x86\x5d\x97\x3e\xb1\x9c\x01" 18469 "\xd6\x28\x8f\x99\xbc\x46\xeb\x05" 18470 "\xaf\x7e\xb8\x21\x2a\x56\x85\x1c" 18471 "\xb3\x71\xa0\xde\xca\x96\xf1\x78" 18472 "\x49\xa2\x99\x81\x80\x5c\x01\xf5" 18473 "\xa0\xa2\x56\x63\xe2\x70\x07\xa5" 18474 "\x95\xd6\x85\xeb\x36\x9e\xa9\x51" 18475 "\x66\x56\x5f\x1d\x02\x19\xe2\xf6" 18476 "\x4f\x73\x38\x09\x75\x64\x48\xe0" 18477 "\xf1\x7e\x0e\xe8\x9d\xf9\xed\x94" 18478 "\xfe\x16\x26\x62\x49\x74\xf4\xb0" 18479 "\xd4\xa9\x6c\xb0\xfd\x53\xe9\x81" 18480 "\xe0\x7a\xbf\xcf\xb5\xc4\x01\x81" 18481 "\x79\x99\x77\x01\x3b\xe9\xa2\xb6" 18482 "\xe6\x6a\x8a\x9e\x56\x1c\x8d\x1e" 18483 "\x8f\x06\x55\x2c\x6c\xdc\x92\x87" 18484 "\x64\x3b\x4b\x19\xa1\x13\x64\x1d" 18485 "\x4a\xe9\xc0\x00\xb8\x95\xef\x6b" 18486 "\x1a\x86\x6d\x37\x52\x02\xc2\xe0" 18487 "\xc8\xbb\x42\x0c\x02\x21\x4a\xc9" 18488 "\xef\xa0\x54\xe4\x5e\x16\x53\x81" 18489 "\x70\x62\x10\xaf\xde\xb8\xb5\xd3" 18490 "\xe8\x5e\x6c\xc3\x8a\x3e\x18\x07" 18491 "\xf2\x2f\x7d\xa7\xe1\x3d\x4e\xb4" 18492 "\x26\xa7\xa3\x93\x86\xb2\x04\x1e" 18493 "\x53\x5d\x86\xd6\xde\x65\xca\xe3" 18494 "\x4e\xc1\xcf\xef\xc8\x70\x1b\x83" 18495 "\x13\xdd\x18\x8b\x0d\x76\xd2\xf6" 18496 "\x37\x7a\x93\x7a\x50\x11\x9f\x96" 18497 "\x86\x25\xfd\xac\xdc\xbe\x18\x93" 18498 "\x19\x6b\xec\x58\x4f\xb9\x75\xa7" 18499 "\xdd\x3f\x2f\xec\xc8\x5a\x84\xab" 18500 "\xd5\xe4\x8a\x07\xf6\x4d\x23\xd6" 18501 "\x03\xfb\x03\x6a\xea\x66\xbf\xd4" 18502 "\xb1\x34\xfb\x78\xe9\x55\xdc\x7c" 18503 "\x3d\x9c\xe5\x9a\xac\xc3\x7a\x80" 18504 "\x24\x6d\xa0\xef\x25\x7c\xb7\xea" 18505 "\xce\x4d\x5f\x18\x60\xce\x87\x22" 18506 "\x66\x2f\xd5\xdd\xdd\x02\x21\x75" 18507 "\x82\xa0\x1f\x58\xc6\xd3\x62\xf7" 18508 "\x32\xd8\xaf\x1e\x07\x77\x51\x96" 18509 "\xd5\x6b\x1e\x7e\x80\x02\xe8\x67" 18510 "\xea\x17\x0b\x10\xd2\x3f\x28\x25" 18511 "\x4f\x05\x77\x02\x14\x69\xf0\x2c" 18512 "\xbe\x0c\xf1\x74\x30\xd1\xb9\x9b" 18513 "\xfc\x8c\xbb\x04\x16\xd9\xba\xc3" 18514 "\xbc\x91\x8a\xc4\x30\xa4\xb0\x12" 18515 "\x4c\x21\x87\xcb\xc9\x1d\x16\x96" 18516 "\x07\x6f\x23\x54\xb9\x6f\x79\xe5" 18517 "\x64\xc0\x64\xda\xb1\xae\xdd\x60" 18518 "\x6c\x1a\x9d\xd3\x04\x8e\x45\xb0" 18519 "\x92\x61\xd0\x48\x81\xed\x5e\x1d" 18520 "\xa0\xc9\xa4\x33\xc7\x13\x51\x5d" 18521 "\x7f\x83\x73\xb6\x70\x18\x65\x3e" 18522 "\x2f\x0e\x7a\x12\x39\x98\xab\xd8" 18523 "\x7e\x6f\xa3\xd1\xba\x56\xad\xbd" 18524 "\xf0\x03\x01\x1c\x85\x35\x9f\xeb" 18525 "\x19\x63\xa1\xaf\xfe\x2d\x35\x50" 18526 "\x39\xa0\x65\x7c\x95\x7e\x6b\xfe" 18527 "\xc1\xac\x07\x7c\x98\x4f\xbe\x57" 18528 "\xa7\x22\xec\xe2\x7e\x29\x09\x53" 18529 "\xe8\xbf\xb4\x7e\x3f\x8f\xfc\x14" 18530 "\xce\x54\xf9\x18\x58\xb5\xff\x44" 18531 "\x05\x9d\xce\x1b\xb6\x82\x23\xc8" 18532 "\x2e\xbc\x69\xbb\x4a\x29\x0f\x65" 18533 "\x94\xf0\x63\x06\x0e\xef\x8c\xbd" 18534 "\xff\xfd\xb0\x21\x6e\x57\x05\x75" 18535 "\xda\xd5\xc4\xeb\x8d\x32\xf7\x50" 18536 "\xd3\x6f\x22\xed\x5f\x8e\xa2\x5b" 18537 "\x80\x8c\xc8\x78\x40\x24\x4b\x89" 18538 "\x30\xce\x7a\x97\x0e\xc4\xaf\xef" 18539 "\x9b\xb4\xcd\x66\x74\x14\x04\x2b" 18540 "\xf7\xce\x0b\x1c\x6e\xc2\x78\x8c" 18541 "\xca\xc5\xd0\x1c\x95\x4a\x91\x2d" 18542 "\xa7\x20\xeb\x86\x52\xb7\x67\xd8" 18543 "\x0c\xd6\x04\x14\xde\x51\x74\x75" 18544 "\xe7\x11\xb4\x87\xa3\x3d\x2d\xad" 18545 "\x4f\xef\xa0\x0f\x70\x00\x6d\x13" 18546 "\x19\x1d\x41\x50\xe9\xd8\xf0\x32" 18547 "\x71\xbc\xd3\x11\xf2\xac\xbe\xaf" 18548 "\x75\x46\x65\x4e\x07\x34\x37\xa3" 18549 "\x89\xfe\x75\xd4\x70\x4c\xc6\x3f" 18550 "\x69\x24\x0e\x38\x67\x43\x8c\xde" 18551 "\x06\xb5\xb8\xe7\xc4\xf0\x41\x8f" 18552 "\xf0\xbd\x2f\x0b\xb9\x18\xf8\xde" 18553 "\x64\xb1\xdb\xee\x00\x50\x77\xe1" 18554 "\xc7\xff\xa6\xfa\xdd\x70\xf4\xe3" 18555 "\x93\xe9\x77\x35\x3d\x4b\x2f\x2b" 18556 "\x6d\x55\xf0\xfc\x88\x54\x4e\x89" 18557 "\xc1\x8a\x23\x31\x2d\x14\x2a\xb8" 18558 "\x1b\x15\xdd\x9e\x6e\x7b\xda\x05" 18559 "\x91\x7d\x62\x64\x96\x72\xde\xfc" 18560 "\xc1\xec\xf0\x23\x51\x6f\xdb\x5b" 18561 "\x1d\x08\x57\xce\x09\xb8\xf6\xcd" 18562 "\x8d\x95\xf2\x20\xbf\x0f\x20\x57" 18563 "\x98\x81\x84\x4f\x15\x5c\x76\xe7" 18564 "\x3e\x0a\x3a\x6c\xc4\x8a\xbe\x78" 18565 "\x74\x77\xc3\x09\x4b\x5d\x48\xe4" 18566 "\xc8\xcb\x0b\xea\x17\x28\xcf\xcf" 18567 "\x31\x32\x44\xa4\xe5\x0e\x1a\x98" 18568 "\x94\xc4\xf0\xff\xae\x3e\x44\xe8" 18569 "\xa5\xb3\xb5\x37\x2f\xe8\xaf\x6f" 18570 "\x28\xc1\x37\x5f\x31\xd2\xb9\x33" 18571 "\xb1\xb2\x52\x94\x75\x2c\x29\x59" 18572 "\x06\xc2\x25\xe8\x71\x65\x4e\xed" 18573 "\xc0\x9c\xb1\xbb\x25\xdc\x6c\xe7" 18574 "\x4b\xa5\x7a\x54\x7a\x60\xff\x7a" 18575 "\xe0\x50\x40\x96\x35\x63\xe4\x0b" 18576 "\x76\xbd\xa4\x65\x00\x1b\x57\x88" 18577 "\xae\xed\x39\x88\x42\x11\x3c\xed" 18578 "\x85\x67\x7d\xb9\x68\x82\xe9\x43" 18579 "\x3c\x47\x53\xfa\xe8\xf8\x9f\x1f" 18580 "\x9f\xef\x0f\xf7\x30\xd9\x30\x0e" 18581 "\xb9\x9f\x69\x18\x2f\x7e\xf8\xf8" 18582 "\xf8\x8c\x0f\xd4\x02\x4d\xea\xcd" 18583 "\x0a\x9c\x6f\x71\x6d\x5a\x4c\x60" 18584 "\xce\x20\x56\x32\xc6\xc5\x99\x1f" 18585 "\x09\xe6\x4e\x18\x1a\x15\x13\xa8" 18586 "\x7d\xb1\x6b\xc0\xb2\x6d\xf8\x26" 18587 "\x66\xf8\x3d\x18\x74\x70\x66\x7a" 18588 "\x34\x17\xde\xba\x47\xf1\x06\x18" 18589 "\xcb\xaf\xeb\x4a\x1e\x8f\xa7\x77" 18590 "\xe0\x3b\x78\x62\x66\xc9\x10\xea" 18591 "\x1f\xb7\x29\x0a\x45\xa1\x1d\x1e" 18592 "\x1d\xe2\x65\x61\x50\x9c\xd7\x05" 18593 "\xf2\x0b\x5b\x12\x61\x02\xc8\xe5" 18594 "\x63\x4f\x20\x0c\x07\x17\x33\x5e" 18595 "\x03\x9a\x53\x0f\x2e\x55\xfe\x50" 18596 "\x43\x7d\xd0\xb6\x7e\x5a\xda\xae" 18597 "\x58\xef\x15\xa9\x83\xd9\x46\xb1" 18598 "\x42\xaa\xf5\x02\x6c\xce\x92\x06" 18599 "\x1b\xdb\x66\x45\x91\x79\xc2\x2d" 18600 "\xe6\x53\xd3\x14\xfd\xbb\x44\x63" 18601 "\xc6\xd7\x3d\x7a\x0c\x75\x78\x9d" 18602 "\x5c\xa6\x39\xb3\xe5\x63\xca\x8b" 18603 "\xfe\xd3\xef\x60\x83\xf6\x8e\x70" 18604 "\xb6\x67\xc7\x77\xed\x23\xef\x4c" 18605 "\xf0\xed\x2d\x07\x59\x6f\xc1\x01" 18606 "\x34\x37\x08\xab\xd9\x1f\x09\xb1" 18607 "\xce\x5b\x17\xff\x74\xf8\x9c\xd5" 18608 "\x2c\x56\x39\x79\x0f\x69\x44\x75" 18609 "\x58\x27\x01\xc4\xbf\xa7\xa1\x1d" 18610 "\x90\x17\x77\x86\x5a\x3f\xd9\xd1" 18611 "\x0e\xa0\x10\xf8\xec\x1e\xa5\x7f" 18612 "\x5e\x36\xd1\xe3\x04\x2c\x70\xf7" 18613 "\x8e\xc0\x98\x2f\x6c\x94\x2b\x41" 18614 "\xb7\x60\x00\xb7\x2e\xb8\x02\x8d" 18615 "\xb8\xb0\xd3\x86\xba\x1d\xd7\x90" 18616 "\xd6\xb6\xe1\xfc\xd7\xd8\x28\x06" 18617 "\x63\x9b\xce\x61\x24\x79\xc0\x70" 18618 "\x52\xd0\xb6\xd4\x28\x95\x24\x87" 18619 "\x03\x1f\xb7\x9a\xda\xa3\xfb\x52" 18620 "\x5b\x68\xe7\x4c\x8c\x24\xe1\x42" 18621 "\xf7\xd5\xfd\xad\x06\x32\x9f\xba" 18622 "\xc1\xfc\xdd\xc6\xfc\xfc\xb3\x38" 18623 "\x74\x56\x58\x40\x02\x37\x52\x2c" 18624 "\x55\xcc\xb3\x9e\x7a\xe9\xd4\x38" 18625 "\x41\x5e\x0c\x35\xe2\x11\xd1\x13" 18626 "\xf8\xb7\x8d\x72\x6b\x22\x2a\xb0" 18627 "\xdb\x08\xba\x35\xb9\x3f\xc8\xd3" 18628 "\x24\x90\xec\x58\xd2\x09\xc7\x2d" 18629 "\xed\x38\x80\x36\x72\x43\x27\x49" 18630 "\x4a\x80\x8a\xa2\xe8\xd3\xda\x30" 18631 "\x7d\xb6\x82\x37\x86\x92\x86\x3e" 18632 "\x08\xb2\x28\x5a\x55\x44\x24\x7d" 18633 "\x40\x48\x8a\xb6\x89\x58\x08\xa0" 18634 "\xd6\x6d\x3a\x17\xbf\xf6\x54\xa2" 18635 "\xf5\xd3\x8c\x0f\x78\x12\x57\x8b" 18636 "\xd5\xc2\xfd\x58\x5b\x7f\x38\xe3" 18637 "\xcc\xb7\x7c\x48\xb3\x20\xe8\x81" 18638 "\x14\x32\x45\x05\xe0\xdb\x9f\x75" 18639 "\x85\xb4\x6a\xfc\x95\xe3\x54\x22" 18640 "\x12\xee\x30\xfe\xd8\x30\xef\x34" 18641 "\x50\xab\x46\x30\x98\x2f\xb7\xc0" 18642 "\x15\xa2\x83\xb6\xf2\x06\x21\xa2" 18643 "\xc3\x26\x37\x14\xd1\x4d\xb5\x10" 18644 "\x52\x76\x4d\x6a\xee\xb5\x2b\x15" 18645 "\xb7\xf9\x51\xe8\x2a\xaf\xc7\xfa" 18646 "\x77\xaf\xb0\x05\x4d\xd1\x68\x8e" 18647 "\x74\x05\x9f\x9d\x93\xa5\x3e\x7f" 18648 "\x4e\x5f\x9d\xcb\x09\xc7\x83\xe3" 18649 "\x02\x9d\x27\x1f\xef\x85\x05\x8d" 18650 "\xec\x55\x88\x0f\x0d\x7c\x4c\xe8" 18651 "\xa1\x75\xa0\xd8\x06\x47\x14\xef" 18652 "\xaa\x61\xcf\x26\x15\xad\xd8\xa3" 18653 "\xaa\x75\xf2\x78\x4a\x5a\x61\xdf" 18654 "\x8b\xc7\x04\xbc\xb2\x32\xd2\x7e" 18655 "\x42\xee\xb4\x2f\x51\xff\x7b\x2e" 18656 "\xd3\x02\xe8\xdc\x5d\x0d\x50\xdc" 18657 "\xae\xb7\x46\xf9\xa8\xe6\xd0\x16" 18658 "\xcc\xe6\x2c\x81\xc7\xad\xe9\xf0" 18659 "\x05\x72\x6d\x3d\x0a\x7a\xa9\x02" 18660 "\xac\x82\x93\x6e\xb6\x1c\x28\xfc" 18661 "\x44\x12\xfb\x73\x77\xd4\x13\x39" 18662 "\x29\x88\x8a\xf3\x5c\xa6\x36\xa0" 18663 "\x2a\xed\x7e\xb1\x1d\xd6\x4c\x6b" 18664 "\x41\x01\x18\x5d\x5d\x07\x97\xa6" 18665 "\x4b\xef\x31\x18\xea\xac\xb1\x84" 18666 "\x21\xed\xda\x86", 18667 .len = 4100, 18668 }, 18669 }; 18670 18671 static const struct cipher_testvec aes_ofb_tv_template[] = { 18672 { /* From NIST Special Publication 800-38A, Appendix F.5 */ 18673 .key = "\x2b\x7e\x15\x16\x28\xae\xd2\xa6" 18674 "\xab\xf7\x15\x88\x09\xcf\x4f\x3c", 18675 .klen = 16, 18676 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07\x08" 18677 "\x09\x0a\x0b\x0c\x0d\x0e\x0f", 18678 .ptext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 18679 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 18680 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 18681 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 18682 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 18683 "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 18684 "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 18685 "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 18686 .ctext = "\x3b\x3f\xd9\x2e\xb7\x2d\xad\x20" 18687 "\x33\x34\x49\xf8\xe8\x3c\xfb\x4a" 18688 "\x77\x89\x50\x8d\x16\x91\x8f\x03\xf5" 18689 "\x3c\x52\xda\xc5\x4e\xd8\x25" 18690 "\x97\x40\x05\x1e\x9c\x5f\xec\xf6\x43" 18691 "\x44\xf7\xa8\x22\x60\xed\xcc" 18692 "\x30\x4c\x65\x28\xf6\x59\xc7\x78" 18693 "\x66\xa5\x10\xd9\xc1\xd6\xae\x5e", 18694 .len = 64, 18695 }, { /* > 16 bytes, not a multiple of 16 bytes */ 18696 .key = "\x2b\x7e\x15\x16\x28\xae\xd2\xa6" 18697 "\xab\xf7\x15\x88\x09\xcf\x4f\x3c", 18698 .klen = 16, 18699 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 18700 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 18701 .ptext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 18702 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 18703 "\xae", 18704 .ctext = "\x3b\x3f\xd9\x2e\xb7\x2d\xad\x20" 18705 "\x33\x34\x49\xf8\xe8\x3c\xfb\x4a" 18706 "\x77", 18707 .len = 17, 18708 }, { /* < 16 bytes */ 18709 .key = "\x2b\x7e\x15\x16\x28\xae\xd2\xa6" 18710 "\xab\xf7\x15\x88\x09\xcf\x4f\x3c", 18711 .klen = 16, 18712 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 18713 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 18714 .ptext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f", 18715 .ctext = "\x3b\x3f\xd9\x2e\xb7\x2d\xad", 18716 .len = 7, 18717 } 18718 }; 18719 18720 static const struct aead_testvec aes_gcm_tv_template[] = { 18721 { /* From McGrew & Viega - http://citeseer.ist.psu.edu/656989.html */ 18722 .key = zeroed_string, 18723 .klen = 16, 18724 .ctext = "\x58\xe2\xfc\xce\xfa\x7e\x30\x61" 18725 "\x36\x7f\x1d\x57\xa4\xe7\x45\x5a", 18726 .clen = 16, 18727 }, { 18728 .key = zeroed_string, 18729 .klen = 16, 18730 .ptext = zeroed_string, 18731 .plen = 16, 18732 .ctext = "\x03\x88\xda\xce\x60\xb6\xa3\x92" 18733 "\xf3\x28\xc2\xb9\x71\xb2\xfe\x78" 18734 "\xab\x6e\x47\xd4\x2c\xec\x13\xbd" 18735 "\xf5\x3a\x67\xb2\x12\x57\xbd\xdf", 18736 .clen = 32, 18737 }, { 18738 .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 18739 "\x6d\x6a\x8f\x94\x67\x30\x83\x08", 18740 .klen = 16, 18741 .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad" 18742 "\xde\xca\xf8\x88", 18743 .ptext = "\xd9\x31\x32\x25\xf8\x84\x06\xe5" 18744 "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a" 18745 "\x86\xa7\xa9\x53\x15\x34\xf7\xda" 18746 "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72" 18747 "\x1c\x3c\x0c\x95\x95\x68\x09\x53" 18748 "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25" 18749 "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57" 18750 "\xba\x63\x7b\x39\x1a\xaf\xd2\x55", 18751 .plen = 64, 18752 .ctext = "\x42\x83\x1e\xc2\x21\x77\x74\x24" 18753 "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c" 18754 "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0" 18755 "\x35\xc1\x7e\x23\x29\xac\xa1\x2e" 18756 "\x21\xd5\x14\xb2\x54\x66\x93\x1c" 18757 "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05" 18758 "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97" 18759 "\x3d\x58\xe0\x91\x47\x3f\x59\x85" 18760 "\x4d\x5c\x2a\xf3\x27\xcd\x64\xa6" 18761 "\x2c\xf3\x5a\xbd\x2b\xa6\xfa\xb4", 18762 .clen = 80, 18763 }, { 18764 .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 18765 "\x6d\x6a\x8f\x94\x67\x30\x83\x08", 18766 .klen = 16, 18767 .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad" 18768 "\xde\xca\xf8\x88", 18769 .ptext = "\xd9\x31\x32\x25\xf8\x84\x06\xe5" 18770 "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a" 18771 "\x86\xa7\xa9\x53\x15\x34\xf7\xda" 18772 "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72" 18773 "\x1c\x3c\x0c\x95\x95\x68\x09\x53" 18774 "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25" 18775 "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57" 18776 "\xba\x63\x7b\x39", 18777 .plen = 60, 18778 .assoc = "\xfe\xed\xfa\xce\xde\xad\xbe\xef" 18779 "\xfe\xed\xfa\xce\xde\xad\xbe\xef" 18780 "\xab\xad\xda\xd2", 18781 .alen = 20, 18782 .ctext = "\x42\x83\x1e\xc2\x21\x77\x74\x24" 18783 "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c" 18784 "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0" 18785 "\x35\xc1\x7e\x23\x29\xac\xa1\x2e" 18786 "\x21\xd5\x14\xb2\x54\x66\x93\x1c" 18787 "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05" 18788 "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97" 18789 "\x3d\x58\xe0\x91" 18790 "\x5b\xc9\x4f\xbc\x32\x21\xa5\xdb" 18791 "\x94\xfa\xe9\x5a\xe7\x12\x1a\x47", 18792 .clen = 76, 18793 }, { 18794 .key = zeroed_string, 18795 .klen = 24, 18796 .ctext = "\xcd\x33\xb2\x8a\xc7\x73\xf7\x4b" 18797 "\xa0\x0e\xd1\xf3\x12\x57\x24\x35", 18798 .clen = 16, 18799 }, { 18800 .key = zeroed_string, 18801 .klen = 24, 18802 .ptext = zeroed_string, 18803 .plen = 16, 18804 .ctext = "\x98\xe7\x24\x7c\x07\xf0\xfe\x41" 18805 "\x1c\x26\x7e\x43\x84\xb0\xf6\x00" 18806 "\x2f\xf5\x8d\x80\x03\x39\x27\xab" 18807 "\x8e\xf4\xd4\x58\x75\x14\xf0\xfb", 18808 .clen = 32, 18809 }, { 18810 .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 18811 "\x6d\x6a\x8f\x94\x67\x30\x83\x08" 18812 "\xfe\xff\xe9\x92\x86\x65\x73\x1c", 18813 .klen = 24, 18814 .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad" 18815 "\xde\xca\xf8\x88", 18816 .ptext = "\xd9\x31\x32\x25\xf8\x84\x06\xe5" 18817 "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a" 18818 "\x86\xa7\xa9\x53\x15\x34\xf7\xda" 18819 "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72" 18820 "\x1c\x3c\x0c\x95\x95\x68\x09\x53" 18821 "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25" 18822 "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57" 18823 "\xba\x63\x7b\x39\x1a\xaf\xd2\x55", 18824 .plen = 64, 18825 .ctext = "\x39\x80\xca\x0b\x3c\x00\xe8\x41" 18826 "\xeb\x06\xfa\xc4\x87\x2a\x27\x57" 18827 "\x85\x9e\x1c\xea\xa6\xef\xd9\x84" 18828 "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c" 18829 "\x7d\x77\x3d\x00\xc1\x44\xc5\x25" 18830 "\xac\x61\x9d\x18\xc8\x4a\x3f\x47" 18831 "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9" 18832 "\xcc\xda\x27\x10\xac\xad\xe2\x56" 18833 "\x99\x24\xa7\xc8\x58\x73\x36\xbf" 18834 "\xb1\x18\x02\x4d\xb8\x67\x4a\x14", 18835 .clen = 80, 18836 }, { 18837 .key = zeroed_string, 18838 .klen = 32, 18839 .ctext = "\x53\x0f\x8a\xfb\xc7\x45\x36\xb9" 18840 "\xa9\x63\xb4\xf1\xc4\xcb\x73\x8b", 18841 .clen = 16, 18842 }, { 18843 .key = zeroed_string, 18844 .klen = 32, 18845 .ptext = zeroed_string, 18846 .plen = 16, 18847 .ctext = "\xce\xa7\x40\x3d\x4d\x60\x6b\x6e" 18848 "\x07\x4e\xc5\xd3\xba\xf3\x9d\x18" 18849 "\xd0\xd1\xc8\xa7\x99\x99\x6b\xf0" 18850 "\x26\x5b\x98\xb5\xd4\x8a\xb9\x19", 18851 .clen = 32, 18852 }, { 18853 .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 18854 "\x6d\x6a\x8f\x94\x67\x30\x83\x08" 18855 "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 18856 "\x6d\x6a\x8f\x94\x67\x30\x83\x08", 18857 .klen = 32, 18858 .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad" 18859 "\xde\xca\xf8\x88", 18860 .ptext = "\xd9\x31\x32\x25\xf8\x84\x06\xe5" 18861 "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a" 18862 "\x86\xa7\xa9\x53\x15\x34\xf7\xda" 18863 "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72" 18864 "\x1c\x3c\x0c\x95\x95\x68\x09\x53" 18865 "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25" 18866 "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57" 18867 "\xba\x63\x7b\x39\x1a\xaf\xd2\x55", 18868 .plen = 64, 18869 .ctext = "\x52\x2d\xc1\xf0\x99\x56\x7d\x07" 18870 "\xf4\x7f\x37\xa3\x2a\x84\x42\x7d" 18871 "\x64\x3a\x8c\xdc\xbf\xe5\xc0\xc9" 18872 "\x75\x98\xa2\xbd\x25\x55\xd1\xaa" 18873 "\x8c\xb0\x8e\x48\x59\x0d\xbb\x3d" 18874 "\xa7\xb0\x8b\x10\x56\x82\x88\x38" 18875 "\xc5\xf6\x1e\x63\x93\xba\x7a\x0a" 18876 "\xbc\xc9\xf6\x62\x89\x80\x15\xad" 18877 "\xb0\x94\xda\xc5\xd9\x34\x71\xbd" 18878 "\xec\x1a\x50\x22\x70\xe3\xcc\x6c", 18879 .clen = 80, 18880 }, { 18881 .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 18882 "\x6d\x6a\x8f\x94\x67\x30\x83\x08" 18883 "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 18884 "\x6d\x6a\x8f\x94\x67\x30\x83\x08", 18885 .klen = 32, 18886 .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad" 18887 "\xde\xca\xf8\x88", 18888 .ptext = "\xd9\x31\x32\x25\xf8\x84\x06\xe5" 18889 "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a" 18890 "\x86\xa7\xa9\x53\x15\x34\xf7\xda" 18891 "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72" 18892 "\x1c\x3c\x0c\x95\x95\x68\x09\x53" 18893 "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25" 18894 "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57" 18895 "\xba\x63\x7b\x39", 18896 .plen = 60, 18897 .assoc = "\xfe\xed\xfa\xce\xde\xad\xbe\xef" 18898 "\xfe\xed\xfa\xce\xde\xad\xbe\xef" 18899 "\xab\xad\xda\xd2", 18900 .alen = 20, 18901 .ctext = "\x52\x2d\xc1\xf0\x99\x56\x7d\x07" 18902 "\xf4\x7f\x37\xa3\x2a\x84\x42\x7d" 18903 "\x64\x3a\x8c\xdc\xbf\xe5\xc0\xc9" 18904 "\x75\x98\xa2\xbd\x25\x55\xd1\xaa" 18905 "\x8c\xb0\x8e\x48\x59\x0d\xbb\x3d" 18906 "\xa7\xb0\x8b\x10\x56\x82\x88\x38" 18907 "\xc5\xf6\x1e\x63\x93\xba\x7a\x0a" 18908 "\xbc\xc9\xf6\x62" 18909 "\x76\xfc\x6e\xce\x0f\x4e\x17\x68" 18910 "\xcd\xdf\x88\x53\xbb\x2d\x55\x1b", 18911 .clen = 76, 18912 }, { 18913 .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 18914 "\x6d\x6a\x8f\x94\x67\x30\x83\x08" 18915 "\xfe\xff\xe9\x92\x86\x65\x73\x1c", 18916 .klen = 24, 18917 .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad" 18918 "\xde\xca\xf8\x88", 18919 .ptext = "\xd9\x31\x32\x25\xf8\x84\x06\xe5" 18920 "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a" 18921 "\x86\xa7\xa9\x53\x15\x34\xf7\xda" 18922 "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72" 18923 "\x1c\x3c\x0c\x95\x95\x68\x09\x53" 18924 "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25" 18925 "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57" 18926 "\xba\x63\x7b\x39", 18927 .plen = 60, 18928 .assoc = "\xfe\xed\xfa\xce\xde\xad\xbe\xef" 18929 "\xfe\xed\xfa\xce\xde\xad\xbe\xef" 18930 "\xab\xad\xda\xd2", 18931 .alen = 20, 18932 .ctext = "\x39\x80\xca\x0b\x3c\x00\xe8\x41" 18933 "\xeb\x06\xfa\xc4\x87\x2a\x27\x57" 18934 "\x85\x9e\x1c\xea\xa6\xef\xd9\x84" 18935 "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c" 18936 "\x7d\x77\x3d\x00\xc1\x44\xc5\x25" 18937 "\xac\x61\x9d\x18\xc8\x4a\x3f\x47" 18938 "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9" 18939 "\xcc\xda\x27\x10" 18940 "\x25\x19\x49\x8e\x80\xf1\x47\x8f" 18941 "\x37\xba\x55\xbd\x6d\x27\x61\x8c", 18942 .clen = 76, 18943 }, { 18944 .key = "\x62\x35\xf8\x95\xfc\xa5\xeb\xf6" 18945 "\x0e\x92\x12\x04\xd3\xa1\x3f\x2e" 18946 "\x8b\x32\xcf\xe7\x44\xed\x13\x59" 18947 "\x04\x38\x77\xb0\xb9\xad\xb4\x38", 18948 .klen = 32, 18949 .iv = "\x00\xff\xff\xff\xff\x00\x00\xff" 18950 "\xff\xff\x00\xff", 18951 .ptext = "\x42\xc1\xcc\x08\x48\x6f\x41\x3f" 18952 "\x2f\x11\x66\x8b\x2a\x16\xf0\xe0" 18953 "\x58\x83\xf0\xc3\x70\x14\xc0\x5b" 18954 "\x3f\xec\x1d\x25\x3c\x51\xd2\x03" 18955 "\xcf\x59\x74\x1f\xb2\x85\xb4\x07" 18956 "\xc6\x6a\x63\x39\x8a\x5b\xde\xcb" 18957 "\xaf\x08\x44\xbd\x6f\x91\x15\xe1" 18958 "\xf5\x7a\x6e\x18\xbd\xdd\x61\x50" 18959 "\x59\xa9\x97\xab\xbb\x0e\x74\x5c" 18960 "\x00\xa4\x43\x54\x04\x54\x9b\x3b" 18961 "\x77\xec\xfd\x5c\xa6\xe8\x7b\x08" 18962 "\xae\xe6\x10\x3f\x32\x65\xd1\xfc" 18963 "\xa4\x1d\x2c\x31\xfb\x33\x7a\xb3" 18964 "\x35\x23\xf4\x20\x41\xd4\xad\x82" 18965 "\x8b\xa4\xad\x96\x1c\x20\x53\xbe" 18966 "\x0e\xa6\xf4\xdc\x78\x49\x3e\x72" 18967 "\xb1\xa9\xb5\x83\xcb\x08\x54\xb7" 18968 "\xad\x49\x3a\xae\x98\xce\xa6\x66" 18969 "\x10\x30\x90\x8c\x55\x83\xd7\x7c" 18970 "\x8b\xe6\x53\xde\xd2\x6e\x18\x21" 18971 "\x01\x52\xd1\x9f\x9d\xbb\x9c\x73" 18972 "\x57\xcc\x89\x09\x75\x9b\x78\x70" 18973 "\xed\x26\x97\x4d\xb4\xe4\x0c\xa5" 18974 "\xfa\x70\x04\x70\xc6\x96\x1c\x7d" 18975 "\x54\x41\x77\xa8\xe3\xb0\x7e\x96" 18976 "\x82\xd9\xec\xa2\x87\x68\x55\xf9" 18977 "\x8f\x9e\x73\x43\x47\x6a\x08\x36" 18978 "\x93\x67\xa8\x2d\xde\xac\x41\xa9" 18979 "\x5c\x4d\x73\x97\x0f\x70\x68\xfa" 18980 "\x56\x4d\x00\xc2\x3b\x1f\xc8\xb9" 18981 "\x78\x1f\x51\x07\xe3\x9a\x13\x4e" 18982 "\xed\x2b\x2e\xa3\xf7\x44\xb2\xe7" 18983 "\xab\x19\x37\xd9\xba\x76\x5e\xd2" 18984 "\xf2\x53\x15\x17\x4c\x6b\x16\x9f" 18985 "\x02\x66\x49\xca\x7c\x91\x05\xf2" 18986 "\x45\x36\x1e\xf5\x77\xad\x1f\x46" 18987 "\xa8\x13\xfb\x63\xb6\x08\x99\x63" 18988 "\x82\xa2\xed\xb3\xac\xdf\x43\x19" 18989 "\x45\xea\x78\x73\xd9\xb7\x39\x11" 18990 "\xa3\x13\x7c\xf8\x3f\xf7\xad\x81" 18991 "\x48\x2f\xa9\x5c\x5f\xa0\xf0\x79" 18992 "\xa4\x47\x7d\x80\x20\x26\xfd\x63" 18993 "\x0a\xc7\x7e\x6d\x75\x47\xff\x76" 18994 "\x66\x2e\x8a\x6c\x81\x35\xaf\x0b" 18995 "\x2e\x6a\x49\x60\xc1\x10\xe1\xe1" 18996 "\x54\x03\xa4\x09\x0c\x37\x7a\x15" 18997 "\x23\x27\x5b\x8b\x4b\xa5\x64\x97" 18998 "\xae\x4a\x50\x73\x1f\x66\x1c\x5c" 18999 "\x03\x25\x3c\x8d\x48\x58\x71\x34" 19000 "\x0e\xec\x4e\x55\x1a\x03\x6a\xe5" 19001 "\xb6\x19\x2b\x84\x2a\x20\xd1\xea" 19002 "\x80\x6f\x96\x0e\x05\x62\xc7\x78" 19003 "\x87\x79\x60\x38\x46\xb4\x25\x57" 19004 "\x6e\x16\x63\xf8\xad\x6e\xd7\x42" 19005 "\x69\xe1\x88\xef\x6e\xd5\xb4\x9a" 19006 "\x3c\x78\x6c\x3b\xe5\xa0\x1d\x22" 19007 "\x86\x5c\x74\x3a\xeb\x24\x26\xc7" 19008 "\x09\xfc\x91\x96\x47\x87\x4f\x1a" 19009 "\xd6\x6b\x2c\x18\x47\xc0\xb8\x24" 19010 "\xa8\x5a\x4a\x9e\xcb\x03\xe7\x2a" 19011 "\x09\xe6\x4d\x9c\x6d\x86\x60\xf5" 19012 "\x2f\x48\x69\x37\x9f\xf2\xd2\xcb" 19013 "\x0e\x5a\xdd\x6e\x8a\xfb\x6a\xfe" 19014 "\x0b\x63\xde\x87\x42\x79\x8a\x68" 19015 "\x51\x28\x9b\x7a\xeb\xaf\xb8\x2f" 19016 "\x9d\xd1\xc7\x45\x90\x08\xc9\x83" 19017 "\xe9\x83\x84\xcb\x28\x69\x09\x69" 19018 "\xce\x99\x46\x00\x54\xcb\xd8\x38" 19019 "\xf9\x53\x4a\xbf\x31\xce\x57\x15" 19020 "\x33\xfa\x96\x04\x33\x42\xe3\xc0" 19021 "\xb7\x54\x4a\x65\x7a\x7c\x02\xe6" 19022 "\x19\x95\xd0\x0e\x82\x07\x63\xf9" 19023 "\xe1\x2b\x2a\xfc\x55\x92\x52\xc9" 19024 "\xb5\x9f\x23\x28\x60\xe7\x20\x51" 19025 "\x10\xd3\xed\x6d\x9b\xab\xb8\xe2" 19026 "\x5d\x9a\x34\xb3\xbe\x9c\x64\xcb" 19027 "\x78\xc6\x91\x22\x40\x91\x80\xbe" 19028 "\xd7\x78\x5c\x0e\x0a\xdc\x08\xe9" 19029 "\x67\x10\xa4\x83\x98\x79\x23\xe7" 19030 "\x92\xda\xa9\x22\x16\xb1\xe7\x78" 19031 "\xa3\x1c\x6c\x8f\x35\x7c\x4d\x37" 19032 "\x2f\x6e\x0b\x50\x5c\x34\xb9\xf9" 19033 "\xe6\x3d\x91\x0d\x32\x95\xaa\x3d" 19034 "\x48\x11\x06\xbb\x2d\xf2\x63\x88" 19035 "\x3f\x73\x09\xe2\x45\x56\x31\x51" 19036 "\xfa\x5e\x4e\x62\xf7\x90\xf9\xa9" 19037 "\x7d\x7b\x1b\xb1\xc8\x26\x6e\x66" 19038 "\xf6\x90\x9a\x7f\xf2\x57\xcc\x23" 19039 "\x59\xfa\xfa\xaa\x44\x04\x01\xa7" 19040 "\xa4\x78\xdb\x74\x3d\x8b\xb5", 19041 .plen = 719, 19042 .ctext = "\x84\x0b\xdb\xd5\xb7\xa8\xfe\x20" 19043 "\xbb\xb1\x12\x7f\x41\xea\xb3\xc0" 19044 "\xa2\xb4\x37\x19\x11\x58\xb6\x0b" 19045 "\x4c\x1d\x38\x05\x54\xd1\x16\x73" 19046 "\x8e\x1c\x20\x90\xa2\x9a\xb7\x74" 19047 "\x47\xe6\xd8\xfc\x18\x3a\xb4\xea" 19048 "\xd5\x16\x5a\x2c\x53\x01\x46\xb3" 19049 "\x18\x33\x74\x6c\x50\xf2\xe8\xc0" 19050 "\x73\xda\x60\x22\xeb\xe3\xe5\x9b" 19051 "\x20\x93\x6c\x4b\x37\x99\xb8\x23" 19052 "\x3b\x4e\xac\xe8\x5b\xe8\x0f\xb7" 19053 "\xc3\x8f\xfb\x4a\x37\xd9\x39\x95" 19054 "\x34\xf1\xdb\x8f\x71\xd9\xc7\x0b" 19055 "\x02\xf1\x63\xfc\x9b\xfc\xc5\xab" 19056 "\xb9\x14\x13\x21\xdf\xce\xaa\x88" 19057 "\x44\x30\x1e\xce\x26\x01\x92\xf8" 19058 "\x9f\x00\x4b\x0c\x4b\xf7\x5f\xe0" 19059 "\x89\xca\x94\x66\x11\x21\x97\xca" 19060 "\x3e\x83\x74\x2d\xdb\x4d\x11\xeb" 19061 "\x97\xc2\x14\xff\x9e\x1e\xa0\x6b" 19062 "\x08\xb4\x31\x2b\x85\xc6\x85\x6c" 19063 "\x90\xec\x39\xc0\xec\xb3\xb5\x4e" 19064 "\xf3\x9c\xe7\x83\x3a\x77\x0a\xf4" 19065 "\x56\xfe\xce\x18\x33\x6d\x0b\x2d" 19066 "\x33\xda\xc8\x05\x5c\xb4\x09\x2a" 19067 "\xde\x6b\x52\x98\x01\xef\x36\x3d" 19068 "\xbd\xf9\x8f\xa8\x3e\xaa\xcd\xd1" 19069 "\x01\x2d\x42\x49\xc3\xb6\x84\xbb" 19070 "\x48\x96\xe0\x90\x93\x6c\x48\x64" 19071 "\xd4\xfa\x7f\x93\x2c\xa6\x21\xc8" 19072 "\x7a\x23\x7b\xaa\x20\x56\x12\xae" 19073 "\x16\x9d\x94\x0f\x54\xa1\xec\xca" 19074 "\x51\x4e\xf2\x39\xf4\xf8\x5f\x04" 19075 "\x5a\x0d\xbf\xf5\x83\xa1\x15\xe1" 19076 "\xf5\x3c\xd8\x62\xa3\xed\x47\x89" 19077 "\x85\x4c\xe5\xdb\xac\x9e\x17\x1d" 19078 "\x0c\x09\xe3\x3e\x39\x5b\x4d\x74" 19079 "\x0e\xf5\x34\xee\x70\x11\x4c\xfd" 19080 "\xdb\x34\xb1\xb5\x10\x3f\x73\xb7" 19081 "\xf5\xfa\xed\xb0\x1f\xa5\xcd\x3c" 19082 "\x8d\x35\x83\xd4\x11\x44\x6e\x6c" 19083 "\x5b\xe0\x0e\x69\xa5\x39\xe5\xbb" 19084 "\xa9\x57\x24\x37\xe6\x1f\xdd\xcf" 19085 "\x16\x2a\x13\xf9\x6a\x2d\x90\xa0" 19086 "\x03\x60\x7a\xed\x69\xd5\x00\x8b" 19087 "\x7e\x4f\xcb\xb9\xfa\x91\xb9\x37" 19088 "\xc1\x26\xce\x90\x97\x22\x64\x64" 19089 "\xc1\x72\x43\x1b\xf6\xac\xc1\x54" 19090 "\x8a\x10\x9c\xdd\x8d\xd5\x8e\xb2" 19091 "\xe4\x85\xda\xe0\x20\x5f\xf4\xb4" 19092 "\x15\xb5\xa0\x8d\x12\x74\x49\x23" 19093 "\x3a\xdf\x4a\xd3\xf0\x3b\x89\xeb" 19094 "\xf8\xcc\x62\x7b\xfb\x93\x07\x41" 19095 "\x61\x26\x94\x58\x70\xa6\x3c\xe4" 19096 "\xff\x58\xc4\x13\x3d\xcb\x36\x6b" 19097 "\x32\xe5\xb2\x6d\x03\x74\x6f\x76" 19098 "\x93\x77\xde\x48\xc4\xfa\x30\x4a" 19099 "\xda\x49\x80\x77\x0f\x1c\xbe\x11" 19100 "\xc8\x48\xb1\xe5\xbb\xf2\x8a\xe1" 19101 "\x96\x2f\x9f\xd1\x8e\x8a\x5c\xe2" 19102 "\xf7\xd7\xd8\x54\xf3\x3f\xc4\x91" 19103 "\xb8\xfb\x86\xdc\x46\x24\x91\x60" 19104 "\x6c\x2f\xc9\x41\x37\x51\x49\x54" 19105 "\x09\x81\x21\xf3\x03\x9f\x2b\xe3" 19106 "\x1f\x39\x63\xaf\xf4\xd7\x53\x60" 19107 "\xa7\xc7\x54\xf9\xee\xb1\xb1\x7d" 19108 "\x75\x54\x65\x93\xfe\xb1\x68\x6b" 19109 "\x57\x02\xf9\xbb\x0e\xf9\xf8\xbf" 19110 "\x01\x12\x27\xb4\xfe\xe4\x79\x7a" 19111 "\x40\x5b\x51\x4b\xdf\x38\xec\xb1" 19112 "\x6a\x56\xff\x35\x4d\x42\x33\xaa" 19113 "\x6f\x1b\xe4\xdc\xe0\xdb\x85\x35" 19114 "\x62\x10\xd4\xec\xeb\xc5\x7e\x45" 19115 "\x1c\x6f\x17\xca\x3b\x8e\x2d\x66" 19116 "\x4f\x4b\x36\x56\xcd\x1b\x59\xaa" 19117 "\xd2\x9b\x17\xb9\x58\xdf\x7b\x64" 19118 "\x8a\xff\x3b\x9c\xa6\xb5\x48\x9e" 19119 "\xaa\xe2\x5d\x09\x71\x32\x5f\xb6" 19120 "\x29\xbe\xe7\xc7\x52\x7e\x91\x82" 19121 "\x6b\x6d\x33\xe1\x34\x06\x36\x21" 19122 "\x5e\xbe\x1e\x2f\x3e\xc1\xfb\xea" 19123 "\x49\x2c\xb5\xca\xf7\xb0\x37\xea" 19124 "\x1f\xed\x10\x04\xd9\x48\x0d\x1a" 19125 "\x1c\xfb\xe7\x84\x0e\x83\x53\x74" 19126 "\xc7\x65\xe2\x5c\xe5\xba\x73\x4c" 19127 "\x0e\xe1\xb5\x11\x45\x61\x43\x46" 19128 "\xaa\x25\x8f\xbd\x85\x08\xfa\x4c" 19129 "\x15\xc1\xc0\xd8\xf5\xdc\x16\xbb" 19130 "\x7b\x1d\xe3\x87\x57\xa7\x2a\x1d" 19131 "\x38\x58\x9e\x8a\x43\xdc\x57" 19132 "\xd1\x81\x7d\x2b\xe9\xff\x99\x3a" 19133 "\x4b\x24\x52\x58\x55\xe1\x49\x14", 19134 .clen = 735, 19135 } 19136 }; 19137 19138 static const struct aead_testvec aes_gcm_rfc4106_tv_template[] = { 19139 { /* Generated using Crypto++ */ 19140 .key = zeroed_string, 19141 .klen = 20, 19142 .iv = zeroed_string, 19143 .ptext = zeroed_string, 19144 .plen = 16, 19145 .assoc = zeroed_string, 19146 .alen = 16, 19147 .ctext = "\x03\x88\xDA\xCE\x60\xB6\xA3\x92" 19148 "\xF3\x28\xC2\xB9\x71\xB2\xFE\x78" 19149 "\x97\xFE\x4C\x23\x37\x42\x01\xE0" 19150 "\x81\x9F\x8D\xC5\xD7\x41\xA0\x1B", 19151 .clen = 32, 19152 },{ 19153 .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 19154 "\x6d\x6a\x8f\x94\x67\x30\x83\x08" 19155 "\x00\x00\x00\x00", 19156 .klen = 20, 19157 .iv = "\x00\x00\x00\x00\x00\x00\x00\x01", 19158 .ptext = zeroed_string, 19159 .plen = 16, 19160 .assoc = "\x00\x00\x00\x00\x00\x00\x00\x00" 19161 "\x00\x00\x00\x00\x00\x00\x00\x01", 19162 .alen = 16, 19163 .ctext = "\xC0\x0D\x8B\x42\x0F\x8F\x34\x18" 19164 "\x88\xB1\xC5\xBC\xC5\xB6\xD6\x28" 19165 "\x6A\x9D\xDF\x11\x5E\xFE\x5E\x9D" 19166 "\x2F\x70\x44\x92\xF7\xF2\xE3\xEF", 19167 .clen = 32, 19168 19169 }, { 19170 .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 19171 "\x6d\x6a\x8f\x94\x67\x30\x83\x08" 19172 "\x00\x00\x00\x00", 19173 .klen = 20, 19174 .iv = zeroed_string, 19175 .ptext = "\x01\x01\x01\x01\x01\x01\x01\x01" 19176 "\x01\x01\x01\x01\x01\x01\x01\x01", 19177 .plen = 16, 19178 .assoc = zeroed_string, 19179 .alen = 16, 19180 .ctext = "\x4B\xB1\xB5\xE3\x25\x71\x70\xDE" 19181 "\x7F\xC9\x9C\xA5\x14\x19\xF2\xAC" 19182 "\x0B\x8F\x88\x69\x17\xE6\xB4\x3C" 19183 "\xB1\x68\xFD\x14\x52\x64\x61\xB2", 19184 .clen = 32, 19185 }, { 19186 .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 19187 "\x6d\x6a\x8f\x94\x67\x30\x83\x08" 19188 "\x00\x00\x00\x00", 19189 .klen = 20, 19190 .iv = zeroed_string, 19191 .ptext = "\x01\x01\x01\x01\x01\x01\x01\x01" 19192 "\x01\x01\x01\x01\x01\x01\x01\x01", 19193 .plen = 16, 19194 .assoc = "\x01\x01\x01\x01\x01\x01\x01\x01" 19195 "\x00\x00\x00\x00\x00\x00\x00\x00", 19196 .alen = 16, 19197 .ctext = "\x4B\xB1\xB5\xE3\x25\x71\x70\xDE" 19198 "\x7F\xC9\x9C\xA5\x14\x19\xF2\xAC" 19199 "\x90\x92\xB7\xE3\x5F\xA3\x9A\x63" 19200 "\x7E\xD7\x1F\xD8\xD3\x7C\x4B\xF5", 19201 .clen = 32, 19202 }, { 19203 .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 19204 "\x6d\x6a\x8f\x94\x67\x30\x83\x08" 19205 "\x00\x00\x00\x00", 19206 .klen = 20, 19207 .iv = "\x00\x00\x00\x00\x00\x00\x00\x01", 19208 .ptext = "\x01\x01\x01\x01\x01\x01\x01\x01" 19209 "\x01\x01\x01\x01\x01\x01\x01\x01", 19210 .plen = 16, 19211 .assoc = "\x01\x01\x01\x01\x01\x01\x01\x01" 19212 "\x00\x00\x00\x00\x00\x00\x00\x01", 19213 .alen = 16, 19214 .ctext = "\xC1\x0C\x8A\x43\x0E\x8E\x35\x19" 19215 "\x89\xB0\xC4\xBD\xC4\xB7\xD7\x29" 19216 "\x64\x50\xF9\x32\x13\xFB\x74\x61" 19217 "\xF4\xED\x52\xD3\xC5\x10\x55\x3C", 19218 .clen = 32, 19219 }, { 19220 .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 19221 "\x6d\x6a\x8f\x94\x67\x30\x83\x08" 19222 "\x00\x00\x00\x00", 19223 .klen = 20, 19224 .iv = "\x00\x00\x00\x00\x00\x00\x00\x01", 19225 .ptext = "\x01\x01\x01\x01\x01\x01\x01\x01" 19226 "\x01\x01\x01\x01\x01\x01\x01\x01" 19227 "\x01\x01\x01\x01\x01\x01\x01\x01" 19228 "\x01\x01\x01\x01\x01\x01\x01\x01" 19229 "\x01\x01\x01\x01\x01\x01\x01\x01" 19230 "\x01\x01\x01\x01\x01\x01\x01\x01" 19231 "\x01\x01\x01\x01\x01\x01\x01\x01" 19232 "\x01\x01\x01\x01\x01\x01\x01\x01", 19233 .plen = 64, 19234 .assoc = "\x01\x01\x01\x01\x01\x01\x01\x01" 19235 "\x00\x00\x00\x00\x00\x00\x00\x01", 19236 .alen = 16, 19237 .ctext = "\xC1\x0C\x8A\x43\x0E\x8E\x35\x19" 19238 "\x89\xB0\xC4\xBD\xC4\xB7\xD7\x29" 19239 "\x98\x14\xA1\x42\x37\x80\xFD\x90" 19240 "\x68\x12\x01\xA8\x91\x89\xB9\x83" 19241 "\x5B\x11\x77\x12\x9B\xFF\x24\x89" 19242 "\x94\x5F\x18\x12\xBA\x27\x09\x39" 19243 "\x99\x96\x76\x42\x15\x1C\xCD\xCB" 19244 "\xDC\xD3\xDA\x65\x73\xAF\x80\xCD" 19245 "\xD2\xB6\xC2\x4A\x76\xC2\x92\x85" 19246 "\xBD\xCF\x62\x98\x58\x14\xE5\xBD", 19247 .clen = 80, 19248 }, { 19249 .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 19250 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 19251 "\x00\x00\x00\x00", 19252 .klen = 20, 19253 .iv = "\x00\x00\x45\x67\x89\xab\xcd\xef", 19254 .ptext = "\xff\xff\xff\xff\xff\xff\xff\xff" 19255 "\xff\xff\xff\xff\xff\xff\xff\xff" 19256 "\xff\xff\xff\xff\xff\xff\xff\xff" 19257 "\xff\xff\xff\xff\xff\xff\xff\xff" 19258 "\xff\xff\xff\xff\xff\xff\xff\xff" 19259 "\xff\xff\xff\xff\xff\xff\xff\xff" 19260 "\xff\xff\xff\xff\xff\xff\xff\xff" 19261 "\xff\xff\xff\xff\xff\xff\xff\xff" 19262 "\xff\xff\xff\xff\xff\xff\xff\xff" 19263 "\xff\xff\xff\xff\xff\xff\xff\xff" 19264 "\xff\xff\xff\xff\xff\xff\xff\xff" 19265 "\xff\xff\xff\xff\xff\xff\xff\xff" 19266 "\xff\xff\xff\xff\xff\xff\xff\xff" 19267 "\xff\xff\xff\xff\xff\xff\xff\xff" 19268 "\xff\xff\xff\xff\xff\xff\xff\xff" 19269 "\xff\xff\xff\xff\xff\xff\xff\xff" 19270 "\xff\xff\xff\xff\xff\xff\xff\xff" 19271 "\xff\xff\xff\xff\xff\xff\xff\xff" 19272 "\xff\xff\xff\xff\xff\xff\xff\xff" 19273 "\xff\xff\xff\xff\xff\xff\xff\xff" 19274 "\xff\xff\xff\xff\xff\xff\xff\xff" 19275 "\xff\xff\xff\xff\xff\xff\xff\xff" 19276 "\xff\xff\xff\xff\xff\xff\xff\xff" 19277 "\xff\xff\xff\xff\xff\xff\xff\xff", 19278 .plen = 192, 19279 .assoc = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 19280 "\xaa\xaa\xaa\xaa\x00\x00\x45\x67" 19281 "\x89\xab\xcd\xef", 19282 .alen = 20, 19283 .ctext = "\xC1\x76\x33\x85\xE2\x9B\x5F\xDE" 19284 "\xDE\x89\x3D\x42\xE7\xC9\x69\x8A" 19285 "\x44\x6D\xC3\x88\x46\x2E\xC2\x01" 19286 "\x5E\xF6\x0C\x39\xF0\xC4\xA5\x82" 19287 "\xCD\xE8\x31\xCC\x0A\x4C\xE4\x44" 19288 "\x41\xA9\x82\x6F\x22\xA1\x23\x1A" 19289 "\xA8\xE3\x16\xFD\x31\x5C\x27\x31" 19290 "\xF1\x7F\x01\x63\xA3\xAF\x70\xA1" 19291 "\xCF\x07\x57\x41\x67\xD0\xC4\x42" 19292 "\xDB\x18\xC6\x4C\x4C\xE0\x3D\x9F" 19293 "\x05\x07\xFB\x13\x7D\x4A\xCA\x5B" 19294 "\xF0\xBF\x64\x7E\x05\xB1\x72\xEE" 19295 "\x7C\x3B\xD4\xCD\x14\x03\xB2\x2C" 19296 "\xD3\xA9\xEE\xFA\x17\xFC\x9C\xDF" 19297 "\xC7\x75\x40\xFF\xAE\xAD\x1E\x59" 19298 "\x2F\x30\x24\xFB\xAD\x6B\x10\xFA" 19299 "\x6C\x9F\x5B\xE7\x25\xD5\xD0\x25" 19300 "\xAC\x4A\x4B\xDA\xFC\x7A\x85\x1B" 19301 "\x7E\x13\x06\x82\x08\x17\xA4\x35" 19302 "\xEC\xC5\x8D\x63\x96\x81\x0A\x8F" 19303 "\xA3\x05\x38\x95\x20\x1A\x47\x04" 19304 "\x6F\x6D\xDA\x8F\xEF\xC1\x76\x35" 19305 "\x6B\xC7\x4D\x0F\x94\x12\xCA\x3E" 19306 "\x2E\xD5\x03\x2E\x86\x7E\xAA\x3B" 19307 "\x37\x08\x1C\xCF\xBA\x5D\x71\x46" 19308 "\x80\x72\xB0\x4C\x82\x0D\x60\x3C", 19309 .clen = 208, 19310 }, { /* From draft-mcgrew-gcm-test-01 */ 19311 .key = "\x4C\x80\xCD\xEF\xBB\x5D\x10\xDA" 19312 "\x90\x6A\xC7\x3C\x36\x13\xA6\x34" 19313 "\x2E\x44\x3B\x68", 19314 .klen = 20, 19315 .iv = "\x49\x56\xED\x7E\x3B\x24\x4C\xFE", 19316 .ptext = "\x45\x00\x00\x48\x69\x9A\x00\x00" 19317 "\x80\x11\x4D\xB7\xC0\xA8\x01\x02" 19318 "\xC0\xA8\x01\x01\x0A\x9B\xF1\x56" 19319 "\x38\xD3\x01\x00\x00\x01\x00\x00" 19320 "\x00\x00\x00\x00\x04\x5F\x73\x69" 19321 "\x70\x04\x5F\x75\x64\x70\x03\x73" 19322 "\x69\x70\x09\x63\x79\x62\x65\x72" 19323 "\x63\x69\x74\x79\x02\x64\x6B\x00" 19324 "\x00\x21\x00\x01\x01\x02\x02\x01", 19325 .plen = 72, 19326 .assoc = "\x00\x00\x43\x21\x87\x65\x43\x21" 19327 "\x00\x00\x00\x00\x49\x56\xED\x7E" 19328 "\x3B\x24\x4C\xFE", 19329 .alen = 20, 19330 .ctext = "\xFE\xCF\x53\x7E\x72\x9D\x5B\x07" 19331 "\xDC\x30\xDF\x52\x8D\xD2\x2B\x76" 19332 "\x8D\x1B\x98\x73\x66\x96\xA6\xFD" 19333 "\x34\x85\x09\xFA\x13\xCE\xAC\x34" 19334 "\xCF\xA2\x43\x6F\x14\xA3\xF3\xCF" 19335 "\x65\x92\x5B\xF1\xF4\xA1\x3C\x5D" 19336 "\x15\xB2\x1E\x18\x84\xF5\xFF\x62" 19337 "\x47\xAE\xAB\xB7\x86\xB9\x3B\xCE" 19338 "\x61\xBC\x17\xD7\x68\xFD\x97\x32" 19339 "\x45\x90\x18\x14\x8F\x6C\xBE\x72" 19340 "\x2F\xD0\x47\x96\x56\x2D\xFD\xB4", 19341 .clen = 88, 19342 }, { 19343 .key = "\xFE\xFF\xE9\x92\x86\x65\x73\x1C" 19344 "\x6D\x6A\x8F\x94\x67\x30\x83\x08" 19345 "\xCA\xFE\xBA\xBE", 19346 .klen = 20, 19347 .iv = "\xFA\xCE\xDB\xAD\xDE\xCA\xF8\x88", 19348 .ptext = "\x45\x00\x00\x3E\x69\x8F\x00\x00" 19349 "\x80\x11\x4D\xCC\xC0\xA8\x01\x02" 19350 "\xC0\xA8\x01\x01\x0A\x98\x00\x35" 19351 "\x00\x2A\x23\x43\xB2\xD0\x01\x00" 19352 "\x00\x01\x00\x00\x00\x00\x00\x00" 19353 "\x03\x73\x69\x70\x09\x63\x79\x62" 19354 "\x65\x72\x63\x69\x74\x79\x02\x64" 19355 "\x6B\x00\x00\x01\x00\x01\x00\x01", 19356 .plen = 64, 19357 .assoc = "\x00\x00\xA5\xF8\x00\x00\x00\x0A" 19358 "\xFA\xCE\xDB\xAD\xDE\xCA\xF8\x88", 19359 .alen = 16, 19360 .ctext = "\xDE\xB2\x2C\xD9\xB0\x7C\x72\xC1" 19361 "\x6E\x3A\x65\xBE\xEB\x8D\xF3\x04" 19362 "\xA5\xA5\x89\x7D\x33\xAE\x53\x0F" 19363 "\x1B\xA7\x6D\x5D\x11\x4D\x2A\x5C" 19364 "\x3D\xE8\x18\x27\xC1\x0E\x9A\x4F" 19365 "\x51\x33\x0D\x0E\xEC\x41\x66\x42" 19366 "\xCF\xBB\x85\xA5\xB4\x7E\x48\xA4" 19367 "\xEC\x3B\x9B\xA9\x5D\x91\x8B\xD1" 19368 "\x83\xB7\x0D\x3A\xA8\xBC\x6E\xE4" 19369 "\xC3\x09\xE9\xD8\x5A\x41\xAD\x4A", 19370 .clen = 80, 19371 }, { 19372 .key = "\xAB\xBC\xCD\xDE\xF0\x01\x12\x23" 19373 "\x34\x45\x56\x67\x78\x89\x9A\xAB" 19374 "\xAB\xBC\xCD\xDE\xF0\x01\x12\x23" 19375 "\x34\x45\x56\x67\x78\x89\x9A\xAB" 19376 "\x11\x22\x33\x44", 19377 .klen = 36, 19378 .iv = "\x01\x02\x03\x04\x05\x06\x07\x08", 19379 .ptext = "\x45\x00\x00\x30\x69\xA6\x40\x00" 19380 "\x80\x06\x26\x90\xC0\xA8\x01\x02" 19381 "\x93\x89\x15\x5E\x0A\x9E\x00\x8B" 19382 "\x2D\xC5\x7E\xE0\x00\x00\x00\x00" 19383 "\x70\x02\x40\x00\x20\xBF\x00\x00" 19384 "\x02\x04\x05\xB4\x01\x01\x04\x02" 19385 "\x01\x02\x02\x01", 19386 .plen = 52, 19387 .assoc = "\x4A\x2C\xBF\xE3\x00\x00\x00\x02" 19388 "\x01\x02\x03\x04\x05\x06\x07\x08", 19389 .alen = 16, 19390 .ctext = "\xFF\x42\x5C\x9B\x72\x45\x99\xDF" 19391 "\x7A\x3B\xCD\x51\x01\x94\xE0\x0D" 19392 "\x6A\x78\x10\x7F\x1B\x0B\x1C\xBF" 19393 "\x06\xEF\xAE\x9D\x65\xA5\xD7\x63" 19394 "\x74\x8A\x63\x79\x85\x77\x1D\x34" 19395 "\x7F\x05\x45\x65\x9F\x14\xE9\x9D" 19396 "\xEF\x84\x2D\x8E\xB3\x35\xF4\xEE" 19397 "\xCF\xDB\xF8\x31\x82\x4B\x4C\x49" 19398 "\x15\x95\x6C\x96", 19399 .clen = 68, 19400 }, { 19401 .key = "\x00\x00\x00\x00\x00\x00\x00\x00" 19402 "\x00\x00\x00\x00\x00\x00\x00\x00" 19403 "\x00\x00\x00\x00", 19404 .klen = 20, 19405 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00", 19406 .ptext = "\x45\x00\x00\x3C\x99\xC5\x00\x00" 19407 "\x80\x01\xCB\x7A\x40\x67\x93\x18" 19408 "\x01\x01\x01\x01\x08\x00\x07\x5C" 19409 "\x02\x00\x44\x00\x61\x62\x63\x64" 19410 "\x65\x66\x67\x68\x69\x6A\x6B\x6C" 19411 "\x6D\x6E\x6F\x70\x71\x72\x73\x74" 19412 "\x75\x76\x77\x61\x62\x63\x64\x65" 19413 "\x66\x67\x68\x69\x01\x02\x02\x01", 19414 .plen = 64, 19415 .assoc = "\x00\x00\x00\x00\x00\x00\x00\x01" 19416 "\x00\x00\x00\x00\x00\x00\x00\x00", 19417 .alen = 16, 19418 .ctext = "\x46\x88\xDA\xF2\xF9\x73\xA3\x92" 19419 "\x73\x29\x09\xC3\x31\xD5\x6D\x60" 19420 "\xF6\x94\xAB\xAA\x41\x4B\x5E\x7F" 19421 "\xF5\xFD\xCD\xFF\xF5\xE9\xA2\x84" 19422 "\x45\x64\x76\x49\x27\x19\xFF\xB6" 19423 "\x4D\xE7\xD9\xDC\xA1\xE1\xD8\x94" 19424 "\xBC\x3B\xD5\x78\x73\xED\x4D\x18" 19425 "\x1D\x19\xD4\xD5\xC8\xC1\x8A\xF3" 19426 "\xF8\x21\xD4\x96\xEE\xB0\x96\xE9" 19427 "\x8A\xD2\xB6\x9E\x47\x99\xC7\x1D", 19428 .clen = 80, 19429 }, { 19430 .key = "\x3D\xE0\x98\x74\xB3\x88\xE6\x49" 19431 "\x19\x88\xD0\xC3\x60\x7E\xAE\x1F" 19432 "\x57\x69\x0E\x43", 19433 .klen = 20, 19434 .iv = "\x4E\x28\x00\x00\xA2\xFC\xA1\xA3", 19435 .ptext = "\x45\x00\x00\x3C\x99\xC3\x00\x00" 19436 "\x80\x01\xCB\x7C\x40\x67\x93\x18" 19437 "\x01\x01\x01\x01\x08\x00\x08\x5C" 19438 "\x02\x00\x43\x00\x61\x62\x63\x64" 19439 "\x65\x66\x67\x68\x69\x6A\x6B\x6C" 19440 "\x6D\x6E\x6F\x70\x71\x72\x73\x74" 19441 "\x75\x76\x77\x61\x62\x63\x64\x65" 19442 "\x66\x67\x68\x69\x01\x02\x02\x01", 19443 .plen = 64, 19444 .assoc = "\x42\xF6\x7E\x3F\x10\x10\x10\x10" 19445 "\x10\x10\x10\x10\x4E\x28\x00\x00" 19446 "\xA2\xFC\xA1\xA3", 19447 .alen = 20, 19448 .ctext = "\xFB\xA2\xCA\xA4\x85\x3C\xF9\xF0" 19449 "\xF2\x2C\xB1\x0D\x86\xDD\x83\xB0" 19450 "\xFE\xC7\x56\x91\xCF\x1A\x04\xB0" 19451 "\x0D\x11\x38\xEC\x9C\x35\x79\x17" 19452 "\x65\xAC\xBD\x87\x01\xAD\x79\x84" 19453 "\x5B\xF9\xFE\x3F\xBA\x48\x7B\xC9" 19454 "\x17\x55\xE6\x66\x2B\x4C\x8D\x0D" 19455 "\x1F\x5E\x22\x73\x95\x30\x32\x0A" 19456 "\xE0\xD7\x31\xCC\x97\x8E\xCA\xFA" 19457 "\xEA\xE8\x8F\x00\xE8\x0D\x6E\x48", 19458 .clen = 80, 19459 }, { 19460 .key = "\x3D\xE0\x98\x74\xB3\x88\xE6\x49" 19461 "\x19\x88\xD0\xC3\x60\x7E\xAE\x1F" 19462 "\x57\x69\x0E\x43", 19463 .klen = 20, 19464 .iv = "\x4E\x28\x00\x00\xA2\xFC\xA1\xA3", 19465 .ptext = "\x45\x00\x00\x1C\x42\xA2\x00\x00" 19466 "\x80\x01\x44\x1F\x40\x67\x93\xB6" 19467 "\xE0\x00\x00\x02\x0A\x00\xF5\xFF" 19468 "\x01\x02\x02\x01", 19469 .plen = 28, 19470 .assoc = "\x42\xF6\x7E\x3F\x10\x10\x10\x10" 19471 "\x10\x10\x10\x10\x4E\x28\x00\x00" 19472 "\xA2\xFC\xA1\xA3", 19473 .alen = 20, 19474 .ctext = "\xFB\xA2\xCA\x84\x5E\x5D\xF9\xF0" 19475 "\xF2\x2C\x3E\x6E\x86\xDD\x83\x1E" 19476 "\x1F\xC6\x57\x92\xCD\x1A\xF9\x13" 19477 "\x0E\x13\x79\xED\x36\x9F\x07\x1F" 19478 "\x35\xE0\x34\xBE\x95\xF1\x12\xE4" 19479 "\xE7\xD0\x5D\x35", 19480 .clen = 44, 19481 }, { 19482 .key = "\xFE\xFF\xE9\x92\x86\x65\x73\x1C" 19483 "\x6D\x6A\x8F\x94\x67\x30\x83\x08" 19484 "\xFE\xFF\xE9\x92\x86\x65\x73\x1C" 19485 "\xCA\xFE\xBA\xBE", 19486 .klen = 28, 19487 .iv = "\xFA\xCE\xDB\xAD\xDE\xCA\xF8\x88", 19488 .ptext = "\x45\x00\x00\x28\xA4\xAD\x40\x00" 19489 "\x40\x06\x78\x80\x0A\x01\x03\x8F" 19490 "\x0A\x01\x06\x12\x80\x23\x06\xB8" 19491 "\xCB\x71\x26\x02\xDD\x6B\xB0\x3E" 19492 "\x50\x10\x16\xD0\x75\x68\x00\x01", 19493 .plen = 40, 19494 .assoc = "\x00\x00\xA5\xF8\x00\x00\x00\x0A" 19495 "\xFA\xCE\xDB\xAD\xDE\xCA\xF8\x88", 19496 .alen = 16, 19497 .ctext = "\xA5\xB1\xF8\x06\x60\x29\xAE\xA4" 19498 "\x0E\x59\x8B\x81\x22\xDE\x02\x42" 19499 "\x09\x38\xB3\xAB\x33\xF8\x28\xE6" 19500 "\x87\xB8\x85\x8B\x5B\xFB\xDB\xD0" 19501 "\x31\x5B\x27\x45\x21\x44\xCC\x77" 19502 "\x95\x45\x7B\x96\x52\x03\x7F\x53" 19503 "\x18\x02\x7B\x5B\x4C\xD7\xA6\x36", 19504 .clen = 56, 19505 }, { 19506 .key = "\xAB\xBC\xCD\xDE\xF0\x01\x12\x23" 19507 "\x34\x45\x56\x67\x78\x89\x9A\xAB" 19508 "\xDE\xCA\xF8\x88", 19509 .klen = 20, 19510 .iv = "\xCA\xFE\xDE\xBA\xCE\xFA\xCE\x74", 19511 .ptext = "\x45\x00\x00\x49\x33\xBA\x00\x00" 19512 "\x7F\x11\x91\x06\xC3\xFB\x1D\x10" 19513 "\xC2\xB1\xD3\x26\xC0\x28\x31\xCE" 19514 "\x00\x35\xDD\x7B\x80\x03\x02\xD5" 19515 "\x00\x00\x4E\x20\x00\x1E\x8C\x18" 19516 "\xD7\x5B\x81\xDC\x91\xBA\xA0\x47" 19517 "\x6B\x91\xB9\x24\xB2\x80\x38\x9D" 19518 "\x92\xC9\x63\xBA\xC0\x46\xEC\x95" 19519 "\x9B\x62\x66\xC0\x47\x22\xB1\x49" 19520 "\x23\x01\x01\x01", 19521 .plen = 76, 19522 .assoc = "\x00\x00\x01\x00\x00\x00\x00\x00" 19523 "\x00\x00\x00\x01\xCA\xFE\xDE\xBA" 19524 "\xCE\xFA\xCE\x74", 19525 .alen = 20, 19526 .ctext = "\x18\xA6\xFD\x42\xF7\x2C\xBF\x4A" 19527 "\xB2\xA2\xEA\x90\x1F\x73\xD8\x14" 19528 "\xE3\xE7\xF2\x43\xD9\x54\x12\xE1" 19529 "\xC3\x49\xC1\xD2\xFB\xEC\x16\x8F" 19530 "\x91\x90\xFE\xEB\xAF\x2C\xB0\x19" 19531 "\x84\xE6\x58\x63\x96\x5D\x74\x72" 19532 "\xB7\x9D\xA3\x45\xE0\xE7\x80\x19" 19533 "\x1F\x0D\x2F\x0E\x0F\x49\x6C\x22" 19534 "\x6F\x21\x27\xB2\x7D\xB3\x57\x24" 19535 "\xE7\x84\x5D\x68\x65\x1F\x57\xE6" 19536 "\x5F\x35\x4F\x75\xFF\x17\x01\x57" 19537 "\x69\x62\x34\x36", 19538 .clen = 92, 19539 }, { 19540 .key = "\xAB\xBC\xCD\xDE\xF0\x01\x12\x23" 19541 "\x34\x45\x56\x67\x78\x89\x9A\xAB" 19542 "\xAB\xBC\xCD\xDE\xF0\x01\x12\x23" 19543 "\x34\x45\x56\x67\x78\x89\x9A\xAB" 19544 "\x73\x61\x6C\x74", 19545 .klen = 36, 19546 .iv = "\x61\x6E\x64\x01\x69\x76\x65\x63", 19547 .ptext = "\x45\x08\x00\x28\x73\x2C\x00\x00" 19548 "\x40\x06\xE9\xF9\x0A\x01\x06\x12" 19549 "\x0A\x01\x03\x8F\x06\xB8\x80\x23" 19550 "\xDD\x6B\xAF\xBE\xCB\x71\x26\x02" 19551 "\x50\x10\x1F\x64\x6D\x54\x00\x01", 19552 .plen = 40, 19553 .assoc = "\x17\x40\x5E\x67\x15\x6F\x31\x26" 19554 "\xDD\x0D\xB9\x9B\x61\x6E\x64\x01" 19555 "\x69\x76\x65\x63", 19556 .alen = 20, 19557 .ctext = "\xF2\xD6\x9E\xCD\xBD\x5A\x0D\x5B" 19558 "\x8D\x5E\xF3\x8B\xAD\x4D\xA5\x8D" 19559 "\x1F\x27\x8F\xDE\x98\xEF\x67\x54" 19560 "\x9D\x52\x4A\x30\x18\xD9\xA5\x7F" 19561 "\xF4\xD3\xA3\x1C\xE6\x73\x11\x9E" 19562 "\x45\x16\x26\xC2\x41\x57\x71\xE3" 19563 "\xB7\xEE\xBC\xA6\x14\xC8\x9B\x35", 19564 .clen = 56, 19565 }, { 19566 .key = "\x3D\xE0\x98\x74\xB3\x88\xE6\x49" 19567 "\x19\x88\xD0\xC3\x60\x7E\xAE\x1F" 19568 "\x57\x69\x0E\x43", 19569 .klen = 20, 19570 .iv = "\x4E\x28\x00\x00\xA2\xFC\xA1\xA3", 19571 .ptext = "\x45\x00\x00\x49\x33\x3E\x00\x00" 19572 "\x7F\x11\x91\x82\xC3\xFB\x1D\x10" 19573 "\xC2\xB1\xD3\x26\xC0\x28\x31\xCE" 19574 "\x00\x35\xCB\x45\x80\x03\x02\x5B" 19575 "\x00\x00\x01\xE0\x00\x1E\x8C\x18" 19576 "\xD6\x57\x59\xD5\x22\x84\xA0\x35" 19577 "\x2C\x71\x47\x5C\x88\x80\x39\x1C" 19578 "\x76\x4D\x6E\x5E\xE0\x49\x6B\x32" 19579 "\x5A\xE2\x70\xC0\x38\x99\x49\x39" 19580 "\x15\x01\x01\x01", 19581 .plen = 76, 19582 .assoc = "\x42\xF6\x7E\x3F\x10\x10\x10\x10" 19583 "\x10\x10\x10\x10\x4E\x28\x00\x00" 19584 "\xA2\xFC\xA1\xA3", 19585 .alen = 20, 19586 .ctext = "\xFB\xA2\xCA\xD1\x2F\xC1\xF9\xF0" 19587 "\x0D\x3C\xEB\xF3\x05\x41\x0D\xB8" 19588 "\x3D\x77\x84\xB6\x07\x32\x3D\x22" 19589 "\x0F\x24\xB0\xA9\x7D\x54\x18\x28" 19590 "\x00\xCA\xDB\x0F\x68\xD9\x9E\xF0" 19591 "\xE0\xC0\xC8\x9A\xE9\xBE\xA8\x88" 19592 "\x4E\x52\xD6\x5B\xC1\xAF\xD0\x74" 19593 "\x0F\x74\x24\x44\x74\x7B\x5B\x39" 19594 "\xAB\x53\x31\x63\xAA\xD4\x55\x0E" 19595 "\xE5\x16\x09\x75\xCD\xB6\x08\xC5" 19596 "\x76\x91\x89\x60\x97\x63\xB8\xE1" 19597 "\x8C\xAA\x81\xE2", 19598 .clen = 92, 19599 }, { 19600 .key = "\xAB\xBC\xCD\xDE\xF0\x01\x12\x23" 19601 "\x34\x45\x56\x67\x78\x89\x9A\xAB" 19602 "\xAB\xBC\xCD\xDE\xF0\x01\x12\x23" 19603 "\x34\x45\x56\x67\x78\x89\x9A\xAB" 19604 "\x73\x61\x6C\x74", 19605 .klen = 36, 19606 .iv = "\x61\x6E\x64\x01\x69\x76\x65\x63", 19607 .ptext = "\x63\x69\x73\x63\x6F\x01\x72\x75" 19608 "\x6C\x65\x73\x01\x74\x68\x65\x01" 19609 "\x6E\x65\x74\x77\x65\x01\x64\x65" 19610 "\x66\x69\x6E\x65\x01\x74\x68\x65" 19611 "\x74\x65\x63\x68\x6E\x6F\x6C\x6F" 19612 "\x67\x69\x65\x73\x01\x74\x68\x61" 19613 "\x74\x77\x69\x6C\x6C\x01\x64\x65" 19614 "\x66\x69\x6E\x65\x74\x6F\x6D\x6F" 19615 "\x72\x72\x6F\x77\x01\x02\x02\x01", 19616 .plen = 72, 19617 .assoc = "\x17\x40\x5E\x67\x15\x6F\x31\x26" 19618 "\xDD\x0D\xB9\x9B\x61\x6E\x64\x01" 19619 "\x69\x76\x65\x63", 19620 .alen = 20, 19621 .ctext = "\xD4\xB7\xED\x86\xA1\x77\x7F\x2E" 19622 "\xA1\x3D\x69\x73\xD3\x24\xC6\x9E" 19623 "\x7B\x43\xF8\x26\xFB\x56\x83\x12" 19624 "\x26\x50\x8B\xEB\xD2\xDC\xEB\x18" 19625 "\xD0\xA6\xDF\x10\xE5\x48\x7D\xF0" 19626 "\x74\x11\x3E\x14\xC6\x41\x02\x4E" 19627 "\x3E\x67\x73\xD9\x1A\x62\xEE\x42" 19628 "\x9B\x04\x3A\x10\xE3\xEF\xE6\xB0" 19629 "\x12\xA4\x93\x63\x41\x23\x64\xF8" 19630 "\xC0\xCA\xC5\x87\xF2\x49\xE5\x6B" 19631 "\x11\xE2\x4F\x30\xE4\x4C\xCC\x76", 19632 .clen = 88, 19633 }, { 19634 .key = "\x7D\x77\x3D\x00\xC1\x44\xC5\x25" 19635 "\xAC\x61\x9D\x18\xC8\x4A\x3F\x47" 19636 "\xD9\x66\x42\x67", 19637 .klen = 20, 19638 .iv = "\x43\x45\x7E\x91\x82\x44\x3B\xC6", 19639 .ptext = "\x01\x02\x02\x01", 19640 .plen = 4, 19641 .assoc = "\x33\x54\x67\xAE\xFF\xFF\xFF\xFF" 19642 "\x43\x45\x7E\x91\x82\x44\x3B\xC6", 19643 .alen = 16, 19644 .ctext = "\x43\x7F\x86\x6B\xCB\x3F\x69\x9F" 19645 "\xE9\xB0\x82\x2B\xAC\x96\x1C\x45" 19646 "\x04\xBE\xF2\x70", 19647 .clen = 20, 19648 }, { 19649 .key = "\xAB\xBC\xCD\xDE\xF0\x01\x12\x23" 19650 "\x34\x45\x56\x67\x78\x89\x9A\xAB" 19651 "\xDE\xCA\xF8\x88", 19652 .klen = 20, 19653 .iv = "\xCA\xFE\xDE\xBA\xCE\xFA\xCE\x74", 19654 .ptext = "\x74\x6F\x01\x62\x65\x01\x6F\x72" 19655 "\x01\x6E\x6F\x74\x01\x74\x6F\x01" 19656 "\x62\x65\x00\x01", 19657 .plen = 20, 19658 .assoc = "\x00\x00\x01\x00\x00\x00\x00\x00" 19659 "\x00\x00\x00\x01\xCA\xFE\xDE\xBA" 19660 "\xCE\xFA\xCE\x74", 19661 .alen = 20, 19662 .ctext = "\x29\xC9\xFC\x69\xA1\x97\xD0\x38" 19663 "\xCC\xDD\x14\xE2\xDD\xFC\xAA\x05" 19664 "\x43\x33\x21\x64\x41\x25\x03\x52" 19665 "\x43\x03\xED\x3C\x6C\x5F\x28\x38" 19666 "\x43\xAF\x8C\x3E", 19667 .clen = 36, 19668 }, { 19669 .key = "\x6C\x65\x67\x61\x6C\x69\x7A\x65" 19670 "\x6D\x61\x72\x69\x6A\x75\x61\x6E" 19671 "\x61\x61\x6E\x64\x64\x6F\x69\x74" 19672 "\x62\x65\x66\x6F\x72\x65\x69\x61" 19673 "\x74\x75\x72\x6E", 19674 .klen = 36, 19675 .iv = "\x33\x30\x21\x69\x67\x65\x74\x6D", 19676 .ptext = "\x45\x00\x00\x30\xDA\x3A\x00\x00" 19677 "\x80\x01\xDF\x3B\xC0\xA8\x00\x05" 19678 "\xC0\xA8\x00\x01\x08\x00\xC6\xCD" 19679 "\x02\x00\x07\x00\x61\x62\x63\x64" 19680 "\x65\x66\x67\x68\x69\x6A\x6B\x6C" 19681 "\x6D\x6E\x6F\x70\x71\x72\x73\x74" 19682 "\x01\x02\x02\x01", 19683 .plen = 52, 19684 .assoc = "\x79\x6B\x69\x63\xFF\xFF\xFF\xFF" 19685 "\xFF\xFF\xFF\xFF\x33\x30\x21\x69" 19686 "\x67\x65\x74\x6D", 19687 .alen = 20, 19688 .ctext = "\xF9\x7A\xB2\xAA\x35\x6D\x8E\xDC" 19689 "\xE1\x76\x44\xAC\x8C\x78\xE2\x5D" 19690 "\xD2\x4D\xED\xBB\x29\xEB\xF1\xB6" 19691 "\x4A\x27\x4B\x39\xB4\x9C\x3A\x86" 19692 "\x4C\xD3\xD7\x8C\xA4\xAE\x68\xA3" 19693 "\x2B\x42\x45\x8F\xB5\x7D\xBE\x82" 19694 "\x1D\xCC\x63\xB9\xD0\x93\x7B\xA2" 19695 "\x94\x5F\x66\x93\x68\x66\x1A\x32" 19696 "\x9F\xB4\xC0\x53", 19697 .clen = 68, 19698 }, { 19699 .key = "\x3D\xE0\x98\x74\xB3\x88\xE6\x49" 19700 "\x19\x88\xD0\xC3\x60\x7E\xAE\x1F" 19701 "\x57\x69\x0E\x43", 19702 .klen = 20, 19703 .iv = "\x4E\x28\x00\x00\xA2\xFC\xA1\xA3", 19704 .ptext = "\x45\x00\x00\x30\xDA\x3A\x00\x00" 19705 "\x80\x01\xDF\x3B\xC0\xA8\x00\x05" 19706 "\xC0\xA8\x00\x01\x08\x00\xC6\xCD" 19707 "\x02\x00\x07\x00\x61\x62\x63\x64" 19708 "\x65\x66\x67\x68\x69\x6A\x6B\x6C" 19709 "\x6D\x6E\x6F\x70\x71\x72\x73\x74" 19710 "\x01\x02\x02\x01", 19711 .plen = 52, 19712 .assoc = "\x3F\x7E\xF6\x42\x10\x10\x10\x10" 19713 "\x10\x10\x10\x10\x4E\x28\x00\x00" 19714 "\xA2\xFC\xA1\xA3", 19715 .alen = 20, 19716 .ctext = "\xFB\xA2\xCA\xA8\xC6\xC5\xF9\xF0" 19717 "\xF2\x2C\xA5\x4A\x06\x12\x10\xAD" 19718 "\x3F\x6E\x57\x91\xCF\x1A\xCA\x21" 19719 "\x0D\x11\x7C\xEC\x9C\x35\x79\x17" 19720 "\x65\xAC\xBD\x87\x01\xAD\x79\x84" 19721 "\x5B\xF9\xFE\x3F\xBA\x48\x7B\xC9" 19722 "\x63\x21\x93\x06\x84\xEE\xCA\xDB" 19723 "\x56\x91\x25\x46\xE7\xA9\x5C\x97" 19724 "\x40\xD7\xCB\x05", 19725 .clen = 68, 19726 }, { 19727 .key = "\x4C\x80\xCD\xEF\xBB\x5D\x10\xDA" 19728 "\x90\x6A\xC7\x3C\x36\x13\xA6\x34" 19729 "\x22\x43\x3C\x64", 19730 .klen = 20, 19731 .iv = "\x48\x55\xEC\x7D\x3A\x23\x4B\xFD", 19732 .ptext = "\x08\x00\xC6\xCD\x02\x00\x07\x00" 19733 "\x61\x62\x63\x64\x65\x66\x67\x68" 19734 "\x69\x6A\x6B\x6C\x6D\x6E\x6F\x70" 19735 "\x71\x72\x73\x74\x01\x02\x02\x01", 19736 .plen = 32, 19737 .assoc = "\x00\x00\x43\x21\x87\x65\x43\x21" 19738 "\x00\x00\x00\x07\x48\x55\xEC\x7D" 19739 "\x3A\x23\x4B\xFD", 19740 .alen = 20, 19741 .ctext = "\x74\x75\x2E\x8A\xEB\x5D\x87\x3C" 19742 "\xD7\xC0\xF4\xAC\xC3\x6C\x4B\xFF" 19743 "\x84\xB7\xD7\xB9\x8F\x0C\xA8\xB6" 19744 "\xAC\xDA\x68\x94\xBC\x61\x90\x69" 19745 "\xEF\x9C\xBC\x28\xFE\x1B\x56\xA7" 19746 "\xC4\xE0\xD5\x8C\x86\xCD\x2B\xC0", 19747 .clen = 48, 19748 } 19749 }; 19750 19751 static const struct aead_testvec aes_gcm_rfc4543_tv_template[] = { 19752 { /* From draft-mcgrew-gcm-test-01 */ 19753 .key = "\x4c\x80\xcd\xef\xbb\x5d\x10\xda" 19754 "\x90\x6a\xc7\x3c\x36\x13\xa6\x34" 19755 "\x22\x43\x3c\x64", 19756 .klen = 20, 19757 .iv = zeroed_string, 19758 .assoc = "\x00\x00\x43\x21\x00\x00\x00\x07" 19759 "\x00\x00\x00\x00\x00\x00\x00\x00", 19760 .alen = 16, 19761 .ptext = "\x45\x00\x00\x30\xda\x3a\x00\x00" 19762 "\x80\x01\xdf\x3b\xc0\xa8\x00\x05" 19763 "\xc0\xa8\x00\x01\x08\x00\xc6\xcd" 19764 "\x02\x00\x07\x00\x61\x62\x63\x64" 19765 "\x65\x66\x67\x68\x69\x6a\x6b\x6c" 19766 "\x6d\x6e\x6f\x70\x71\x72\x73\x74" 19767 "\x01\x02\x02\x01", 19768 .plen = 52, 19769 .ctext = "\x45\x00\x00\x30\xda\x3a\x00\x00" 19770 "\x80\x01\xdf\x3b\xc0\xa8\x00\x05" 19771 "\xc0\xa8\x00\x01\x08\x00\xc6\xcd" 19772 "\x02\x00\x07\x00\x61\x62\x63\x64" 19773 "\x65\x66\x67\x68\x69\x6a\x6b\x6c" 19774 "\x6d\x6e\x6f\x70\x71\x72\x73\x74" 19775 "\x01\x02\x02\x01\xf2\xa9\xa8\x36" 19776 "\xe1\x55\x10\x6a\xa8\xdc\xd6\x18" 19777 "\xe4\x09\x9a\xaa", 19778 .clen = 68, 19779 }, { /* nearly same as previous, but should fail */ 19780 .key = "\x4c\x80\xcd\xef\xbb\x5d\x10\xda" 19781 "\x90\x6a\xc7\x3c\x36\x13\xa6\x34" 19782 "\x22\x43\x3c\x64", 19783 .klen = 20, 19784 .iv = zeroed_string, 19785 .assoc = "\x00\x00\x43\x21\x00\x00\x00\x07" 19786 "\x00\x00\x00\x00\x00\x00\x00\x00", 19787 .alen = 16, 19788 .ptext = "\x45\x00\x00\x30\xda\x3a\x00\x00" 19789 "\x80\x01\xdf\x3b\xc0\xa8\x00\x05" 19790 "\xc0\xa8\x00\x01\x08\x00\xc6\xcd" 19791 "\x02\x00\x07\x00\x61\x62\x63\x64" 19792 "\x65\x66\x67\x68\x69\x6a\x6b\x6c" 19793 "\x6d\x6e\x6f\x70\x71\x72\x73\x74" 19794 "\x01\x02\x02\x01", 19795 .plen = 52, 19796 .novrfy = 1, 19797 .ctext = "\x45\x00\x00\x30\xda\x3a\x00\x00" 19798 "\x80\x01\xdf\x3b\xc0\xa8\x00\x05" 19799 "\xc0\xa8\x00\x01\x08\x00\xc6\xcd" 19800 "\x02\x00\x07\x00\x61\x62\x63\x64" 19801 "\x65\x66\x67\x68\x69\x6a\x6b\x6c" 19802 "\x6d\x6e\x6f\x70\x71\x72\x73\x74" 19803 "\x01\x02\x02\x01\xf2\xa9\xa8\x36" 19804 "\xe1\x55\x10\x6a\xa8\xdc\xd6\x18" 19805 "\x00\x00\x00\x00", 19806 .clen = 68, 19807 }, 19808 }; 19809 19810 static const struct aead_testvec aes_ccm_tv_template[] = { 19811 { /* From RFC 3610 */ 19812 .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 19813 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf", 19814 .klen = 16, 19815 .iv = "\x01\x00\x00\x00\x03\x02\x01\x00" 19816 "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00", 19817 .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07", 19818 .alen = 8, 19819 .ptext = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 19820 "\x10\x11\x12\x13\x14\x15\x16\x17" 19821 "\x18\x19\x1a\x1b\x1c\x1d\x1e", 19822 .plen = 23, 19823 .ctext = "\x58\x8c\x97\x9a\x61\xc6\x63\xd2" 19824 "\xf0\x66\xd0\xc2\xc0\xf9\x89\x80" 19825 "\x6d\x5f\x6b\x61\xda\xc3\x84\x17" 19826 "\xe8\xd1\x2c\xfd\xf9\x26\xe0", 19827 .clen = 31, 19828 }, { 19829 .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 19830 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf", 19831 .klen = 16, 19832 .iv = "\x01\x00\x00\x00\x07\x06\x05\x04" 19833 "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00", 19834 .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07" 19835 "\x08\x09\x0a\x0b", 19836 .alen = 12, 19837 .ptext = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13" 19838 "\x14\x15\x16\x17\x18\x19\x1a\x1b" 19839 "\x1c\x1d\x1e\x1f", 19840 .plen = 20, 19841 .ctext = "\xdc\xf1\xfb\x7b\x5d\x9e\x23\xfb" 19842 "\x9d\x4e\x13\x12\x53\x65\x8a\xd8" 19843 "\x6e\xbd\xca\x3e\x51\xe8\x3f\x07" 19844 "\x7d\x9c\x2d\x93", 19845 .clen = 28, 19846 }, { 19847 .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 19848 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf", 19849 .klen = 16, 19850 .iv = "\x01\x00\x00\x00\x0b\x0a\x09\x08" 19851 "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00", 19852 .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07", 19853 .alen = 8, 19854 .ptext = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 19855 "\x10\x11\x12\x13\x14\x15\x16\x17" 19856 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 19857 "\x20", 19858 .plen = 25, 19859 .ctext = "\x82\x53\x1a\x60\xcc\x24\x94\x5a" 19860 "\x4b\x82\x79\x18\x1a\xb5\xc8\x4d" 19861 "\xf2\x1c\xe7\xf9\xb7\x3f\x42\xe1" 19862 "\x97\xea\x9c\x07\xe5\x6b\x5e\xb1" 19863 "\x7e\x5f\x4e", 19864 .clen = 35, 19865 }, { 19866 .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 19867 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf", 19868 .klen = 16, 19869 .iv = "\x01\x00\x00\x00\x0c\x0b\x0a\x09" 19870 "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00", 19871 .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07" 19872 "\x08\x09\x0a\x0b", 19873 .alen = 12, 19874 .ptext = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13" 19875 "\x14\x15\x16\x17\x18\x19\x1a\x1b" 19876 "\x1c\x1d\x1e", 19877 .plen = 19, 19878 .ctext = "\x07\x34\x25\x94\x15\x77\x85\x15" 19879 "\x2b\x07\x40\x98\x33\x0a\xbb\x14" 19880 "\x1b\x94\x7b\x56\x6a\xa9\x40\x6b" 19881 "\x4d\x99\x99\x88\xdd", 19882 .clen = 29, 19883 }, { 19884 .key = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3" 19885 "\x25\xa7\x62\x36\xdf\x93\xcc\x6b", 19886 .klen = 16, 19887 .iv = "\x01\x00\x33\x56\x8e\xf7\xb2\x63" 19888 "\x3c\x96\x96\x76\x6c\xfa\x00\x00", 19889 .assoc = "\x63\x01\x8f\x76\xdc\x8a\x1b\xcb", 19890 .alen = 8, 19891 .ptext = "\x90\x20\xea\x6f\x91\xbd\xd8\x5a" 19892 "\xfa\x00\x39\xba\x4b\xaf\xf9\xbf" 19893 "\xb7\x9c\x70\x28\x94\x9c\xd0\xec", 19894 .plen = 24, 19895 .ctext = "\x4c\xcb\x1e\x7c\xa9\x81\xbe\xfa" 19896 "\xa0\x72\x6c\x55\xd3\x78\x06\x12" 19897 "\x98\xc8\x5c\x92\x81\x4a\xbc\x33" 19898 "\xc5\x2e\xe8\x1d\x7d\x77\xc0\x8a", 19899 .clen = 32, 19900 }, { 19901 .key = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3" 19902 "\x25\xa7\x62\x36\xdf\x93\xcc\x6b", 19903 .klen = 16, 19904 .iv = "\x01\x00\xd5\x60\x91\x2d\x3f\x70" 19905 "\x3c\x96\x96\x76\x6c\xfa\x00\x00", 19906 .assoc = "\xcd\x90\x44\xd2\xb7\x1f\xdb\x81" 19907 "\x20\xea\x60\xc0", 19908 .alen = 12, 19909 .ptext = "\x64\x35\xac\xba\xfb\x11\xa8\x2e" 19910 "\x2f\x07\x1d\x7c\xa4\xa5\xeb\xd9" 19911 "\x3a\x80\x3b\xa8\x7f", 19912 .plen = 21, 19913 .ctext = "\x00\x97\x69\xec\xab\xdf\x48\x62" 19914 "\x55\x94\xc5\x92\x51\xe6\x03\x57" 19915 "\x22\x67\x5e\x04\xc8\x47\x09\x9e" 19916 "\x5a\xe0\x70\x45\x51", 19917 .clen = 29, 19918 }, { 19919 .key = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3" 19920 "\x25\xa7\x62\x36\xdf\x93\xcc\x6b", 19921 .klen = 16, 19922 .iv = "\x01\x00\x42\xff\xf8\xf1\x95\x1c" 19923 "\x3c\x96\x96\x76\x6c\xfa\x00\x00", 19924 .assoc = "\xd8\x5b\xc7\xe6\x9f\x94\x4f\xb8", 19925 .alen = 8, 19926 .ptext = "\x8a\x19\xb9\x50\xbc\xf7\x1a\x01" 19927 "\x8e\x5e\x67\x01\xc9\x17\x87\x65" 19928 "\x98\x09\xd6\x7d\xbe\xdd\x18", 19929 .plen = 23, 19930 .ctext = "\xbc\x21\x8d\xaa\x94\x74\x27\xb6" 19931 "\xdb\x38\x6a\x99\xac\x1a\xef\x23" 19932 "\xad\xe0\xb5\x29\x39\xcb\x6a\x63" 19933 "\x7c\xf9\xbe\xc2\x40\x88\x97\xc6" 19934 "\xba", 19935 .clen = 33, 19936 }, { 19937 /* This is taken from FIPS CAVS. */ 19938 .key = "\x83\xac\x54\x66\xc2\xeb\xe5\x05" 19939 "\x2e\x01\xd1\xfc\x5d\x82\x66\x2e", 19940 .klen = 16, 19941 .iv = "\x03\x96\xac\x59\x30\x07\xa1\xe2\xa2\xc7\x55\x24\0\0\0\0", 19942 .alen = 0, 19943 .ptext = "\x19\xc8\x81\xf6\xe9\x86\xff\x93" 19944 "\x0b\x78\x67\xe5\xbb\xb7\xfc\x6e" 19945 "\x83\x77\xb3\xa6\x0c\x8c\x9f\x9c" 19946 "\x35\x2e\xad\xe0\x62\xf9\x91\xa1", 19947 .plen = 32, 19948 .ctext = "\xab\x6f\xe1\x69\x1d\x19\x99\xa8" 19949 "\x92\xa0\xc4\x6f\x7e\xe2\x8b\xb1" 19950 "\x70\xbb\x8c\xa6\x4c\x6e\x97\x8a" 19951 "\x57\x2b\xbe\x5d\x98\xa6\xb1\x32" 19952 "\xda\x24\xea\xd9\xa1\x39\x98\xfd" 19953 "\xa4\xbe\xd9\xf2\x1a\x6d\x22\xa8", 19954 .clen = 48, 19955 }, { 19956 .key = "\x1e\x2c\x7e\x01\x41\x9a\xef\xc0" 19957 "\x0d\x58\x96\x6e\x5c\xa2\x4b\xd3", 19958 .klen = 16, 19959 .iv = "\x03\x4f\xa3\x19\xd3\x01\x5a\xd8" 19960 "\x30\x60\x15\x56\x00\x00\x00\x00", 19961 .assoc = "\xda\xe6\x28\x9c\x45\x2d\xfd\x63" 19962 "\x5e\xda\x4c\xb6\xe6\xfc\xf9\xb7" 19963 "\x0c\x56\xcb\xe4\xe0\x05\x7a\xe1" 19964 "\x0a\x63\x09\x78\xbc\x2c\x55\xde", 19965 .alen = 32, 19966 .ptext = "\x87\xa3\x36\xfd\x96\xb3\x93\x78" 19967 "\xa9\x28\x63\xba\x12\xa3\x14\x85" 19968 "\x57\x1e\x06\xc9\x7b\x21\xef\x76" 19969 "\x7f\x38\x7e\x8e\x29\xa4\x3e\x7e", 19970 .plen = 32, 19971 .ctext = "\x8a\x1e\x11\xf0\x02\x6b\xe2\x19" 19972 "\xfc\x70\xc4\x6d\x8e\xb7\x99\xab" 19973 "\xc5\x4b\xa2\xac\xd3\xf3\x48\xff" 19974 "\x3b\xb5\xce\x53\xef\xde\xbb\x02" 19975 "\xa9\x86\x15\x6c\x13\xfe\xda\x0a" 19976 "\x22\xb8\x29\x3d\xd8\x39\x9a\x23", 19977 .clen = 48, 19978 }, { 19979 .key = "\xf4\x6b\xc2\x75\x62\xfe\xb4\xe1" 19980 "\xa3\xf0\xff\xdd\x4e\x4b\x12\x75" 19981 "\x53\x14\x73\x66\x8d\x88\xf6\x80", 19982 .klen = 24, 19983 .iv = "\x03\xa0\x20\x35\x26\xf2\x21\x8d" 19984 "\x50\x20\xda\xe2\x00\x00\x00\x00", 19985 .assoc = "\x5b\x9e\x13\x67\x02\x5e\xef\xc1" 19986 "\x6c\xf9\xd7\x1e\x52\x8f\x7a\x47" 19987 "\xe9\xd4\xcf\x20\x14\x6e\xf0\x2d" 19988 "\xd8\x9e\x2b\x56\x10\x23\x56\xe7", 19989 .alen = 32, 19990 .ctext = "\x36\xea\x7a\x70\x08\xdc\x6a\xbc" 19991 "\xad\x0c\x7a\x63\xf6\x61\xfd\x9b", 19992 .clen = 16, 19993 }, { 19994 .key = "\x56\xdf\x5c\x8f\x26\x3f\x0e\x42" 19995 "\xef\x7a\xd3\xce\xfc\x84\x60\x62" 19996 "\xca\xb4\x40\xaf\x5f\xc9\xc9\x01", 19997 .klen = 24, 19998 .iv = "\x03\xd6\x3c\x8c\x86\x84\xb6\xcd" 19999 "\xef\x09\x2e\x94\x00\x00\x00\x00", 20000 .assoc = "\x02\x65\x78\x3c\xe9\x21\x30\x91" 20001 "\xb1\xb9\xda\x76\x9a\x78\x6d\x95" 20002 "\xf2\x88\x32\xa3\xf2\x50\xcb\x4c" 20003 "\xe3\x00\x73\x69\x84\x69\x87\x79", 20004 .alen = 32, 20005 .ptext = "\x9f\xd2\x02\x4b\x52\x49\x31\x3c" 20006 "\x43\x69\x3a\x2d\x8e\x70\xad\x7e" 20007 "\xe0\xe5\x46\x09\x80\x89\x13\xb2" 20008 "\x8c\x8b\xd9\x3f\x86\xfb\xb5\x6b", 20009 .plen = 32, 20010 .ctext = "\x39\xdf\x7c\x3c\x5a\x29\xb9\x62" 20011 "\x5d\x51\xc2\x16\xd8\xbd\x06\x9f" 20012 "\x9b\x6a\x09\x70\xc1\x51\x83\xc2" 20013 "\x66\x88\x1d\x4f\x9a\xda\xe0\x1e" 20014 "\xc7\x79\x11\x58\xe5\x6b\x20\x40" 20015 "\x7a\xea\x46\x42\x8b\xe4\x6f\xe1", 20016 .clen = 48, 20017 }, { 20018 .key = "\xe0\x8d\x99\x71\x60\xd7\x97\x1a" 20019 "\xbd\x01\x99\xd5\x8a\xdf\x71\x3a" 20020 "\xd3\xdf\x24\x4b\x5e\x3d\x4b\x4e" 20021 "\x30\x7a\xb9\xd8\x53\x0a\x5e\x2b", 20022 .klen = 32, 20023 .iv = "\x03\x1e\x29\x91\xad\x8e\xc1\x53" 20024 "\x0a\xcf\x2d\xbe\x00\x00\x00\x00", 20025 .assoc = "\x19\xb6\x1f\x57\xc4\xf3\xf0\x8b" 20026 "\x78\x2b\x94\x02\x29\x0f\x42\x27" 20027 "\x6b\x75\xcb\x98\x34\x08\x7e\x79" 20028 "\xe4\x3e\x49\x0d\x84\x8b\x22\x87", 20029 .alen = 32, 20030 .ptext = "\xe1\xd9\xd8\x13\xeb\x3a\x75\x3f" 20031 "\x9d\xbd\x5f\x66\xbe\xdc\xbb\x66" 20032 "\xbf\x17\x99\x62\x4a\x39\x27\x1f" 20033 "\x1d\xdc\x24\xae\x19\x2f\x98\x4c", 20034 .plen = 32, 20035 .ctext = "\x19\xb8\x61\x33\x45\x2b\x43\x96" 20036 "\x6f\x51\xd0\x20\x30\x7d\x9b\xc6" 20037 "\x26\x3d\xf8\xc9\x65\x16\xa8\x9f" 20038 "\xf0\x62\x17\x34\xf2\x1e\x8d\x75" 20039 "\x4e\x13\xcc\xc0\xc3\x2a\x54\x2d", 20040 .clen = 40, 20041 }, { 20042 .key = "\x7c\xc8\x18\x3b\x8d\x99\xe0\x7c" 20043 "\x45\x41\xb8\xbd\x5c\xa7\xc2\x32" 20044 "\x8a\xb8\x02\x59\xa4\xfe\xa9\x2c" 20045 "\x09\x75\x9a\x9b\x3c\x9b\x27\x39", 20046 .klen = 32, 20047 .iv = "\x03\xf9\xd9\x4e\x63\xb5\x3d\x9d" 20048 "\x43\xf6\x1e\x50\0\0\0\0", 20049 .assoc = "\x57\xf5\x6b\x8b\x57\x5c\x3d\x3b" 20050 "\x13\x02\x01\x0c\x83\x4c\x96\x35" 20051 "\x8e\xd6\x39\xcf\x7d\x14\x9b\x94" 20052 "\xb0\x39\x36\xe6\x8f\x57\xe0\x13", 20053 .alen = 32, 20054 .ptext = "\x3b\x6c\x29\x36\xb6\xef\x07\xa6" 20055 "\x83\x72\x07\x4f\xcf\xfa\x66\x89" 20056 "\x5f\xca\xb1\xba\xd5\x8f\x2c\x27" 20057 "\x30\xdb\x75\x09\x93\xd4\x65\xe4", 20058 .plen = 32, 20059 .ctext = "\xb0\x88\x5a\x33\xaa\xe5\xc7\x1d" 20060 "\x85\x23\xc7\xc6\x2f\xf4\x1e\x3d" 20061 "\xcc\x63\x44\x25\x07\x78\x4f\x9e" 20062 "\x96\xb8\x88\xeb\xbc\x48\x1f\x06" 20063 "\x39\xaf\x39\xac\xd8\x4a\x80\x39" 20064 "\x7b\x72\x8a\xf7", 20065 .clen = 44, 20066 }, { 20067 .key = "\xab\xd0\xe9\x33\x07\x26\xe5\x83" 20068 "\x8c\x76\x95\xd4\xb6\xdc\xf3\x46" 20069 "\xf9\x8f\xad\xe3\x02\x13\x83\x77" 20070 "\x3f\xb0\xf1\xa1\xa1\x22\x0f\x2b", 20071 .klen = 32, 20072 .iv = "\x03\x24\xa7\x8b\x07\xcb\xcc\x0e" 20073 "\xe6\x33\xbf\xf5\x00\x00\x00\x00", 20074 .assoc = "\xd4\xdb\x30\x1d\x03\xfe\xfd\x5f" 20075 "\x87\xd4\x8c\xb6\xb6\xf1\x7a\x5d" 20076 "\xab\x90\x65\x8d\x8e\xca\x4d\x4f" 20077 "\x16\x0c\x40\x90\x4b\xc7\x36\x73", 20078 .alen = 32, 20079 .ptext = "\xf5\xc6\x7d\x48\xc1\xb7\xe6\x92" 20080 "\x97\x5a\xca\xc4\xa9\x6d\xf9\x3d" 20081 "\x6c\xde\xbc\xf1\x90\xea\x6a\xb2" 20082 "\x35\x86\x36\xaf\x5c\xfe\x4b\x3a", 20083 .plen = 32, 20084 .ctext = "\x83\x6f\x40\x87\x72\xcf\xc1\x13" 20085 "\xef\xbb\x80\x21\x04\x6c\x58\x09" 20086 "\x07\x1b\xfc\xdf\xc0\x3f\x5b\xc7" 20087 "\xe0\x79\xa8\x6e\x71\x7c\x3f\xcf" 20088 "\x5c\xda\xb2\x33\xe5\x13\xe2\x0d" 20089 "\x74\xd1\xef\xb5\x0f\x3a\xb5\xf8", 20090 .clen = 48, 20091 }, { 20092 /* This is taken from FIPS CAVS. */ 20093 .key = "\xab\x2f\x8a\x74\xb7\x1c\xd2\xb1" 20094 "\xff\x80\x2e\x48\x7d\x82\xf8\xb9", 20095 .klen = 16, 20096 .iv = "\x03\xc6\xfb\x7d\x80\x0d\x13\xab" 20097 "\xd8\xa6\xb2\xd8\x00\x00\x00\x00", 20098 .alen = 0, 20099 .ptext = "\x00", 20100 .plen = 0, 20101 .ctext = "\xd5\xe8\x93\x9f\xc7\x89\x2e\x2b", 20102 .clen = 8, 20103 .novrfy = 1, 20104 }, { 20105 .key = "\xab\x2f\x8a\x74\xb7\x1c\xd2\xb1" 20106 "\xff\x80\x2e\x48\x7d\x82\xf8\xb9", 20107 .klen = 16, 20108 .iv = "\x03\xaf\x94\x87\x78\x35\x82\x81" 20109 "\x7f\x88\x94\x68\x00\x00\x00\x00", 20110 .alen = 0, 20111 .ptext = "\x00", 20112 .plen = 0, 20113 .ctext = "\x41\x3c\xb8\x87\x73\xcb\xf3\xf3", 20114 .clen = 8, 20115 }, { 20116 .key = "\x61\x0e\x8c\xae\xe3\x23\xb6\x38" 20117 "\x76\x1c\xf6\x3a\x67\xa3\x9c\xd8", 20118 .klen = 16, 20119 .iv = "\x03\xc6\xfb\x7d\x80\x0d\x13\xab" 20120 "\xd8\xa6\xb2\xd8\x00\x00\x00\x00", 20121 .assoc = "\xf3\x94\x87\x78\x35\x82\x81\x7f" 20122 "\x88\x94\x68\xb1\x78\x6b\x2b\xd6" 20123 "\x04\x1f\x4e\xed\x78\xd5\x33\x66" 20124 "\xd8\x94\x99\x91\x81\x54\x62\x57", 20125 .alen = 32, 20126 .ptext = "\x50\x82\x3e\x07\xe2\x1e\xb6\xfb" 20127 "\x33\xe4\x73\xce\xd2\xfb\x95\x79" 20128 "\xe8\xb4\xb5\x77\x11\x10\x62\x6f" 20129 "\x6a\x82\xd1\x13\xec\xf5\xd0\x48", 20130 .plen = 32, 20131 .ctext = "\xf0\x7c\x29\x02\xae\x1c\x2f\x55" 20132 "\xd0\xd1\x3d\x1a\xa3\x6d\xe4\x0a" 20133 "\x86\xb0\x87\x6b\x62\x33\x8c\x34" 20134 "\xce\xab\x57\xcc\x79\x0b\xe0\x6f" 20135 "\x5c\x3e\x48\x1f\x6c\x46\xf7\x51" 20136 "\x8b\x84\x83\x2a\xc1\x05\xb8\xc5", 20137 .clen = 48, 20138 .novrfy = 1, 20139 }, { 20140 .key = "\x61\x0e\x8c\xae\xe3\x23\xb6\x38" 20141 "\x76\x1c\xf6\x3a\x67\xa3\x9c\xd8", 20142 .klen = 16, 20143 .iv = "\x03\x05\xe0\xc9\x0f\xed\x34\xea" 20144 "\x97\xd4\x3b\xdf\x00\x00\x00\x00", 20145 .assoc = "\x49\x5c\x50\x1f\x1d\x94\xcc\x81" 20146 "\xba\xb7\xb6\x03\xaf\xa5\xc1\xa1" 20147 "\xd8\x5c\x42\x68\xe0\x6c\xda\x89" 20148 "\x05\xac\x56\xac\x1b\x2a\xd3\x86", 20149 .alen = 32, 20150 .ptext = "\x75\x05\xbe\xc2\xd9\x1e\xde\x60" 20151 "\x47\x3d\x8c\x7d\xbd\xb5\xd9\xb7" 20152 "\xf2\xae\x61\x05\x8f\x82\x24\x3f" 20153 "\x9c\x67\x91\xe1\x38\x4f\xe4\x0c", 20154 .plen = 32, 20155 .ctext = "\x39\xbe\x7d\x15\x62\x77\xf3\x3c" 20156 "\xad\x83\x52\x6d\x71\x03\x25\x1c" 20157 "\xed\x81\x3a\x9a\x16\x7d\x19\x80" 20158 "\x72\x04\x72\xd0\xf6\xff\x05\x0f" 20159 "\xb7\x14\x30\x00\x32\x9e\xa0\xa6" 20160 "\x9e\x5a\x18\xa1\xb8\xfe\xdb\xd3", 20161 .clen = 48, 20162 }, { 20163 .key = "\x39\xbb\xa7\xbe\x59\x97\x9e\x73" 20164 "\xa2\xbc\x6b\x98\xd7\x75\x7f\xe3" 20165 "\xa4\x48\x93\x39\x26\x71\x4a\xc6", 20166 .klen = 24, 20167 .iv = "\x03\xee\x49\x83\xe9\xa9\xff\xe9" 20168 "\x57\xba\xfd\x9e\x00\x00\x00\x00", 20169 .assoc = "\x44\xa6\x2c\x05\xe9\xe1\x43\xb1" 20170 "\x58\x7c\xf2\x5c\x6d\x39\x0a\x64" 20171 "\xa4\xf0\x13\x05\xd1\x77\x99\x67" 20172 "\x11\xc4\xc6\xdb\x00\x56\x36\x61", 20173 .alen = 32, 20174 .ptext = "\x00", 20175 .plen = 0, 20176 .ctext = "\x71\x99\xfa\xf4\x44\x12\x68\x9b", 20177 .clen = 8, 20178 }, { 20179 .key = "\x58\x5d\xa0\x96\x65\x1a\x04\xd7" 20180 "\x96\xe5\xc5\x68\xaa\x95\x35\xe0" 20181 "\x29\xa0\xba\x9e\x48\x78\xd1\xba", 20182 .klen = 24, 20183 .iv = "\x03\xee\x49\x83\xe9\xa9\xff\xe9" 20184 "\x57\xba\xfd\x9e\x00\x00\x00\x00", 20185 .assoc = "\x44\xa6\x2c\x05\xe9\xe1\x43\xb1" 20186 "\x58\x7c\xf2\x5c\x6d\x39\x0a\x64" 20187 "\xa4\xf0\x13\x05\xd1\x77\x99\x67" 20188 "\x11\xc4\xc6\xdb\x00\x56\x36\x61", 20189 .alen = 32, 20190 .ptext = "\x85\x34\x66\x42\xc8\x92\x0f\x36" 20191 "\x58\xe0\x6b\x91\x3c\x98\x5c\xbb" 20192 "\x0a\x85\xcc\x02\xad\x7a\x96\xe9" 20193 "\x65\x43\xa4\xc3\x0f\xdc\x55\x81", 20194 .plen = 32, 20195 .ctext = "\xfb\xe5\x5d\x34\xbe\xe5\xe8\xe7" 20196 "\x5a\xef\x2f\xbf\x1f\x7f\xd4\xb2" 20197 "\x66\xca\x61\x1e\x96\x7a\x61\xb3" 20198 "\x1c\x16\x45\x52\xba\x04\x9c\x9f" 20199 "\xb1\xd2\x40\xbc\x52\x7c\x6f\xb1", 20200 .clen = 40, 20201 }, { 20202 .key = "\x58\x5d\xa0\x96\x65\x1a\x04\xd7" 20203 "\x96\xe5\xc5\x68\xaa\x95\x35\xe0" 20204 "\x29\xa0\xba\x9e\x48\x78\xd1\xba", 20205 .klen = 24, 20206 .iv = "\x03\xd1\xfc\x57\x9c\xfe\xb8\x9c" 20207 "\xad\x71\xaa\x1f\x00\x00\x00\x00", 20208 .assoc = "\x86\x67\xa5\xa9\x14\x5f\x0d\xc6" 20209 "\xff\x14\xc7\x44\xbf\x6c\x3a\xc3" 20210 "\xff\xb6\x81\xbd\xe2\xd5\x06\xc7" 20211 "\x3c\xa1\x52\x13\x03\x8a\x23\x3a", 20212 .alen = 32, 20213 .ptext = "\x02\x87\x4d\x28\x80\x6e\xb2\xed" 20214 "\x99\x2a\xa8\xca\x04\x25\x45\x90" 20215 "\x1d\xdd\x5a\xd9\xe4\xdb\x9c\x9c" 20216 "\x49\xe9\x01\xfe\xa7\x80\x6d\x6b", 20217 .plen = 32, 20218 .ctext = "\x3f\x66\xb0\x9d\xe5\x4b\x38\x00" 20219 "\xc6\x0e\x6e\xe5\xd6\x98\xa6\x37" 20220 "\x8c\x26\x33\xc6\xb2\xa2\x17\xfa" 20221 "\x64\x19\xc0\x30\xd7\xfc\x14\x6b" 20222 "\xe3\x33\xc2\x04\xb0\x37\xbe\x3f" 20223 "\xa9\xb4\x2d\x68\x03\xa3\x44\xef", 20224 .clen = 48, 20225 .novrfy = 1, 20226 }, { 20227 .key = "\xa4\x4b\x54\x29\x0a\xb8\x6d\x01" 20228 "\x5b\x80\x2a\xcf\x25\xc4\xb7\x5c" 20229 "\x20\x2c\xad\x30\xc2\x2b\x41\xfb" 20230 "\x0e\x85\xbc\x33\xad\x0f\x2b\xff", 20231 .klen = 32, 20232 .iv = "\x03\xee\x49\x83\xe9\xa9\xff\xe9" 20233 "\x57\xba\xfd\x9e\x00\x00\x00\x00", 20234 .alen = 0, 20235 .ptext = "\x00", 20236 .plen = 0, 20237 .ctext = "\x1f\xb8\x8f\xa3\xdd\x54\x00\xf2", 20238 .clen = 8, 20239 }, { 20240 .key = "\x39\xbb\xa7\xbe\x59\x97\x9e\x73" 20241 "\xa2\xbc\x6b\x98\xd7\x75\x7f\xe3" 20242 "\xa4\x48\x93\x39\x26\x71\x4a\xc6" 20243 "\xae\x8f\x11\x4c\xc2\x9c\x4a\xbb", 20244 .klen = 32, 20245 .iv = "\x03\x85\x34\x66\x42\xc8\x92\x0f" 20246 "\x36\x58\xe0\x6b\x00\x00\x00\x00", 20247 .alen = 0, 20248 .ptext = "\xdc\x56\xf2\x71\xb0\xb1\xa0\x6c" 20249 "\xf0\x97\x3a\xfb\x6d\xe7\x32\x99" 20250 "\x3e\xaf\x70\x5e\xb2\x4d\xea\x39" 20251 "\x89\xd4\x75\x7a\x63\xb1\xda\x93", 20252 .plen = 32, 20253 .ctext = "\x48\x01\x5e\x02\x24\x04\x66\x47" 20254 "\xa1\xea\x6f\xaf\xe8\xfc\xfb\xdd" 20255 "\xa5\xa9\x87\x8d\x84\xee\x2e\x77" 20256 "\xbb\x86\xb9\xf5\x5c\x6c\xff\xf6" 20257 "\x72\xc3\x8e\xf7\x70\xb1\xb2\x07" 20258 "\xbc\xa8\xa3\xbd\x83\x7c\x1d\x2a", 20259 .clen = 48, 20260 .novrfy = 1, 20261 }, { 20262 .key = "\x58\x5d\xa0\x96\x65\x1a\x04\xd7" 20263 "\x96\xe5\xc5\x68\xaa\x95\x35\xe0" 20264 "\x29\xa0\xba\x9e\x48\x78\xd1\xba" 20265 "\x0d\x1a\x53\x3b\xb5\xe3\xf8\x8b", 20266 .klen = 32, 20267 .iv = "\x03\xcf\x76\x3f\xd9\x95\x75\x8f" 20268 "\x44\x89\x40\x7b\x00\x00\x00\x00", 20269 .assoc = "\x8f\x86\x6c\x4d\x1d\xc5\x39\x88" 20270 "\xc8\xf3\x5c\x52\x10\x63\x6f\x2b" 20271 "\x8a\x2a\xc5\x6f\x30\x23\x58\x7b" 20272 "\xfb\x36\x03\x11\xb4\xd9\xf2\xfe", 20273 .alen = 32, 20274 .ptext = "\xc2\x54\xc8\xde\x78\x87\x77\x40" 20275 "\x49\x71\xe4\xb7\xe7\xcb\x76\x61" 20276 "\x0a\x41\xb9\xe9\xc0\x76\x54\xab" 20277 "\x04\x49\x3b\x19\x93\x57\x25\x5d", 20278 .plen = 32, 20279 .ctext = "\x48\x58\xd6\xf3\xad\x63\x58\xbf" 20280 "\xae\xc7\x5e\xae\x83\x8f\x7b\xe4" 20281 "\x78\x5c\x4c\x67\x71\x89\x94\xbf" 20282 "\x47\xf1\x63\x7e\x1c\x59\xbd\xc5" 20283 "\x7f\x44\x0a\x0c\x01\x18\x07\x92" 20284 "\xe1\xd3\x51\xce\x32\x6d\x0c\x5b", 20285 .clen = 48, 20286 }, 20287 }; 20288 20289 /* 20290 * rfc4309 refers to section 8 of rfc3610 for test vectors, but they all 20291 * use a 13-byte nonce, we only support an 11-byte nonce. Worse, 20292 * they use AD lengths which are not valid ESP header lengths. 20293 * 20294 * These vectors are copied/generated from the ones for rfc4106 with 20295 * the key truncated by one byte.. 20296 */ 20297 static const struct aead_testvec aes_ccm_rfc4309_tv_template[] = { 20298 { /* Generated using Crypto++ */ 20299 .key = zeroed_string, 20300 .klen = 19, 20301 .iv = zeroed_string, 20302 .ptext = zeroed_string, 20303 .plen = 16, 20304 .assoc = zeroed_string, 20305 .alen = 16, 20306 .ctext = "\x2E\x9A\xCA\x6B\xDA\x54\xFC\x6F" 20307 "\x12\x50\xE8\xDE\x81\x3C\x63\x08" 20308 "\x1A\x22\xBA\x75\xEE\xD4\xD5\xB5" 20309 "\x27\x50\x01\xAC\x03\x33\x39\xFB", 20310 .clen = 32, 20311 },{ 20312 .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 20313 "\x6d\x6a\x8f\x94\x67\x30\x83\x08" 20314 "\x00\x00\x00", 20315 .klen = 19, 20316 .iv = "\x00\x00\x00\x00\x00\x00\x00\x01", 20317 .ptext = zeroed_string, 20318 .plen = 16, 20319 .assoc = "\x00\x00\x00\x00\x00\x00\x00\x00" 20320 "\x00\x00\x00\x00\x00\x00\x00\x01", 20321 .alen = 16, 20322 .ctext = "\xCF\xB9\x99\x17\xC8\x86\x0E\x7F" 20323 "\x7E\x76\xF8\xE6\xF8\xCC\x1F\x17" 20324 "\x6A\xE0\x53\x9F\x4B\x73\x7E\xDA" 20325 "\x08\x09\x4E\xC4\x1E\xAD\xC6\xB0", 20326 .clen = 32, 20327 20328 }, { 20329 .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 20330 "\x6d\x6a\x8f\x94\x67\x30\x83\x08" 20331 "\x00\x00\x00", 20332 .klen = 19, 20333 .iv = zeroed_string, 20334 .ptext = "\x01\x01\x01\x01\x01\x01\x01\x01" 20335 "\x01\x01\x01\x01\x01\x01\x01\x01", 20336 .plen = 16, 20337 .assoc = zeroed_string, 20338 .alen = 16, 20339 .ctext = "\x33\xDE\x73\xBC\xA6\xCE\x4E\xA6" 20340 "\x61\xF4\xF5\x41\x03\x4A\xE3\x86" 20341 "\xA1\xE2\xC2\x42\x2B\x81\x70\x40" 20342 "\xFD\x7F\x76\xD1\x03\x07\xBB\x0C", 20343 .clen = 32, 20344 }, { 20345 .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 20346 "\x6d\x6a\x8f\x94\x67\x30\x83\x08" 20347 "\x00\x00\x00", 20348 .klen = 19, 20349 .iv = zeroed_string, 20350 .ptext = "\x01\x01\x01\x01\x01\x01\x01\x01" 20351 "\x01\x01\x01\x01\x01\x01\x01\x01", 20352 .plen = 16, 20353 .assoc = "\x01\x01\x01\x01\x01\x01\x01\x01" 20354 "\x00\x00\x00\x00\x00\x00\x00\x00", 20355 .alen = 16, 20356 .ctext = "\x33\xDE\x73\xBC\xA6\xCE\x4E\xA6" 20357 "\x61\xF4\xF5\x41\x03\x4A\xE3\x86" 20358 "\x5B\xC0\x73\xE0\x2B\x73\x68\xC9" 20359 "\x2D\x8C\x58\xC2\x90\x3D\xB0\x3E", 20360 .clen = 32, 20361 }, { 20362 .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 20363 "\x6d\x6a\x8f\x94\x67\x30\x83\x08" 20364 "\x00\x00\x00", 20365 .klen = 19, 20366 .iv = "\x00\x00\x00\x00\x00\x00\x00\x01", 20367 .ptext = "\x01\x01\x01\x01\x01\x01\x01\x01" 20368 "\x01\x01\x01\x01\x01\x01\x01\x01", 20369 .plen = 16, 20370 .assoc = "\x01\x01\x01\x01\x01\x01\x01\x01" 20371 "\x00\x00\x00\x00\x00\x00\x00\x01", 20372 .alen = 16, 20373 .ctext = "\xCE\xB8\x98\x16\xC9\x87\x0F\x7E" 20374 "\x7F\x77\xF9\xE7\xF9\xCD\x1E\x16" 20375 "\x43\x8E\x76\x57\x3B\xB4\x05\xE8" 20376 "\xA9\x9B\xBF\x25\xE0\x4F\xC0\xED", 20377 .clen = 32, 20378 }, { 20379 .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 20380 "\x6d\x6a\x8f\x94\x67\x30\x83\x08" 20381 "\x00\x00\x00", 20382 .klen = 19, 20383 .iv = "\x00\x00\x00\x00\x00\x00\x00\x01", 20384 .ptext = "\x01\x01\x01\x01\x01\x01\x01\x01" 20385 "\x01\x01\x01\x01\x01\x01\x01\x01" 20386 "\x01\x01\x01\x01\x01\x01\x01\x01" 20387 "\x01\x01\x01\x01\x01\x01\x01\x01" 20388 "\x01\x01\x01\x01\x01\x01\x01\x01" 20389 "\x01\x01\x01\x01\x01\x01\x01\x01" 20390 "\x01\x01\x01\x01\x01\x01\x01\x01" 20391 "\x01\x01\x01\x01\x01\x01\x01\x01", 20392 .plen = 64, 20393 .assoc = "\x01\x01\x01\x01\x01\x01\x01\x01" 20394 "\x00\x00\x00\x00\x00\x00\x00\x01", 20395 .alen = 16, 20396 .ctext = "\xCE\xB8\x98\x16\xC9\x87\x0F\x7E" 20397 "\x7F\x77\xF9\xE7\xF9\xCD\x1E\x16" 20398 "\x9C\xA4\x97\x83\x3F\x01\xA5\xF4" 20399 "\x43\x09\xE7\xB8\xE9\xD1\xD7\x02" 20400 "\x9B\xAB\x39\x18\xEB\x94\x34\x36" 20401 "\xE6\xC5\xC8\x9B\x00\x81\x9E\x49" 20402 "\x1D\x78\xE1\x48\xE3\xE9\xEA\x8E" 20403 "\x3A\x2B\x67\x5D\x35\x6A\x0F\xDB" 20404 "\x02\x73\xDD\xE7\x30\x4A\x30\x54" 20405 "\x1A\x9D\x09\xCA\xC8\x1C\x32\x5F", 20406 .clen = 80, 20407 }, { 20408 .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 20409 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 20410 "\x00\x00\x00", 20411 .klen = 19, 20412 .iv = "\x00\x00\x45\x67\x89\xab\xcd\xef", 20413 .ptext = "\xff\xff\xff\xff\xff\xff\xff\xff" 20414 "\xff\xff\xff\xff\xff\xff\xff\xff" 20415 "\xff\xff\xff\xff\xff\xff\xff\xff" 20416 "\xff\xff\xff\xff\xff\xff\xff\xff" 20417 "\xff\xff\xff\xff\xff\xff\xff\xff" 20418 "\xff\xff\xff\xff\xff\xff\xff\xff" 20419 "\xff\xff\xff\xff\xff\xff\xff\xff" 20420 "\xff\xff\xff\xff\xff\xff\xff\xff" 20421 "\xff\xff\xff\xff\xff\xff\xff\xff" 20422 "\xff\xff\xff\xff\xff\xff\xff\xff" 20423 "\xff\xff\xff\xff\xff\xff\xff\xff" 20424 "\xff\xff\xff\xff\xff\xff\xff\xff" 20425 "\xff\xff\xff\xff\xff\xff\xff\xff" 20426 "\xff\xff\xff\xff\xff\xff\xff\xff" 20427 "\xff\xff\xff\xff\xff\xff\xff\xff" 20428 "\xff\xff\xff\xff\xff\xff\xff\xff" 20429 "\xff\xff\xff\xff\xff\xff\xff\xff" 20430 "\xff\xff\xff\xff\xff\xff\xff\xff" 20431 "\xff\xff\xff\xff\xff\xff\xff\xff" 20432 "\xff\xff\xff\xff\xff\xff\xff\xff" 20433 "\xff\xff\xff\xff\xff\xff\xff\xff" 20434 "\xff\xff\xff\xff\xff\xff\xff\xff" 20435 "\xff\xff\xff\xff\xff\xff\xff\xff" 20436 "\xff\xff\xff\xff\xff\xff\xff\xff", 20437 .plen = 192, 20438 .assoc = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 20439 "\xaa\xaa\xaa\xaa\x00\x00\x45\x67" 20440 "\x89\xab\xcd\xef", 20441 .alen = 20, 20442 .ctext = "\x64\x17\xDC\x24\x9D\x92\xBA\x5E" 20443 "\x7C\x64\x6D\x33\x46\x77\xAC\xB1" 20444 "\x5C\x9E\xE2\xC7\x27\x11\x3E\x95" 20445 "\x7D\xBE\x28\xC8\xC1\xCA\x5E\x8C" 20446 "\xB4\xE2\xDE\x9F\x53\x59\x26\xDB" 20447 "\x0C\xD4\xE4\x07\x9A\xE6\x3E\x01" 20448 "\x58\x0D\x3E\x3D\xD5\x21\xEB\x04" 20449 "\x06\x9D\x5F\xB9\x02\x49\x1A\x2B" 20450 "\xBA\xF0\x4E\x3B\x85\x50\x5B\x09" 20451 "\xFE\xEC\xFC\x54\xEC\x0C\xE2\x79" 20452 "\x8A\x2F\x5F\xD7\x05\x5D\xF1\x6D" 20453 "\x22\xEB\xD1\x09\x80\x3F\x5A\x70" 20454 "\xB2\xB9\xD3\x63\x99\xC2\x4D\x1B" 20455 "\x36\x12\x00\x89\xAA\x5D\x55\xDA" 20456 "\x1D\x5B\xD8\x3C\x5F\x09\xD2\xE6" 20457 "\x39\x41\x5C\xF0\xBE\x26\x4E\x5F" 20458 "\x2B\x50\x44\x52\xC2\x10\x7D\x38" 20459 "\x82\x64\x83\x0C\xAE\x49\xD0\xE5" 20460 "\x4F\xE5\x66\x4C\x58\x7A\xEE\x43" 20461 "\x3B\x51\xFE\xBA\x24\x8A\xFE\xDC" 20462 "\x19\x6D\x60\x66\x61\xF9\x9A\x3F" 20463 "\x75\xFC\x38\x53\x5B\xB5\xCD\x52" 20464 "\x4F\xE5\xE4\xC9\xFE\x10\xCB\x98" 20465 "\xF0\x06\x5B\x07\xAB\xBB\xF4\x0E" 20466 "\x2D\xC2\xDD\x5D\xDD\x22\x9A\xCC" 20467 "\x39\xAB\x63\xA5\x3D\x9C\x51\x8A", 20468 .clen = 208, 20469 }, { /* From draft-mcgrew-gcm-test-01 */ 20470 .key = "\x4C\x80\xCD\xEF\xBB\x5D\x10\xDA" 20471 "\x90\x6A\xC7\x3C\x36\x13\xA6\x34" 20472 "\x2E\x44\x3B", 20473 .klen = 19, 20474 .iv = "\x49\x56\xED\x7E\x3B\x24\x4C\xFE", 20475 .ptext = "\x45\x00\x00\x48\x69\x9A\x00\x00" 20476 "\x80\x11\x4D\xB7\xC0\xA8\x01\x02" 20477 "\xC0\xA8\x01\x01\x0A\x9B\xF1\x56" 20478 "\x38\xD3\x01\x00\x00\x01\x00\x00" 20479 "\x00\x00\x00\x00\x04\x5F\x73\x69" 20480 "\x70\x04\x5F\x75\x64\x70\x03\x73" 20481 "\x69\x70\x09\x63\x79\x62\x65\x72" 20482 "\x63\x69\x74\x79\x02\x64\x6B\x00" 20483 "\x00\x21\x00\x01\x01\x02\x02\x01", 20484 .plen = 72, 20485 .assoc = "\x00\x00\x43\x21\x87\x65\x43\x21" 20486 "\x00\x00\x00\x00\x49\x56\xED\x7E" 20487 "\x3B\x24\x4C\xFE", 20488 .alen = 20, 20489 .ctext = "\x89\xBA\x3E\xEF\xE6\xD6\xCF\xDB" 20490 "\x83\x60\xF5\xBA\x3A\x56\x79\xE6" 20491 "\x7E\x0C\x53\xCF\x9E\x87\xE0\x4E" 20492 "\x1A\x26\x01\x24\xC7\x2E\x3D\xBF" 20493 "\x29\x2C\x91\xC1\xB8\xA8\xCF\xE0" 20494 "\x39\xF8\x53\x6D\x31\x22\x2B\xBF" 20495 "\x98\x81\xFC\x34\xEE\x85\x36\xCD" 20496 "\x26\xDB\x6C\x7A\x0C\x77\x8A\x35" 20497 "\x18\x85\x54\xB2\xBC\xDD\x3F\x43" 20498 "\x61\x06\x8A\xDF\x86\x3F\xB4\xAC" 20499 "\x97\xDC\xBD\xFD\x92\x10\xC5\xFF", 20500 .clen = 88, 20501 }, { 20502 .key = "\xFE\xFF\xE9\x92\x86\x65\x73\x1C" 20503 "\x6D\x6A\x8F\x94\x67\x30\x83\x08" 20504 "\xCA\xFE\xBA", 20505 .klen = 19, 20506 .iv = "\xFA\xCE\xDB\xAD\xDE\xCA\xF8\x88", 20507 .ptext = "\x45\x00\x00\x3E\x69\x8F\x00\x00" 20508 "\x80\x11\x4D\xCC\xC0\xA8\x01\x02" 20509 "\xC0\xA8\x01\x01\x0A\x98\x00\x35" 20510 "\x00\x2A\x23\x43\xB2\xD0\x01\x00" 20511 "\x00\x01\x00\x00\x00\x00\x00\x00" 20512 "\x03\x73\x69\x70\x09\x63\x79\x62" 20513 "\x65\x72\x63\x69\x74\x79\x02\x64" 20514 "\x6B\x00\x00\x01\x00\x01\x00\x01", 20515 .plen = 64, 20516 .assoc = "\x00\x00\xA5\xF8\x00\x00\x00\x0A" 20517 "\xFA\xCE\xDB\xAD\xDE\xCA\xF8\x88", 20518 .alen = 16, 20519 .ctext = "\x4B\xC2\x70\x60\x64\xD2\xF3\xC8" 20520 "\xE5\x26\x8A\xDE\xB8\x7E\x7D\x16" 20521 "\x56\xC7\xD2\x88\xBA\x8D\x58\xAF" 20522 "\xF5\x71\xB6\x37\x84\xA7\xB1\x99" 20523 "\x51\x5C\x0D\xA0\x27\xDE\xE7\x2D" 20524 "\xEF\x25\x88\x1F\x1D\x77\x11\xFF" 20525 "\xDB\xED\xEE\x56\x16\xC5\x5C\x9B" 20526 "\x00\x62\x1F\x68\x4E\x7C\xA0\x97" 20527 "\x10\x72\x7E\x53\x13\x3B\x68\xE4" 20528 "\x30\x99\x91\x79\x09\xEA\xFF\x6A", 20529 .clen = 80, 20530 }, { 20531 .key = "\xAB\xBC\xCD\xDE\xF0\x01\x12\x23" 20532 "\x34\x45\x56\x67\x78\x89\x9A\xAB" 20533 "\xAB\xBC\xCD\xDE\xF0\x01\x12\x23" 20534 "\x34\x45\x56\x67\x78\x89\x9A\xAB" 20535 "\x11\x22\x33", 20536 .klen = 35, 20537 .iv = "\x01\x02\x03\x04\x05\x06\x07\x08", 20538 .ptext = "\x45\x00\x00\x30\x69\xA6\x40\x00" 20539 "\x80\x06\x26\x90\xC0\xA8\x01\x02" 20540 "\x93\x89\x15\x5E\x0A\x9E\x00\x8B" 20541 "\x2D\xC5\x7E\xE0\x00\x00\x00\x00" 20542 "\x70\x02\x40\x00\x20\xBF\x00\x00" 20543 "\x02\x04\x05\xB4\x01\x01\x04\x02" 20544 "\x01\x02\x02\x01", 20545 .plen = 52, 20546 .assoc = "\x4A\x2C\xBF\xE3\x00\x00\x00\x02" 20547 "\x01\x02\x03\x04\x05\x06\x07\x08", 20548 .alen = 16, 20549 .ctext = "\xD6\x31\x0D\x2B\x3D\x6F\xBD\x2F" 20550 "\x58\x41\x7E\xFF\x9A\x9E\x09\xB4" 20551 "\x1A\xF7\xF6\x42\x31\xCD\xBF\xAD" 20552 "\x27\x0E\x2C\xF2\xDB\x10\xDF\x55" 20553 "\x8F\x0D\xD7\xAC\x23\xBD\x42\x10" 20554 "\xD0\xB2\xAF\xD8\x37\xAC\x6B\x0B" 20555 "\x11\xD4\x0B\x12\xEC\xB4\xB1\x92" 20556 "\x23\xA6\x10\xB0\x26\xD6\xD9\x26" 20557 "\x5A\x48\x6A\x3E", 20558 .clen = 68, 20559 }, { 20560 .key = "\x00\x00\x00\x00\x00\x00\x00\x00" 20561 "\x00\x00\x00\x00\x00\x00\x00\x00" 20562 "\x00\x00\x00", 20563 .klen = 19, 20564 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00", 20565 .ptext = "\x45\x00\x00\x3C\x99\xC5\x00\x00" 20566 "\x80\x01\xCB\x7A\x40\x67\x93\x18" 20567 "\x01\x01\x01\x01\x08\x00\x07\x5C" 20568 "\x02\x00\x44\x00\x61\x62\x63\x64" 20569 "\x65\x66\x67\x68\x69\x6A\x6B\x6C" 20570 "\x6D\x6E\x6F\x70\x71\x72\x73\x74" 20571 "\x75\x76\x77\x61\x62\x63\x64\x65" 20572 "\x66\x67\x68\x69\x01\x02\x02\x01", 20573 .plen = 64, 20574 .assoc = "\x00\x00\x00\x00\x00\x00\x00\x01" 20575 "\x00\x00\x00\x00\x00\x00\x00\x00", 20576 .alen = 16, 20577 .ctext = "\x6B\x9A\xCA\x57\x43\x91\xFC\x6F" 20578 "\x92\x51\x23\xA4\xC1\x5B\xF0\x10" 20579 "\xF3\x13\xF4\xF8\xA1\x9A\xB4\xDC" 20580 "\x89\xC8\xF8\x42\x62\x95\xB7\xCB" 20581 "\xB8\xF5\x0F\x1B\x2E\x94\xA2\xA7" 20582 "\xBF\xFB\x8A\x92\x13\x63\xD1\x3C" 20583 "\x08\xF5\xE8\xA6\xAA\xF6\x34\xF9" 20584 "\x42\x05\xAF\xB3\xE7\x9A\xFC\xEE" 20585 "\x36\x25\xC1\x10\x12\x1C\xCA\x82" 20586 "\xEA\xE6\x63\x5A\x57\x28\xA9\x9A", 20587 .clen = 80, 20588 }, { 20589 .key = "\x3D\xE0\x98\x74\xB3\x88\xE6\x49" 20590 "\x19\x88\xD0\xC3\x60\x7E\xAE\x1F" 20591 "\x57\x69\x0E", 20592 .klen = 19, 20593 .iv = "\x4E\x28\x00\x00\xA2\xFC\xA1\xA3", 20594 .ptext = "\x45\x00\x00\x3C\x99\xC3\x00\x00" 20595 "\x80\x01\xCB\x7C\x40\x67\x93\x18" 20596 "\x01\x01\x01\x01\x08\x00\x08\x5C" 20597 "\x02\x00\x43\x00\x61\x62\x63\x64" 20598 "\x65\x66\x67\x68\x69\x6A\x6B\x6C" 20599 "\x6D\x6E\x6F\x70\x71\x72\x73\x74" 20600 "\x75\x76\x77\x61\x62\x63\x64\x65" 20601 "\x66\x67\x68\x69\x01\x02\x02\x01", 20602 .plen = 64, 20603 .assoc = "\x42\xF6\x7E\x3F\x10\x10\x10\x10" 20604 "\x10\x10\x10\x10\x4E\x28\x00\x00" 20605 "\xA2\xFC\xA1\xA3", 20606 .alen = 20, 20607 .ctext = "\x6A\x6B\x45\x2B\x7C\x67\x52\xF6" 20608 "\x10\x60\x40\x62\x6B\x4F\x97\x8E" 20609 "\x0B\xB2\x22\x97\xCB\x21\xE0\x90" 20610 "\xA2\xE7\xD1\x41\x30\xE4\x4B\x1B" 20611 "\x79\x01\x58\x50\x01\x06\xE1\xE0" 20612 "\x2C\x83\x79\xD3\xDE\x46\x97\x1A" 20613 "\x30\xB8\xE5\xDF\xD7\x12\x56\x75" 20614 "\xD0\x95\xB7\xB8\x91\x42\xF7\xFD" 20615 "\x97\x57\xCA\xC1\x20\xD0\x86\xB9" 20616 "\x66\x9D\xB4\x2B\x96\x22\xAC\x67", 20617 .clen = 80, 20618 }, { 20619 .key = "\x3D\xE0\x98\x74\xB3\x88\xE6\x49" 20620 "\x19\x88\xD0\xC3\x60\x7E\xAE\x1F" 20621 "\x57\x69\x0E", 20622 .klen = 19, 20623 .iv = "\x4E\x28\x00\x00\xA2\xFC\xA1\xA3", 20624 .ptext = "\x45\x00\x00\x1C\x42\xA2\x00\x00" 20625 "\x80\x01\x44\x1F\x40\x67\x93\xB6" 20626 "\xE0\x00\x00\x02\x0A\x00\xF5\xFF" 20627 "\x01\x02\x02\x01", 20628 .plen = 28, 20629 .assoc = "\x42\xF6\x7E\x3F\x10\x10\x10\x10" 20630 "\x10\x10\x10\x10\x4E\x28\x00\x00" 20631 "\xA2\xFC\xA1\xA3", 20632 .alen = 20, 20633 .ctext = "\x6A\x6B\x45\x0B\xA7\x06\x52\xF6" 20634 "\x10\x60\xCF\x01\x6B\x4F\x97\x20" 20635 "\xEA\xB3\x23\x94\xC9\x21\x1D\x33" 20636 "\xA1\xE5\x90\x40\x05\x37\x45\x70" 20637 "\xB5\xD6\x09\x0A\x23\x73\x33\xF9" 20638 "\x08\xB4\x22\xE4", 20639 .clen = 44, 20640 }, { 20641 .key = "\xFE\xFF\xE9\x92\x86\x65\x73\x1C" 20642 "\x6D\x6A\x8F\x94\x67\x30\x83\x08" 20643 "\xFE\xFF\xE9\x92\x86\x65\x73\x1C" 20644 "\xCA\xFE\xBA", 20645 .klen = 27, 20646 .iv = "\xFA\xCE\xDB\xAD\xDE\xCA\xF8\x88", 20647 .ptext = "\x45\x00\x00\x28\xA4\xAD\x40\x00" 20648 "\x40\x06\x78\x80\x0A\x01\x03\x8F" 20649 "\x0A\x01\x06\x12\x80\x23\x06\xB8" 20650 "\xCB\x71\x26\x02\xDD\x6B\xB0\x3E" 20651 "\x50\x10\x16\xD0\x75\x68\x00\x01", 20652 .plen = 40, 20653 .assoc = "\x00\x00\xA5\xF8\x00\x00\x00\x0A" 20654 "\xFA\xCE\xDB\xAD\xDE\xCA\xF8\x88", 20655 .alen = 16, 20656 .ctext = "\x05\x22\x15\xD1\x52\x56\x85\x04" 20657 "\xA8\x5C\x5D\x6D\x7E\x6E\xF5\xFA" 20658 "\xEA\x16\x37\x50\xF3\xDF\x84\x3B" 20659 "\x2F\x32\x18\x57\x34\x2A\x8C\x23" 20660 "\x67\xDF\x6D\x35\x7B\x54\x0D\xFB" 20661 "\x34\xA5\x9F\x6C\x48\x30\x1E\x22" 20662 "\xFE\xB1\x22\x17\x17\x8A\xB9\x5B", 20663 .clen = 56, 20664 }, { 20665 .key = "\xAB\xBC\xCD\xDE\xF0\x01\x12\x23" 20666 "\x34\x45\x56\x67\x78\x89\x9A\xAB" 20667 "\xDE\xCA\xF8", 20668 .klen = 19, 20669 .iv = "\xCA\xFE\xDE\xBA\xCE\xFA\xCE\x74", 20670 .ptext = "\x45\x00\x00\x49\x33\xBA\x00\x00" 20671 "\x7F\x11\x91\x06\xC3\xFB\x1D\x10" 20672 "\xC2\xB1\xD3\x26\xC0\x28\x31\xCE" 20673 "\x00\x35\xDD\x7B\x80\x03\x02\xD5" 20674 "\x00\x00\x4E\x20\x00\x1E\x8C\x18" 20675 "\xD7\x5B\x81\xDC\x91\xBA\xA0\x47" 20676 "\x6B\x91\xB9\x24\xB2\x80\x38\x9D" 20677 "\x92\xC9\x63\xBA\xC0\x46\xEC\x95" 20678 "\x9B\x62\x66\xC0\x47\x22\xB1\x49" 20679 "\x23\x01\x01\x01", 20680 .plen = 76, 20681 .assoc = "\x00\x00\x01\x00\x00\x00\x00\x00" 20682 "\x00\x00\x00\x01\xCA\xFE\xDE\xBA" 20683 "\xCE\xFA\xCE\x74", 20684 .alen = 20, 20685 .ctext = "\x92\xD0\x53\x79\x33\x38\xD5\xF3" 20686 "\x7D\xE4\x7A\x8E\x86\x03\xC9\x90" 20687 "\x96\x35\xAB\x9C\xFB\xE8\xA3\x76" 20688 "\xE9\xE9\xE2\xD1\x2E\x11\x0E\x00" 20689 "\xFA\xCE\xB5\x9E\x02\xA7\x7B\xEA" 20690 "\x71\x9A\x58\xFB\xA5\x8A\xE1\xB7" 20691 "\x9C\x39\x9D\xE3\xB5\x6E\x69\xE6" 20692 "\x63\xC9\xDB\x05\x69\x51\x12\xAD" 20693 "\x3E\x00\x32\x73\x86\xF2\xEE\xF5" 20694 "\x0F\xE8\x81\x7E\x84\xD3\xC0\x0D" 20695 "\x76\xD6\x55\xC6\xB4\xC2\x34\xC7" 20696 "\x12\x25\x0B\xF9", 20697 .clen = 92, 20698 }, { 20699 .key = "\xAB\xBC\xCD\xDE\xF0\x01\x12\x23" 20700 "\x34\x45\x56\x67\x78\x89\x9A\xAB" 20701 "\xAB\xBC\xCD\xDE\xF0\x01\x12\x23" 20702 "\x34\x45\x56\x67\x78\x89\x9A\xAB" 20703 "\x73\x61\x6C", 20704 .klen = 35, 20705 .iv = "\x61\x6E\x64\x01\x69\x76\x65\x63", 20706 .ptext = "\x45\x08\x00\x28\x73\x2C\x00\x00" 20707 "\x40\x06\xE9\xF9\x0A\x01\x06\x12" 20708 "\x0A\x01\x03\x8F\x06\xB8\x80\x23" 20709 "\xDD\x6B\xAF\xBE\xCB\x71\x26\x02" 20710 "\x50\x10\x1F\x64\x6D\x54\x00\x01", 20711 .plen = 40, 20712 .assoc = "\x17\x40\x5E\x67\x15\x6F\x31\x26" 20713 "\xDD\x0D\xB9\x9B\x61\x6E\x64\x01" 20714 "\x69\x76\x65\x63", 20715 .alen = 20, 20716 .ctext = "\xCC\x74\xB7\xD3\xB0\x38\x50\x42" 20717 "\x2C\x64\x87\x46\x1E\x34\x10\x05" 20718 "\x29\x6B\xBB\x36\xE9\x69\xAD\x92" 20719 "\x82\xA1\x10\x6A\xEB\x0F\xDC\x7D" 20720 "\x08\xBA\xF3\x91\xCA\xAA\x61\xDA" 20721 "\x62\xF4\x14\x61\x5C\x9D\xB5\xA7" 20722 "\xEE\xD7\xB9\x7E\x87\x99\x9B\x7D", 20723 .clen = 56, 20724 }, { 20725 .key = "\x3D\xE0\x98\x74\xB3\x88\xE6\x49" 20726 "\x19\x88\xD0\xC3\x60\x7E\xAE\x1F" 20727 "\x57\x69\x0E", 20728 .klen = 19, 20729 .iv = "\x4E\x28\x00\x00\xA2\xFC\xA1\xA3", 20730 .ptext = "\x45\x00\x00\x49\x33\x3E\x00\x00" 20731 "\x7F\x11\x91\x82\xC3\xFB\x1D\x10" 20732 "\xC2\xB1\xD3\x26\xC0\x28\x31\xCE" 20733 "\x00\x35\xCB\x45\x80\x03\x02\x5B" 20734 "\x00\x00\x01\xE0\x00\x1E\x8C\x18" 20735 "\xD6\x57\x59\xD5\x22\x84\xA0\x35" 20736 "\x2C\x71\x47\x5C\x88\x80\x39\x1C" 20737 "\x76\x4D\x6E\x5E\xE0\x49\x6B\x32" 20738 "\x5A\xE2\x70\xC0\x38\x99\x49\x39" 20739 "\x15\x01\x01\x01", 20740 .plen = 76, 20741 .assoc = "\x42\xF6\x7E\x3F\x10\x10\x10\x10" 20742 "\x10\x10\x10\x10\x4E\x28\x00\x00" 20743 "\xA2\xFC\xA1\xA3", 20744 .alen = 20, 20745 .ctext = "\x6A\x6B\x45\x5E\xD6\x9A\x52\xF6" 20746 "\xEF\x70\x1A\x9C\xE8\xD3\x19\x86" 20747 "\xC8\x02\xF0\xB0\x03\x09\xD9\x02" 20748 "\xA0\xD2\x59\x04\xD1\x85\x2A\x24" 20749 "\x1C\x67\x3E\xD8\x68\x72\x06\x94" 20750 "\x97\xBA\x4F\x76\x8D\xB0\x44\x5B" 20751 "\x69\xBF\xD5\xE2\x3D\xF1\x0B\x0C" 20752 "\xC0\xBF\xB1\x8F\x70\x09\x9E\xCE" 20753 "\xA5\xF2\x55\x58\x84\xFA\xF9\xB5" 20754 "\x23\xF4\x84\x40\x74\x14\x8A\x6B" 20755 "\xDB\xD7\x67\xED\xA4\x93\xF3\x47" 20756 "\xCC\xF7\x46\x6F", 20757 .clen = 92, 20758 }, { 20759 .key = "\xAB\xBC\xCD\xDE\xF0\x01\x12\x23" 20760 "\x34\x45\x56\x67\x78\x89\x9A\xAB" 20761 "\xAB\xBC\xCD\xDE\xF0\x01\x12\x23" 20762 "\x34\x45\x56\x67\x78\x89\x9A\xAB" 20763 "\x73\x61\x6C", 20764 .klen = 35, 20765 .iv = "\x61\x6E\x64\x01\x69\x76\x65\x63", 20766 .ptext = "\x63\x69\x73\x63\x6F\x01\x72\x75" 20767 "\x6C\x65\x73\x01\x74\x68\x65\x01" 20768 "\x6E\x65\x74\x77\x65\x01\x64\x65" 20769 "\x66\x69\x6E\x65\x01\x74\x68\x65" 20770 "\x74\x65\x63\x68\x6E\x6F\x6C\x6F" 20771 "\x67\x69\x65\x73\x01\x74\x68\x61" 20772 "\x74\x77\x69\x6C\x6C\x01\x64\x65" 20773 "\x66\x69\x6E\x65\x74\x6F\x6D\x6F" 20774 "\x72\x72\x6F\x77\x01\x02\x02\x01", 20775 .plen = 72, 20776 .assoc = "\x17\x40\x5E\x67\x15\x6F\x31\x26" 20777 "\xDD\x0D\xB9\x9B\x61\x6E\x64\x01" 20778 "\x69\x76\x65\x63", 20779 .alen = 20, 20780 .ctext = "\xEA\x15\xC4\x98\xAC\x15\x22\x37" 20781 "\x00\x07\x1D\xBE\x60\x5D\x73\x16" 20782 "\x4D\x0F\xCC\xCE\x8A\xD0\x49\xD4" 20783 "\x39\xA3\xD1\xB1\x21\x0A\x92\x1A" 20784 "\x2C\xCF\x8F\x9D\xC9\x91\x0D\xB4" 20785 "\x15\xFC\xBC\xA5\xC5\xBF\x54\xE5" 20786 "\x1C\xC7\x32\x41\x07\x7B\x2C\xB6" 20787 "\x5C\x23\x7C\x93\xEA\xEF\x23\x1C" 20788 "\x73\xF4\xE7\x12\x84\x4C\x37\x0A" 20789 "\x4A\x8F\x06\x37\x48\xF9\xF9\x05" 20790 "\x55\x13\x40\xC3\xD5\x55\x3A\x3D", 20791 .clen = 88, 20792 }, { 20793 .key = "\x7D\x77\x3D\x00\xC1\x44\xC5\x25" 20794 "\xAC\x61\x9D\x18\xC8\x4A\x3F\x47" 20795 "\xD9\x66\x42", 20796 .klen = 19, 20797 .iv = "\x43\x45\x7E\x91\x82\x44\x3B\xC6", 20798 .ptext = "\x01\x02\x02\x01", 20799 .plen = 4, 20800 .assoc = "\x33\x54\x67\xAE\xFF\xFF\xFF\xFF" 20801 "\x43\x45\x7E\x91\x82\x44\x3B\xC6", 20802 .alen = 16, 20803 .ctext = "\x4C\x72\x63\x30\x2F\xE6\x56\xDD" 20804 "\xD0\xD8\x60\x9D\x8B\xEF\x85\x90" 20805 "\xF7\x61\x24\x62", 20806 .clen = 20, 20807 }, { 20808 .key = "\xAB\xBC\xCD\xDE\xF0\x01\x12\x23" 20809 "\x34\x45\x56\x67\x78\x89\x9A\xAB" 20810 "\xDE\xCA\xF8", 20811 .klen = 19, 20812 .iv = "\xCA\xFE\xDE\xBA\xCE\xFA\xCE\x74", 20813 .ptext = "\x74\x6F\x01\x62\x65\x01\x6F\x72" 20814 "\x01\x6E\x6F\x74\x01\x74\x6F\x01" 20815 "\x62\x65\x00\x01", 20816 .plen = 20, 20817 .assoc = "\x00\x00\x01\x00\x00\x00\x00\x00" 20818 "\x00\x00\x00\x01\xCA\xFE\xDE\xBA" 20819 "\xCE\xFA\xCE\x74", 20820 .alen = 20, 20821 .ctext = "\xA3\xBF\x52\x52\x65\x83\xBA\x81" 20822 "\x03\x9B\x84\xFC\x44\x8C\xBB\x81" 20823 "\x36\xE1\x78\xBB\xA5\x49\x3A\xD0" 20824 "\xF0\x6B\x21\xAF\x98\xC0\x34\xDC" 20825 "\x17\x17\x65\xAD", 20826 .clen = 36, 20827 }, { 20828 .key = "\x6C\x65\x67\x61\x6C\x69\x7A\x65" 20829 "\x6D\x61\x72\x69\x6A\x75\x61\x6E" 20830 "\x61\x61\x6E\x64\x64\x6F\x69\x74" 20831 "\x62\x65\x66\x6F\x72\x65\x69\x61" 20832 "\x74\x75\x72", 20833 .klen = 35, 20834 .iv = "\x33\x30\x21\x69\x67\x65\x74\x6D", 20835 .ptext = "\x45\x00\x00\x30\xDA\x3A\x00\x00" 20836 "\x80\x01\xDF\x3B\xC0\xA8\x00\x05" 20837 "\xC0\xA8\x00\x01\x08\x00\xC6\xCD" 20838 "\x02\x00\x07\x00\x61\x62\x63\x64" 20839 "\x65\x66\x67\x68\x69\x6A\x6B\x6C" 20840 "\x6D\x6E\x6F\x70\x71\x72\x73\x74" 20841 "\x01\x02\x02\x01", 20842 .plen = 52, 20843 .assoc = "\x79\x6B\x69\x63\xFF\xFF\xFF\xFF" 20844 "\xFF\xFF\xFF\xFF\x33\x30\x21\x69" 20845 "\x67\x65\x74\x6D", 20846 .alen = 20, 20847 .ctext = "\x96\xFD\x86\xF8\xD1\x98\xFF\x10" 20848 "\xAB\x8C\xDA\x8A\x5A\x08\x38\x1A" 20849 "\x48\x59\x80\x18\x1A\x18\x1A\x04" 20850 "\xC9\x0D\xE3\xE7\x0E\xA4\x0B\x75" 20851 "\x92\x9C\x52\x5C\x0B\xFB\xF8\xAF" 20852 "\x16\xC3\x35\xA8\xE7\xCE\x84\x04" 20853 "\xEB\x40\x6B\x7A\x8E\x75\xBB\x42" 20854 "\xE0\x63\x4B\x21\x44\xA2\x2B\x2B" 20855 "\x39\xDB\xC8\xDC", 20856 .clen = 68, 20857 }, { 20858 .key = "\x3D\xE0\x98\x74\xB3\x88\xE6\x49" 20859 "\x19\x88\xD0\xC3\x60\x7E\xAE\x1F" 20860 "\x57\x69\x0E", 20861 .klen = 19, 20862 .iv = "\x4E\x28\x00\x00\xA2\xFC\xA1\xA3", 20863 .ptext = "\x45\x00\x00\x30\xDA\x3A\x00\x00" 20864 "\x80\x01\xDF\x3B\xC0\xA8\x00\x05" 20865 "\xC0\xA8\x00\x01\x08\x00\xC6\xCD" 20866 "\x02\x00\x07\x00\x61\x62\x63\x64" 20867 "\x65\x66\x67\x68\x69\x6A\x6B\x6C" 20868 "\x6D\x6E\x6F\x70\x71\x72\x73\x74" 20869 "\x01\x02\x02\x01", 20870 .plen = 52, 20871 .assoc = "\x3F\x7E\xF6\x42\x10\x10\x10\x10" 20872 "\x10\x10\x10\x10\x4E\x28\x00\x00" 20873 "\xA2\xFC\xA1\xA3", 20874 .alen = 20, 20875 .ctext = "\x6A\x6B\x45\x27\x3F\x9E\x52\xF6" 20876 "\x10\x60\x54\x25\xEB\x80\x04\x93" 20877 "\xCA\x1B\x23\x97\xCB\x21\x2E\x01" 20878 "\xA2\xE7\x95\x41\x30\xE4\x4B\x1B" 20879 "\x79\x01\x58\x50\x01\x06\xE1\xE0" 20880 "\x2C\x83\x79\xD3\xDE\x46\x97\x1A" 20881 "\x44\xCC\x90\xBF\x00\x94\x94\x92" 20882 "\x20\x17\x0C\x1B\x55\xDE\x7E\x68" 20883 "\xF4\x95\x5D\x4F", 20884 .clen = 68, 20885 }, { 20886 .key = "\x4C\x80\xCD\xEF\xBB\x5D\x10\xDA" 20887 "\x90\x6A\xC7\x3C\x36\x13\xA6\x34" 20888 "\x22\x43\x3C", 20889 .klen = 19, 20890 .iv = "\x48\x55\xEC\x7D\x3A\x23\x4B\xFD", 20891 .ptext = "\x08\x00\xC6\xCD\x02\x00\x07\x00" 20892 "\x61\x62\x63\x64\x65\x66\x67\x68" 20893 "\x69\x6A\x6B\x6C\x6D\x6E\x6F\x70" 20894 "\x71\x72\x73\x74\x01\x02\x02\x01", 20895 .plen = 32, 20896 .assoc = "\x00\x00\x43\x21\x87\x65\x43\x21" 20897 "\x00\x00\x00\x07\x48\x55\xEC\x7D" 20898 "\x3A\x23\x4B\xFD", 20899 .alen = 20, 20900 .ctext = "\x67\xE9\x28\xB3\x1C\xA4\x6D\x02" 20901 "\xF0\xB5\x37\xB6\x6B\x2F\xF5\x4F" 20902 "\xF8\xA3\x4C\x53\xB8\x12\x09\xBF" 20903 "\x58\x7D\xCF\x29\xA3\x41\x68\x6B" 20904 "\xCE\xE8\x79\x85\x3C\xB0\x3A\x8F" 20905 "\x16\xB0\xA1\x26\xC9\xBC\xBC\xA6", 20906 .clen = 48, 20907 } 20908 }; 20909 20910 /* 20911 * ChaCha20-Poly1305 AEAD test vectors from RFC7539 2.8.2./A.5. 20912 */ 20913 static const struct aead_testvec rfc7539_tv_template[] = { 20914 { 20915 .key = "\x80\x81\x82\x83\x84\x85\x86\x87" 20916 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 20917 "\x90\x91\x92\x93\x94\x95\x96\x97" 20918 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f", 20919 .klen = 32, 20920 .iv = "\x07\x00\x00\x00\x40\x41\x42\x43" 20921 "\x44\x45\x46\x47", 20922 .assoc = "\x50\x51\x52\x53\xc0\xc1\xc2\xc3" 20923 "\xc4\xc5\xc6\xc7", 20924 .alen = 12, 20925 .ptext = "\x4c\x61\x64\x69\x65\x73\x20\x61" 20926 "\x6e\x64\x20\x47\x65\x6e\x74\x6c" 20927 "\x65\x6d\x65\x6e\x20\x6f\x66\x20" 20928 "\x74\x68\x65\x20\x63\x6c\x61\x73" 20929 "\x73\x20\x6f\x66\x20\x27\x39\x39" 20930 "\x3a\x20\x49\x66\x20\x49\x20\x63" 20931 "\x6f\x75\x6c\x64\x20\x6f\x66\x66" 20932 "\x65\x72\x20\x79\x6f\x75\x20\x6f" 20933 "\x6e\x6c\x79\x20\x6f\x6e\x65\x20" 20934 "\x74\x69\x70\x20\x66\x6f\x72\x20" 20935 "\x74\x68\x65\x20\x66\x75\x74\x75" 20936 "\x72\x65\x2c\x20\x73\x75\x6e\x73" 20937 "\x63\x72\x65\x65\x6e\x20\x77\x6f" 20938 "\x75\x6c\x64\x20\x62\x65\x20\x69" 20939 "\x74\x2e", 20940 .plen = 114, 20941 .ctext = "\xd3\x1a\x8d\x34\x64\x8e\x60\xdb" 20942 "\x7b\x86\xaf\xbc\x53\xef\x7e\xc2" 20943 "\xa4\xad\xed\x51\x29\x6e\x08\xfe" 20944 "\xa9\xe2\xb5\xa7\x36\xee\x62\xd6" 20945 "\x3d\xbe\xa4\x5e\x8c\xa9\x67\x12" 20946 "\x82\xfa\xfb\x69\xda\x92\x72\x8b" 20947 "\x1a\x71\xde\x0a\x9e\x06\x0b\x29" 20948 "\x05\xd6\xa5\xb6\x7e\xcd\x3b\x36" 20949 "\x92\xdd\xbd\x7f\x2d\x77\x8b\x8c" 20950 "\x98\x03\xae\xe3\x28\x09\x1b\x58" 20951 "\xfa\xb3\x24\xe4\xfa\xd6\x75\x94" 20952 "\x55\x85\x80\x8b\x48\x31\xd7\xbc" 20953 "\x3f\xf4\xde\xf0\x8e\x4b\x7a\x9d" 20954 "\xe5\x76\xd2\x65\x86\xce\xc6\x4b" 20955 "\x61\x16\x1a\xe1\x0b\x59\x4f\x09" 20956 "\xe2\x6a\x7e\x90\x2e\xcb\xd0\x60" 20957 "\x06\x91", 20958 .clen = 130, 20959 }, { 20960 .key = "\x1c\x92\x40\xa5\xeb\x55\xd3\x8a" 20961 "\xf3\x33\x88\x86\x04\xf6\xb5\xf0" 20962 "\x47\x39\x17\xc1\x40\x2b\x80\x09" 20963 "\x9d\xca\x5c\xbc\x20\x70\x75\xc0", 20964 .klen = 32, 20965 .iv = "\x00\x00\x00\x00\x01\x02\x03\x04" 20966 "\x05\x06\x07\x08", 20967 .assoc = "\xf3\x33\x88\x86\x00\x00\x00\x00" 20968 "\x00\x00\x4e\x91", 20969 .alen = 12, 20970 .ptext = "\x49\x6e\x74\x65\x72\x6e\x65\x74" 20971 "\x2d\x44\x72\x61\x66\x74\x73\x20" 20972 "\x61\x72\x65\x20\x64\x72\x61\x66" 20973 "\x74\x20\x64\x6f\x63\x75\x6d\x65" 20974 "\x6e\x74\x73\x20\x76\x61\x6c\x69" 20975 "\x64\x20\x66\x6f\x72\x20\x61\x20" 20976 "\x6d\x61\x78\x69\x6d\x75\x6d\x20" 20977 "\x6f\x66\x20\x73\x69\x78\x20\x6d" 20978 "\x6f\x6e\x74\x68\x73\x20\x61\x6e" 20979 "\x64\x20\x6d\x61\x79\x20\x62\x65" 20980 "\x20\x75\x70\x64\x61\x74\x65\x64" 20981 "\x2c\x20\x72\x65\x70\x6c\x61\x63" 20982 "\x65\x64\x2c\x20\x6f\x72\x20\x6f" 20983 "\x62\x73\x6f\x6c\x65\x74\x65\x64" 20984 "\x20\x62\x79\x20\x6f\x74\x68\x65" 20985 "\x72\x20\x64\x6f\x63\x75\x6d\x65" 20986 "\x6e\x74\x73\x20\x61\x74\x20\x61" 20987 "\x6e\x79\x20\x74\x69\x6d\x65\x2e" 20988 "\x20\x49\x74\x20\x69\x73\x20\x69" 20989 "\x6e\x61\x70\x70\x72\x6f\x70\x72" 20990 "\x69\x61\x74\x65\x20\x74\x6f\x20" 20991 "\x75\x73\x65\x20\x49\x6e\x74\x65" 20992 "\x72\x6e\x65\x74\x2d\x44\x72\x61" 20993 "\x66\x74\x73\x20\x61\x73\x20\x72" 20994 "\x65\x66\x65\x72\x65\x6e\x63\x65" 20995 "\x20\x6d\x61\x74\x65\x72\x69\x61" 20996 "\x6c\x20\x6f\x72\x20\x74\x6f\x20" 20997 "\x63\x69\x74\x65\x20\x74\x68\x65" 20998 "\x6d\x20\x6f\x74\x68\x65\x72\x20" 20999 "\x74\x68\x61\x6e\x20\x61\x73\x20" 21000 "\x2f\xe2\x80\x9c\x77\x6f\x72\x6b" 21001 "\x20\x69\x6e\x20\x70\x72\x6f\x67" 21002 "\x72\x65\x73\x73\x2e\x2f\xe2\x80" 21003 "\x9d", 21004 .plen = 265, 21005 .ctext = "\x64\xa0\x86\x15\x75\x86\x1a\xf4" 21006 "\x60\xf0\x62\xc7\x9b\xe6\x43\xbd" 21007 "\x5e\x80\x5c\xfd\x34\x5c\xf3\x89" 21008 "\xf1\x08\x67\x0a\xc7\x6c\x8c\xb2" 21009 "\x4c\x6c\xfc\x18\x75\x5d\x43\xee" 21010 "\xa0\x9e\xe9\x4e\x38\x2d\x26\xb0" 21011 "\xbd\xb7\xb7\x3c\x32\x1b\x01\x00" 21012 "\xd4\xf0\x3b\x7f\x35\x58\x94\xcf" 21013 "\x33\x2f\x83\x0e\x71\x0b\x97\xce" 21014 "\x98\xc8\xa8\x4a\xbd\x0b\x94\x81" 21015 "\x14\xad\x17\x6e\x00\x8d\x33\xbd" 21016 "\x60\xf9\x82\xb1\xff\x37\xc8\x55" 21017 "\x97\x97\xa0\x6e\xf4\xf0\xef\x61" 21018 "\xc1\x86\x32\x4e\x2b\x35\x06\x38" 21019 "\x36\x06\x90\x7b\x6a\x7c\x02\xb0" 21020 "\xf9\xf6\x15\x7b\x53\xc8\x67\xe4" 21021 "\xb9\x16\x6c\x76\x7b\x80\x4d\x46" 21022 "\xa5\x9b\x52\x16\xcd\xe7\xa4\xe9" 21023 "\x90\x40\xc5\xa4\x04\x33\x22\x5e" 21024 "\xe2\x82\xa1\xb0\xa0\x6c\x52\x3e" 21025 "\xaf\x45\x34\xd7\xf8\x3f\xa1\x15" 21026 "\x5b\x00\x47\x71\x8c\xbc\x54\x6a" 21027 "\x0d\x07\x2b\x04\xb3\x56\x4e\xea" 21028 "\x1b\x42\x22\x73\xf5\x48\x27\x1a" 21029 "\x0b\xb2\x31\x60\x53\xfa\x76\x99" 21030 "\x19\x55\xeb\xd6\x31\x59\x43\x4e" 21031 "\xce\xbb\x4e\x46\x6d\xae\x5a\x10" 21032 "\x73\xa6\x72\x76\x27\x09\x7a\x10" 21033 "\x49\xe6\x17\xd9\x1d\x36\x10\x94" 21034 "\xfa\x68\xf0\xff\x77\x98\x71\x30" 21035 "\x30\x5b\xea\xba\x2e\xda\x04\xdf" 21036 "\x99\x7b\x71\x4d\x6c\x6f\x2c\x29" 21037 "\xa6\xad\x5c\xb4\x02\x2b\x02\x70" 21038 "\x9b\xee\xad\x9d\x67\x89\x0c\xbb" 21039 "\x22\x39\x23\x36\xfe\xa1\x85\x1f" 21040 "\x38", 21041 .clen = 281, 21042 }, 21043 }; 21044 21045 /* 21046 * draft-irtf-cfrg-chacha20-poly1305 21047 */ 21048 static const struct aead_testvec rfc7539esp_tv_template[] = { 21049 { 21050 .key = "\x1c\x92\x40\xa5\xeb\x55\xd3\x8a" 21051 "\xf3\x33\x88\x86\x04\xf6\xb5\xf0" 21052 "\x47\x39\x17\xc1\x40\x2b\x80\x09" 21053 "\x9d\xca\x5c\xbc\x20\x70\x75\xc0" 21054 "\x00\x00\x00\x00", 21055 .klen = 36, 21056 .iv = "\x01\x02\x03\x04\x05\x06\x07\x08", 21057 .assoc = "\xf3\x33\x88\x86\x00\x00\x00\x00" 21058 "\x00\x00\x4e\x91\x01\x02\x03\x04" 21059 "\x05\x06\x07\x08", 21060 .alen = 20, 21061 .ptext = "\x49\x6e\x74\x65\x72\x6e\x65\x74" 21062 "\x2d\x44\x72\x61\x66\x74\x73\x20" 21063 "\x61\x72\x65\x20\x64\x72\x61\x66" 21064 "\x74\x20\x64\x6f\x63\x75\x6d\x65" 21065 "\x6e\x74\x73\x20\x76\x61\x6c\x69" 21066 "\x64\x20\x66\x6f\x72\x20\x61\x20" 21067 "\x6d\x61\x78\x69\x6d\x75\x6d\x20" 21068 "\x6f\x66\x20\x73\x69\x78\x20\x6d" 21069 "\x6f\x6e\x74\x68\x73\x20\x61\x6e" 21070 "\x64\x20\x6d\x61\x79\x20\x62\x65" 21071 "\x20\x75\x70\x64\x61\x74\x65\x64" 21072 "\x2c\x20\x72\x65\x70\x6c\x61\x63" 21073 "\x65\x64\x2c\x20\x6f\x72\x20\x6f" 21074 "\x62\x73\x6f\x6c\x65\x74\x65\x64" 21075 "\x20\x62\x79\x20\x6f\x74\x68\x65" 21076 "\x72\x20\x64\x6f\x63\x75\x6d\x65" 21077 "\x6e\x74\x73\x20\x61\x74\x20\x61" 21078 "\x6e\x79\x20\x74\x69\x6d\x65\x2e" 21079 "\x20\x49\x74\x20\x69\x73\x20\x69" 21080 "\x6e\x61\x70\x70\x72\x6f\x70\x72" 21081 "\x69\x61\x74\x65\x20\x74\x6f\x20" 21082 "\x75\x73\x65\x20\x49\x6e\x74\x65" 21083 "\x72\x6e\x65\x74\x2d\x44\x72\x61" 21084 "\x66\x74\x73\x20\x61\x73\x20\x72" 21085 "\x65\x66\x65\x72\x65\x6e\x63\x65" 21086 "\x20\x6d\x61\x74\x65\x72\x69\x61" 21087 "\x6c\x20\x6f\x72\x20\x74\x6f\x20" 21088 "\x63\x69\x74\x65\x20\x74\x68\x65" 21089 "\x6d\x20\x6f\x74\x68\x65\x72\x20" 21090 "\x74\x68\x61\x6e\x20\x61\x73\x20" 21091 "\x2f\xe2\x80\x9c\x77\x6f\x72\x6b" 21092 "\x20\x69\x6e\x20\x70\x72\x6f\x67" 21093 "\x72\x65\x73\x73\x2e\x2f\xe2\x80" 21094 "\x9d", 21095 .plen = 265, 21096 .ctext = "\x64\xa0\x86\x15\x75\x86\x1a\xf4" 21097 "\x60\xf0\x62\xc7\x9b\xe6\x43\xbd" 21098 "\x5e\x80\x5c\xfd\x34\x5c\xf3\x89" 21099 "\xf1\x08\x67\x0a\xc7\x6c\x8c\xb2" 21100 "\x4c\x6c\xfc\x18\x75\x5d\x43\xee" 21101 "\xa0\x9e\xe9\x4e\x38\x2d\x26\xb0" 21102 "\xbd\xb7\xb7\x3c\x32\x1b\x01\x00" 21103 "\xd4\xf0\x3b\x7f\x35\x58\x94\xcf" 21104 "\x33\x2f\x83\x0e\x71\x0b\x97\xce" 21105 "\x98\xc8\xa8\x4a\xbd\x0b\x94\x81" 21106 "\x14\xad\x17\x6e\x00\x8d\x33\xbd" 21107 "\x60\xf9\x82\xb1\xff\x37\xc8\x55" 21108 "\x97\x97\xa0\x6e\xf4\xf0\xef\x61" 21109 "\xc1\x86\x32\x4e\x2b\x35\x06\x38" 21110 "\x36\x06\x90\x7b\x6a\x7c\x02\xb0" 21111 "\xf9\xf6\x15\x7b\x53\xc8\x67\xe4" 21112 "\xb9\x16\x6c\x76\x7b\x80\x4d\x46" 21113 "\xa5\x9b\x52\x16\xcd\xe7\xa4\xe9" 21114 "\x90\x40\xc5\xa4\x04\x33\x22\x5e" 21115 "\xe2\x82\xa1\xb0\xa0\x6c\x52\x3e" 21116 "\xaf\x45\x34\xd7\xf8\x3f\xa1\x15" 21117 "\x5b\x00\x47\x71\x8c\xbc\x54\x6a" 21118 "\x0d\x07\x2b\x04\xb3\x56\x4e\xea" 21119 "\x1b\x42\x22\x73\xf5\x48\x27\x1a" 21120 "\x0b\xb2\x31\x60\x53\xfa\x76\x99" 21121 "\x19\x55\xeb\xd6\x31\x59\x43\x4e" 21122 "\xce\xbb\x4e\x46\x6d\xae\x5a\x10" 21123 "\x73\xa6\x72\x76\x27\x09\x7a\x10" 21124 "\x49\xe6\x17\xd9\x1d\x36\x10\x94" 21125 "\xfa\x68\xf0\xff\x77\x98\x71\x30" 21126 "\x30\x5b\xea\xba\x2e\xda\x04\xdf" 21127 "\x99\x7b\x71\x4d\x6c\x6f\x2c\x29" 21128 "\xa6\xad\x5c\xb4\x02\x2b\x02\x70" 21129 "\x9b\xee\xad\x9d\x67\x89\x0c\xbb" 21130 "\x22\x39\x23\x36\xfe\xa1\x85\x1f" 21131 "\x38", 21132 .clen = 281, 21133 }, 21134 }; 21135 21136 /* 21137 * AEGIS-128 test vectors - generated via reference implementation from 21138 * SUPERCOP (https://bench.cr.yp.to/supercop.html): 21139 * 21140 * https://bench.cr.yp.to/supercop/supercop-20170228.tar.xz 21141 * (see crypto_aead/aegis128/) 21142 */ 21143 static const struct aead_testvec aegis128_tv_template[] = { 21144 { 21145 .key = "\x0f\xc9\x8e\x67\x44\x9e\xaa\x86" 21146 "\x20\x36\x2c\x24\xfe\xc9\x30\x81", 21147 .klen = 16, 21148 .iv = "\x1e\x92\x1c\xcf\x88\x3d\x54\x0d" 21149 "\x40\x6d\x59\x48\xfc\x92\x61\x03", 21150 .assoc = "", 21151 .alen = 0, 21152 .ptext = "", 21153 .plen = 0, 21154 .ctext = "\x07\xa5\x11\xf2\x9d\x40\xb8\x6d" 21155 "\xda\xb8\x12\x34\x4c\x53\xd9\x72", 21156 .clen = 16, 21157 }, { 21158 .key = "\x4b\xed\xc8\x07\x54\x1a\x52\xa2" 21159 "\xa1\x10\xde\xb5\xf8\xed\xf3\x87", 21160 .klen = 16, 21161 .iv = "\x5a\xb7\x56\x6e\x98\xb9\xfd\x29" 21162 "\xc1\x47\x0b\xda\xf6\xb6\x23\x09", 21163 .assoc = "", 21164 .alen = 0, 21165 .ptext = "\x79", 21166 .plen = 1, 21167 .ctext = "\x9e\x78\x52\xae\xcb\x9e\xe4\xd3" 21168 "\x9a\xd7\x5d\xd7\xaa\x9a\xe9\x5a" 21169 "\xcc", 21170 .clen = 17, 21171 }, { 21172 .key = "\x88\x12\x01\xa6\x64\x96\xfb\xbe" 21173 "\x22\xea\x90\x47\xf2\x11\xb5\x8e", 21174 .klen = 16, 21175 .iv = "\x97\xdb\x90\x0e\xa8\x35\xa5\x45" 21176 "\x42\x21\xbd\x6b\xf0\xda\xe6\x0f", 21177 .assoc = "", 21178 .alen = 0, 21179 .ptext = "\xb5\x6e\xad\xdd\x30\x72\xfa\x53" 21180 "\x82\x8e\x16\xb4\xed\x6d\x47", 21181 .plen = 15, 21182 .ctext = "\xc3\x80\x83\x04\x5f\xaa\x61\xc7" 21183 "\xca\xdd\x6f\xac\x85\x08\xb5\x35" 21184 "\x2b\xc2\x3e\x0b\x1b\x39\x37\x2b" 21185 "\x7a\x21\x16\xb3\xe6\x67\x66", 21186 .clen = 31, 21187 }, { 21188 .key = "\xc4\x37\x3b\x45\x74\x11\xa4\xda" 21189 "\xa2\xc5\x42\xd8\xec\x36\x78\x94", 21190 .klen = 16, 21191 .iv = "\xd3\x00\xc9\xad\xb8\xb0\x4e\x61" 21192 "\xc3\xfb\x6f\xfd\xea\xff\xa9\x15", 21193 .assoc = "", 21194 .alen = 0, 21195 .ptext = "\xf2\x92\xe6\x7d\x40\xee\xa3\x6f" 21196 "\x03\x68\xc8\x45\xe7\x91\x0a\x18", 21197 .plen = 16, 21198 .ctext = "\x23\x25\x30\xe5\x6a\xb6\x36\x7d" 21199 "\x38\xfd\x3a\xd2\xc2\x58\xa9\x11" 21200 "\x1e\xa8\x30\x9c\x16\xa4\xdb\x65" 21201 "\x51\x10\x16\x27\x70\x9b\x64\x29", 21202 .clen = 32, 21203 }, { 21204 .key = "\x01\x5c\x75\xe5\x84\x8d\x4d\xf6" 21205 "\x23\x9f\xf4\x6a\xe6\x5a\x3b\x9a", 21206 .klen = 16, 21207 .iv = "\x10\x25\x03\x4c\xc8\x2c\xf7\x7d" 21208 "\x44\xd5\x21\x8e\xe4\x23\x6b\x1c", 21209 .assoc = "", 21210 .alen = 0, 21211 .ptext = "\x2e\xb7\x20\x1c\x50\x6a\x4b\x8b" 21212 "\x84\x42\x7a\xd7\xe1\xb5\xcd\x1f" 21213 "\xd3", 21214 .plen = 17, 21215 .ctext = "\x2a\x8d\x56\x91\xc6\xf3\x56\xa5" 21216 "\x1f\xf0\x89\x2e\x13\xad\xe6\xf6" 21217 "\x46\x80\xb1\x0e\x18\x30\x40\x97" 21218 "\x03\xdf\x64\x3c\xbe\x93\x9e\xc9" 21219 "\x3b", 21220 .clen = 33, 21221 }, { 21222 .key = "\x3d\x80\xae\x84\x94\x09\xf6\x12" 21223 "\xa4\x79\xa6\xfb\xe0\x7f\xfd\xa0", 21224 .klen = 16, 21225 .iv = "\x4c\x49\x3d\xec\xd8\xa8\xa0\x98" 21226 "\xc5\xb0\xd3\x1f\xde\x48\x2e\x22", 21227 .assoc = "", 21228 .alen = 0, 21229 .ptext = "\x6b\xdc\x5a\xbb\x60\xe5\xf4\xa6" 21230 "\x05\x1d\x2c\x68\xdb\xda\x8f\x25" 21231 "\xfe\x8d\x45\x19\x1e\xc0\x0b\x99" 21232 "\x88\x11\x39\x12\x1c\x3a\xbb", 21233 .plen = 31, 21234 .ctext = "\x4e\xf6\xfa\x13\xde\x43\x63\x4c" 21235 "\xe2\x04\x3e\xe4\x85\x14\xb6\x3f" 21236 "\xb1\x8f\x4c\xdb\x41\xa2\x14\x99" 21237 "\xf5\x53\x0f\x73\x86\x7e\x97\xa1" 21238 "\x4b\x56\x5b\x94\xce\xcd\x74\xcd" 21239 "\x75\xc4\x53\x01\x89\x45\x59", 21240 .clen = 47, 21241 }, { 21242 .key = "\x7a\xa5\xe8\x23\xa4\x84\x9e\x2d" 21243 "\x25\x53\x58\x8c\xda\xa3\xc0\xa6", 21244 .klen = 16, 21245 .iv = "\x89\x6e\x77\x8b\xe8\x23\x49\xb4" 21246 "\x45\x8a\x85\xb1\xd8\x6c\xf1\x28", 21247 .assoc = "", 21248 .alen = 0, 21249 .ptext = "\xa7\x00\x93\x5b\x70\x61\x9d\xc2" 21250 "\x86\xf7\xde\xfa\xd5\xfe\x52\x2b" 21251 "\x28\x50\x51\x9d\x24\x60\x8d\xb3" 21252 "\x49\x3e\x17\xea\xf6\x99\x5a\xdd", 21253 .plen = 32, 21254 .ctext = "\xa4\x9a\xb7\xfd\xa0\xd4\xd6\x47" 21255 "\x95\xf4\x58\x38\x14\x83\x27\x01" 21256 "\x4c\xed\x32\x2c\xf7\xd6\x31\xf7" 21257 "\x38\x1b\x2c\xc9\xb6\x31\xce\xaa" 21258 "\xa5\x3c\x1a\x18\x5c\xce\xb9\xdf" 21259 "\x51\x52\x77\xf2\x5e\x85\x80\x41", 21260 .clen = 48, 21261 }, { 21262 .key = "\xb6\xca\x22\xc3\xb4\x00\x47\x49" 21263 "\xa6\x2d\x0a\x1e\xd4\xc7\x83\xad", 21264 .klen = 16, 21265 .iv = "\xc5\x93\xb0\x2a\xf8\x9f\xf1\xd0" 21266 "\xc6\x64\x37\x42\xd2\x90\xb3\x2e", 21267 .assoc = "\xd5", 21268 .alen = 1, 21269 .ptext = "", 21270 .plen = 0, 21271 .ctext = "\xfb\xd4\x83\x71\x9e\x63\xad\x60" 21272 "\xb9\xf9\xeb\x34\x52\x49\xcf\xb7", 21273 .clen = 16, 21274 }, { 21275 .key = "\xf3\xee\x5c\x62\xc4\x7c\xf0\x65" 21276 "\x27\x08\xbd\xaf\xce\xec\x45\xb3", 21277 .klen = 16, 21278 .iv = "\x02\xb8\xea\xca\x09\x1b\x9a\xec" 21279 "\x47\x3e\xe9\xd4\xcc\xb5\x76\x34", 21280 .assoc = "\x11\x81\x78\x32\x4d\xb9\x44\x73" 21281 "\x68\x75\x16\xf8\xcb\x7e\xa7", 21282 .alen = 15, 21283 .ptext = "", 21284 .plen = 0, 21285 .ctext = "\x0c\xaf\x2e\x96\xf6\x97\x08\x71" 21286 "\x7d\x3a\x84\xc4\x44\x57\x77\x7e", 21287 .clen = 16, 21288 }, { 21289 .key = "\x2f\x13\x95\x01\xd5\xf7\x99\x81" 21290 "\xa8\xe2\x6f\x41\xc8\x10\x08\xb9", 21291 .klen = 16, 21292 .iv = "\x3f\xdc\x24\x69\x19\x96\x43\x08" 21293 "\xc8\x18\x9b\x65\xc6\xd9\x39\x3b", 21294 .assoc = "\x4e\xa5\xb2\xd1\x5d\x35\xed\x8f" 21295 "\xe8\x4f\xc8\x89\xc5\xa2\x69\xbc", 21296 .alen = 16, 21297 .ptext = "", 21298 .plen = 0, 21299 .ctext = "\xc7\x87\x09\x3b\xc7\x19\x74\x22" 21300 "\x22\xa5\x67\x10\xb2\x36\xb3\x45", 21301 .clen = 16, 21302 }, { 21303 .key = "\x6c\x38\xcf\xa1\xe5\x73\x41\x9d" 21304 "\x29\xbc\x21\xd2\xc2\x35\xcb\xbf", 21305 .klen = 16, 21306 .iv = "\x7b\x01\x5d\x08\x29\x12\xec\x24" 21307 "\x49\xf3\x4d\xf7\xc0\xfe\xfb\x41", 21308 .assoc = "\x8a\xca\xec\x70\x6d\xb1\x96\xab" 21309 "\x69\x29\x7a\x1b\xbf\xc7\x2c\xc2" 21310 "\x07", 21311 .alen = 17, 21312 .ptext = "", 21313 .plen = 0, 21314 .ctext = "\x02\xc6\x3b\x46\x65\xb2\xef\x91" 21315 "\x31\xf0\x45\x48\x8a\x2a\xed\xe4", 21316 .clen = 16, 21317 }, { 21318 .key = "\xa8\x5c\x09\x40\xf5\xef\xea\xb8" 21319 "\xaa\x96\xd3\x64\xbc\x59\x8d\xc6", 21320 .klen = 16, 21321 .iv = "\xb8\x26\x97\xa8\x39\x8e\x94\x3f" 21322 "\xca\xcd\xff\x88\xba\x22\xbe\x47", 21323 .assoc = "\xc7\xef\x26\x10\x7d\x2c\x3f\xc6" 21324 "\xea\x03\x2c\xac\xb9\xeb\xef\xc9" 21325 "\x31\x6b\x08\x12\xfc\xd8\x37\x2d" 21326 "\xe0\x17\x3a\x2e\x83\x5c\x8f", 21327 .alen = 31, 21328 .ptext = "", 21329 .plen = 0, 21330 .ctext = "\x20\x85\xa8\xd0\x91\x48\x85\xf3" 21331 "\x5a\x16\xc0\x57\x68\x47\xdd\xcb", 21332 .clen = 16, 21333 }, { 21334 .key = "\xe5\x81\x42\xdf\x05\x6a\x93\xd4" 21335 "\x2b\x70\x85\xf5\xb6\x7d\x50\xcc", 21336 .klen = 16, 21337 .iv = "\xf4\x4a\xd1\x47\x49\x09\x3d\x5b" 21338 "\x4b\xa7\xb1\x19\xb4\x46\x81\x4d", 21339 .assoc = "\x03\x14\x5f\xaf\x8d\xa8\xe7\xe2" 21340 "\x6b\xde\xde\x3e\xb3\x10\xb1\xcf" 21341 "\x5c\x2d\x14\x96\x01\x78\xb9\x47" 21342 "\xa1\x44\x19\x06\x5d\xbb\x2e\x2f", 21343 .alen = 32, 21344 .ptext = "", 21345 .plen = 0, 21346 .ctext = "\x6a\xf8\x8d\x9c\x42\x75\x35\x79" 21347 "\xc1\x96\xbd\x31\x6e\x69\x1b\x50", 21348 .clen = 16, 21349 }, { 21350 .key = "\x22\xa6\x7c\x7f\x15\xe6\x3c\xf0" 21351 "\xac\x4b\x37\x86\xb0\xa2\x13\xd2", 21352 .klen = 16, 21353 .iv = "\x31\x6f\x0b\xe6\x59\x85\xe6\x77" 21354 "\xcc\x81\x63\xab\xae\x6b\x43\x54", 21355 .assoc = "\x40", 21356 .alen = 1, 21357 .ptext = "\x4f", 21358 .plen = 1, 21359 .ctext = "\x01\x24\xb1\xba\xf6\xd3\xdf\x83" 21360 "\x70\x45\xe3\x2a\x9d\x5c\x63\x98" 21361 "\x39", 21362 .clen = 17, 21363 }, { 21364 .key = "\x5e\xcb\xb6\x1e\x25\x62\xe4\x0c" 21365 "\x2d\x25\xe9\x18\xaa\xc6\xd5\xd8", 21366 .klen = 16, 21367 .iv = "\x6d\x94\x44\x86\x69\x00\x8f\x93" 21368 "\x4d\x5b\x15\x3c\xa8\x8f\x06\x5a", 21369 .assoc = "\x7c\x5d\xd3\xee\xad\x9f\x39\x1a" 21370 "\x6d\x92\x42\x61\xa7\x58\x37", 21371 .alen = 15, 21372 .ptext = "\x8b\x26\x61\x55\xf1\x3e\xe3\xa1" 21373 "\x8d\xc8\x6e\x85\xa5\x21\x67", 21374 .plen = 15, 21375 .ctext = "\x18\x78\xc2\x6e\xe1\xf7\xe6\x8a" 21376 "\xca\x0e\x62\x00\xa8\x21\xb5\x21" 21377 "\x3d\x36\xdb\xf7\xcc\x31\x94\x9c" 21378 "\x98\xbd\x71\x7a\xef\xa4\xfa", 21379 .clen = 31, 21380 }, { 21381 .key = "\x9b\xef\xf0\xbd\x35\xdd\x8d\x28" 21382 "\xad\xff\x9b\xa9\xa4\xeb\x98\xdf", 21383 .klen = 16, 21384 .iv = "\xaa\xb8\x7e\x25\x79\x7c\x37\xaf" 21385 "\xce\x36\xc7\xce\xa2\xb4\xc9\x60", 21386 .assoc = "\xb9\x82\x0c\x8d\xbd\x1b\xe2\x36" 21387 "\xee\x6c\xf4\xf2\xa1\x7d\xf9\xe2", 21388 .alen = 16, 21389 .ptext = "\xc8\x4b\x9b\xf5\x01\xba\x8c\xbd" 21390 "\x0e\xa3\x21\x16\x9f\x46\x2a\x63", 21391 .plen = 16, 21392 .ctext = "\xea\xd1\x81\x75\xb4\x13\x1d\x86" 21393 "\xd4\x17\x26\xe5\xd6\x89\x39\x04" 21394 "\xa9\x6c\xca\xac\x40\x73\xb2\x4c" 21395 "\x9c\xb9\x0e\x79\x4c\x40\x65\xc6", 21396 .clen = 32, 21397 }, { 21398 .key = "\xd7\x14\x29\x5d\x45\x59\x36\x44" 21399 "\x2e\xd9\x4d\x3b\x9e\x0f\x5b\xe5", 21400 .klen = 16, 21401 .iv = "\xe6\xdd\xb8\xc4\x89\xf8\xe0\xca" 21402 "\x4f\x10\x7a\x5f\x9c\xd8\x8b\x66", 21403 .assoc = "\xf5\xa6\x46\x2c\xce\x97\x8a\x51" 21404 "\x6f\x46\xa6\x83\x9b\xa1\xbc\xe8" 21405 "\x05", 21406 .alen = 17, 21407 .ptext = "\x05\x70\xd5\x94\x12\x36\x35\xd8" 21408 "\x8f\x7d\xd3\xa8\x99\x6a\xed\x69" 21409 "\xd0", 21410 .plen = 17, 21411 .ctext = "\xf4\xb2\x84\xd1\x81\xfa\x98\x1c" 21412 "\x38\x2d\x69\x90\x1c\x71\x38\x98" 21413 "\x9f\xe1\x19\x3b\x63\x91\xaf\x6e" 21414 "\x4b\x07\x2c\xac\x53\xc5\xd5\xfe" 21415 "\x93", 21416 .clen = 33, 21417 }, { 21418 .key = "\x14\x39\x63\xfc\x56\xd5\xdf\x5f" 21419 "\xaf\xb3\xff\xcc\x98\x33\x1d\xeb", 21420 .klen = 16, 21421 .iv = "\x23\x02\xf1\x64\x9a\x73\x89\xe6" 21422 "\xd0\xea\x2c\xf1\x96\xfc\x4e\x6d", 21423 .assoc = "\x32\xcb\x80\xcc\xde\x12\x33\x6d" 21424 "\xf0\x20\x58\x15\x95\xc6\x7f\xee" 21425 "\x2f\xf9\x4e\x2c\x1b\x98\x43\xc7" 21426 "\x68\x28\x73\x40\x9f\x96\x4a", 21427 .alen = 31, 21428 .ptext = "\x41\x94\x0e\x33\x22\xb1\xdd\xf4" 21429 "\x10\x57\x85\x39\x93\x8f\xaf\x70" 21430 "\xfa\xa9\xd0\x4d\x5c\x40\x23\xcd" 21431 "\x98\x34\xab\x37\x56\xae\x32", 21432 .plen = 31, 21433 .ctext = "\xa0\xe7\x0a\x60\xe7\xb8\x8a\xdb" 21434 "\x94\xd3\x93\xf2\x41\x86\x16\xdd" 21435 "\x4c\xe8\xe7\xe0\x62\x48\x89\x40" 21436 "\xc0\x49\x9b\x63\x32\xec\x8b\xdb" 21437 "\xdc\xa6\xea\x2c\xc2\x7f\xf5\x04" 21438 "\xcb\xe5\x47\xbb\xa7\xd1\x9d", 21439 .clen = 47, 21440 }, { 21441 .key = "\x50\x5d\x9d\x9b\x66\x50\x88\x7b" 21442 "\x30\x8e\xb1\x5e\x92\x58\xe0\xf1", 21443 .klen = 16, 21444 .iv = "\x5f\x27\x2b\x03\xaa\xef\x32\x02" 21445 "\x50\xc4\xde\x82\x90\x21\x11\x73", 21446 .assoc = "\x6e\xf0\xba\x6b\xee\x8e\xdc\x89" 21447 "\x71\xfb\x0a\xa6\x8f\xea\x41\xf4" 21448 "\x5a\xbb\x59\xb0\x20\x38\xc5\xe0" 21449 "\x29\x56\x52\x19\x79\xf5\xe9\x37", 21450 .alen = 32, 21451 .ptext = "\x7e\xb9\x48\xd3\x32\x2d\x86\x10" 21452 "\x91\x31\x37\xcb\x8d\xb3\x72\x76" 21453 "\x24\x6b\xdc\xd1\x61\xe0\xa5\xe7" 21454 "\x5a\x61\x8a\x0f\x30\x0d\xd1\xec", 21455 .plen = 32, 21456 .ctext = "\x62\xdc\x2d\x68\x2d\x71\xbb\x33" 21457 "\x13\xdf\xc0\x46\xf6\x61\x94\xa7" 21458 "\x60\xd3\xd4\xca\xd9\xbe\x82\xf3" 21459 "\xf1\x5b\xa0\xfa\x15\xba\xda\xea" 21460 "\x87\x68\x47\x08\x5d\xdd\x83\xb0" 21461 "\x60\xf4\x93\x20\xdf\x34\x8f\xea", 21462 .clen = 48, 21463 }, { 21464 .key = "\x8d\x82\xd6\x3b\x76\xcc\x30\x97" 21465 "\xb1\x68\x63\xef\x8c\x7c\xa3\xf7", 21466 .klen = 16, 21467 .iv = "\x9c\x4b\x65\xa2\xba\x6b\xdb\x1e" 21468 "\xd1\x9e\x90\x13\x8a\x45\xd3\x79", 21469 .assoc = "\xab\x14\xf3\x0a\xfe\x0a\x85\xa5" 21470 "\xf2\xd5\xbc\x38\x89\x0e\x04\xfb" 21471 "\x84\x7d\x65\x34\x25\xd8\x47\xfa" 21472 "\xeb\x83\x31\xf1\x54\x54\x89\x0d" 21473 "\x9d", 21474 .alen = 33, 21475 .ptext = "\xba\xde\x82\x72\x42\xa9\x2f\x2c" 21476 "\x12\x0b\xe9\x5c\x87\xd7\x35\x7c" 21477 "\x4f\x2e\xe8\x55\x66\x80\x27\x00" 21478 "\x1b\x8f\x68\xe7\x0a\x6c\x71\xc3" 21479 "\x21\x78\x55\x9d\x9c\x65\x7b\xcd" 21480 "\x0a\x34\x97\xff\x47\x37\xb0\x2a" 21481 "\x80\x0d\x19\x98\x33\xa9\x7a\xe3" 21482 "\x2e\x4c\xc6\xf3\x8c\x88\x42\x01" 21483 "\xbd", 21484 .plen = 65, 21485 .ctext = "\x84\xc5\x21\xab\xe1\xeb\xbb\x6d" 21486 "\xaa\x2a\xaf\xeb\x3b\x3b\x69\xe7" 21487 "\x2c\x47\xef\x9d\xb7\x53\x36\xb7" 21488 "\xb6\xf5\xe5\xa8\xc9\x9e\x02\xd7" 21489 "\x83\x88\xc2\xbd\x2f\xf9\x10\xc0" 21490 "\xf5\xa1\x6e\xd3\x97\x64\x82\xa3" 21491 "\xfb\xda\x2c\xb1\x94\xa1\x58\x32" 21492 "\xe8\xd4\x39\xfc\x9e\x26\xf9\xf1" 21493 "\x61\xe6\xae\x07\xf2\xe0\xa7\x44" 21494 "\x96\x28\x3b\xee\x6b\xc6\x16\x31" 21495 "\x3f", 21496 .clen = 81, 21497 }, { 21498 .key = "\xc9\xa7\x10\xda\x86\x48\xd9\xb3" 21499 "\x32\x42\x15\x80\x85\xa1\x65\xfe", 21500 .klen = 16, 21501 .iv = "\xd8\x70\x9f\x42\xca\xe6\x83\x3a" 21502 "\x52\x79\x42\xa5\x84\x6a\x96\x7f", 21503 .assoc = "\xe8\x39\x2d\xaa\x0e\x85\x2d\xc1" 21504 "\x72\xaf\x6e\xc9\x82\x33\xc7\x01" 21505 "\xaf\x40\x70\xb8\x2a\x78\xc9\x14" 21506 "\xac\xb1\x10\xca\x2e\xb3\x28\xe4" 21507 "\xac\xfa\x58\x7f\xe5\x73\x09\x8c" 21508 "\x1d\x40\x87\x8c\xd9\x75\xc0\x55" 21509 "\xa2\xda\x07\xd1\xc2\xa9\xd1\xbb" 21510 "\x09\x4f\x77\x62\x88\x2d\xf2\x68" 21511 "\x54", 21512 .alen = 65, 21513 .ptext = "\xf7\x02\xbb\x11\x52\x24\xd8\x48" 21514 "\x93\xe6\x9b\xee\x81\xfc\xf7\x82" 21515 "\x79\xf0\xf3\xd9\x6c\x20\xa9\x1a" 21516 "\xdc\xbc\x47\xc0\xe4\xcb\x10\x99" 21517 "\x2f", 21518 .plen = 33, 21519 .ctext = "\x8f\x23\x47\xfb\xf2\xac\x23\x83" 21520 "\x77\x09\xac\x74\xef\xd2\x56\xae" 21521 "\x20\x7b\x7b\xca\x45\x8e\xc8\xc2" 21522 "\x50\xbd\xc7\x44\x1c\x54\x98\xd8" 21523 "\x1f\xd0\x9a\x79\xaa\xf9\xe1\xb3" 21524 "\xb4\x98\x5a\x9b\xe4\x4d\xbf\x4e" 21525 "\x39", 21526 .clen = 49, 21527 }, { 21528 .key = "\x06\xcc\x4a\x79\x96\xc3\x82\xcf" 21529 "\xb3\x1c\xc7\x12\x7f\xc5\x28\x04", 21530 .klen = 16, 21531 .iv = "\x15\x95\xd8\xe1\xda\x62\x2c\x56" 21532 "\xd3\x53\xf4\x36\x7e\x8e\x59\x85", 21533 .assoc = "\x24\x5e\x67\x49\x1e\x01\xd6\xdd" 21534 "\xf3\x89\x20\x5b\x7c\x57\x89\x07", 21535 .alen = 16, 21536 .ptext = "\x33\x27\xf5\xb1\x62\xa0\x80\x63" 21537 "\x14\xc0\x4d\x7f\x7b\x20\xba\x89", 21538 .plen = 16, 21539 .ctext = "\x42\xc3\x58\xfb\x29\xe2\x4a\x56" 21540 "\xf1\xf5\xe1\x51\x55\x4b\x0a\x45" 21541 "\x46\xb5\x8d\xac\xb6\x34\xd8\x8b" 21542 "\xde\x20\x59\x77\xc1\x74\x90", 21543 .clen = 31, 21544 }, { 21545 .key = "\x42\xf0\x84\x19\xa6\x3f\x2b\xea" 21546 "\x34\xf6\x79\xa3\x79\xe9\xeb\x0a", 21547 .klen = 16, 21548 .iv = "\x51\xb9\x12\x80\xea\xde\xd5\x71" 21549 "\x54\x2d\xa6\xc8\x78\xb2\x1b\x8c", 21550 .assoc = "\x61\x83\xa0\xe8\x2e\x7d\x7f\xf8" 21551 "\x74\x63\xd2\xec\x76\x7c\x4c\x0d", 21552 .alen = 16, 21553 .ptext = "\x70\x4c\x2f\x50\x72\x1c\x29\x7f" 21554 "\x95\x9a\xff\x10\x75\x45\x7d\x8f", 21555 .plen = 16, 21556 .ctext = "\xb2\xfb\xf6\x97\x69\x7a\xe9\xec" 21557 "\xe2\x94\xa1\x8b\xa0\x2b\x60\x72" 21558 "\x1d\x04\xdd\x6a\xef\x46\x8f\x68" 21559 "\xe9\xe0\x17\x45\x70\x12", 21560 .clen = 30, 21561 }, { 21562 .key = "\x7f\x15\xbd\xb8\xb6\xba\xd3\x06" 21563 "\xb5\xd1\x2b\x35\x73\x0e\xad\x10", 21564 .klen = 16, 21565 .iv = "\x8e\xde\x4c\x20\xfa\x59\x7e\x8d" 21566 "\xd5\x07\x58\x59\x72\xd7\xde\x92", 21567 .assoc = "\x9d\xa7\xda\x88\x3e\xf8\x28\x14" 21568 "\xf5\x3e\x85\x7d\x70\xa0\x0f\x13", 21569 .alen = 16, 21570 .ptext = "\xac\x70\x69\xef\x82\x97\xd2\x9b" 21571 "\x15\x74\xb1\xa2\x6f\x69\x3f\x95", 21572 .plen = 16, 21573 .ctext = "\x47\xda\x54\x42\x51\x72\xc4\x8b" 21574 "\xf5\x57\x0f\x2f\x49\x0e\x11\x3b" 21575 "\x78\x93\xec\xfc\xf4\xff\xe1\x2d", 21576 .clen = 24, 21577 }, 21578 }; 21579 21580 /* 21581 * All key wrapping test vectors taken from 21582 * http://csrc.nist.gov/groups/STM/cavp/documents/mac/kwtestvectors.zip 21583 * 21584 * Note: as documented in keywrap.c, the ivout for encryption is the first 21585 * semiblock of the ciphertext from the test vector. For decryption, iv is 21586 * the first semiblock of the ciphertext. 21587 */ 21588 static const struct cipher_testvec aes_kw_tv_template[] = { 21589 { 21590 .key = "\x75\x75\xda\x3a\x93\x60\x7c\xc2" 21591 "\xbf\xd8\xce\xc7\xaa\xdf\xd9\xa6", 21592 .klen = 16, 21593 .ptext = "\x42\x13\x6d\x3c\x38\x4a\x3e\xea" 21594 "\xc9\x5a\x06\x6f\xd2\x8f\xed\x3f", 21595 .ctext = "\xf6\x85\x94\x81\x6f\x64\xca\xa3" 21596 "\xf5\x6f\xab\xea\x25\x48\xf5\xfb", 21597 .len = 16, 21598 .iv_out = "\x03\x1f\x6b\xd7\xe6\x1e\x64\x3d", 21599 .generates_iv = true, 21600 }, { 21601 .key = "\x80\xaa\x99\x73\x27\xa4\x80\x6b" 21602 "\x6a\x7a\x41\xa5\x2b\x86\xc3\x71" 21603 "\x03\x86\xf9\x32\x78\x6e\xf7\x96" 21604 "\x76\xfa\xfb\x90\xb8\x26\x3c\x5f", 21605 .klen = 32, 21606 .ptext = "\x0a\x25\x6b\xa7\x5c\xfa\x03\xaa" 21607 "\xa0\x2b\xa9\x42\x03\xf1\x5b\xaa", 21608 .ctext = "\xd3\x3d\x3d\x97\x7b\xf0\xa9\x15" 21609 "\x59\xf9\x9c\x8a\xcd\x29\x3d\x43", 21610 .len = 16, 21611 .iv_out = "\x42\x3c\x96\x0d\x8a\x2a\xc4\xc1", 21612 .generates_iv = true, 21613 }, 21614 }; 21615 21616 /* 21617 * ANSI X9.31 Continuous Pseudo-Random Number Generator (AES mode) 21618 * test vectors, taken from Appendix B.2.9 and B.2.10: 21619 * http://csrc.nist.gov/groups/STM/cavp/documents/rng/RNGVS.pdf 21620 * Only AES-128 is supported at this time. 21621 */ 21622 static const struct cprng_testvec ansi_cprng_aes_tv_template[] = { 21623 { 21624 .key = "\xf3\xb1\x66\x6d\x13\x60\x72\x42" 21625 "\xed\x06\x1c\xab\xb8\xd4\x62\x02", 21626 .klen = 16, 21627 .dt = "\xe6\xb3\xbe\x78\x2a\x23\xfa\x62" 21628 "\xd7\x1d\x4a\xfb\xb0\xe9\x22\xf9", 21629 .dtlen = 16, 21630 .v = "\x80\x00\x00\x00\x00\x00\x00\x00" 21631 "\x00\x00\x00\x00\x00\x00\x00\x00", 21632 .vlen = 16, 21633 .result = "\x59\x53\x1e\xd1\x3b\xb0\xc0\x55" 21634 "\x84\x79\x66\x85\xc1\x2f\x76\x41", 21635 .rlen = 16, 21636 .loops = 1, 21637 }, { 21638 .key = "\xf3\xb1\x66\x6d\x13\x60\x72\x42" 21639 "\xed\x06\x1c\xab\xb8\xd4\x62\x02", 21640 .klen = 16, 21641 .dt = "\xe6\xb3\xbe\x78\x2a\x23\xfa\x62" 21642 "\xd7\x1d\x4a\xfb\xb0\xe9\x22\xfa", 21643 .dtlen = 16, 21644 .v = "\xc0\x00\x00\x00\x00\x00\x00\x00" 21645 "\x00\x00\x00\x00\x00\x00\x00\x00", 21646 .vlen = 16, 21647 .result = "\x7c\x22\x2c\xf4\xca\x8f\xa2\x4c" 21648 "\x1c\x9c\xb6\x41\xa9\xf3\x22\x0d", 21649 .rlen = 16, 21650 .loops = 1, 21651 }, { 21652 .key = "\xf3\xb1\x66\x6d\x13\x60\x72\x42" 21653 "\xed\x06\x1c\xab\xb8\xd4\x62\x02", 21654 .klen = 16, 21655 .dt = "\xe6\xb3\xbe\x78\x2a\x23\xfa\x62" 21656 "\xd7\x1d\x4a\xfb\xb0\xe9\x22\xfb", 21657 .dtlen = 16, 21658 .v = "\xe0\x00\x00\x00\x00\x00\x00\x00" 21659 "\x00\x00\x00\x00\x00\x00\x00\x00", 21660 .vlen = 16, 21661 .result = "\x8a\xaa\x00\x39\x66\x67\x5b\xe5" 21662 "\x29\x14\x28\x81\xa9\x4d\x4e\xc7", 21663 .rlen = 16, 21664 .loops = 1, 21665 }, { 21666 .key = "\xf3\xb1\x66\x6d\x13\x60\x72\x42" 21667 "\xed\x06\x1c\xab\xb8\xd4\x62\x02", 21668 .klen = 16, 21669 .dt = "\xe6\xb3\xbe\x78\x2a\x23\xfa\x62" 21670 "\xd7\x1d\x4a\xfb\xb0\xe9\x22\xfc", 21671 .dtlen = 16, 21672 .v = "\xf0\x00\x00\x00\x00\x00\x00\x00" 21673 "\x00\x00\x00\x00\x00\x00\x00\x00", 21674 .vlen = 16, 21675 .result = "\x88\xdd\xa4\x56\x30\x24\x23\xe5" 21676 "\xf6\x9d\xa5\x7e\x7b\x95\xc7\x3a", 21677 .rlen = 16, 21678 .loops = 1, 21679 }, { 21680 .key = "\xf3\xb1\x66\x6d\x13\x60\x72\x42" 21681 "\xed\x06\x1c\xab\xb8\xd4\x62\x02", 21682 .klen = 16, 21683 .dt = "\xe6\xb3\xbe\x78\x2a\x23\xfa\x62" 21684 "\xd7\x1d\x4a\xfb\xb0\xe9\x22\xfd", 21685 .dtlen = 16, 21686 .v = "\xf8\x00\x00\x00\x00\x00\x00\x00" 21687 "\x00\x00\x00\x00\x00\x00\x00\x00", 21688 .vlen = 16, 21689 .result = "\x05\x25\x92\x46\x61\x79\xd2\xcb" 21690 "\x78\xc4\x0b\x14\x0a\x5a\x9a\xc8", 21691 .rlen = 16, 21692 .loops = 1, 21693 }, { /* Monte Carlo Test */ 21694 .key = "\x9f\x5b\x51\x20\x0b\xf3\x34\xb5" 21695 "\xd8\x2b\xe8\xc3\x72\x55\xc8\x48", 21696 .klen = 16, 21697 .dt = "\x63\x76\xbb\xe5\x29\x02\xba\x3b" 21698 "\x67\xc9\x25\xfa\x70\x1f\x11\xac", 21699 .dtlen = 16, 21700 .v = "\x57\x2c\x8e\x76\x87\x26\x47\x97" 21701 "\x7e\x74\xfb\xdd\xc4\x95\x01\xd1", 21702 .vlen = 16, 21703 .result = "\x48\xe9\xbd\x0d\x06\xee\x18\xfb" 21704 "\xe4\x57\x90\xd5\xc3\xfc\x9b\x73", 21705 .rlen = 16, 21706 .loops = 10000, 21707 }, 21708 }; 21709 21710 /* 21711 * SP800-90A DRBG Test vectors from 21712 * http://csrc.nist.gov/groups/STM/cavp/documents/drbg/drbgtestvectors.zip 21713 * 21714 * Test vectors for DRBG with prediction resistance. All types of DRBGs 21715 * (Hash, HMAC, CTR) are tested with all permutations of use cases (w/ and 21716 * w/o personalization string, w/ and w/o additional input string). 21717 */ 21718 static const struct drbg_testvec drbg_pr_sha256_tv_template[] = { 21719 { 21720 .entropy = (unsigned char *) 21721 "\x72\x88\x4c\xcd\x6c\x85\x57\x70\xf7\x0b\x8b\x86" 21722 "\xc1\xeb\xd2\x4e\x36\x14\xab\x18\xc4\x9c\xc9\xcf" 21723 "\x1a\xe8\xf7\x7b\x02\x49\x73\xd7\xf1\x42\x7d\xc6" 21724 "\x3f\x29\x2d\xec\xd3\x66\x51\x3f\x1d\x8d\x5b\x4e", 21725 .entropylen = 48, 21726 .entpra = (unsigned char *) 21727 "\x38\x9c\x91\xfa\xc2\xa3\x46\x89\x56\x08\x3f\x62" 21728 "\x73\xd5\x22\xa9\x29\x63\x3a\x1d\xe5\x5d\x5e\x4f" 21729 "\x67\xb0\x67\x7a\x5e\x9e\x0c\x62", 21730 .entprb = (unsigned char *) 21731 "\xb2\x8f\x36\xb2\xf6\x8d\x39\x13\xfa\x6c\x66\xcf" 21732 "\x62\x8a\x7e\x8c\x12\x33\x71\x9c\x69\xe4\xa5\xf0" 21733 "\x8c\xee\xeb\x9c\xf5\x31\x98\x31", 21734 .entprlen = 32, 21735 .expected = (unsigned char *) 21736 "\x52\x7b\xa3\xad\x71\x77\xa4\x49\x42\x04\x61\xc7" 21737 "\xf0\xaf\xa5\xfd\xd3\xb3\x0d\x6a\x61\xba\x35\x49" 21738 "\xbb\xaa\xaf\xe4\x25\x7d\xb5\x48\xaf\x5c\x18\x3d" 21739 "\x33\x8d\x9d\x45\xdf\x98\xd5\x94\xa8\xda\x92\xfe" 21740 "\xc4\x3c\x94\x2a\xcf\x7f\x7b\xf2\xeb\x28\xa9\xf1" 21741 "\xe0\x86\x30\xa8\xfe\xf2\x48\x90\x91\x0c\x75\xb5" 21742 "\x3c\x00\xf0\x4d\x09\x4f\x40\xa7\xa2\x8c\x52\xdf" 21743 "\x52\xef\x17\xbf\x3d\xd1\xa2\x31\xb4\xb8\xdc\xe6" 21744 "\x5b\x0d\x1f\x78\x36\xb4\xe6\x4b\xa7\x11\x25\xd5" 21745 "\x94\xc6\x97\x36\xab\xf0\xe5\x31\x28\x6a\xbb\xce" 21746 "\x30\x81\xa6\x8f\x27\x14\xf8\x1c", 21747 .expectedlen = 128, 21748 .addtla = NULL, 21749 .addtlb = NULL, 21750 .addtllen = 0, 21751 .pers = NULL, 21752 .perslen = 0, 21753 }, { 21754 .entropy = (unsigned char *) 21755 "\x5d\xf2\x14\xbc\xf6\xb5\x4e\x0b\xf0\x0d\x6f\x2d" 21756 "\xe2\x01\x66\x7b\xd0\xa4\x73\xa4\x21\xdd\xb0\xc0" 21757 "\x51\x79\x09\xf4\xea\xa9\x08\xfa\xa6\x67\xe0\xe1" 21758 "\xd1\x88\xa8\xad\xee\x69\x74\xb3\x55\x06\x9b\xf6", 21759 .entropylen = 48, 21760 .entpra = (unsigned char *) 21761 "\xef\x48\x06\xa2\xc2\x45\xf1\x44\xfa\x34\x2c\xeb" 21762 "\x8d\x78\x3c\x09\x8f\x34\x72\x20\xf2\xe7\xfd\x13" 21763 "\x76\x0a\xf6\xdc\x3c\xf5\xc0\x15", 21764 .entprb = (unsigned char *) 21765 "\x4b\xbe\xe5\x24\xed\x6a\x2d\x0c\xdb\x73\x5e\x09" 21766 "\xf9\xad\x67\x7c\x51\x47\x8b\x6b\x30\x2a\xc6\xde" 21767 "\x76\xaa\x55\x04\x8b\x0a\x72\x95", 21768 .entprlen = 32, 21769 .expected = (unsigned char *) 21770 "\x3b\x14\x71\x99\xa1\xda\xa0\x42\xe6\xc8\x85\x32" 21771 "\x70\x20\x32\x53\x9a\xbe\xd1\x1e\x15\xef\xfb\x4c" 21772 "\x25\x6e\x19\x3a\xf0\xb9\xcb\xde\xf0\x3b\xc6\x18" 21773 "\x4d\x85\x5a\x9b\xf1\xe3\xc2\x23\x03\x93\x08\xdb" 21774 "\xa7\x07\x4b\x33\x78\x40\x4d\xeb\x24\xf5\x6e\x81" 21775 "\x4a\x1b\x6e\xa3\x94\x52\x43\xb0\xaf\x2e\x21\xf4" 21776 "\x42\x46\x8e\x90\xed\x34\x21\x75\xea\xda\x67\xb6" 21777 "\xe4\xf6\xff\xc6\x31\x6c\x9a\x5a\xdb\xb3\x97\x13" 21778 "\x09\xd3\x20\x98\x33\x2d\x6d\xd7\xb5\x6a\xa8\xa9" 21779 "\x9a\x5b\xd6\x87\x52\xa1\x89\x2b\x4b\x9c\x64\x60" 21780 "\x50\x47\xa3\x63\x81\x16\xaf\x19", 21781 .expectedlen = 128, 21782 .addtla = (unsigned char *) 21783 "\xbe\x13\xdb\x2a\xe9\xa8\xfe\x09\x97\xe1\xce\x5d" 21784 "\xe8\xbb\xc0\x7c\x4f\xcb\x62\x19\x3f\x0f\xd2\xad" 21785 "\xa9\xd0\x1d\x59\x02\xc4\xff\x70", 21786 .addtlb = (unsigned char *) 21787 "\x6f\x96\x13\xe2\xa7\xf5\x6c\xfe\xdf\x66\xe3\x31" 21788 "\x63\x76\xbf\x20\x27\x06\x49\xf1\xf3\x01\x77\x41" 21789 "\x9f\xeb\xe4\x38\xfe\x67\x00\xcd", 21790 .addtllen = 32, 21791 .pers = NULL, 21792 .perslen = 0, 21793 }, { 21794 .entropy = (unsigned char *) 21795 "\xc6\x1c\xaf\x83\xa2\x56\x38\xf9\xb0\xbc\xd9\x85" 21796 "\xf5\x2e\xc4\x46\x9c\xe1\xb9\x40\x98\x70\x10\x72" 21797 "\xd7\x7d\x15\x85\xa1\x83\x5a\x97\xdf\xc8\xa8\xe8" 21798 "\x03\x4c\xcb\x70\x35\x8b\x90\x94\x46\x8a\x6e\xa1", 21799 .entropylen = 48, 21800 .entpra = (unsigned char *) 21801 "\xc9\x05\xa4\xcf\x28\x80\x4b\x93\x0f\x8b\xc6\xf9" 21802 "\x09\x41\x58\x74\xe9\xec\x28\xc7\x53\x0a\x73\x60" 21803 "\xba\x0a\xde\x57\x5b\x4b\x9f\x29", 21804 .entprb = (unsigned char *) 21805 "\x4f\x31\xd2\xeb\xac\xfa\xa8\xe2\x01\x7d\xf3\xbd" 21806 "\x42\xbd\x20\xa0\x30\x65\x74\xd5\x5d\xd2\xad\xa4" 21807 "\xa9\xeb\x1f\x4d\xf6\xfd\xb8\x26", 21808 .entprlen = 32, 21809 .expected = (unsigned char *) 21810 "\xf6\x13\x05\xcb\x83\x60\x16\x42\x49\x1d\xc6\x25" 21811 "\x3b\x8c\x31\xa3\xbe\x8b\xbd\x1c\xe2\xec\x1d\xde" 21812 "\xbb\xbf\xa1\xac\xa8\x9f\x50\xce\x69\xce\xef\xd5" 21813 "\xd6\xf2\xef\x6a\xf7\x81\x38\xdf\xbc\xa7\x5a\xb9" 21814 "\xb2\x42\x65\xab\xe4\x86\x8d\x2d\x9d\x59\x99\x2c" 21815 "\x5a\x0d\x71\x55\x98\xa4\x45\xc2\x8d\xdb\x05\x5e" 21816 "\x50\x21\xf7\xcd\xe8\x98\x43\xce\x57\x74\x63\x4c" 21817 "\xf3\xb1\xa5\x14\x1e\x9e\x01\xeb\x54\xd9\x56\xae" 21818 "\xbd\xb6\x6f\x1a\x47\x6b\x3b\x44\xe4\xa2\xe9\x3c" 21819 "\x6c\x83\x12\x30\xb8\x78\x7f\x8e\x54\x82\xd4\xfe" 21820 "\x90\x35\x0d\x4c\x4d\x85\xe7\x13", 21821 .expectedlen = 128, 21822 .addtla = NULL, 21823 .addtlb = NULL, 21824 .addtllen = 0, 21825 .pers = (unsigned char *) 21826 "\xa5\xbf\xac\x4f\x71\xa1\xbb\x67\x94\xc6\x50\xc7" 21827 "\x2a\x45\x9e\x10\xa8\xed\xf7\x52\x4f\xfe\x21\x90" 21828 "\xa4\x1b\xe1\xe2\x53\xcc\x61\x47", 21829 .perslen = 32, 21830 }, { 21831 .entropy = (unsigned char *) 21832 "\xb6\xc1\x8d\xdf\x99\x54\xbe\x95\x10\x48\xd9\xf6" 21833 "\xd7\x48\xa8\x73\x2d\x74\xde\x1e\xde\x57\x7e\xf4" 21834 "\x7b\x7b\x64\xef\x88\x7a\xa8\x10\x4b\xe1\xc1\x87" 21835 "\xbb\x0b\xe1\x39\x39\x50\xaf\x68\x9c\xa2\xbf\x5e", 21836 .entropylen = 48, 21837 .entpra = (unsigned char *) 21838 "\xdc\x81\x0a\x01\x58\xa7\x2e\xce\xee\x48\x8c\x7c" 21839 "\x77\x9e\x3c\xf1\x17\x24\x7a\xbb\xab\x9f\xca\x12" 21840 "\x19\xaf\x97\x2d\x5f\xf9\xff\xfc", 21841 .entprb = (unsigned char *) 21842 "\xaf\xfc\x4f\x98\x8b\x93\x95\xc1\xb5\x8b\x7f\x73" 21843 "\x6d\xa6\xbe\x6d\x33\xeb\x2c\x82\xb1\xaf\xc1\xb6" 21844 "\xb6\x05\xe2\x44\xaa\xfd\xe7\xdb", 21845 .entprlen = 32, 21846 .expected = (unsigned char *) 21847 "\x51\x79\xde\x1c\x0f\x58\xf3\xf4\xc9\x57\x2e\x31" 21848 "\xa7\x09\xa1\x53\x64\x63\xa2\xc5\x1d\x84\x88\x65" 21849 "\x01\x1b\xc6\x16\x3c\x49\x5b\x42\x8e\x53\xf5\x18" 21850 "\xad\x94\x12\x0d\x4f\x55\xcc\x45\x5c\x98\x0f\x42" 21851 "\x28\x2f\x47\x11\xf9\xc4\x01\x97\x6b\xa0\x94\x50" 21852 "\xa9\xd1\x5e\x06\x54\x3f\xdf\xbb\xc4\x98\xee\x8b" 21853 "\xba\xa9\xfa\x49\xee\x1d\xdc\xfb\x50\xf6\x51\x9f" 21854 "\x6c\x4a\x9a\x6f\x63\xa2\x7d\xad\xaf\x3a\x24\xa0" 21855 "\xd9\x9f\x07\xeb\x15\xee\x26\xe0\xd5\x63\x39\xda" 21856 "\x3c\x59\xd6\x33\x6c\x02\xe8\x05\x71\x46\x68\x44" 21857 "\x63\x4a\x68\x72\xe9\xf5\x55\xfe", 21858 .expectedlen = 128, 21859 .addtla = (unsigned char *) 21860 "\x15\x20\x2f\xf6\x98\x28\x63\xa2\xc4\x4e\xbb\x6c" 21861 "\xb2\x25\x92\x61\x79\xc9\x22\xc4\x61\x54\x96\xff" 21862 "\x4a\x85\xca\x80\xfe\x0d\x1c\xd0", 21863 .addtlb = (unsigned char *) 21864 "\xde\x29\x8e\x03\x42\x61\xa3\x28\x5e\xc8\x80\xc2" 21865 "\x6d\xbf\xad\x13\xe1\x8d\x2a\xc7\xe8\xc7\x18\x89" 21866 "\x42\x58\x9e\xd6\xcc\xad\x7b\x1e", 21867 .addtllen = 32, 21868 .pers = (unsigned char *) 21869 "\x84\xc3\x73\x9e\xce\xb3\xbc\x89\xf7\x62\xb3\xe1" 21870 "\xd7\x48\x45\x8a\xa9\xcc\xe9\xed\xd5\x81\x84\x52" 21871 "\x82\x4c\xdc\x19\xb8\xf8\x92\x5c", 21872 .perslen = 32, 21873 }, 21874 }; 21875 21876 static const struct drbg_testvec drbg_pr_hmac_sha256_tv_template[] = { 21877 { 21878 .entropy = (unsigned char *) 21879 "\x99\x69\xe5\x4b\x47\x03\xff\x31\x78\x5b\x87\x9a" 21880 "\x7e\x5c\x0e\xae\x0d\x3e\x30\x95\x59\xe9\xfe\x96" 21881 "\xb0\x67\x6d\x49\xd5\x91\xea\x4d\x07\xd2\x0d\x46" 21882 "\xd0\x64\x75\x7d\x30\x23\xca\xc2\x37\x61\x27\xab", 21883 .entropylen = 48, 21884 .entpra = (unsigned char *) 21885 "\xc6\x0f\x29\x99\x10\x0f\x73\x8c\x10\xf7\x47\x92" 21886 "\x67\x6a\x3f\xc4\xa2\x62\xd1\x37\x21\x79\x80\x46" 21887 "\xe2\x9a\x29\x51\x81\x56\x9f\x54", 21888 .entprb = (unsigned char *) 21889 "\xc1\x1d\x45\x24\xc9\x07\x1b\xd3\x09\x60\x15\xfc" 21890 "\xf7\xbc\x24\xa6\x07\xf2\x2f\xa0\x65\xc9\x37\x65" 21891 "\x8a\x2a\x77\xa8\x69\x90\x89\xf4", 21892 .entprlen = 32, 21893 .expected = (unsigned char *) 21894 "\xab\xc0\x15\x85\x60\x94\x80\x3a\x93\x8d\xff\xd2" 21895 "\x0d\xa9\x48\x43\x87\x0e\xf9\x35\xb8\x2c\xfe\xc1" 21896 "\x77\x06\xb8\xf5\x51\xb8\x38\x50\x44\x23\x5d\xd4" 21897 "\x4b\x59\x9f\x94\xb3\x9b\xe7\x8d\xd4\x76\xe0\xcf" 21898 "\x11\x30\x9c\x99\x5a\x73\x34\xe0\xa7\x8b\x37\xbc" 21899 "\x95\x86\x23\x50\x86\xfa\x3b\x63\x7b\xa9\x1c\xf8" 21900 "\xfb\x65\xef\xa2\x2a\x58\x9c\x13\x75\x31\xaa\x7b" 21901 "\x2d\x4e\x26\x07\xaa\xc2\x72\x92\xb0\x1c\x69\x8e" 21902 "\x6e\x01\xae\x67\x9e\xb8\x7c\x01\xa8\x9c\x74\x22" 21903 "\xd4\x37\x2d\x6d\x75\x4a\xba\xbb\x4b\xf8\x96\xfc" 21904 "\xb1\xcd\x09\xd6\x92\xd0\x28\x3f", 21905 .expectedlen = 128, 21906 .addtla = NULL, 21907 .addtlb = NULL, 21908 .addtllen = 0, 21909 .pers = NULL, 21910 .perslen = 0, 21911 }, { 21912 .entropy = (unsigned char *) 21913 "\xb9\x1f\xe9\xef\xdd\x9b\x7d\x20\xb6\xec\xe0\x2f" 21914 "\xdb\x76\x24\xce\x41\xc8\x3a\x4a\x12\x7f\x3e\x2f" 21915 "\xae\x05\x99\xea\xb5\x06\x71\x0d\x0c\x4c\xb4\x05" 21916 "\x26\xc6\xbd\xf5\x7f\x2a\x3d\xf2\xb5\x49\x7b\xda", 21917 .entropylen = 48, 21918 .entpra = (unsigned char *) 21919 "\xef\x67\x50\x9c\xa7\x7d\xdf\xb7\x2d\x81\x01\xa4" 21920 "\x62\x81\x6a\x69\x5b\xb3\x37\x45\xa7\x34\x8e\x26" 21921 "\x46\xd9\x26\xa2\x19\xd4\x94\x43", 21922 .entprb = (unsigned char *) 21923 "\x97\x75\x53\x53\xba\xb4\xa6\xb2\x91\x60\x71\x79" 21924 "\xd1\x6b\x4a\x24\x9a\x34\x66\xcc\x33\xab\x07\x98" 21925 "\x51\x78\x72\xb2\x79\xfd\x2c\xff", 21926 .entprlen = 32, 21927 .expected = (unsigned char *) 21928 "\x9c\xdc\x63\x8a\x19\x23\x22\x66\x0c\xc5\xb9\xd7" 21929 "\xfb\x2a\xb0\x31\xe3\x8a\x36\xa8\x5a\xa8\x14\xda" 21930 "\x1e\xa9\xcc\xfe\xb8\x26\x44\x83\x9f\xf6\xff\xaa" 21931 "\xc8\x98\xb8\x30\x35\x3b\x3d\x36\xd2\x49\xd4\x40" 21932 "\x62\x0a\x65\x10\x76\x55\xef\xc0\x95\x9c\xa7\xda" 21933 "\x3f\xcf\xb7\x7b\xc6\xe1\x28\x52\xfc\x0c\xe2\x37" 21934 "\x0d\x83\xa7\x51\x4b\x31\x47\x3c\xe1\x3c\xae\x70" 21935 "\x01\xc8\xa3\xd3\xc2\xac\x77\x9c\xd1\x68\x77\x9b" 21936 "\x58\x27\x3b\xa5\x0f\xc2\x7a\x8b\x04\x65\x62\xd5" 21937 "\xe8\xd6\xfe\x2a\xaf\xd3\xd3\xfe\xbd\x18\xfb\xcd" 21938 "\xcd\x66\xb5\x01\x69\x66\xa0\x3c", 21939 .expectedlen = 128, 21940 .addtla = (unsigned char *) 21941 "\x17\xc1\x56\xcb\xcc\x50\xd6\x03\x7d\x45\x76\xa3" 21942 "\x75\x76\xc1\x4a\x66\x1b\x2e\xdf\xb0\x2e\x7d\x56" 21943 "\x6d\x99\x3b\xc6\x58\xda\x03\xf6", 21944 .addtlb = (unsigned char *) 21945 "\x7c\x7b\x4a\x4b\x32\x5e\x6f\x67\x34\xf5\x21\x4c" 21946 "\xf9\x96\xf9\xbf\x1c\x8c\x81\xd3\x9b\x60\x6a\x44" 21947 "\xc6\x03\xa2\xfb\x13\x20\x19\xb7", 21948 .addtllen = 32, 21949 .pers = NULL, 21950 .perslen = 0, 21951 }, { 21952 .entropy = (unsigned char *) 21953 "\x13\x54\x96\xfc\x1b\x7d\x28\xf3\x18\xc9\xa7\x89" 21954 "\xb6\xb3\xc8\x72\xac\x00\xd4\x59\x36\x25\x05\xaf" 21955 "\xa5\xdb\x96\xcb\x3c\x58\x46\x87\xa5\xaa\xbf\x20" 21956 "\x3b\xfe\x23\x0e\xd1\xc7\x41\x0f\x3f\xc9\xb3\x67", 21957 .entropylen = 48, 21958 .entpra = (unsigned char *) 21959 "\xe2\xbd\xb7\x48\x08\x06\xf3\xe1\x93\x3c\xac\x79" 21960 "\xa7\x2b\x11\xda\xe3\x2e\xe1\x91\xa5\x02\x19\x57" 21961 "\x20\x28\xad\xf2\x60\xd7\xcd\x45", 21962 .entprb = (unsigned char *) 21963 "\x8b\xd4\x69\xfc\xff\x59\x95\x95\xc6\x51\xde\x71" 21964 "\x68\x5f\xfc\xf9\x4a\xab\xec\x5a\xcb\xbe\xd3\x66" 21965 "\x1f\xfa\x74\xd3\xac\xa6\x74\x60", 21966 .entprlen = 32, 21967 .expected = (unsigned char *) 21968 "\x1f\x9e\xaf\xe4\xd2\x46\xb7\x47\x41\x4c\x65\x99" 21969 "\x01\xe9\x3b\xbb\x83\x0c\x0a\xb0\xc1\x3a\xe2\xb3" 21970 "\x31\x4e\xeb\x93\x73\xee\x0b\x26\xc2\x63\xa5\x75" 21971 "\x45\x99\xd4\x5c\x9f\xa1\xd4\x45\x87\x6b\x20\x61" 21972 "\x40\xea\x78\xa5\x32\xdf\x9e\x66\x17\xaf\xb1\x88" 21973 "\x9e\x2e\x23\xdd\xc1\xda\x13\x97\x88\xa5\xb6\x5e" 21974 "\x90\x14\x4e\xef\x13\xab\x5c\xd9\x2c\x97\x9e\x7c" 21975 "\xd7\xf8\xce\xea\x81\xf5\xcd\x71\x15\x49\x44\xce" 21976 "\x83\xb6\x05\xfb\x7d\x30\xb5\x57\x2c\x31\x4f\xfc" 21977 "\xfe\x80\xb6\xc0\x13\x0c\x5b\x9b\x2e\x8f\x3d\xfc" 21978 "\xc2\xa3\x0c\x11\x1b\x80\x5f\xf3", 21979 .expectedlen = 128, 21980 .addtla = NULL, 21981 .addtlb = NULL, 21982 .addtllen = 0, 21983 .pers = (unsigned char *) 21984 "\x64\xb6\xfc\x60\xbc\x61\x76\x23\x6d\x3f\x4a\x0f" 21985 "\xe1\xb4\xd5\x20\x9e\x70\xdd\x03\x53\x6d\xbf\xce" 21986 "\xcd\x56\x80\xbc\xb8\x15\xc8\xaa", 21987 .perslen = 32, 21988 }, { 21989 .entropy = (unsigned char *) 21990 "\xc7\xcc\xbc\x67\x7e\x21\x66\x1e\x27\x2b\x63\xdd" 21991 "\x3a\x78\xdc\xdf\x66\x6d\x3f\x24\xae\xcf\x37\x01" 21992 "\xa9\x0d\x89\x8a\xa7\xdc\x81\x58\xae\xb2\x10\x15" 21993 "\x7e\x18\x44\x6d\x13\xea\xdf\x37\x85\xfe\x81\xfb", 21994 .entropylen = 48, 21995 .entpra = (unsigned char *) 21996 "\x7b\xa1\x91\x5b\x3c\x04\xc4\x1b\x1d\x19\x2f\x1a" 21997 "\x18\x81\x60\x3c\x6c\x62\x91\xb7\xe9\xf5\xcb\x96" 21998 "\xbb\x81\x6a\xcc\xb5\xae\x55\xb6", 21999 .entprb = (unsigned char *) 22000 "\x99\x2c\xc7\x78\x7e\x3b\x88\x12\xef\xbe\xd3\xd2" 22001 "\x7d\x2a\xa5\x86\xda\x8d\x58\x73\x4a\x0a\xb2\x2e" 22002 "\xbb\x4c\x7e\xe3\x9a\xb6\x81\xc1", 22003 .entprlen = 32, 22004 .expected = (unsigned char *) 22005 "\x95\x6f\x95\xfc\x3b\xb7\xfe\x3e\xd0\x4e\x1a\x14" 22006 "\x6c\x34\x7f\x7b\x1d\x0d\x63\x5e\x48\x9c\x69\xe6" 22007 "\x46\x07\xd2\x87\xf3\x86\x52\x3d\x98\x27\x5e\xd7" 22008 "\x54\xe7\x75\x50\x4f\xfb\x4d\xfd\xac\x2f\x4b\x77" 22009 "\xcf\x9e\x8e\xcc\x16\xa2\x24\xcd\x53\xde\x3e\xc5" 22010 "\x55\x5d\xd5\x26\x3f\x89\xdf\xca\x8b\x4e\x1e\xb6" 22011 "\x88\x78\x63\x5c\xa2\x63\x98\x4e\x6f\x25\x59\xb1" 22012 "\x5f\x2b\x23\xb0\x4b\xa5\x18\x5d\xc2\x15\x74\x40" 22013 "\x59\x4c\xb4\x1e\xcf\x9a\x36\xfd\x43\xe2\x03\xb8" 22014 "\x59\x91\x30\x89\x2a\xc8\x5a\x43\x23\x7c\x73\x72" 22015 "\xda\x3f\xad\x2b\xba\x00\x6b\xd1", 22016 .expectedlen = 128, 22017 .addtla = (unsigned char *) 22018 "\x18\xe8\x17\xff\xef\x39\xc7\x41\x5c\x73\x03\x03" 22019 "\xf6\x3d\xe8\x5f\xc8\xab\xe4\xab\x0f\xad\xe8\xd6" 22020 "\x86\x88\x55\x28\xc1\x69\xdd\x76", 22021 .addtlb = (unsigned char *) 22022 "\xac\x07\xfc\xbe\x87\x0e\xd3\xea\x1f\x7e\xb8\xe7" 22023 "\x9d\xec\xe8\xe7\xbc\xf3\x18\x25\x77\x35\x4a\xaa" 22024 "\x00\x99\x2a\xdd\x0a\x00\x50\x82", 22025 .addtllen = 32, 22026 .pers = (unsigned char *) 22027 "\xbc\x55\xab\x3c\xf6\x52\xb0\x11\x3d\x7b\x90\xb8" 22028 "\x24\xc9\x26\x4e\x5a\x1e\x77\x0d\x3d\x58\x4a\xda" 22029 "\xd1\x81\xe9\xf8\xeb\x30\x8f\x6f", 22030 .perslen = 32, 22031 }, 22032 }; 22033 22034 static const struct drbg_testvec drbg_pr_ctr_aes128_tv_template[] = { 22035 { 22036 .entropy = (unsigned char *) 22037 "\xd1\x44\xc6\x61\x81\x6d\xca\x9d\x15\x28\x8a\x42" 22038 "\x94\xd7\x28\x9c\x43\x77\x19\x29\x1a\x6d\xc3\xa2", 22039 .entropylen = 24, 22040 .entpra = (unsigned char *) 22041 "\x96\xd8\x9e\x45\x32\xc9\xd2\x08\x7a\x6d\x97\x15" 22042 "\xb4\xec\x80\xb1", 22043 .entprb = (unsigned char *) 22044 "\x8b\xb6\x72\xb5\x24\x0b\x98\x65\x95\x95\xe9\xc9" 22045 "\x28\x07\xeb\xc2", 22046 .entprlen = 16, 22047 .expected = (unsigned char *) 22048 "\x70\x19\xd0\x4c\x45\x78\xd6\x68\xa9\x9a\xaa\xfe" 22049 "\xc1\xdf\x27\x9a\x1c\x0d\x0d\xf7\x24\x75\x46\xcc" 22050 "\x77\x6b\xdf\x89\xc6\x94\xdc\x74\x50\x10\x70\x18" 22051 "\x9b\xdc\x96\xb4\x89\x23\x40\x1a\xce\x09\x87\xce" 22052 "\xd2\xf3\xd5\xe4\x51\x67\x74\x11\x5a\xcc\x8b\x3b" 22053 "\x8a\xf1\x23\xa8", 22054 .expectedlen = 64, 22055 .addtla = NULL, 22056 .addtlb = NULL, 22057 .addtllen = 0, 22058 .pers = NULL, 22059 .perslen = 0, 22060 }, { 22061 .entropy = (unsigned char *) 22062 "\x8e\x83\xe0\xeb\x37\xea\x3e\x53\x5e\x17\x6e\x77" 22063 "\xbd\xb1\x53\x90\xfc\xdc\xc1\x3c\x9a\x88\x22\x94", 22064 .entropylen = 24, 22065 .entpra = (unsigned char *) 22066 "\x6a\x85\xe7\x37\xc8\xf1\x04\x31\x98\x4f\xc8\x73" 22067 "\x67\xd1\x08\xf8", 22068 .entprb = (unsigned char *) 22069 "\xd7\xa4\x68\xe2\x12\x74\xc3\xd9\xf1\xb7\x05\xbc" 22070 "\xd4\xba\x04\x58", 22071 .entprlen = 16, 22072 .expected = (unsigned char *) 22073 "\x78\xd6\xa6\x70\xff\xd1\x82\xf5\xa2\x88\x7f\x6d" 22074 "\x3d\x8c\x39\xb1\xa8\xcb\x2c\x91\xab\x14\x7e\xbc" 22075 "\x95\x45\x9f\x24\xb8\x20\xac\x21\x23\xdb\x72\xd7" 22076 "\x12\x8d\x48\x95\xf3\x19\x0c\x43\xc6\x19\x45\xfc" 22077 "\x8b\xac\x40\x29\x73\x00\x03\x45\x5e\x12\xff\x0c" 22078 "\xc1\x02\x41\x82", 22079 .expectedlen = 64, 22080 .addtla = (unsigned char *) 22081 "\xa2\xd9\x38\xcf\x8b\x29\x67\x5b\x65\x62\x6f\xe8" 22082 "\xeb\xb3\x01\x76", 22083 .addtlb = (unsigned char *) 22084 "\x59\x63\x1e\x81\x8a\x14\xa8\xbb\xa1\xb8\x41\x25" 22085 "\xd0\x7f\xcc\x43", 22086 .addtllen = 16, 22087 .pers = NULL, 22088 .perslen = 0, 22089 }, { 22090 .entropy = (unsigned char *) 22091 "\x04\xd9\x49\xa6\xdc\xe8\x6e\xbb\xf1\x08\x77\x2b" 22092 "\x9e\x08\xca\x92\x65\x16\xda\x99\xa2\x59\xf3\xe8", 22093 .entropylen = 24, 22094 .entpra = (unsigned char *) 22095 "\x38\x7e\x3f\x6b\x51\x70\x7b\x20\xec\x53\xd0\x66" 22096 "\xc3\x0f\xe3\xb0", 22097 .entprb = (unsigned char *) 22098 "\xe0\x86\xa6\xaa\x5f\x72\x2f\xad\xf7\xef\x06\xb8" 22099 "\xd6\x9c\x9d\xe8", 22100 .entprlen = 16, 22101 .expected = (unsigned char *) 22102 "\xc9\x0a\xaf\x85\x89\x71\x44\x66\x4f\x25\x0b\x2b" 22103 "\xde\xd8\xfa\xff\x52\x5a\x1b\x32\x5e\x41\x7a\x10" 22104 "\x1f\xef\x1e\x62\x23\xe9\x20\x30\xc9\x0d\xad\x69" 22105 "\xb4\x9c\x5b\xf4\x87\x42\xd5\xae\x5e\x5e\x43\xcc" 22106 "\xd9\xfd\x0b\x93\x4a\xe3\xd4\x06\x37\x36\x0f\x3f" 22107 "\x72\x82\x0c\xcf", 22108 .expectedlen = 64, 22109 .addtla = NULL, 22110 .addtlb = NULL, 22111 .addtllen = 0, 22112 .pers = (unsigned char *) 22113 "\xbf\xa4\x9a\x8f\x7b\xd8\xb1\x7a\x9d\xfa\x45\xed" 22114 "\x21\x52\xb3\xad", 22115 .perslen = 16, 22116 }, { 22117 .entropy = (unsigned char *) 22118 "\x92\x89\x8f\x31\xfa\x1c\xff\x6d\x18\x2f\x26\x06" 22119 "\x43\xdf\xf8\x18\xc2\xa4\xd9\x72\xc3\xb9\xb6\x97", 22120 .entropylen = 24, 22121 .entpra = (unsigned char *) 22122 "\x20\x72\x8a\x06\xf8\x6f\x8d\xd4\x41\xe2\x72\xb7" 22123 "\xc4\x2c\xe8\x10", 22124 .entprb = (unsigned char *) 22125 "\x3d\xb0\xf0\x94\xf3\x05\x50\x33\x17\x86\x3e\x22" 22126 "\x08\xf7\xa5\x01", 22127 .entprlen = 16, 22128 .expected = (unsigned char *) 22129 "\x5a\x35\x39\x87\x0f\x4d\x22\xa4\x09\x24\xee\x71" 22130 "\xc9\x6f\xac\x72\x0a\xd6\xf0\x88\x82\xd0\x83\x28" 22131 "\x73\xec\x3f\x93\xd8\xab\x45\x23\xf0\x7e\xac\x45" 22132 "\x14\x5e\x93\x9f\xb1\xd6\x76\x43\x3d\xb6\xe8\x08" 22133 "\x88\xf6\xda\x89\x08\x77\x42\xfe\x1a\xf4\x3f\xc4" 22134 "\x23\xc5\x1f\x68", 22135 .expectedlen = 64, 22136 .addtla = (unsigned char *) 22137 "\x1a\x40\xfa\xe3\xcc\x6c\x7c\xa0\xf8\xda\xba\x59" 22138 "\x23\x6d\xad\x1d", 22139 .addtlb = (unsigned char *) 22140 "\x9f\x72\x76\x6c\xc7\x46\xe5\xed\x2e\x53\x20\x12" 22141 "\xbc\x59\x31\x8c", 22142 .addtllen = 16, 22143 .pers = (unsigned char *) 22144 "\xea\x65\xee\x60\x26\x4e\x7e\xb6\x0e\x82\x68\xc4" 22145 "\x37\x3c\x5c\x0b", 22146 .perslen = 16, 22147 }, 22148 }; 22149 22150 /* 22151 * SP800-90A DRBG Test vectors from 22152 * http://csrc.nist.gov/groups/STM/cavp/documents/drbg/drbgtestvectors.zip 22153 * 22154 * Test vectors for DRBG without prediction resistance. All types of DRBGs 22155 * (Hash, HMAC, CTR) are tested with all permutations of use cases (w/ and 22156 * w/o personalization string, w/ and w/o additional input string). 22157 */ 22158 static const struct drbg_testvec drbg_nopr_sha256_tv_template[] = { 22159 { 22160 .entropy = (unsigned char *) 22161 "\xa6\x5a\xd0\xf3\x45\xdb\x4e\x0e\xff\xe8\x75\xc3" 22162 "\xa2\xe7\x1f\x42\xc7\x12\x9d\x62\x0f\xf5\xc1\x19" 22163 "\xa9\xef\x55\xf0\x51\x85\xe0\xfb\x85\x81\xf9\x31" 22164 "\x75\x17\x27\x6e\x06\xe9\x60\x7d\xdb\xcb\xcc\x2e", 22165 .entropylen = 48, 22166 .expected = (unsigned char *) 22167 "\xd3\xe1\x60\xc3\x5b\x99\xf3\x40\xb2\x62\x82\x64" 22168 "\xd1\x75\x10\x60\xe0\x04\x5d\xa3\x83\xff\x57\xa5" 22169 "\x7d\x73\xa6\x73\xd2\xb8\xd8\x0d\xaa\xf6\xa6\xc3" 22170 "\x5a\x91\xbb\x45\x79\xd7\x3f\xd0\xc8\xfe\xd1\x11" 22171 "\xb0\x39\x13\x06\x82\x8a\xdf\xed\x52\x8f\x01\x81" 22172 "\x21\xb3\xfe\xbd\xc3\x43\xe7\x97\xb8\x7d\xbb\x63" 22173 "\xdb\x13\x33\xde\xd9\xd1\xec\xe1\x77\xcf\xa6\xb7" 22174 "\x1f\xe8\xab\x1d\xa4\x66\x24\xed\x64\x15\xe5\x1c" 22175 "\xcd\xe2\xc7\xca\x86\xe2\x83\x99\x0e\xea\xeb\x91" 22176 "\x12\x04\x15\x52\x8b\x22\x95\x91\x02\x81\xb0\x2d" 22177 "\xd4\x31\xf4\xc9\xf7\x04\x27\xdf", 22178 .expectedlen = 128, 22179 .addtla = NULL, 22180 .addtlb = NULL, 22181 .addtllen = 0, 22182 .pers = NULL, 22183 .perslen = 0, 22184 }, { 22185 .entropy = (unsigned char *) 22186 "\x73\xd3\xfb\xa3\x94\x5f\x2b\x5f\xb9\x8f\xf6\x9c" 22187 "\x8a\x93\x17\xae\x19\xc3\x4c\xc3\xd6\xca\xa3\x2d" 22188 "\x16\xfc\x42\xd2\x2d\xd5\x6f\x56\xcc\x1d\x30\xff" 22189 "\x9e\x06\x3e\x09\xce\x58\xe6\x9a\x35\xb3\xa6\x56", 22190 .entropylen = 48, 22191 .expected = (unsigned char *) 22192 "\x71\x7b\x93\x46\x1a\x40\xaa\x35\xa4\xaa\xc5\xe7" 22193 "\x6d\x5b\x5b\x8a\xa0\xdf\x39\x7d\xae\x71\x58\x5b" 22194 "\x3c\x7c\xb4\xf0\x89\xfa\x4a\x8c\xa9\x5c\x54\xc0" 22195 "\x40\xdf\xbc\xce\x26\x81\x34\xf8\xba\x7d\x1c\xe8" 22196 "\xad\x21\xe0\x74\xcf\x48\x84\x30\x1f\xa1\xd5\x4f" 22197 "\x81\x42\x2f\xf4\xdb\x0b\x23\xf8\x73\x27\xb8\x1d" 22198 "\x42\xf8\x44\x58\xd8\x5b\x29\x27\x0a\xf8\x69\x59" 22199 "\xb5\x78\x44\xeb\x9e\xe0\x68\x6f\x42\x9a\xb0\x5b" 22200 "\xe0\x4e\xcb\x6a\xaa\xe2\xd2\xd5\x33\x25\x3e\xe0" 22201 "\x6c\xc7\x6a\x07\xa5\x03\x83\x9f\xe2\x8b\xd1\x1c" 22202 "\x70\xa8\x07\x59\x97\xeb\xf6\xbe", 22203 .expectedlen = 128, 22204 .addtla = (unsigned char *) 22205 "\xf4\xd5\x98\x3d\xa8\xfc\xfa\x37\xb7\x54\x67\x73" 22206 "\xc7\xc3\xdd\x47\x34\x71\x02\x5d\xc1\xa0\xd3\x10" 22207 "\xc1\x8b\xbd\xf5\x66\x34\x6f\xdd", 22208 .addtlb = (unsigned char *) 22209 "\xf7\x9e\x6a\x56\x0e\x73\xe9\xd9\x7a\xd1\x69\xe0" 22210 "\x6f\x8c\x55\x1c\x44\xd1\xce\x6f\x28\xcc\xa4\x4d" 22211 "\xa8\xc0\x85\xd1\x5a\x0c\x59\x40", 22212 .addtllen = 32, 22213 .pers = NULL, 22214 .perslen = 0, 22215 }, { 22216 .entropy = (unsigned char *) 22217 "\x2a\x85\xa9\x8b\xd0\xda\x83\xd6\xad\xab\x9f\xbb" 22218 "\x54\x31\x15\x95\x1c\x4d\x49\x9f\x6a\x15\xf6\xe4" 22219 "\x15\x50\x88\x06\x29\x0d\xed\x8d\xb9\x6f\x96\xe1" 22220 "\x83\x9f\xf7\x88\xda\x84\xbf\x44\x28\xd9\x1d\xaa", 22221 .entropylen = 48, 22222 .expected = (unsigned char *) 22223 "\x2d\x55\xde\xc9\xed\x05\x47\x07\x3d\x04\xfc\x28" 22224 "\x0f\x92\xf0\x4d\xd8\x00\x32\x47\x0a\x1b\x1c\x4b" 22225 "\xef\xd9\x97\xa1\x17\x67\xda\x26\x6c\xfe\x76\x46" 22226 "\x6f\xbc\x6d\x82\x4e\x83\x8a\x98\x66\x6c\x01\xb6" 22227 "\xe6\x64\xe0\x08\x10\x6f\xd3\x5d\x90\xe7\x0d\x72" 22228 "\xa6\xa7\xe3\xbb\x98\x11\x12\x56\x23\xc2\x6d\xd1" 22229 "\xc8\xa8\x7a\x39\xf3\x34\xe3\xb8\xf8\x66\x00\x77" 22230 "\x7d\xcf\x3c\x3e\xfa\xc9\x0f\xaf\xe0\x24\xfa\xe9" 22231 "\x84\xf9\x6a\x01\xf6\x35\xdb\x5c\xab\x2a\xef\x4e" 22232 "\xac\xab\x55\xb8\x9b\xef\x98\x68\xaf\x51\xd8\x16" 22233 "\xa5\x5e\xae\xf9\x1e\xd2\xdb\xe6", 22234 .expectedlen = 128, 22235 .addtla = NULL, 22236 .addtlb = NULL, 22237 .addtllen = 0, 22238 .pers = (unsigned char *) 22239 "\xa8\x80\xec\x98\x30\x98\x15\xd2\xc6\xc4\x68\xf1" 22240 "\x3a\x1c\xbf\xce\x6a\x40\x14\xeb\x36\x99\x53\xda" 22241 "\x57\x6b\xce\xa4\x1c\x66\x3d\xbc", 22242 .perslen = 32, 22243 }, { 22244 .entropy = (unsigned char *) 22245 "\x69\xed\x82\xa9\xc5\x7b\xbf\xe5\x1d\x2f\xcb\x7a" 22246 "\xd3\x50\x7d\x96\xb4\xb9\x2b\x50\x77\x51\x27\x74" 22247 "\x33\x74\xba\xf1\x30\xdf\x8e\xdf\x87\x1d\x87\xbc" 22248 "\x96\xb2\xc3\xa7\xed\x60\x5e\x61\x4e\x51\x29\x1a", 22249 .entropylen = 48, 22250 .expected = (unsigned char *) 22251 "\xa5\x71\x24\x31\x11\xfe\x13\xe1\xa8\x24\x12\xfb" 22252 "\x37\xa1\x27\xa5\xab\x77\xa1\x9f\xae\x8f\xaf\x13" 22253 "\x93\xf7\x53\x85\x91\xb6\x1b\xab\xd4\x6b\xea\xb6" 22254 "\xef\xda\x4c\x90\x6e\xef\x5f\xde\xe1\xc7\x10\x36" 22255 "\xd5\x67\xbd\x14\xb6\x89\x21\x0c\xc9\x92\x65\x64" 22256 "\xd0\xf3\x23\xe0\x7f\xd1\xe8\x75\xc2\x85\x06\xea" 22257 "\xca\xc0\xcb\x79\x2d\x29\x82\xfc\xaa\x9a\xc6\x95" 22258 "\x7e\xdc\x88\x65\xba\xec\x0e\x16\x87\xec\xa3\x9e" 22259 "\xd8\x8c\x80\xab\x3a\x64\xe0\xcb\x0e\x45\x98\xdd" 22260 "\x7c\x6c\x6c\x26\x11\x13\xc8\xce\xa9\x47\xa6\x06" 22261 "\x57\xa2\x66\xbb\x2d\x7f\xf3\xc1", 22262 .expectedlen = 128, 22263 .addtla = (unsigned char *) 22264 "\x74\xd3\x6d\xda\xe8\xd6\x86\x5f\x63\x01\xfd\xf2" 22265 "\x7d\x06\x29\x6d\x94\xd1\x66\xf0\xd2\x72\x67\x4e" 22266 "\x77\xc5\x3d\x9e\x03\xe3\xa5\x78", 22267 .addtlb = (unsigned char *) 22268 "\xf6\xb6\x3d\xf0\x7c\x26\x04\xc5\x8b\xcd\x3e\x6a" 22269 "\x9f\x9c\x3a\x2e\xdb\x47\x87\xe5\x8e\x00\x5e\x2b" 22270 "\x74\x7f\xa6\xf6\x80\xcd\x9b\x21", 22271 .addtllen = 32, 22272 .pers = (unsigned char *) 22273 "\x74\xa6\xe0\x08\xf9\x27\xee\x1d\x6e\x3c\x28\x20" 22274 "\x87\xdd\xd7\x54\x31\x47\x78\x4b\xe5\x6d\xa3\x73" 22275 "\xa9\x65\xb1\x10\xc1\xdc\x77\x7c", 22276 .perslen = 32, 22277 }, 22278 }; 22279 22280 static const struct drbg_testvec drbg_nopr_hmac_sha256_tv_template[] = { 22281 { 22282 .entropy = (unsigned char *) 22283 "\xca\x85\x19\x11\x34\x93\x84\xbf\xfe\x89\xde\x1c" 22284 "\xbd\xc4\x6e\x68\x31\xe4\x4d\x34\xa4\xfb\x93\x5e" 22285 "\xe2\x85\xdd\x14\xb7\x1a\x74\x88\x65\x9b\xa9\x6c" 22286 "\x60\x1d\xc6\x9f\xc9\x02\x94\x08\x05\xec\x0c\xa8", 22287 .entropylen = 48, 22288 .expected = (unsigned char *) 22289 "\xe5\x28\xe9\xab\xf2\xde\xce\x54\xd4\x7c\x7e\x75" 22290 "\xe5\xfe\x30\x21\x49\xf8\x17\xea\x9f\xb4\xbe\xe6" 22291 "\xf4\x19\x96\x97\xd0\x4d\x5b\x89\xd5\x4f\xbb\x97" 22292 "\x8a\x15\xb5\xc4\x43\xc9\xec\x21\x03\x6d\x24\x60" 22293 "\xb6\xf7\x3e\xba\xd0\xdc\x2a\xba\x6e\x62\x4a\xbf" 22294 "\x07\x74\x5b\xc1\x07\x69\x4b\xb7\x54\x7b\xb0\x99" 22295 "\x5f\x70\xde\x25\xd6\xb2\x9e\x2d\x30\x11\xbb\x19" 22296 "\xd2\x76\x76\xc0\x71\x62\xc8\xb5\xcc\xde\x06\x68" 22297 "\x96\x1d\xf8\x68\x03\x48\x2c\xb3\x7e\xd6\xd5\xc0" 22298 "\xbb\x8d\x50\xcf\x1f\x50\xd4\x76\xaa\x04\x58\xbd" 22299 "\xab\xa8\x06\xf4\x8b\xe9\xdc\xb8", 22300 .expectedlen = 128, 22301 .addtla = NULL, 22302 .addtlb = NULL, 22303 .addtllen = 0, 22304 .pers = NULL, 22305 .perslen = 0, 22306 }, { 22307 .entropy = (unsigned char *) 22308 "\xf9\x7a\x3c\xfd\x91\xfa\xa0\x46\xb9\xe6\x1b\x94" 22309 "\x93\xd4\x36\xc4\x93\x1f\x60\x4b\x22\xf1\x08\x15" 22310 "\x21\xb3\x41\x91\x51\xe8\xff\x06\x11\xf3\xa7\xd4" 22311 "\x35\x95\x35\x7d\x58\x12\x0b\xd1\xe2\xdd\x8a\xed", 22312 .entropylen = 48, 22313 .expected = (unsigned char *) 22314 "\xc6\x87\x1c\xff\x08\x24\xfe\x55\xea\x76\x89\xa5" 22315 "\x22\x29\x88\x67\x30\x45\x0e\x5d\x36\x2d\xa5\xbf" 22316 "\x59\x0d\xcf\x9a\xcd\x67\xfe\xd4\xcb\x32\x10\x7d" 22317 "\xf5\xd0\x39\x69\xa6\x6b\x1f\x64\x94\xfd\xf5\xd6" 22318 "\x3d\x5b\x4d\x0d\x34\xea\x73\x99\xa0\x7d\x01\x16" 22319 "\x12\x6d\x0d\x51\x8c\x7c\x55\xba\x46\xe1\x2f\x62" 22320 "\xef\xc8\xfe\x28\xa5\x1c\x9d\x42\x8e\x6d\x37\x1d" 22321 "\x73\x97\xab\x31\x9f\xc7\x3d\xed\x47\x22\xe5\xb4" 22322 "\xf3\x00\x04\x03\x2a\x61\x28\xdf\x5e\x74\x97\xec" 22323 "\xf8\x2c\xa7\xb0\xa5\x0e\x86\x7e\xf6\x72\x8a\x4f" 22324 "\x50\x9a\x8c\x85\x90\x87\x03\x9c", 22325 .expectedlen = 128, 22326 .addtla = (unsigned char *) 22327 "\x51\x72\x89\xaf\xe4\x44\xa0\xfe\x5e\xd1\xa4\x1d" 22328 "\xbb\xb5\xeb\x17\x15\x00\x79\xbd\xd3\x1e\x29\xcf" 22329 "\x2f\xf3\x00\x34\xd8\x26\x8e\x3b", 22330 .addtlb = (unsigned char *) 22331 "\x88\x02\x8d\x29\xef\x80\xb4\xe6\xf0\xfe\x12\xf9" 22332 "\x1d\x74\x49\xfe\x75\x06\x26\x82\xe8\x9c\x57\x14" 22333 "\x40\xc0\xc9\xb5\x2c\x42\xa6\xe0", 22334 .addtllen = 32, 22335 .pers = NULL, 22336 .perslen = 0, 22337 }, { 22338 .entropy = (unsigned char *) 22339 "\x8d\xf0\x13\xb4\xd1\x03\x52\x30\x73\x91\x7d\xdf" 22340 "\x6a\x86\x97\x93\x05\x9e\x99\x43\xfc\x86\x54\x54" 22341 "\x9e\x7a\xb2\x2f\x7c\x29\xf1\x22\xda\x26\x25\xaf" 22342 "\x2d\xdd\x4a\xbc\xce\x3c\xf4\xfa\x46\x59\xd8\x4e", 22343 .entropylen = 48, 22344 .expected = (unsigned char *) 22345 "\xb9\x1c\xba\x4c\xc8\x4f\xa2\x5d\xf8\x61\x0b\x81" 22346 "\xb6\x41\x40\x27\x68\xa2\x09\x72\x34\x93\x2e\x37" 22347 "\xd5\x90\xb1\x15\x4c\xbd\x23\xf9\x74\x52\xe3\x10" 22348 "\xe2\x91\xc4\x51\x46\x14\x7f\x0d\xa2\xd8\x17\x61" 22349 "\xfe\x90\xfb\xa6\x4f\x94\x41\x9c\x0f\x66\x2b\x28" 22350 "\xc1\xed\x94\xda\x48\x7b\xb7\xe7\x3e\xec\x79\x8f" 22351 "\xbc\xf9\x81\xb7\x91\xd1\xbe\x4f\x17\x7a\x89\x07" 22352 "\xaa\x3c\x40\x16\x43\xa5\xb6\x2b\x87\xb8\x9d\x66" 22353 "\xb3\xa6\x0e\x40\xd4\xa8\xe4\xe9\xd8\x2a\xf6\xd2" 22354 "\x70\x0e\x6f\x53\x5c\xdb\x51\xf7\x5c\x32\x17\x29" 22355 "\x10\x37\x41\x03\x0c\xcc\x3a\x56", 22356 .expectedlen = 128, 22357 .addtla = NULL, 22358 .addtlb = NULL, 22359 .addtllen = 0, 22360 .pers = (unsigned char *) 22361 "\xb5\x71\xe6\x6d\x7c\x33\x8b\xc0\x7b\x76\xad\x37" 22362 "\x57\xbb\x2f\x94\x52\xbf\x7e\x07\x43\x7a\xe8\x58" 22363 "\x1c\xe7\xbc\x7c\x3a\xc6\x51\xa9", 22364 .perslen = 32, 22365 }, { 22366 .entropy = (unsigned char *) 22367 "\xc2\xa5\x66\xa9\xa1\x81\x7b\x15\xc5\xc3\xb7\x78" 22368 "\x17\x7a\xc8\x7c\x24\xe7\x97\xbe\x0a\x84\x5f\x11" 22369 "\xc2\xfe\x39\x9d\xd3\x77\x32\xf2\xcb\x18\x94\xeb" 22370 "\x2b\x97\xb3\xc5\x6e\x62\x83\x29\x51\x6f\x86\xec", 22371 .entropylen = 48, 22372 .expected = (unsigned char *) 22373 "\xb3\xa3\x69\x8d\x77\x76\x99\xa0\xdd\x9f\xa3\xf0" 22374 "\xa9\xfa\x57\x83\x2d\x3c\xef\xac\x5d\xf2\x44\x37" 22375 "\xc6\xd7\x3a\x0f\xe4\x10\x40\xf1\x72\x90\x38\xae" 22376 "\xf1\xe9\x26\x35\x2e\xa5\x9d\xe1\x20\xbf\xb7\xb0" 22377 "\x73\x18\x3a\x34\x10\x6e\xfe\xd6\x27\x8f\xf8\xad" 22378 "\x84\x4b\xa0\x44\x81\x15\xdf\xdd\xf3\x31\x9a\x82" 22379 "\xde\x6b\xb1\x1d\x80\xbd\x87\x1a\x9a\xcd\x35\xc7" 22380 "\x36\x45\xe1\x27\x0f\xb9\xfe\x4f\xa8\x8e\xc0\xe4" 22381 "\x65\x40\x9e\xa0\xcb\xa8\x09\xfe\x2f\x45\xe0\x49" 22382 "\x43\xa2\xe3\x96\xbb\xb7\xdd\x2f\x4e\x07\x95\x30" 22383 "\x35\x24\xcc\x9c\xc5\xea\x54\xa1", 22384 .expectedlen = 128, 22385 .addtla = (unsigned char *) 22386 "\x41\x3d\xd8\x3f\xe5\x68\x35\xab\xd4\x78\xcb\x96" 22387 "\x93\xd6\x76\x35\x90\x1c\x40\x23\x9a\x26\x64\x62" 22388 "\xd3\x13\x3b\x83\xe4\x9c\x82\x0b", 22389 .addtlb = (unsigned char *) 22390 "\xd5\xc4\xa7\x1f\x9d\x6d\x95\xa1\xbe\xdf\x0b\xd2" 22391 "\x24\x7c\x27\x7d\x1f\x84\xa4\xe5\x7a\x4a\x88\x25" 22392 "\xb8\x2a\x2d\x09\x7d\xe6\x3e\xf1", 22393 .addtllen = 32, 22394 .pers = (unsigned char *) 22395 "\x13\xce\x4d\x8d\xd2\xdb\x97\x96\xf9\x41\x56\xc8" 22396 "\xe8\xf0\x76\x9b\x0a\xa1\xc8\x2c\x13\x23\xb6\x15" 22397 "\x36\x60\x3b\xca\x37\xc9\xee\x29", 22398 .perslen = 32, 22399 }, 22400 }; 22401 22402 static const struct drbg_testvec drbg_nopr_ctr_aes192_tv_template[] = { 22403 { 22404 .entropy = (unsigned char *) 22405 "\xc3\x5c\x2f\xa2\xa8\x9d\x52\xa1\x1f\xa3\x2a\xa9" 22406 "\x6c\x95\xb8\xf1\xc9\xa8\xf9\xcb\x24\x5a\x8b\x40" 22407 "\xf3\xa6\xe5\xa7\xfb\xd9\xd3\xc6\x8e\x27\x7b\xa9" 22408 "\xac\x9b\xbb\x00", 22409 .entropylen = 40, 22410 .expected = (unsigned char *) 22411 "\x8c\x2e\x72\xab\xfd\x9b\xb8\x28\x4d\xb7\x9e\x17" 22412 "\xa4\x3a\x31\x46\xcd\x76\x94\xe3\x52\x49\xfc\x33" 22413 "\x83\x91\x4a\x71\x17\xf4\x13\x68\xe6\xd4\xf1\x48" 22414 "\xff\x49\xbf\x29\x07\x6b\x50\x15\xc5\x9f\x45\x79" 22415 "\x45\x66\x2e\x3d\x35\x03\x84\x3f\x4a\xa5\xa3\xdf" 22416 "\x9a\x9d\xf1\x0d", 22417 .expectedlen = 64, 22418 .addtla = NULL, 22419 .addtlb = NULL, 22420 .addtllen = 0, 22421 .pers = NULL, 22422 .perslen = 0, 22423 }, 22424 }; 22425 22426 static const struct drbg_testvec drbg_nopr_ctr_aes256_tv_template[] = { 22427 { 22428 .entropy = (unsigned char *) 22429 "\x36\x40\x19\x40\xfa\x8b\x1f\xba\x91\xa1\x66\x1f" 22430 "\x21\x1d\x78\xa0\xb9\x38\x9a\x74\xe5\xbc\xcf\xec" 22431 "\xe8\xd7\x66\xaf\x1a\x6d\x3b\x14\x49\x6f\x25\xb0" 22432 "\xf1\x30\x1b\x4f\x50\x1b\xe3\x03\x80\xa1\x37\xeb", 22433 .entropylen = 48, 22434 .expected = (unsigned char *) 22435 "\x58\x62\xeb\x38\xbd\x55\x8d\xd9\x78\xa6\x96\xe6" 22436 "\xdf\x16\x47\x82\xdd\xd8\x87\xe7\xe9\xa6\xc9\xf3" 22437 "\xf1\xfb\xaf\xb7\x89\x41\xb5\x35\xa6\x49\x12\xdf" 22438 "\xd2\x24\xc6\xdc\x74\x54\xe5\x25\x0b\x3d\x97\x16" 22439 "\x5e\x16\x26\x0c\x2f\xaf\x1c\xc7\x73\x5c\xb7\x5f" 22440 "\xb4\xf0\x7e\x1d", 22441 .expectedlen = 64, 22442 .addtla = NULL, 22443 .addtlb = NULL, 22444 .addtllen = 0, 22445 .pers = NULL, 22446 .perslen = 0, 22447 }, 22448 }; 22449 22450 static const struct drbg_testvec drbg_nopr_ctr_aes128_tv_template[] = { 22451 { 22452 .entropy = (unsigned char *) 22453 "\x87\xe1\xc5\x32\x99\x7f\x57\xa3\x5c\x28\x6d\xe8" 22454 "\x64\xbf\xf2\x64\xa3\x9e\x98\xdb\x6c\x10\x78\x7f", 22455 .entropylen = 24, 22456 .expected = (unsigned char *) 22457 "\x2c\x14\x7e\x24\x11\x9a\xd8\xd4\xb2\xed\x61\xc1" 22458 "\x53\xd0\x50\xc9\x24\xff\x59\x75\x15\xf1\x17\x3a" 22459 "\x3d\xf4\x4b\x2c\x84\x28\xef\x89\x0e\xb9\xde\xf3" 22460 "\xe4\x78\x04\xb2\xfd\x9b\x35\x7f\xe1\x3f\x8a\x3e" 22461 "\x10\xc8\x67\x0a\xf9\xdf\x2d\x6c\x96\xfb\xb2\xb8" 22462 "\xcb\x2d\xd6\xb0", 22463 .expectedlen = 64, 22464 .addtla = NULL, 22465 .addtlb = NULL, 22466 .addtllen = 0, 22467 .pers = NULL, 22468 .perslen = 0, 22469 }, { 22470 .entropy = (unsigned char *) 22471 "\x71\xbd\xce\x35\x42\x7d\x20\xbf\x58\xcf\x17\x74" 22472 "\xce\x72\xd8\x33\x34\x50\x2d\x8f\x5b\x14\xc4\xdd", 22473 .entropylen = 24, 22474 .expected = (unsigned char *) 22475 "\x97\x33\xe8\x20\x12\xe2\x7b\xa1\x46\x8f\xf2\x34" 22476 "\xb3\xc9\xb6\x6b\x20\xb2\x4f\xee\x27\xd8\x0b\x21" 22477 "\x8c\xff\x63\x73\x69\x29\xfb\xf3\x85\xcd\x88\x8e" 22478 "\x43\x2c\x71\x8b\xa2\x55\xd2\x0f\x1d\x7f\xe3\xe1" 22479 "\x2a\xa3\xe9\x2c\x25\x89\xc7\x14\x52\x99\x56\xcc" 22480 "\xc3\xdf\xb3\x81", 22481 .expectedlen = 64, 22482 .addtla = (unsigned char *) 22483 "\x66\xef\x42\xd6\x9a\x8c\x3d\x6d\x4a\x9e\x95\xa6" 22484 "\x91\x4d\x81\x56", 22485 .addtlb = (unsigned char *) 22486 "\xe3\x18\x83\xd9\x4b\x5e\xc4\xcc\xaa\x61\x2f\xbb" 22487 "\x4a\x55\xd1\xc6", 22488 .addtllen = 16, 22489 .pers = NULL, 22490 .perslen = 0, 22491 }, { 22492 .entropy = (unsigned char *) 22493 "\xca\x4b\x1e\xfa\x75\xbd\x69\x36\x38\x73\xb8\xf9" 22494 "\xdb\x4d\x35\x0e\x47\xbf\x6c\x37\x72\xfd\xf7\xa9", 22495 .entropylen = 24, 22496 .expected = (unsigned char *) 22497 "\x59\xc3\x19\x79\x1b\xb1\xf3\x0e\xe9\x34\xae\x6e" 22498 "\x8b\x1f\xad\x1f\x74\xca\x25\x45\x68\xb8\x7f\x75" 22499 "\x12\xf8\xf2\xab\x4c\x23\x01\x03\x05\xe1\x70\xee" 22500 "\x75\xd8\xcb\xeb\x23\x4c\x7a\x23\x6e\x12\x27\xdb" 22501 "\x6f\x7a\xac\x3c\x44\xb7\x87\x4b\x65\x56\x74\x45" 22502 "\x34\x30\x0c\x3d", 22503 .expectedlen = 64, 22504 .addtla = NULL, 22505 .addtlb = NULL, 22506 .addtllen = 0, 22507 .pers = (unsigned char *) 22508 "\xeb\xaa\x60\x2c\x4d\xbe\x33\xff\x1b\xef\xbf\x0a" 22509 "\x0b\xc6\x97\x54", 22510 .perslen = 16, 22511 }, { 22512 .entropy = (unsigned char *) 22513 "\xc0\x70\x1f\x92\x50\x75\x8f\xcd\xf2\xbe\x73\x98" 22514 "\x80\xdb\x66\xeb\x14\x68\xb4\xa5\x87\x9c\x2d\xa6", 22515 .entropylen = 24, 22516 .expected = (unsigned char *) 22517 "\x97\xc0\xc0\xe5\xa0\xcc\xf2\x4f\x33\x63\x48\x8a" 22518 "\xdb\x13\x0a\x35\x89\xbf\x80\x65\x62\xee\x13\x95" 22519 "\x7c\x33\xd3\x7d\xf4\x07\x77\x7a\x2b\x65\x0b\x5f" 22520 "\x45\x5c\x13\xf1\x90\x77\x7f\xc5\x04\x3f\xcc\x1a" 22521 "\x38\xf8\xcd\x1b\xbb\xd5\x57\xd1\x4a\x4c\x2e\x8a" 22522 "\x2b\x49\x1e\x5c", 22523 .expectedlen = 64, 22524 .addtla = (unsigned char *) 22525 "\xf9\x01\xf8\x16\x7a\x1d\xff\xde\x8e\x3c\x83\xe2" 22526 "\x44\x85\xe7\xfe", 22527 .addtlb = (unsigned char *) 22528 "\x17\x1c\x09\x38\xc2\x38\x9f\x97\x87\x60\x55\xb4" 22529 "\x82\x16\x62\x7f", 22530 .addtllen = 16, 22531 .pers = (unsigned char *) 22532 "\x80\x08\xae\xe8\xe9\x69\x40\xc5\x08\x73\xc7\x9f" 22533 "\x8e\xcf\xe0\x02", 22534 .perslen = 16, 22535 }, 22536 }; 22537 22538 /* Cast5 test vectors from RFC 2144 */ 22539 static const struct cipher_testvec cast5_tv_template[] = { 22540 { 22541 .key = "\x01\x23\x45\x67\x12\x34\x56\x78" 22542 "\x23\x45\x67\x89\x34\x56\x78\x9a", 22543 .klen = 16, 22544 .ptext = "\x01\x23\x45\x67\x89\xab\xcd\xef", 22545 .ctext = "\x23\x8b\x4f\xe5\x84\x7e\x44\xb2", 22546 .len = 8, 22547 }, { 22548 .key = "\x01\x23\x45\x67\x12\x34\x56\x78" 22549 "\x23\x45", 22550 .klen = 10, 22551 .ptext = "\x01\x23\x45\x67\x89\xab\xcd\xef", 22552 .ctext = "\xeb\x6a\x71\x1a\x2c\x02\x27\x1b", 22553 .len = 8, 22554 }, { 22555 .key = "\x01\x23\x45\x67\x12", 22556 .klen = 5, 22557 .ptext = "\x01\x23\x45\x67\x89\xab\xcd\xef", 22558 .ctext = "\x7a\xc8\x16\xd1\x6e\x9b\x30\x2e", 22559 .len = 8, 22560 }, { /* Generated from TF test vectors */ 22561 .key = "\x85\x62\x3F\x1C\xF9\xD6\x1C\xF9" 22562 "\xD6\xB3\x90\x6D\x4A\x90\x6D\x4A", 22563 .klen = 16, 22564 .iv = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F", 22565 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 22566 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 22567 "\x3A\xD1\x45\xDC\x73\x0A\x7E\x15" 22568 "\xAC\x20\xB7\x4E\xE5\x59\xF0\x87" 22569 "\x1E\x92\x29\xC0\x34\xCB\x62\xF9" 22570 "\x6D\x04\x9B\x0F\xA6\x3D\xD4\x48" 22571 "\xDF\x76\x0D\x81\x18\xAF\x23\xBA" 22572 "\x51\xE8\x5C\xF3\x8A\x21\x95\x2C" 22573 "\xC3\x37\xCE\x65\xFC\x70\x07\x9E" 22574 "\x12\xA9\x40\xD7\x4B\xE2\x79\x10" 22575 "\x84\x1B\xB2\x26\xBD\x54\xEB\x5F" 22576 "\xF6\x8D\x01\x98\x2F\xC6\x3A\xD1" 22577 "\x68\xFF\x73\x0A\xA1\x15\xAC\x43" 22578 "\xDA\x4E\xE5\x7C\x13\x87\x1E\xB5" 22579 "\x29\xC0\x57\xEE\x62\xF9\x90\x04" 22580 "\x9B\x32\xC9\x3D\xD4\x6B\x02\x76" 22581 "\x0D\xA4\x18\xAF\x46\xDD\x51\xE8" 22582 "\x7F\x16\x8A\x21\xB8\x2C\xC3\x5A" 22583 "\xF1\x65\xFC\x93\x07\x9E\x35\xCC" 22584 "\x40\xD7\x6E\x05\x79\x10\xA7\x1B" 22585 "\xB2\x49\xE0\x54\xEB\x82\x19\x8D" 22586 "\x24\xBB\x2F\xC6\x5D\xF4\x68\xFF" 22587 "\x96\x0A\xA1\x38\xCF\x43\xDA\x71" 22588 "\x08\x7C\x13\xAA\x1E\xB5\x4C\xE3" 22589 "\x57\xEE\x85\x1C\x90\x27\xBE\x32" 22590 "\xC9\x60\xF7\x6B\x02\x99\x0D\xA4" 22591 "\x3B\xD2\x46\xDD\x74\x0B\x7F\x16" 22592 "\xAD\x21\xB8\x4F\xE6\x5A\xF1\x88" 22593 "\x1F\x93\x2A\xC1\x35\xCC\x63\xFA" 22594 "\x6E\x05\x9C\x10\xA7\x3E\xD5\x49" 22595 "\xE0\x77\x0E\x82\x19\xB0\x24\xBB" 22596 "\x52\xE9\x5D\xF4\x8B\x22\x96\x2D" 22597 "\xC4\x38\xCF\x66\xFD\x71\x08\x9F" 22598 "\x13\xAA\x41\xD8\x4C\xE3\x7A\x11" 22599 "\x85\x1C\xB3\x27\xBE\x55\xEC\x60" 22600 "\xF7\x8E\x02\x99\x30\xC7\x3B\xD2" 22601 "\x69\x00\x74\x0B\xA2\x16\xAD\x44" 22602 "\xDB\x4F\xE6\x7D\x14\x88\x1F\xB6" 22603 "\x2A\xC1\x58\xEF\x63\xFA\x91\x05" 22604 "\x9C\x33\xCA\x3E\xD5\x6C\x03\x77" 22605 "\x0E\xA5\x19\xB0\x47\xDE\x52\xE9" 22606 "\x80\x17\x8B\x22\xB9\x2D\xC4\x5B" 22607 "\xF2\x66\xFD\x94\x08\x9F\x36\xCD" 22608 "\x41\xD8\x6F\x06\x7A\x11\xA8\x1C" 22609 "\xB3\x4A\xE1\x55\xEC\x83\x1A\x8E" 22610 "\x25\xBC\x30\xC7\x5E\xF5\x69\x00" 22611 "\x97\x0B\xA2\x39\xD0\x44\xDB\x72" 22612 "\x09\x7D\x14\xAB\x1F\xB6\x4D\xE4" 22613 "\x58\xEF\x86\x1D\x91\x28\xBF\x33" 22614 "\xCA\x61\xF8\x6C\x03\x9A\x0E\xA5" 22615 "\x3C\xD3\x47\xDE\x75\x0C\x80\x17" 22616 "\xAE\x22\xB9\x50\xE7\x5B\xF2\x89" 22617 "\x20\x94\x2B\xC2\x36\xCD\x64\xFB" 22618 "\x6F\x06\x9D\x11\xA8\x3F\xD6\x4A" 22619 "\xE1\x78\x0F\x83\x1A\xB1\x25\xBC" 22620 "\x53\xEA\x5E\xF5\x8C\x00\x97\x2E" 22621 "\xC5\x39\xD0\x67\xFE\x72\x09\xA0" 22622 "\x14\xAB\x42\xD9\x4D\xE4\x7B\x12" 22623 "\x86\x1D\xB4\x28\xBF\x56\xED\x61" 22624 "\xF8\x8F\x03\x9A\x31\xC8\x3C\xD3" 22625 "\x6A\x01\x75\x0C\xA3\x17\xAE\x45" 22626 "\xDC\x50\xE7\x7E\x15\x89\x20\xB7", 22627 .ctext = "\x8D\xFC\x81\x9C\xCB\xAA\x5A\x1C" 22628 "\x7E\x95\xCF\x40\xAB\x4D\x6F\xEA" 22629 "\xD3\xD9\xB0\x9A\xB7\xC7\xE0\x2E" 22630 "\xD1\x39\x34\x92\x8F\xFA\x14\xF1" 22631 "\xD5\xD2\x7B\x59\x1F\x35\x28\xC2" 22632 "\x20\xD9\x42\x06\xC9\x0B\x10\x04" 22633 "\xF8\x79\xCD\x32\x86\x75\x4C\xB6" 22634 "\x7B\x1C\x52\xB1\x91\x64\x22\x4B" 22635 "\x13\xC7\xAE\x98\x0E\xB5\xCF\x6F" 22636 "\x3F\xF4\x43\x96\x73\x0D\xA2\x05" 22637 "\xDB\xFD\x28\x90\x2C\x56\xB9\x37" 22638 "\x5B\x69\x0C\xAD\x84\x67\xFF\x15" 22639 "\x4A\xD4\xA7\xD3\xDD\x99\x47\x3A" 22640 "\xED\x34\x35\x78\x6B\x91\xC9\x32" 22641 "\xE1\xBF\xBC\xB4\x04\x85\x6A\x39" 22642 "\xC0\xBA\x51\xD0\x0F\x4E\xD1\xE2" 22643 "\x1C\xFD\x0E\x05\x07\xF4\x10\xED" 22644 "\xA2\x17\xFF\xF5\x64\xC6\x1A\x22" 22645 "\xAD\x78\xE7\xD7\x11\xE9\x99\xB9" 22646 "\xAA\xEC\x6F\xF8\x3B\xBF\xCE\x77" 22647 "\x93\xE8\xAD\x1D\x50\x6C\xAE\xBC" 22648 "\xBA\x5C\x80\xD1\x91\x65\x51\x1B" 22649 "\xE8\x0A\xCD\x99\x96\x71\x3D\xB6" 22650 "\x78\x75\x37\x55\xC1\xF5\x90\x40" 22651 "\x34\xF4\x7E\xC8\xCC\x3A\x5F\x6E" 22652 "\x36\xA1\xA1\xC2\x3A\x72\x42\x8E" 22653 "\x0E\x37\x88\xE8\xCE\x83\xCB\xAD" 22654 "\xE0\x69\x77\x50\xC7\x0C\x99\xCA" 22655 "\x19\x5B\x30\x25\x9A\xEF\x9B\x0C" 22656 "\xEF\x8F\x74\x4C\xCF\x49\x4E\xB9" 22657 "\xC5\xAE\x9E\x2E\x78\x9A\xB9\x48" 22658 "\xD5\x81\xE4\x37\x1D\xBF\x27\xD9" 22659 "\xC5\xD6\x65\x43\x45\x8C\xBB\xB6" 22660 "\x55\xF4\x06\xBB\x49\x53\x8B\x1B" 22661 "\x07\xA9\x96\x69\x5B\xCB\x0F\xBC" 22662 "\x93\x85\x90\x0F\x0A\x68\x40\x2A" 22663 "\x95\xED\x2D\x88\xBF\x71\xD0\xBB" 22664 "\xEC\xB0\x77\x6C\x79\xFC\x3C\x05" 22665 "\x49\x3F\xB8\x24\xEF\x8E\x09\xA2" 22666 "\x1D\xEF\x92\x02\x96\xD4\x7F\xC8" 22667 "\x03\xB2\xCA\xDB\x17\x5C\x52\xCF" 22668 "\xDD\x70\x37\x63\xAA\xA5\x83\x20" 22669 "\x52\x02\xF6\xB9\xE7\x6E\x0A\xB6" 22670 "\x79\x03\xA0\xDA\xA3\x79\x21\xBD" 22671 "\xE3\x37\x3A\xC0\xF7\x2C\x32\xBE" 22672 "\x8B\xE8\xA6\x00\xC7\x32\xD5\x06" 22673 "\xBB\xE3\xAB\x06\x21\x82\xB8\x32" 22674 "\x31\x34\x2A\xA7\x1F\x64\x99\xBF" 22675 "\xFA\xDA\x3D\x75\xF7\x48\xD5\x48" 22676 "\x4B\x52\x7E\xF6\x7C\xAB\x67\x59" 22677 "\xC5\xDC\xA8\xC6\x63\x85\x4A\xDF" 22678 "\xF0\x40\x5F\xCF\xE3\x58\x52\x67" 22679 "\x7A\x24\x32\xC5\xEC\x9E\xA9\x6F" 22680 "\x58\x56\xDD\x94\x1F\x71\x8D\xF4" 22681 "\x6E\xFF\x2C\xA7\xA5\xD8\xBA\xAF" 22682 "\x1D\x8B\xA2\x46\xB5\xC4\x9F\x57" 22683 "\x8D\xD8\xB3\x3C\x02\x0D\xBB\x84" 22684 "\xC7\xBD\xB4\x9A\x6E\xBB\xB1\x37" 22685 "\x95\x79\xC4\xA7\xEA\x1D\xDC\x33" 22686 "\x5D\x0B\x3F\x03\x8F\x30\xF9\xAE" 22687 "\x4F\xFE\x24\x9C\x9A\x02\xE5\x57" 22688 "\xF5\xBC\x25\xD6\x02\x56\x57\x1C", 22689 .len = 496, 22690 }, 22691 }; 22692 22693 static const struct cipher_testvec cast5_cbc_tv_template[] = { 22694 { /* Generated from TF test vectors */ 22695 .key = "\x85\x62\x3F\x1C\xF9\xD6\x1C\xF9" 22696 "\xD6\xB3\x90\x6D\x4A\x90\x6D\x4A", 22697 .klen = 16, 22698 .iv = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F", 22699 .iv_out = "\x1D\x18\x66\x44\x5B\x8F\x14\xEB", 22700 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 22701 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 22702 "\x3A\xD1\x45\xDC\x73\x0A\x7E\x15" 22703 "\xAC\x20\xB7\x4E\xE5\x59\xF0\x87" 22704 "\x1E\x92\x29\xC0\x34\xCB\x62\xF9" 22705 "\x6D\x04\x9B\x0F\xA6\x3D\xD4\x48" 22706 "\xDF\x76\x0D\x81\x18\xAF\x23\xBA" 22707 "\x51\xE8\x5C\xF3\x8A\x21\x95\x2C" 22708 "\xC3\x37\xCE\x65\xFC\x70\x07\x9E" 22709 "\x12\xA9\x40\xD7\x4B\xE2\x79\x10" 22710 "\x84\x1B\xB2\x26\xBD\x54\xEB\x5F" 22711 "\xF6\x8D\x01\x98\x2F\xC6\x3A\xD1" 22712 "\x68\xFF\x73\x0A\xA1\x15\xAC\x43" 22713 "\xDA\x4E\xE5\x7C\x13\x87\x1E\xB5" 22714 "\x29\xC0\x57\xEE\x62\xF9\x90\x04" 22715 "\x9B\x32\xC9\x3D\xD4\x6B\x02\x76" 22716 "\x0D\xA4\x18\xAF\x46\xDD\x51\xE8" 22717 "\x7F\x16\x8A\x21\xB8\x2C\xC3\x5A" 22718 "\xF1\x65\xFC\x93\x07\x9E\x35\xCC" 22719 "\x40\xD7\x6E\x05\x79\x10\xA7\x1B" 22720 "\xB2\x49\xE0\x54\xEB\x82\x19\x8D" 22721 "\x24\xBB\x2F\xC6\x5D\xF4\x68\xFF" 22722 "\x96\x0A\xA1\x38\xCF\x43\xDA\x71" 22723 "\x08\x7C\x13\xAA\x1E\xB5\x4C\xE3" 22724 "\x57\xEE\x85\x1C\x90\x27\xBE\x32" 22725 "\xC9\x60\xF7\x6B\x02\x99\x0D\xA4" 22726 "\x3B\xD2\x46\xDD\x74\x0B\x7F\x16" 22727 "\xAD\x21\xB8\x4F\xE6\x5A\xF1\x88" 22728 "\x1F\x93\x2A\xC1\x35\xCC\x63\xFA" 22729 "\x6E\x05\x9C\x10\xA7\x3E\xD5\x49" 22730 "\xE0\x77\x0E\x82\x19\xB0\x24\xBB" 22731 "\x52\xE9\x5D\xF4\x8B\x22\x96\x2D" 22732 "\xC4\x38\xCF\x66\xFD\x71\x08\x9F" 22733 "\x13\xAA\x41\xD8\x4C\xE3\x7A\x11" 22734 "\x85\x1C\xB3\x27\xBE\x55\xEC\x60" 22735 "\xF7\x8E\x02\x99\x30\xC7\x3B\xD2" 22736 "\x69\x00\x74\x0B\xA2\x16\xAD\x44" 22737 "\xDB\x4F\xE6\x7D\x14\x88\x1F\xB6" 22738 "\x2A\xC1\x58\xEF\x63\xFA\x91\x05" 22739 "\x9C\x33\xCA\x3E\xD5\x6C\x03\x77" 22740 "\x0E\xA5\x19\xB0\x47\xDE\x52\xE9" 22741 "\x80\x17\x8B\x22\xB9\x2D\xC4\x5B" 22742 "\xF2\x66\xFD\x94\x08\x9F\x36\xCD" 22743 "\x41\xD8\x6F\x06\x7A\x11\xA8\x1C" 22744 "\xB3\x4A\xE1\x55\xEC\x83\x1A\x8E" 22745 "\x25\xBC\x30\xC7\x5E\xF5\x69\x00" 22746 "\x97\x0B\xA2\x39\xD0\x44\xDB\x72" 22747 "\x09\x7D\x14\xAB\x1F\xB6\x4D\xE4" 22748 "\x58\xEF\x86\x1D\x91\x28\xBF\x33" 22749 "\xCA\x61\xF8\x6C\x03\x9A\x0E\xA5" 22750 "\x3C\xD3\x47\xDE\x75\x0C\x80\x17" 22751 "\xAE\x22\xB9\x50\xE7\x5B\xF2\x89" 22752 "\x20\x94\x2B\xC2\x36\xCD\x64\xFB" 22753 "\x6F\x06\x9D\x11\xA8\x3F\xD6\x4A" 22754 "\xE1\x78\x0F\x83\x1A\xB1\x25\xBC" 22755 "\x53\xEA\x5E\xF5\x8C\x00\x97\x2E" 22756 "\xC5\x39\xD0\x67\xFE\x72\x09\xA0" 22757 "\x14\xAB\x42\xD9\x4D\xE4\x7B\x12" 22758 "\x86\x1D\xB4\x28\xBF\x56\xED\x61" 22759 "\xF8\x8F\x03\x9A\x31\xC8\x3C\xD3" 22760 "\x6A\x01\x75\x0C\xA3\x17\xAE\x45" 22761 "\xDC\x50\xE7\x7E\x15\x89\x20\xB7", 22762 .ctext = "\x05\x28\xCE\x61\x90\x80\xE1\x78" 22763 "\xB9\x2A\x97\x7C\xB0\x83\xD8\x1A" 22764 "\xDE\x58\x7F\xD7\xFD\x72\xB8\xFB" 22765 "\xDA\xF0\x6E\x77\x14\x47\x82\xBA" 22766 "\x29\x0E\x25\x6E\xB4\x39\xD9\x7F" 22767 "\x05\xA7\xA7\x3A\xC1\x5D\x9E\x39" 22768 "\xA7\xFB\x0D\x05\x00\xF3\x58\x67" 22769 "\x60\xEC\x73\x77\x46\x85\x9B\x6A" 22770 "\x08\x3E\xBE\x59\xFB\xE4\x96\x34" 22771 "\xB4\x05\x49\x1A\x97\x43\xAD\xA0" 22772 "\xA9\x1E\x6E\x74\xF1\x94\xEC\xA8" 22773 "\xB5\x8A\x20\xEA\x89\x6B\x19\xAA" 22774 "\xA7\xF1\x33\x67\x90\x23\x0D\xEE" 22775 "\x81\xD5\x78\x4F\xD3\x63\xEA\x46" 22776 "\xB5\xB2\x6E\xBB\xCA\x76\x06\x10" 22777 "\x96\x2A\x0A\xBA\xF9\x41\x5A\x1D" 22778 "\x36\x7C\x56\x14\x54\x83\xFA\xA1" 22779 "\x27\xDD\xBA\x8A\x90\x29\xD6\xA6" 22780 "\xFA\x48\x3E\x1E\x23\x6E\x98\xA8" 22781 "\xA7\xD9\x67\x92\x5C\x13\xB4\x71" 22782 "\xA8\xAA\x89\x4A\xA4\xB3\x49\x7C" 22783 "\x7D\x7F\xCE\x6F\x29\x2E\x7E\x37" 22784 "\xC8\x52\x60\xD9\xE7\xCA\x60\x98" 22785 "\xED\xCD\xE8\x60\x83\xAD\x34\x4D" 22786 "\x96\x4A\x99\x2B\xB7\x14\x75\x66" 22787 "\x6C\x2C\x1A\xBA\x4B\xBB\x49\x56" 22788 "\xE1\x86\xA2\x0E\xD0\xF0\x07\xD3" 22789 "\x18\x38\x09\x9C\x0E\x8B\x86\x07" 22790 "\x90\x12\x37\x49\x27\x98\x69\x18" 22791 "\xB0\xCC\xFB\xD3\xBD\x04\xA0\x85" 22792 "\x4B\x22\x97\x07\xB6\x97\xE9\x95" 22793 "\x0F\x88\x36\xA9\x44\x00\xC6\xE9" 22794 "\x27\x53\x5C\x5B\x1F\xD3\xE2\xEE" 22795 "\xD0\xCD\x63\x30\xA9\xC0\xDD\x49" 22796 "\xFE\x16\xA4\x07\x0D\xE2\x5D\x97" 22797 "\xDE\x89\xBA\x2E\xF3\xA9\x5E\xBE" 22798 "\x03\x55\x0E\x02\x41\x4A\x45\x06" 22799 "\xBE\xEA\x32\xF2\xDC\x91\x5C\x20" 22800 "\x94\x02\x30\xD2\xFC\x29\xFA\x8E" 22801 "\x34\xA0\x31\xB8\x34\xBA\xAE\x54" 22802 "\xB5\x88\x1F\xDC\x43\xDC\x22\x9F" 22803 "\xDC\xCE\xD3\xFA\xA4\xA8\xBC\x8A" 22804 "\xC7\x5A\x43\x21\xA5\xB1\xDB\xC3" 22805 "\x84\x3B\xB4\x9B\xB5\xA7\xF1\x0A" 22806 "\xB6\x37\x21\x19\x55\xC2\xBD\x99" 22807 "\x49\x24\xBB\x7C\xB3\x8E\xEF\xD2" 22808 "\x3A\xCF\xA0\x31\x28\x0E\x25\xA2" 22809 "\x11\xB4\x18\x17\x1A\x65\x92\x56" 22810 "\xE8\xE0\x52\x9C\x61\x18\x2A\xB1" 22811 "\x1A\x01\x22\x45\x17\x62\x52\x6C" 22812 "\x91\x44\xCF\x98\xC7\xC0\x79\x26" 22813 "\x32\x66\x6F\x23\x7F\x94\x36\x88" 22814 "\x3C\xC9\xD0\xB7\x45\x30\x31\x86" 22815 "\x3D\xC6\xA3\x98\x62\x84\x1A\x8B" 22816 "\x16\x88\xC7\xA3\xE9\x4F\xE0\x86" 22817 "\xA4\x93\xA8\x34\x5A\xCA\xDF\xCA" 22818 "\x46\x38\xD2\xF4\xE0\x2D\x1E\xC9" 22819 "\x7C\xEF\x53\xB7\x60\x72\x41\xBF" 22820 "\x29\x00\x87\x02\xAF\x44\x4C\xB7" 22821 "\x8C\xF5\x3F\x19\xF4\x80\x45\xA7" 22822 "\x15\x5F\xDB\xE9\xB1\x83\xD2\xE6" 22823 "\x1D\x18\x66\x44\x5B\x8F\x14\xEB", 22824 .len = 496, 22825 }, 22826 }; 22827 22828 static const struct cipher_testvec cast5_ctr_tv_template[] = { 22829 { /* Generated from TF test vectors */ 22830 .key = "\x85\x62\x3F\x1C\xF9\xD6\x1C\xF9" 22831 "\xD6\xB3\x90\x6D\x4A\x90\x6D\x4A", 22832 .klen = 16, 22833 .iv = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F", 22834 .iv_out = "\xE2\x24\x89\xEE\x53\xB8\x1D\x62", 22835 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 22836 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 22837 "\x3A", 22838 .ctext = "\xFF\xC4\x2E\x82\x3D\xF8\xA8\x39" 22839 "\x7C\x52\xC4\xD3\xBB\x62\xC6\xA8" 22840 "\x0C", 22841 .len = 17, 22842 }, { /* Generated from TF test vectors */ 22843 .key = "\x85\x62\x3F\x1C\xF9\xD6\x1C\xF9" 22844 "\xD6\xB3\x90\x6D\x4A\x90\x6D\x4A", 22845 .klen = 16, 22846 .iv = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F", 22847 .iv_out = "\xE2\x24\x89\xEE\x53\xB8\x1D\x9D", 22848 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 22849 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 22850 "\x3A\xD1\x45\xDC\x73\x0A\x7E\x15" 22851 "\xAC\x20\xB7\x4E\xE5\x59\xF0\x87" 22852 "\x1E\x92\x29\xC0\x34\xCB\x62\xF9" 22853 "\x6D\x04\x9B\x0F\xA6\x3D\xD4\x48" 22854 "\xDF\x76\x0D\x81\x18\xAF\x23\xBA" 22855 "\x51\xE8\x5C\xF3\x8A\x21\x95\x2C" 22856 "\xC3\x37\xCE\x65\xFC\x70\x07\x9E" 22857 "\x12\xA9\x40\xD7\x4B\xE2\x79\x10" 22858 "\x84\x1B\xB2\x26\xBD\x54\xEB\x5F" 22859 "\xF6\x8D\x01\x98\x2F\xC6\x3A\xD1" 22860 "\x68\xFF\x73\x0A\xA1\x15\xAC\x43" 22861 "\xDA\x4E\xE5\x7C\x13\x87\x1E\xB5" 22862 "\x29\xC0\x57\xEE\x62\xF9\x90\x04" 22863 "\x9B\x32\xC9\x3D\xD4\x6B\x02\x76" 22864 "\x0D\xA4\x18\xAF\x46\xDD\x51\xE8" 22865 "\x7F\x16\x8A\x21\xB8\x2C\xC3\x5A" 22866 "\xF1\x65\xFC\x93\x07\x9E\x35\xCC" 22867 "\x40\xD7\x6E\x05\x79\x10\xA7\x1B" 22868 "\xB2\x49\xE0\x54\xEB\x82\x19\x8D" 22869 "\x24\xBB\x2F\xC6\x5D\xF4\x68\xFF" 22870 "\x96\x0A\xA1\x38\xCF\x43\xDA\x71" 22871 "\x08\x7C\x13\xAA\x1E\xB5\x4C\xE3" 22872 "\x57\xEE\x85\x1C\x90\x27\xBE\x32" 22873 "\xC9\x60\xF7\x6B\x02\x99\x0D\xA4" 22874 "\x3B\xD2\x46\xDD\x74\x0B\x7F\x16" 22875 "\xAD\x21\xB8\x4F\xE6\x5A\xF1\x88" 22876 "\x1F\x93\x2A\xC1\x35\xCC\x63\xFA" 22877 "\x6E\x05\x9C\x10\xA7\x3E\xD5\x49" 22878 "\xE0\x77\x0E\x82\x19\xB0\x24\xBB" 22879 "\x52\xE9\x5D\xF4\x8B\x22\x96\x2D" 22880 "\xC4\x38\xCF\x66\xFD\x71\x08\x9F" 22881 "\x13\xAA\x41\xD8\x4C\xE3\x7A\x11" 22882 "\x85\x1C\xB3\x27\xBE\x55\xEC\x60" 22883 "\xF7\x8E\x02\x99\x30\xC7\x3B\xD2" 22884 "\x69\x00\x74\x0B\xA2\x16\xAD\x44" 22885 "\xDB\x4F\xE6\x7D\x14\x88\x1F\xB6" 22886 "\x2A\xC1\x58\xEF\x63\xFA\x91\x05" 22887 "\x9C\x33\xCA\x3E\xD5\x6C\x03\x77" 22888 "\x0E\xA5\x19\xB0\x47\xDE\x52\xE9" 22889 "\x80\x17\x8B\x22\xB9\x2D\xC4\x5B" 22890 "\xF2\x66\xFD\x94\x08\x9F\x36\xCD" 22891 "\x41\xD8\x6F\x06\x7A\x11\xA8\x1C" 22892 "\xB3\x4A\xE1\x55\xEC\x83\x1A\x8E" 22893 "\x25\xBC\x30\xC7\x5E\xF5\x69\x00" 22894 "\x97\x0B\xA2\x39\xD0\x44\xDB\x72" 22895 "\x09\x7D\x14\xAB\x1F\xB6\x4D\xE4" 22896 "\x58\xEF\x86\x1D\x91\x28\xBF\x33" 22897 "\xCA\x61\xF8\x6C\x03\x9A\x0E\xA5" 22898 "\x3C\xD3\x47\xDE\x75\x0C\x80\x17" 22899 "\xAE\x22\xB9\x50\xE7\x5B\xF2\x89" 22900 "\x20\x94\x2B\xC2\x36\xCD\x64\xFB" 22901 "\x6F\x06\x9D\x11\xA8\x3F\xD6\x4A" 22902 "\xE1\x78\x0F\x83\x1A\xB1\x25\xBC" 22903 "\x53\xEA\x5E\xF5\x8C\x00\x97\x2E" 22904 "\xC5\x39\xD0\x67\xFE\x72\x09\xA0" 22905 "\x14\xAB\x42\xD9\x4D\xE4\x7B\x12" 22906 "\x86\x1D\xB4\x28\xBF\x56\xED\x61" 22907 "\xF8\x8F\x03\x9A\x31\xC8\x3C\xD3" 22908 "\x6A\x01\x75\x0C\xA3\x17\xAE\x45" 22909 "\xDC\x50\xE7\x7E\x15\x89\x20\xB7", 22910 .ctext = "\xFF\xC4\x2E\x82\x3D\xF8\xA8\x39" 22911 "\x7C\x52\xC4\xD3\xBB\x62\xC6\xA8" 22912 "\x0C\x63\xA5\x55\xE3\xF8\x1C\x7F" 22913 "\xDC\x59\xF9\xA0\x52\xAD\x83\xDF" 22914 "\xD5\x3B\x53\x4A\xAA\x1F\x49\x44" 22915 "\xE8\x20\xCC\xF8\x97\xE6\xE0\x3C" 22916 "\x5A\xD2\x83\xEC\xEE\x25\x3F\xCF" 22917 "\x0D\xC2\x79\x80\x99\x6E\xFF\x7B" 22918 "\x64\xB0\x7B\x86\x29\x1D\x9F\x17" 22919 "\x10\xA5\xA5\xEB\x16\x55\x9E\xE3" 22920 "\x88\x18\x52\x56\x48\x58\xD1\x6B" 22921 "\xE8\x74\x6E\x48\xB0\x2E\x69\x63" 22922 "\x32\xAA\xAC\x26\x55\x45\x94\xDE" 22923 "\x30\x26\x26\xE6\x08\x82\x2F\x5F" 22924 "\xA7\x15\x94\x07\x75\x2D\xC6\x3A" 22925 "\x1B\xA0\x39\xFB\xBA\xB9\x06\x56" 22926 "\xF6\x9F\xF1\x2F\x9B\xF3\x89\x8B" 22927 "\x08\xC8\x9D\x5E\x6B\x95\x09\xC7" 22928 "\x98\xB7\x62\xA4\x1D\x25\xFA\xC5" 22929 "\x62\xC8\x5D\x6B\xB4\x85\x88\x7F" 22930 "\x3B\x29\xF9\xB4\x32\x62\x69\xBF" 22931 "\x32\xB8\xEB\xFD\x0E\x26\xAA\xA3" 22932 "\x44\x67\x90\x20\xAC\x41\xDF\x43" 22933 "\xC6\xC7\x19\x9F\x2C\x28\x74\xEB" 22934 "\x3E\x7F\x7A\x80\x5B\xE4\x08\x60" 22935 "\xC7\xC9\x71\x34\x44\xCE\x05\xFD" 22936 "\xA8\x91\xA8\x44\x5E\xD3\x89\x2C" 22937 "\xAE\x59\x0F\x07\x88\x79\x53\x26" 22938 "\xAF\xAC\xCB\x1D\x6F\x08\x25\x62" 22939 "\xD0\x82\x65\x66\xE4\x2A\x29\x1C" 22940 "\x9C\x64\x5F\x49\x9D\xF8\x62\xF9" 22941 "\xED\xC4\x13\x52\x75\xDC\xE4\xF9" 22942 "\x68\x0F\x8A\xCD\xA6\x8D\x75\xAA" 22943 "\x49\xA1\x86\x86\x37\x5C\x6B\x3D" 22944 "\x56\xE5\x6F\xBE\x27\xC0\x10\xF8" 22945 "\x3C\x4D\x17\x35\x14\xDC\x1C\xA0" 22946 "\x6E\xAE\xD1\x10\xDD\x83\x06\xC2" 22947 "\x23\xD3\xC7\x27\x15\x04\x2C\x27" 22948 "\xDD\x1F\x2E\x97\x09\x9C\x33\x7D" 22949 "\xAC\x50\x1B\x2E\xC9\x52\x0C\x14" 22950 "\x4B\x78\xC4\xDE\x07\x6A\x12\x02" 22951 "\x6E\xD7\x4B\x91\xB9\x88\x4D\x02" 22952 "\xC3\xB5\x04\xBC\xE0\x67\xCA\x18" 22953 "\x22\xA1\xAE\x9A\x21\xEF\xB2\x06" 22954 "\x35\xCD\xEC\x37\x70\x2D\xFC\x1E" 22955 "\xA8\x31\xE7\xFC\xE5\x8E\x88\x66" 22956 "\x16\xB5\xC8\x45\x21\x37\xBD\x24" 22957 "\xA9\xD5\x36\x12\x9F\x6E\x67\x80" 22958 "\x87\x54\xD5\xAF\x97\xE1\x15\xA7" 22959 "\x11\xF0\x63\x7B\xE1\x44\x14\x1C" 22960 "\x06\x32\x05\x8C\x6C\xDB\x9B\x36" 22961 "\x6A\x6B\xAD\x3A\x27\x55\x20\x4C" 22962 "\x76\x36\x43\xE8\x16\x60\xB5\xF3" 22963 "\xDF\x5A\xC6\xA5\x69\x78\x59\x51" 22964 "\x54\x68\x65\x06\x84\xDE\x3D\xAE" 22965 "\x38\x91\xBD\xCC\xA2\x8A\xEC\xE6" 22966 "\x9E\x83\xAE\x1E\x8E\x34\x5D\xDE" 22967 "\x91\xCE\x8F\xED\x40\xF7\xC8\x8B" 22968 "\x9A\x13\x4C\xAD\x89\x97\x9E\xD1" 22969 "\x91\x01\xD7\x21\x23\x28\x1E\xCC" 22970 "\x8C\x98\xDB\xDE\xFC\x72\x94\xAA" 22971 "\xC0\x0D\x96\xAA\x23\xF8\xFE\x13", 22972 .len = 496, 22973 }, 22974 }; 22975 22976 /* 22977 * ARC4 test vectors from OpenSSL 22978 */ 22979 static const struct cipher_testvec arc4_tv_template[] = { 22980 { 22981 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 22982 .klen = 8, 22983 .ptext = "\x01\x23\x45\x67\x89\xab\xcd\xef", 22984 .ctext = "\x75\xb7\x87\x80\x99\xe0\xc5\x96", 22985 .len = 8, 22986 }, { 22987 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 22988 .klen = 8, 22989 .ptext = "\x00\x00\x00\x00\x00\x00\x00\x00", 22990 .ctext = "\x74\x94\xc2\xe7\x10\x4b\x08\x79", 22991 .len = 8, 22992 }, { 22993 .key = "\x00\x00\x00\x00\x00\x00\x00\x00", 22994 .klen = 8, 22995 .ptext = "\x00\x00\x00\x00\x00\x00\x00\x00", 22996 .ctext = "\xde\x18\x89\x41\xa3\x37\x5d\x3a", 22997 .len = 8, 22998 }, { 22999 .key = "\xef\x01\x23\x45", 23000 .klen = 4, 23001 .ptext = "\x00\x00\x00\x00\x00\x00\x00\x00" 23002 "\x00\x00\x00\x00\x00\x00\x00\x00" 23003 "\x00\x00\x00\x00", 23004 .ctext = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf" 23005 "\xbd\x61\x5a\x11\x62\xe1\xc7\xba" 23006 "\x36\xb6\x78\x58", 23007 .len = 20, 23008 }, { 23009 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 23010 .klen = 8, 23011 .ptext = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0" 23012 "\x12\x34\x56\x78\x9A\xBC\xDE\xF0" 23013 "\x12\x34\x56\x78\x9A\xBC\xDE\xF0" 23014 "\x12\x34\x56\x78", 23015 .ctext = "\x66\xa0\x94\x9f\x8a\xf7\xd6\x89" 23016 "\x1f\x7f\x83\x2b\xa8\x33\xc0\x0c" 23017 "\x89\x2e\xbe\x30\x14\x3c\xe2\x87" 23018 "\x40\x01\x1e\xcf", 23019 .len = 28, 23020 }, { 23021 .key = "\xef\x01\x23\x45", 23022 .klen = 4, 23023 .ptext = "\x00\x00\x00\x00\x00\x00\x00\x00" 23024 "\x00\x00", 23025 .ctext = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf" 23026 "\xbd\x61", 23027 .len = 10, 23028 }, { 23029 .key = "\x01\x23\x45\x67\x89\xAB\xCD\xEF" 23030 "\x00\x00\x00\x00\x00\x00\x00\x00", 23031 .klen = 16, 23032 .ptext = "\x01\x23\x45\x67\x89\xAB\xCD\xEF", 23033 .ctext = "\x69\x72\x36\x59\x1B\x52\x42\xB1", 23034 .len = 8, 23035 }, 23036 }; 23037 23038 /* 23039 * TEA test vectors 23040 */ 23041 static const struct cipher_testvec tea_tv_template[] = { 23042 { 23043 .key = zeroed_string, 23044 .klen = 16, 23045 .ptext = zeroed_string, 23046 .ctext = "\x0a\x3a\xea\x41\x40\xa9\xba\x94", 23047 .len = 8, 23048 }, { 23049 .key = "\x2b\x02\x05\x68\x06\x14\x49\x76" 23050 "\x77\x5d\x0e\x26\x6c\x28\x78\x43", 23051 .klen = 16, 23052 .ptext = "\x74\x65\x73\x74\x20\x6d\x65\x2e", 23053 .ctext = "\x77\x5d\x2a\x6a\xf6\xce\x92\x09", 23054 .len = 8, 23055 }, { 23056 .key = "\x09\x65\x43\x11\x66\x44\x39\x25" 23057 "\x51\x3a\x16\x10\x0a\x08\x12\x6e", 23058 .klen = 16, 23059 .ptext = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74" 23060 "\x65\x73\x74\x5f\x76\x65\x63\x74", 23061 .ctext = "\xbe\x7a\xbb\x81\x95\x2d\x1f\x1e" 23062 "\xdd\x89\xa1\x25\x04\x21\xdf\x95", 23063 .len = 16, 23064 }, { 23065 .key = "\x4d\x76\x32\x17\x05\x3f\x75\x2c" 23066 "\x5d\x04\x16\x36\x15\x72\x63\x2f", 23067 .klen = 16, 23068 .ptext = "\x54\x65\x61\x20\x69\x73\x20\x67" 23069 "\x6f\x6f\x64\x20\x66\x6f\x72\x20" 23070 "\x79\x6f\x75\x21\x21\x21\x20\x72" 23071 "\x65\x61\x6c\x6c\x79\x21\x21\x21", 23072 .ctext = "\xe0\x4d\x5d\x3c\xb7\x8c\x36\x47" 23073 "\x94\x18\x95\x91\xa9\xfc\x49\xf8" 23074 "\x44\xd1\x2d\xc2\x99\xb8\x08\x2a" 23075 "\x07\x89\x73\xc2\x45\x92\xc6\x90", 23076 .len = 32, 23077 } 23078 }; 23079 23080 /* 23081 * XTEA test vectors 23082 */ 23083 static const struct cipher_testvec xtea_tv_template[] = { 23084 { 23085 .key = zeroed_string, 23086 .klen = 16, 23087 .ptext = zeroed_string, 23088 .ctext = "\xd8\xd4\xe9\xde\xd9\x1e\x13\xf7", 23089 .len = 8, 23090 }, { 23091 .key = "\x2b\x02\x05\x68\x06\x14\x49\x76" 23092 "\x77\x5d\x0e\x26\x6c\x28\x78\x43", 23093 .klen = 16, 23094 .ptext = "\x74\x65\x73\x74\x20\x6d\x65\x2e", 23095 .ctext = "\x94\xeb\xc8\x96\x84\x6a\x49\xa8", 23096 .len = 8, 23097 }, { 23098 .key = "\x09\x65\x43\x11\x66\x44\x39\x25" 23099 "\x51\x3a\x16\x10\x0a\x08\x12\x6e", 23100 .klen = 16, 23101 .ptext = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74" 23102 "\x65\x73\x74\x5f\x76\x65\x63\x74", 23103 .ctext = "\x3e\xce\xae\x22\x60\x56\xa8\x9d" 23104 "\x77\x4d\xd4\xb4\x87\x24\xe3\x9a", 23105 .len = 16, 23106 }, { 23107 .key = "\x4d\x76\x32\x17\x05\x3f\x75\x2c" 23108 "\x5d\x04\x16\x36\x15\x72\x63\x2f", 23109 .klen = 16, 23110 .ptext = "\x54\x65\x61\x20\x69\x73\x20\x67" 23111 "\x6f\x6f\x64\x20\x66\x6f\x72\x20" 23112 "\x79\x6f\x75\x21\x21\x21\x20\x72" 23113 "\x65\x61\x6c\x6c\x79\x21\x21\x21", 23114 .ctext = "\x99\x81\x9f\x5d\x6f\x4b\x31\x3a" 23115 "\x86\xff\x6f\xd0\xe3\x87\x70\x07" 23116 "\x4d\xb8\xcf\xf3\x99\x50\xb3\xd4" 23117 "\x73\xa2\xfa\xc9\x16\x59\x5d\x81", 23118 .len = 32, 23119 } 23120 }; 23121 23122 /* 23123 * KHAZAD test vectors. 23124 */ 23125 static const struct cipher_testvec khazad_tv_template[] = { 23126 { 23127 .key = "\x80\x00\x00\x00\x00\x00\x00\x00" 23128 "\x00\x00\x00\x00\x00\x00\x00\x00", 23129 .klen = 16, 23130 .ptext = "\x00\x00\x00\x00\x00\x00\x00\x00", 23131 .ctext = "\x49\xa4\xce\x32\xac\x19\x0e\x3f", 23132 .len = 8, 23133 }, { 23134 .key = "\x38\x38\x38\x38\x38\x38\x38\x38" 23135 "\x38\x38\x38\x38\x38\x38\x38\x38", 23136 .klen = 16, 23137 .ptext = "\x38\x38\x38\x38\x38\x38\x38\x38", 23138 .ctext = "\x7e\x82\x12\xa1\xd9\x5b\xe4\xf9", 23139 .len = 8, 23140 }, { 23141 .key = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2" 23142 "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2", 23143 .klen = 16, 23144 .ptext = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2", 23145 .ctext = "\xaa\xbe\xc1\x95\xc5\x94\x1a\x9c", 23146 .len = 8, 23147 }, { 23148 .key = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f" 23149 "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f", 23150 .klen = 16, 23151 .ptext = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f", 23152 .ctext = "\x04\x74\xf5\x70\x50\x16\xd3\xb8", 23153 .len = 8, 23154 }, { 23155 .key = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f" 23156 "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f", 23157 .klen = 16, 23158 .ptext = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f" 23159 "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f", 23160 .ctext = "\x04\x74\xf5\x70\x50\x16\xd3\xb8" 23161 "\x04\x74\xf5\x70\x50\x16\xd3\xb8", 23162 .len = 16, 23163 }, 23164 }; 23165 23166 /* 23167 * Anubis test vectors. 23168 */ 23169 23170 static const struct cipher_testvec anubis_tv_template[] = { 23171 { 23172 .key = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 23173 "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe", 23174 .klen = 16, 23175 .ptext = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 23176 "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe", 23177 .ctext = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f" 23178 "\x08\xb7\x52\x8e\x6e\x6e\x86\x90", 23179 .len = 16, 23180 }, { 23181 23182 .key = "\x03\x03\x03\x03\x03\x03\x03\x03" 23183 "\x03\x03\x03\x03\x03\x03\x03\x03" 23184 "\x03\x03\x03\x03", 23185 .klen = 20, 23186 .ptext = "\x03\x03\x03\x03\x03\x03\x03\x03" 23187 "\x03\x03\x03\x03\x03\x03\x03\x03", 23188 .ctext = "\xdb\xf1\x42\xf4\xd1\x8a\xc7\x49" 23189 "\x87\x41\x6f\x82\x0a\x98\x64\xae", 23190 .len = 16, 23191 }, { 23192 .key = "\x24\x24\x24\x24\x24\x24\x24\x24" 23193 "\x24\x24\x24\x24\x24\x24\x24\x24" 23194 "\x24\x24\x24\x24\x24\x24\x24\x24" 23195 "\x24\x24\x24\x24", 23196 .klen = 28, 23197 .ptext = "\x24\x24\x24\x24\x24\x24\x24\x24" 23198 "\x24\x24\x24\x24\x24\x24\x24\x24", 23199 .ctext = "\xfd\x1b\x4a\xe3\xbf\xf0\xad\x3d" 23200 "\x06\xd3\x61\x27\xfd\x13\x9e\xde", 23201 .len = 16, 23202 }, { 23203 .key = "\x25\x25\x25\x25\x25\x25\x25\x25" 23204 "\x25\x25\x25\x25\x25\x25\x25\x25" 23205 "\x25\x25\x25\x25\x25\x25\x25\x25" 23206 "\x25\x25\x25\x25\x25\x25\x25\x25", 23207 .klen = 32, 23208 .ptext = "\x25\x25\x25\x25\x25\x25\x25\x25" 23209 "\x25\x25\x25\x25\x25\x25\x25\x25", 23210 .ctext = "\x1a\x91\xfb\x2b\xb7\x78\x6b\xc4" 23211 "\x17\xd9\xff\x40\x3b\x0e\xe5\xfe", 23212 .len = 16, 23213 }, { 23214 .key = "\x35\x35\x35\x35\x35\x35\x35\x35" 23215 "\x35\x35\x35\x35\x35\x35\x35\x35" 23216 "\x35\x35\x35\x35\x35\x35\x35\x35" 23217 "\x35\x35\x35\x35\x35\x35\x35\x35" 23218 "\x35\x35\x35\x35\x35\x35\x35\x35", 23219 .klen = 40, 23220 .ptext = "\x35\x35\x35\x35\x35\x35\x35\x35" 23221 "\x35\x35\x35\x35\x35\x35\x35\x35", 23222 .ctext = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97" 23223 "\x9e\xc6\x84\x0f\x17\x21\x07\xee", 23224 .len = 16, 23225 }, 23226 }; 23227 23228 static const struct cipher_testvec anubis_cbc_tv_template[] = { 23229 { 23230 .key = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 23231 "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe", 23232 .klen = 16, 23233 .iv_out = "\x86\xd8\xb5\x6f\x98\x5e\x8a\x66" 23234 "\x4f\x1f\x78\xa1\xbb\x37\xf1\xbe", 23235 .ptext = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 23236 "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 23237 "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 23238 "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe", 23239 .ctext = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f" 23240 "\x08\xb7\x52\x8e\x6e\x6e\x86\x90" 23241 "\x86\xd8\xb5\x6f\x98\x5e\x8a\x66" 23242 "\x4f\x1f\x78\xa1\xbb\x37\xf1\xbe", 23243 .len = 32, 23244 }, { 23245 .key = "\x35\x35\x35\x35\x35\x35\x35\x35" 23246 "\x35\x35\x35\x35\x35\x35\x35\x35" 23247 "\x35\x35\x35\x35\x35\x35\x35\x35" 23248 "\x35\x35\x35\x35\x35\x35\x35\x35" 23249 "\x35\x35\x35\x35\x35\x35\x35\x35", 23250 .klen = 40, 23251 .iv_out = "\xa2\xbc\x06\x98\xc6\x4b\xda\x75" 23252 "\x2e\xaa\xbe\x58\xce\x01\x5b\xc7", 23253 .ptext = "\x35\x35\x35\x35\x35\x35\x35\x35" 23254 "\x35\x35\x35\x35\x35\x35\x35\x35" 23255 "\x35\x35\x35\x35\x35\x35\x35\x35" 23256 "\x35\x35\x35\x35\x35\x35\x35\x35", 23257 .ctext = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97" 23258 "\x9e\xc6\x84\x0f\x17\x21\x07\xee" 23259 "\xa2\xbc\x06\x98\xc6\x4b\xda\x75" 23260 "\x2e\xaa\xbe\x58\xce\x01\x5b\xc7", 23261 .len = 32, 23262 }, 23263 }; 23264 23265 /* 23266 * XETA test vectors 23267 */ 23268 static const struct cipher_testvec xeta_tv_template[] = { 23269 { 23270 .key = zeroed_string, 23271 .klen = 16, 23272 .ptext = zeroed_string, 23273 .ctext = "\xaa\x22\x96\xe5\x6c\x61\xf3\x45", 23274 .len = 8, 23275 }, { 23276 .key = "\x2b\x02\x05\x68\x06\x14\x49\x76" 23277 "\x77\x5d\x0e\x26\x6c\x28\x78\x43", 23278 .klen = 16, 23279 .ptext = "\x74\x65\x73\x74\x20\x6d\x65\x2e", 23280 .ctext = "\x82\x3e\xeb\x35\xdc\xdd\xd9\xc3", 23281 .len = 8, 23282 }, { 23283 .key = "\x09\x65\x43\x11\x66\x44\x39\x25" 23284 "\x51\x3a\x16\x10\x0a\x08\x12\x6e", 23285 .klen = 16, 23286 .ptext = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74" 23287 "\x65\x73\x74\x5f\x76\x65\x63\x74", 23288 .ctext = "\xe2\x04\xdb\xf2\x89\x85\x9e\xea" 23289 "\x61\x35\xaa\xed\xb5\xcb\x71\x2c", 23290 .len = 16, 23291 }, { 23292 .key = "\x4d\x76\x32\x17\x05\x3f\x75\x2c" 23293 "\x5d\x04\x16\x36\x15\x72\x63\x2f", 23294 .klen = 16, 23295 .ptext = "\x54\x65\x61\x20\x69\x73\x20\x67" 23296 "\x6f\x6f\x64\x20\x66\x6f\x72\x20" 23297 "\x79\x6f\x75\x21\x21\x21\x20\x72" 23298 "\x65\x61\x6c\x6c\x79\x21\x21\x21", 23299 .ctext = "\x0b\x03\xcd\x8a\xbe\x95\xfd\xb1" 23300 "\xc1\x44\x91\x0b\xa5\xc9\x1b\xb4" 23301 "\xa9\xda\x1e\x9e\xb1\x3e\x2a\x8f" 23302 "\xea\xa5\x6a\x85\xd1\xf4\xa8\xa5", 23303 .len = 32, 23304 } 23305 }; 23306 23307 /* 23308 * FCrypt test vectors 23309 */ 23310 static const struct cipher_testvec fcrypt_pcbc_tv_template[] = { 23311 { /* http://www.openafs.org/pipermail/openafs-devel/2000-December/005320.html */ 23312 .key = "\x00\x00\x00\x00\x00\x00\x00\x00", 23313 .klen = 8, 23314 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00", 23315 .ptext = "\x00\x00\x00\x00\x00\x00\x00\x00", 23316 .ctext = "\x0E\x09\x00\xC7\x3E\xF7\xED\x41", 23317 .len = 8, 23318 }, { 23319 .key = "\x11\x44\x77\xAA\xDD\x00\x33\x66", 23320 .klen = 8, 23321 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00", 23322 .ptext = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0", 23323 .ctext = "\xD8\xED\x78\x74\x77\xEC\x06\x80", 23324 .len = 8, 23325 }, { /* From Arla */ 23326 .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87", 23327 .klen = 8, 23328 .iv = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 23329 .ptext = "The quick brown fox jumps over the lazy dogs.\0\0", 23330 .ctext = "\x00\xf0\x0e\x11\x75\xe6\x23\x82" 23331 "\xee\xac\x98\x62\x44\x51\xe4\x84" 23332 "\xc3\x59\xd8\xaa\x64\x60\xae\xf7" 23333 "\xd2\xd9\x13\x79\x72\xa3\x45\x03" 23334 "\x23\xb5\x62\xd7\x0c\xf5\x27\xd1" 23335 "\xf8\x91\x3c\xac\x44\x22\x92\xef", 23336 .len = 48, 23337 }, { 23338 .key = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 23339 .klen = 8, 23340 .iv = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87", 23341 .ptext = "The quick brown fox jumps over the lazy dogs.\0\0", 23342 .ctext = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c" 23343 "\x01\x88\x7f\x3e\x31\x6e\x62\x9d" 23344 "\xd8\xe0\x57\xa3\x06\x3a\x42\x58" 23345 "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0" 23346 "\x19\x89\x09\x1c\x2a\x8e\x8c\x94" 23347 "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f", 23348 .len = 48, 23349 } 23350 }; 23351 23352 /* 23353 * CAMELLIA test vectors. 23354 */ 23355 static const struct cipher_testvec camellia_tv_template[] = { 23356 { 23357 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 23358 "\xfe\xdc\xba\x98\x76\x54\x32\x10", 23359 .klen = 16, 23360 .ptext = "\x01\x23\x45\x67\x89\xab\xcd\xef" 23361 "\xfe\xdc\xba\x98\x76\x54\x32\x10", 23362 .ctext = "\x67\x67\x31\x38\x54\x96\x69\x73" 23363 "\x08\x57\x06\x56\x48\xea\xbe\x43", 23364 .len = 16, 23365 }, { 23366 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 23367 "\xfe\xdc\xba\x98\x76\x54\x32\x10" 23368 "\x00\x11\x22\x33\x44\x55\x66\x77", 23369 .klen = 24, 23370 .ptext = "\x01\x23\x45\x67\x89\xab\xcd\xef" 23371 "\xfe\xdc\xba\x98\x76\x54\x32\x10", 23372 .ctext = "\xb4\x99\x34\x01\xb3\xe9\x96\xf8" 23373 "\x4e\xe5\xce\xe7\xd7\x9b\x09\xb9", 23374 .len = 16, 23375 }, { 23376 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 23377 "\xfe\xdc\xba\x98\x76\x54\x32\x10" 23378 "\x00\x11\x22\x33\x44\x55\x66\x77" 23379 "\x88\x99\xaa\xbb\xcc\xdd\xee\xff", 23380 .klen = 32, 23381 .ptext = "\x01\x23\x45\x67\x89\xab\xcd\xef" 23382 "\xfe\xdc\xba\x98\x76\x54\x32\x10", 23383 .ctext = "\x9a\xcc\x23\x7d\xff\x16\xd7\x6c" 23384 "\x20\xef\x7c\x91\x9e\x3a\x75\x09", 23385 .len = 16, 23386 }, { /* Generated with Crypto++ */ 23387 .key = "\x3F\x85\x62\x3F\x1C\xF9\xD6\x1C" 23388 "\xF9\xD6\xB3\x90\x6D\x4A\x90\x6D" 23389 "\x4A\x27\x04\xE1\x27\x04\xE1\xBE" 23390 "\x9B\x78\xBE\x9B\x78\x55\x32\x0F", 23391 .klen = 32, 23392 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 23393 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 23394 "\x3A\xD1\x45\xDC\x73\x0A\x7E\x15" 23395 "\xAC\x20\xB7\x4E\xE5\x59\xF0\x87" 23396 "\x1E\x92\x29\xC0\x34\xCB\x62\xF9" 23397 "\x6D\x04\x9B\x0F\xA6\x3D\xD4\x48" 23398 "\xDF\x76\x0D\x81\x18\xAF\x23\xBA" 23399 "\x51\xE8\x5C\xF3\x8A\x21\x95\x2C" 23400 "\xC3\x37\xCE\x65\xFC\x70\x07\x9E" 23401 "\x12\xA9\x40\xD7\x4B\xE2\x79\x10" 23402 "\x84\x1B\xB2\x26\xBD\x54\xEB\x5F" 23403 "\xF6\x8D\x01\x98\x2F\xC6\x3A\xD1" 23404 "\x68\xFF\x73\x0A\xA1\x15\xAC\x43" 23405 "\xDA\x4E\xE5\x7C\x13\x87\x1E\xB5" 23406 "\x29\xC0\x57\xEE\x62\xF9\x90\x04" 23407 "\x9B\x32\xC9\x3D\xD4\x6B\x02\x76" 23408 "\x0D\xA4\x18\xAF\x46\xDD\x51\xE8" 23409 "\x7F\x16\x8A\x21\xB8\x2C\xC3\x5A" 23410 "\xF1\x65\xFC\x93\x07\x9E\x35\xCC" 23411 "\x40\xD7\x6E\x05\x79\x10\xA7\x1B" 23412 "\xB2\x49\xE0\x54\xEB\x82\x19\x8D" 23413 "\x24\xBB\x2F\xC6\x5D\xF4\x68\xFF" 23414 "\x96\x0A\xA1\x38\xCF\x43\xDA\x71" 23415 "\x08\x7C\x13\xAA\x1E\xB5\x4C\xE3" 23416 "\x57\xEE\x85\x1C\x90\x27\xBE\x32" 23417 "\xC9\x60\xF7\x6B\x02\x99\x0D\xA4" 23418 "\x3B\xD2\x46\xDD\x74\x0B\x7F\x16" 23419 "\xAD\x21\xB8\x4F\xE6\x5A\xF1\x88" 23420 "\x1F\x93\x2A\xC1\x35\xCC\x63\xFA" 23421 "\x6E\x05\x9C\x10\xA7\x3E\xD5\x49" 23422 "\xE0\x77\x0E\x82\x19\xB0\x24\xBB" 23423 "\x52\xE9\x5D\xF4\x8B\x22\x96\x2D" 23424 "\xC4\x38\xCF\x66\xFD\x71\x08\x9F" 23425 "\x13\xAA\x41\xD8\x4C\xE3\x7A\x11" 23426 "\x85\x1C\xB3\x27\xBE\x55\xEC\x60" 23427 "\xF7\x8E\x02\x99\x30\xC7\x3B\xD2" 23428 "\x69\x00\x74\x0B\xA2\x16\xAD\x44" 23429 "\xDB\x4F\xE6\x7D\x14\x88\x1F\xB6" 23430 "\x2A\xC1\x58\xEF\x63\xFA\x91\x05" 23431 "\x9C\x33\xCA\x3E\xD5\x6C\x03\x77" 23432 "\x0E\xA5\x19\xB0\x47\xDE\x52\xE9" 23433 "\x80\x17\x8B\x22\xB9\x2D\xC4\x5B" 23434 "\xF2\x66\xFD\x94\x08\x9F\x36\xCD" 23435 "\x41\xD8\x6F\x06\x7A\x11\xA8\x1C" 23436 "\xB3\x4A\xE1\x55\xEC\x83\x1A\x8E" 23437 "\x25\xBC\x30\xC7\x5E\xF5\x69\x00" 23438 "\x97\x0B\xA2\x39\xD0\x44\xDB\x72" 23439 "\x09\x7D\x14\xAB\x1F\xB6\x4D\xE4" 23440 "\x58\xEF\x86\x1D\x91\x28\xBF\x33" 23441 "\xCA\x61\xF8\x6C\x03\x9A\x0E\xA5" 23442 "\x3C\xD3\x47\xDE\x75\x0C\x80\x17" 23443 "\xAE\x22\xB9\x50\xE7\x5B\xF2\x89" 23444 "\x20\x94\x2B\xC2\x36\xCD\x64\xFB" 23445 "\x6F\x06\x9D\x11\xA8\x3F\xD6\x4A" 23446 "\xE1\x78\x0F\x83\x1A\xB1\x25\xBC" 23447 "\x53\xEA\x5E\xF5\x8C\x00\x97\x2E" 23448 "\xC5\x39\xD0\x67\xFE\x72\x09\xA0" 23449 "\x14\xAB\x42\xD9\x4D\xE4\x7B\x12" 23450 "\x86\x1D\xB4\x28\xBF\x56\xED\x61" 23451 "\xF8\x8F\x03\x9A\x31\xC8\x3C\xD3" 23452 "\x6A\x01\x75\x0C\xA3\x17\xAE\x45" 23453 "\xDC\x50\xE7\x7E\x15\x89\x20\xB7" 23454 "\x2B\xC2\x59\xF0\x64\xFB\x92\x06" 23455 "\x9D\x34\xCB\x3F\xD6\x6D\x04\x78" 23456 "\x0F\xA6\x1A\xB1\x48\xDF\x53\xEA" 23457 "\x81\x18\x8C\x23\xBA\x2E\xC5\x5C" 23458 "\xF3\x67\xFE\x95\x09\xA0\x37\xCE" 23459 "\x42\xD9\x70\x07\x7B\x12\xA9\x1D" 23460 "\xB4\x4B\xE2\x56\xED\x84\x1B\x8F" 23461 "\x26\xBD\x31\xC8\x5F\xF6\x6A\x01" 23462 "\x98\x0C\xA3\x3A\xD1\x45\xDC\x73" 23463 "\x0A\x7E\x15\xAC\x20\xB7\x4E\xE5" 23464 "\x59\xF0\x87\x1E\x92\x29\xC0\x34" 23465 "\xCB\x62\xF9\x6D\x04\x9B\x0F\xA6" 23466 "\x3D\xD4\x48\xDF\x76\x0D\x81\x18" 23467 "\xAF\x23\xBA\x51\xE8\x5C\xF3\x8A" 23468 "\x21\x95\x2C\xC3\x37\xCE\x65\xFC" 23469 "\x70\x07\x9E\x12\xA9\x40\xD7\x4B" 23470 "\xE2\x79\x10\x84\x1B\xB2\x26\xBD" 23471 "\x54\xEB\x5F\xF6\x8D\x01\x98\x2F" 23472 "\xC6\x3A\xD1\x68\xFF\x73\x0A\xA1" 23473 "\x15\xAC\x43\xDA\x4E\xE5\x7C\x13" 23474 "\x87\x1E\xB5\x29\xC0\x57\xEE\x62" 23475 "\xF9\x90\x04\x9B\x32\xC9\x3D\xD4" 23476 "\x6B\x02\x76\x0D\xA4\x18\xAF\x46" 23477 "\xDD\x51\xE8\x7F\x16\x8A\x21\xB8" 23478 "\x2C\xC3\x5A\xF1\x65\xFC\x93\x07" 23479 "\x9E\x35\xCC\x40\xD7\x6E\x05\x79" 23480 "\x10\xA7\x1B\xB2\x49\xE0\x54\xEB" 23481 "\x82\x19\x8D\x24\xBB\x2F\xC6\x5D" 23482 "\xF4\x68\xFF\x96\x0A\xA1\x38\xCF" 23483 "\x43\xDA\x71\x08\x7C\x13\xAA\x1E" 23484 "\xB5\x4C\xE3\x57\xEE\x85\x1C\x90" 23485 "\x27\xBE\x32\xC9\x60\xF7\x6B\x02" 23486 "\x99\x0D\xA4\x3B\xD2\x46\xDD\x74" 23487 "\x0B\x7F\x16\xAD\x21\xB8\x4F\xE6" 23488 "\x5A\xF1\x88\x1F\x93\x2A\xC1\x35" 23489 "\xCC\x63\xFA\x6E\x05\x9C\x10\xA7" 23490 "\x3E\xD5\x49\xE0\x77\x0E\x82\x19" 23491 "\xB0\x24\xBB\x52\xE9\x5D\xF4\x8B" 23492 "\x22\x96\x2D\xC4\x38\xCF\x66\xFD" 23493 "\x71\x08\x9F\x13\xAA\x41\xD8\x4C" 23494 "\xE3\x7A\x11\x85\x1C\xB3\x27\xBE" 23495 "\x55\xEC\x60\xF7\x8E\x02\x99\x30" 23496 "\xC7\x3B\xD2\x69\x00\x74\x0B\xA2" 23497 "\x16\xAD\x44\xDB\x4F\xE6\x7D\x14" 23498 "\x88\x1F\xB6\x2A\xC1\x58\xEF\x63" 23499 "\xFA\x91\x05\x9C\x33\xCA\x3E\xD5" 23500 "\x6C\x03\x77\x0E\xA5\x19\xB0\x47" 23501 "\xDE\x52\xE9\x80\x17\x8B\x22\xB9" 23502 "\x2D\xC4\x5B\xF2\x66\xFD\x94\x08" 23503 "\x9F\x36\xCD\x41\xD8\x6F\x06\x7A" 23504 "\x11\xA8\x1C\xB3\x4A\xE1\x55\xEC" 23505 "\x83\x1A\x8E\x25\xBC\x30\xC7\x5E" 23506 "\xF5\x69\x00\x97\x0B\xA2\x39\xD0" 23507 "\x44\xDB\x72\x09\x7D\x14\xAB\x1F" 23508 "\xB6\x4D\xE4\x58\xEF\x86\x1D\x91" 23509 "\x28\xBF\x33\xCA\x61\xF8\x6C\x03" 23510 "\x9A\x0E\xA5\x3C\xD3\x47\xDE\x75" 23511 "\x0C\x80\x17\xAE\x22\xB9\x50\xE7" 23512 "\x5B\xF2\x89\x20\x94\x2B\xC2\x36" 23513 "\xCD\x64\xFB\x6F\x06\x9D\x11\xA8" 23514 "\x3F\xD6\x4A\xE1\x78\x0F\x83\x1A" 23515 "\xB1\x25\xBC\x53\xEA\x5E\xF5\x8C" 23516 "\x00\x97\x2E\xC5\x39\xD0\x67\xFE" 23517 "\x72\x09\xA0\x14\xAB\x42\xD9\x4D", 23518 .ctext = "\xED\xCD\xDB\xB8\x68\xCE\xBD\xEA" 23519 "\x9D\x9D\xCD\x9F\x4F\xFC\x4D\xB7" 23520 "\xA5\xFF\x6F\x43\x0F\xBA\x32\x04" 23521 "\xB3\xC2\xB9\x03\xAA\x91\x56\x29" 23522 "\x0D\xD0\xFD\xC4\x65\xA5\x69\xB9" 23523 "\xF1\xF6\xB1\xA5\xB2\x75\x4F\x8A" 23524 "\x8D\x7D\x1B\x9B\xC7\x68\x72\xF8" 23525 "\x01\x9B\x17\x0A\x29\xE7\x61\x28" 23526 "\x7F\xA7\x50\xCA\x20\x2C\x96\x3B" 23527 "\x6E\x5C\x5D\x3F\xB5\x7F\xF3\x2B" 23528 "\x04\xEF\x9D\xD4\xCE\x41\x28\x8E" 23529 "\x83\x54\xAE\x7C\x82\x46\x10\xC9" 23530 "\xC4\x8A\x1E\x1F\x4C\xA9\xFC\xEC" 23531 "\x3C\x8C\x30\xFC\x59\xD2\x54\xC4" 23532 "\x6F\x50\xC6\xCA\x8C\x14\x5B\x9C" 23533 "\x18\x56\x5B\xF8\x33\x0E\x4A\xDB" 23534 "\xEC\xB5\x6E\x5B\x31\xC4\x0E\x98" 23535 "\x9F\x32\xBA\xA2\x18\xCF\x55\x43" 23536 "\xFE\x80\x8F\x60\xCF\x05\x30\x9B" 23537 "\x70\x50\x1E\x9C\x08\x87\xE6\x20" 23538 "\xD2\xF3\x27\xF8\x2A\x8D\x12\xB2" 23539 "\xBC\x5F\xFE\x52\x52\xF6\x7F\xB6" 23540 "\xB8\x30\x86\x3B\x0F\x94\x1E\x79" 23541 "\x13\x94\x35\xA2\xB1\x35\x5B\x05" 23542 "\x2A\x98\x6B\x96\x4C\xB1\x20\xBE" 23543 "\xB6\x14\xC2\x06\xBF\xFD\x5F\x2A" 23544 "\xF5\x33\xC8\x19\x45\x14\x44\x5D" 23545 "\xFE\x94\x7B\xBB\x63\x13\x57\xC3" 23546 "\x2A\x8F\x6C\x11\x2A\x07\xA7\x6A" 23547 "\xBF\x20\xD3\x99\xC6\x00\x0B\xBF" 23548 "\x83\x46\x25\x3A\xB0\xF6\xC5\xC8" 23549 "\x00\xCA\xE5\x28\x4A\x7C\x95\x9C" 23550 "\x7B\x43\xAB\xF9\xE4\xF8\x74\xAB" 23551 "\xA7\xB8\x9C\x0F\x53\x7B\xB6\x74" 23552 "\x60\x64\x0D\x1C\x80\xD1\x20\x9E" 23553 "\xDC\x14\x27\x9B\xFC\xBD\x5C\x96" 23554 "\xD2\x51\xDC\x96\xEE\xE5\xEA\x2B" 23555 "\x02\x7C\xAA\x3C\xDC\x9D\x7B\x01" 23556 "\x20\xC3\xE1\x0B\xDD\xAB\xF3\x1E" 23557 "\x19\xA8\x84\x29\x5F\xCC\xC3\x5B" 23558 "\xE4\x33\x59\xDC\x12\xEB\x2B\x4D" 23559 "\x5B\x55\x23\xB7\x40\x31\xDE\xEE" 23560 "\x18\xC9\x3C\x4D\xBC\xED\xE0\x42" 23561 "\xAD\xDE\xA0\xA3\xC3\xFE\x44\xD3" 23562 "\xE1\x9A\xDA\xAB\x32\xFC\x1A\xBF" 23563 "\x63\xA9\xF0\x6A\x08\x46\xBD\x48" 23564 "\x83\x06\xAB\x82\x99\x01\x16\x1A" 23565 "\x03\x36\xC5\x59\x6B\xB8\x8C\x9F" 23566 "\xC6\x51\x3D\xE5\x7F\xBF\xAB\xBC" 23567 "\xC9\xA1\x88\x34\x5F\xA9\x7C\x3B" 23568 "\x9F\x1B\x98\x2B\x4F\xFB\x9B\xF0" 23569 "\xCD\xB6\x45\xB2\x29\x2E\x34\x23" 23570 "\xA9\x97\xC0\x22\x8C\x42\x9B\x5F" 23571 "\x40\xC8\xD7\x3D\x82\x9A\x6F\xAA" 23572 "\x74\x83\x29\x05\xE8\xC4\x4D\x01" 23573 "\xB5\xE5\x84\x3F\x7F\xD3\xE0\x99" 23574 "\xDA\xE7\x6F\x30\xFD\xAA\x92\x30" 23575 "\xA5\x46\x8B\xA2\xE6\x58\x62\x7C" 23576 "\x2C\x35\x1B\x38\x85\x7D\xE8\xF3" 23577 "\x87\x4F\xDA\xD8\x5F\xFC\xB6\x44" 23578 "\xD0\xE3\x9B\x8B\xBF\xD6\xB8\xC4" 23579 "\x73\xAE\x1D\x8B\x5B\x74\x8B\xCB" 23580 "\xA4\xAD\xCF\x5D\xD4\x58\xC9\xCD" 23581 "\xF7\x90\x68\xCF\xC9\x11\x52\x3E" 23582 "\xE8\xA1\xA3\x78\x8B\xD0\xAC\x0A" 23583 "\xD4\xC9\xA3\xA5\x55\x30\xC8\x3E" 23584 "\xED\x28\x39\xE9\x63\xED\x41\x70" 23585 "\x51\xE3\xC4\xA0\xFC\xD5\x43\xCB" 23586 "\x4D\x65\xC8\xFD\x3A\x91\x8F\x60" 23587 "\x8A\xA6\x6D\x9D\x3E\x01\x23\x4B" 23588 "\x50\x47\xC9\xDC\x9B\xDE\x37\xC5" 23589 "\xBF\x67\xB1\x6B\x78\x38\xD5\x7E" 23590 "\xB6\xFF\x67\x83\x3B\x6E\xBE\x23" 23591 "\x45\xFA\x1D\x69\x44\xFD\xC6\xB9" 23592 "\xD0\x4A\x92\xD1\xBE\xF6\x4A\xB7" 23593 "\xCA\xA8\xA2\x9E\x13\x87\x57\x92" 23594 "\x64\x7C\x85\x0B\xB3\x29\x37\xD8" 23595 "\xE6\xAA\xAF\xC4\x03\x67\xA3\xBF" 23596 "\x2E\x45\x83\xB6\xD8\x54\x00\x89" 23597 "\xF6\xBC\x3A\x7A\x88\x58\x51\xED" 23598 "\xF4\x4E\x01\xA5\xC3\x2E\xD9\x42" 23599 "\xBD\x6E\x0D\x0B\x21\xB0\x1A\xCC" 23600 "\xA4\xD3\x3F\xDC\x9B\x81\xD8\xF1" 23601 "\xEA\x7A\x6A\xB7\x07\xC9\x6D\x91" 23602 "\x6D\x3A\xF5\x5F\xA6\xFF\x87\x1E" 23603 "\x3F\xDD\xC0\x72\xEA\xAC\x08\x15" 23604 "\x21\xE6\xC6\xB6\x0D\xD8\x51\x86" 23605 "\x2A\x03\x73\xF7\x29\xD4\xC4\xE4" 23606 "\x7F\x95\x10\xF7\xAB\x3F\x92\x23" 23607 "\xD3\xCE\x9C\x2E\x46\x3B\x63\x43" 23608 "\xBB\xC2\x82\x7A\x83\xD5\x55\xE2" 23609 "\xE7\x9B\x2F\x92\xAF\xFD\x81\x56" 23610 "\x79\xFD\x3E\xF9\x46\xE0\x25\xD4" 23611 "\x38\xDE\xBC\x2C\xC4\x7A\x2A\x8F" 23612 "\x94\x4F\xD0\xAD\x9B\x37\x18\xD4" 23613 "\x0E\x4D\x0F\x02\x3A\xDC\x5A\xA2" 23614 "\x39\x25\x55\x20\x5A\xA6\x02\x9F" 23615 "\xE6\x77\x21\x77\xE5\x4B\x7B\x0B" 23616 "\x30\xF8\x5F\x33\x0F\x49\xCD\xFF" 23617 "\xF2\xE4\x35\xF9\xF0\x63\xC3\x7E" 23618 "\xF1\xA6\x73\xB4\xDF\xE7\xBB\x78" 23619 "\xFF\x21\xA9\xF3\xF3\xCF\x5D\xBA" 23620 "\xED\x87\x98\xAC\xFE\x48\x97\x6D" 23621 "\xA6\x7F\x69\x31\xB1\xC4\xFF\x14" 23622 "\xC6\x76\xD4\x10\xDD\xF6\x49\x2C" 23623 "\x9C\xC8\x6D\x76\xC0\x8F\x5F\x55" 23624 "\x2F\x3C\x8A\x30\xAA\xC3\x16\x55" 23625 "\xC6\xFC\x8D\x8B\xB9\xE5\x80\x6C" 23626 "\xC8\x7E\xBD\x65\x58\x36\xD5\xBC" 23627 "\xF0\x33\x52\x29\x70\xF9\x5C\xE9" 23628 "\xAC\x1F\xB5\x73\x56\x66\x54\xAF" 23629 "\x1B\x8F\x7D\xED\xAB\x03\xCE\xE3" 23630 "\xAE\x47\xB6\x69\x86\xE9\x01\x31" 23631 "\x83\x18\x3D\xF4\x74\x7B\xF9\x42" 23632 "\x4C\xFD\x75\x4A\x6D\xF0\x03\xA6" 23633 "\x2B\x20\x63\xDA\x49\x65\x5E\x8B" 23634 "\xC0\x19\xE3\x8D\xD9\xF3\xB0\x34" 23635 "\xD3\x52\xFC\x68\x00\x43\x1B\x37" 23636 "\x31\x93\x51\x1C\x63\x97\x70\xB0" 23637 "\x99\x78\x83\x13\xFD\xCF\x53\x81" 23638 "\x36\x46\xB5\x42\x52\x2F\x32\xEB" 23639 "\x4A\x3D\xF1\x8F\x1C\x54\x2E\xFC" 23640 "\x41\x75\x5A\x8C\x8E\x6F\xE7\x1A" 23641 "\xAE\xEF\x3E\x82\x12\x0B\x74\x72" 23642 "\xF8\xB2\xAA\x7A\xD6\xFF\xFA\x55" 23643 "\x33\x1A\xBB\xD3\xA2\x7E\x97\x66", 23644 .len = 1008, 23645 }, 23646 }; 23647 23648 static const struct cipher_testvec camellia_cbc_tv_template[] = { 23649 { 23650 .key = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b" 23651 "\x51\x2e\x03\xd5\x34\x12\x00\x06", 23652 .klen = 16, 23653 .iv = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30" 23654 "\xb4\x22\xda\x80\x2c\x9f\xac\x41", 23655 .iv_out = "\xea\x32\x12\x76\x3b\x50\x10\xe7" 23656 "\x18\xf6\xfd\x5d\xf6\x8f\x13\x51", 23657 .ptext = "Single block msg", 23658 .ctext = "\xea\x32\x12\x76\x3b\x50\x10\xe7" 23659 "\x18\xf6\xfd\x5d\xf6\x8f\x13\x51", 23660 .len = 16, 23661 }, { 23662 .key = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0" 23663 "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a", 23664 .klen = 16, 23665 .iv = "\x56\x2e\x17\x99\x6d\x09\x3d\x28" 23666 "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58", 23667 .iv_out = "\x19\xb4\x3e\x57\x1c\x02\x5e\xa0" 23668 "\x15\x78\xe0\x5e\xf2\xcb\x87\x16", 23669 .ptext = "\x00\x01\x02\x03\x04\x05\x06\x07" 23670 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 23671 "\x10\x11\x12\x13\x14\x15\x16\x17" 23672 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 23673 .ctext = "\xa5\xdf\x6e\x50\xda\x70\x6c\x01" 23674 "\x4a\xab\xf3\xf2\xd6\xfc\x6c\xfd" 23675 "\x19\xb4\x3e\x57\x1c\x02\x5e\xa0" 23676 "\x15\x78\xe0\x5e\xf2\xcb\x87\x16", 23677 .len = 32, 23678 }, { /* Generated with Crypto++ */ 23679 .key = "\x85\x62\x3F\x1C\xF9\xD6\x1C\xF9" 23680 "\xD6\xB3\x90\x6D\x4A\x90\x6D\x4A" 23681 "\x27\x04\xE1\x27\x04\xE1\xBE\x9B" 23682 "\x78\xBE\x9B\x78\x55\x32\x0F\x55", 23683 .klen = 32, 23684 .iv = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F" 23685 "\xC4\x29\x8E\xF3\x35\x9A\xFF\x64", 23686 .iv_out = "\x55\x01\xD4\x58\xB2\xF2\x85\x49" 23687 "\x70\xC5\xB9\x0B\x3B\x7A\x6E\x6C", 23688 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 23689 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 23690 "\x3A\xD1\x45\xDC\x73\x0A\x7E\x15" 23691 "\xAC\x20\xB7\x4E\xE5\x59\xF0\x87" 23692 "\x1E\x92\x29\xC0\x34\xCB\x62\xF9" 23693 "\x6D\x04\x9B\x0F\xA6\x3D\xD4\x48" 23694 "\xDF\x76\x0D\x81\x18\xAF\x23\xBA" 23695 "\x51\xE8\x5C\xF3\x8A\x21\x95\x2C" 23696 "\xC3\x37\xCE\x65\xFC\x70\x07\x9E" 23697 "\x12\xA9\x40\xD7\x4B\xE2\x79\x10" 23698 "\x84\x1B\xB2\x26\xBD\x54\xEB\x5F" 23699 "\xF6\x8D\x01\x98\x2F\xC6\x3A\xD1" 23700 "\x68\xFF\x73\x0A\xA1\x15\xAC\x43" 23701 "\xDA\x4E\xE5\x7C\x13\x87\x1E\xB5" 23702 "\x29\xC0\x57\xEE\x62\xF9\x90\x04" 23703 "\x9B\x32\xC9\x3D\xD4\x6B\x02\x76" 23704 "\x0D\xA4\x18\xAF\x46\xDD\x51\xE8" 23705 "\x7F\x16\x8A\x21\xB8\x2C\xC3\x5A" 23706 "\xF1\x65\xFC\x93\x07\x9E\x35\xCC" 23707 "\x40\xD7\x6E\x05\x79\x10\xA7\x1B" 23708 "\xB2\x49\xE0\x54\xEB\x82\x19\x8D" 23709 "\x24\xBB\x2F\xC6\x5D\xF4\x68\xFF" 23710 "\x96\x0A\xA1\x38\xCF\x43\xDA\x71" 23711 "\x08\x7C\x13\xAA\x1E\xB5\x4C\xE3" 23712 "\x57\xEE\x85\x1C\x90\x27\xBE\x32" 23713 "\xC9\x60\xF7\x6B\x02\x99\x0D\xA4" 23714 "\x3B\xD2\x46\xDD\x74\x0B\x7F\x16" 23715 "\xAD\x21\xB8\x4F\xE6\x5A\xF1\x88" 23716 "\x1F\x93\x2A\xC1\x35\xCC\x63\xFA" 23717 "\x6E\x05\x9C\x10\xA7\x3E\xD5\x49" 23718 "\xE0\x77\x0E\x82\x19\xB0\x24\xBB" 23719 "\x52\xE9\x5D\xF4\x8B\x22\x96\x2D" 23720 "\xC4\x38\xCF\x66\xFD\x71\x08\x9F" 23721 "\x13\xAA\x41\xD8\x4C\xE3\x7A\x11" 23722 "\x85\x1C\xB3\x27\xBE\x55\xEC\x60" 23723 "\xF7\x8E\x02\x99\x30\xC7\x3B\xD2" 23724 "\x69\x00\x74\x0B\xA2\x16\xAD\x44" 23725 "\xDB\x4F\xE6\x7D\x14\x88\x1F\xB6" 23726 "\x2A\xC1\x58\xEF\x63\xFA\x91\x05" 23727 "\x9C\x33\xCA\x3E\xD5\x6C\x03\x77" 23728 "\x0E\xA5\x19\xB0\x47\xDE\x52\xE9" 23729 "\x80\x17\x8B\x22\xB9\x2D\xC4\x5B" 23730 "\xF2\x66\xFD\x94\x08\x9F\x36\xCD" 23731 "\x41\xD8\x6F\x06\x7A\x11\xA8\x1C" 23732 "\xB3\x4A\xE1\x55\xEC\x83\x1A\x8E" 23733 "\x25\xBC\x30\xC7\x5E\xF5\x69\x00" 23734 "\x97\x0B\xA2\x39\xD0\x44\xDB\x72" 23735 "\x09\x7D\x14\xAB\x1F\xB6\x4D\xE4" 23736 "\x58\xEF\x86\x1D\x91\x28\xBF\x33" 23737 "\xCA\x61\xF8\x6C\x03\x9A\x0E\xA5" 23738 "\x3C\xD3\x47\xDE\x75\x0C\x80\x17" 23739 "\xAE\x22\xB9\x50\xE7\x5B\xF2\x89" 23740 "\x20\x94\x2B\xC2\x36\xCD\x64\xFB" 23741 "\x6F\x06\x9D\x11\xA8\x3F\xD6\x4A" 23742 "\xE1\x78\x0F\x83\x1A\xB1\x25\xBC" 23743 "\x53\xEA\x5E\xF5\x8C\x00\x97\x2E" 23744 "\xC5\x39\xD0\x67\xFE\x72\x09\xA0" 23745 "\x14\xAB\x42\xD9\x4D\xE4\x7B\x12" 23746 "\x86\x1D\xB4\x28\xBF\x56\xED\x61" 23747 "\xF8\x8F\x03\x9A\x31\xC8\x3C\xD3" 23748 "\x6A\x01\x75\x0C\xA3\x17\xAE\x45" 23749 "\xDC\x50\xE7\x7E\x15\x89\x20\xB7" 23750 "\x2B\xC2\x59\xF0\x64\xFB\x92\x06" 23751 "\x9D\x34\xCB\x3F\xD6\x6D\x04\x78" 23752 "\x0F\xA6\x1A\xB1\x48\xDF\x53\xEA" 23753 "\x81\x18\x8C\x23\xBA\x2E\xC5\x5C" 23754 "\xF3\x67\xFE\x95\x09\xA0\x37\xCE" 23755 "\x42\xD9\x70\x07\x7B\x12\xA9\x1D" 23756 "\xB4\x4B\xE2\x56\xED\x84\x1B\x8F" 23757 "\x26\xBD\x31\xC8\x5F\xF6\x6A\x01" 23758 "\x98\x0C\xA3\x3A\xD1\x45\xDC\x73" 23759 "\x0A\x7E\x15\xAC\x20\xB7\x4E\xE5" 23760 "\x59\xF0\x87\x1E\x92\x29\xC0\x34" 23761 "\xCB\x62\xF9\x6D\x04\x9B\x0F\xA6" 23762 "\x3D\xD4\x48\xDF\x76\x0D\x81\x18" 23763 "\xAF\x23\xBA\x51\xE8\x5C\xF3\x8A" 23764 "\x21\x95\x2C\xC3\x37\xCE\x65\xFC" 23765 "\x70\x07\x9E\x12\xA9\x40\xD7\x4B" 23766 "\xE2\x79\x10\x84\x1B\xB2\x26\xBD" 23767 "\x54\xEB\x5F\xF6\x8D\x01\x98\x2F" 23768 "\xC6\x3A\xD1\x68\xFF\x73\x0A\xA1" 23769 "\x15\xAC\x43\xDA\x4E\xE5\x7C\x13" 23770 "\x87\x1E\xB5\x29\xC0\x57\xEE\x62" 23771 "\xF9\x90\x04\x9B\x32\xC9\x3D\xD4" 23772 "\x6B\x02\x76\x0D\xA4\x18\xAF\x46" 23773 "\xDD\x51\xE8\x7F\x16\x8A\x21\xB8" 23774 "\x2C\xC3\x5A\xF1\x65\xFC\x93\x07" 23775 "\x9E\x35\xCC\x40\xD7\x6E\x05\x79" 23776 "\x10\xA7\x1B\xB2\x49\xE0\x54\xEB" 23777 "\x82\x19\x8D\x24\xBB\x2F\xC6\x5D" 23778 "\xF4\x68\xFF\x96\x0A\xA1\x38\xCF" 23779 "\x43\xDA\x71\x08\x7C\x13\xAA\x1E" 23780 "\xB5\x4C\xE3\x57\xEE\x85\x1C\x90" 23781 "\x27\xBE\x32\xC9\x60\xF7\x6B\x02" 23782 "\x99\x0D\xA4\x3B\xD2\x46\xDD\x74" 23783 "\x0B\x7F\x16\xAD\x21\xB8\x4F\xE6" 23784 "\x5A\xF1\x88\x1F\x93\x2A\xC1\x35" 23785 "\xCC\x63\xFA\x6E\x05\x9C\x10\xA7" 23786 "\x3E\xD5\x49\xE0\x77\x0E\x82\x19" 23787 "\xB0\x24\xBB\x52\xE9\x5D\xF4\x8B" 23788 "\x22\x96\x2D\xC4\x38\xCF\x66\xFD" 23789 "\x71\x08\x9F\x13\xAA\x41\xD8\x4C" 23790 "\xE3\x7A\x11\x85\x1C\xB3\x27\xBE" 23791 "\x55\xEC\x60\xF7\x8E\x02\x99\x30" 23792 "\xC7\x3B\xD2\x69\x00\x74\x0B\xA2" 23793 "\x16\xAD\x44\xDB\x4F\xE6\x7D\x14" 23794 "\x88\x1F\xB6\x2A\xC1\x58\xEF\x63" 23795 "\xFA\x91\x05\x9C\x33\xCA\x3E\xD5" 23796 "\x6C\x03\x77\x0E\xA5\x19\xB0\x47" 23797 "\xDE\x52\xE9\x80\x17\x8B\x22\xB9" 23798 "\x2D\xC4\x5B\xF2\x66\xFD\x94\x08" 23799 "\x9F\x36\xCD\x41\xD8\x6F\x06\x7A" 23800 "\x11\xA8\x1C\xB3\x4A\xE1\x55\xEC" 23801 "\x83\x1A\x8E\x25\xBC\x30\xC7\x5E" 23802 "\xF5\x69\x00\x97\x0B\xA2\x39\xD0" 23803 "\x44\xDB\x72\x09\x7D\x14\xAB\x1F" 23804 "\xB6\x4D\xE4\x58\xEF\x86\x1D\x91" 23805 "\x28\xBF\x33\xCA\x61\xF8\x6C\x03" 23806 "\x9A\x0E\xA5\x3C\xD3\x47\xDE\x75" 23807 "\x0C\x80\x17\xAE\x22\xB9\x50\xE7" 23808 "\x5B\xF2\x89\x20\x94\x2B\xC2\x36" 23809 "\xCD\x64\xFB\x6F\x06\x9D\x11\xA8" 23810 "\x3F\xD6\x4A\xE1\x78\x0F\x83\x1A" 23811 "\xB1\x25\xBC\x53\xEA\x5E\xF5\x8C" 23812 "\x00\x97\x2E\xC5\x39\xD0\x67\xFE" 23813 "\x72\x09\xA0\x14\xAB\x42\xD9\x4D", 23814 .ctext = "\xCD\x3E\x2A\x3B\x3E\x94\xC5\x77" 23815 "\xBA\xBB\x5B\xB1\xDE\x7B\xA4\x40" 23816 "\x88\x39\xE3\xFD\x94\x4B\x25\x58" 23817 "\xE1\x4B\xC4\x18\x7A\xFD\x17\x2B" 23818 "\xB9\xF9\xC2\x27\x6A\xB6\x31\x27" 23819 "\xA6\xAD\xEF\xE5\x5D\xE4\x02\x01" 23820 "\x56\x2E\x10\xC2\x2C\xFF\xC6\x83" 23821 "\xB5\xDC\x4F\x63\xAD\x0E\x63\x5E" 23822 "\x56\xC8\x18\x3D\x79\x86\x97\xEF" 23823 "\x57\x0E\x63\xA1\xC1\x41\x48\xB8" 23824 "\x98\xB7\x51\x6D\x18\xF6\x19\x82" 23825 "\x37\x49\x88\xA4\xEF\x91\x21\x47" 23826 "\x03\x28\xEA\x42\xF4\xFB\x7A\x58" 23827 "\x28\x90\x77\x46\xD8\xD2\x35\x16" 23828 "\x44\xA9\x9E\x49\x52\x2A\xE4\x16" 23829 "\x5D\xF7\x65\xEB\x0F\xC9\x29\xE6" 23830 "\xCF\x76\x91\x89\x8A\x94\x39\xFA" 23831 "\x6B\x5F\x63\x53\x74\x43\x91\xF5" 23832 "\x3F\xBC\x88\x53\xB2\x1A\x02\x3F" 23833 "\x9D\x32\x84\xEB\x56\x28\xD6\x06" 23834 "\xD5\xB2\x20\xA9\xFC\xC3\x76\x62" 23835 "\x32\xCC\x86\xC8\x36\x67\x5E\x7E" 23836 "\xA4\xAA\x15\x63\x6B\xA9\x86\xAF" 23837 "\x1A\x52\x82\x36\x5F\xF4\x3F\x7A" 23838 "\x9B\x78\x62\x3B\x02\x28\x60\xB3" 23839 "\xBA\x82\xB1\xDD\xC9\x60\x8F\x47" 23840 "\xF1\x6B\xFE\xE5\x39\x34\xA0\x28" 23841 "\xA4\xB3\xC9\x7E\xED\x28\x8D\x70" 23842 "\xB2\x1D\xFD\xC6\x00\xCF\x1A\x94" 23843 "\x28\xF8\xC1\x34\xB7\x58\xA5\x6C" 23844 "\x1A\x9D\xE4\xE4\xF6\xB9\xB4\xB0" 23845 "\x5D\x51\x54\x9A\x53\xA0\xF9\x32" 23846 "\xBD\x31\x54\x14\x7B\x33\xEE\x17" 23847 "\xD3\xC7\x1F\x48\xBF\x0B\x22\xA2" 23848 "\x7D\x0C\xDF\xD0\x2E\x98\xFA\xD2" 23849 "\xFA\xCF\x24\x1D\x99\x9B\xD0\x7E" 23850 "\xF4\x4F\x88\xFF\x45\x99\x4A\xF4" 23851 "\xF2\x0A\x5B\x3B\x21\xAB\x92\xAE" 23852 "\x40\x78\x91\x95\xC4\x2F\xA3\xE8" 23853 "\x18\xC7\x07\xA6\xC8\xC0\x66\x33" 23854 "\x35\xC0\xB4\xA0\xF8\xEE\x1E\xF3" 23855 "\x40\xF5\x40\x54\xF1\x84\x8C\xEA" 23856 "\x27\x38\x1F\xF8\x77\xC7\xDF\xD8" 23857 "\x1D\xE2\xD9\x59\x40\x4F\x59\xD4" 23858 "\xF8\x17\x99\x8D\x58\x2D\x72\x44" 23859 "\x9D\x1D\x91\x64\xD6\x3F\x0A\x82" 23860 "\xC7\x57\x3D\xEF\xD3\x41\xFA\xA7" 23861 "\x68\xA3\xB8\xA5\x93\x74\x2E\x85" 23862 "\x4C\x9D\x69\x59\xCE\x15\xAE\xBF" 23863 "\x9C\x8F\x14\x64\x5D\x7F\xCF\x0B" 23864 "\xCE\x43\x5D\x28\xC0\x2F\xFB\x18" 23865 "\x79\x9A\xFC\x43\x16\x7C\x6B\x7B" 23866 "\x38\xB8\x48\x36\x66\x4E\x20\x43" 23867 "\xBA\x76\x13\x9A\xC3\xF2\xEB\x52" 23868 "\xD7\xDC\xB2\x67\x63\x14\x25\xCD" 23869 "\xB1\x13\x4B\xDE\x8C\x59\x21\x84" 23870 "\x81\x8D\x97\x23\x45\x33\x7C\xF3" 23871 "\xC5\xBC\x79\x95\xAA\x84\x68\x31" 23872 "\x2D\x1A\x68\xFE\xEC\x92\x94\xDA" 23873 "\x94\x2A\x6F\xD6\xFE\xE5\x76\x97" 23874 "\xF4\x6E\xEE\xCB\x2B\x95\x4E\x36" 23875 "\x5F\x74\x8C\x86\x5B\x71\xD0\x20" 23876 "\x78\x1A\x7F\x18\x8C\xD9\xCD\xF5" 23877 "\x21\x41\x56\x72\x13\xE1\x86\x07" 23878 "\x07\x26\xF3\x4F\x7B\xEA\xB5\x18" 23879 "\xFE\x94\x2D\x9F\xE0\x72\x18\x65" 23880 "\xB2\xA5\x63\x48\xB4\x13\x22\xF7" 23881 "\x25\xF1\x80\xA8\x7F\x54\x86\x7B" 23882 "\x39\xAE\x95\x0C\x09\x32\x22\x2D" 23883 "\x4D\x73\x39\x0C\x09\x2C\x7C\x10" 23884 "\xD0\x4B\x53\xF6\x90\xC5\x99\x2F" 23885 "\x15\xE1\x7F\xC6\xC5\x7A\x52\x14" 23886 "\x65\xEE\x93\x54\xD0\x66\x15\x3C" 23887 "\x4C\x68\xFD\x64\x0F\xF9\x10\x39" 23888 "\x46\x7A\xDD\x97\x20\xEE\xC7\xD2" 23889 "\x98\x4A\xB6\xE6\xF5\xA8\x1F\x4F" 23890 "\xDB\xAB\x6D\xD5\x9B\x34\x16\x97" 23891 "\x2F\x64\xE5\x37\xEF\x0E\xA1\xE9" 23892 "\xBE\x31\x31\x96\x8B\x40\x18\x75" 23893 "\x11\x75\x14\x32\xA5\x2D\x1B\x6B" 23894 "\xDB\x59\xEB\xFA\x3D\x8E\x7C\xC4" 23895 "\xDE\x68\xC8\x9F\xC9\x99\xE3\xC6" 23896 "\x71\xB0\x12\x57\x89\x0D\xC0\x2B" 23897 "\x9F\x12\x6A\x04\x67\xF1\x95\x31" 23898 "\x59\xFD\x84\x95\x2C\x9C\x5B\xEC" 23899 "\x09\xB0\x43\x96\x4A\x64\x80\x40" 23900 "\xB9\x72\x19\xDD\x70\x42\xFA\xB1" 23901 "\x4A\x2C\x0C\x0A\x60\x6E\xE3\x7C" 23902 "\x37\x5A\xBE\xA4\x62\xCF\x29\xAB" 23903 "\x7F\x4D\xA6\xB3\xE2\xB6\x64\xC6" 23904 "\x33\x0B\xF3\xD5\x01\x38\x74\xA4" 23905 "\x67\x1E\x75\x68\xC3\xAD\x76\xE9" 23906 "\xE9\xBC\xF0\xEB\xD8\xFD\x31\x8A" 23907 "\x5F\xC9\x18\x94\x4B\x86\x66\xFC" 23908 "\xBD\x0B\x3D\xB3\x9F\xFA\x1F\xD9" 23909 "\x78\xC4\xE3\x24\x1C\x67\xA2\xF8" 23910 "\x43\xBC\x76\x75\xBF\x6C\x05\xB3" 23911 "\x32\xE8\x7C\x80\xDB\xC7\xB6\x61" 23912 "\x1A\x3E\x2B\xA7\x25\xED\x8F\xA0" 23913 "\x00\x4B\xF8\x90\xCA\xD8\xFB\x12" 23914 "\xAC\x1F\x18\xE9\xD2\x5E\xA2\x8E" 23915 "\xE4\x84\x6B\x9D\xEB\x1E\x6B\xA3" 23916 "\x7B\xDC\xCE\x15\x97\x27\xB2\x65" 23917 "\xBC\x0E\x47\xAB\x55\x13\x53\xAB" 23918 "\x0E\x34\x55\x02\x5F\x27\xC5\x89" 23919 "\xDF\xC5\x70\xC4\xDD\x76\x82\xEE" 23920 "\x68\xA6\x09\xB0\xE5\x5E\xF1\x0C" 23921 "\xE3\xF3\x09\x9B\xFE\x65\x4B\xB8" 23922 "\x30\xEC\xD5\x7C\x6A\xEC\x1D\xD2" 23923 "\x93\xB7\xA1\x1A\x02\xD4\xC0\xD6" 23924 "\x8D\x4D\x83\x9A\xED\x29\x4E\x14" 23925 "\x86\xD5\x3C\x1A\xD5\xB9\x0A\x6A" 23926 "\x72\x22\xD5\x92\x38\xF1\xA1\x86" 23927 "\xB2\x41\x51\xCA\x4E\xAB\x8F\xD3" 23928 "\x80\x56\xC3\xD7\x65\xE1\xB3\x86" 23929 "\xCB\xCE\x98\xA1\xD4\x59\x1C\x06" 23930 "\x01\xED\xF8\x29\x91\x19\x5C\x9A" 23931 "\xEE\x28\x1B\x48\xD7\x32\xEF\x9F" 23932 "\x6C\x2B\x66\x4E\x78\xD5\x8B\x72" 23933 "\x80\xE7\x29\xDC\x23\x55\x98\x54" 23934 "\xB1\xFF\x3E\x95\x56\xA8\x78\x78" 23935 "\xEF\xC4\xA5\x11\x2D\x2B\xD8\x93" 23936 "\x30\x6E\x7E\x51\xBB\x42\x5F\x03" 23937 "\x43\x94\x23\x7E\xEE\xF0\xA5\x79" 23938 "\x55\x01\xD4\x58\xB2\xF2\x85\x49" 23939 "\x70\xC5\xB9\x0B\x3B\x7A\x6E\x6C", 23940 .len = 1008, 23941 }, 23942 }; 23943 23944 static const struct cipher_testvec camellia_ctr_tv_template[] = { 23945 { /* Generated with Crypto++ */ 23946 .key = "\x85\x62\x3F\x1C\xF9\xD6\x1C\xF9" 23947 "\xD6\xB3\x90\x6D\x4A\x90\x6D\x4A" 23948 "\x27\x04\xE1\x27\x04\xE1\xBE\x9B" 23949 "\x78\xBE\x9B\x78\x55\x32\x0F\x55", 23950 .klen = 32, 23951 .iv = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F" 23952 "\xC4\x29\x8E\xF3\x35\x9A\xFF\x64", 23953 .iv_out = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F" 23954 "\xC4\x29\x8E\xF3\x35\x9A\xFF\x83", 23955 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 23956 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 23957 "\x3A\xD1\x45\xDC\x73\x0A\x7E\x15" 23958 "\xAC\x20\xB7\x4E\xE5\x59\xF0\x87" 23959 "\x1E\x92\x29\xC0\x34\xCB\x62\xF9" 23960 "\x6D\x04\x9B\x0F\xA6\x3D\xD4\x48" 23961 "\xDF\x76\x0D\x81\x18\xAF\x23\xBA" 23962 "\x51\xE8\x5C\xF3\x8A\x21\x95\x2C" 23963 "\xC3\x37\xCE\x65\xFC\x70\x07\x9E" 23964 "\x12\xA9\x40\xD7\x4B\xE2\x79\x10" 23965 "\x84\x1B\xB2\x26\xBD\x54\xEB\x5F" 23966 "\xF6\x8D\x01\x98\x2F\xC6\x3A\xD1" 23967 "\x68\xFF\x73\x0A\xA1\x15\xAC\x43" 23968 "\xDA\x4E\xE5\x7C\x13\x87\x1E\xB5" 23969 "\x29\xC0\x57\xEE\x62\xF9\x90\x04" 23970 "\x9B\x32\xC9\x3D\xD4\x6B\x02\x76" 23971 "\x0D\xA4\x18\xAF\x46\xDD\x51\xE8" 23972 "\x7F\x16\x8A\x21\xB8\x2C\xC3\x5A" 23973 "\xF1\x65\xFC\x93\x07\x9E\x35\xCC" 23974 "\x40\xD7\x6E\x05\x79\x10\xA7\x1B" 23975 "\xB2\x49\xE0\x54\xEB\x82\x19\x8D" 23976 "\x24\xBB\x2F\xC6\x5D\xF4\x68\xFF" 23977 "\x96\x0A\xA1\x38\xCF\x43\xDA\x71" 23978 "\x08\x7C\x13\xAA\x1E\xB5\x4C\xE3" 23979 "\x57\xEE\x85\x1C\x90\x27\xBE\x32" 23980 "\xC9\x60\xF7\x6B\x02\x99\x0D\xA4" 23981 "\x3B\xD2\x46\xDD\x74\x0B\x7F\x16" 23982 "\xAD\x21\xB8\x4F\xE6\x5A\xF1\x88" 23983 "\x1F\x93\x2A\xC1\x35\xCC\x63\xFA" 23984 "\x6E\x05\x9C\x10\xA7\x3E\xD5\x49" 23985 "\xE0\x77\x0E\x82\x19\xB0\x24\xBB" 23986 "\x52\xE9\x5D\xF4\x8B\x22\x96\x2D" 23987 "\xC4\x38\xCF\x66\xFD\x71\x08\x9F" 23988 "\x13\xAA\x41\xD8\x4C\xE3\x7A\x11" 23989 "\x85\x1C\xB3\x27\xBE\x55\xEC\x60" 23990 "\xF7\x8E\x02\x99\x30\xC7\x3B\xD2" 23991 "\x69\x00\x74\x0B\xA2\x16\xAD\x44" 23992 "\xDB\x4F\xE6\x7D\x14\x88\x1F\xB6" 23993 "\x2A\xC1\x58\xEF\x63\xFA\x91\x05" 23994 "\x9C\x33\xCA\x3E\xD5\x6C\x03\x77" 23995 "\x0E\xA5\x19\xB0\x47\xDE\x52\xE9" 23996 "\x80\x17\x8B\x22\xB9\x2D\xC4\x5B" 23997 "\xF2\x66\xFD\x94\x08\x9F\x36\xCD" 23998 "\x41\xD8\x6F\x06\x7A\x11\xA8\x1C" 23999 "\xB3\x4A\xE1\x55\xEC\x83\x1A\x8E" 24000 "\x25\xBC\x30\xC7\x5E\xF5\x69\x00" 24001 "\x97\x0B\xA2\x39\xD0\x44\xDB\x72" 24002 "\x09\x7D\x14\xAB\x1F\xB6\x4D\xE4" 24003 "\x58\xEF\x86\x1D\x91\x28\xBF\x33" 24004 "\xCA\x61\xF8\x6C\x03\x9A\x0E\xA5" 24005 "\x3C\xD3\x47\xDE\x75\x0C\x80\x17" 24006 "\xAE\x22\xB9\x50\xE7\x5B\xF2\x89" 24007 "\x20\x94\x2B\xC2\x36\xCD\x64\xFB" 24008 "\x6F\x06\x9D\x11\xA8\x3F\xD6\x4A" 24009 "\xE1\x78\x0F\x83\x1A\xB1\x25\xBC" 24010 "\x53\xEA\x5E\xF5\x8C\x00\x97\x2E" 24011 "\xC5\x39\xD0\x67\xFE\x72\x09\xA0" 24012 "\x14\xAB\x42\xD9\x4D\xE4\x7B\x12" 24013 "\x86\x1D\xB4\x28\xBF\x56\xED\x61" 24014 "\xF8\x8F\x03\x9A\x31\xC8\x3C\xD3" 24015 "\x6A\x01\x75\x0C\xA3\x17\xAE\x45" 24016 "\xDC\x50\xE7\x7E\x15\x89\x20\xB7", 24017 .ctext = "\xF3\x06\x3A\x84\xCD\xBA\x8E\x11" 24018 "\xB7\x74\x6F\x5C\x97\xFB\x36\xFE" 24019 "\xDE\x71\x58\xD4\x15\xD1\xC1\xA4" 24020 "\xC9\x28\x74\xA6\x6B\xC7\x95\xA6" 24021 "\x6C\x77\xF7\x2F\xDF\xC7\xBB\x85" 24022 "\x60\xFC\xE8\x94\xE8\xB5\x09\x2C" 24023 "\x1E\x43\xEF\x6C\xE9\x98\xC5\xA0" 24024 "\x7B\x13\xE5\x7F\xF8\x49\x9A\x8C" 24025 "\xE6\x7B\x08\xC3\x32\x66\x55\x4E" 24026 "\xA5\x44\x1D\x2C\x18\xC7\x29\x1F" 24027 "\x61\x28\x4A\xE3\xCD\xE5\x47\xB2" 24028 "\x82\x2F\x66\x83\x91\x51\xAE\xD7" 24029 "\x1C\x91\x3C\x57\xE3\x1D\x5A\xC9" 24030 "\xFD\xC5\x58\x58\xEF\xCC\x33\xC9" 24031 "\x0F\xEA\x26\x32\xD1\x15\x19\x2D" 24032 "\x25\xB4\x7F\xB0\xDF\xFB\x88\x60" 24033 "\x4E\x4D\x06\x7D\xCC\x1F\xED\x3B" 24034 "\x68\x84\xD5\xB3\x1B\xE7\xB9\xA1" 24035 "\x68\x8B\x2C\x1A\x44\xDA\x63\xD3" 24036 "\x29\xE9\x59\x32\x1F\x30\x1C\x43" 24037 "\xEA\x3A\xA3\x6B\x54\x3C\xAA\x11" 24038 "\xAD\x38\x20\xC9\xB9\x8A\x64\x66" 24039 "\x5A\x07\x49\xDF\xA1\x9C\xF9\x76" 24040 "\x36\x65\xB6\x81\x8F\x76\x09\xE5" 24041 "\xEB\xD1\x29\xA4\xE4\xF4\x4C\xCD" 24042 "\xAF\xFC\xB9\x16\xD9\xC3\x73\x6A" 24043 "\x33\x12\xF8\x7E\xBC\xCC\x7D\x80" 24044 "\xBF\x3C\x25\x06\x13\x84\xFA\x35" 24045 "\xF7\x40\xFA\xA1\x44\x13\x70\xD8" 24046 "\x01\xF9\x85\x15\x63\xEC\x7D\xB9" 24047 "\x02\xD8\xBA\x41\x6C\x92\x68\x66" 24048 "\x95\xDD\xD6\x42\xE7\xBB\xE1\xFD" 24049 "\x28\x3E\x94\xB6\xBD\xA7\xBF\x47" 24050 "\x58\x8D\xFF\x19\x30\x75\x0D\x48" 24051 "\x94\xE9\xA6\xCD\xB3\x8E\x1E\xCD" 24052 "\x59\xBC\x1A\xAC\x3C\x4F\xA9\xEB" 24053 "\xF4\xA7\xE4\x75\x4A\x18\x40\xC9" 24054 "\x1E\xEC\x06\x9C\x28\x4B\xF7\x2B" 24055 "\xE2\xEF\xD6\x42\x2E\xBB\xFC\x0A" 24056 "\x79\xA2\x99\x28\x93\x1B\x00\x57" 24057 "\x35\x1E\x1A\x93\x90\xA4\x68\x95" 24058 "\x5E\x57\x40\xD5\xA9\xAA\x19\x48" 24059 "\xEC\xFF\x76\x77\xDC\x78\x89\x76" 24060 "\xE5\x3B\x00\xEC\x58\x4D\xD1\xE3" 24061 "\xC8\x6C\x2C\x45\x5E\x5F\xD9\x4E" 24062 "\x71\xA5\x36\x6D\x03\xF1\xC7\xD5" 24063 "\xF3\x63\xC0\xD8\xCB\x2B\xF1\xA8" 24064 "\xB9\x2B\xE6\x0B\xB9\x65\x78\xA0" 24065 "\xC4\x46\xE6\x9B\x8B\x43\x2D\xAB" 24066 "\x70\xA6\xE0\x59\x1E\xAC\x9D\xE0" 24067 "\x76\x44\x45\xF3\x24\x11\x57\x98" 24068 "\x9A\x86\xB4\x12\x80\x28\x86\x20" 24069 "\x23\x9D\x2D\xE9\x38\x32\xB1\xE1" 24070 "\xCF\x0A\x23\x73\x7D\xC5\x80\x3D" 24071 "\x9F\x6D\xA0\xD0\xEE\x93\x8A\x79" 24072 "\x3A\xDD\x1D\xBB\x9E\x26\x5D\x01" 24073 "\x44\xD0\xD4\x4E\xC3\xF1\xE4\x38" 24074 "\x09\x62\x0A\x1A\x4E\xD2\x63\x0F" 24075 "\x6E\x3E\xD2\xA4\x3A\xF4\xF3\xFF" 24076 "\x7E\x42\xEC\xB6\x6F\x4D\x6B\x48" 24077 "\xE6\xA6\x50\x80\x78\x9E\xF1\xB0" 24078 "\x4D\xB2\x0D\x3D\xFC\x40\x25\x4D", 24079 .len = 496, 24080 }, { /* Generated with Crypto++ */ 24081 .key = "\x85\x62\x3F\x1C\xF9\xD6\x1C\xF9" 24082 "\xD6\xB3\x90\x6D\x4A\x90\x6D\x4A" 24083 "\x27\x04\xE1\x27\x04\xE1\xBE\x9B" 24084 "\x78\xBE\x9B\x78\x55\x32\x0F\x55", 24085 .klen = 32, 24086 .iv = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F" 24087 "\xC4\x29\x8E\xF3\x35\x9A\xFF\x64", 24088 .iv_out = "\xE2\x24\x89\xEE\x53\xB8\x1D\x5F" 24089 "\xC4\x29\x8E\xF3\x35\x9A\xFF\xA4", 24090 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 24091 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 24092 "\x3A\xD1\x45\xDC\x73\x0A\x7E\x15" 24093 "\xAC\x20\xB7\x4E\xE5\x59\xF0\x87" 24094 "\x1E\x92\x29\xC0\x34\xCB\x62\xF9" 24095 "\x6D\x04\x9B\x0F\xA6\x3D\xD4\x48" 24096 "\xDF\x76\x0D\x81\x18\xAF\x23\xBA" 24097 "\x51\xE8\x5C\xF3\x8A\x21\x95\x2C" 24098 "\xC3\x37\xCE\x65\xFC\x70\x07\x9E" 24099 "\x12\xA9\x40\xD7\x4B\xE2\x79\x10" 24100 "\x84\x1B\xB2\x26\xBD\x54\xEB\x5F" 24101 "\xF6\x8D\x01\x98\x2F\xC6\x3A\xD1" 24102 "\x68\xFF\x73\x0A\xA1\x15\xAC\x43" 24103 "\xDA\x4E\xE5\x7C\x13\x87\x1E\xB5" 24104 "\x29\xC0\x57\xEE\x62\xF9\x90\x04" 24105 "\x9B\x32\xC9\x3D\xD4\x6B\x02\x76" 24106 "\x0D\xA4\x18\xAF\x46\xDD\x51\xE8" 24107 "\x7F\x16\x8A\x21\xB8\x2C\xC3\x5A" 24108 "\xF1\x65\xFC\x93\x07\x9E\x35\xCC" 24109 "\x40\xD7\x6E\x05\x79\x10\xA7\x1B" 24110 "\xB2\x49\xE0\x54\xEB\x82\x19\x8D" 24111 "\x24\xBB\x2F\xC6\x5D\xF4\x68\xFF" 24112 "\x96\x0A\xA1\x38\xCF\x43\xDA\x71" 24113 "\x08\x7C\x13\xAA\x1E\xB5\x4C\xE3" 24114 "\x57\xEE\x85\x1C\x90\x27\xBE\x32" 24115 "\xC9\x60\xF7\x6B\x02\x99\x0D\xA4" 24116 "\x3B\xD2\x46\xDD\x74\x0B\x7F\x16" 24117 "\xAD\x21\xB8\x4F\xE6\x5A\xF1\x88" 24118 "\x1F\x93\x2A\xC1\x35\xCC\x63\xFA" 24119 "\x6E\x05\x9C\x10\xA7\x3E\xD5\x49" 24120 "\xE0\x77\x0E\x82\x19\xB0\x24\xBB" 24121 "\x52\xE9\x5D\xF4\x8B\x22\x96\x2D" 24122 "\xC4\x38\xCF\x66\xFD\x71\x08\x9F" 24123 "\x13\xAA\x41\xD8\x4C\xE3\x7A\x11" 24124 "\x85\x1C\xB3\x27\xBE\x55\xEC\x60" 24125 "\xF7\x8E\x02\x99\x30\xC7\x3B\xD2" 24126 "\x69\x00\x74\x0B\xA2\x16\xAD\x44" 24127 "\xDB\x4F\xE6\x7D\x14\x88\x1F\xB6" 24128 "\x2A\xC1\x58\xEF\x63\xFA\x91\x05" 24129 "\x9C\x33\xCA\x3E\xD5\x6C\x03\x77" 24130 "\x0E\xA5\x19\xB0\x47\xDE\x52\xE9" 24131 "\x80\x17\x8B\x22\xB9\x2D\xC4\x5B" 24132 "\xF2\x66\xFD\x94\x08\x9F\x36\xCD" 24133 "\x41\xD8\x6F\x06\x7A\x11\xA8\x1C" 24134 "\xB3\x4A\xE1\x55\xEC\x83\x1A\x8E" 24135 "\x25\xBC\x30\xC7\x5E\xF5\x69\x00" 24136 "\x97\x0B\xA2\x39\xD0\x44\xDB\x72" 24137 "\x09\x7D\x14\xAB\x1F\xB6\x4D\xE4" 24138 "\x58\xEF\x86\x1D\x91\x28\xBF\x33" 24139 "\xCA\x61\xF8\x6C\x03\x9A\x0E\xA5" 24140 "\x3C\xD3\x47\xDE\x75\x0C\x80\x17" 24141 "\xAE\x22\xB9\x50\xE7\x5B\xF2\x89" 24142 "\x20\x94\x2B\xC2\x36\xCD\x64\xFB" 24143 "\x6F\x06\x9D\x11\xA8\x3F\xD6\x4A" 24144 "\xE1\x78\x0F\x83\x1A\xB1\x25\xBC" 24145 "\x53\xEA\x5E\xF5\x8C\x00\x97\x2E" 24146 "\xC5\x39\xD0\x67\xFE\x72\x09\xA0" 24147 "\x14\xAB\x42\xD9\x4D\xE4\x7B\x12" 24148 "\x86\x1D\xB4\x28\xBF\x56\xED\x61" 24149 "\xF8\x8F\x03\x9A\x31\xC8\x3C\xD3" 24150 "\x6A\x01\x75\x0C\xA3\x17\xAE\x45" 24151 "\xDC\x50\xE7\x7E\x15\x89\x20\xB7" 24152 "\x2B\xC2\x59\xF0\x64\xFB\x92\x06" 24153 "\x9D\x34\xCB\x3F\xD6\x6D\x04\x78" 24154 "\x0F\xA6\x1A\xB1\x48\xDF\x53\xEA" 24155 "\x81\x18\x8C\x23\xBA\x2E\xC5\x5C" 24156 "\xF3\x67\xFE\x95\x09\xA0\x37\xCE" 24157 "\x42\xD9\x70\x07\x7B\x12\xA9\x1D" 24158 "\xB4\x4B\xE2\x56\xED\x84\x1B\x8F" 24159 "\x26\xBD\x31\xC8\x5F\xF6\x6A\x01" 24160 "\x98\x0C\xA3\x3A\xD1\x45\xDC\x73" 24161 "\x0A\x7E\x15\xAC\x20\xB7\x4E\xE5" 24162 "\x59\xF0\x87\x1E\x92\x29\xC0\x34" 24163 "\xCB\x62\xF9\x6D\x04\x9B\x0F\xA6" 24164 "\x3D\xD4\x48\xDF\x76\x0D\x81\x18" 24165 "\xAF\x23\xBA\x51\xE8\x5C\xF3\x8A" 24166 "\x21\x95\x2C\xC3\x37\xCE\x65\xFC" 24167 "\x70\x07\x9E\x12\xA9\x40\xD7\x4B" 24168 "\xE2\x79\x10\x84\x1B\xB2\x26\xBD" 24169 "\x54\xEB\x5F\xF6\x8D\x01\x98\x2F" 24170 "\xC6\x3A\xD1\x68\xFF\x73\x0A\xA1" 24171 "\x15\xAC\x43\xDA\x4E\xE5\x7C\x13" 24172 "\x87\x1E\xB5\x29\xC0\x57\xEE\x62" 24173 "\xF9\x90\x04\x9B\x32\xC9\x3D\xD4" 24174 "\x6B\x02\x76\x0D\xA4\x18\xAF\x46" 24175 "\xDD\x51\xE8\x7F\x16\x8A\x21\xB8" 24176 "\x2C\xC3\x5A\xF1\x65\xFC\x93\x07" 24177 "\x9E\x35\xCC\x40\xD7\x6E\x05\x79" 24178 "\x10\xA7\x1B\xB2\x49\xE0\x54\xEB" 24179 "\x82\x19\x8D\x24\xBB\x2F\xC6\x5D" 24180 "\xF4\x68\xFF\x96\x0A\xA1\x38\xCF" 24181 "\x43\xDA\x71\x08\x7C\x13\xAA\x1E" 24182 "\xB5\x4C\xE3\x57\xEE\x85\x1C\x90" 24183 "\x27\xBE\x32\xC9\x60\xF7\x6B\x02" 24184 "\x99\x0D\xA4\x3B\xD2\x46\xDD\x74" 24185 "\x0B\x7F\x16\xAD\x21\xB8\x4F\xE6" 24186 "\x5A\xF1\x88\x1F\x93\x2A\xC1\x35" 24187 "\xCC\x63\xFA\x6E\x05\x9C\x10\xA7" 24188 "\x3E\xD5\x49\xE0\x77\x0E\x82\x19" 24189 "\xB0\x24\xBB\x52\xE9\x5D\xF4\x8B" 24190 "\x22\x96\x2D\xC4\x38\xCF\x66\xFD" 24191 "\x71\x08\x9F\x13\xAA\x41\xD8\x4C" 24192 "\xE3\x7A\x11\x85\x1C\xB3\x27\xBE" 24193 "\x55\xEC\x60\xF7\x8E\x02\x99\x30" 24194 "\xC7\x3B\xD2\x69\x00\x74\x0B\xA2" 24195 "\x16\xAD\x44\xDB\x4F\xE6\x7D\x14" 24196 "\x88\x1F\xB6\x2A\xC1\x58\xEF\x63" 24197 "\xFA\x91\x05\x9C\x33\xCA\x3E\xD5" 24198 "\x6C\x03\x77\x0E\xA5\x19\xB0\x47" 24199 "\xDE\x52\xE9\x80\x17\x8B\x22\xB9" 24200 "\x2D\xC4\x5B\xF2\x66\xFD\x94\x08" 24201 "\x9F\x36\xCD\x41\xD8\x6F\x06\x7A" 24202 "\x11\xA8\x1C\xB3\x4A\xE1\x55\xEC" 24203 "\x83\x1A\x8E\x25\xBC\x30\xC7\x5E" 24204 "\xF5\x69\x00\x97\x0B\xA2\x39\xD0" 24205 "\x44\xDB\x72\x09\x7D\x14\xAB\x1F" 24206 "\xB6\x4D\xE4\x58\xEF\x86\x1D\x91" 24207 "\x28\xBF\x33\xCA\x61\xF8\x6C\x03" 24208 "\x9A\x0E\xA5\x3C\xD3\x47\xDE\x75" 24209 "\x0C\x80\x17\xAE\x22\xB9\x50\xE7" 24210 "\x5B\xF2\x89\x20\x94\x2B\xC2\x36" 24211 "\xCD\x64\xFB\x6F\x06\x9D\x11\xA8" 24212 "\x3F\xD6\x4A\xE1\x78\x0F\x83\x1A" 24213 "\xB1\x25\xBC\x53\xEA\x5E\xF5\x8C" 24214 "\x00\x97\x2E\xC5\x39\xD0\x67\xFE" 24215 "\x72\x09\xA0\x14\xAB\x42\xD9\x4D" 24216 "\xE4\x7B\x12", 24217 .ctext = "\xF3\x06\x3A\x84\xCD\xBA\x8E\x11" 24218 "\xB7\x74\x6F\x5C\x97\xFB\x36\xFE" 24219 "\xDE\x71\x58\xD4\x15\xD1\xC1\xA4" 24220 "\xC9\x28\x74\xA6\x6B\xC7\x95\xA6" 24221 "\x6C\x77\xF7\x2F\xDF\xC7\xBB\x85" 24222 "\x60\xFC\xE8\x94\xE8\xB5\x09\x2C" 24223 "\x1E\x43\xEF\x6C\xE9\x98\xC5\xA0" 24224 "\x7B\x13\xE5\x7F\xF8\x49\x9A\x8C" 24225 "\xE6\x7B\x08\xC3\x32\x66\x55\x4E" 24226 "\xA5\x44\x1D\x2C\x18\xC7\x29\x1F" 24227 "\x61\x28\x4A\xE3\xCD\xE5\x47\xB2" 24228 "\x82\x2F\x66\x83\x91\x51\xAE\xD7" 24229 "\x1C\x91\x3C\x57\xE3\x1D\x5A\xC9" 24230 "\xFD\xC5\x58\x58\xEF\xCC\x33\xC9" 24231 "\x0F\xEA\x26\x32\xD1\x15\x19\x2D" 24232 "\x25\xB4\x7F\xB0\xDF\xFB\x88\x60" 24233 "\x4E\x4D\x06\x7D\xCC\x1F\xED\x3B" 24234 "\x68\x84\xD5\xB3\x1B\xE7\xB9\xA1" 24235 "\x68\x8B\x2C\x1A\x44\xDA\x63\xD3" 24236 "\x29\xE9\x59\x32\x1F\x30\x1C\x43" 24237 "\xEA\x3A\xA3\x6B\x54\x3C\xAA\x11" 24238 "\xAD\x38\x20\xC9\xB9\x8A\x64\x66" 24239 "\x5A\x07\x49\xDF\xA1\x9C\xF9\x76" 24240 "\x36\x65\xB6\x81\x8F\x76\x09\xE5" 24241 "\xEB\xD1\x29\xA4\xE4\xF4\x4C\xCD" 24242 "\xAF\xFC\xB9\x16\xD9\xC3\x73\x6A" 24243 "\x33\x12\xF8\x7E\xBC\xCC\x7D\x80" 24244 "\xBF\x3C\x25\x06\x13\x84\xFA\x35" 24245 "\xF7\x40\xFA\xA1\x44\x13\x70\xD8" 24246 "\x01\xF9\x85\x15\x63\xEC\x7D\xB9" 24247 "\x02\xD8\xBA\x41\x6C\x92\x68\x66" 24248 "\x95\xDD\xD6\x42\xE7\xBB\xE1\xFD" 24249 "\x28\x3E\x94\xB6\xBD\xA7\xBF\x47" 24250 "\x58\x8D\xFF\x19\x30\x75\x0D\x48" 24251 "\x94\xE9\xA6\xCD\xB3\x8E\x1E\xCD" 24252 "\x59\xBC\x1A\xAC\x3C\x4F\xA9\xEB" 24253 "\xF4\xA7\xE4\x75\x4A\x18\x40\xC9" 24254 "\x1E\xEC\x06\x9C\x28\x4B\xF7\x2B" 24255 "\xE2\xEF\xD6\x42\x2E\xBB\xFC\x0A" 24256 "\x79\xA2\x99\x28\x93\x1B\x00\x57" 24257 "\x35\x1E\x1A\x93\x90\xA4\x68\x95" 24258 "\x5E\x57\x40\xD5\xA9\xAA\x19\x48" 24259 "\xEC\xFF\x76\x77\xDC\x78\x89\x76" 24260 "\xE5\x3B\x00\xEC\x58\x4D\xD1\xE3" 24261 "\xC8\x6C\x2C\x45\x5E\x5F\xD9\x4E" 24262 "\x71\xA5\x36\x6D\x03\xF1\xC7\xD5" 24263 "\xF3\x63\xC0\xD8\xCB\x2B\xF1\xA8" 24264 "\xB9\x2B\xE6\x0B\xB9\x65\x78\xA0" 24265 "\xC4\x46\xE6\x9B\x8B\x43\x2D\xAB" 24266 "\x70\xA6\xE0\x59\x1E\xAC\x9D\xE0" 24267 "\x76\x44\x45\xF3\x24\x11\x57\x98" 24268 "\x9A\x86\xB4\x12\x80\x28\x86\x20" 24269 "\x23\x9D\x2D\xE9\x38\x32\xB1\xE1" 24270 "\xCF\x0A\x23\x73\x7D\xC5\x80\x3D" 24271 "\x9F\x6D\xA0\xD0\xEE\x93\x8A\x79" 24272 "\x3A\xDD\x1D\xBB\x9E\x26\x5D\x01" 24273 "\x44\xD0\xD4\x4E\xC3\xF1\xE4\x38" 24274 "\x09\x62\x0A\x1A\x4E\xD2\x63\x0F" 24275 "\x6E\x3E\xD2\xA4\x3A\xF4\xF3\xFF" 24276 "\x7E\x42\xEC\xB6\x6F\x4D\x6B\x48" 24277 "\xE6\xA6\x50\x80\x78\x9E\xF1\xB0" 24278 "\x4D\xB2\x0D\x3D\xFC\x40\x25\x4D" 24279 "\x93\x11\x1C\xE9\xD2\x9F\x6E\x90" 24280 "\xE5\x41\x4A\xE2\x3C\x45\x29\x35" 24281 "\xEC\xD6\x47\x50\xCB\x7B\xA2\x32" 24282 "\xF7\x8B\x62\xF1\xE3\x9A\xFE\xC7" 24283 "\x1D\x8C\x02\x72\x68\x09\xE9\xB6" 24284 "\x4A\x80\xE6\xB1\x56\xDF\x90\xD4" 24285 "\x93\x74\xA4\xCE\x20\x23\xBF\x48" 24286 "\xA5\xDE\x1B\xFA\x40\x69\x31\x98" 24287 "\x62\x6E\xA5\xC7\xBF\x0C\x62\xE5" 24288 "\x6D\xE1\x93\xF1\x83\x10\x1C\xCA" 24289 "\xF6\x5C\x19\xF8\x90\x78\xCB\xE4" 24290 "\x0B\x3A\xB5\xF8\x43\x86\xD3\x3F" 24291 "\xBA\x83\x34\x3C\x42\xCC\x7D\x28" 24292 "\x29\x63\x4F\xD8\x02\x17\xC5\x07" 24293 "\x2C\xA4\xAC\x79\xCB\xC3\xA9\x09" 24294 "\x81\x45\x18\xED\xE4\xCB\x42\x3B" 24295 "\x87\x2D\x23\xDC\xC5\xBA\x45\xBD" 24296 "\x92\xE5\x02\x97\x96\xCE\xAD\xEC" 24297 "\xBA\xD8\x76\xF8\xCA\xC1\x31\xEC" 24298 "\x1E\x4F\x3F\x83\xF8\x33\xE8\x6E" 24299 "\xCC\xF8\x5F\xDD\x65\x50\x99\x69" 24300 "\xAF\x48\xCE\xA5\xBA\xB6\x14\x9F" 24301 "\x05\x93\xB2\xE6\x59\xC8\x28\xFE" 24302 "\x8F\x37\xF9\x64\xB9\xA5\x56\x8F" 24303 "\xF1\x1B\x90\xEF\xAE\xEB\xFC\x09" 24304 "\x11\x7A\xF2\x19\x0A\x0A\x9A\x3C" 24305 "\xE2\x5E\x29\xFA\x31\x9B\xC1\x74" 24306 "\x1E\x10\x3E\x07\xA9\x31\x6D\xF8" 24307 "\x81\xF5\xD5\x8A\x04\x23\x51\xAC" 24308 "\xA2\xE2\x63\xFD\x27\x1F\x79\x5B" 24309 "\x1F\xE8\xDA\x11\x49\x4D\x1C\xBA" 24310 "\x54\xCC\x0F\xBA\x92\x69\xE5\xCB" 24311 "\x41\x1A\x67\xA6\x40\x82\x70\x8C" 24312 "\x19\x79\x08\xA4\x51\x20\x7D\xC9" 24313 "\x12\x27\xAE\x20\x0D\x2C\xA1\x6D" 24314 "\xF4\x55\xD4\xE7\xE6\xD4\x28\x08" 24315 "\x00\x70\x12\x56\x56\x50\xAD\x14" 24316 "\x5C\x3E\xA2\xD1\x36\x3F\x36\x48" 24317 "\xED\xB1\x57\x3E\x5D\x15\xF6\x1E" 24318 "\x53\xE9\xA4\x3E\xED\x7D\xCF\x7D" 24319 "\x29\xAF\xF3\x1E\x51\xA8\x9F\x85" 24320 "\x8B\xF0\xBB\xCE\xCC\x39\xC3\x64" 24321 "\x4B\xF2\xAD\x70\x19\xD4\x44\x8F" 24322 "\x91\x76\xE8\x15\x66\x34\x9F\xF6" 24323 "\x0F\x15\xA4\xA8\x24\xF8\x58\xB1" 24324 "\x38\x46\x47\xC7\x9B\xCA\xE9\x42" 24325 "\x44\xAA\xE6\xB5\x9C\x91\xA4\xD3" 24326 "\x16\xA0\xED\x42\xBE\xB5\x06\x19" 24327 "\xBE\x67\xE8\xBC\x22\x32\xA4\x1E" 24328 "\x93\xEB\xBE\xE9\xE1\x93\xE5\x31" 24329 "\x3A\xA2\x75\xDF\xE3\x6B\xE7\xCC" 24330 "\xB4\x70\x20\xE0\x6D\x82\x7C\xC8" 24331 "\x94\x5C\x5E\x37\x18\xAD\xED\x8B" 24332 "\x44\x86\xCA\x5E\x07\xB7\x70\x8D" 24333 "\x40\x48\x19\x73\x7C\x78\x64\x0B" 24334 "\xDB\x01\xCA\xAE\x63\x19\xE9\xD1" 24335 "\x6B\x2C\x84\x10\x45\x42\x2E\xC3" 24336 "\xDF\x7F\xAA\xE8\x87\x1B\x63\x46" 24337 "\x74\x28\x9D\x05\x30\x20\x62\x41" 24338 "\xC0\x9F\x2C\x36\x2B\x78\xD7\x26" 24339 "\xDF\x58\x51\xED\xFA\xDC\x87\x79" 24340 "\xBF\x8C\xBF\xC4\x0F\xE5\x05\xDA" 24341 "\x45\xE3\x35\x0D\x69\x91\x54\x1C" 24342 "\xE7\x2C\x49\x08\x8B\x72\xFA\x5C" 24343 "\xF1\x6B\xD9", 24344 .len = 1011, 24345 }, { /* Generated with Crypto++ */ 24346 .key = "\x85\x62\x3F\x1C\xF9\xD6\x1C\xF9" 24347 "\xD6\xB3\x90\x6D\x4A\x90\x6D\x4A" 24348 "\x27\x04\xE1\x27\x04\xE1\xBE\x9B" 24349 "\x78\xBE\x9B\x78\x55\x32\x0F\x55", 24350 .klen = 32, 24351 .iv = "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" 24352 "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFD", 24353 .iv_out = "\x00\x00\x00\x00\x00\x00\x00\x00" 24354 "\x00\x00\x00\x00\x00\x00\x00\x3C", 24355 .ptext = "\x56\xED\x84\x1B\x8F\x26\xBD\x31" 24356 "\xC8\x5F\xF6\x6A\x01\x98\x0C\xA3" 24357 "\x3A\xD1\x45\xDC\x73\x0A\x7E\x15" 24358 "\xAC\x20\xB7\x4E\xE5\x59\xF0\x87" 24359 "\x1E\x92\x29\xC0\x34\xCB\x62\xF9" 24360 "\x6D\x04\x9B\x0F\xA6\x3D\xD4\x48" 24361 "\xDF\x76\x0D\x81\x18\xAF\x23\xBA" 24362 "\x51\xE8\x5C\xF3\x8A\x21\x95\x2C" 24363 "\xC3\x37\xCE\x65\xFC\x70\x07\x9E" 24364 "\x12\xA9\x40\xD7\x4B\xE2\x79\x10" 24365 "\x84\x1B\xB2\x26\xBD\x54\xEB\x5F" 24366 "\xF6\x8D\x01\x98\x2F\xC6\x3A\xD1" 24367 "\x68\xFF\x73\x0A\xA1\x15\xAC\x43" 24368 "\xDA\x4E\xE5\x7C\x13\x87\x1E\xB5" 24369 "\x29\xC0\x57\xEE\x62\xF9\x90\x04" 24370 "\x9B\x32\xC9\x3D\xD4\x6B\x02\x76" 24371 "\x0D\xA4\x18\xAF\x46\xDD\x51\xE8" 24372 "\x7F\x16\x8A\x21\xB8\x2C\xC3\x5A" 24373 "\xF1\x65\xFC\x93\x07\x9E\x35\xCC" 24374 "\x40\xD7\x6E\x05\x79\x10\xA7\x1B" 24375 "\xB2\x49\xE0\x54\xEB\x82\x19\x8D" 24376 "\x24\xBB\x2F\xC6\x5D\xF4\x68\xFF" 24377 "\x96\x0A\xA1\x38\xCF\x43\xDA\x71" 24378 "\x08\x7C\x13\xAA\x1E\xB5\x4C\xE3" 24379 "\x57\xEE\x85\x1C\x90\x27\xBE\x32" 24380 "\xC9\x60\xF7\x6B\x02\x99\x0D\xA4" 24381 "\x3B\xD2\x46\xDD\x74\x0B\x7F\x16" 24382 "\xAD\x21\xB8\x4F\xE6\x5A\xF1\x88" 24383 "\x1F\x93\x2A\xC1\x35\xCC\x63\xFA" 24384 "\x6E\x05\x9C\x10\xA7\x3E\xD5\x49" 24385 "\xE0\x77\x0E\x82\x19\xB0\x24\xBB" 24386 "\x52\xE9\x5D\xF4\x8B\x22\x96\x2D" 24387 "\xC4\x38\xCF\x66\xFD\x71\x08\x9F" 24388 "\x13\xAA\x41\xD8\x4C\xE3\x7A\x11" 24389 "\x85\x1C\xB3\x27\xBE\x55\xEC\x60" 24390 "\xF7\x8E\x02\x99\x30\xC7\x3B\xD2" 24391 "\x69\x00\x74\x0B\xA2\x16\xAD\x44" 24392 "\xDB\x4F\xE6\x7D\x14\x88\x1F\xB6" 24393 "\x2A\xC1\x58\xEF\x63\xFA\x91\x05" 24394 "\x9C\x33\xCA\x3E\xD5\x6C\x03\x77" 24395 "\x0E\xA5\x19\xB0\x47\xDE\x52\xE9" 24396 "\x80\x17\x8B\x22\xB9\x2D\xC4\x5B" 24397 "\xF2\x66\xFD\x94\x08\x9F\x36\xCD" 24398 "\x41\xD8\x6F\x06\x7A\x11\xA8\x1C" 24399 "\xB3\x4A\xE1\x55\xEC\x83\x1A\x8E" 24400 "\x25\xBC\x30\xC7\x5E\xF5\x69\x00" 24401 "\x97\x0B\xA2\x39\xD0\x44\xDB\x72" 24402 "\x09\x7D\x14\xAB\x1F\xB6\x4D\xE4" 24403 "\x58\xEF\x86\x1D\x91\x28\xBF\x33" 24404 "\xCA\x61\xF8\x6C\x03\x9A\x0E\xA5" 24405 "\x3C\xD3\x47\xDE\x75\x0C\x80\x17" 24406 "\xAE\x22\xB9\x50\xE7\x5B\xF2\x89" 24407 "\x20\x94\x2B\xC2\x36\xCD\x64\xFB" 24408 "\x6F\x06\x9D\x11\xA8\x3F\xD6\x4A" 24409 "\xE1\x78\x0F\x83\x1A\xB1\x25\xBC" 24410 "\x53\xEA\x5E\xF5\x8C\x00\x97\x2E" 24411 "\xC5\x39\xD0\x67\xFE\x72\x09\xA0" 24412 "\x14\xAB\x42\xD9\x4D\xE4\x7B\x12" 24413 "\x86\x1D\xB4\x28\xBF\x56\xED\x61" 24414 "\xF8\x8F\x03\x9A\x31\xC8\x3C\xD3" 24415 "\x6A\x01\x75\x0C\xA3\x17\xAE\x45" 24416 "\xDC\x50\xE7\x7E\x15\x89\x20\xB7" 24417 "\x2B\xC2\x59\xF0\x64\xFB\x92\x06" 24418 "\x9D\x34\xCB\x3F\xD6\x6D\x04\x78" 24419 "\x0F\xA6\x1A\xB1\x48\xDF\x53\xEA" 24420 "\x81\x18\x8C\x23\xBA\x2E\xC5\x5C" 24421 "\xF3\x67\xFE\x95\x09\xA0\x37\xCE" 24422 "\x42\xD9\x70\x07\x7B\x12\xA9\x1D" 24423 "\xB4\x4B\xE2\x56\xED\x84\x1B\x8F" 24424 "\x26\xBD\x31\xC8\x5F\xF6\x6A\x01" 24425 "\x98\x0C\xA3\x3A\xD1\x45\xDC\x73" 24426 "\x0A\x7E\x15\xAC\x20\xB7\x4E\xE5" 24427 "\x59\xF0\x87\x1E\x92\x29\xC0\x34" 24428 "\xCB\x62\xF9\x6D\x04\x9B\x0F\xA6" 24429 "\x3D\xD4\x48\xDF\x76\x0D\x81\x18" 24430 "\xAF\x23\xBA\x51\xE8\x5C\xF3\x8A" 24431 "\x21\x95\x2C\xC3\x37\xCE\x65\xFC" 24432 "\x70\x07\x9E\x12\xA9\x40\xD7\x4B" 24433 "\xE2\x79\x10\x84\x1B\xB2\x26\xBD" 24434 "\x54\xEB\x5F\xF6\x8D\x01\x98\x2F" 24435 "\xC6\x3A\xD1\x68\xFF\x73\x0A\xA1" 24436 "\x15\xAC\x43\xDA\x4E\xE5\x7C\x13" 24437 "\x87\x1E\xB5\x29\xC0\x57\xEE\x62" 24438 "\xF9\x90\x04\x9B\x32\xC9\x3D\xD4" 24439 "\x6B\x02\x76\x0D\xA4\x18\xAF\x46" 24440 "\xDD\x51\xE8\x7F\x16\x8A\x21\xB8" 24441 "\x2C\xC3\x5A\xF1\x65\xFC\x93\x07" 24442 "\x9E\x35\xCC\x40\xD7\x6E\x05\x79" 24443 "\x10\xA7\x1B\xB2\x49\xE0\x54\xEB" 24444 "\x82\x19\x8D\x24\xBB\x2F\xC6\x5D" 24445 "\xF4\x68\xFF\x96\x0A\xA1\x38\xCF" 24446 "\x43\xDA\x71\x08\x7C\x13\xAA\x1E" 24447 "\xB5\x4C\xE3\x57\xEE\x85\x1C\x90" 24448 "\x27\xBE\x32\xC9\x60\xF7\x6B\x02" 24449 "\x99\x0D\xA4\x3B\xD2\x46\xDD\x74" 24450 "\x0B\x7F\x16\xAD\x21\xB8\x4F\xE6" 24451 "\x5A\xF1\x88\x1F\x93\x2A\xC1\x35" 24452 "\xCC\x63\xFA\x6E\x05\x9C\x10\xA7" 24453 "\x3E\xD5\x49\xE0\x77\x0E\x82\x19" 24454 "\xB0\x24\xBB\x52\xE9\x5D\xF4\x8B" 24455 "\x22\x96\x2D\xC4\x38\xCF\x66\xFD" 24456 "\x71\x08\x9F\x13\xAA\x41\xD8\x4C" 24457 "\xE3\x7A\x11\x85\x1C\xB3\x27\xBE" 24458 "\x55\xEC\x60\xF7\x8E\x02\x99\x30" 24459 "\xC7\x3B\xD2\x69\x00\x74\x0B\xA2" 24460 "\x16\xAD\x44\xDB\x4F\xE6\x7D\x14" 24461 "\x88\x1F\xB6\x2A\xC1\x58\xEF\x63" 24462 "\xFA\x91\x05\x9C\x33\xCA\x3E\xD5" 24463 "\x6C\x03\x77\x0E\xA5\x19\xB0\x47" 24464 "\xDE\x52\xE9\x80\x17\x8B\x22\xB9" 24465 "\x2D\xC4\x5B\xF2\x66\xFD\x94\x08" 24466 "\x9F\x36\xCD\x41\xD8\x6F\x06\x7A" 24467 "\x11\xA8\x1C\xB3\x4A\xE1\x55\xEC" 24468 "\x83\x1A\x8E\x25\xBC\x30\xC7\x5E" 24469 "\xF5\x69\x00\x97\x0B\xA2\x39\xD0" 24470 "\x44\xDB\x72\x09\x7D\x14\xAB\x1F" 24471 "\xB6\x4D\xE4\x58\xEF\x86\x1D\x91" 24472 "\x28\xBF\x33\xCA\x61\xF8\x6C\x03" 24473 "\x9A\x0E\xA5\x3C\xD3\x47\xDE\x75" 24474 "\x0C\x80\x17\xAE\x22\xB9\x50\xE7" 24475 "\x5B\xF2\x89\x20\x94\x2B\xC2\x36" 24476 "\xCD\x64\xFB\x6F\x06\x9D\x11\xA8" 24477 "\x3F\xD6\x4A\xE1\x78\x0F\x83\x1A" 24478 "\xB1\x25\xBC\x53\xEA\x5E\xF5\x8C" 24479 "\x00\x97\x2E\xC5\x39\xD0\x67\xFE" 24480 "\x72\x09\xA0\x14\xAB\x42\xD9\x4D", 24481 .ctext = "\x85\x79\x6C\x8B\x2B\x6D\x14\xF9" 24482 "\xA6\x83\xB6\x80\x5B\x3A\xF3\x7E" 24483 "\x30\x29\xEB\x1F\xDC\x19\x5F\xEB" 24484 "\xF7\xC4\x27\x04\x51\x87\xD7\x6F" 24485 "\xB8\x4E\x07\xFB\xAC\x3B\x08\xB4" 24486 "\x4D\xCB\xE8\xE1\x71\x7D\x4F\x48" 24487 "\xCD\x81\x64\xA5\xC4\x07\x1A\x9A" 24488 "\x4B\x62\x90\x0E\xC8\xB3\x2B\x6B" 24489 "\x8F\x9C\x6E\x72\x4B\xBA\xEF\x07" 24490 "\x2C\x56\x07\x5E\x37\x30\x60\xA9" 24491 "\xE3\xEF\xD6\x69\xE1\xA1\x77\x64" 24492 "\x93\x75\x7A\xB7\x7A\x3B\xE9\x43" 24493 "\x23\x35\x95\x91\x80\x8A\xC7\xCF" 24494 "\xC3\xD5\xBF\xE7\xFE\x4C\x06\x6B" 24495 "\x05\x19\x48\xE2\x62\xBA\x4F\xF2" 24496 "\xFB\xEE\xE4\xCB\x79\x9D\xA3\x10" 24497 "\x1D\x29\x8C\x1D\x7A\x88\x5A\xDD" 24498 "\x4E\xB6\x18\xAA\xCD\xE6\x33\x96" 24499 "\xD9\x0F\x90\x5A\x78\x76\x4D\x77" 24500 "\x3C\x20\x89\x3B\xA3\xF9\x07\xFD" 24501 "\xE4\xE8\x20\x2D\x15\x0A\x63\x49" 24502 "\xF5\x4F\x89\xD8\xDE\xA1\x28\x78" 24503 "\x28\x07\x09\x1B\x03\x94\x1D\x4B" 24504 "\x82\x28\x1E\x1D\x95\xBA\xAC\x85" 24505 "\x71\x6E\x3C\x18\x4B\x77\x74\x79" 24506 "\xBF\x67\x0A\x53\x3C\x94\xD9\x60" 24507 "\xE9\x6D\x40\x34\xA0\x2A\x53\x5D" 24508 "\x27\xD5\x47\xF9\xC3\x4B\x27\x29" 24509 "\xE4\x76\x9C\x3F\xA7\x1C\x87\xFC" 24510 "\x6E\x0F\xCF\x9B\x60\xF0\xF0\x8B" 24511 "\x70\x1C\x84\x81\x72\x4D\xB4\x98" 24512 "\x23\x62\xE7\x6A\x2B\xFC\xA5\xB2" 24513 "\xFF\xF5\x71\x07\xCD\x90\x23\x13" 24514 "\x19\xD7\x79\x36\x6C\x9D\x55\x8B" 24515 "\x93\x78\x86\x05\x69\x46\xD0\xC5" 24516 "\x39\x09\xEB\x79\xEF\xFA\x9F\xAE" 24517 "\xF3\xD5\x44\xC3\xFD\x86\xD2\x7C" 24518 "\x83\x4B\xD8\x75\x9C\x18\x04\x7B" 24519 "\x73\xAD\x72\xA4\xF6\xAB\xCF\x4B" 24520 "\xCC\x01\x45\x90\xA6\x43\x05\x0C" 24521 "\x6C\x4F\x62\x77\x57\x97\x9F\xEE" 24522 "\x75\xA7\x3C\x38\xD1\x0F\x3D\x0E" 24523 "\x2C\x43\x98\xFB\x13\x65\x73\xE4" 24524 "\x3C\x1E\xD6\x90\x08\xF7\xE0\x99" 24525 "\x3B\xF1\x9D\x6C\x48\xA9\x0E\x32" 24526 "\x17\xC2\xCC\x20\xA1\x19\x26\xAA" 24527 "\xE0\x75\x2F\xFB\x54\x66\x0A\xDF" 24528 "\xB5\xF2\x1F\xC1\x34\x3C\x30\x56" 24529 "\xE8\xDC\xF7\x92\x6B\xBF\x17\x24" 24530 "\xEC\x94\xB5\x3B\xD6\xCE\xA2\x54" 24531 "\x10\x7F\x50\xDE\x69\x77\xD5\x37" 24532 "\xFE\x9C\x10\x83\xC5\xEB\xC9\x53" 24533 "\xB7\xF3\xC4\x20\xAF\x0A\x7E\x57" 24534 "\x3A\xE6\x75\xFE\x89\x00\x6E\x48" 24535 "\xFB\x99\x17\x2C\xF6\x64\x40\x95" 24536 "\x5E\xDC\x7A\xA6\x70\xC7\xF4\xDD" 24537 "\x52\x05\x24\x34\xF9\x0E\xC8\x64" 24538 "\x6D\xE2\xD8\x80\x53\x31\x4C\xFE" 24539 "\xB4\x3A\x5F\x19\xCF\x42\x1B\x22" 24540 "\x0B\x2D\x7B\xF1\xC5\x43\xF7\x5E" 24541 "\x12\xA8\x01\x64\x16\x0B\x26\x5A" 24542 "\x0C\x95\x0F\x40\xC5\x5A\x06\x7C" 24543 "\xCF\xF5\xD5\xB7\x7A\x34\x23\xB6" 24544 "\xAA\x9E\xA8\x98\xA2\xF8\x3D\xD3" 24545 "\x3F\x23\x69\x63\x56\x96\x45\xD6" 24546 "\x74\x23\x1D\x5C\x63\xCC\xD8\x78" 24547 "\x16\xE2\x9C\xD2\x80\x02\xF2\x28" 24548 "\x69\x2F\xC4\xA8\x15\x15\x24\x3B" 24549 "\xCB\xF0\x14\xE4\x62\xC8\xF3\xD1" 24550 "\x03\x58\x1B\x33\x77\x74\x1F\xB4" 24551 "\x07\x86\xF2\x21\xB7\x41\xAE\xBF" 24552 "\x25\xC2\xFF\x51\xEF\xEA\xCE\xC4" 24553 "\x5F\xD9\xB8\x18\x6A\xF0\x0F\x0D" 24554 "\xF8\x04\xBB\x6D\x62\x33\x87\x26" 24555 "\x4F\x2F\x14\x6E\xDC\xDB\x66\x09" 24556 "\x2A\xEF\x7D\x84\x10\xAC\x82\x5E" 24557 "\xD2\xE4\xAD\x74\x7A\x6D\xCC\x3A" 24558 "\x7B\x62\xD8\xD6\x07\x2D\xF7\xDF" 24559 "\x9B\xB3\x82\xCF\x9C\x1D\x76\x5C" 24560 "\xAC\x7B\xD4\x9B\x45\xA1\x64\x11" 24561 "\x66\xF1\xA7\x0B\xF9\xDD\x00\xDD" 24562 "\xA4\x45\x3D\x3E\x03\xC9\x2E\xCB" 24563 "\xC3\x14\x84\x72\xFD\x41\xDC\xBD" 24564 "\x75\xBE\xA8\xE5\x16\x48\x64\x39" 24565 "\xCA\xF3\xE6\xDC\x25\x24\xF1\x6D" 24566 "\xB2\x8D\xC5\x38\x54\xD3\x5D\x6D" 24567 "\x0B\x29\x10\x15\x0E\x13\x3B\xAC" 24568 "\x7E\xCC\x9E\x3E\x18\x48\xA6\x02" 24569 "\xEF\x03\xB2\x2E\xE3\xD2\x70\x21" 24570 "\xB4\x19\x26\xBE\x3A\x3D\x05\xE0" 24571 "\xF8\x09\xAF\xE4\x31\x26\x92\x2F" 24572 "\x8F\x55\xAC\xED\x0B\xB2\xA5\x34" 24573 "\xBE\x50\xB1\x02\x22\x96\xE3\x40" 24574 "\x7B\x70\x50\x6E\x3B\xD5\xE5\xA0" 24575 "\x8E\xA2\xAD\x14\x60\x5C\x7A\x2B" 24576 "\x3D\x1B\x7F\xC1\xC0\x2C\x56\x36" 24577 "\xD2\x0A\x32\x06\x97\x34\xB9\xF4" 24578 "\x6F\x9F\x7E\x80\xD0\x9D\xF7\x6A" 24579 "\x21\xC1\xA2\x6A\xB1\x96\x5B\x4D" 24580 "\x7A\x15\x6C\xC4\x4E\xB8\xE0\x9E" 24581 "\x6C\x50\xF3\x9C\xC9\xB5\x23\xB7" 24582 "\xF1\xD4\x29\x4A\x23\xC4\xAD\x1E" 24583 "\x2C\x07\xD2\x43\x5F\x57\x93\xCA" 24584 "\x85\xF9\x9F\xAD\x4C\xF1\xE4\xB1" 24585 "\x1A\x8E\x28\xA4\xB6\x52\x77\x7E" 24586 "\x68\xC6\x47\xB9\x76\xCC\x65\x5F" 24587 "\x0B\xF9\x67\x93\xD8\x0E\x9A\x37" 24588 "\x5F\x41\xED\x64\x6C\xAD\x5F\xED" 24589 "\x3F\x8D\xFB\x8E\x1E\xA0\xE4\x1F" 24590 "\xC2\xC7\xED\x18\x43\xE1\x20\x86" 24591 "\x5D\xBC\x30\x70\x22\xA1\xDC\x53" 24592 "\x10\x3A\x8D\x47\x82\xCD\x7F\x59" 24593 "\x03\x2D\x6D\xF5\xE7\x79\xD4\x07" 24594 "\x68\x2A\xA5\x42\x19\x4D\xAF\xF5" 24595 "\xED\x47\x83\xBC\x5F\x62\x84\xDA" 24596 "\xDA\x41\xFF\xB0\x1D\x64\xA3\xC8" 24597 "\xBD\x4E\xE0\xB8\x7F\xEE\x55\x0A" 24598 "\x4E\x61\xB2\x51\xF6\x9C\x95\xF6" 24599 "\x92\xBB\xF6\xC5\xF0\x09\x86\xDE" 24600 "\x37\x9E\x29\xF9\x2A\x18\x73\x0D" 24601 "\xDC\x7E\x6B\x7B\x1B\x43\x8C\xEA" 24602 "\x13\xC8\x1A\x47\x0A\x2D\x6D\x56" 24603 "\xCD\xD2\xE7\x53\x1A\xAB\x1C\x3C" 24604 "\xC5\x9B\x03\x70\x29\x2A\x49\x09" 24605 "\x67\xA1\xEA\xD6\x3A\x5B\xBF\x71" 24606 "\x1D\x48\x64\x6C\xFB\xC0\x9E\x36", 24607 .len = 1008, 24608 }, 24609 }; 24610 24611 static const struct cipher_testvec camellia_lrw_tv_template[] = { 24612 /* Generated from AES-LRW test vectors */ 24613 { 24614 .key = "\x45\x62\xac\x25\xf8\x28\x17\x6d" 24615 "\x4c\x26\x84\x14\xb5\x68\x01\x85" 24616 "\x25\x8e\x2a\x05\xe7\x3e\x9d\x03" 24617 "\xee\x5a\x83\x0c\xcc\x09\x4c\x87", 24618 .klen = 32, 24619 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 24620 "\x00\x00\x00\x00\x00\x00\x00\x01", 24621 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 24622 "\x38\x39\x41\x42\x43\x44\x45\x46", 24623 .ctext = "\x92\x68\x19\xd7\xb7\x5b\x0a\x31" 24624 "\x97\xcc\x72\xbe\x99\x17\xeb\x3e", 24625 .len = 16, 24626 }, { 24627 .key = "\x59\x70\x47\x14\xf5\x57\x47\x8c" 24628 "\xd7\x79\xe8\x0f\x54\x88\x79\x44" 24629 "\x0d\x48\xf0\xb7\xb1\x5a\x53\xea" 24630 "\x1c\xaa\x6b\x29\xc2\xca\xfb\xaf", 24631 .klen = 32, 24632 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 24633 "\x00\x00\x00\x00\x00\x00\x00\x02", 24634 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 24635 "\x38\x39\x41\x42\x43\x44\x45\x46", 24636 .ctext = "\x73\x09\xb7\x50\xb6\x77\x30\x50" 24637 "\x5c\x8a\x9c\x26\x77\x9d\xfc\x4a", 24638 .len = 16, 24639 }, { 24640 .key = "\xd8\x2a\x91\x34\xb2\x6a\x56\x50" 24641 "\x30\xfe\x69\xe2\x37\x7f\x98\x47" 24642 "\xcd\xf9\x0b\x16\x0c\x64\x8f\xb6" 24643 "\xb0\x0d\x0d\x1b\xae\x85\x87\x1f", 24644 .klen = 32, 24645 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 24646 "\x00\x00\x00\x02\x00\x00\x00\x00", 24647 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 24648 "\x38\x39\x41\x42\x43\x44\x45\x46", 24649 .ctext = "\x90\xae\x83\xe0\x22\xb9\x60\x91" 24650 "\xfa\xa9\xb7\x98\xe3\xed\x87\x01", 24651 .len = 16, 24652 }, { 24653 .key = "\x0f\x6a\xef\xf8\xd3\xd2\xbb\x15" 24654 "\x25\x83\xf7\x3c\x1f\x01\x28\x74" 24655 "\xca\xc6\xbc\x35\x4d\x4a\x65\x54" 24656 "\x90\xae\x61\xcf\x7b\xae\xbd\xcc" 24657 "\xad\xe4\x94\xc5\x4a\x29\xae\x70", 24658 .klen = 40, 24659 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 24660 "\x00\x00\x00\x00\x00\x00\x00\x01", 24661 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 24662 "\x38\x39\x41\x42\x43\x44\x45\x46", 24663 .ctext = "\x99\xe9\x6e\xd4\xc9\x21\xa5\xf0" 24664 "\xd8\x83\xef\xd9\x07\x16\x5f\x35", 24665 .len = 16, 24666 }, { 24667 .key = "\x8a\xd4\xee\x10\x2f\xbd\x81\xff" 24668 "\xf8\x86\xce\xac\x93\xc5\xad\xc6" 24669 "\xa0\x19\x07\xc0\x9d\xf7\xbb\xdd" 24670 "\x52\x13\xb2\xb7\xf0\xff\x11\xd8" 24671 "\xd6\x08\xd0\xcd\x2e\xb1\x17\x6f", 24672 .klen = 40, 24673 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 24674 "\x00\x00\x00\x02\x00\x00\x00\x00", 24675 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 24676 "\x38\x39\x41\x42\x43\x44\x45\x46", 24677 .ctext = "\x42\x88\xf4\xcb\x21\x11\x6d\x8e" 24678 "\xde\x1a\xf2\x29\xf1\x4a\xe0\x15", 24679 .len = 16, 24680 }, { 24681 .key = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c" 24682 "\x23\x84\xcb\x1c\x77\xd6\x19\x5d" 24683 "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21" 24684 "\xa7\x9c\x21\xf8\xcb\x90\x02\x89" 24685 "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1" 24686 "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e", 24687 .klen = 48, 24688 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 24689 "\x00\x00\x00\x00\x00\x00\x00\x01", 24690 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 24691 "\x38\x39\x41\x42\x43\x44\x45\x46", 24692 .ctext = "\x40\xaa\x34\x86\x4a\x8f\x78\xb9" 24693 "\xdb\xdb\x0f\x3d\x48\x70\xbe\x8d", 24694 .len = 16, 24695 }, { 24696 .key = "\xfb\x76\x15\xb2\x3d\x80\x89\x1d" 24697 "\xd4\x70\x98\x0b\xc7\x95\x84\xc8" 24698 "\xb2\xfb\x64\xce\x60\x97\x87\x8d" 24699 "\x17\xfc\xe4\x5a\x49\xe8\x30\xb7" 24700 "\x6e\x78\x17\xe7\x2d\x5e\x12\xd4" 24701 "\x60\x64\x04\x7a\xf1\x2f\x9e\x0c", 24702 .klen = 48, 24703 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 24704 "\x00\x00\x00\x02\x00\x00\x00\x00", 24705 .ptext = "\x30\x31\x32\x33\x34\x35\x36\x37" 24706 "\x38\x39\x41\x42\x43\x44\x45\x46", 24707 .ctext = "\x04\xab\x28\x37\x31\x7a\x26\xab" 24708 "\xa1\x70\x1b\x9c\xe7\xdd\x83\xff", 24709 .len = 16, 24710 }, { 24711 .key = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c" 24712 "\x23\x84\xcb\x1c\x77\xd6\x19\x5d" 24713 "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21" 24714 "\xa7\x9c\x21\xf8\xcb\x90\x02\x89" 24715 "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1" 24716 "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e", 24717 .klen = 48, 24718 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 24719 "\x00\x00\x00\x00\x00\x00\x00\x01", 24720 .ptext = "\x05\x11\xb7\x18\xab\xc6\x2d\xac" 24721 "\x70\x5d\xf6\x22\x94\xcd\xe5\x6c" 24722 "\x17\x6b\xf6\x1c\xf0\xf3\x6e\xf8" 24723 "\x50\x38\x1f\x71\x49\xb6\x57\xd6" 24724 "\x8f\xcb\x8d\x6b\xe3\xa6\x29\x90" 24725 "\xfe\x2a\x62\x82\xae\x6d\x8b\xf6" 24726 "\xad\x1e\x9e\x20\x5f\x38\xbe\x04" 24727 "\xda\x10\x8e\xed\xa2\xa4\x87\xab" 24728 "\xda\x6b\xb4\x0c\x75\xba\xd3\x7c" 24729 "\xc9\xac\x42\x31\x95\x7c\xc9\x04" 24730 "\xeb\xd5\x6e\x32\x69\x8a\xdb\xa6" 24731 "\x15\xd7\x3f\x4f\x2f\x66\x69\x03" 24732 "\x9c\x1f\x54\x0f\xde\x1f\xf3\x65" 24733 "\x4c\x96\x12\xed\x7c\x92\x03\x01" 24734 "\x6f\xbc\x35\x93\xac\xf1\x27\xf1" 24735 "\xb4\x96\x82\x5a\x5f\xb0\xa0\x50" 24736 "\x89\xa4\x8e\x66\x44\x85\xcc\xfd" 24737 "\x33\x14\x70\xe3\x96\xb2\xc3\xd3" 24738 "\xbb\x54\x5a\x1a\xf9\x74\xa2\xc5" 24739 "\x2d\x64\x75\xdd\xb4\x54\xe6\x74" 24740 "\x8c\xd3\x9d\x9e\x86\xab\x51\x53" 24741 "\xb7\x93\x3e\x6f\xd0\x4e\x2c\x40" 24742 "\xf6\xa8\x2e\x3e\x9d\xf4\x66\xa5" 24743 "\x76\x12\x73\x44\x1a\x56\xd7\x72" 24744 "\x88\xcd\x21\x8c\x4c\x0f\xfe\xda" 24745 "\x95\xe0\x3a\xa6\xa5\x84\x46\xcd" 24746 "\xd5\x3e\x9d\x3a\xe2\x67\xe6\x60" 24747 "\x1a\xe2\x70\x85\x58\xc2\x1b\x09" 24748 "\xe1\xd7\x2c\xca\xad\xa8\x8f\xf9" 24749 "\xac\xb3\x0e\xdb\xca\x2e\xe2\xb8" 24750 "\x51\x71\xd9\x3c\x6c\xf1\x56\xf8" 24751 "\xea\x9c\xf1\xfb\x0c\xe6\xb7\x10" 24752 "\x1c\xf8\xa9\x7c\xe8\x53\x35\xc1" 24753 "\x90\x3e\x76\x4a\x74\xa4\x21\x2c" 24754 "\xf6\x2c\x4e\x0f\x94\x3a\x88\x2e" 24755 "\x41\x09\x6a\x33\x7d\xf6\xdd\x3f" 24756 "\x8d\x23\x31\x74\x84\xeb\x88\x6e" 24757 "\xcc\xb9\xbc\x22\x83\x19\x07\x22" 24758 "\xa5\x2d\xdf\xa5\xf3\x80\x85\x78" 24759 "\x84\x39\x6a\x6d\x6a\x99\x4f\xa5" 24760 "\x15\xfe\x46\xb0\xe4\x6c\xa5\x41" 24761 "\x3c\xce\x8f\x42\x60\x71\xa7\x75" 24762 "\x08\x40\x65\x8a\x82\xbf\xf5\x43" 24763 "\x71\x96\xa9\x4d\x44\x8a\x20\xbe" 24764 "\xfa\x4d\xbb\xc0\x7d\x31\x96\x65" 24765 "\xe7\x75\xe5\x3e\xfd\x92\x3b\xc9" 24766 "\x55\xbb\x16\x7e\xf7\xc2\x8c\xa4" 24767 "\x40\x1d\xe5\xef\x0e\xdf\xe4\x9a" 24768 "\x62\x73\x65\xfd\x46\x63\x25\x3d" 24769 "\x2b\xaf\xe5\x64\xfe\xa5\x5c\xcf" 24770 "\x24\xf3\xb4\xac\x64\xba\xdf\x4b" 24771 "\xc6\x96\x7d\x81\x2d\x8d\x97\xf7" 24772 "\xc5\x68\x77\x84\x32\x2b\xcc\x85" 24773 "\x74\x96\xf0\x12\x77\x61\xb9\xeb" 24774 "\x71\xaa\x82\xcb\x1c\xdb\x89\xc8" 24775 "\xc6\xb5\xe3\x5c\x7d\x39\x07\x24" 24776 "\xda\x39\x87\x45\xc0\x2b\xbb\x01" 24777 "\xac\xbc\x2a\x5c\x7f\xfc\xe8\xce" 24778 "\x6d\x9c\x6f\xed\xd3\xc1\xa1\xd6" 24779 "\xc5\x55\xa9\x66\x2f\xe1\xc8\x32" 24780 "\xa6\x5d\xa4\x3a\x98\x73\xe8\x45" 24781 "\xa4\xc7\xa8\xb4\xf6\x13\x03\xf6" 24782 "\xe9\x2e\xc4\x29\x0f\x84\xdb\xc4" 24783 "\x21\xc4\xc2\x75\x67\x89\x37\x0a", 24784 .ctext = "\x90\x69\x8e\xf2\x14\x86\x59\xf9" 24785 "\xec\xe7\xfa\x3f\x48\x9d\x7f\x96" 24786 "\x67\x76\xac\x2c\xd2\x63\x18\x93" 24787 "\x13\xf8\xf1\xf6\x71\x77\xb3\xee" 24788 "\x93\xb2\xcc\xf3\x26\xc1\x16\x4f" 24789 "\xd4\xe8\x43\xc1\x68\xa3\x3e\x06" 24790 "\x38\x51\xff\xa8\xb9\xa4\xeb\xb1" 24791 "\x62\xdd\x78\x81\xea\x1d\xef\x04" 24792 "\x1d\x07\xc1\x67\xc8\xd6\x77\xa1" 24793 "\x84\x95\xf4\x9a\xd9\xbc\x2d\xe2" 24794 "\xf6\x80\xfc\x91\x2a\xbc\x42\xa0" 24795 "\x40\x41\x69\xaa\x71\xc0\x37\xec" 24796 "\x39\xf3\xf2\xec\x82\xc3\x88\x79" 24797 "\xbc\xc3\xaa\xb7\xcf\x6a\x72\x80" 24798 "\x4c\xf4\x84\x8f\x13\x9e\x94\x5c" 24799 "\xe5\xb2\x91\xbb\x92\x51\x4d\xf1" 24800 "\xd6\x0d\x71\x6b\x7a\xc2\x2f\x12" 24801 "\x6f\x75\xc7\x80\x99\x50\x84\xcf" 24802 "\xa8\xeb\xd6\xe1\x1c\x59\x81\x7e" 24803 "\xb9\xb3\xde\x7a\x93\x14\x12\xa2" 24804 "\xf7\x43\xb3\x9d\x1a\x87\x65\x91" 24805 "\x42\x08\x40\x82\x06\x1c\x2d\x55" 24806 "\x6e\x48\xd5\x74\x07\x6e\x9d\x80" 24807 "\xeb\xb4\x97\xa1\x36\xdf\xfa\x74" 24808 "\x79\x7f\x5a\x75\xe7\x71\xc8\x8c" 24809 "\x7e\xf8\x3a\x77\xcd\x32\x05\xf9" 24810 "\x3d\xd4\xe9\xa2\xbb\xc4\x8b\x83" 24811 "\x42\x5c\x82\xfa\xe9\x4b\x96\x3b" 24812 "\x7f\x89\x8b\xf9\xf1\x87\xda\xf0" 24813 "\x87\xef\x13\x5d\xf0\xe2\xc5\xc1" 24814 "\xed\x14\xa9\x57\x19\x63\x40\x04" 24815 "\x24\xeb\x6e\x19\xd1\x3d\x70\x78" 24816 "\xeb\xda\x55\x70\x2c\x4f\x41\x5b" 24817 "\x56\x9f\x1a\xd3\xac\xf1\xc0\xc3" 24818 "\x21\xec\xd7\xd2\x55\x32\x7c\x2e" 24819 "\x3c\x48\x8e\xb4\x85\x35\x47\xfe" 24820 "\xe2\x88\x79\x98\x6a\xc9\x8d\xff" 24821 "\xe9\x89\x6e\xb8\xe2\x97\x00\xbd" 24822 "\xa4\x8f\xba\xd0\x8c\xcb\x79\x99" 24823 "\xb3\xb2\xb2\x7a\xc3\xb7\xef\x75" 24824 "\x23\x52\x76\xc3\x50\x6e\x66\xf8" 24825 "\xa2\xe2\xce\xba\x40\x21\x3f\xc9" 24826 "\x0a\x32\x7f\xf7\x08\x8c\x66\xcf" 24827 "\xd3\xdf\x57\x59\x83\xb8\xe1\x85" 24828 "\xd6\x8f\xfb\x48\x1f\x3a\xc4\x2f" 24829 "\xb4\x2d\x58\xab\xd8\x7f\x5e\x3a" 24830 "\xbc\x62\x3e\xe2\x6a\x52\x0d\x76" 24831 "\x2f\x1c\x1a\x30\xed\x95\x2a\x44" 24832 "\x35\xa5\x83\x04\x84\x01\x99\x56" 24833 "\xb7\xe3\x10\x96\xfa\xdc\x19\xdd" 24834 "\xe2\x7f\xcb\xa0\x49\x1b\xff\x4c" 24835 "\x73\xf6\xbb\x94\x00\xe8\xa9\x3d" 24836 "\xe2\x20\xe9\x3f\xfa\x07\x5d\x77" 24837 "\x06\xd5\x4f\x4d\x02\xb8\x40\x1b" 24838 "\x30\xed\x1a\x50\x19\xef\xc4\x2c" 24839 "\x02\xd9\xc5\xd3\x11\x33\x37\xe5" 24840 "\x2b\xa3\x95\xa6\xee\xd8\x74\x1d" 24841 "\x68\xa0\xeb\xbf\xdd\x5e\x99\x96" 24842 "\x91\xc3\x94\x24\xa5\x12\xa2\x37" 24843 "\xb3\xac\xcf\x2a\xfd\x55\x34\xfe" 24844 "\x79\x92\x3e\xe6\x1b\x49\x57\x5d" 24845 "\x93\x6c\x01\xf7\xcc\x4e\x20\xd1" 24846 "\xb2\x1a\xd8\x4c\xbd\x1d\x10\xe9" 24847 "\x5a\xa8\x92\x7f\xba\xe6\x0c\x95", 24848 .len = 512, 24849 }, 24850 }; 24851 24852 static const struct cipher_testvec camellia_xts_tv_template[] = { 24853 /* Generated from AES-XTS test vectors */ 24854 { 24855 .key = "\x00\x00\x00\x00\x00\x00\x00\x00" 24856 "\x00\x00\x00\x00\x00\x00\x00\x00" 24857 "\x00\x00\x00\x00\x00\x00\x00\x00" 24858 "\x00\x00\x00\x00\x00\x00\x00\x00", 24859 .klen = 32, 24860 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 24861 "\x00\x00\x00\x00\x00\x00\x00\x00", 24862 .ptext = "\x00\x00\x00\x00\x00\x00\x00\x00" 24863 "\x00\x00\x00\x00\x00\x00\x00\x00" 24864 "\x00\x00\x00\x00\x00\x00\x00\x00" 24865 "\x00\x00\x00\x00\x00\x00\x00\x00", 24866 .ctext = "\x06\xcb\xa5\xf1\x04\x63\xb2\x41" 24867 "\xdc\xca\xfa\x09\xba\x74\xb9\x05" 24868 "\x78\xba\xa4\xf8\x67\x4d\x7e\xad" 24869 "\x20\x18\xf5\x0c\x41\x16\x2a\x61", 24870 .len = 32, 24871 }, { 24872 .key = "\x11\x11\x11\x11\x11\x11\x11\x11" 24873 "\x11\x11\x11\x11\x11\x11\x11\x11" 24874 "\x22\x22\x22\x22\x22\x22\x22\x22" 24875 "\x22\x22\x22\x22\x22\x22\x22\x22", 24876 .klen = 32, 24877 .iv = "\x33\x33\x33\x33\x33\x00\x00\x00" 24878 "\x00\x00\x00\x00\x00\x00\x00\x00", 24879 .ptext = "\x44\x44\x44\x44\x44\x44\x44\x44" 24880 "\x44\x44\x44\x44\x44\x44\x44\x44" 24881 "\x44\x44\x44\x44\x44\x44\x44\x44" 24882 "\x44\x44\x44\x44\x44\x44\x44\x44", 24883 .ctext = "\xc2\xb9\xdc\x44\x1d\xdf\xf2\x86" 24884 "\x8d\x35\x42\x0a\xa5\x5e\x3d\x4f" 24885 "\xb5\x37\x06\xff\xbd\xd4\x91\x70" 24886 "\x80\x1f\xb2\x39\x10\x89\x44\xf5", 24887 .len = 32, 24888 }, { 24889 .key = "\xff\xfe\xfd\xfc\xfb\xfa\xf9\xf8" 24890 "\xf7\xf6\xf5\xf4\xf3\xf2\xf1\xf0" 24891 "\x22\x22\x22\x22\x22\x22\x22\x22" 24892 "\x22\x22\x22\x22\x22\x22\x22\x22", 24893 .klen = 32, 24894 .iv = "\x33\x33\x33\x33\x33\x00\x00\x00" 24895 "\x00\x00\x00\x00\x00\x00\x00\x00", 24896 .ptext = "\x44\x44\x44\x44\x44\x44\x44\x44" 24897 "\x44\x44\x44\x44\x44\x44\x44\x44" 24898 "\x44\x44\x44\x44\x44\x44\x44\x44" 24899 "\x44\x44\x44\x44\x44\x44\x44\x44", 24900 .ctext = "\x52\x1f\x9d\xf5\x5a\x58\x5a\x7e" 24901 "\x9f\xd0\x8e\x02\x9c\x9a\x6a\xa7" 24902 "\xb4\x3b\xce\xe7\x17\xaa\x89\x6a" 24903 "\x35\x3c\x6b\xb5\x61\x1c\x79\x38", 24904 .len = 32, 24905 }, { 24906 .key = "\x27\x18\x28\x18\x28\x45\x90\x45" 24907 "\x23\x53\x60\x28\x74\x71\x35\x26" 24908 "\x31\x41\x59\x26\x53\x58\x97\x93" 24909 "\x23\x84\x62\x64\x33\x83\x27\x95", 24910 .klen = 32, 24911 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 24912 "\x00\x00\x00\x00\x00\x00\x00\x00", 24913 .ptext = "\x00\x01\x02\x03\x04\x05\x06\x07" 24914 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 24915 "\x10\x11\x12\x13\x14\x15\x16\x17" 24916 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 24917 "\x20\x21\x22\x23\x24\x25\x26\x27" 24918 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 24919 "\x30\x31\x32\x33\x34\x35\x36\x37" 24920 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 24921 "\x40\x41\x42\x43\x44\x45\x46\x47" 24922 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 24923 "\x50\x51\x52\x53\x54\x55\x56\x57" 24924 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 24925 "\x60\x61\x62\x63\x64\x65\x66\x67" 24926 "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 24927 "\x70\x71\x72\x73\x74\x75\x76\x77" 24928 "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 24929 "\x80\x81\x82\x83\x84\x85\x86\x87" 24930 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 24931 "\x90\x91\x92\x93\x94\x95\x96\x97" 24932 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 24933 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 24934 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 24935 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 24936 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 24937 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 24938 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 24939 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 24940 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 24941 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 24942 "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 24943 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 24944 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff" 24945 "\x00\x01\x02\x03\x04\x05\x06\x07" 24946 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 24947 "\x10\x11\x12\x13\x14\x15\x16\x17" 24948 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 24949 "\x20\x21\x22\x23\x24\x25\x26\x27" 24950 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 24951 "\x30\x31\x32\x33\x34\x35\x36\x37" 24952 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 24953 "\x40\x41\x42\x43\x44\x45\x46\x47" 24954 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 24955 "\x50\x51\x52\x53\x54\x55\x56\x57" 24956 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 24957 "\x60\x61\x62\x63\x64\x65\x66\x67" 24958 "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 24959 "\x70\x71\x72\x73\x74\x75\x76\x77" 24960 "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 24961 "\x80\x81\x82\x83\x84\x85\x86\x87" 24962 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 24963 "\x90\x91\x92\x93\x94\x95\x96\x97" 24964 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 24965 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 24966 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 24967 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 24968 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 24969 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 24970 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 24971 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 24972 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 24973 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 24974 "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 24975 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 24976 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff", 24977 .ctext = "\xc7\xf9\x0a\xaa\xcb\xb5\x8f\x33" 24978 "\x60\xc3\xe9\x47\x90\xb7\x50\x57" 24979 "\xa3\xad\x81\x2f\xf5\x22\x96\x02" 24980 "\xaa\x7f\xea\xac\x29\x78\xca\x2a" 24981 "\x7c\xcd\x31\x1a\x3c\x40\x0a\x73" 24982 "\x09\x66\xad\x72\x0e\x4d\x5d\x77" 24983 "\xbc\xb8\x76\x80\x37\x59\xa9\x01" 24984 "\x9e\xfb\xdb\x6c\x93\xef\xb6\x8d" 24985 "\x1e\xc1\x94\xa8\xd4\xb5\xb0\x01" 24986 "\xd5\x01\x97\x28\xcd\x7a\x1f\xe8" 24987 "\x08\xda\x76\x00\x65\xcf\x7b\x31" 24988 "\xc6\xfa\xf2\x3b\x00\xa7\x6a\x9e" 24989 "\x6c\x43\x80\x87\xe0\xbb\x4e\xe5" 24990 "\xdc\x8a\xdf\xc3\x1d\x1b\x41\x04" 24991 "\xfb\x54\xdd\x29\x27\xc2\x65\x17" 24992 "\x36\x88\xb0\x85\x8d\x73\x7e\x4b" 24993 "\x1d\x16\x8a\x52\xbc\xa6\xbc\xa4" 24994 "\x8c\xd1\x04\x16\xbf\x8c\x01\x0f" 24995 "\x7e\x6b\x59\x15\x29\xd1\x9b\xd3" 24996 "\x6c\xee\xac\xdc\x45\x58\xca\x5b" 24997 "\x70\x0e\x6a\x12\x86\x82\x79\x9f" 24998 "\x16\xd4\x9d\x67\xcd\x70\x65\x26" 24999 "\x21\x72\x1e\xa1\x94\x8a\x83\x0c" 25000 "\x92\x42\x58\x5e\xa2\xc5\x31\xf3" 25001 "\x7b\xd1\x31\xd4\x15\x80\x31\x61" 25002 "\x5c\x53\x10\xdd\xea\xc8\x83\x5c" 25003 "\x7d\xa7\x05\x66\xcc\x1e\xbb\x05" 25004 "\x47\xae\xb4\x0f\x84\xd8\xf6\xb5" 25005 "\xa1\xc6\x52\x00\x52\xe8\xdc\xd9" 25006 "\x16\x31\xb2\x47\x91\x67\xaa\x28" 25007 "\x2c\x29\x85\xa3\xf7\xf2\x24\x93" 25008 "\x23\x80\x1f\xa8\x1b\x82\x8d\xdc" 25009 "\x9f\x0b\xcd\xb4\x3c\x20\xbc\xec" 25010 "\x4f\xc7\xee\xf8\xfd\xd9\xfb\x7e" 25011 "\x3f\x0d\x23\xfa\x3f\xa7\xcc\x66" 25012 "\x1c\xfe\xa6\x86\xf6\xf7\x85\xc7" 25013 "\x43\xc1\xd4\xfc\xe4\x79\xc9\x1d" 25014 "\xf8\x89\xcd\x20\x27\x84\x5d\x5c" 25015 "\x8e\x4f\x1f\xeb\x08\x21\x4f\xa3" 25016 "\xe0\x7e\x0b\x9c\xe7\x42\xcf\xb7" 25017 "\x3f\x43\xcc\x86\x71\x34\x6a\xd9" 25018 "\x5e\xec\x8f\x36\xc9\x0a\x03\xfe" 25019 "\x18\x41\xdc\x9e\x2e\x75\x20\x3e" 25020 "\xcc\x77\xe0\x8f\xe8\x43\x37\x4c" 25021 "\xed\x1a\x5a\xb3\xfa\x43\xc9\x71" 25022 "\x9f\xc5\xce\xcf\xff\xe7\x77\x1e" 25023 "\x35\x93\xde\x6b\xc0\x6a\x7e\xa9" 25024 "\x34\xb8\x27\x74\x08\xda\xf2\x4a" 25025 "\x23\x5b\x9f\x55\x3a\x57\x82\x52" 25026 "\xea\x6d\xc3\xc7\xf2\xc8\xb5\xdc" 25027 "\xc5\xb9\xbb\xaa\xf2\x29\x9f\x49" 25028 "\x7a\xef\xfe\xdc\x9f\xc9\x28\xe2" 25029 "\x96\x0b\x35\x84\x05\x0d\xd6\x2a" 25030 "\xea\x5a\xbf\x69\xde\xee\x4f\x8f" 25031 "\x84\xb9\xcf\xa7\x57\xea\xe0\xe8" 25032 "\x96\xef\x0f\x0e\xec\xc7\xa6\x74" 25033 "\xb1\xfe\x7a\x6d\x11\xdd\x0e\x15" 25034 "\x4a\x1e\x73\x7f\x55\xea\xf6\xe1" 25035 "\x5b\xb6\x71\xda\xb0\x0c\xba\x26" 25036 "\x5c\x48\x38\x6d\x1c\x32\xb2\x7d" 25037 "\x05\x87\xc2\x1e\x7e\x2d\xd4\x33" 25038 "\xcc\x06\xdb\xe7\x82\x29\x63\xd1" 25039 "\x52\x84\x4f\xee\x27\xe8\x02\xd4" 25040 "\x34\x3c\x69\xc2\xbd\x20\xe6\x7a", 25041 .len = 512, 25042 }, { 25043 .key = "\x27\x18\x28\x18\x28\x45\x90\x45" 25044 "\x23\x53\x60\x28\x74\x71\x35\x26" 25045 "\x62\x49\x77\x57\x24\x70\x93\x69" 25046 "\x99\x59\x57\x49\x66\x96\x76\x27" 25047 "\x31\x41\x59\x26\x53\x58\x97\x93" 25048 "\x23\x84\x62\x64\x33\x83\x27\x95" 25049 "\x02\x88\x41\x97\x16\x93\x99\x37" 25050 "\x51\x05\x82\x09\x74\x94\x45\x92", 25051 .klen = 64, 25052 .iv = "\xff\x00\x00\x00\x00\x00\x00\x00" 25053 "\x00\x00\x00\x00\x00\x00\x00\x00", 25054 .ptext = "\x00\x01\x02\x03\x04\x05\x06\x07" 25055 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 25056 "\x10\x11\x12\x13\x14\x15\x16\x17" 25057 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 25058 "\x20\x21\x22\x23\x24\x25\x26\x27" 25059 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 25060 "\x30\x31\x32\x33\x34\x35\x36\x37" 25061 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 25062 "\x40\x41\x42\x43\x44\x45\x46\x47" 25063 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 25064 "\x50\x51\x52\x53\x54\x55\x56\x57" 25065 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 25066 "\x60\x61\x62\x63\x64\x65\x66\x67" 25067 "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 25068 "\x70\x71\x72\x73\x74\x75\x76\x77" 25069 "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 25070 "\x80\x81\x82\x83\x84\x85\x86\x87" 25071 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 25072 "\x90\x91\x92\x93\x94\x95\x96\x97" 25073 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 25074 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 25075 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 25076 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 25077 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 25078 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 25079 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 25080 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 25081 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 25082 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 25083 "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 25084 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 25085 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff" 25086 "\x00\x01\x02\x03\x04\x05\x06\x07" 25087 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 25088 "\x10\x11\x12\x13\x14\x15\x16\x17" 25089 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 25090 "\x20\x21\x22\x23\x24\x25\x26\x27" 25091 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 25092 "\x30\x31\x32\x33\x34\x35\x36\x37" 25093 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 25094 "\x40\x41\x42\x43\x44\x45\x46\x47" 25095 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 25096 "\x50\x51\x52\x53\x54\x55\x56\x57" 25097 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 25098 "\x60\x61\x62\x63\x64\x65\x66\x67" 25099 "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 25100 "\x70\x71\x72\x73\x74\x75\x76\x77" 25101 "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 25102 "\x80\x81\x82\x83\x84\x85\x86\x87" 25103 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 25104 "\x90\x91\x92\x93\x94\x95\x96\x97" 25105 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 25106 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 25107 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 25108 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 25109 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 25110 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 25111 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 25112 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 25113 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 25114 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 25115 "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 25116 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 25117 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff", 25118 .ctext = "\x49\xcd\xb8\xbf\x2f\x73\x37\x28" 25119 "\x9a\x7f\x6e\x57\x55\xb8\x07\x88" 25120 "\x4a\x0d\x8b\x55\x60\xed\xb6\x7b" 25121 "\xf1\x74\xac\x96\x05\x7b\x32\xca" 25122 "\xd1\x4e\xf1\x58\x29\x16\x24\x6c" 25123 "\xf2\xb3\xe4\x88\x84\xac\x4d\xee" 25124 "\x97\x07\x82\xf0\x07\x12\x38\x0a" 25125 "\x67\x62\xaf\xfd\x85\x9f\x0a\x55" 25126 "\xa5\x20\xc5\x60\xe4\x68\x53\xa4" 25127 "\x0e\x2e\x65\xe3\xe4\x0c\x30\x7c" 25128 "\x1c\x01\x4f\x55\xa9\x13\xeb\x25" 25129 "\x21\x87\xbc\xd3\xe7\x67\x4f\x38" 25130 "\xa8\x14\x25\x71\xe9\x2e\x4c\x21" 25131 "\x41\x82\x0c\x45\x39\x35\xa8\x75" 25132 "\x03\x29\x01\x84\x8c\xab\x48\xbe" 25133 "\x11\x56\x22\x67\xb7\x67\x1a\x09" 25134 "\xa1\x72\x25\x41\x3c\x39\x65\x80" 25135 "\x7d\x2f\xf8\x2c\x73\x04\x58\x9d" 25136 "\xdd\x16\x8b\x63\x70\x4e\xc5\x17" 25137 "\x21\xe0\x84\x51\x4b\x6f\x05\x52" 25138 "\xe3\x63\x34\xfa\xa4\xaf\x33\x20" 25139 "\xc1\xae\x32\xc4\xb8\x2b\xdb\x76" 25140 "\xd9\x02\x31\x2f\xa3\xc6\xd0\x7b" 25141 "\xaf\x1b\x84\xe3\x9b\xbf\xa6\xe0" 25142 "\xb8\x8a\x13\x88\x71\xf4\x11\xa5" 25143 "\xe9\xa9\x10\x33\xe0\xbe\x49\x89" 25144 "\x41\x22\xf5\x9d\x80\x3e\x3b\x76" 25145 "\x01\x16\x50\x6e\x7c\x6a\x81\xe9" 25146 "\x13\x2c\xde\xb2\x5f\x79\xba\xb2" 25147 "\xb1\x75\xae\xd2\x07\x98\x4b\x69" 25148 "\xae\x7d\x5b\x90\xc2\x6c\xe6\x98" 25149 "\xd3\x4c\xa1\xa3\x9c\xc9\x33\x6a" 25150 "\x0d\x23\xb1\x79\x25\x13\x4b\xe5" 25151 "\xaf\x93\x20\x5c\x7f\x06\x7a\x34" 25152 "\x0b\x78\xe3\x67\x26\xe0\xad\x95" 25153 "\xc5\x4e\x26\x22\xcf\x73\x77\x62" 25154 "\x3e\x10\xd7\x90\x4b\x52\x1c\xc9" 25155 "\xef\x38\x52\x18\x0e\x29\x7e\xef" 25156 "\x34\xfe\x31\x95\xc5\xbc\xa8\xe2" 25157 "\xa8\x4e\x9f\xea\xa6\xf0\xfe\x5d" 25158 "\xc5\x39\x86\xed\x2f\x6d\xa0\xfe" 25159 "\x96\xcd\x41\x10\x78\x4e\x0c\xc9" 25160 "\xc3\x6d\x0f\xb7\xe8\xe0\x62\xab" 25161 "\x8b\xf1\x21\x89\xa1\x12\xaa\xfa" 25162 "\x9d\x70\xbe\x4c\xa8\x98\x89\x01" 25163 "\xb9\xe2\x61\xde\x0c\x4a\x0b\xaa" 25164 "\x89\xf5\x14\x79\x18\x8f\x3b\x0d" 25165 "\x21\x17\xf8\x59\x15\x24\x64\x22" 25166 "\x57\x48\x80\xd5\x3d\x92\x30\x07" 25167 "\xd9\xa1\x4a\x23\x16\x43\x48\x0e" 25168 "\x2b\x2d\x1b\x87\xef\x7e\xbd\xfa" 25169 "\x49\xbc\x7e\x68\x6e\xa8\x46\x95" 25170 "\xad\x5e\xfe\x0a\xa8\xd3\x1a\x5d" 25171 "\x6b\x84\xf3\x00\xba\x52\x05\x02" 25172 "\xe3\x96\x4e\xb6\x79\x3f\x43\xd3" 25173 "\x4d\x3f\xd6\xab\x0a\xc4\x75\x2d" 25174 "\xd1\x08\xc3\x6a\xc8\x37\x29\xa0" 25175 "\xcc\x9a\x05\xdd\x5c\xe1\xff\x66" 25176 "\xf2\x7a\x1d\xf2\xaf\xa9\x48\x89" 25177 "\xf5\x21\x0f\x02\x48\x83\x74\xbf" 25178 "\x2e\xe6\x93\x7b\xa0\xf4\xb1\x2b" 25179 "\xb1\x02\x0a\x5c\x79\x19\x3b\x75" 25180 "\xb7\x16\xd8\x12\x5c\xcd\x7d\x4e" 25181 "\xd5\xc6\x99\xcc\x4e\x6c\x94\x95", 25182 .len = 512, 25183 }, 25184 }; 25185 25186 /* 25187 * SEED test vectors 25188 */ 25189 static const struct cipher_testvec seed_tv_template[] = { 25190 { 25191 .key = zeroed_string, 25192 .klen = 16, 25193 .ptext = "\x00\x01\x02\x03\x04\x05\x06\x07" 25194 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 25195 .ctext = "\x5e\xba\xc6\xe0\x05\x4e\x16\x68" 25196 "\x19\xaf\xf1\xcc\x6d\x34\x6c\xdb", 25197 .len = 16, 25198 }, { 25199 .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 25200 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 25201 .klen = 16, 25202 .ptext = zeroed_string, 25203 .ctext = "\xc1\x1f\x22\xf2\x01\x40\x50\x50" 25204 "\x84\x48\x35\x97\xe4\x37\x0f\x43", 25205 .len = 16, 25206 }, { 25207 .key = "\x47\x06\x48\x08\x51\xe6\x1b\xe8" 25208 "\x5d\x74\xbf\xb3\xfd\x95\x61\x85", 25209 .klen = 16, 25210 .ptext = "\x83\xa2\xf8\xa2\x88\x64\x1f\xb9" 25211 "\xa4\xe9\xa5\xcc\x2f\x13\x1c\x7d", 25212 .ctext = "\xee\x54\xd1\x3e\xbc\xae\x70\x6d" 25213 "\x22\x6b\xc3\x14\x2c\xd4\x0d\x4a", 25214 .len = 16, 25215 }, { 25216 .key = "\x28\xdb\xc3\xbc\x49\xff\xd8\x7d" 25217 "\xcf\xa5\x09\xb1\x1d\x42\x2b\xe7", 25218 .klen = 16, 25219 .ptext = "\xb4\x1e\x6b\xe2\xeb\xa8\x4a\x14" 25220 "\x8e\x2e\xed\x84\x59\x3c\x5e\xc7", 25221 .ctext = "\x9b\x9b\x7b\xfc\xd1\x81\x3c\xb9" 25222 "\x5d\x0b\x36\x18\xf4\x0f\x51\x22", 25223 .len = 16, 25224 } 25225 }; 25226 25227 static const struct cipher_testvec salsa20_stream_tv_template[] = { 25228 /* 25229 * Testvectors from verified.test-vectors submitted to ECRYPT. 25230 * They are truncated to size 39, 64, 111, 129 to test a variety 25231 * of input length. 25232 */ 25233 { /* Set 3, vector 0 */ 25234 .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 25235 "\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F", 25236 .klen = 16, 25237 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00", 25238 .ptext = "\x00\x00\x00\x00\x00\x00\x00\x00" 25239 "\x00\x00\x00\x00\x00\x00\x00\x00" 25240 "\x00\x00\x00\x00\x00\x00\x00\x00" 25241 "\x00\x00\x00\x00\x00\x00\x00\x00" 25242 "\x00\x00\x00\x00\x00\x00\x00", 25243 .ctext = "\x2D\xD5\xC3\xF7\xBA\x2B\x20\xF7" 25244 "\x68\x02\x41\x0C\x68\x86\x88\x89" 25245 "\x5A\xD8\xC1\xBD\x4E\xA6\xC9\xB1" 25246 "\x40\xFB\x9B\x90\xE2\x10\x49\xBF" 25247 "\x58\x3F\x52\x79\x70\xEB\xC1", 25248 .len = 39, 25249 }, { /* Set 5, vector 0 */ 25250 .key = "\x00\x00\x00\x00\x00\x00\x00\x00" 25251 "\x00\x00\x00\x00\x00\x00\x00\x00", 25252 .klen = 16, 25253 .iv = "\x80\x00\x00\x00\x00\x00\x00\x00", 25254 .ptext = "\x00\x00\x00\x00\x00\x00\x00\x00" 25255 "\x00\x00\x00\x00\x00\x00\x00\x00" 25256 "\x00\x00\x00\x00\x00\x00\x00\x00" 25257 "\x00\x00\x00\x00\x00\x00\x00\x00" 25258 "\x00\x00\x00\x00\x00\x00\x00\x00" 25259 "\x00\x00\x00\x00\x00\x00\x00\x00" 25260 "\x00\x00\x00\x00\x00\x00\x00\x00" 25261 "\x00\x00\x00\x00\x00\x00\x00\x00", 25262 .ctext = "\xB6\x6C\x1E\x44\x46\xDD\x95\x57" 25263 "\xE5\x78\xE2\x23\xB0\xB7\x68\x01" 25264 "\x7B\x23\xB2\x67\xBB\x02\x34\xAE" 25265 "\x46\x26\xBF\x44\x3F\x21\x97\x76" 25266 "\x43\x6F\xB1\x9F\xD0\xE8\x86\x6F" 25267 "\xCD\x0D\xE9\xA9\x53\x8F\x4A\x09" 25268 "\xCA\x9A\xC0\x73\x2E\x30\xBC\xF9" 25269 "\x8E\x4F\x13\xE4\xB9\xE2\x01\xD9", 25270 .len = 64, 25271 }, { /* Set 3, vector 27 */ 25272 .key = "\x1B\x1C\x1D\x1E\x1F\x20\x21\x22" 25273 "\x23\x24\x25\x26\x27\x28\x29\x2A" 25274 "\x2B\x2C\x2D\x2E\x2F\x30\x31\x32" 25275 "\x33\x34\x35\x36\x37\x38\x39\x3A", 25276 .klen = 32, 25277 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00", 25278 .ptext = "\x00\x00\x00\x00\x00\x00\x00\x00" 25279 "\x00\x00\x00\x00\x00\x00\x00\x00" 25280 "\x00\x00\x00\x00\x00\x00\x00\x00" 25281 "\x00\x00\x00\x00\x00\x00\x00\x00" 25282 "\x00\x00\x00\x00\x00\x00\x00\x00" 25283 "\x00\x00\x00\x00\x00\x00\x00\x00" 25284 "\x00\x00\x00\x00\x00\x00\x00\x00" 25285 "\x00\x00\x00\x00\x00\x00\x00\x00" 25286 "\x00\x00\x00\x00\x00\x00\x00\x00" 25287 "\x00\x00\x00\x00\x00\x00\x00\x00" 25288 "\x00\x00\x00\x00\x00\x00\x00\x00" 25289 "\x00\x00\x00\x00\x00\x00\x00\x00" 25290 "\x00\x00\x00\x00\x00\x00\x00\x00" 25291 "\x00\x00\x00\x00\x00\x00\x00", 25292 .ctext = "\xAE\x39\x50\x8E\xAC\x9A\xEC\xE7" 25293 "\xBF\x97\xBB\x20\xB9\xDE\xE4\x1F" 25294 "\x87\xD9\x47\xF8\x28\x91\x35\x98" 25295 "\xDB\x72\xCC\x23\x29\x48\x56\x5E" 25296 "\x83\x7E\x0B\xF3\x7D\x5D\x38\x7B" 25297 "\x2D\x71\x02\xB4\x3B\xB5\xD8\x23" 25298 "\xB0\x4A\xDF\x3C\xEC\xB6\xD9\x3B" 25299 "\x9B\xA7\x52\xBE\xC5\xD4\x50\x59" 25300 "\x15\x14\xB4\x0E\x40\xE6\x53\xD1" 25301 "\x83\x9C\x5B\xA0\x92\x29\x6B\x5E" 25302 "\x96\x5B\x1E\x2F\xD3\xAC\xC1\x92" 25303 "\xB1\x41\x3F\x19\x2F\xC4\x3B\xC6" 25304 "\x95\x46\x45\x54\xE9\x75\x03\x08" 25305 "\x44\xAF\xE5\x8A\x81\x12\x09", 25306 .len = 111, 25307 }, { /* Set 5, vector 27 */ 25308 .key = "\x00\x00\x00\x00\x00\x00\x00\x00" 25309 "\x00\x00\x00\x00\x00\x00\x00\x00" 25310 "\x00\x00\x00\x00\x00\x00\x00\x00" 25311 "\x00\x00\x00\x00\x00\x00\x00\x00", 25312 .klen = 32, 25313 .iv = "\x00\x00\x00\x10\x00\x00\x00\x00", 25314 .ptext = "\x00\x00\x00\x00\x00\x00\x00\x00" 25315 "\x00\x00\x00\x00\x00\x00\x00\x00" 25316 "\x00\x00\x00\x00\x00\x00\x00\x00" 25317 "\x00\x00\x00\x00\x00\x00\x00\x00" 25318 "\x00\x00\x00\x00\x00\x00\x00\x00" 25319 "\x00\x00\x00\x00\x00\x00\x00\x00" 25320 "\x00\x00\x00\x00\x00\x00\x00\x00" 25321 "\x00\x00\x00\x00\x00\x00\x00\x00" 25322 "\x00\x00\x00\x00\x00\x00\x00\x00" 25323 "\x00\x00\x00\x00\x00\x00\x00\x00" 25324 "\x00\x00\x00\x00\x00\x00\x00\x00" 25325 "\x00\x00\x00\x00\x00\x00\x00\x00" 25326 "\x00\x00\x00\x00\x00\x00\x00\x00" 25327 "\x00\x00\x00\x00\x00\x00\x00\x00" 25328 "\x00\x00\x00\x00\x00\x00\x00\x00" 25329 "\x00\x00\x00\x00\x00\x00\x00\x00" 25330 "\x00", 25331 .ctext = "\xD2\xDB\x1A\x5C\xF1\xC1\xAC\xDB" 25332 "\xE8\x1A\x7A\x43\x40\xEF\x53\x43" 25333 "\x5E\x7F\x4B\x1A\x50\x52\x3F\x8D" 25334 "\x28\x3D\xCF\x85\x1D\x69\x6E\x60" 25335 "\xF2\xDE\x74\x56\x18\x1B\x84\x10" 25336 "\xD4\x62\xBA\x60\x50\xF0\x61\xF2" 25337 "\x1C\x78\x7F\xC1\x24\x34\xAF\x58" 25338 "\xBF\x2C\x59\xCA\x90\x77\xF3\xB0" 25339 "\x5B\x4A\xDF\x89\xCE\x2C\x2F\xFC" 25340 "\x67\xF0\xE3\x45\xE8\xB3\xB3\x75" 25341 "\xA0\x95\x71\xA1\x29\x39\x94\xCA" 25342 "\x45\x2F\xBD\xCB\x10\xB6\xBE\x9F" 25343 "\x8E\xF9\xB2\x01\x0A\x5A\x0A\xB7" 25344 "\x6B\x9D\x70\x8E\x4B\xD6\x2F\xCD" 25345 "\x2E\x40\x48\x75\xE9\xE2\x21\x45" 25346 "\x0B\xC9\xB6\xB5\x66\xBC\x9A\x59" 25347 "\x5A", 25348 .len = 129, 25349 }, { /* large test vector generated using Crypto++ */ 25350 .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 25351 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 25352 "\x10\x11\x12\x13\x14\x15\x16\x17" 25353 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 25354 .klen = 32, 25355 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 25356 "\x00\x00\x00\x00\x00\x00\x00\x00", 25357 .ptext = 25358 "\x00\x01\x02\x03\x04\x05\x06\x07" 25359 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 25360 "\x10\x11\x12\x13\x14\x15\x16\x17" 25361 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 25362 "\x20\x21\x22\x23\x24\x25\x26\x27" 25363 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 25364 "\x30\x31\x32\x33\x34\x35\x36\x37" 25365 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 25366 "\x40\x41\x42\x43\x44\x45\x46\x47" 25367 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 25368 "\x50\x51\x52\x53\x54\x55\x56\x57" 25369 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 25370 "\x60\x61\x62\x63\x64\x65\x66\x67" 25371 "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 25372 "\x70\x71\x72\x73\x74\x75\x76\x77" 25373 "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 25374 "\x80\x81\x82\x83\x84\x85\x86\x87" 25375 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 25376 "\x90\x91\x92\x93\x94\x95\x96\x97" 25377 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 25378 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 25379 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 25380 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 25381 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 25382 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 25383 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 25384 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 25385 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 25386 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 25387 "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 25388 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 25389 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff" 25390 "\x00\x03\x06\x09\x0c\x0f\x12\x15" 25391 "\x18\x1b\x1e\x21\x24\x27\x2a\x2d" 25392 "\x30\x33\x36\x39\x3c\x3f\x42\x45" 25393 "\x48\x4b\x4e\x51\x54\x57\x5a\x5d" 25394 "\x60\x63\x66\x69\x6c\x6f\x72\x75" 25395 "\x78\x7b\x7e\x81\x84\x87\x8a\x8d" 25396 "\x90\x93\x96\x99\x9c\x9f\xa2\xa5" 25397 "\xa8\xab\xae\xb1\xb4\xb7\xba\xbd" 25398 "\xc0\xc3\xc6\xc9\xcc\xcf\xd2\xd5" 25399 "\xd8\xdb\xde\xe1\xe4\xe7\xea\xed" 25400 "\xf0\xf3\xf6\xf9\xfc\xff\x02\x05" 25401 "\x08\x0b\x0e\x11\x14\x17\x1a\x1d" 25402 "\x20\x23\x26\x29\x2c\x2f\x32\x35" 25403 "\x38\x3b\x3e\x41\x44\x47\x4a\x4d" 25404 "\x50\x53\x56\x59\x5c\x5f\x62\x65" 25405 "\x68\x6b\x6e\x71\x74\x77\x7a\x7d" 25406 "\x80\x83\x86\x89\x8c\x8f\x92\x95" 25407 "\x98\x9b\x9e\xa1\xa4\xa7\xaa\xad" 25408 "\xb0\xb3\xb6\xb9\xbc\xbf\xc2\xc5" 25409 "\xc8\xcb\xce\xd1\xd4\xd7\xda\xdd" 25410 "\xe0\xe3\xe6\xe9\xec\xef\xf2\xf5" 25411 "\xf8\xfb\xfe\x01\x04\x07\x0a\x0d" 25412 "\x10\x13\x16\x19\x1c\x1f\x22\x25" 25413 "\x28\x2b\x2e\x31\x34\x37\x3a\x3d" 25414 "\x40\x43\x46\x49\x4c\x4f\x52\x55" 25415 "\x58\x5b\x5e\x61\x64\x67\x6a\x6d" 25416 "\x70\x73\x76\x79\x7c\x7f\x82\x85" 25417 "\x88\x8b\x8e\x91\x94\x97\x9a\x9d" 25418 "\xa0\xa3\xa6\xa9\xac\xaf\xb2\xb5" 25419 "\xb8\xbb\xbe\xc1\xc4\xc7\xca\xcd" 25420 "\xd0\xd3\xd6\xd9\xdc\xdf\xe2\xe5" 25421 "\xe8\xeb\xee\xf1\xf4\xf7\xfa\xfd" 25422 "\x00\x05\x0a\x0f\x14\x19\x1e\x23" 25423 "\x28\x2d\x32\x37\x3c\x41\x46\x4b" 25424 "\x50\x55\x5a\x5f\x64\x69\x6e\x73" 25425 "\x78\x7d\x82\x87\x8c\x91\x96\x9b" 25426 "\xa0\xa5\xaa\xaf\xb4\xb9\xbe\xc3" 25427 "\xc8\xcd\xd2\xd7\xdc\xe1\xe6\xeb" 25428 "\xf0\xf5\xfa\xff\x04\x09\x0e\x13" 25429 "\x18\x1d\x22\x27\x2c\x31\x36\x3b" 25430 "\x40\x45\x4a\x4f\x54\x59\x5e\x63" 25431 "\x68\x6d\x72\x77\x7c\x81\x86\x8b" 25432 "\x90\x95\x9a\x9f\xa4\xa9\xae\xb3" 25433 "\xb8\xbd\xc2\xc7\xcc\xd1\xd6\xdb" 25434 "\xe0\xe5\xea\xef\xf4\xf9\xfe\x03" 25435 "\x08\x0d\x12\x17\x1c\x21\x26\x2b" 25436 "\x30\x35\x3a\x3f\x44\x49\x4e\x53" 25437 "\x58\x5d\x62\x67\x6c\x71\x76\x7b" 25438 "\x80\x85\x8a\x8f\x94\x99\x9e\xa3" 25439 "\xa8\xad\xb2\xb7\xbc\xc1\xc6\xcb" 25440 "\xd0\xd5\xda\xdf\xe4\xe9\xee\xf3" 25441 "\xf8\xfd\x02\x07\x0c\x11\x16\x1b" 25442 "\x20\x25\x2a\x2f\x34\x39\x3e\x43" 25443 "\x48\x4d\x52\x57\x5c\x61\x66\x6b" 25444 "\x70\x75\x7a\x7f\x84\x89\x8e\x93" 25445 "\x98\x9d\xa2\xa7\xac\xb1\xb6\xbb" 25446 "\xc0\xc5\xca\xcf\xd4\xd9\xde\xe3" 25447 "\xe8\xed\xf2\xf7\xfc\x01\x06\x0b" 25448 "\x10\x15\x1a\x1f\x24\x29\x2e\x33" 25449 "\x38\x3d\x42\x47\x4c\x51\x56\x5b" 25450 "\x60\x65\x6a\x6f\x74\x79\x7e\x83" 25451 "\x88\x8d\x92\x97\x9c\xa1\xa6\xab" 25452 "\xb0\xb5\xba\xbf\xc4\xc9\xce\xd3" 25453 "\xd8\xdd\xe2\xe7\xec\xf1\xf6\xfb" 25454 "\x00\x07\x0e\x15\x1c\x23\x2a\x31" 25455 "\x38\x3f\x46\x4d\x54\x5b\x62\x69" 25456 "\x70\x77\x7e\x85\x8c\x93\x9a\xa1" 25457 "\xa8\xaf\xb6\xbd\xc4\xcb\xd2\xd9" 25458 "\xe0\xe7\xee\xf5\xfc\x03\x0a\x11" 25459 "\x18\x1f\x26\x2d\x34\x3b\x42\x49" 25460 "\x50\x57\x5e\x65\x6c\x73\x7a\x81" 25461 "\x88\x8f\x96\x9d\xa4\xab\xb2\xb9" 25462 "\xc0\xc7\xce\xd5\xdc\xe3\xea\xf1" 25463 "\xf8\xff\x06\x0d\x14\x1b\x22\x29" 25464 "\x30\x37\x3e\x45\x4c\x53\x5a\x61" 25465 "\x68\x6f\x76\x7d\x84\x8b\x92\x99" 25466 "\xa0\xa7\xae\xb5\xbc\xc3\xca\xd1" 25467 "\xd8\xdf\xe6\xed\xf4\xfb\x02\x09" 25468 "\x10\x17\x1e\x25\x2c\x33\x3a\x41" 25469 "\x48\x4f\x56\x5d\x64\x6b\x72\x79" 25470 "\x80\x87\x8e\x95\x9c\xa3\xaa\xb1" 25471 "\xb8\xbf\xc6\xcd\xd4\xdb\xe2\xe9" 25472 "\xf0\xf7\xfe\x05\x0c\x13\x1a\x21" 25473 "\x28\x2f\x36\x3d\x44\x4b\x52\x59" 25474 "\x60\x67\x6e\x75\x7c\x83\x8a\x91" 25475 "\x98\x9f\xa6\xad\xb4\xbb\xc2\xc9" 25476 "\xd0\xd7\xde\xe5\xec\xf3\xfa\x01" 25477 "\x08\x0f\x16\x1d\x24\x2b\x32\x39" 25478 "\x40\x47\x4e\x55\x5c\x63\x6a\x71" 25479 "\x78\x7f\x86\x8d\x94\x9b\xa2\xa9" 25480 "\xb0\xb7\xbe\xc5\xcc\xd3\xda\xe1" 25481 "\xe8\xef\xf6\xfd\x04\x0b\x12\x19" 25482 "\x20\x27\x2e\x35\x3c\x43\x4a\x51" 25483 "\x58\x5f\x66\x6d\x74\x7b\x82\x89" 25484 "\x90\x97\x9e\xa5\xac\xb3\xba\xc1" 25485 "\xc8\xcf\xd6\xdd\xe4\xeb\xf2\xf9" 25486 "\x00\x09\x12\x1b\x24\x2d\x36\x3f" 25487 "\x48\x51\x5a\x63\x6c\x75\x7e\x87" 25488 "\x90\x99\xa2\xab\xb4\xbd\xc6\xcf" 25489 "\xd8\xe1\xea\xf3\xfc\x05\x0e\x17" 25490 "\x20\x29\x32\x3b\x44\x4d\x56\x5f" 25491 "\x68\x71\x7a\x83\x8c\x95\x9e\xa7" 25492 "\xb0\xb9\xc2\xcb\xd4\xdd\xe6\xef" 25493 "\xf8\x01\x0a\x13\x1c\x25\x2e\x37" 25494 "\x40\x49\x52\x5b\x64\x6d\x76\x7f" 25495 "\x88\x91\x9a\xa3\xac\xb5\xbe\xc7" 25496 "\xd0\xd9\xe2\xeb\xf4\xfd\x06\x0f" 25497 "\x18\x21\x2a\x33\x3c\x45\x4e\x57" 25498 "\x60\x69\x72\x7b\x84\x8d\x96\x9f" 25499 "\xa8\xb1\xba\xc3\xcc\xd5\xde\xe7" 25500 "\xf0\xf9\x02\x0b\x14\x1d\x26\x2f" 25501 "\x38\x41\x4a\x53\x5c\x65\x6e\x77" 25502 "\x80\x89\x92\x9b\xa4\xad\xb6\xbf" 25503 "\xc8\xd1\xda\xe3\xec\xf5\xfe\x07" 25504 "\x10\x19\x22\x2b\x34\x3d\x46\x4f" 25505 "\x58\x61\x6a\x73\x7c\x85\x8e\x97" 25506 "\xa0\xa9\xb2\xbb\xc4\xcd\xd6\xdf" 25507 "\xe8\xf1\xfa\x03\x0c\x15\x1e\x27" 25508 "\x30\x39\x42\x4b\x54\x5d\x66\x6f" 25509 "\x78\x81\x8a\x93\x9c\xa5\xae\xb7" 25510 "\xc0\xc9\xd2\xdb\xe4\xed\xf6\xff" 25511 "\x08\x11\x1a\x23\x2c\x35\x3e\x47" 25512 "\x50\x59\x62\x6b\x74\x7d\x86\x8f" 25513 "\x98\xa1\xaa\xb3\xbc\xc5\xce\xd7" 25514 "\xe0\xe9\xf2\xfb\x04\x0d\x16\x1f" 25515 "\x28\x31\x3a\x43\x4c\x55\x5e\x67" 25516 "\x70\x79\x82\x8b\x94\x9d\xa6\xaf" 25517 "\xb8\xc1\xca\xd3\xdc\xe5\xee\xf7" 25518 "\x00\x0b\x16\x21\x2c\x37\x42\x4d" 25519 "\x58\x63\x6e\x79\x84\x8f\x9a\xa5" 25520 "\xb0\xbb\xc6\xd1\xdc\xe7\xf2\xfd" 25521 "\x08\x13\x1e\x29\x34\x3f\x4a\x55" 25522 "\x60\x6b\x76\x81\x8c\x97\xa2\xad" 25523 "\xb8\xc3\xce\xd9\xe4\xef\xfa\x05" 25524 "\x10\x1b\x26\x31\x3c\x47\x52\x5d" 25525 "\x68\x73\x7e\x89\x94\x9f\xaa\xb5" 25526 "\xc0\xcb\xd6\xe1\xec\xf7\x02\x0d" 25527 "\x18\x23\x2e\x39\x44\x4f\x5a\x65" 25528 "\x70\x7b\x86\x91\x9c\xa7\xb2\xbd" 25529 "\xc8\xd3\xde\xe9\xf4\xff\x0a\x15" 25530 "\x20\x2b\x36\x41\x4c\x57\x62\x6d" 25531 "\x78\x83\x8e\x99\xa4\xaf\xba\xc5" 25532 "\xd0\xdb\xe6\xf1\xfc\x07\x12\x1d" 25533 "\x28\x33\x3e\x49\x54\x5f\x6a\x75" 25534 "\x80\x8b\x96\xa1\xac\xb7\xc2\xcd" 25535 "\xd8\xe3\xee\xf9\x04\x0f\x1a\x25" 25536 "\x30\x3b\x46\x51\x5c\x67\x72\x7d" 25537 "\x88\x93\x9e\xa9\xb4\xbf\xca\xd5" 25538 "\xe0\xeb\xf6\x01\x0c\x17\x22\x2d" 25539 "\x38\x43\x4e\x59\x64\x6f\x7a\x85" 25540 "\x90\x9b\xa6\xb1\xbc\xc7\xd2\xdd" 25541 "\xe8\xf3\xfe\x09\x14\x1f\x2a\x35" 25542 "\x40\x4b\x56\x61\x6c\x77\x82\x8d" 25543 "\x98\xa3\xae\xb9\xc4\xcf\xda\xe5" 25544 "\xf0\xfb\x06\x11\x1c\x27\x32\x3d" 25545 "\x48\x53\x5e\x69\x74\x7f\x8a\x95" 25546 "\xa0\xab\xb6\xc1\xcc\xd7\xe2\xed" 25547 "\xf8\x03\x0e\x19\x24\x2f\x3a\x45" 25548 "\x50\x5b\x66\x71\x7c\x87\x92\x9d" 25549 "\xa8\xb3\xbe\xc9\xd4\xdf\xea\xf5" 25550 "\x00\x0d\x1a\x27\x34\x41\x4e\x5b" 25551 "\x68\x75\x82\x8f\x9c\xa9\xb6\xc3" 25552 "\xd0\xdd\xea\xf7\x04\x11\x1e\x2b" 25553 "\x38\x45\x52\x5f\x6c\x79\x86\x93" 25554 "\xa0\xad\xba\xc7\xd4\xe1\xee\xfb" 25555 "\x08\x15\x22\x2f\x3c\x49\x56\x63" 25556 "\x70\x7d\x8a\x97\xa4\xb1\xbe\xcb" 25557 "\xd8\xe5\xf2\xff\x0c\x19\x26\x33" 25558 "\x40\x4d\x5a\x67\x74\x81\x8e\x9b" 25559 "\xa8\xb5\xc2\xcf\xdc\xe9\xf6\x03" 25560 "\x10\x1d\x2a\x37\x44\x51\x5e\x6b" 25561 "\x78\x85\x92\x9f\xac\xb9\xc6\xd3" 25562 "\xe0\xed\xfa\x07\x14\x21\x2e\x3b" 25563 "\x48\x55\x62\x6f\x7c\x89\x96\xa3" 25564 "\xb0\xbd\xca\xd7\xe4\xf1\xfe\x0b" 25565 "\x18\x25\x32\x3f\x4c\x59\x66\x73" 25566 "\x80\x8d\x9a\xa7\xb4\xc1\xce\xdb" 25567 "\xe8\xf5\x02\x0f\x1c\x29\x36\x43" 25568 "\x50\x5d\x6a\x77\x84\x91\x9e\xab" 25569 "\xb8\xc5\xd2\xdf\xec\xf9\x06\x13" 25570 "\x20\x2d\x3a\x47\x54\x61\x6e\x7b" 25571 "\x88\x95\xa2\xaf\xbc\xc9\xd6\xe3" 25572 "\xf0\xfd\x0a\x17\x24\x31\x3e\x4b" 25573 "\x58\x65\x72\x7f\x8c\x99\xa6\xb3" 25574 "\xc0\xcd\xda\xe7\xf4\x01\x0e\x1b" 25575 "\x28\x35\x42\x4f\x5c\x69\x76\x83" 25576 "\x90\x9d\xaa\xb7\xc4\xd1\xde\xeb" 25577 "\xf8\x05\x12\x1f\x2c\x39\x46\x53" 25578 "\x60\x6d\x7a\x87\x94\xa1\xae\xbb" 25579 "\xc8\xd5\xe2\xef\xfc\x09\x16\x23" 25580 "\x30\x3d\x4a\x57\x64\x71\x7e\x8b" 25581 "\x98\xa5\xb2\xbf\xcc\xd9\xe6\xf3" 25582 "\x00\x0f\x1e\x2d\x3c\x4b\x5a\x69" 25583 "\x78\x87\x96\xa5\xb4\xc3\xd2\xe1" 25584 "\xf0\xff\x0e\x1d\x2c\x3b\x4a\x59" 25585 "\x68\x77\x86\x95\xa4\xb3\xc2\xd1" 25586 "\xe0\xef\xfe\x0d\x1c\x2b\x3a\x49" 25587 "\x58\x67\x76\x85\x94\xa3\xb2\xc1" 25588 "\xd0\xdf\xee\xfd\x0c\x1b\x2a\x39" 25589 "\x48\x57\x66\x75\x84\x93\xa2\xb1" 25590 "\xc0\xcf\xde\xed\xfc\x0b\x1a\x29" 25591 "\x38\x47\x56\x65\x74\x83\x92\xa1" 25592 "\xb0\xbf\xce\xdd\xec\xfb\x0a\x19" 25593 "\x28\x37\x46\x55\x64\x73\x82\x91" 25594 "\xa0\xaf\xbe\xcd\xdc\xeb\xfa\x09" 25595 "\x18\x27\x36\x45\x54\x63\x72\x81" 25596 "\x90\x9f\xae\xbd\xcc\xdb\xea\xf9" 25597 "\x08\x17\x26\x35\x44\x53\x62\x71" 25598 "\x80\x8f\x9e\xad\xbc\xcb\xda\xe9" 25599 "\xf8\x07\x16\x25\x34\x43\x52\x61" 25600 "\x70\x7f\x8e\x9d\xac\xbb\xca\xd9" 25601 "\xe8\xf7\x06\x15\x24\x33\x42\x51" 25602 "\x60\x6f\x7e\x8d\x9c\xab\xba\xc9" 25603 "\xd8\xe7\xf6\x05\x14\x23\x32\x41" 25604 "\x50\x5f\x6e\x7d\x8c\x9b\xaa\xb9" 25605 "\xc8\xd7\xe6\xf5\x04\x13\x22\x31" 25606 "\x40\x4f\x5e\x6d\x7c\x8b\x9a\xa9" 25607 "\xb8\xc7\xd6\xe5\xf4\x03\x12\x21" 25608 "\x30\x3f\x4e\x5d\x6c\x7b\x8a\x99" 25609 "\xa8\xb7\xc6\xd5\xe4\xf3\x02\x11" 25610 "\x20\x2f\x3e\x4d\x5c\x6b\x7a\x89" 25611 "\x98\xa7\xb6\xc5\xd4\xe3\xf2\x01" 25612 "\x10\x1f\x2e\x3d\x4c\x5b\x6a\x79" 25613 "\x88\x97\xa6\xb5\xc4\xd3\xe2\xf1" 25614 "\x00\x11\x22\x33\x44\x55\x66\x77" 25615 "\x88\x99\xaa\xbb\xcc\xdd\xee\xff" 25616 "\x10\x21\x32\x43\x54\x65\x76\x87" 25617 "\x98\xa9\xba\xcb\xdc\xed\xfe\x0f" 25618 "\x20\x31\x42\x53\x64\x75\x86\x97" 25619 "\xa8\xb9\xca\xdb\xec\xfd\x0e\x1f" 25620 "\x30\x41\x52\x63\x74\x85\x96\xa7" 25621 "\xb8\xc9\xda\xeb\xfc\x0d\x1e\x2f" 25622 "\x40\x51\x62\x73\x84\x95\xa6\xb7" 25623 "\xc8\xd9\xea\xfb\x0c\x1d\x2e\x3f" 25624 "\x50\x61\x72\x83\x94\xa5\xb6\xc7" 25625 "\xd8\xe9\xfa\x0b\x1c\x2d\x3e\x4f" 25626 "\x60\x71\x82\x93\xa4\xb5\xc6\xd7" 25627 "\xe8\xf9\x0a\x1b\x2c\x3d\x4e\x5f" 25628 "\x70\x81\x92\xa3\xb4\xc5\xd6\xe7" 25629 "\xf8\x09\x1a\x2b\x3c\x4d\x5e\x6f" 25630 "\x80\x91\xa2\xb3\xc4\xd5\xe6\xf7" 25631 "\x08\x19\x2a\x3b\x4c\x5d\x6e\x7f" 25632 "\x90\xa1\xb2\xc3\xd4\xe5\xf6\x07" 25633 "\x18\x29\x3a\x4b\x5c\x6d\x7e\x8f" 25634 "\xa0\xb1\xc2\xd3\xe4\xf5\x06\x17" 25635 "\x28\x39\x4a\x5b\x6c\x7d\x8e\x9f" 25636 "\xb0\xc1\xd2\xe3\xf4\x05\x16\x27" 25637 "\x38\x49\x5a\x6b\x7c\x8d\x9e\xaf" 25638 "\xc0\xd1\xe2\xf3\x04\x15\x26\x37" 25639 "\x48\x59\x6a\x7b\x8c\x9d\xae\xbf" 25640 "\xd0\xe1\xf2\x03\x14\x25\x36\x47" 25641 "\x58\x69\x7a\x8b\x9c\xad\xbe\xcf" 25642 "\xe0\xf1\x02\x13\x24\x35\x46\x57" 25643 "\x68\x79\x8a\x9b\xac\xbd\xce\xdf" 25644 "\xf0\x01\x12\x23\x34\x45\x56\x67" 25645 "\x78\x89\x9a\xab\xbc\xcd\xde\xef" 25646 "\x00\x13\x26\x39\x4c\x5f\x72\x85" 25647 "\x98\xab\xbe\xd1\xe4\xf7\x0a\x1d" 25648 "\x30\x43\x56\x69\x7c\x8f\xa2\xb5" 25649 "\xc8\xdb\xee\x01\x14\x27\x3a\x4d" 25650 "\x60\x73\x86\x99\xac\xbf\xd2\xe5" 25651 "\xf8\x0b\x1e\x31\x44\x57\x6a\x7d" 25652 "\x90\xa3\xb6\xc9\xdc\xef\x02\x15" 25653 "\x28\x3b\x4e\x61\x74\x87\x9a\xad" 25654 "\xc0\xd3\xe6\xf9\x0c\x1f\x32\x45" 25655 "\x58\x6b\x7e\x91\xa4\xb7\xca\xdd" 25656 "\xf0\x03\x16\x29\x3c\x4f\x62\x75" 25657 "\x88\x9b\xae\xc1\xd4\xe7\xfa\x0d" 25658 "\x20\x33\x46\x59\x6c\x7f\x92\xa5" 25659 "\xb8\xcb\xde\xf1\x04\x17\x2a\x3d" 25660 "\x50\x63\x76\x89\x9c\xaf\xc2\xd5" 25661 "\xe8\xfb\x0e\x21\x34\x47\x5a\x6d" 25662 "\x80\x93\xa6\xb9\xcc\xdf\xf2\x05" 25663 "\x18\x2b\x3e\x51\x64\x77\x8a\x9d" 25664 "\xb0\xc3\xd6\xe9\xfc\x0f\x22\x35" 25665 "\x48\x5b\x6e\x81\x94\xa7\xba\xcd" 25666 "\xe0\xf3\x06\x19\x2c\x3f\x52\x65" 25667 "\x78\x8b\x9e\xb1\xc4\xd7\xea\xfd" 25668 "\x10\x23\x36\x49\x5c\x6f\x82\x95" 25669 "\xa8\xbb\xce\xe1\xf4\x07\x1a\x2d" 25670 "\x40\x53\x66\x79\x8c\x9f\xb2\xc5" 25671 "\xd8\xeb\xfe\x11\x24\x37\x4a\x5d" 25672 "\x70\x83\x96\xa9\xbc\xcf\xe2\xf5" 25673 "\x08\x1b\x2e\x41\x54\x67\x7a\x8d" 25674 "\xa0\xb3\xc6\xd9\xec\xff\x12\x25" 25675 "\x38\x4b\x5e\x71\x84\x97\xaa\xbd" 25676 "\xd0\xe3\xf6\x09\x1c\x2f\x42\x55" 25677 "\x68\x7b\x8e\xa1\xb4\xc7\xda\xed" 25678 "\x00\x15\x2a\x3f\x54\x69\x7e\x93" 25679 "\xa8\xbd\xd2\xe7\xfc\x11\x26\x3b" 25680 "\x50\x65\x7a\x8f\xa4\xb9\xce\xe3" 25681 "\xf8\x0d\x22\x37\x4c\x61\x76\x8b" 25682 "\xa0\xb5\xca\xdf\xf4\x09\x1e\x33" 25683 "\x48\x5d\x72\x87\x9c\xb1\xc6\xdb" 25684 "\xf0\x05\x1a\x2f\x44\x59\x6e\x83" 25685 "\x98\xad\xc2\xd7\xec\x01\x16\x2b" 25686 "\x40\x55\x6a\x7f\x94\xa9\xbe\xd3" 25687 "\xe8\xfd\x12\x27\x3c\x51\x66\x7b" 25688 "\x90\xa5\xba\xcf\xe4\xf9\x0e\x23" 25689 "\x38\x4d\x62\x77\x8c\xa1\xb6\xcb" 25690 "\xe0\xf5\x0a\x1f\x34\x49\x5e\x73" 25691 "\x88\x9d\xb2\xc7\xdc\xf1\x06\x1b" 25692 "\x30\x45\x5a\x6f\x84\x99\xae\xc3" 25693 "\xd8\xed\x02\x17\x2c\x41\x56\x6b" 25694 "\x80\x95\xaa\xbf\xd4\xe9\xfe\x13" 25695 "\x28\x3d\x52\x67\x7c\x91\xa6\xbb" 25696 "\xd0\xe5\xfa\x0f\x24\x39\x4e\x63" 25697 "\x78\x8d\xa2\xb7\xcc\xe1\xf6\x0b" 25698 "\x20\x35\x4a\x5f\x74\x89\x9e\xb3" 25699 "\xc8\xdd\xf2\x07\x1c\x31\x46\x5b" 25700 "\x70\x85\x9a\xaf\xc4\xd9\xee\x03" 25701 "\x18\x2d\x42\x57\x6c\x81\x96\xab" 25702 "\xc0\xd5\xea\xff\x14\x29\x3e\x53" 25703 "\x68\x7d\x92\xa7\xbc\xd1\xe6\xfb" 25704 "\x10\x25\x3a\x4f\x64\x79\x8e\xa3" 25705 "\xb8\xcd\xe2\xf7\x0c\x21\x36\x4b" 25706 "\x60\x75\x8a\x9f\xb4\xc9\xde\xf3" 25707 "\x08\x1d\x32\x47\x5c\x71\x86\x9b" 25708 "\xb0\xc5\xda\xef\x04\x19\x2e\x43" 25709 "\x58\x6d\x82\x97\xac\xc1\xd6\xeb" 25710 "\x00\x17\x2e\x45\x5c\x73\x8a\xa1" 25711 "\xb8\xcf\xe6\xfd\x14\x2b\x42\x59" 25712 "\x70\x87\x9e\xb5\xcc\xe3\xfa\x11" 25713 "\x28\x3f\x56\x6d\x84\x9b\xb2\xc9" 25714 "\xe0\xf7\x0e\x25\x3c\x53\x6a\x81" 25715 "\x98\xaf\xc6\xdd\xf4\x0b\x22\x39" 25716 "\x50\x67\x7e\x95\xac\xc3\xda\xf1" 25717 "\x08\x1f\x36\x4d\x64\x7b\x92\xa9" 25718 "\xc0\xd7\xee\x05\x1c\x33\x4a\x61" 25719 "\x78\x8f\xa6\xbd\xd4\xeb\x02\x19" 25720 "\x30\x47\x5e\x75\x8c\xa3\xba\xd1" 25721 "\xe8\xff\x16\x2d\x44\x5b\x72\x89" 25722 "\xa0\xb7\xce\xe5\xfc\x13\x2a\x41" 25723 "\x58\x6f\x86\x9d\xb4\xcb\xe2\xf9" 25724 "\x10\x27\x3e\x55\x6c\x83\x9a\xb1" 25725 "\xc8\xdf\xf6\x0d\x24\x3b\x52\x69" 25726 "\x80\x97\xae\xc5\xdc\xf3\x0a\x21" 25727 "\x38\x4f\x66\x7d\x94\xab\xc2\xd9" 25728 "\xf0\x07\x1e\x35\x4c\x63\x7a\x91" 25729 "\xa8\xbf\xd6\xed\x04\x1b\x32\x49" 25730 "\x60\x77\x8e\xa5\xbc\xd3\xea\x01" 25731 "\x18\x2f\x46\x5d\x74\x8b\xa2\xb9" 25732 "\xd0\xe7\xfe\x15\x2c\x43\x5a\x71" 25733 "\x88\x9f\xb6\xcd\xe4\xfb\x12\x29" 25734 "\x40\x57\x6e\x85\x9c\xb3\xca\xe1" 25735 "\xf8\x0f\x26\x3d\x54\x6b\x82\x99" 25736 "\xb0\xc7\xde\xf5\x0c\x23\x3a\x51" 25737 "\x68\x7f\x96\xad\xc4\xdb\xf2\x09" 25738 "\x20\x37\x4e\x65\x7c\x93\xaa\xc1" 25739 "\xd8\xef\x06\x1d\x34\x4b\x62\x79" 25740 "\x90\xa7\xbe\xd5\xec\x03\x1a\x31" 25741 "\x48\x5f\x76\x8d\xa4\xbb\xd2\xe9" 25742 "\x00\x19\x32\x4b\x64\x7d\x96\xaf" 25743 "\xc8\xe1\xfa\x13\x2c\x45\x5e\x77" 25744 "\x90\xa9\xc2\xdb\xf4\x0d\x26\x3f" 25745 "\x58\x71\x8a\xa3\xbc\xd5\xee\x07" 25746 "\x20\x39\x52\x6b\x84\x9d\xb6\xcf" 25747 "\xe8\x01\x1a\x33\x4c\x65\x7e\x97" 25748 "\xb0\xc9\xe2\xfb\x14\x2d\x46\x5f" 25749 "\x78\x91\xaa\xc3\xdc\xf5\x0e\x27" 25750 "\x40\x59\x72\x8b\xa4\xbd\xd6\xef" 25751 "\x08\x21\x3a\x53\x6c\x85\x9e\xb7" 25752 "\xd0\xe9\x02\x1b\x34\x4d\x66\x7f" 25753 "\x98\xb1\xca\xe3\xfc\x15\x2e\x47" 25754 "\x60\x79\x92\xab\xc4\xdd\xf6\x0f" 25755 "\x28\x41\x5a\x73\x8c\xa5\xbe\xd7" 25756 "\xf0\x09\x22\x3b\x54\x6d\x86\x9f" 25757 "\xb8\xd1\xea\x03\x1c\x35\x4e\x67" 25758 "\x80\x99\xb2\xcb\xe4\xfd\x16\x2f" 25759 "\x48\x61\x7a\x93\xac\xc5\xde\xf7" 25760 "\x10\x29\x42\x5b\x74\x8d\xa6\xbf" 25761 "\xd8\xf1\x0a\x23\x3c\x55\x6e\x87" 25762 "\xa0\xb9\xd2\xeb\x04\x1d\x36\x4f" 25763 "\x68\x81\x9a\xb3\xcc\xe5\xfe\x17" 25764 "\x30\x49\x62\x7b\x94\xad\xc6\xdf" 25765 "\xf8\x11\x2a\x43\x5c\x75\x8e\xa7" 25766 "\xc0\xd9\xf2\x0b\x24\x3d\x56\x6f" 25767 "\x88\xa1\xba\xd3\xec\x05\x1e\x37" 25768 "\x50\x69\x82\x9b\xb4\xcd\xe6\xff" 25769 "\x18\x31\x4a\x63\x7c\x95\xae\xc7" 25770 "\xe0\xf9\x12\x2b\x44\x5d\x76\x8f" 25771 "\xa8\xc1\xda\xf3\x0c\x25\x3e\x57" 25772 "\x70\x89\xa2\xbb\xd4\xed\x06\x1f" 25773 "\x38\x51\x6a\x83\x9c\xb5\xce\xe7" 25774 "\x00\x1b\x36\x51\x6c\x87\xa2\xbd" 25775 "\xd8\xf3\x0e\x29\x44\x5f\x7a\x95" 25776 "\xb0\xcb\xe6\x01\x1c\x37\x52\x6d" 25777 "\x88\xa3\xbe\xd9\xf4\x0f\x2a\x45" 25778 "\x60\x7b\x96\xb1\xcc\xe7\x02\x1d" 25779 "\x38\x53\x6e\x89\xa4\xbf\xda\xf5" 25780 "\x10\x2b\x46\x61\x7c\x97\xb2\xcd" 25781 "\xe8\x03\x1e\x39\x54\x6f\x8a\xa5" 25782 "\xc0\xdb\xf6\x11\x2c\x47\x62\x7d" 25783 "\x98\xb3\xce\xe9\x04\x1f\x3a\x55" 25784 "\x70\x8b\xa6\xc1\xdc\xf7\x12\x2d" 25785 "\x48\x63\x7e\x99\xb4\xcf\xea\x05" 25786 "\x20\x3b\x56\x71\x8c\xa7\xc2\xdd" 25787 "\xf8\x13\x2e\x49\x64\x7f\x9a\xb5" 25788 "\xd0\xeb\x06\x21\x3c\x57\x72\x8d" 25789 "\xa8\xc3\xde\xf9\x14\x2f\x4a\x65" 25790 "\x80\x9b\xb6\xd1\xec\x07\x22\x3d" 25791 "\x58\x73\x8e\xa9\xc4\xdf\xfa\x15" 25792 "\x30\x4b\x66\x81\x9c\xb7\xd2\xed" 25793 "\x08\x23\x3e\x59\x74\x8f\xaa\xc5" 25794 "\xe0\xfb\x16\x31\x4c\x67\x82\x9d" 25795 "\xb8\xd3\xee\x09\x24\x3f\x5a\x75" 25796 "\x90\xab\xc6\xe1\xfc\x17\x32\x4d" 25797 "\x68\x83\x9e\xb9\xd4\xef\x0a\x25" 25798 "\x40\x5b\x76\x91\xac\xc7\xe2\xfd" 25799 "\x18\x33\x4e\x69\x84\x9f\xba\xd5" 25800 "\xf0\x0b\x26\x41\x5c\x77\x92\xad" 25801 "\xc8\xe3\xfe\x19\x34\x4f\x6a\x85" 25802 "\xa0\xbb\xd6\xf1\x0c\x27\x42\x5d" 25803 "\x78\x93\xae\xc9\xe4\xff\x1a\x35" 25804 "\x50\x6b\x86\xa1\xbc\xd7\xf2\x0d" 25805 "\x28\x43\x5e\x79\x94\xaf\xca\xe5" 25806 "\x00\x1d\x3a\x57\x74\x91\xae\xcb" 25807 "\xe8\x05\x22\x3f\x5c\x79\x96\xb3" 25808 "\xd0\xed\x0a\x27\x44\x61\x7e\x9b" 25809 "\xb8\xd5\xf2\x0f\x2c\x49\x66\x83" 25810 "\xa0\xbd\xda\xf7\x14\x31\x4e\x6b" 25811 "\x88\xa5\xc2\xdf\xfc\x19\x36\x53" 25812 "\x70\x8d\xaa\xc7\xe4\x01\x1e\x3b" 25813 "\x58\x75\x92\xaf\xcc\xe9\x06\x23" 25814 "\x40\x5d\x7a\x97\xb4\xd1\xee\x0b" 25815 "\x28\x45\x62\x7f\x9c\xb9\xd6\xf3" 25816 "\x10\x2d\x4a\x67\x84\xa1\xbe\xdb" 25817 "\xf8\x15\x32\x4f\x6c\x89\xa6\xc3" 25818 "\xe0\xfd\x1a\x37\x54\x71\x8e\xab" 25819 "\xc8\xe5\x02\x1f\x3c\x59\x76\x93" 25820 "\xb0\xcd\xea\x07\x24\x41\x5e\x7b" 25821 "\x98\xb5\xd2\xef\x0c\x29\x46\x63" 25822 "\x80\x9d\xba\xd7\xf4\x11\x2e\x4b" 25823 "\x68\x85\xa2\xbf\xdc\xf9\x16\x33" 25824 "\x50\x6d\x8a\xa7\xc4\xe1\xfe\x1b" 25825 "\x38\x55\x72\x8f\xac\xc9\xe6\x03" 25826 "\x20\x3d\x5a\x77\x94\xb1\xce\xeb" 25827 "\x08\x25\x42\x5f\x7c\x99\xb6\xd3" 25828 "\xf0\x0d\x2a\x47\x64\x81\x9e\xbb" 25829 "\xd8\xf5\x12\x2f\x4c\x69\x86\xa3" 25830 "\xc0\xdd\xfa\x17\x34\x51\x6e\x8b" 25831 "\xa8\xc5\xe2\xff\x1c\x39\x56\x73" 25832 "\x90\xad\xca\xe7\x04\x21\x3e\x5b" 25833 "\x78\x95\xb2\xcf\xec\x09\x26\x43" 25834 "\x60\x7d\x9a\xb7\xd4\xf1\x0e\x2b" 25835 "\x48\x65\x82\x9f\xbc\xd9\xf6\x13" 25836 "\x30\x4d\x6a\x87\xa4\xc1\xde\xfb" 25837 "\x18\x35\x52\x6f\x8c\xa9\xc6\xe3" 25838 "\x00\x1f\x3e\x5d\x7c\x9b\xba\xd9" 25839 "\xf8\x17\x36\x55\x74\x93\xb2\xd1" 25840 "\xf0\x0f\x2e\x4d\x6c\x8b\xaa\xc9" 25841 "\xe8\x07\x26\x45\x64\x83\xa2\xc1" 25842 "\xe0\xff\x1e\x3d\x5c\x7b\x9a\xb9" 25843 "\xd8\xf7\x16\x35\x54\x73\x92\xb1" 25844 "\xd0\xef\x0e\x2d\x4c\x6b\x8a\xa9" 25845 "\xc8\xe7\x06\x25\x44\x63\x82\xa1" 25846 "\xc0\xdf\xfe\x1d\x3c\x5b\x7a\x99" 25847 "\xb8\xd7\xf6\x15\x34\x53\x72\x91" 25848 "\xb0\xcf\xee\x0d\x2c\x4b\x6a\x89" 25849 "\xa8\xc7\xe6\x05\x24\x43\x62\x81" 25850 "\xa0\xbf\xde\xfd\x1c\x3b\x5a\x79" 25851 "\x98\xb7\xd6\xf5\x14\x33\x52\x71" 25852 "\x90\xaf\xce\xed\x0c\x2b\x4a\x69" 25853 "\x88\xa7\xc6\xe5\x04\x23\x42\x61" 25854 "\x80\x9f\xbe\xdd\xfc\x1b\x3a\x59" 25855 "\x78\x97\xb6\xd5\xf4\x13\x32\x51" 25856 "\x70\x8f\xae\xcd\xec\x0b\x2a\x49" 25857 "\x68\x87\xa6\xc5\xe4\x03\x22\x41" 25858 "\x60\x7f\x9e\xbd\xdc\xfb\x1a\x39" 25859 "\x58\x77\x96\xb5\xd4\xf3\x12\x31" 25860 "\x50\x6f\x8e\xad\xcc\xeb\x0a\x29" 25861 "\x48\x67\x86\xa5\xc4\xe3\x02\x21" 25862 "\x40\x5f\x7e\x9d\xbc\xdb\xfa\x19" 25863 "\x38\x57\x76\x95\xb4\xd3\xf2\x11" 25864 "\x30\x4f\x6e\x8d\xac\xcb\xea\x09" 25865 "\x28\x47\x66\x85\xa4\xc3\xe2\x01" 25866 "\x20\x3f\x5e\x7d\x9c\xbb\xda\xf9" 25867 "\x18\x37\x56\x75\x94\xb3\xd2\xf1" 25868 "\x10\x2f\x4e\x6d\x8c\xab\xca\xe9" 25869 "\x08\x27\x46\x65\x84\xa3\xc2\xe1" 25870 "\x00\x21\x42\x63", 25871 .ctext = 25872 "\xb5\x81\xf5\x64\x18\x73\xe3\xf0" 25873 "\x4c\x13\xf2\x77\x18\x60\x65\x5e" 25874 "\x29\x01\xce\x98\x55\x53\xf9\x0c" 25875 "\x2a\x08\xd5\x09\xb3\x57\x55\x56" 25876 "\xc5\xe9\x56\x90\xcb\x6a\xa3\xc0" 25877 "\xff\xc4\x79\xb4\xd2\x97\x5d\xc4" 25878 "\x43\xd1\xfe\x94\x7b\x88\x06\x5a" 25879 "\xb2\x9e\x2c\xfc\x44\x03\xb7\x90" 25880 "\xa0\xc1\xba\x6a\x33\xb8\xc7\xb2" 25881 "\x9d\xe1\x12\x4f\xc0\x64\xd4\x01" 25882 "\xfe\x8c\x7a\x66\xf7\xe6\x5a\x91" 25883 "\xbb\xde\x56\x86\xab\x65\x21\x30" 25884 "\x00\x84\x65\x24\xa5\x7d\x85\xb4" 25885 "\xe3\x17\xed\x3a\xb7\x6f\xb4\x0b" 25886 "\x0b\xaf\x15\xae\x5a\x8f\xf2\x0c" 25887 "\x2f\x27\xf4\x09\xd8\xd2\x96\xb7" 25888 "\x71\xf2\xc5\x99\x4d\x7e\x7f\x75" 25889 "\x77\x89\x30\x8b\x59\xdb\xa2\xb2" 25890 "\xa0\xf3\x19\x39\x2b\xc5\x7e\x3f" 25891 "\x4f\xd9\xd3\x56\x28\x97\x44\xdc" 25892 "\xc0\x8b\x77\x24\xd9\x52\xe7\xc5" 25893 "\xaf\xf6\x7d\x59\xb2\x44\x05\x1d" 25894 "\xb1\xb0\x11\xa5\x0f\xec\x33\xe1" 25895 "\x6d\x1b\x4e\x1f\xff\x57\x91\xb4" 25896 "\x5b\x9a\x96\xc5\x53\xbc\xae\x20" 25897 "\x3c\xbb\x14\xe2\xe8\x22\x33\xc1" 25898 "\x5e\x76\x9e\x46\x99\xf6\x2a\x15" 25899 "\xc6\x97\x02\xa0\x66\x43\xd1\xa6" 25900 "\x31\xa6\x9f\xfb\xf4\xd3\x69\xe5" 25901 "\xcd\x76\x95\xb8\x7a\x82\x7f\x21" 25902 "\x45\xff\x3f\xce\x55\xf6\x95\x10" 25903 "\x08\x77\x10\x43\xc6\xf3\x09\xe5" 25904 "\x68\xe7\x3c\xad\x00\x52\x45\x0d" 25905 "\xfe\x2d\xc6\xc2\x94\x8c\x12\x1d" 25906 "\xe6\x25\xae\x98\x12\x8e\x19\x9c" 25907 "\x81\x68\xb1\x11\xf6\x69\xda\xe3" 25908 "\x62\x08\x18\x7a\x25\x49\x28\xac" 25909 "\xba\x71\x12\x0b\xe4\xa2\xe5\xc7" 25910 "\x5d\x8e\xec\x49\x40\x21\xbf\x5a" 25911 "\x98\xf3\x02\x68\x55\x03\x7f\x8a" 25912 "\xe5\x94\x0c\x32\x5c\x07\x82\x63" 25913 "\xaf\x6f\x91\x40\x84\x8e\x52\x25" 25914 "\xd0\xb0\x29\x53\x05\xe2\x50\x7a" 25915 "\x34\xeb\xc9\x46\x20\xa8\x3d\xde" 25916 "\x7f\x16\x5f\x36\xc5\x2e\xdc\xd1" 25917 "\x15\x47\xc7\x50\x40\x6d\x91\xc5" 25918 "\xe7\x93\x95\x1a\xd3\x57\xbc\x52" 25919 "\x33\xee\x14\x19\x22\x52\x89\xa7" 25920 "\x4a\x25\x56\x77\x4b\xca\xcf\x0a" 25921 "\xe1\xf5\x35\x85\x30\x7e\x59\x4a" 25922 "\xbd\x14\x5b\xdf\xe3\x46\xcb\xac" 25923 "\x1f\x6c\x96\x0e\xf4\x81\xd1\x99" 25924 "\xca\x88\x63\x3d\x02\x58\x6b\xa9" 25925 "\xe5\x9f\xb3\x00\xb2\x54\xc6\x74" 25926 "\x1c\xbf\x46\xab\x97\xcc\xf8\x54" 25927 "\x04\x07\x08\x52\xe6\xc0\xda\x93" 25928 "\x74\x7d\x93\x99\x5d\x78\x68\xa6" 25929 "\x2e\x6b\xd3\x6a\x69\xcc\x12\x6b" 25930 "\xd4\xc7\xa5\xc6\xe7\xf6\x03\x04" 25931 "\x5d\xcd\x61\x5e\x17\x40\xdc\xd1" 25932 "\x5c\xf5\x08\xdf\x5c\x90\x85\xa4" 25933 "\xaf\xf6\x78\xbb\x0d\xf1\xf4\xa4" 25934 "\x54\x26\x72\x9e\x61\xfa\x86\xcf" 25935 "\xe8\x9e\xa1\xe0\xc7\x48\x23\xae" 25936 "\x5a\x90\xae\x75\x0a\x74\x18\x89" 25937 "\x05\xb1\x92\xb2\x7f\xd0\x1b\xa6" 25938 "\x62\x07\x25\x01\xc7\xc2\x4f\xf9" 25939 "\xe8\xfe\x63\x95\x80\x07\xb4\x26" 25940 "\xcc\xd1\x26\xb6\xc4\x3f\x9e\xcb" 25941 "\x8e\x3b\x2e\x44\x16\xd3\x10\x9a" 25942 "\x95\x08\xeb\xc8\xcb\xeb\xbf\x6f" 25943 "\x0b\xcd\x1f\xc8\xca\x86\xaa\xec" 25944 "\x33\xe6\x69\xf4\x45\x25\x86\x3a" 25945 "\x22\x94\x4f\x00\x23\x6a\x44\xc2" 25946 "\x49\x97\x33\xab\x36\x14\x0a\x70" 25947 "\x24\xc3\xbe\x04\x3b\x79\xa0\xf9" 25948 "\xb8\xe7\x76\x29\x22\x83\xd7\xf2" 25949 "\x94\xf4\x41\x49\xba\x5f\x7b\x07" 25950 "\xb5\xfb\xdb\x03\x1a\x9f\xb6\x4c" 25951 "\xc2\x2e\x37\x40\x49\xc3\x38\x16" 25952 "\xe2\x4f\x77\x82\xb0\x68\x4c\x71" 25953 "\x1d\x57\x61\x9c\xd9\x4e\x54\x99" 25954 "\x47\x13\x28\x73\x3c\xbb\x00\x90" 25955 "\xf3\x4d\xc9\x0e\xfd\xe7\xb1\x71" 25956 "\xd3\x15\x79\xbf\xcc\x26\x2f\xbd" 25957 "\xad\x6c\x50\x69\x6c\x3e\x6d\x80" 25958 "\x9a\xea\x78\xaf\x19\xb2\x0d\x4d" 25959 "\xad\x04\x07\xae\x22\x90\x4a\x93" 25960 "\x32\x0e\x36\x9b\x1b\x46\xba\x3b" 25961 "\xb4\xac\xc6\xd1\xa2\x31\x53\x3b" 25962 "\x2a\x3d\x45\xfe\x03\x61\x10\x85" 25963 "\x17\x69\xa6\x78\xcc\x6c\x87\x49" 25964 "\x53\xf9\x80\x10\xde\x80\xa2\x41" 25965 "\x6a\xc3\x32\x02\xad\x6d\x3c\x56" 25966 "\x00\x71\x51\x06\xa7\xbd\xfb\xef" 25967 "\x3c\xb5\x9f\xfc\x48\x7d\x53\x7c" 25968 "\x66\xb0\x49\x23\xc4\x47\x10\x0e" 25969 "\xe5\x6c\x74\x13\xe6\xc5\x3f\xaa" 25970 "\xde\xff\x07\x44\xdd\x56\x1b\xad" 25971 "\x09\x77\xfb\x5b\x12\xb8\x0d\x38" 25972 "\x17\x37\x35\x7b\x9b\xbc\xfe\xd4" 25973 "\x7e\x8b\xda\x7e\x5b\x04\xa7\x22" 25974 "\xa7\x31\xa1\x20\x86\xc7\x1b\x99" 25975 "\xdb\xd1\x89\xf4\x94\xa3\x53\x69" 25976 "\x8d\xe7\xe8\x74\x11\x8d\x74\xd6" 25977 "\x07\x37\x91\x9f\xfd\x67\x50\x3a" 25978 "\xc9\xe1\xf4\x36\xd5\xa0\x47\xd1" 25979 "\xf9\xe5\x39\xa3\x31\xac\x07\x36" 25980 "\x23\xf8\x66\x18\x14\x28\x34\x0f" 25981 "\xb8\xd0\xe7\x29\xb3\x04\x4b\x55" 25982 "\x01\x41\xb2\x75\x8d\xcb\x96\x85" 25983 "\x3a\xfb\xab\x2b\x9e\xfa\x58\x20" 25984 "\x44\x1f\xc0\x14\x22\x75\x61\xe8" 25985 "\xaa\x19\xcf\xf1\x82\x56\xf4\xd7" 25986 "\x78\x7b\x3d\x5f\xb3\x9e\x0b\x8a" 25987 "\x57\x50\xdb\x17\x41\x65\x4d\xa3" 25988 "\x02\xc9\x9c\x9c\x53\xfb\x39\x39" 25989 "\x9b\x1d\x72\x24\xda\xb7\x39\xbe" 25990 "\x13\x3b\xfa\x29\xda\x9e\x54\x64" 25991 "\x6e\xba\xd8\xa1\xcb\xb3\x36\xfa" 25992 "\xcb\x47\x85\xe9\x61\x38\xbc\xbe" 25993 "\xc5\x00\x38\x2a\x54\xf7\xc4\xb9" 25994 "\xb3\xd3\x7b\xa0\xa0\xf8\x72\x7f" 25995 "\x8c\x8e\x82\x0e\xc6\x1c\x75\x9d" 25996 "\xca\x8e\x61\x87\xde\xad\x80\xd2" 25997 "\xf5\xf9\x80\xef\x15\x75\xaf\xf5" 25998 "\x80\xfb\xff\x6d\x1e\x25\xb7\x40" 25999 "\x61\x6a\x39\x5a\x6a\xb5\x31\xab" 26000 "\x97\x8a\x19\x89\x44\x40\xc0\xa6" 26001 "\xb4\x4e\x30\x32\x7b\x13\xe7\x67" 26002 "\xa9\x8b\x57\x04\xc2\x01\xa6\xf4" 26003 "\x28\x99\xad\x2c\x76\xa3\x78\xc2" 26004 "\x4a\xe6\xca\x5c\x50\x6a\xc1\xb0" 26005 "\x62\x4b\x10\x8e\x7c\x17\x43\xb3" 26006 "\x17\x66\x1c\x3e\x8d\x69\xf0\x5a" 26007 "\x71\xf5\x97\xdc\xd1\x45\xdd\x28" 26008 "\xf3\x5d\xdf\x53\x7b\x11\xe5\xbc" 26009 "\x4c\xdb\x1b\x51\x6b\xe9\xfb\x3d" 26010 "\xc1\xc3\x2c\xb9\x71\xf5\xb6\xb2" 26011 "\x13\x36\x79\x80\x53\xe8\xd3\xa6" 26012 "\x0a\xaf\xfd\x56\x97\xf7\x40\x8e" 26013 "\x45\xce\xf8\xb0\x9e\x5c\x33\x82" 26014 "\xb0\x44\x56\xfc\x05\x09\xe9\x2a" 26015 "\xac\x26\x80\x14\x1d\xc8\x3a\x35" 26016 "\x4c\x82\x97\xfd\x76\xb7\xa9\x0a" 26017 "\x35\x58\x79\x8e\x0f\x66\xea\xaf" 26018 "\x51\x6c\x09\xa9\x6e\x9b\xcb\x9a" 26019 "\x31\x47\xa0\x2f\x7c\x71\xb4\x4a" 26020 "\x11\xaa\x8c\x66\xc5\x64\xe6\x3a" 26021 "\x54\xda\x24\x6a\xc4\x41\x65\x46" 26022 "\x82\xa0\x0a\x0f\x5f\xfb\x25\xd0" 26023 "\x2c\x91\xa7\xee\xc4\x81\x07\x86" 26024 "\x75\x5e\x33\x69\x97\xe4\x2c\xa8" 26025 "\x9d\x9f\x0b\x6a\xbe\xad\x98\xda" 26026 "\x6d\x94\x41\xda\x2c\x1e\x89\xc4" 26027 "\xc2\xaf\x1e\x00\x05\x0b\x83\x60" 26028 "\xbd\x43\xea\x15\x23\x7f\xb9\xac" 26029 "\xee\x4f\x2c\xaf\x2a\xf3\xdf\xd0" 26030 "\xf3\x19\x31\xbb\x4a\x74\x84\x17" 26031 "\x52\x32\x2c\x7d\x61\xe4\xcb\xeb" 26032 "\x80\x38\x15\x52\xcb\x6f\xea\xe5" 26033 "\x73\x9c\xd9\x24\x69\xc6\x95\x32" 26034 "\x21\xc8\x11\xe4\xdc\x36\xd7\x93" 26035 "\x38\x66\xfb\xb2\x7f\x3a\xb9\xaf" 26036 "\x31\xdd\x93\x75\x78\x8a\x2c\x94" 26037 "\x87\x1a\x58\xec\x9e\x7d\x4d\xba" 26038 "\xe1\xe5\x4d\xfc\xbc\xa4\x2a\x14" 26039 "\xef\xcc\xa7\xec\xab\x43\x09\x18" 26040 "\xd3\xab\x68\xd1\x07\x99\x44\x47" 26041 "\xd6\x83\x85\x3b\x30\xea\xa9\x6b" 26042 "\x63\xea\xc4\x07\xfb\x43\x2f\xa4" 26043 "\xaa\xb0\xab\x03\x89\xce\x3f\x8c" 26044 "\x02\x7c\x86\x54\xbc\x88\xaf\x75" 26045 "\xd2\xdc\x63\x17\xd3\x26\xf6\x96" 26046 "\xa9\x3c\xf1\x61\x8c\x11\x18\xcc" 26047 "\xd6\xea\x5b\xe2\xcd\xf0\xf1\xb2" 26048 "\xe5\x35\x90\x1f\x85\x4c\x76\x5b" 26049 "\x66\xce\x44\xa4\x32\x9f\xe6\x7b" 26050 "\x71\x6e\x9f\x58\x15\x67\x72\x87" 26051 "\x64\x8e\x3a\x44\x45\xd4\x76\xfa" 26052 "\xc2\xf6\xef\x85\x05\x18\x7a\x9b" 26053 "\xba\x41\x54\xac\xf0\xfc\x59\x12" 26054 "\x3f\xdf\xa0\xe5\x8a\x65\xfd\x3a" 26055 "\x62\x8d\x83\x2c\x03\xbe\x05\x76" 26056 "\x2e\x53\x49\x97\x94\x33\xae\x40" 26057 "\x81\x15\xdb\x6e\xad\xaa\xf5\x4b" 26058 "\xe3\x98\x70\xdf\xe0\x7c\xcd\xdb" 26059 "\x02\xd4\x7d\x2f\xc1\xe6\xb4\xf3" 26060 "\xd7\x0d\x7a\xd9\x23\x9e\x87\x2d" 26061 "\xce\x87\xad\xcc\x72\x05\x00\x29" 26062 "\xdc\x73\x7f\x64\xc1\x15\x0e\xc2" 26063 "\xdf\xa7\x5f\xeb\x41\xa1\xcd\xef" 26064 "\x5c\x50\x79\x2a\x56\x56\x71\x8c" 26065 "\xac\xc0\x79\x50\x69\xca\x59\x32" 26066 "\x65\xf2\x54\xe4\x52\x38\x76\xd1" 26067 "\x5e\xde\x26\x9e\xfb\x75\x2e\x11" 26068 "\xb5\x10\xf4\x17\x73\xf5\x89\xc7" 26069 "\x4f\x43\x5c\x8e\x7c\xb9\x05\x52" 26070 "\x24\x40\x99\xfe\x9b\x85\x0b\x6c" 26071 "\x22\x3e\x8b\xae\x86\xa1\xd2\x79" 26072 "\x05\x68\x6b\xab\xe3\x41\x49\xed" 26073 "\x15\xa1\x8d\x40\x2d\x61\xdf\x1a" 26074 "\x59\xc9\x26\x8b\xef\x30\x4c\x88" 26075 "\x4b\x10\xf8\x8d\xa6\x92\x9f\x4b" 26076 "\xf3\xc4\x53\x0b\x89\x5d\x28\x92" 26077 "\xcf\x78\xb2\xc0\x5d\xed\x7e\xfc" 26078 "\xc0\x12\x23\x5f\x5a\x78\x86\x43" 26079 "\x6e\x27\xf7\x5a\xa7\x6a\xed\x19" 26080 "\x04\xf0\xb3\x12\xd1\xbd\x0e\x89" 26081 "\x6e\xbc\x96\xa8\xd8\x49\x39\x9f" 26082 "\x7e\x67\xf0\x2e\x3e\x01\xa9\xba" 26083 "\xec\x8b\x62\x8e\xcb\x4a\x70\x43" 26084 "\xc7\xc2\xc4\xca\x82\x03\x73\xe9" 26085 "\x11\xdf\xcf\x54\xea\xc9\xb0\x95" 26086 "\x51\xc0\x13\x3d\x92\x05\xfa\xf4" 26087 "\xa9\x34\xc8\xce\x6c\x3d\x54\xcc" 26088 "\xc4\xaf\xf1\xdc\x11\x44\x26\xa2" 26089 "\xaf\xf1\x85\x75\x7d\x03\x61\x68" 26090 "\x4e\x78\xc6\x92\x7d\x86\x7d\x77" 26091 "\xdc\x71\x72\xdb\xc6\xae\xa1\xcb" 26092 "\x70\x9a\x0b\x19\xbe\x4a\x6c\x2a" 26093 "\xe2\xba\x6c\x64\x9a\x13\x28\xdf" 26094 "\x85\x75\xe6\x43\xf6\x87\x08\x68" 26095 "\x6e\xba\x6e\x79\x9f\x04\xbc\x23" 26096 "\x50\xf6\x33\x5c\x1f\x24\x25\xbe" 26097 "\x33\x47\x80\x45\x56\xa3\xa7\xd7" 26098 "\x7a\xb1\x34\x0b\x90\x3c\x9c\xad" 26099 "\x44\x5f\x9e\x0e\x9d\xd4\xbd\x93" 26100 "\x5e\xfa\x3c\xe0\xb0\xd9\xed\xf3" 26101 "\xd6\x2e\xff\x24\xd8\x71\x6c\xed" 26102 "\xaf\x55\xeb\x22\xac\x93\x68\x32" 26103 "\x05\x5b\x47\xdd\xc6\x4a\xcb\xc7" 26104 "\x10\xe1\x3c\x92\x1a\xf3\x23\x78" 26105 "\x2b\xa1\xd2\x80\xf4\x12\xb1\x20" 26106 "\x8f\xff\x26\x35\xdd\xfb\xc7\x4e" 26107 "\x78\xf1\x2d\x50\x12\x77\xa8\x60" 26108 "\x7c\x0f\xf5\x16\x2f\x63\x70\x2a" 26109 "\xc0\x96\x80\x4e\x0a\xb4\x93\x35" 26110 "\x5d\x1d\x3f\x56\xf7\x2f\xbb\x90" 26111 "\x11\x16\x8f\xa2\xec\x47\xbe\xac" 26112 "\x56\x01\x26\x56\xb1\x8c\xb2\x10" 26113 "\xf9\x1a\xca\xf5\xd1\xb7\x39\x20" 26114 "\x63\xf1\x69\x20\x4f\x13\x12\x1f" 26115 "\x5b\x65\xfc\x98\xf7\xc4\x7a\xbe" 26116 "\xf7\x26\x4d\x2b\x84\x7b\x42\xad" 26117 "\xd8\x7a\x0a\xb4\xd8\x74\xbf\xc1" 26118 "\xf0\x6e\xb4\x29\xa3\xbb\xca\x46" 26119 "\x67\x70\x6a\x2d\xce\x0e\xa2\x8a" 26120 "\xa9\x87\xbf\x05\xc4\xc1\x04\xa3" 26121 "\xab\xd4\x45\x43\x8c\xb6\x02\xb0" 26122 "\x41\xc8\xfc\x44\x3d\x59\xaa\x2e" 26123 "\x44\x21\x2a\x8d\x88\x9d\x57\xf4" 26124 "\xa0\x02\x77\xb8\xa6\xa0\xe6\x75" 26125 "\x5c\x82\x65\x3e\x03\x5c\x29\x8f" 26126 "\x38\x55\xab\x33\x26\xef\x9f\x43" 26127 "\x52\xfd\x68\xaf\x36\xb4\xbb\x9a" 26128 "\x58\x09\x09\x1b\xc3\x65\x46\x46" 26129 "\x1d\xa7\x94\x18\x23\x50\x2c\xca" 26130 "\x2c\x55\x19\x97\x01\x9d\x93\x3b" 26131 "\x63\x86\xf2\x03\x67\x45\xd2\x72" 26132 "\x28\x52\x6c\xf4\xe3\x1c\xb5\x11" 26133 "\x13\xf1\xeb\x21\xc7\xd9\x56\x82" 26134 "\x2b\x82\x39\xbd\x69\x54\xed\x62" 26135 "\xc3\xe2\xde\x73\xd4\x6a\x12\xae" 26136 "\x13\x21\x7f\x4b\x5b\xfc\xbf\xe8" 26137 "\x2b\xbe\x56\xba\x68\x8b\x9a\xb1" 26138 "\x6e\xfa\xbf\x7e\x5a\x4b\xf1\xac" 26139 "\x98\x65\x85\xd1\x93\x53\xd3\x7b" 26140 "\x09\xdd\x4b\x10\x6d\x84\xb0\x13" 26141 "\x65\xbd\xcf\x52\x09\xc4\x85\xe2" 26142 "\x84\x74\x15\x65\xb7\xf7\x51\xaf" 26143 "\x55\xad\xa4\xd1\x22\x54\x70\x94" 26144 "\xa0\x1c\x90\x41\xfd\x99\xd7\x5a" 26145 "\x31\xef\xaa\x25\xd0\x7f\x4f\xea" 26146 "\x1d\x55\x42\xe5\x49\xb0\xd0\x46" 26147 "\x62\x36\x43\xb2\x82\x15\x75\x50" 26148 "\xa4\x72\xeb\x54\x27\x1f\x8a\xe4" 26149 "\x7d\xe9\x66\xc5\xf1\x53\xa4\xd1" 26150 "\x0c\xeb\xb8\xf8\xbc\xd4\xe2\xe7" 26151 "\xe1\xf8\x4b\xcb\xa9\xa1\xaf\x15" 26152 "\x83\xcb\x72\xd0\x33\x79\x00\x2d" 26153 "\x9f\xd7\xf1\x2e\x1e\x10\xe4\x45" 26154 "\xc0\x75\x3a\x39\xea\x68\xf7\x5d" 26155 "\x1b\x73\x8f\xe9\x8e\x0f\x72\x47" 26156 "\xae\x35\x0a\x31\x7a\x14\x4d\x4a" 26157 "\x6f\x47\xf7\x7e\x91\x6e\x74\x8b" 26158 "\x26\x47\xf9\xc3\xf9\xde\x70\xf5" 26159 "\x61\xab\xa9\x27\x9f\x82\xe4\x9c" 26160 "\x89\x91\x3f\x2e\x6a\xfd\xb5\x49" 26161 "\xe9\xfd\x59\x14\x36\x49\x40\x6d" 26162 "\x32\xd8\x85\x42\xf3\xa5\xdf\x0c" 26163 "\xa8\x27\xd7\x54\xe2\x63\x2f\xf2" 26164 "\x7e\x8b\x8b\xe7\xf1\x9a\x95\x35" 26165 "\x43\xdc\x3a\xe4\xb6\xf4\xd0\xdf" 26166 "\x9c\xcb\x94\xf3\x21\xa0\x77\x50" 26167 "\xe2\xc6\xc4\xc6\x5f\x09\x64\x5b" 26168 "\x92\x90\xd8\xe1\xd1\xed\x4b\x42" 26169 "\xd7\x37\xaf\x65\x3d\x11\x39\xb6" 26170 "\x24\x8a\x60\xae\xd6\x1e\xbf\x0e" 26171 "\x0d\xd7\xdc\x96\x0e\x65\x75\x4e" 26172 "\x29\x06\x9d\xa4\x51\x3a\x10\x63" 26173 "\x8f\x17\x07\xd5\x8e\x3c\xf4\x28" 26174 "\x00\x5a\x5b\x05\x19\xd8\xc0\x6c" 26175 "\xe5\x15\xe4\x9c\x9d\x71\x9d\x5e" 26176 "\x94\x29\x1a\xa7\x80\xfa\x0e\x33" 26177 "\x03\xdd\xb7\x3e\x9a\xa9\x26\x18" 26178 "\x37\xa9\x64\x08\x4d\x94\x5a\x88" 26179 "\xca\x35\xce\x81\x02\xe3\x1f\x1b" 26180 "\x89\x1a\x77\x85\xe3\x41\x6d\x32" 26181 "\x42\x19\x23\x7d\xc8\x73\xee\x25" 26182 "\x85\x0d\xf8\x31\x25\x79\x1b\x6f" 26183 "\x79\x25\xd2\xd8\xd4\x23\xfd\xf7" 26184 "\x82\x36\x6a\x0c\x46\x22\x15\xe9" 26185 "\xff\x72\x41\x91\x91\x7d\x3a\xb7" 26186 "\xdd\x65\x99\x70\xf6\x8d\x84\xf8" 26187 "\x67\x15\x20\x11\xd6\xb2\x55\x7b" 26188 "\xdb\x87\xee\xef\x55\x89\x2a\x59" 26189 "\x2b\x07\x8f\x43\x8a\x59\x3c\x01" 26190 "\x8b\x65\x54\xa1\x66\xd5\x38\xbd" 26191 "\xc6\x30\xa9\xcc\x49\xb6\xa8\x1b" 26192 "\xb8\xc0\x0e\xe3\x45\x28\xe2\xff" 26193 "\x41\x9f\x7e\x7c\xd1\xae\x9e\x25" 26194 "\x3f\x4c\x7c\x7c\xf4\xa8\x26\x4d" 26195 "\x5c\xfd\x4b\x27\x18\xf9\x61\x76" 26196 "\x48\xba\x0c\x6b\xa9\x4d\xfc\xf5" 26197 "\x3b\x35\x7e\x2f\x4a\xa9\xc2\x9a" 26198 "\xae\xab\x86\x09\x89\xc9\xc2\x40" 26199 "\x39\x2c\x81\xb3\xb8\x17\x67\xc2" 26200 "\x0d\x32\x4a\x3a\x67\x81\xd7\x1a" 26201 "\x34\x52\xc5\xdb\x0a\xf5\x63\x39" 26202 "\xea\x1f\xe1\x7c\xa1\x9e\xc1\x35" 26203 "\xe3\xb1\x18\x45\x67\xf9\x22\x38" 26204 "\x95\xd9\x34\x34\x86\xc6\x41\x94" 26205 "\x15\xf9\x5b\x41\xa6\x87\x8b\xf8" 26206 "\xd5\xe1\x1b\xe2\x5b\xf3\x86\x10" 26207 "\xff\xe6\xae\x69\x76\xbc\x0d\xb4" 26208 "\x09\x90\x0c\xa2\x65\x0c\xad\x74" 26209 "\xf5\xd7\xff\xda\xc1\xce\x85\xbe" 26210 "\x00\xa7\xff\x4d\x2f\x65\xd3\x8c" 26211 "\x86\x2d\x05\xe8\xed\x3e\x6b\x8b" 26212 "\x0f\x3d\x83\x8c\xf1\x1d\x5b\x96" 26213 "\x2e\xb1\x9c\xc2\x98\xe1\x70\xb9" 26214 "\xba\x5c\x8a\x43\xd6\x34\xa7\x2d" 26215 "\xc9\x92\xae\xf2\xa5\x7b\x05\x49" 26216 "\xa7\x33\x34\x86\xca\xe4\x96\x23" 26217 "\x76\x5b\xf2\xc6\xf1\x51\x28\x42" 26218 "\x7b\xcc\x76\x8f\xfa\xa2\xad\x31" 26219 "\xd4\xd6\x7a\x6d\x25\x25\x54\xe4" 26220 "\x3f\x50\x59\xe1\x5c\x05\xb7\x27" 26221 "\x48\xbf\x07\xec\x1b\x13\xbe\x2b" 26222 "\xa1\x57\x2b\xd5\xab\xd7\xd0\x4c" 26223 "\x1e\xcb\x71\x9b\xc5\x90\x85\xd3" 26224 "\xde\x59\xec\x71\xeb\x89\xbb\xd0" 26225 "\x09\x50\xe1\x16\x3f\xfd\x1c\x34" 26226 "\xc3\x1c\xa1\x10\x77\x53\x98\xef" 26227 "\xf2\xfd\xa5\x01\x59\xc2\x9b\x26" 26228 "\xc7\x42\xd9\x49\xda\x58\x2b\x6e" 26229 "\x9f\x53\x19\x76\x7e\xd9\xc9\x0e" 26230 "\x68\xc8\x7f\x51\x22\x42\xef\x49" 26231 "\xa4\x55\xb6\x36\xac\x09\xc7\x31" 26232 "\x88\x15\x4b\x2e\x8f\x3a\x08\xf7" 26233 "\xd8\xf7\xa8\xc5\xa9\x33\xa6\x45" 26234 "\xe4\xc4\x94\x76\xf3\x0d\x8f\x7e" 26235 "\xc8\xf6\xbc\x23\x0a\xb6\x4c\xd3" 26236 "\x6a\xcd\x36\xc2\x90\x5c\x5c\x3c" 26237 "\x65\x7b\xc2\xd6\xcc\xe6\x0d\x87" 26238 "\x73\x2e\x71\x79\x16\x06\x63\x28" 26239 "\x09\x15\xd8\x89\x38\x38\x3d\xb5" 26240 "\x42\x1c\x08\x24\xf7\x2a\xd2\x9d" 26241 "\xc8\xca\xef\xf9\x27\xd8\x07\x86" 26242 "\xf7\x43\x0b\x55\x15\x3f\x9f\x83" 26243 "\xef\xdc\x49\x9d\x2a\xc1\x54\x62" 26244 "\xbd\x9b\x66\x55\x9f\xb7\x12\xf3" 26245 "\x1b\x4d\x9d\x2a\x5c\xed\x87\x75" 26246 "\x87\x26\xec\x61\x2c\xb4\x0f\x89" 26247 "\xb0\xfb\x2e\x68\x5d\x15\xc7\x8d" 26248 "\x2e\xc0\xd9\xec\xaf\x4f\xd2\x25" 26249 "\x29\xe8\xd2\x26\x2b\x67\xe9\xfc" 26250 "\x2b\xa8\x67\x96\x12\x1f\x5b\x96" 26251 "\xc6\x14\x53\xaf\x44\xea\xd6\xe2" 26252 "\x94\x98\xe4\x12\x93\x4c\x92\xe0" 26253 "\x18\xa5\x8d\x2d\xe4\x71\x3c\x47" 26254 "\x4c\xf7\xe6\x47\x9e\xc0\x68\xdf" 26255 "\xd4\xf5\x5a\x74\xb1\x2b\x29\x03" 26256 "\x19\x07\xaf\x90\x62\x5c\x68\x98" 26257 "\x48\x16\x11\x02\x9d\xee\xb4\x9b" 26258 "\xe5\x42\x7f\x08\xfd\x16\x32\x0b" 26259 "\xd0\xb3\xfa\x2b\xb7\x99\xf9\x29" 26260 "\xcd\x20\x45\x9f\xb3\x1a\x5d\xa2" 26261 "\xaf\x4d\xe0\xbd\x42\x0d\xbc\x74" 26262 "\x99\x9c\x8e\x53\x1a\xb4\x3e\xbd" 26263 "\xa2\x9a\x2d\xf7\xf8\x39\x0f\x67" 26264 "\x63\xfc\x6b\xc0\xaf\xb3\x4b\x4f" 26265 "\x55\xc4\xcf\xa7\xc8\x04\x11\x3e" 26266 "\x14\x32\xbb\x1b\x38\x77\xd6\x7f" 26267 "\x54\x4c\xdf\x75\xf3\x07\x2d\x33" 26268 "\x9b\xa8\x20\xe1\x7b\x12\xb5\xf3" 26269 "\xef\x2f\xce\x72\xe5\x24\x60\xc1" 26270 "\x30\xe2\xab\xa1\x8e\x11\x09\xa8" 26271 "\x21\x33\x44\xfe\x7f\x35\x32\x93" 26272 "\x39\xa7\xad\x8b\x79\x06\xb2\xcb" 26273 "\x4e\xa9\x5f\xc7\xba\x74\x29\xec" 26274 "\x93\xa0\x4e\x54\x93\xc0\xbc\x55" 26275 "\x64\xf0\x48\xe5\x57\x99\xee\x75" 26276 "\xd6\x79\x0f\x66\xb7\xc6\x57\x76" 26277 "\xf7\xb7\xf3\x9c\xc5\x60\xe8\x7f" 26278 "\x83\x76\xd6\x0e\xaa\xe6\x90\x39" 26279 "\x1d\xa6\x32\x6a\x34\xe3\x55\xf8" 26280 "\x58\xa0\x58\x7d\x33\xe0\x22\x39" 26281 "\x44\x64\x87\x86\x5a\x2f\xa7\x7e" 26282 "\x0f\x38\xea\xb0\x30\xcc\x61\xa5" 26283 "\x6a\x32\xae\x1e\xf7\xe9\xd0\xa9" 26284 "\x0c\x32\x4b\xb5\x49\x28\xab\x85" 26285 "\x2f\x8e\x01\x36\x38\x52\xd0\xba" 26286 "\xd6\x02\x78\xf8\x0e\x3e\x9c\x8b" 26287 "\x6b\x45\x99\x3f\x5c\xfe\x58\xf1" 26288 "\x5c\x94\x04\xe1\xf5\x18\x6d\x51" 26289 "\xb2\x5d\x18\x20\xb6\xc2\x9a\x42" 26290 "\x1d\xb3\xab\x3c\xb6\x3a\x13\x03" 26291 "\xb2\x46\x82\x4f\xfc\x64\xbc\x4f" 26292 "\xca\xfa\x9c\xc0\xd5\xa7\xbd\x11" 26293 "\xb7\xe4\x5a\xf6\x6f\x4d\x4d\x54" 26294 "\xea\xa4\x98\x66\xd4\x22\x3b\xd3" 26295 "\x8f\x34\x47\xd9\x7c\xf4\x72\x3b" 26296 "\x4d\x02\x77\xf6\xd6\xdd\x08\x0a" 26297 "\x81\xe1\x86\x89\x3e\x56\x10\x3c" 26298 "\xba\xd7\x81\x8c\x08\xbc\x8b\xe2" 26299 "\x53\xec\xa7\x89\xee\xc8\x56\xb5" 26300 "\x36\x2c\xb2\x03\xba\x99\xdd\x7c" 26301 "\x48\xa0\xb0\xbc\x91\x33\xe9\xa8" 26302 "\xcb\xcd\xcf\x59\x5f\x1f\x15\xe2" 26303 "\x56\xf5\x4e\x01\x35\x27\x45\x77" 26304 "\x47\xc8\xbc\xcb\x7e\x39\xc1\x97" 26305 "\x28\xd3\x84\xfc\x2c\x3e\xc8\xad" 26306 "\x9c\xf8\x8a\x61\x9c\x28\xaa\xc5" 26307 "\x99\x20\x43\x85\x9d\xa5\xe2\x8b" 26308 "\xb8\xae\xeb\xd0\x32\x0d\x52\x78" 26309 "\x09\x56\x3f\xc7\xd8\x7e\x26\xfc" 26310 "\x37\xfb\x6f\x04\xfc\xfa\x92\x10" 26311 "\xac\xf8\x3e\x21\xdc\x8c\x21\x16" 26312 "\x7d\x67\x6e\xf6\xcd\xda\xb6\x98" 26313 "\x23\xab\x23\x3c\xb2\x10\xa0\x53" 26314 "\x5a\x56\x9f\xc5\xd0\xff\xbb\xe4" 26315 "\x98\x3c\x69\x1e\xdb\x38\x8f\x7e" 26316 "\x0f\xd2\x98\x88\x81\x8b\x45\x67" 26317 "\xea\x33\xf1\xeb\xe9\x97\x55\x2e" 26318 "\xd9\xaa\xeb\x5a\xec\xda\xe1\x68" 26319 "\xa8\x9d\x3c\x84\x7c\x05\x3d\x62" 26320 "\x87\x8f\x03\x21\x28\x95\x0c\x89" 26321 "\x25\x22\x4a\xb0\x93\xa9\x50\xa2" 26322 "\x2f\x57\x6e\x18\x42\x19\x54\x0c" 26323 "\x55\x67\xc6\x11\x49\xf4\x5c\xd2" 26324 "\xe9\x3d\xdd\x8b\x48\x71\x21\x00" 26325 "\xc3\x9a\x6c\x85\x74\x28\x83\x4a" 26326 "\x1b\x31\x05\xe1\x06\x92\xe7\xda" 26327 "\x85\x73\x78\x45\x20\x7f\xae\x13" 26328 "\x7c\x33\x06\x22\xf4\x83\xf9\x35" 26329 "\x3f\x6c\x71\xa8\x4e\x48\xbe\x9b" 26330 "\xce\x8a\xba\xda\xbe\x28\x08\xf7" 26331 "\xe2\x14\x8c\x71\xea\x72\xf9\x33" 26332 "\xf2\x88\x3f\xd7\xbb\x69\x6c\x29" 26333 "\x19\xdc\x84\xce\x1f\x12\x4f\xc8" 26334 "\xaf\xa5\x04\xba\x5a\xab\xb0\xd9" 26335 "\x14\x1f\x6c\x68\x98\x39\x89\x7a" 26336 "\xd9\xd8\x2f\xdf\xa8\x47\x4a\x25" 26337 "\xe2\xfb\x33\xf4\x59\x78\xe1\x68" 26338 "\x85\xcf\xfe\x59\x20\xd4\x05\x1d" 26339 "\x80\x99\xae\xbc\xca\xae\x0f\x2f" 26340 "\x65\x43\x34\x8e\x7e\xac\xd3\x93" 26341 "\x2f\xac\x6d\x14\x3d\x02\x07\x70" 26342 "\x9d\xa4\xf3\x1b\x5c\x36\xfc\x01" 26343 "\x73\x34\x85\x0c\x6c\xd6\xf1\xbd" 26344 "\x3f\xdf\xee\xf5\xd9\xba\x56\xef" 26345 "\xf4\x9b\x6b\xee\x9f\x5a\x78\x6d" 26346 "\x32\x19\xf4\xf7\xf8\x4c\x69\x0b" 26347 "\x4b\xbc\xbb\xb7\xf2\x85\xaf\x70" 26348 "\x75\x24\x6c\x54\xa7\x0e\x4d\x1d" 26349 "\x01\xbf\x08\xac\xcf\x7f\x2c\xe3" 26350 "\x14\x89\x5e\x70\x5a\x99\x92\xcd" 26351 "\x01\x84\xc8\xd2\xab\xe5\x4f\x58" 26352 "\xe7\x0f\x2f\x0e\xff\x68\xea\xfd" 26353 "\x15\xb3\x17\xe6\xb0\xe7\x85\xd8" 26354 "\x23\x2e\x05\xc7\xc9\xc4\x46\x1f" 26355 "\xe1\x9e\x49\x20\x23\x24\x4d\x7e" 26356 "\x29\x65\xff\xf4\xb6\xfd\x1a\x85" 26357 "\xc4\x16\xec\xfc\xea\x7b\xd6\x2c" 26358 "\x43\xf8\xb7\xbf\x79\xc0\x85\xcd" 26359 "\xef\xe1\x98\xd3\xa5\xf7\x90\x8c" 26360 "\xe9\x7f\x80\x6b\xd2\xac\x4c\x30" 26361 "\xa7\xc6\x61\x6c\xd2\xf9\x2c\xff" 26362 "\x30\xbc\x22\x81\x7d\x93\x12\xe4" 26363 "\x0a\xcd\xaf\xdd\xe8\xab\x0a\x1e" 26364 "\x13\xa4\x27\xc3\x5f\xf7\x4b\xbb" 26365 "\x37\x09\x4b\x91\x6f\x92\x4f\xaf" 26366 "\x52\xee\xdf\xef\x09\x6f\xf7\x5c" 26367 "\x6e\x12\x17\x72\x63\x57\xc7\xba" 26368 "\x3b\x6b\x38\x32\x73\x1b\x9c\x80" 26369 "\xc1\x7a\xc6\xcf\xcd\x35\xc0\x6b" 26370 "\x31\x1a\x6b\xe9\xd8\x2c\x29\x3f" 26371 "\x96\xfb\xb6\xcd\x13\x91\x3b\xc2" 26372 "\xd2\xa3\x31\x8d\xa4\xcd\x57\xcd" 26373 "\x13\x3d\x64\xfd\x06\xce\xe6\xdc" 26374 "\x0c\x24\x43\x31\x40\x57\xf1\x72" 26375 "\x17\xe3\x3a\x63\x6d\x35\xcf\x5d" 26376 "\x97\x40\x59\xdd\xf7\x3c\x02\xf7" 26377 "\x1c\x7e\x05\xbb\xa9\x0d\x01\xb1" 26378 "\x8e\xc0\x30\xa9\x53\x24\xc9\x89" 26379 "\x84\x6d\xaa\xd0\xcd\x91\xc2\x4d" 26380 "\x91\xb0\x89\xe2\xbf\x83\x44\xaa" 26381 "\x28\x72\x23\xa0\xc2\xad\xad\x1c" 26382 "\xfc\x3f\x09\x7a\x0b\xdc\xc5\x1b" 26383 "\x87\x13\xc6\x5b\x59\x8d\xf2\xc8" 26384 "\xaf\xdf\x11\x95", 26385 .len = 4100, 26386 }, 26387 }; 26388 26389 static const struct cipher_testvec chacha20_tv_template[] = { 26390 { /* RFC7539 A.2. Test Vector #1 */ 26391 .key = "\x00\x00\x00\x00\x00\x00\x00\x00" 26392 "\x00\x00\x00\x00\x00\x00\x00\x00" 26393 "\x00\x00\x00\x00\x00\x00\x00\x00" 26394 "\x00\x00\x00\x00\x00\x00\x00\x00", 26395 .klen = 32, 26396 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 26397 "\x00\x00\x00\x00\x00\x00\x00\x00", 26398 .ptext = "\x00\x00\x00\x00\x00\x00\x00\x00" 26399 "\x00\x00\x00\x00\x00\x00\x00\x00" 26400 "\x00\x00\x00\x00\x00\x00\x00\x00" 26401 "\x00\x00\x00\x00\x00\x00\x00\x00" 26402 "\x00\x00\x00\x00\x00\x00\x00\x00" 26403 "\x00\x00\x00\x00\x00\x00\x00\x00" 26404 "\x00\x00\x00\x00\x00\x00\x00\x00" 26405 "\x00\x00\x00\x00\x00\x00\x00\x00", 26406 .ctext = "\x76\xb8\xe0\xad\xa0\xf1\x3d\x90" 26407 "\x40\x5d\x6a\xe5\x53\x86\xbd\x28" 26408 "\xbd\xd2\x19\xb8\xa0\x8d\xed\x1a" 26409 "\xa8\x36\xef\xcc\x8b\x77\x0d\xc7" 26410 "\xda\x41\x59\x7c\x51\x57\x48\x8d" 26411 "\x77\x24\xe0\x3f\xb8\xd8\x4a\x37" 26412 "\x6a\x43\xb8\xf4\x15\x18\xa1\x1c" 26413 "\xc3\x87\xb6\x69\xb2\xee\x65\x86", 26414 .len = 64, 26415 }, { /* RFC7539 A.2. Test Vector #2 */ 26416 .key = "\x00\x00\x00\x00\x00\x00\x00\x00" 26417 "\x00\x00\x00\x00\x00\x00\x00\x00" 26418 "\x00\x00\x00\x00\x00\x00\x00\x00" 26419 "\x00\x00\x00\x00\x00\x00\x00\x01", 26420 .klen = 32, 26421 .iv = "\x01\x00\x00\x00\x00\x00\x00\x00" 26422 "\x00\x00\x00\x00\x00\x00\x00\x02", 26423 .ptext = "\x41\x6e\x79\x20\x73\x75\x62\x6d" 26424 "\x69\x73\x73\x69\x6f\x6e\x20\x74" 26425 "\x6f\x20\x74\x68\x65\x20\x49\x45" 26426 "\x54\x46\x20\x69\x6e\x74\x65\x6e" 26427 "\x64\x65\x64\x20\x62\x79\x20\x74" 26428 "\x68\x65\x20\x43\x6f\x6e\x74\x72" 26429 "\x69\x62\x75\x74\x6f\x72\x20\x66" 26430 "\x6f\x72\x20\x70\x75\x62\x6c\x69" 26431 "\x63\x61\x74\x69\x6f\x6e\x20\x61" 26432 "\x73\x20\x61\x6c\x6c\x20\x6f\x72" 26433 "\x20\x70\x61\x72\x74\x20\x6f\x66" 26434 "\x20\x61\x6e\x20\x49\x45\x54\x46" 26435 "\x20\x49\x6e\x74\x65\x72\x6e\x65" 26436 "\x74\x2d\x44\x72\x61\x66\x74\x20" 26437 "\x6f\x72\x20\x52\x46\x43\x20\x61" 26438 "\x6e\x64\x20\x61\x6e\x79\x20\x73" 26439 "\x74\x61\x74\x65\x6d\x65\x6e\x74" 26440 "\x20\x6d\x61\x64\x65\x20\x77\x69" 26441 "\x74\x68\x69\x6e\x20\x74\x68\x65" 26442 "\x20\x63\x6f\x6e\x74\x65\x78\x74" 26443 "\x20\x6f\x66\x20\x61\x6e\x20\x49" 26444 "\x45\x54\x46\x20\x61\x63\x74\x69" 26445 "\x76\x69\x74\x79\x20\x69\x73\x20" 26446 "\x63\x6f\x6e\x73\x69\x64\x65\x72" 26447 "\x65\x64\x20\x61\x6e\x20\x22\x49" 26448 "\x45\x54\x46\x20\x43\x6f\x6e\x74" 26449 "\x72\x69\x62\x75\x74\x69\x6f\x6e" 26450 "\x22\x2e\x20\x53\x75\x63\x68\x20" 26451 "\x73\x74\x61\x74\x65\x6d\x65\x6e" 26452 "\x74\x73\x20\x69\x6e\x63\x6c\x75" 26453 "\x64\x65\x20\x6f\x72\x61\x6c\x20" 26454 "\x73\x74\x61\x74\x65\x6d\x65\x6e" 26455 "\x74\x73\x20\x69\x6e\x20\x49\x45" 26456 "\x54\x46\x20\x73\x65\x73\x73\x69" 26457 "\x6f\x6e\x73\x2c\x20\x61\x73\x20" 26458 "\x77\x65\x6c\x6c\x20\x61\x73\x20" 26459 "\x77\x72\x69\x74\x74\x65\x6e\x20" 26460 "\x61\x6e\x64\x20\x65\x6c\x65\x63" 26461 "\x74\x72\x6f\x6e\x69\x63\x20\x63" 26462 "\x6f\x6d\x6d\x75\x6e\x69\x63\x61" 26463 "\x74\x69\x6f\x6e\x73\x20\x6d\x61" 26464 "\x64\x65\x20\x61\x74\x20\x61\x6e" 26465 "\x79\x20\x74\x69\x6d\x65\x20\x6f" 26466 "\x72\x20\x70\x6c\x61\x63\x65\x2c" 26467 "\x20\x77\x68\x69\x63\x68\x20\x61" 26468 "\x72\x65\x20\x61\x64\x64\x72\x65" 26469 "\x73\x73\x65\x64\x20\x74\x6f", 26470 .ctext = "\xa3\xfb\xf0\x7d\xf3\xfa\x2f\xde" 26471 "\x4f\x37\x6c\xa2\x3e\x82\x73\x70" 26472 "\x41\x60\x5d\x9f\x4f\x4f\x57\xbd" 26473 "\x8c\xff\x2c\x1d\x4b\x79\x55\xec" 26474 "\x2a\x97\x94\x8b\xd3\x72\x29\x15" 26475 "\xc8\xf3\xd3\x37\xf7\xd3\x70\x05" 26476 "\x0e\x9e\x96\xd6\x47\xb7\xc3\x9f" 26477 "\x56\xe0\x31\xca\x5e\xb6\x25\x0d" 26478 "\x40\x42\xe0\x27\x85\xec\xec\xfa" 26479 "\x4b\x4b\xb5\xe8\xea\xd0\x44\x0e" 26480 "\x20\xb6\xe8\xdb\x09\xd8\x81\xa7" 26481 "\xc6\x13\x2f\x42\x0e\x52\x79\x50" 26482 "\x42\xbd\xfa\x77\x73\xd8\xa9\x05" 26483 "\x14\x47\xb3\x29\x1c\xe1\x41\x1c" 26484 "\x68\x04\x65\x55\x2a\xa6\xc4\x05" 26485 "\xb7\x76\x4d\x5e\x87\xbe\xa8\x5a" 26486 "\xd0\x0f\x84\x49\xed\x8f\x72\xd0" 26487 "\xd6\x62\xab\x05\x26\x91\xca\x66" 26488 "\x42\x4b\xc8\x6d\x2d\xf8\x0e\xa4" 26489 "\x1f\x43\xab\xf9\x37\xd3\x25\x9d" 26490 "\xc4\xb2\xd0\xdf\xb4\x8a\x6c\x91" 26491 "\x39\xdd\xd7\xf7\x69\x66\xe9\x28" 26492 "\xe6\x35\x55\x3b\xa7\x6c\x5c\x87" 26493 "\x9d\x7b\x35\xd4\x9e\xb2\xe6\x2b" 26494 "\x08\x71\xcd\xac\x63\x89\x39\xe2" 26495 "\x5e\x8a\x1e\x0e\xf9\xd5\x28\x0f" 26496 "\xa8\xca\x32\x8b\x35\x1c\x3c\x76" 26497 "\x59\x89\xcb\xcf\x3d\xaa\x8b\x6c" 26498 "\xcc\x3a\xaf\x9f\x39\x79\xc9\x2b" 26499 "\x37\x20\xfc\x88\xdc\x95\xed\x84" 26500 "\xa1\xbe\x05\x9c\x64\x99\xb9\xfd" 26501 "\xa2\x36\xe7\xe8\x18\xb0\x4b\x0b" 26502 "\xc3\x9c\x1e\x87\x6b\x19\x3b\xfe" 26503 "\x55\x69\x75\x3f\x88\x12\x8c\xc0" 26504 "\x8a\xaa\x9b\x63\xd1\xa1\x6f\x80" 26505 "\xef\x25\x54\xd7\x18\x9c\x41\x1f" 26506 "\x58\x69\xca\x52\xc5\xb8\x3f\xa3" 26507 "\x6f\xf2\x16\xb9\xc1\xd3\x00\x62" 26508 "\xbe\xbc\xfd\x2d\xc5\xbc\xe0\x91" 26509 "\x19\x34\xfd\xa7\x9a\x86\xf6\xe6" 26510 "\x98\xce\xd7\x59\xc3\xff\x9b\x64" 26511 "\x77\x33\x8f\x3d\xa4\xf9\xcd\x85" 26512 "\x14\xea\x99\x82\xcc\xaf\xb3\x41" 26513 "\xb2\x38\x4d\xd9\x02\xf3\xd1\xab" 26514 "\x7a\xc6\x1d\xd2\x9c\x6f\x21\xba" 26515 "\x5b\x86\x2f\x37\x30\xe3\x7c\xfd" 26516 "\xc4\xfd\x80\x6c\x22\xf2\x21", 26517 .len = 375, 26518 26519 }, { /* RFC7539 A.2. Test Vector #3 */ 26520 .key = "\x1c\x92\x40\xa5\xeb\x55\xd3\x8a" 26521 "\xf3\x33\x88\x86\x04\xf6\xb5\xf0" 26522 "\x47\x39\x17\xc1\x40\x2b\x80\x09" 26523 "\x9d\xca\x5c\xbc\x20\x70\x75\xc0", 26524 .klen = 32, 26525 .iv = "\x2a\x00\x00\x00\x00\x00\x00\x00" 26526 "\x00\x00\x00\x00\x00\x00\x00\x02", 26527 .ptext = "\x27\x54\x77\x61\x73\x20\x62\x72" 26528 "\x69\x6c\x6c\x69\x67\x2c\x20\x61" 26529 "\x6e\x64\x20\x74\x68\x65\x20\x73" 26530 "\x6c\x69\x74\x68\x79\x20\x74\x6f" 26531 "\x76\x65\x73\x0a\x44\x69\x64\x20" 26532 "\x67\x79\x72\x65\x20\x61\x6e\x64" 26533 "\x20\x67\x69\x6d\x62\x6c\x65\x20" 26534 "\x69\x6e\x20\x74\x68\x65\x20\x77" 26535 "\x61\x62\x65\x3a\x0a\x41\x6c\x6c" 26536 "\x20\x6d\x69\x6d\x73\x79\x20\x77" 26537 "\x65\x72\x65\x20\x74\x68\x65\x20" 26538 "\x62\x6f\x72\x6f\x67\x6f\x76\x65" 26539 "\x73\x2c\x0a\x41\x6e\x64\x20\x74" 26540 "\x68\x65\x20\x6d\x6f\x6d\x65\x20" 26541 "\x72\x61\x74\x68\x73\x20\x6f\x75" 26542 "\x74\x67\x72\x61\x62\x65\x2e", 26543 .ctext = "\x62\xe6\x34\x7f\x95\xed\x87\xa4" 26544 "\x5f\xfa\xe7\x42\x6f\x27\xa1\xdf" 26545 "\x5f\xb6\x91\x10\x04\x4c\x0d\x73" 26546 "\x11\x8e\xff\xa9\x5b\x01\xe5\xcf" 26547 "\x16\x6d\x3d\xf2\xd7\x21\xca\xf9" 26548 "\xb2\x1e\x5f\xb1\x4c\x61\x68\x71" 26549 "\xfd\x84\xc5\x4f\x9d\x65\xb2\x83" 26550 "\x19\x6c\x7f\xe4\xf6\x05\x53\xeb" 26551 "\xf3\x9c\x64\x02\xc4\x22\x34\xe3" 26552 "\x2a\x35\x6b\x3e\x76\x43\x12\xa6" 26553 "\x1a\x55\x32\x05\x57\x16\xea\xd6" 26554 "\x96\x25\x68\xf8\x7d\x3f\x3f\x77" 26555 "\x04\xc6\xa8\xd1\xbc\xd1\xbf\x4d" 26556 "\x50\xd6\x15\x4b\x6d\xa7\x31\xb1" 26557 "\x87\xb5\x8d\xfd\x72\x8a\xfa\x36" 26558 "\x75\x7a\x79\x7a\xc1\x88\xd1", 26559 .len = 127, 26560 }, { /* Self-made test vector for long data */ 26561 .key = "\x1c\x92\x40\xa5\xeb\x55\xd3\x8a" 26562 "\xf3\x33\x88\x86\x04\xf6\xb5\xf0" 26563 "\x47\x39\x17\xc1\x40\x2b\x80\x09" 26564 "\x9d\xca\x5c\xbc\x20\x70\x75\xc0", 26565 .klen = 32, 26566 .iv = "\x1c\x00\x00\x00\x00\x00\x00\x00" 26567 "\x00\x00\x00\x00\x00\x00\x00\x01", 26568 .ptext = "\x49\xee\xe0\xdc\x24\x90\x40\xcd" 26569 "\xc5\x40\x8f\x47\x05\xbc\xdd\x81" 26570 "\x47\xc6\x8d\xe6\xb1\x8f\xd7\xcb" 26571 "\x09\x0e\x6e\x22\x48\x1f\xbf\xb8" 26572 "\x5c\xf7\x1e\x8a\xc1\x23\xf2\xd4" 26573 "\x19\x4b\x01\x0f\x4e\xa4\x43\xce" 26574 "\x01\xc6\x67\xda\x03\x91\x18\x90" 26575 "\xa5\xa4\x8e\x45\x03\xb3\x2d\xac" 26576 "\x74\x92\xd3\x53\x47\xc8\xdd\x25" 26577 "\x53\x6c\x02\x03\x87\x0d\x11\x0c" 26578 "\x58\xe3\x12\x18\xfd\x2a\x5b\x40" 26579 "\x0c\x30\xf0\xb8\x3f\x43\xce\xae" 26580 "\x65\x3a\x7d\x7c\xf4\x54\xaa\xcc" 26581 "\x33\x97\xc3\x77\xba\xc5\x70\xde" 26582 "\xd7\xd5\x13\xa5\x65\xc4\x5f\x0f" 26583 "\x46\x1a\x0d\x97\xb5\xf3\xbb\x3c" 26584 "\x84\x0f\x2b\xc5\xaa\xea\xf2\x6c" 26585 "\xc9\xb5\x0c\xee\x15\xf3\x7d\xbe" 26586 "\x9f\x7b\x5a\xa6\xae\x4f\x83\xb6" 26587 "\x79\x49\x41\xf4\x58\x18\xcb\x86" 26588 "\x7f\x30\x0e\xf8\x7d\x44\x36\xea" 26589 "\x75\xeb\x88\x84\x40\x3c\xad\x4f" 26590 "\x6f\x31\x6b\xaa\x5d\xe5\xa5\xc5" 26591 "\x21\x66\xe9\xa7\xe3\xb2\x15\x88" 26592 "\x78\xf6\x79\xa1\x59\x47\x12\x4e" 26593 "\x9f\x9f\x64\x1a\xa0\x22\x5b\x08" 26594 "\xbe\x7c\x36\xc2\x2b\x66\x33\x1b" 26595 "\xdd\x60\x71\xf7\x47\x8c\x61\xc3" 26596 "\xda\x8a\x78\x1e\x16\xfa\x1e\x86" 26597 "\x81\xa6\x17\x2a\xa7\xb5\xc2\xe7" 26598 "\xa4\xc7\x42\xf1\xcf\x6a\xca\xb4" 26599 "\x45\xcf\xf3\x93\xf0\xe7\xea\xf6" 26600 "\xf4\xe6\x33\x43\x84\x93\xa5\x67" 26601 "\x9b\x16\x58\x58\x80\x0f\x2b\x5c" 26602 "\x24\x74\x75\x7f\x95\x81\xb7\x30" 26603 "\x7a\x33\xa7\xf7\x94\x87\x32\x27" 26604 "\x10\x5d\x14\x4c\x43\x29\xdd\x26" 26605 "\xbd\x3e\x3c\x0e\xfe\x0e\xa5\x10" 26606 "\xea\x6b\x64\xfd\x73\xc6\xed\xec" 26607 "\xa8\xc9\xbf\xb3\xba\x0b\x4d\x07" 26608 "\x70\xfc\x16\xfd\x79\x1e\xd7\xc5" 26609 "\x49\x4e\x1c\x8b\x8d\x79\x1b\xb1" 26610 "\xec\xca\x60\x09\x4c\x6a\xd5\x09" 26611 "\x49\x46\x00\x88\x22\x8d\xce\xea" 26612 "\xb1\x17\x11\xde\x42\xd2\x23\xc1" 26613 "\x72\x11\xf5\x50\x73\x04\x40\x47" 26614 "\xf9\x5d\xe7\xa7\x26\xb1\x7e\xb0" 26615 "\x3f\x58\xc1\x52\xab\x12\x67\x9d" 26616 "\x3f\x43\x4b\x68\xd4\x9c\x68\x38" 26617 "\x07\x8a\x2d\x3e\xf3\xaf\x6a\x4b" 26618 "\xf9\xe5\x31\x69\x22\xf9\xa6\x69" 26619 "\xc6\x9c\x96\x9a\x12\x35\x95\x1d" 26620 "\x95\xd5\xdd\xbe\xbf\x93\x53\x24" 26621 "\xfd\xeb\xc2\x0a\x64\xb0\x77\x00" 26622 "\x6f\x88\xc4\x37\x18\x69\x7c\xd7" 26623 "\x41\x92\x55\x4c\x03\xa1\x9a\x4b" 26624 "\x15\xe5\xdf\x7f\x37\x33\x72\xc1" 26625 "\x8b\x10\x67\xa3\x01\x57\x94\x25" 26626 "\x7b\x38\x71\x7e\xdd\x1e\xcc\x73" 26627 "\x55\xd2\x8e\xeb\x07\xdd\xf1\xda" 26628 "\x58\xb1\x47\x90\xfe\x42\x21\x72" 26629 "\xa3\x54\x7a\xa0\x40\xec\x9f\xdd" 26630 "\xc6\x84\x6e\xca\xae\xe3\x68\xb4" 26631 "\x9d\xe4\x78\xff\x57\xf2\xf8\x1b" 26632 "\x03\xa1\x31\xd9\xde\x8d\xf5\x22" 26633 "\x9c\xdd\x20\xa4\x1e\x27\xb1\x76" 26634 "\x4f\x44\x55\xe2\x9b\xa1\x9c\xfe" 26635 "\x54\xf7\x27\x1b\xf4\xde\x02\xf5" 26636 "\x1b\x55\x48\x5c\xdc\x21\x4b\x9e" 26637 "\x4b\x6e\xed\x46\x23\xdc\x65\xb2" 26638 "\xcf\x79\x5f\x28\xe0\x9e\x8b\xe7" 26639 "\x4c\x9d\x8a\xff\xc1\xa6\x28\xb8" 26640 "\x65\x69\x8a\x45\x29\xef\x74\x85" 26641 "\xde\x79\xc7\x08\xae\x30\xb0\xf4" 26642 "\xa3\x1d\x51\x41\xab\xce\xcb\xf6" 26643 "\xb5\xd8\x6d\xe0\x85\xe1\x98\xb3" 26644 "\x43\xbb\x86\x83\x0a\xa0\xf5\xb7" 26645 "\x04\x0b\xfa\x71\x1f\xb0\xf6\xd9" 26646 "\x13\x00\x15\xf0\xc7\xeb\x0d\x5a" 26647 "\x9f\xd7\xb9\x6c\x65\x14\x22\x45" 26648 "\x6e\x45\x32\x3e\x7e\x60\x1a\x12" 26649 "\x97\x82\x14\xfb\xaa\x04\x22\xfa" 26650 "\xa0\xe5\x7e\x8c\x78\x02\x48\x5d" 26651 "\x78\x33\x5a\x7c\xad\xdb\x29\xce" 26652 "\xbb\x8b\x61\xa4\xb7\x42\xe2\xac" 26653 "\x8b\x1a\xd9\x2f\x0b\x8b\x62\x21" 26654 "\x83\x35\x7e\xad\x73\xc2\xb5\x6c" 26655 "\x10\x26\x38\x07\xe5\xc7\x36\x80" 26656 "\xe2\x23\x12\x61\xf5\x48\x4b\x2b" 26657 "\xc5\xdf\x15\xd9\x87\x01\xaa\xac" 26658 "\x1e\x7c\xad\x73\x78\x18\x63\xe0" 26659 "\x8b\x9f\x81\xd8\x12\x6a\x28\x10" 26660 "\xbe\x04\x68\x8a\x09\x7c\x1b\x1c" 26661 "\x83\x66\x80\x47\x80\xe8\xfd\x35" 26662 "\x1c\x97\x6f\xae\x49\x10\x66\xcc" 26663 "\xc6\xd8\xcc\x3a\x84\x91\x20\x77" 26664 "\x72\xe4\x24\xd2\x37\x9f\xc5\xc9" 26665 "\x25\x94\x10\x5f\x40\x00\x64\x99" 26666 "\xdc\xae\xd7\x21\x09\x78\x50\x15" 26667 "\xac\x5f\xc6\x2c\xa2\x0b\xa9\x39" 26668 "\x87\x6e\x6d\xab\xde\x08\x51\x16" 26669 "\xc7\x13\xe9\xea\xed\x06\x8e\x2c" 26670 "\xf8\x37\x8c\xf0\xa6\x96\x8d\x43" 26671 "\xb6\x98\x37\xb2\x43\xed\xde\xdf" 26672 "\x89\x1a\xe7\xeb\x9d\xa1\x7b\x0b" 26673 "\x77\xb0\xe2\x75\xc0\xf1\x98\xd9" 26674 "\x80\x55\xc9\x34\x91\xd1\x59\xe8" 26675 "\x4b\x0f\xc1\xa9\x4b\x7a\x84\x06" 26676 "\x20\xa8\x5d\xfa\xd1\xde\x70\x56" 26677 "\x2f\x9e\x91\x9c\x20\xb3\x24\xd8" 26678 "\x84\x3d\xe1\x8c\x7e\x62\x52\xe5" 26679 "\x44\x4b\x9f\xc2\x93\x03\xea\x2b" 26680 "\x59\xc5\xfa\x3f\x91\x2b\xbb\x23" 26681 "\xf5\xb2\x7b\xf5\x38\xaf\xb3\xee" 26682 "\x63\xdc\x7b\xd1\xff\xaa\x8b\xab" 26683 "\x82\x6b\x37\x04\xeb\x74\xbe\x79" 26684 "\xb9\x83\x90\xef\x20\x59\x46\xff" 26685 "\xe9\x97\x3e\x2f\xee\xb6\x64\x18" 26686 "\x38\x4c\x7a\x4a\xf9\x61\xe8\x9a" 26687 "\xa1\xb5\x01\xa6\x47\xd3\x11\xd4" 26688 "\xce\xd3\x91\x49\x88\xc7\xb8\x4d" 26689 "\xb1\xb9\x07\x6d\x16\x72\xae\x46" 26690 "\x5e\x03\xa1\x4b\xb6\x02\x30\xa8" 26691 "\x3d\xa9\x07\x2a\x7c\x19\xe7\x62" 26692 "\x87\xe3\x82\x2f\x6f\xe1\x09\xd9" 26693 "\x94\x97\xea\xdd\x58\x9e\xae\x76" 26694 "\x7e\x35\xe5\xb4\xda\x7e\xf4\xde" 26695 "\xf7\x32\x87\xcd\x93\xbf\x11\x56" 26696 "\x11\xbe\x08\x74\xe1\x69\xad\xe2" 26697 "\xd7\xf8\x86\x75\x8a\x3c\xa4\xbe" 26698 "\x70\xa7\x1b\xfc\x0b\x44\x2a\x76" 26699 "\x35\xea\x5d\x85\x81\xaf\x85\xeb" 26700 "\xa0\x1c\x61\xc2\xf7\x4f\xa5\xdc" 26701 "\x02\x7f\xf6\x95\x40\x6e\x8a\x9a" 26702 "\xf3\x5d\x25\x6e\x14\x3a\x22\xc9" 26703 "\x37\x1c\xeb\x46\x54\x3f\xa5\x91" 26704 "\xc2\xb5\x8c\xfe\x53\x08\x97\x32" 26705 "\x1b\xb2\x30\x27\xfe\x25\x5d\xdc" 26706 "\x08\x87\xd0\xe5\x94\x1a\xd4\xf1" 26707 "\xfe\xd6\xb4\xa3\xe6\x74\x81\x3c" 26708 "\x1b\xb7\x31\xa7\x22\xfd\xd4\xdd" 26709 "\x20\x4e\x7c\x51\xb0\x60\x73\xb8" 26710 "\x9c\xac\x91\x90\x7e\x01\xb0\xe1" 26711 "\x8a\x2f\x75\x1c\x53\x2a\x98\x2a" 26712 "\x06\x52\x95\x52\xb2\xe9\x25\x2e" 26713 "\x4c\xe2\x5a\x00\xb2\x13\x81\x03" 26714 "\x77\x66\x0d\xa5\x99\xda\x4e\x8c" 26715 "\xac\xf3\x13\x53\x27\x45\xaf\x64" 26716 "\x46\xdc\xea\x23\xda\x97\xd1\xab" 26717 "\x7d\x6c\x30\x96\x1f\xbc\x06\x34" 26718 "\x18\x0b\x5e\x21\x35\x11\x8d\x4c" 26719 "\xe0\x2d\xe9\x50\x16\x74\x81\xa8" 26720 "\xb4\x34\xb9\x72\x42\xa6\xcc\xbc" 26721 "\xca\x34\x83\x27\x10\x5b\x68\x45" 26722 "\x8f\x52\x22\x0c\x55\x3d\x29\x7c" 26723 "\xe3\xc0\x66\x05\x42\x91\x5f\x58" 26724 "\xfe\x4a\x62\xd9\x8c\xa9\x04\x19" 26725 "\x04\xa9\x08\x4b\x57\xfc\x67\x53" 26726 "\x08\x7c\xbc\x66\x8a\xb0\xb6\x9f" 26727 "\x92\xd6\x41\x7c\x5b\x2a\x00\x79" 26728 "\x72", 26729 .ctext = "\x45\xe8\xe0\xb6\x9c\xca\xfd\x87" 26730 "\xe8\x1d\x37\x96\x8a\xe3\x40\x35" 26731 "\xcf\x5e\x3a\x46\x3d\xfb\xd0\x69" 26732 "\xde\xaf\x7a\xd5\x0d\xe9\x52\xec" 26733 "\xc2\x82\xe5\x3e\x7d\xb2\x4a\xd9" 26734 "\xbb\xc3\x9f\xc0\x5d\xac\x93\x8d" 26735 "\x0e\x6f\xd3\xd7\xfb\x6a\x0d\xce" 26736 "\x92\x2c\xf7\xbb\x93\x57\xcc\xee" 26737 "\x42\x72\x6f\xc8\x4b\xd2\x76\xbf" 26738 "\xa0\xe3\x7a\x39\xf9\x5c\x8e\xfd" 26739 "\xa1\x1d\x41\xe5\x08\xc1\x1c\x11" 26740 "\x92\xfd\x39\x5c\x51\xd0\x2f\x66" 26741 "\x33\x4a\x71\x15\xfe\xee\x12\x54" 26742 "\x8c\x8f\x34\xd8\x50\x3c\x18\xa6" 26743 "\xc5\xe1\x46\x8a\xfb\x5f\x7e\x25" 26744 "\x9b\xe2\xc3\x66\x41\x2b\xb3\xa5" 26745 "\x57\x0e\x94\x17\x26\x39\xbb\x54" 26746 "\xae\x2e\x6f\x42\xfb\x4d\x89\x6f" 26747 "\x9d\xf1\x16\x2e\xe3\xe7\xfc\xe3" 26748 "\xb2\x4b\x2b\xa6\x7c\x04\x69\x3a" 26749 "\x70\x5a\xa7\xf1\x31\x64\x19\xca" 26750 "\x45\x79\xd8\x58\x23\x61\xaf\xc2" 26751 "\x52\x05\xc3\x0b\xc1\x64\x7c\x81" 26752 "\xd9\x11\xcf\xff\x02\x3d\x51\x84" 26753 "\x01\xac\xc6\x2e\x34\x2b\x09\x3a" 26754 "\xa8\x5d\x98\x0e\x89\xd9\xef\x8f" 26755 "\xd9\xd7\x7d\xdd\x63\x47\x46\x7d" 26756 "\xa1\xda\x0b\x53\x7d\x79\xcd\xc9" 26757 "\x86\xdd\x6b\x13\xa1\x9a\x70\xdd" 26758 "\x5c\xa1\x69\x3c\xe4\x5d\xe3\x8c" 26759 "\xe5\xf4\x87\x9c\x10\xcf\x0f\x0b" 26760 "\xc8\x43\xdc\xf8\x1d\x62\x5e\x5b" 26761 "\xe2\x03\x06\xc5\x71\xb6\x48\xa5" 26762 "\xf0\x0f\x2d\xd5\xa2\x73\x55\x8f" 26763 "\x01\xa7\x59\x80\x5f\x11\x6c\x40" 26764 "\xff\xb1\xf2\xc6\x7e\x01\xbb\x1c" 26765 "\x69\x9c\xc9\x3f\x71\x5f\x07\x7e" 26766 "\xdf\x6f\x99\xca\x9c\xfd\xf9\xb9" 26767 "\x49\xe7\xcc\x91\xd5\x9b\x8f\x03" 26768 "\xae\xe7\x61\x32\xef\x41\x6c\x75" 26769 "\x84\x9b\x8c\xce\x1d\x6b\x93\x21" 26770 "\x41\xec\xc6\xad\x8e\x0c\x48\xa8" 26771 "\xe2\xf5\x57\xde\xf7\x38\xfd\x4a" 26772 "\x6f\xa7\x4a\xf9\xac\x7d\xb1\x85" 26773 "\x7d\x6c\x95\x0a\x5a\xcf\x68\xd2" 26774 "\xe0\x7a\x26\xd9\xc1\x6d\x3e\xc6" 26775 "\x37\xbd\xbe\x24\x36\x77\x9f\x1b" 26776 "\xc1\x22\xf3\x79\xae\x95\x78\x66" 26777 "\x97\x11\xc0\x1a\xf1\xe8\x0d\x38" 26778 "\x09\xc2\xee\xb7\xd3\x46\x7b\x59" 26779 "\x77\x23\xe8\xb4\x92\x3d\x78\xbe" 26780 "\xe2\x25\x63\xa5\x2a\x06\x70\x92" 26781 "\x32\x63\xf9\x19\x21\x68\xe1\x0b" 26782 "\x9a\xd0\xee\x21\xdb\x1f\xe0\xde" 26783 "\x3e\x64\x02\x4d\x0e\xe0\x0a\xa9" 26784 "\xed\x19\x8c\xa8\xbf\xe3\x2e\x75" 26785 "\x24\x2b\xb0\xe5\x82\x6a\x1e\x6f" 26786 "\x71\x2a\x3a\x60\xed\x06\x0d\x17" 26787 "\xa2\xdb\x29\x1d\xae\xb2\xc4\xfb" 26788 "\x94\x04\xd8\x58\xfc\xc4\x04\x4e" 26789 "\xee\xc7\xc1\x0f\xe9\x9b\x63\x2d" 26790 "\x02\x3e\x02\x67\xe5\xd8\xbb\x79" 26791 "\xdf\xd2\xeb\x50\xe9\x0a\x02\x46" 26792 "\xdf\x68\xcf\xe7\x2b\x0a\x56\xd6" 26793 "\xf7\xbc\x44\xad\xb8\xb5\x5f\xeb" 26794 "\xbc\x74\x6b\xe8\x7e\xb0\x60\xc6" 26795 "\x0d\x96\x09\xbb\x19\xba\xe0\x3c" 26796 "\xc4\x6c\xbf\x0f\x58\xc0\x55\x62" 26797 "\x23\xa0\xff\xb5\x1c\xfd\x18\xe1" 26798 "\xcf\x6d\xd3\x52\xb4\xce\xa6\xfa" 26799 "\xaa\xfb\x1b\x0b\x42\x6d\x79\x42" 26800 "\x48\x70\x5b\x0e\xdd\x3a\xc9\x69" 26801 "\x8b\x73\x67\xf6\x95\xdb\x8c\xfb" 26802 "\xfd\xb5\x08\x47\x42\x84\x9a\xfa" 26803 "\xcc\x67\xb2\x3c\xb6\xfd\xd8\x32" 26804 "\xd6\x04\xb6\x4a\xea\x53\x4b\xf5" 26805 "\x94\x16\xad\xf0\x10\x2e\x2d\xb4" 26806 "\x8b\xab\xe5\x89\xc7\x39\x12\xf3" 26807 "\x8d\xb5\x96\x0b\x87\x5d\xa7\x7c" 26808 "\xb0\xc2\xf6\x2e\x57\x97\x2c\xdc" 26809 "\x54\x1c\x34\x72\xde\x0c\x68\x39" 26810 "\x9d\x32\xa5\x75\x92\x13\x32\xea" 26811 "\x90\x27\xbd\x5b\x1d\xb9\x21\x02" 26812 "\x1c\xcc\xba\x97\x5e\x49\x58\xe8" 26813 "\xac\x8b\xf3\xce\x3c\xf0\x00\xe9" 26814 "\x6c\xae\xe9\x77\xdf\xf4\x02\xcd" 26815 "\x55\x25\x89\x9e\x90\xf3\x6b\x8f" 26816 "\xb7\xd6\x47\x98\x26\x2f\x31\x2f" 26817 "\x8d\xbf\x54\xcd\x99\xeb\x80\xd7" 26818 "\xac\xc3\x08\xc2\xa6\x32\xf1\x24" 26819 "\x76\x7c\x4f\x78\x53\x55\xfb\x00" 26820 "\x8a\xd6\x52\x53\x25\x45\xfb\x0a" 26821 "\x6b\xb9\xbe\x3c\x5e\x11\xcc\x6a" 26822 "\xdd\xfc\xa7\xc4\x79\x4d\xbd\xfb" 26823 "\xce\x3a\xf1\x7a\xda\xeb\xfe\x64" 26824 "\x28\x3d\x0f\xee\x80\xba\x0c\xf8" 26825 "\xe9\x5b\x3a\xd4\xae\xc9\xf3\x0e" 26826 "\xe8\x5d\xc5\x5c\x0b\x20\x20\xee" 26827 "\x40\x0d\xde\x07\xa7\x14\xb4\x90" 26828 "\xb6\xbd\x3b\xae\x7d\x2b\xa7\xc7" 26829 "\xdc\x0b\x4c\x5d\x65\xb0\xd2\xc5" 26830 "\x79\x61\x23\xe0\xa2\x99\x73\x55" 26831 "\xad\xc6\xfb\xc7\x54\xb5\x98\x1f" 26832 "\x8c\x86\xc2\x3f\xbe\x5e\xea\x64" 26833 "\xa3\x60\x18\x9f\x80\xaf\x52\x74" 26834 "\x1a\xfe\x22\xc2\x92\x67\x40\x02" 26835 "\x08\xee\x67\x5b\x67\xe0\x3d\xde" 26836 "\x7a\xaf\x8e\x28\xf3\x5e\x0e\xf4" 26837 "\x48\x56\xaa\x85\x22\xd8\x36\xed" 26838 "\x3b\x3d\x68\x69\x30\xbc\x71\x23" 26839 "\xb1\x6e\x61\x03\x89\x44\x03\xf4" 26840 "\x32\xaa\x4c\x40\x9f\x69\xfb\x70" 26841 "\x91\xcc\x1f\x11\xbd\x76\x67\xe6" 26842 "\x10\x8b\x29\x39\x68\xea\x4e\x6d" 26843 "\xae\xfb\x40\xcf\xe2\xd0\x0d\x8d" 26844 "\x6f\xed\x9b\x8d\x64\x7a\x94\x8e" 26845 "\x32\x38\x78\xeb\x7d\x5f\xf9\x4d" 26846 "\x13\xbe\x21\xea\x16\xe7\x5c\xee" 26847 "\xcd\xf6\x5f\xc6\x45\xb2\x8f\x2b" 26848 "\xb5\x93\x3e\x45\xdb\xfd\xa2\x6a" 26849 "\xec\x83\x92\x99\x87\x47\xe0\x7c" 26850 "\xa2\x7b\xc4\x2a\xcd\xc0\x81\x03" 26851 "\x98\xb0\x87\xb6\x86\x13\x64\x33" 26852 "\x4c\xd7\x99\xbf\xdb\x7b\x6e\xaa" 26853 "\x76\xcc\xa0\x74\x1b\xa3\x6e\x83" 26854 "\xd4\xba\x7a\x84\x9d\x91\x71\xcd" 26855 "\x60\x2d\x56\xfd\x26\x35\xcb\xeb" 26856 "\xac\xe9\xee\xa4\xfc\x18\x5b\x91" 26857 "\xd5\xfe\x84\x45\xe0\xc7\xfd\x11" 26858 "\xe9\x00\xb6\x54\xdf\xe1\x94\xde" 26859 "\x2b\x70\x9f\x94\x7f\x15\x0e\x83" 26860 "\x63\x10\xb3\xf5\xea\xd3\xe8\xd1" 26861 "\xa5\xfc\x17\x19\x68\x9a\xbc\x17" 26862 "\x30\x43\x0a\x1a\x33\x92\xd4\x2a" 26863 "\x2e\x68\x99\xbc\x49\xf0\x68\xe3" 26864 "\xf0\x1f\xcb\xcc\xfa\xbb\x05\x56" 26865 "\x46\x84\x8b\x69\x83\x64\xc5\xe0" 26866 "\xc5\x52\x99\x07\x3c\xa6\x5c\xaf" 26867 "\xa3\xde\xd7\xdb\x43\xe6\xb7\x76" 26868 "\x4e\x4d\xd6\x71\x60\x63\x4a\x0c" 26869 "\x5f\xae\x25\x84\x22\x90\x5f\x26" 26870 "\x61\x4d\x8f\xaf\xc9\x22\xf2\x05" 26871 "\xcf\xc1\xdc\x68\xe5\x57\x8e\x24" 26872 "\x1b\x30\x59\xca\xd7\x0d\xc3\xd3" 26873 "\x52\x9e\x09\x3e\x0e\xaf\xdb\x5f" 26874 "\xc7\x2b\xde\x3a\xfd\xad\x93\x04" 26875 "\x74\x06\x89\x0e\x90\xeb\x85\xff" 26876 "\xe6\x3c\x12\x42\xf4\xfa\x80\x75" 26877 "\x5e\x4e\xd7\x2f\x93\x0b\x34\x41" 26878 "\x02\x85\x68\xd0\x03\x12\xde\x92" 26879 "\x54\x7a\x7e\xfb\x55\xe7\x88\xfb" 26880 "\xa4\xa9\xf2\xd1\xc6\x70\x06\x37" 26881 "\x25\xee\xa7\x6e\xd9\x89\x86\x50" 26882 "\x2e\x07\xdb\xfb\x2a\x86\x45\x0e" 26883 "\x91\xf4\x7c\xbb\x12\x60\xe8\x3f" 26884 "\x71\xbe\x8f\x9d\x26\xef\xd9\x89" 26885 "\xc4\x8f\xd8\xc5\x73\xd8\x84\xaa" 26886 "\x2f\xad\x22\x1e\x7e\xcf\xa2\x08" 26887 "\x23\x45\x89\x42\xa0\x30\xeb\xbf" 26888 "\xa1\xed\xad\xd5\x76\xfa\x24\x8f" 26889 "\x98", 26890 .len = 1281, 26891 }, 26892 }; 26893 26894 static const struct cipher_testvec xchacha20_tv_template[] = { 26895 { /* from libsodium test/default/xchacha20.c */ 26896 .key = "\x79\xc9\x97\x98\xac\x67\x30\x0b" 26897 "\xbb\x27\x04\xc9\x5c\x34\x1e\x32" 26898 "\x45\xf3\xdc\xb2\x17\x61\xb9\x8e" 26899 "\x52\xff\x45\xb2\x4f\x30\x4f\xc4", 26900 .klen = 32, 26901 .iv = "\xb3\x3f\xfd\x30\x96\x47\x9b\xcf" 26902 "\xbc\x9a\xee\x49\x41\x76\x88\xa0" 26903 "\xa2\x55\x4f\x8d\x95\x38\x94\x19" 26904 "\x00\x00\x00\x00\x00\x00\x00\x00", 26905 .ptext = "\x00\x00\x00\x00\x00\x00\x00\x00" 26906 "\x00\x00\x00\x00\x00\x00\x00\x00" 26907 "\x00\x00\x00\x00\x00\x00\x00\x00" 26908 "\x00\x00\x00\x00\x00", 26909 .ctext = "\xc6\xe9\x75\x81\x60\x08\x3a\xc6" 26910 "\x04\xef\x90\xe7\x12\xce\x6e\x75" 26911 "\xd7\x79\x75\x90\x74\x4e\x0c\xf0" 26912 "\x60\xf0\x13\x73\x9c", 26913 .len = 29, 26914 }, { /* from libsodium test/default/xchacha20.c */ 26915 .key = "\x9d\x23\xbd\x41\x49\xcb\x97\x9c" 26916 "\xcf\x3c\x5c\x94\xdd\x21\x7e\x98" 26917 "\x08\xcb\x0e\x50\xcd\x0f\x67\x81" 26918 "\x22\x35\xea\xaf\x60\x1d\x62\x32", 26919 .klen = 32, 26920 .iv = "\xc0\x47\x54\x82\x66\xb7\xc3\x70" 26921 "\xd3\x35\x66\xa2\x42\x5c\xbf\x30" 26922 "\xd8\x2d\x1e\xaf\x52\x94\x10\x9e" 26923 "\x00\x00\x00\x00\x00\x00\x00\x00", 26924 .ptext = "\x00\x00\x00\x00\x00\x00\x00\x00" 26925 "\x00\x00\x00\x00\x00\x00\x00\x00" 26926 "\x00\x00\x00\x00\x00\x00\x00\x00" 26927 "\x00\x00\x00\x00\x00\x00\x00\x00" 26928 "\x00\x00\x00\x00\x00\x00\x00\x00" 26929 "\x00\x00\x00\x00\x00\x00\x00\x00" 26930 "\x00\x00\x00\x00\x00\x00\x00\x00" 26931 "\x00\x00\x00\x00\x00\x00\x00\x00" 26932 "\x00\x00\x00\x00\x00\x00\x00\x00" 26933 "\x00\x00\x00\x00\x00\x00\x00\x00" 26934 "\x00\x00\x00\x00\x00\x00\x00\x00" 26935 "\x00\x00\x00", 26936 .ctext = "\xa2\x12\x09\x09\x65\x94\xde\x8c" 26937 "\x56\x67\xb1\xd1\x3a\xd9\x3f\x74" 26938 "\x41\x06\xd0\x54\xdf\x21\x0e\x47" 26939 "\x82\xcd\x39\x6f\xec\x69\x2d\x35" 26940 "\x15\xa2\x0b\xf3\x51\xee\xc0\x11" 26941 "\xa9\x2c\x36\x78\x88\xbc\x46\x4c" 26942 "\x32\xf0\x80\x7a\xcd\x6c\x20\x3a" 26943 "\x24\x7e\x0d\xb8\x54\x14\x84\x68" 26944 "\xe9\xf9\x6b\xee\x4c\xf7\x18\xd6" 26945 "\x8d\x5f\x63\x7c\xbd\x5a\x37\x64" 26946 "\x57\x78\x8e\x6f\xae\x90\xfc\x31" 26947 "\x09\x7c\xfc", 26948 .len = 91, 26949 }, { /* Taken from the ChaCha20 test vectors, appended 12 random bytes 26950 to the nonce, zero-padded the stream position from 4 to 8 bytes, 26951 and recomputed the ciphertext using libsodium's XChaCha20 */ 26952 .key = "\x00\x00\x00\x00\x00\x00\x00\x00" 26953 "\x00\x00\x00\x00\x00\x00\x00\x00" 26954 "\x00\x00\x00\x00\x00\x00\x00\x00" 26955 "\x00\x00\x00\x00\x00\x00\x00\x00", 26956 .klen = 32, 26957 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 26958 "\x00\x00\x00\x00\x67\xc6\x69\x73" 26959 "\x51\xff\x4a\xec\x29\xcd\xba\xab" 26960 "\x00\x00\x00\x00\x00\x00\x00\x00", 26961 .ptext = "\x00\x00\x00\x00\x00\x00\x00\x00" 26962 "\x00\x00\x00\x00\x00\x00\x00\x00" 26963 "\x00\x00\x00\x00\x00\x00\x00\x00" 26964 "\x00\x00\x00\x00\x00\x00\x00\x00" 26965 "\x00\x00\x00\x00\x00\x00\x00\x00" 26966 "\x00\x00\x00\x00\x00\x00\x00\x00" 26967 "\x00\x00\x00\x00\x00\x00\x00\x00" 26968 "\x00\x00\x00\x00\x00\x00\x00\x00", 26969 .ctext = "\x9c\x49\x2a\xe7\x8a\x2f\x93\xc7" 26970 "\xb3\x33\x6f\x82\x17\xd8\xc4\x1e" 26971 "\xad\x80\x11\x11\x1d\x4c\x16\x18" 26972 "\x07\x73\x9b\x4f\xdb\x7c\xcb\x47" 26973 "\xfd\xef\x59\x74\xfa\x3f\xe5\x4c" 26974 "\x9b\xd0\xea\xbc\xba\x56\xad\x32" 26975 "\x03\xdc\xf8\x2b\xc1\xe1\x75\x67" 26976 "\x23\x7b\xe6\xfc\xd4\x03\x86\x54", 26977 .len = 64, 26978 }, { /* Derived from a ChaCha20 test vector, via the process above */ 26979 .key = "\x00\x00\x00\x00\x00\x00\x00\x00" 26980 "\x00\x00\x00\x00\x00\x00\x00\x00" 26981 "\x00\x00\x00\x00\x00\x00\x00\x00" 26982 "\x00\x00\x00\x00\x00\x00\x00\x01", 26983 .klen = 32, 26984 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 26985 "\x00\x00\x00\x02\xf2\xfb\xe3\x46" 26986 "\x7c\xc2\x54\xf8\x1b\xe8\xe7\x8d" 26987 "\x01\x00\x00\x00\x00\x00\x00\x00", 26988 .ptext = "\x41\x6e\x79\x20\x73\x75\x62\x6d" 26989 "\x69\x73\x73\x69\x6f\x6e\x20\x74" 26990 "\x6f\x20\x74\x68\x65\x20\x49\x45" 26991 "\x54\x46\x20\x69\x6e\x74\x65\x6e" 26992 "\x64\x65\x64\x20\x62\x79\x20\x74" 26993 "\x68\x65\x20\x43\x6f\x6e\x74\x72" 26994 "\x69\x62\x75\x74\x6f\x72\x20\x66" 26995 "\x6f\x72\x20\x70\x75\x62\x6c\x69" 26996 "\x63\x61\x74\x69\x6f\x6e\x20\x61" 26997 "\x73\x20\x61\x6c\x6c\x20\x6f\x72" 26998 "\x20\x70\x61\x72\x74\x20\x6f\x66" 26999 "\x20\x61\x6e\x20\x49\x45\x54\x46" 27000 "\x20\x49\x6e\x74\x65\x72\x6e\x65" 27001 "\x74\x2d\x44\x72\x61\x66\x74\x20" 27002 "\x6f\x72\x20\x52\x46\x43\x20\x61" 27003 "\x6e\x64\x20\x61\x6e\x79\x20\x73" 27004 "\x74\x61\x74\x65\x6d\x65\x6e\x74" 27005 "\x20\x6d\x61\x64\x65\x20\x77\x69" 27006 "\x74\x68\x69\x6e\x20\x74\x68\x65" 27007 "\x20\x63\x6f\x6e\x74\x65\x78\x74" 27008 "\x20\x6f\x66\x20\x61\x6e\x20\x49" 27009 "\x45\x54\x46\x20\x61\x63\x74\x69" 27010 "\x76\x69\x74\x79\x20\x69\x73\x20" 27011 "\x63\x6f\x6e\x73\x69\x64\x65\x72" 27012 "\x65\x64\x20\x61\x6e\x20\x22\x49" 27013 "\x45\x54\x46\x20\x43\x6f\x6e\x74" 27014 "\x72\x69\x62\x75\x74\x69\x6f\x6e" 27015 "\x22\x2e\x20\x53\x75\x63\x68\x20" 27016 "\x73\x74\x61\x74\x65\x6d\x65\x6e" 27017 "\x74\x73\x20\x69\x6e\x63\x6c\x75" 27018 "\x64\x65\x20\x6f\x72\x61\x6c\x20" 27019 "\x73\x74\x61\x74\x65\x6d\x65\x6e" 27020 "\x74\x73\x20\x69\x6e\x20\x49\x45" 27021 "\x54\x46\x20\x73\x65\x73\x73\x69" 27022 "\x6f\x6e\x73\x2c\x20\x61\x73\x20" 27023 "\x77\x65\x6c\x6c\x20\x61\x73\x20" 27024 "\x77\x72\x69\x74\x74\x65\x6e\x20" 27025 "\x61\x6e\x64\x20\x65\x6c\x65\x63" 27026 "\x74\x72\x6f\x6e\x69\x63\x20\x63" 27027 "\x6f\x6d\x6d\x75\x6e\x69\x63\x61" 27028 "\x74\x69\x6f\x6e\x73\x20\x6d\x61" 27029 "\x64\x65\x20\x61\x74\x20\x61\x6e" 27030 "\x79\x20\x74\x69\x6d\x65\x20\x6f" 27031 "\x72\x20\x70\x6c\x61\x63\x65\x2c" 27032 "\x20\x77\x68\x69\x63\x68\x20\x61" 27033 "\x72\x65\x20\x61\x64\x64\x72\x65" 27034 "\x73\x73\x65\x64\x20\x74\x6f", 27035 .ctext = "\xf9\xab\x7a\x4a\x60\xb8\x5f\xa0" 27036 "\x50\xbb\x57\xce\xef\x8c\xc1\xd9" 27037 "\x24\x15\xb3\x67\x5e\x7f\x01\xf6" 27038 "\x1c\x22\xf6\xe5\x71\xb1\x43\x64" 27039 "\x63\x05\xd5\xfc\x5c\x3d\xc0\x0e" 27040 "\x23\xef\xd3\x3b\xd9\xdc\x7f\xa8" 27041 "\x58\x26\xb3\xd0\xc2\xd5\x04\x3f" 27042 "\x0a\x0e\x8f\x17\xe4\xcd\xf7\x2a" 27043 "\xb4\x2c\x09\xe4\x47\xec\x8b\xfb" 27044 "\x59\x37\x7a\xa1\xd0\x04\x7e\xaa" 27045 "\xf1\x98\x5f\x24\x3d\x72\x9a\x43" 27046 "\xa4\x36\x51\x92\x22\x87\xff\x26" 27047 "\xce\x9d\xeb\x59\x78\x84\x5e\x74" 27048 "\x97\x2e\x63\xc0\xef\x29\xf7\x8a" 27049 "\xb9\xee\x35\x08\x77\x6a\x35\x9a" 27050 "\x3e\xe6\x4f\x06\x03\x74\x1b\xc1" 27051 "\x5b\xb3\x0b\x89\x11\x07\xd3\xb7" 27052 "\x53\xd6\x25\x04\xd9\x35\xb4\x5d" 27053 "\x4c\x33\x5a\xc2\x42\x4c\xe6\xa4" 27054 "\x97\x6e\x0e\xd2\xb2\x8b\x2f\x7f" 27055 "\x28\xe5\x9f\xac\x4b\x2e\x02\xab" 27056 "\x85\xfa\xa9\x0d\x7c\x2d\x10\xe6" 27057 "\x91\xab\x55\x63\xf0\xde\x3a\x94" 27058 "\x25\x08\x10\x03\xc2\x68\xd1\xf4" 27059 "\xaf\x7d\x9c\x99\xf7\x86\x96\x30" 27060 "\x60\xfc\x0b\xe6\xa8\x80\x15\xb0" 27061 "\x81\xb1\x0c\xbe\xb9\x12\x18\x25" 27062 "\xe9\x0e\xb1\xe7\x23\xb2\xef\x4a" 27063 "\x22\x8f\xc5\x61\x89\xd4\xe7\x0c" 27064 "\x64\x36\x35\x61\xb6\x34\x60\xf7" 27065 "\x7b\x61\x37\x37\x12\x10\xa2\xf6" 27066 "\x7e\xdb\x7f\x39\x3f\xb6\x8e\x89" 27067 "\x9e\xf3\xfe\x13\x98\xbb\x66\x5a" 27068 "\xec\xea\xab\x3f\x9c\x87\xc4\x8c" 27069 "\x8a\x04\x18\x49\xfc\x77\x11\x50" 27070 "\x16\xe6\x71\x2b\xee\xc0\x9c\xb6" 27071 "\x87\xfd\x80\xff\x0b\x1d\x73\x38" 27072 "\xa4\x1d\x6f\xae\xe4\x12\xd7\x93" 27073 "\x9d\xcd\x38\x26\x09\x40\x52\xcd" 27074 "\x67\x01\x67\x26\xe0\x3e\x98\xa8" 27075 "\xe8\x1a\x13\x41\xbb\x90\x4d\x87" 27076 "\xbb\x42\x82\x39\xce\x3a\xd0\x18" 27077 "\x6d\x7b\x71\x8f\xbb\x2c\x6a\xd1" 27078 "\xbd\xf5\xc7\x8a\x7e\xe1\x1e\x0f" 27079 "\x0d\x0d\x13\x7c\xd9\xd8\x3c\x91" 27080 "\xab\xff\x1f\x12\xc3\xee\xe5\x65" 27081 "\x12\x8d\x7b\x61\xe5\x1f\x98", 27082 .len = 375, 27083 27084 }, { /* Derived from a ChaCha20 test vector, via the process above */ 27085 .key = "\x1c\x92\x40\xa5\xeb\x55\xd3\x8a" 27086 "\xf3\x33\x88\x86\x04\xf6\xb5\xf0" 27087 "\x47\x39\x17\xc1\x40\x2b\x80\x09" 27088 "\x9d\xca\x5c\xbc\x20\x70\x75\xc0", 27089 .klen = 32, 27090 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 27091 "\x00\x00\x00\x02\x76\x5a\x2e\x63" 27092 "\x33\x9f\xc9\x9a\x66\x32\x0d\xb7" 27093 "\x2a\x00\x00\x00\x00\x00\x00\x00", 27094 .ptext = "\x27\x54\x77\x61\x73\x20\x62\x72" 27095 "\x69\x6c\x6c\x69\x67\x2c\x20\x61" 27096 "\x6e\x64\x20\x74\x68\x65\x20\x73" 27097 "\x6c\x69\x74\x68\x79\x20\x74\x6f" 27098 "\x76\x65\x73\x0a\x44\x69\x64\x20" 27099 "\x67\x79\x72\x65\x20\x61\x6e\x64" 27100 "\x20\x67\x69\x6d\x62\x6c\x65\x20" 27101 "\x69\x6e\x20\x74\x68\x65\x20\x77" 27102 "\x61\x62\x65\x3a\x0a\x41\x6c\x6c" 27103 "\x20\x6d\x69\x6d\x73\x79\x20\x77" 27104 "\x65\x72\x65\x20\x74\x68\x65\x20" 27105 "\x62\x6f\x72\x6f\x67\x6f\x76\x65" 27106 "\x73\x2c\x0a\x41\x6e\x64\x20\x74" 27107 "\x68\x65\x20\x6d\x6f\x6d\x65\x20" 27108 "\x72\x61\x74\x68\x73\x20\x6f\x75" 27109 "\x74\x67\x72\x61\x62\x65\x2e", 27110 .ctext = "\x95\xb9\x51\xe7\x8f\xb4\xa4\x03" 27111 "\xca\x37\xcc\xde\x60\x1d\x8c\xe2" 27112 "\xf1\xbb\x8a\x13\x7f\x61\x85\xcc" 27113 "\xad\xf4\xf0\xdc\x86\xa6\x1e\x10" 27114 "\xbc\x8e\xcb\x38\x2b\xa5\xc8\x8f" 27115 "\xaa\x03\x3d\x53\x4a\x42\xb1\x33" 27116 "\xfc\xd3\xef\xf0\x8e\x7e\x10\x9c" 27117 "\x6f\x12\x5e\xd4\x96\xfe\x5b\x08" 27118 "\xb6\x48\xf0\x14\x74\x51\x18\x7c" 27119 "\x07\x92\xfc\xac\x9d\xf1\x94\xc0" 27120 "\xc1\x9d\xc5\x19\x43\x1f\x1d\xbb" 27121 "\x07\xf0\x1b\x14\x25\x45\xbb\xcb" 27122 "\x5c\xe2\x8b\x28\xf3\xcf\x47\x29" 27123 "\x27\x79\x67\x24\xa6\x87\xc2\x11" 27124 "\x65\x03\xfa\x45\xf7\x9e\x53\x7a" 27125 "\x99\xf1\x82\x25\x4f\x8d\x07", 27126 .len = 127, 27127 }, { /* Derived from a ChaCha20 test vector, via the process above */ 27128 .key = "\x1c\x92\x40\xa5\xeb\x55\xd3\x8a" 27129 "\xf3\x33\x88\x86\x04\xf6\xb5\xf0" 27130 "\x47\x39\x17\xc1\x40\x2b\x80\x09" 27131 "\x9d\xca\x5c\xbc\x20\x70\x75\xc0", 27132 .klen = 32, 27133 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 27134 "\x00\x00\x00\x01\x31\x58\xa3\x5a" 27135 "\x25\x5d\x05\x17\x58\xe9\x5e\xd4" 27136 "\x1c\x00\x00\x00\x00\x00\x00\x00", 27137 .ptext = "\x49\xee\xe0\xdc\x24\x90\x40\xcd" 27138 "\xc5\x40\x8f\x47\x05\xbc\xdd\x81" 27139 "\x47\xc6\x8d\xe6\xb1\x8f\xd7\xcb" 27140 "\x09\x0e\x6e\x22\x48\x1f\xbf\xb8" 27141 "\x5c\xf7\x1e\x8a\xc1\x23\xf2\xd4" 27142 "\x19\x4b\x01\x0f\x4e\xa4\x43\xce" 27143 "\x01\xc6\x67\xda\x03\x91\x18\x90" 27144 "\xa5\xa4\x8e\x45\x03\xb3\x2d\xac" 27145 "\x74\x92\xd3\x53\x47\xc8\xdd\x25" 27146 "\x53\x6c\x02\x03\x87\x0d\x11\x0c" 27147 "\x58\xe3\x12\x18\xfd\x2a\x5b\x40" 27148 "\x0c\x30\xf0\xb8\x3f\x43\xce\xae" 27149 "\x65\x3a\x7d\x7c\xf4\x54\xaa\xcc" 27150 "\x33\x97\xc3\x77\xba\xc5\x70\xde" 27151 "\xd7\xd5\x13\xa5\x65\xc4\x5f\x0f" 27152 "\x46\x1a\x0d\x97\xb5\xf3\xbb\x3c" 27153 "\x84\x0f\x2b\xc5\xaa\xea\xf2\x6c" 27154 "\xc9\xb5\x0c\xee\x15\xf3\x7d\xbe" 27155 "\x9f\x7b\x5a\xa6\xae\x4f\x83\xb6" 27156 "\x79\x49\x41\xf4\x58\x18\xcb\x86" 27157 "\x7f\x30\x0e\xf8\x7d\x44\x36\xea" 27158 "\x75\xeb\x88\x84\x40\x3c\xad\x4f" 27159 "\x6f\x31\x6b\xaa\x5d\xe5\xa5\xc5" 27160 "\x21\x66\xe9\xa7\xe3\xb2\x15\x88" 27161 "\x78\xf6\x79\xa1\x59\x47\x12\x4e" 27162 "\x9f\x9f\x64\x1a\xa0\x22\x5b\x08" 27163 "\xbe\x7c\x36\xc2\x2b\x66\x33\x1b" 27164 "\xdd\x60\x71\xf7\x47\x8c\x61\xc3" 27165 "\xda\x8a\x78\x1e\x16\xfa\x1e\x86" 27166 "\x81\xa6\x17\x2a\xa7\xb5\xc2\xe7" 27167 "\xa4\xc7\x42\xf1\xcf\x6a\xca\xb4" 27168 "\x45\xcf\xf3\x93\xf0\xe7\xea\xf6" 27169 "\xf4\xe6\x33\x43\x84\x93\xa5\x67" 27170 "\x9b\x16\x58\x58\x80\x0f\x2b\x5c" 27171 "\x24\x74\x75\x7f\x95\x81\xb7\x30" 27172 "\x7a\x33\xa7\xf7\x94\x87\x32\x27" 27173 "\x10\x5d\x14\x4c\x43\x29\xdd\x26" 27174 "\xbd\x3e\x3c\x0e\xfe\x0e\xa5\x10" 27175 "\xea\x6b\x64\xfd\x73\xc6\xed\xec" 27176 "\xa8\xc9\xbf\xb3\xba\x0b\x4d\x07" 27177 "\x70\xfc\x16\xfd\x79\x1e\xd7\xc5" 27178 "\x49\x4e\x1c\x8b\x8d\x79\x1b\xb1" 27179 "\xec\xca\x60\x09\x4c\x6a\xd5\x09" 27180 "\x49\x46\x00\x88\x22\x8d\xce\xea" 27181 "\xb1\x17\x11\xde\x42\xd2\x23\xc1" 27182 "\x72\x11\xf5\x50\x73\x04\x40\x47" 27183 "\xf9\x5d\xe7\xa7\x26\xb1\x7e\xb0" 27184 "\x3f\x58\xc1\x52\xab\x12\x67\x9d" 27185 "\x3f\x43\x4b\x68\xd4\x9c\x68\x38" 27186 "\x07\x8a\x2d\x3e\xf3\xaf\x6a\x4b" 27187 "\xf9\xe5\x31\x69\x22\xf9\xa6\x69" 27188 "\xc6\x9c\x96\x9a\x12\x35\x95\x1d" 27189 "\x95\xd5\xdd\xbe\xbf\x93\x53\x24" 27190 "\xfd\xeb\xc2\x0a\x64\xb0\x77\x00" 27191 "\x6f\x88\xc4\x37\x18\x69\x7c\xd7" 27192 "\x41\x92\x55\x4c\x03\xa1\x9a\x4b" 27193 "\x15\xe5\xdf\x7f\x37\x33\x72\xc1" 27194 "\x8b\x10\x67\xa3\x01\x57\x94\x25" 27195 "\x7b\x38\x71\x7e\xdd\x1e\xcc\x73" 27196 "\x55\xd2\x8e\xeb\x07\xdd\xf1\xda" 27197 "\x58\xb1\x47\x90\xfe\x42\x21\x72" 27198 "\xa3\x54\x7a\xa0\x40\xec\x9f\xdd" 27199 "\xc6\x84\x6e\xca\xae\xe3\x68\xb4" 27200 "\x9d\xe4\x78\xff\x57\xf2\xf8\x1b" 27201 "\x03\xa1\x31\xd9\xde\x8d\xf5\x22" 27202 "\x9c\xdd\x20\xa4\x1e\x27\xb1\x76" 27203 "\x4f\x44\x55\xe2\x9b\xa1\x9c\xfe" 27204 "\x54\xf7\x27\x1b\xf4\xde\x02\xf5" 27205 "\x1b\x55\x48\x5c\xdc\x21\x4b\x9e" 27206 "\x4b\x6e\xed\x46\x23\xdc\x65\xb2" 27207 "\xcf\x79\x5f\x28\xe0\x9e\x8b\xe7" 27208 "\x4c\x9d\x8a\xff\xc1\xa6\x28\xb8" 27209 "\x65\x69\x8a\x45\x29\xef\x74\x85" 27210 "\xde\x79\xc7\x08\xae\x30\xb0\xf4" 27211 "\xa3\x1d\x51\x41\xab\xce\xcb\xf6" 27212 "\xb5\xd8\x6d\xe0\x85\xe1\x98\xb3" 27213 "\x43\xbb\x86\x83\x0a\xa0\xf5\xb7" 27214 "\x04\x0b\xfa\x71\x1f\xb0\xf6\xd9" 27215 "\x13\x00\x15\xf0\xc7\xeb\x0d\x5a" 27216 "\x9f\xd7\xb9\x6c\x65\x14\x22\x45" 27217 "\x6e\x45\x32\x3e\x7e\x60\x1a\x12" 27218 "\x97\x82\x14\xfb\xaa\x04\x22\xfa" 27219 "\xa0\xe5\x7e\x8c\x78\x02\x48\x5d" 27220 "\x78\x33\x5a\x7c\xad\xdb\x29\xce" 27221 "\xbb\x8b\x61\xa4\xb7\x42\xe2\xac" 27222 "\x8b\x1a\xd9\x2f\x0b\x8b\x62\x21" 27223 "\x83\x35\x7e\xad\x73\xc2\xb5\x6c" 27224 "\x10\x26\x38\x07\xe5\xc7\x36\x80" 27225 "\xe2\x23\x12\x61\xf5\x48\x4b\x2b" 27226 "\xc5\xdf\x15\xd9\x87\x01\xaa\xac" 27227 "\x1e\x7c\xad\x73\x78\x18\x63\xe0" 27228 "\x8b\x9f\x81\xd8\x12\x6a\x28\x10" 27229 "\xbe\x04\x68\x8a\x09\x7c\x1b\x1c" 27230 "\x83\x66\x80\x47\x80\xe8\xfd\x35" 27231 "\x1c\x97\x6f\xae\x49\x10\x66\xcc" 27232 "\xc6\xd8\xcc\x3a\x84\x91\x20\x77" 27233 "\x72\xe4\x24\xd2\x37\x9f\xc5\xc9" 27234 "\x25\x94\x10\x5f\x40\x00\x64\x99" 27235 "\xdc\xae\xd7\x21\x09\x78\x50\x15" 27236 "\xac\x5f\xc6\x2c\xa2\x0b\xa9\x39" 27237 "\x87\x6e\x6d\xab\xde\x08\x51\x16" 27238 "\xc7\x13\xe9\xea\xed\x06\x8e\x2c" 27239 "\xf8\x37\x8c\xf0\xa6\x96\x8d\x43" 27240 "\xb6\x98\x37\xb2\x43\xed\xde\xdf" 27241 "\x89\x1a\xe7\xeb\x9d\xa1\x7b\x0b" 27242 "\x77\xb0\xe2\x75\xc0\xf1\x98\xd9" 27243 "\x80\x55\xc9\x34\x91\xd1\x59\xe8" 27244 "\x4b\x0f\xc1\xa9\x4b\x7a\x84\x06" 27245 "\x20\xa8\x5d\xfa\xd1\xde\x70\x56" 27246 "\x2f\x9e\x91\x9c\x20\xb3\x24\xd8" 27247 "\x84\x3d\xe1\x8c\x7e\x62\x52\xe5" 27248 "\x44\x4b\x9f\xc2\x93\x03\xea\x2b" 27249 "\x59\xc5\xfa\x3f\x91\x2b\xbb\x23" 27250 "\xf5\xb2\x7b\xf5\x38\xaf\xb3\xee" 27251 "\x63\xdc\x7b\xd1\xff\xaa\x8b\xab" 27252 "\x82\x6b\x37\x04\xeb\x74\xbe\x79" 27253 "\xb9\x83\x90\xef\x20\x59\x46\xff" 27254 "\xe9\x97\x3e\x2f\xee\xb6\x64\x18" 27255 "\x38\x4c\x7a\x4a\xf9\x61\xe8\x9a" 27256 "\xa1\xb5\x01\xa6\x47\xd3\x11\xd4" 27257 "\xce\xd3\x91\x49\x88\xc7\xb8\x4d" 27258 "\xb1\xb9\x07\x6d\x16\x72\xae\x46" 27259 "\x5e\x03\xa1\x4b\xb6\x02\x30\xa8" 27260 "\x3d\xa9\x07\x2a\x7c\x19\xe7\x62" 27261 "\x87\xe3\x82\x2f\x6f\xe1\x09\xd9" 27262 "\x94\x97\xea\xdd\x58\x9e\xae\x76" 27263 "\x7e\x35\xe5\xb4\xda\x7e\xf4\xde" 27264 "\xf7\x32\x87\xcd\x93\xbf\x11\x56" 27265 "\x11\xbe\x08\x74\xe1\x69\xad\xe2" 27266 "\xd7\xf8\x86\x75\x8a\x3c\xa4\xbe" 27267 "\x70\xa7\x1b\xfc\x0b\x44\x2a\x76" 27268 "\x35\xea\x5d\x85\x81\xaf\x85\xeb" 27269 "\xa0\x1c\x61\xc2\xf7\x4f\xa5\xdc" 27270 "\x02\x7f\xf6\x95\x40\x6e\x8a\x9a" 27271 "\xf3\x5d\x25\x6e\x14\x3a\x22\xc9" 27272 "\x37\x1c\xeb\x46\x54\x3f\xa5\x91" 27273 "\xc2\xb5\x8c\xfe\x53\x08\x97\x32" 27274 "\x1b\xb2\x30\x27\xfe\x25\x5d\xdc" 27275 "\x08\x87\xd0\xe5\x94\x1a\xd4\xf1" 27276 "\xfe\xd6\xb4\xa3\xe6\x74\x81\x3c" 27277 "\x1b\xb7\x31\xa7\x22\xfd\xd4\xdd" 27278 "\x20\x4e\x7c\x51\xb0\x60\x73\xb8" 27279 "\x9c\xac\x91\x90\x7e\x01\xb0\xe1" 27280 "\x8a\x2f\x75\x1c\x53\x2a\x98\x2a" 27281 "\x06\x52\x95\x52\xb2\xe9\x25\x2e" 27282 "\x4c\xe2\x5a\x00\xb2\x13\x81\x03" 27283 "\x77\x66\x0d\xa5\x99\xda\x4e\x8c" 27284 "\xac\xf3\x13\x53\x27\x45\xaf\x64" 27285 "\x46\xdc\xea\x23\xda\x97\xd1\xab" 27286 "\x7d\x6c\x30\x96\x1f\xbc\x06\x34" 27287 "\x18\x0b\x5e\x21\x35\x11\x8d\x4c" 27288 "\xe0\x2d\xe9\x50\x16\x74\x81\xa8" 27289 "\xb4\x34\xb9\x72\x42\xa6\xcc\xbc" 27290 "\xca\x34\x83\x27\x10\x5b\x68\x45" 27291 "\x8f\x52\x22\x0c\x55\x3d\x29\x7c" 27292 "\xe3\xc0\x66\x05\x42\x91\x5f\x58" 27293 "\xfe\x4a\x62\xd9\x8c\xa9\x04\x19" 27294 "\x04\xa9\x08\x4b\x57\xfc\x67\x53" 27295 "\x08\x7c\xbc\x66\x8a\xb0\xb6\x9f" 27296 "\x92\xd6\x41\x7c\x5b\x2a\x00\x79" 27297 "\x72", 27298 .ctext = "\x3a\x92\xee\x53\x31\xaf\x2b\x60" 27299 "\x5f\x55\x8d\x00\x5d\xfc\x74\x97" 27300 "\x28\x54\xf4\xa5\x75\xf1\x9b\x25" 27301 "\x62\x1c\xc0\xe0\x13\xc8\x87\x53" 27302 "\xd0\xf3\xa7\x97\x1f\x3b\x1e\xea" 27303 "\xe0\xe5\x2a\xd1\xdd\xa4\x3b\x50" 27304 "\x45\xa3\x0d\x7e\x1b\xc9\xa0\xad" 27305 "\xb9\x2c\x54\xa6\xc7\x55\x16\xd0" 27306 "\xc5\x2e\x02\x44\x35\xd0\x7e\x67" 27307 "\xf2\xc4\x9b\xcd\x95\x10\xcc\x29" 27308 "\x4b\xfa\x86\x87\xbe\x40\x36\xbe" 27309 "\xe1\xa3\x52\x89\x55\x20\x9b\xc2" 27310 "\xab\xf2\x31\x34\x16\xad\xc8\x17" 27311 "\x65\x24\xc0\xff\x12\x37\xfe\x5a" 27312 "\x62\x3b\x59\x47\x6c\x5f\x3a\x8e" 27313 "\x3b\xd9\x30\xc8\x7f\x2f\x88\xda" 27314 "\x80\xfd\x02\xda\x7f\x9a\x7a\x73" 27315 "\x59\xc5\x34\x09\x9a\x11\xcb\xa7" 27316 "\xfc\xf6\xa1\xa0\x60\xfb\x43\xbb" 27317 "\xf1\xe9\xd7\xc6\x79\x27\x4e\xff" 27318 "\x22\xb4\x24\xbf\x76\xee\x47\xb9" 27319 "\x6d\x3f\x8b\xb0\x9c\x3c\x43\xdd" 27320 "\xff\x25\x2e\x6d\xa4\x2b\xfb\x5d" 27321 "\x1b\x97\x6c\x55\x0a\x82\x7a\x7b" 27322 "\x94\x34\xc2\xdb\x2f\x1f\xc1\xea" 27323 "\xd4\x4d\x17\x46\x3b\x51\x69\x09" 27324 "\xe4\x99\x32\x25\xfd\x94\xaf\xfb" 27325 "\x10\xf7\x4f\xdd\x0b\x3c\x8b\x41" 27326 "\xb3\x6a\xb7\xd1\x33\xa8\x0c\x2f" 27327 "\x62\x4c\x72\x11\xd7\x74\xe1\x3b" 27328 "\x38\x43\x66\x7b\x6c\x36\x48\xe7" 27329 "\xe3\xe7\x9d\xb9\x42\x73\x7a\x2a" 27330 "\x89\x20\x1a\x41\x80\x03\xf7\x8f" 27331 "\x61\x78\x13\xbf\xfe\x50\xf5\x04" 27332 "\x52\xf9\xac\x47\xf8\x62\x4b\xb2" 27333 "\x24\xa9\xbf\x64\xb0\x18\x69\xd2" 27334 "\xf5\xe4\xce\xc8\xb1\x87\x75\xd6" 27335 "\x2c\x24\x79\x00\x7d\x26\xfb\x44" 27336 "\xe7\x45\x7a\xee\x58\xa5\x83\xc1" 27337 "\xb4\x24\xab\x23\x2f\x4d\xd7\x4f" 27338 "\x1c\xc7\xaa\xa9\x50\xf4\xa3\x07" 27339 "\x12\x13\x89\x74\xdc\x31\x6a\xb2" 27340 "\xf5\x0f\x13\x8b\xb9\xdb\x85\x1f" 27341 "\xf5\xbc\x88\xd9\x95\xea\x31\x6c" 27342 "\x36\x60\xb6\x49\xdc\xc4\xf7\x55" 27343 "\x3f\x21\xc1\xb5\x92\x18\x5e\xbc" 27344 "\x9f\x87\x7f\xe7\x79\x25\x40\x33" 27345 "\xd6\xb9\x33\xd5\x50\xb3\xc7\x89" 27346 "\x1b\x12\xa0\x46\xdd\xa7\xd8\x3e" 27347 "\x71\xeb\x6f\x66\xa1\x26\x0c\x67" 27348 "\xab\xb2\x38\x58\x17\xd8\x44\x3b" 27349 "\x16\xf0\x8e\x62\x8d\x16\x10\x00" 27350 "\x32\x8b\xef\xb9\x28\xd3\xc5\xad" 27351 "\x0a\x19\xa2\xe4\x03\x27\x7d\x94" 27352 "\x06\x18\xcd\xd6\x27\x00\xf9\x1f" 27353 "\xb6\xb3\xfe\x96\x35\x5f\xc4\x1c" 27354 "\x07\x62\x10\x79\x68\x50\xf1\x7e" 27355 "\x29\xe7\xc4\xc4\xe7\xee\x54\xd6" 27356 "\x58\x76\x84\x6d\x8d\xe4\x59\x31" 27357 "\xe9\xf4\xdc\xa1\x1f\xe5\x1a\xd6" 27358 "\xe6\x64\x46\xf5\x77\x9c\x60\x7a" 27359 "\x5e\x62\xe3\x0a\xd4\x9f\x7a\x2d" 27360 "\x7a\xa5\x0a\x7b\x29\x86\x7a\x74" 27361 "\x74\x71\x6b\xca\x7d\x1d\xaa\xba" 27362 "\x39\x84\x43\x76\x35\xfe\x4f\x9b" 27363 "\xbb\xbb\xb5\x6a\x32\xb5\x5d\x41" 27364 "\x51\xf0\x5b\x68\x03\x47\x4b\x8a" 27365 "\xca\x88\xf6\x37\xbd\x73\x51\x70" 27366 "\x66\xfe\x9e\x5f\x21\x9c\xf3\xdd" 27367 "\xc3\xea\x27\xf9\x64\x94\xe1\x19" 27368 "\xa0\xa9\xab\x60\xe0\x0e\xf7\x78" 27369 "\x70\x86\xeb\xe0\xd1\x5c\x05\xd3" 27370 "\xd7\xca\xe0\xc0\x47\x47\x34\xee" 27371 "\x11\xa3\xa3\x54\x98\xb7\x49\x8e" 27372 "\x84\x28\x70\x2c\x9e\xfb\x55\x54" 27373 "\x4d\xf8\x86\xf7\x85\x7c\xbd\xf3" 27374 "\x17\xd8\x47\xcb\xac\xf4\x20\x85" 27375 "\x34\x66\xad\x37\x2d\x5e\x52\xda" 27376 "\x8a\xfe\x98\x55\x30\xe7\x2d\x2b" 27377 "\x19\x10\x8e\x7b\x66\x5e\xdc\xe0" 27378 "\x45\x1f\x7b\xb4\x08\xfb\x8f\xf6" 27379 "\x8c\x89\x21\x34\x55\x27\xb2\x76" 27380 "\xb2\x07\xd9\xd6\x68\x9b\xea\x6b" 27381 "\x2d\xb4\xc4\x35\xdd\xd2\x79\xae" 27382 "\xc7\xd6\x26\x7f\x12\x01\x8c\xa7" 27383 "\xe3\xdb\xa8\xf4\xf7\x2b\xec\x99" 27384 "\x11\x00\xf1\x35\x8c\xcf\xd5\xc9" 27385 "\xbd\x91\x36\x39\x70\xcf\x7d\x70" 27386 "\x47\x1a\xfc\x6b\x56\xe0\x3f\x9c" 27387 "\x60\x49\x01\x72\xa9\xaf\x2c\x9c" 27388 "\xe8\xab\xda\x8c\x14\x19\xf3\x75" 27389 "\x07\x17\x9d\x44\x67\x7a\x2e\xef" 27390 "\xb7\x83\x35\x4a\xd1\x3d\x1c\x84" 27391 "\x32\xdd\xaa\xea\xca\x1d\xdc\x72" 27392 "\x2c\xcc\x43\xcd\x5d\xe3\x21\xa4" 27393 "\xd0\x8a\x4b\x20\x12\xa3\xd5\x86" 27394 "\x76\x96\xff\x5f\x04\x57\x0f\xe6" 27395 "\xba\xe8\x76\x50\x0c\x64\x1d\x83" 27396 "\x9c\x9b\x9a\x9a\x58\x97\x9c\x5c" 27397 "\xb4\xa4\xa6\x3e\x19\xeb\x8f\x5a" 27398 "\x61\xb2\x03\x7b\x35\x19\xbe\xa7" 27399 "\x63\x0c\xfd\xdd\xf9\x90\x6c\x08" 27400 "\x19\x11\xd3\x65\x4a\xf5\x96\x92" 27401 "\x59\xaa\x9c\x61\x0c\x29\xa7\xf8" 27402 "\x14\x39\x37\xbf\x3c\xf2\x16\x72" 27403 "\x02\xfa\xa2\xf3\x18\x67\x5d\xcb" 27404 "\xdc\x4d\xbb\x96\xff\x70\x08\x2d" 27405 "\xc2\xa8\x52\xe1\x34\x5f\x72\xfe" 27406 "\x64\xbf\xca\xa7\x74\x38\xfb\x74" 27407 "\x55\x9c\xfa\x8a\xed\xfb\x98\xeb" 27408 "\x58\x2e\x6c\xe1\x52\x76\x86\xd7" 27409 "\xcf\xa1\xa4\xfc\xb2\x47\x41\x28" 27410 "\xa3\xc1\xe5\xfd\x53\x19\x28\x2b" 27411 "\x37\x04\x65\x96\x99\x7a\x28\x0f" 27412 "\x07\x68\x4b\xc7\x52\x0a\x55\x35" 27413 "\x40\x19\x95\x61\xe8\x59\x40\x1f" 27414 "\x9d\xbf\x78\x7d\x8f\x84\xff\x6f" 27415 "\xd0\xd5\x63\xd2\x22\xbd\xc8\x4e" 27416 "\xfb\xe7\x9f\x06\xe6\xe7\x39\x6d" 27417 "\x6a\x96\x9f\xf0\x74\x7e\xc9\x35" 27418 "\xb7\x26\xb8\x1c\x0a\xa6\x27\x2c" 27419 "\xa2\x2b\xfe\xbe\x0f\x07\x73\xae" 27420 "\x7f\x7f\x54\xf5\x7c\x6a\x0a\x56" 27421 "\x49\xd4\x81\xe5\x85\x53\x99\x1f" 27422 "\x95\x05\x13\x58\x8d\x0e\x1b\x90" 27423 "\xc3\x75\x48\x64\x58\x98\x67\x84" 27424 "\xae\xe2\x21\xa2\x8a\x04\x0a\x0b" 27425 "\x61\xaa\xb0\xd4\x28\x60\x7a\xf8" 27426 "\xbc\x52\xfb\x24\x7f\xed\x0d\x2a" 27427 "\x0a\xb2\xf9\xc6\x95\xb5\x11\xc9" 27428 "\xf4\x0f\x26\x11\xcf\x2a\x57\x87" 27429 "\x7a\xf3\xe7\x94\x65\xc2\xb5\xb3" 27430 "\xab\x98\xe3\xc1\x2b\x59\x19\x7c" 27431 "\xd6\xf3\xf9\xbf\xff\x6d\xc6\x82" 27432 "\x13\x2f\x4a\x2e\xcd\x26\xfe\x2d" 27433 "\x01\x70\xf4\xc2\x7f\x1f\x4c\xcb" 27434 "\x47\x77\x0c\xa0\xa3\x03\xec\xda" 27435 "\xa9\xbf\x0d\x2d\xae\xe4\xb8\x7b" 27436 "\xa9\xbc\x08\xb4\x68\x2e\xc5\x60" 27437 "\x8d\x87\x41\x2b\x0f\x69\xf0\xaf" 27438 "\x5f\xba\x72\x20\x0f\x33\xcd\x6d" 27439 "\x36\x7d\x7b\xd5\x05\xf1\x4b\x05" 27440 "\xc4\xfc\x7f\x80\xb9\x4d\xbd\xf7" 27441 "\x7c\x84\x07\x01\xc2\x40\x66\x5b" 27442 "\x98\xc7\x2c\xe3\x97\xfa\xdf\x87" 27443 "\xa0\x1f\xe9\x21\x42\x0f\x3b\xeb" 27444 "\x89\x1c\x3b\xca\x83\x61\x77\x68" 27445 "\x84\xbb\x60\x87\x38\x2e\x25\xd5" 27446 "\x9e\x04\x41\x70\xac\xda\xc0\x9c" 27447 "\x9c\x69\xea\x8d\x4e\x55\x2a\x29" 27448 "\xed\x05\x4b\x7b\x73\x71\x90\x59" 27449 "\x4d\xc8\xd8\x44\xf0\x4c\xe1\x5e" 27450 "\x84\x47\x55\xcc\x32\x3f\xe7\x97" 27451 "\x42\xc6\x32\xac\x40\xe5\xa5\xc7" 27452 "\x8b\xed\xdb\xf7\x83\xd6\xb1\xc2" 27453 "\x52\x5e\x34\xb7\xeb\x6e\xd9\xfc" 27454 "\xe5\x93\x9a\x97\x3e\xb0\xdc\xd9" 27455 "\xd7\x06\x10\xb6\x1d\x80\x59\xdd" 27456 "\x0d\xfe\x64\x35\xcd\x5d\xec\xf0" 27457 "\xba\xd0\x34\xc9\x2d\x91\xc5\x17" 27458 "\x11", 27459 .len = 1281, 27460 }, { /* test vector from https://tools.ietf.org/html/draft-arciszewski-xchacha-02#appendix-A.3.2 */ 27461 .key = "\x80\x81\x82\x83\x84\x85\x86\x87" 27462 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 27463 "\x90\x91\x92\x93\x94\x95\x96\x97" 27464 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f", 27465 .klen = 32, 27466 .iv = "\x40\x41\x42\x43\x44\x45\x46\x47" 27467 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 27468 "\x50\x51\x52\x53\x54\x55\x56\x58" 27469 "\x00\x00\x00\x00\x00\x00\x00\x00", 27470 .ptext = "\x54\x68\x65\x20\x64\x68\x6f\x6c" 27471 "\x65\x20\x28\x70\x72\x6f\x6e\x6f" 27472 "\x75\x6e\x63\x65\x64\x20\x22\x64" 27473 "\x6f\x6c\x65\x22\x29\x20\x69\x73" 27474 "\x20\x61\x6c\x73\x6f\x20\x6b\x6e" 27475 "\x6f\x77\x6e\x20\x61\x73\x20\x74" 27476 "\x68\x65\x20\x41\x73\x69\x61\x74" 27477 "\x69\x63\x20\x77\x69\x6c\x64\x20" 27478 "\x64\x6f\x67\x2c\x20\x72\x65\x64" 27479 "\x20\x64\x6f\x67\x2c\x20\x61\x6e" 27480 "\x64\x20\x77\x68\x69\x73\x74\x6c" 27481 "\x69\x6e\x67\x20\x64\x6f\x67\x2e" 27482 "\x20\x49\x74\x20\x69\x73\x20\x61" 27483 "\x62\x6f\x75\x74\x20\x74\x68\x65" 27484 "\x20\x73\x69\x7a\x65\x20\x6f\x66" 27485 "\x20\x61\x20\x47\x65\x72\x6d\x61" 27486 "\x6e\x20\x73\x68\x65\x70\x68\x65" 27487 "\x72\x64\x20\x62\x75\x74\x20\x6c" 27488 "\x6f\x6f\x6b\x73\x20\x6d\x6f\x72" 27489 "\x65\x20\x6c\x69\x6b\x65\x20\x61" 27490 "\x20\x6c\x6f\x6e\x67\x2d\x6c\x65" 27491 "\x67\x67\x65\x64\x20\x66\x6f\x78" 27492 "\x2e\x20\x54\x68\x69\x73\x20\x68" 27493 "\x69\x67\x68\x6c\x79\x20\x65\x6c" 27494 "\x75\x73\x69\x76\x65\x20\x61\x6e" 27495 "\x64\x20\x73\x6b\x69\x6c\x6c\x65" 27496 "\x64\x20\x6a\x75\x6d\x70\x65\x72" 27497 "\x20\x69\x73\x20\x63\x6c\x61\x73" 27498 "\x73\x69\x66\x69\x65\x64\x20\x77" 27499 "\x69\x74\x68\x20\x77\x6f\x6c\x76" 27500 "\x65\x73\x2c\x20\x63\x6f\x79\x6f" 27501 "\x74\x65\x73\x2c\x20\x6a\x61\x63" 27502 "\x6b\x61\x6c\x73\x2c\x20\x61\x6e" 27503 "\x64\x20\x66\x6f\x78\x65\x73\x20" 27504 "\x69\x6e\x20\x74\x68\x65\x20\x74" 27505 "\x61\x78\x6f\x6e\x6f\x6d\x69\x63" 27506 "\x20\x66\x61\x6d\x69\x6c\x79\x20" 27507 "\x43\x61\x6e\x69\x64\x61\x65\x2e", 27508 .ctext = "\x45\x59\xab\xba\x4e\x48\xc1\x61" 27509 "\x02\xe8\xbb\x2c\x05\xe6\x94\x7f" 27510 "\x50\xa7\x86\xde\x16\x2f\x9b\x0b" 27511 "\x7e\x59\x2a\x9b\x53\xd0\xd4\xe9" 27512 "\x8d\x8d\x64\x10\xd5\x40\xa1\xa6" 27513 "\x37\x5b\x26\xd8\x0d\xac\xe4\xfa" 27514 "\xb5\x23\x84\xc7\x31\xac\xbf\x16" 27515 "\xa5\x92\x3c\x0c\x48\xd3\x57\x5d" 27516 "\x4d\x0d\x2c\x67\x3b\x66\x6f\xaa" 27517 "\x73\x10\x61\x27\x77\x01\x09\x3a" 27518 "\x6b\xf7\xa1\x58\xa8\x86\x42\x92" 27519 "\xa4\x1c\x48\xe3\xa9\xb4\xc0\xda" 27520 "\xec\xe0\xf8\xd9\x8d\x0d\x7e\x05" 27521 "\xb3\x7a\x30\x7b\xbb\x66\x33\x31" 27522 "\x64\xec\x9e\x1b\x24\xea\x0d\x6c" 27523 "\x3f\xfd\xdc\xec\x4f\x68\xe7\x44" 27524 "\x30\x56\x19\x3a\x03\xc8\x10\xe1" 27525 "\x13\x44\xca\x06\xd8\xed\x8a\x2b" 27526 "\xfb\x1e\x8d\x48\xcf\xa6\xbc\x0e" 27527 "\xb4\xe2\x46\x4b\x74\x81\x42\x40" 27528 "\x7c\x9f\x43\x1a\xee\x76\x99\x60" 27529 "\xe1\x5b\xa8\xb9\x68\x90\x46\x6e" 27530 "\xf2\x45\x75\x99\x85\x23\x85\xc6" 27531 "\x61\xf7\x52\xce\x20\xf9\xda\x0c" 27532 "\x09\xab\x6b\x19\xdf\x74\xe7\x6a" 27533 "\x95\x96\x74\x46\xf8\xd0\xfd\x41" 27534 "\x5e\x7b\xee\x2a\x12\xa1\x14\xc2" 27535 "\x0e\xb5\x29\x2a\xe7\xa3\x49\xae" 27536 "\x57\x78\x20\xd5\x52\x0a\x1f\x3f" 27537 "\xb6\x2a\x17\xce\x6a\x7e\x68\xfa" 27538 "\x7c\x79\x11\x1d\x88\x60\x92\x0b" 27539 "\xc0\x48\xef\x43\xfe\x84\x48\x6c" 27540 "\xcb\x87\xc2\x5f\x0a\xe0\x45\xf0" 27541 "\xcc\xe1\xe7\x98\x9a\x9a\xa2\x20" 27542 "\xa2\x8b\xdd\x48\x27\xe7\x51\xa2" 27543 "\x4a\x6d\x5c\x62\xd7\x90\xa6\x63" 27544 "\x93\xb9\x31\x11\xc1\xa5\x5d\xd7" 27545 "\x42\x1a\x10\x18\x49\x74\xc7\xc5", 27546 .len = 304, 27547 } 27548 }; 27549 27550 /* 27551 * Same as XChaCha20 test vectors above, but recomputed the ciphertext with 27552 * XChaCha12, using a modified libsodium. 27553 */ 27554 static const struct cipher_testvec xchacha12_tv_template[] = { 27555 { 27556 .key = "\x79\xc9\x97\x98\xac\x67\x30\x0b" 27557 "\xbb\x27\x04\xc9\x5c\x34\x1e\x32" 27558 "\x45\xf3\xdc\xb2\x17\x61\xb9\x8e" 27559 "\x52\xff\x45\xb2\x4f\x30\x4f\xc4", 27560 .klen = 32, 27561 .iv = "\xb3\x3f\xfd\x30\x96\x47\x9b\xcf" 27562 "\xbc\x9a\xee\x49\x41\x76\x88\xa0" 27563 "\xa2\x55\x4f\x8d\x95\x38\x94\x19" 27564 "\x00\x00\x00\x00\x00\x00\x00\x00", 27565 .ptext = "\x00\x00\x00\x00\x00\x00\x00\x00" 27566 "\x00\x00\x00\x00\x00\x00\x00\x00" 27567 "\x00\x00\x00\x00\x00\x00\x00\x00" 27568 "\x00\x00\x00\x00\x00", 27569 .ctext = "\x1b\x78\x7f\xd7\xa1\x41\x68\xab" 27570 "\x3d\x3f\xd1\x7b\x69\x56\xb2\xd5" 27571 "\x43\xce\xeb\xaf\x36\xf0\x29\x9d" 27572 "\x3a\xfb\x18\xae\x1b", 27573 .len = 29, 27574 }, { 27575 .key = "\x9d\x23\xbd\x41\x49\xcb\x97\x9c" 27576 "\xcf\x3c\x5c\x94\xdd\x21\x7e\x98" 27577 "\x08\xcb\x0e\x50\xcd\x0f\x67\x81" 27578 "\x22\x35\xea\xaf\x60\x1d\x62\x32", 27579 .klen = 32, 27580 .iv = "\xc0\x47\x54\x82\x66\xb7\xc3\x70" 27581 "\xd3\x35\x66\xa2\x42\x5c\xbf\x30" 27582 "\xd8\x2d\x1e\xaf\x52\x94\x10\x9e" 27583 "\x00\x00\x00\x00\x00\x00\x00\x00", 27584 .ptext = "\x00\x00\x00\x00\x00\x00\x00\x00" 27585 "\x00\x00\x00\x00\x00\x00\x00\x00" 27586 "\x00\x00\x00\x00\x00\x00\x00\x00" 27587 "\x00\x00\x00\x00\x00\x00\x00\x00" 27588 "\x00\x00\x00\x00\x00\x00\x00\x00" 27589 "\x00\x00\x00\x00\x00\x00\x00\x00" 27590 "\x00\x00\x00\x00\x00\x00\x00\x00" 27591 "\x00\x00\x00\x00\x00\x00\x00\x00" 27592 "\x00\x00\x00\x00\x00\x00\x00\x00" 27593 "\x00\x00\x00\x00\x00\x00\x00\x00" 27594 "\x00\x00\x00\x00\x00\x00\x00\x00" 27595 "\x00\x00\x00", 27596 .ctext = "\xfb\x32\x09\x1d\x83\x05\xae\x4c" 27597 "\x13\x1f\x12\x71\xf2\xca\xb2\xeb" 27598 "\x5b\x83\x14\x7d\x83\xf6\x57\x77" 27599 "\x2e\x40\x1f\x92\x2c\xf9\xec\x35" 27600 "\x34\x1f\x93\xdf\xfb\x30\xd7\x35" 27601 "\x03\x05\x78\xc1\x20\x3b\x7a\xe3" 27602 "\x62\xa3\x89\xdc\x11\x11\x45\xa8" 27603 "\x82\x89\xa0\xf1\x4e\xc7\x0f\x11" 27604 "\x69\xdd\x0c\x84\x2b\x89\x5c\xdc" 27605 "\xf0\xde\x01\xef\xc5\x65\x79\x23" 27606 "\x87\x67\xd6\x50\xd9\x8d\xd9\x92" 27607 "\x54\x5b\x0e", 27608 .len = 91, 27609 }, { 27610 .key = "\x00\x00\x00\x00\x00\x00\x00\x00" 27611 "\x00\x00\x00\x00\x00\x00\x00\x00" 27612 "\x00\x00\x00\x00\x00\x00\x00\x00" 27613 "\x00\x00\x00\x00\x00\x00\x00\x00", 27614 .klen = 32, 27615 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 27616 "\x00\x00\x00\x00\x67\xc6\x69\x73" 27617 "\x51\xff\x4a\xec\x29\xcd\xba\xab" 27618 "\x00\x00\x00\x00\x00\x00\x00\x00", 27619 .ptext = "\x00\x00\x00\x00\x00\x00\x00\x00" 27620 "\x00\x00\x00\x00\x00\x00\x00\x00" 27621 "\x00\x00\x00\x00\x00\x00\x00\x00" 27622 "\x00\x00\x00\x00\x00\x00\x00\x00" 27623 "\x00\x00\x00\x00\x00\x00\x00\x00" 27624 "\x00\x00\x00\x00\x00\x00\x00\x00" 27625 "\x00\x00\x00\x00\x00\x00\x00\x00" 27626 "\x00\x00\x00\x00\x00\x00\x00\x00", 27627 .ctext = "\xdf\x2d\xc6\x21\x2a\x9d\xa1\xbb" 27628 "\xc2\x77\x66\x0c\x5c\x46\xef\xa7" 27629 "\x79\x1b\xb9\xdf\x55\xe2\xf9\x61" 27630 "\x4c\x7b\xa4\x52\x24\xaf\xa2\xda" 27631 "\xd1\x8f\x8f\xa2\x9e\x53\x4d\xc4" 27632 "\xb8\x55\x98\x08\x7c\x08\xd4\x18" 27633 "\x67\x8f\xef\x50\xb1\x5f\xa5\x77" 27634 "\x4c\x25\xe7\x86\x26\x42\xca\x44", 27635 .len = 64, 27636 }, { 27637 .key = "\x00\x00\x00\x00\x00\x00\x00\x00" 27638 "\x00\x00\x00\x00\x00\x00\x00\x00" 27639 "\x00\x00\x00\x00\x00\x00\x00\x00" 27640 "\x00\x00\x00\x00\x00\x00\x00\x01", 27641 .klen = 32, 27642 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 27643 "\x00\x00\x00\x02\xf2\xfb\xe3\x46" 27644 "\x7c\xc2\x54\xf8\x1b\xe8\xe7\x8d" 27645 "\x01\x00\x00\x00\x00\x00\x00\x00", 27646 .ptext = "\x41\x6e\x79\x20\x73\x75\x62\x6d" 27647 "\x69\x73\x73\x69\x6f\x6e\x20\x74" 27648 "\x6f\x20\x74\x68\x65\x20\x49\x45" 27649 "\x54\x46\x20\x69\x6e\x74\x65\x6e" 27650 "\x64\x65\x64\x20\x62\x79\x20\x74" 27651 "\x68\x65\x20\x43\x6f\x6e\x74\x72" 27652 "\x69\x62\x75\x74\x6f\x72\x20\x66" 27653 "\x6f\x72\x20\x70\x75\x62\x6c\x69" 27654 "\x63\x61\x74\x69\x6f\x6e\x20\x61" 27655 "\x73\x20\x61\x6c\x6c\x20\x6f\x72" 27656 "\x20\x70\x61\x72\x74\x20\x6f\x66" 27657 "\x20\x61\x6e\x20\x49\x45\x54\x46" 27658 "\x20\x49\x6e\x74\x65\x72\x6e\x65" 27659 "\x74\x2d\x44\x72\x61\x66\x74\x20" 27660 "\x6f\x72\x20\x52\x46\x43\x20\x61" 27661 "\x6e\x64\x20\x61\x6e\x79\x20\x73" 27662 "\x74\x61\x74\x65\x6d\x65\x6e\x74" 27663 "\x20\x6d\x61\x64\x65\x20\x77\x69" 27664 "\x74\x68\x69\x6e\x20\x74\x68\x65" 27665 "\x20\x63\x6f\x6e\x74\x65\x78\x74" 27666 "\x20\x6f\x66\x20\x61\x6e\x20\x49" 27667 "\x45\x54\x46\x20\x61\x63\x74\x69" 27668 "\x76\x69\x74\x79\x20\x69\x73\x20" 27669 "\x63\x6f\x6e\x73\x69\x64\x65\x72" 27670 "\x65\x64\x20\x61\x6e\x20\x22\x49" 27671 "\x45\x54\x46\x20\x43\x6f\x6e\x74" 27672 "\x72\x69\x62\x75\x74\x69\x6f\x6e" 27673 "\x22\x2e\x20\x53\x75\x63\x68\x20" 27674 "\x73\x74\x61\x74\x65\x6d\x65\x6e" 27675 "\x74\x73\x20\x69\x6e\x63\x6c\x75" 27676 "\x64\x65\x20\x6f\x72\x61\x6c\x20" 27677 "\x73\x74\x61\x74\x65\x6d\x65\x6e" 27678 "\x74\x73\x20\x69\x6e\x20\x49\x45" 27679 "\x54\x46\x20\x73\x65\x73\x73\x69" 27680 "\x6f\x6e\x73\x2c\x20\x61\x73\x20" 27681 "\x77\x65\x6c\x6c\x20\x61\x73\x20" 27682 "\x77\x72\x69\x74\x74\x65\x6e\x20" 27683 "\x61\x6e\x64\x20\x65\x6c\x65\x63" 27684 "\x74\x72\x6f\x6e\x69\x63\x20\x63" 27685 "\x6f\x6d\x6d\x75\x6e\x69\x63\x61" 27686 "\x74\x69\x6f\x6e\x73\x20\x6d\x61" 27687 "\x64\x65\x20\x61\x74\x20\x61\x6e" 27688 "\x79\x20\x74\x69\x6d\x65\x20\x6f" 27689 "\x72\x20\x70\x6c\x61\x63\x65\x2c" 27690 "\x20\x77\x68\x69\x63\x68\x20\x61" 27691 "\x72\x65\x20\x61\x64\x64\x72\x65" 27692 "\x73\x73\x65\x64\x20\x74\x6f", 27693 .ctext = "\xe4\xa6\xc8\x30\xc4\x23\x13\xd6" 27694 "\x08\x4d\xc9\xb7\xa5\x64\x7c\xb9" 27695 "\x71\xe2\xab\x3e\xa8\x30\x8a\x1c" 27696 "\x4a\x94\x6d\x9b\xe0\xb3\x6f\xf1" 27697 "\xdc\xe3\x1b\xb3\xa9\x6d\x0d\xd6" 27698 "\xd0\xca\x12\xef\xe7\x5f\xd8\x61" 27699 "\x3c\x82\xd3\x99\x86\x3c\x6f\x66" 27700 "\x02\x06\xdc\x55\xf9\xed\xdf\x38" 27701 "\xb4\xa6\x17\x00\x7f\xef\xbf\x4f" 27702 "\xf8\x36\xf1\x60\x7e\x47\xaf\xdb" 27703 "\x55\x9b\x12\xcb\x56\x44\xa7\x1f" 27704 "\xd3\x1a\x07\x3b\x00\xec\xe6\x4c" 27705 "\xa2\x43\x27\xdf\x86\x19\x4f\x16" 27706 "\xed\xf9\x4a\xf3\x63\x6f\xfa\x7f" 27707 "\x78\x11\xf6\x7d\x97\x6f\xec\x6f" 27708 "\x85\x0f\x5c\x36\x13\x8d\x87\xe0" 27709 "\x80\xb1\x69\x0b\x98\x89\x9c\x4e" 27710 "\xf8\xdd\xee\x5c\x0a\x85\xce\xd4" 27711 "\xea\x1b\x48\xbe\x08\xf8\xe2\xa8" 27712 "\xa5\xb0\x3c\x79\xb1\x15\xb4\xb9" 27713 "\x75\x10\x95\x35\x81\x7e\x26\xe6" 27714 "\x78\xa4\x88\xcf\xdb\x91\x34\x18" 27715 "\xad\xd7\x8e\x07\x7d\xab\x39\xf9" 27716 "\xa3\x9e\xa5\x1d\xbb\xed\x61\xfd" 27717 "\xdc\xb7\x5a\x27\xfc\xb5\xc9\x10" 27718 "\xa8\xcc\x52\x7f\x14\x76\x90\xe7" 27719 "\x1b\x29\x60\x74\xc0\x98\x77\xbb" 27720 "\xe0\x54\xbb\x27\x49\x59\x1e\x62" 27721 "\x3d\xaf\x74\x06\xa4\x42\x6f\xc6" 27722 "\x52\x97\xc4\x1d\xc4\x9f\xe2\xe5" 27723 "\x38\x57\x91\xd1\xa2\x28\xcc\x40" 27724 "\xcc\x70\x59\x37\xfc\x9f\x4b\xda" 27725 "\xa0\xeb\x97\x9a\x7d\xed\x14\x5c" 27726 "\x9c\xb7\x93\x26\x41\xa8\x66\xdd" 27727 "\x87\x6a\xc0\xd3\xc2\xa9\x3e\xae" 27728 "\xe9\x72\xfe\xd1\xb3\xac\x38\xea" 27729 "\x4d\x15\xa9\xd5\x36\x61\xe9\x96" 27730 "\x6c\x23\xf8\x43\xe4\x92\x29\xd9" 27731 "\x8b\x78\xf7\x0a\x52\xe0\x19\x5b" 27732 "\x59\x69\x5b\x5d\xa1\x53\xc4\x68" 27733 "\xe1\xbb\xac\x89\x14\xe2\xe2\x85" 27734 "\x41\x18\xf5\xb3\xd1\xfa\x68\x19" 27735 "\x44\x78\xdc\xcf\xe7\x88\x2d\x52" 27736 "\x5f\x40\xb5\x7e\xf8\x88\xa2\xae" 27737 "\x4a\xb2\x07\x35\x9d\x9b\x07\x88" 27738 "\xb7\x00\xd0\x0c\xb6\xa0\x47\x59" 27739 "\xda\x4e\xc9\xab\x9b\x8a\x7b", 27740 27741 .len = 375, 27742 27743 }, { 27744 .key = "\x1c\x92\x40\xa5\xeb\x55\xd3\x8a" 27745 "\xf3\x33\x88\x86\x04\xf6\xb5\xf0" 27746 "\x47\x39\x17\xc1\x40\x2b\x80\x09" 27747 "\x9d\xca\x5c\xbc\x20\x70\x75\xc0", 27748 .klen = 32, 27749 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 27750 "\x00\x00\x00\x02\x76\x5a\x2e\x63" 27751 "\x33\x9f\xc9\x9a\x66\x32\x0d\xb7" 27752 "\x2a\x00\x00\x00\x00\x00\x00\x00", 27753 .ptext = "\x27\x54\x77\x61\x73\x20\x62\x72" 27754 "\x69\x6c\x6c\x69\x67\x2c\x20\x61" 27755 "\x6e\x64\x20\x74\x68\x65\x20\x73" 27756 "\x6c\x69\x74\x68\x79\x20\x74\x6f" 27757 "\x76\x65\x73\x0a\x44\x69\x64\x20" 27758 "\x67\x79\x72\x65\x20\x61\x6e\x64" 27759 "\x20\x67\x69\x6d\x62\x6c\x65\x20" 27760 "\x69\x6e\x20\x74\x68\x65\x20\x77" 27761 "\x61\x62\x65\x3a\x0a\x41\x6c\x6c" 27762 "\x20\x6d\x69\x6d\x73\x79\x20\x77" 27763 "\x65\x72\x65\x20\x74\x68\x65\x20" 27764 "\x62\x6f\x72\x6f\x67\x6f\x76\x65" 27765 "\x73\x2c\x0a\x41\x6e\x64\x20\x74" 27766 "\x68\x65\x20\x6d\x6f\x6d\x65\x20" 27767 "\x72\x61\x74\x68\x73\x20\x6f\x75" 27768 "\x74\x67\x72\x61\x62\x65\x2e", 27769 .ctext = "\xb9\x68\xbc\x6a\x24\xbc\xcc\xd8" 27770 "\x9b\x2a\x8d\x5b\x96\xaf\x56\xe3" 27771 "\x11\x61\xe7\xa7\x9b\xce\x4e\x7d" 27772 "\x60\x02\x48\xac\xeb\xd5\x3a\x26" 27773 "\x9d\x77\x3b\xb5\x32\x13\x86\x8e" 27774 "\x20\x82\x26\x72\xae\x64\x1b\x7e" 27775 "\x2e\x01\x68\xb4\x87\x45\xa1\x24" 27776 "\xe4\x48\x40\xf0\xaa\xac\xee\xa9" 27777 "\xfc\x31\xad\x9d\x89\xa3\xbb\xd2" 27778 "\xe4\x25\x13\xad\x0f\x5e\xdf\x3c" 27779 "\x27\xab\xb8\x62\x46\x22\x30\x48" 27780 "\x55\x2c\x4e\x84\x78\x1d\x0d\x34" 27781 "\x8d\x3c\x91\x0a\x7f\x5b\x19\x9f" 27782 "\x97\x05\x4c\xa7\x62\x47\x8b\xc5" 27783 "\x44\x2e\x20\x33\xdd\xa0\x82\xa9" 27784 "\x25\x76\x37\xe6\x3c\x67\x5b", 27785 .len = 127, 27786 }, { 27787 .key = "\x1c\x92\x40\xa5\xeb\x55\xd3\x8a" 27788 "\xf3\x33\x88\x86\x04\xf6\xb5\xf0" 27789 "\x47\x39\x17\xc1\x40\x2b\x80\x09" 27790 "\x9d\xca\x5c\xbc\x20\x70\x75\xc0", 27791 .klen = 32, 27792 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 27793 "\x00\x00\x00\x01\x31\x58\xa3\x5a" 27794 "\x25\x5d\x05\x17\x58\xe9\x5e\xd4" 27795 "\x1c\x00\x00\x00\x00\x00\x00\x00", 27796 .ptext = "\x49\xee\xe0\xdc\x24\x90\x40\xcd" 27797 "\xc5\x40\x8f\x47\x05\xbc\xdd\x81" 27798 "\x47\xc6\x8d\xe6\xb1\x8f\xd7\xcb" 27799 "\x09\x0e\x6e\x22\x48\x1f\xbf\xb8" 27800 "\x5c\xf7\x1e\x8a\xc1\x23\xf2\xd4" 27801 "\x19\x4b\x01\x0f\x4e\xa4\x43\xce" 27802 "\x01\xc6\x67\xda\x03\x91\x18\x90" 27803 "\xa5\xa4\x8e\x45\x03\xb3\x2d\xac" 27804 "\x74\x92\xd3\x53\x47\xc8\xdd\x25" 27805 "\x53\x6c\x02\x03\x87\x0d\x11\x0c" 27806 "\x58\xe3\x12\x18\xfd\x2a\x5b\x40" 27807 "\x0c\x30\xf0\xb8\x3f\x43\xce\xae" 27808 "\x65\x3a\x7d\x7c\xf4\x54\xaa\xcc" 27809 "\x33\x97\xc3\x77\xba\xc5\x70\xde" 27810 "\xd7\xd5\x13\xa5\x65\xc4\x5f\x0f" 27811 "\x46\x1a\x0d\x97\xb5\xf3\xbb\x3c" 27812 "\x84\x0f\x2b\xc5\xaa\xea\xf2\x6c" 27813 "\xc9\xb5\x0c\xee\x15\xf3\x7d\xbe" 27814 "\x9f\x7b\x5a\xa6\xae\x4f\x83\xb6" 27815 "\x79\x49\x41\xf4\x58\x18\xcb\x86" 27816 "\x7f\x30\x0e\xf8\x7d\x44\x36\xea" 27817 "\x75\xeb\x88\x84\x40\x3c\xad\x4f" 27818 "\x6f\x31\x6b\xaa\x5d\xe5\xa5\xc5" 27819 "\x21\x66\xe9\xa7\xe3\xb2\x15\x88" 27820 "\x78\xf6\x79\xa1\x59\x47\x12\x4e" 27821 "\x9f\x9f\x64\x1a\xa0\x22\x5b\x08" 27822 "\xbe\x7c\x36\xc2\x2b\x66\x33\x1b" 27823 "\xdd\x60\x71\xf7\x47\x8c\x61\xc3" 27824 "\xda\x8a\x78\x1e\x16\xfa\x1e\x86" 27825 "\x81\xa6\x17\x2a\xa7\xb5\xc2\xe7" 27826 "\xa4\xc7\x42\xf1\xcf\x6a\xca\xb4" 27827 "\x45\xcf\xf3\x93\xf0\xe7\xea\xf6" 27828 "\xf4\xe6\x33\x43\x84\x93\xa5\x67" 27829 "\x9b\x16\x58\x58\x80\x0f\x2b\x5c" 27830 "\x24\x74\x75\x7f\x95\x81\xb7\x30" 27831 "\x7a\x33\xa7\xf7\x94\x87\x32\x27" 27832 "\x10\x5d\x14\x4c\x43\x29\xdd\x26" 27833 "\xbd\x3e\x3c\x0e\xfe\x0e\xa5\x10" 27834 "\xea\x6b\x64\xfd\x73\xc6\xed\xec" 27835 "\xa8\xc9\xbf\xb3\xba\x0b\x4d\x07" 27836 "\x70\xfc\x16\xfd\x79\x1e\xd7\xc5" 27837 "\x49\x4e\x1c\x8b\x8d\x79\x1b\xb1" 27838 "\xec\xca\x60\x09\x4c\x6a\xd5\x09" 27839 "\x49\x46\x00\x88\x22\x8d\xce\xea" 27840 "\xb1\x17\x11\xde\x42\xd2\x23\xc1" 27841 "\x72\x11\xf5\x50\x73\x04\x40\x47" 27842 "\xf9\x5d\xe7\xa7\x26\xb1\x7e\xb0" 27843 "\x3f\x58\xc1\x52\xab\x12\x67\x9d" 27844 "\x3f\x43\x4b\x68\xd4\x9c\x68\x38" 27845 "\x07\x8a\x2d\x3e\xf3\xaf\x6a\x4b" 27846 "\xf9\xe5\x31\x69\x22\xf9\xa6\x69" 27847 "\xc6\x9c\x96\x9a\x12\x35\x95\x1d" 27848 "\x95\xd5\xdd\xbe\xbf\x93\x53\x24" 27849 "\xfd\xeb\xc2\x0a\x64\xb0\x77\x00" 27850 "\x6f\x88\xc4\x37\x18\x69\x7c\xd7" 27851 "\x41\x92\x55\x4c\x03\xa1\x9a\x4b" 27852 "\x15\xe5\xdf\x7f\x37\x33\x72\xc1" 27853 "\x8b\x10\x67\xa3\x01\x57\x94\x25" 27854 "\x7b\x38\x71\x7e\xdd\x1e\xcc\x73" 27855 "\x55\xd2\x8e\xeb\x07\xdd\xf1\xda" 27856 "\x58\xb1\x47\x90\xfe\x42\x21\x72" 27857 "\xa3\x54\x7a\xa0\x40\xec\x9f\xdd" 27858 "\xc6\x84\x6e\xca\xae\xe3\x68\xb4" 27859 "\x9d\xe4\x78\xff\x57\xf2\xf8\x1b" 27860 "\x03\xa1\x31\xd9\xde\x8d\xf5\x22" 27861 "\x9c\xdd\x20\xa4\x1e\x27\xb1\x76" 27862 "\x4f\x44\x55\xe2\x9b\xa1\x9c\xfe" 27863 "\x54\xf7\x27\x1b\xf4\xde\x02\xf5" 27864 "\x1b\x55\x48\x5c\xdc\x21\x4b\x9e" 27865 "\x4b\x6e\xed\x46\x23\xdc\x65\xb2" 27866 "\xcf\x79\x5f\x28\xe0\x9e\x8b\xe7" 27867 "\x4c\x9d\x8a\xff\xc1\xa6\x28\xb8" 27868 "\x65\x69\x8a\x45\x29\xef\x74\x85" 27869 "\xde\x79\xc7\x08\xae\x30\xb0\xf4" 27870 "\xa3\x1d\x51\x41\xab\xce\xcb\xf6" 27871 "\xb5\xd8\x6d\xe0\x85\xe1\x98\xb3" 27872 "\x43\xbb\x86\x83\x0a\xa0\xf5\xb7" 27873 "\x04\x0b\xfa\x71\x1f\xb0\xf6\xd9" 27874 "\x13\x00\x15\xf0\xc7\xeb\x0d\x5a" 27875 "\x9f\xd7\xb9\x6c\x65\x14\x22\x45" 27876 "\x6e\x45\x32\x3e\x7e\x60\x1a\x12" 27877 "\x97\x82\x14\xfb\xaa\x04\x22\xfa" 27878 "\xa0\xe5\x7e\x8c\x78\x02\x48\x5d" 27879 "\x78\x33\x5a\x7c\xad\xdb\x29\xce" 27880 "\xbb\x8b\x61\xa4\xb7\x42\xe2\xac" 27881 "\x8b\x1a\xd9\x2f\x0b\x8b\x62\x21" 27882 "\x83\x35\x7e\xad\x73\xc2\xb5\x6c" 27883 "\x10\x26\x38\x07\xe5\xc7\x36\x80" 27884 "\xe2\x23\x12\x61\xf5\x48\x4b\x2b" 27885 "\xc5\xdf\x15\xd9\x87\x01\xaa\xac" 27886 "\x1e\x7c\xad\x73\x78\x18\x63\xe0" 27887 "\x8b\x9f\x81\xd8\x12\x6a\x28\x10" 27888 "\xbe\x04\x68\x8a\x09\x7c\x1b\x1c" 27889 "\x83\x66\x80\x47\x80\xe8\xfd\x35" 27890 "\x1c\x97\x6f\xae\x49\x10\x66\xcc" 27891 "\xc6\xd8\xcc\x3a\x84\x91\x20\x77" 27892 "\x72\xe4\x24\xd2\x37\x9f\xc5\xc9" 27893 "\x25\x94\x10\x5f\x40\x00\x64\x99" 27894 "\xdc\xae\xd7\x21\x09\x78\x50\x15" 27895 "\xac\x5f\xc6\x2c\xa2\x0b\xa9\x39" 27896 "\x87\x6e\x6d\xab\xde\x08\x51\x16" 27897 "\xc7\x13\xe9\xea\xed\x06\x8e\x2c" 27898 "\xf8\x37\x8c\xf0\xa6\x96\x8d\x43" 27899 "\xb6\x98\x37\xb2\x43\xed\xde\xdf" 27900 "\x89\x1a\xe7\xeb\x9d\xa1\x7b\x0b" 27901 "\x77\xb0\xe2\x75\xc0\xf1\x98\xd9" 27902 "\x80\x55\xc9\x34\x91\xd1\x59\xe8" 27903 "\x4b\x0f\xc1\xa9\x4b\x7a\x84\x06" 27904 "\x20\xa8\x5d\xfa\xd1\xde\x70\x56" 27905 "\x2f\x9e\x91\x9c\x20\xb3\x24\xd8" 27906 "\x84\x3d\xe1\x8c\x7e\x62\x52\xe5" 27907 "\x44\x4b\x9f\xc2\x93\x03\xea\x2b" 27908 "\x59\xc5\xfa\x3f\x91\x2b\xbb\x23" 27909 "\xf5\xb2\x7b\xf5\x38\xaf\xb3\xee" 27910 "\x63\xdc\x7b\xd1\xff\xaa\x8b\xab" 27911 "\x82\x6b\x37\x04\xeb\x74\xbe\x79" 27912 "\xb9\x83\x90\xef\x20\x59\x46\xff" 27913 "\xe9\x97\x3e\x2f\xee\xb6\x64\x18" 27914 "\x38\x4c\x7a\x4a\xf9\x61\xe8\x9a" 27915 "\xa1\xb5\x01\xa6\x47\xd3\x11\xd4" 27916 "\xce\xd3\x91\x49\x88\xc7\xb8\x4d" 27917 "\xb1\xb9\x07\x6d\x16\x72\xae\x46" 27918 "\x5e\x03\xa1\x4b\xb6\x02\x30\xa8" 27919 "\x3d\xa9\x07\x2a\x7c\x19\xe7\x62" 27920 "\x87\xe3\x82\x2f\x6f\xe1\x09\xd9" 27921 "\x94\x97\xea\xdd\x58\x9e\xae\x76" 27922 "\x7e\x35\xe5\xb4\xda\x7e\xf4\xde" 27923 "\xf7\x32\x87\xcd\x93\xbf\x11\x56" 27924 "\x11\xbe\x08\x74\xe1\x69\xad\xe2" 27925 "\xd7\xf8\x86\x75\x8a\x3c\xa4\xbe" 27926 "\x70\xa7\x1b\xfc\x0b\x44\x2a\x76" 27927 "\x35\xea\x5d\x85\x81\xaf\x85\xeb" 27928 "\xa0\x1c\x61\xc2\xf7\x4f\xa5\xdc" 27929 "\x02\x7f\xf6\x95\x40\x6e\x8a\x9a" 27930 "\xf3\x5d\x25\x6e\x14\x3a\x22\xc9" 27931 "\x37\x1c\xeb\x46\x54\x3f\xa5\x91" 27932 "\xc2\xb5\x8c\xfe\x53\x08\x97\x32" 27933 "\x1b\xb2\x30\x27\xfe\x25\x5d\xdc" 27934 "\x08\x87\xd0\xe5\x94\x1a\xd4\xf1" 27935 "\xfe\xd6\xb4\xa3\xe6\x74\x81\x3c" 27936 "\x1b\xb7\x31\xa7\x22\xfd\xd4\xdd" 27937 "\x20\x4e\x7c\x51\xb0\x60\x73\xb8" 27938 "\x9c\xac\x91\x90\x7e\x01\xb0\xe1" 27939 "\x8a\x2f\x75\x1c\x53\x2a\x98\x2a" 27940 "\x06\x52\x95\x52\xb2\xe9\x25\x2e" 27941 "\x4c\xe2\x5a\x00\xb2\x13\x81\x03" 27942 "\x77\x66\x0d\xa5\x99\xda\x4e\x8c" 27943 "\xac\xf3\x13\x53\x27\x45\xaf\x64" 27944 "\x46\xdc\xea\x23\xda\x97\xd1\xab" 27945 "\x7d\x6c\x30\x96\x1f\xbc\x06\x34" 27946 "\x18\x0b\x5e\x21\x35\x11\x8d\x4c" 27947 "\xe0\x2d\xe9\x50\x16\x74\x81\xa8" 27948 "\xb4\x34\xb9\x72\x42\xa6\xcc\xbc" 27949 "\xca\x34\x83\x27\x10\x5b\x68\x45" 27950 "\x8f\x52\x22\x0c\x55\x3d\x29\x7c" 27951 "\xe3\xc0\x66\x05\x42\x91\x5f\x58" 27952 "\xfe\x4a\x62\xd9\x8c\xa9\x04\x19" 27953 "\x04\xa9\x08\x4b\x57\xfc\x67\x53" 27954 "\x08\x7c\xbc\x66\x8a\xb0\xb6\x9f" 27955 "\x92\xd6\x41\x7c\x5b\x2a\x00\x79" 27956 "\x72", 27957 .ctext = "\xe1\xb6\x8b\x5c\x80\xb8\xcc\x08" 27958 "\x1b\x84\xb2\xd1\xad\xa4\x70\xac" 27959 "\x67\xa9\x39\x27\xac\xb4\x5b\xb7" 27960 "\x4c\x26\x77\x23\x1d\xce\x0a\xbe" 27961 "\x18\x9e\x42\x8b\xbd\x7f\xd6\xf1" 27962 "\xf1\x6b\xe2\x6d\x7f\x92\x0e\xcb" 27963 "\xb8\x79\xba\xb4\xac\x7e\x2d\xc0" 27964 "\x9e\x83\x81\x91\xd5\xea\xc3\x12" 27965 "\x8d\xa4\x26\x70\xa4\xf9\x71\x0b" 27966 "\xbd\x2e\xe1\xb3\x80\x42\x25\xb3" 27967 "\x0b\x31\x99\xe1\x0d\xde\xa6\x90" 27968 "\xf2\xa3\x10\xf7\xe5\xf3\x83\x1e" 27969 "\x2c\xfb\x4d\xf0\x45\x3d\x28\x3c" 27970 "\xb8\xf1\xcb\xbf\x67\xd8\x43\x5a" 27971 "\x9d\x7b\x73\x29\x88\x0f\x13\x06" 27972 "\x37\x50\x0d\x7c\xe6\x9b\x07\xdd" 27973 "\x7e\x01\x1f\x81\x90\x10\x69\xdb" 27974 "\xa4\xad\x8a\x5e\xac\x30\x72\xf2" 27975 "\x36\xcd\xe3\x23\x49\x02\x93\xfa" 27976 "\x3d\xbb\xe2\x98\x83\xeb\xe9\x8d" 27977 "\xb3\x8f\x11\xaa\x53\xdb\xaf\x2e" 27978 "\x95\x13\x99\x3d\x71\xbd\x32\x92" 27979 "\xdd\xfc\x9d\x5e\x6f\x63\x2c\xee" 27980 "\x91\x1f\x4c\x64\x3d\x87\x55\x0f" 27981 "\xcc\x3d\x89\x61\x53\x02\x57\x8f" 27982 "\xe4\x77\x29\x32\xaf\xa6\x2f\x0a" 27983 "\xae\x3c\x3f\x3f\xf4\xfb\x65\x52" 27984 "\xc5\xc1\x78\x78\x53\x28\xad\xed" 27985 "\xd1\x67\x37\xc7\x59\x70\xcd\x0a" 27986 "\xb8\x0f\x80\x51\x9f\xc0\x12\x5e" 27987 "\x06\x0a\x7e\xec\x24\x5f\x73\x00" 27988 "\xb1\x0b\x31\x47\x4f\x73\x8d\xb4" 27989 "\xce\xf3\x55\x45\x6c\x84\x27\xba" 27990 "\xb9\x6f\x03\x4a\xeb\x98\x88\x6e" 27991 "\x53\xed\x25\x19\x0d\x8f\xfe\xca" 27992 "\x60\xe5\x00\x93\x6e\x3c\xff\x19" 27993 "\xae\x08\x3b\x8a\xa6\x84\x05\xfe" 27994 "\x9b\x59\xa0\x8c\xc8\x05\x45\xf5" 27995 "\x05\x37\xdc\x45\x6f\x8b\x95\x8c" 27996 "\x4e\x11\x45\x7a\xce\x21\xa5\xf7" 27997 "\x71\x67\xb9\xce\xd7\xf9\xe9\x5e" 27998 "\x60\xf5\x53\x7a\xa8\x85\x14\x03" 27999 "\xa0\x92\xec\xf3\x51\x80\x84\xc4" 28000 "\xdc\x11\x9e\x57\xce\x4b\x45\xcf" 28001 "\x90\x95\x85\x0b\x96\xe9\xee\x35" 28002 "\x10\xb8\x9b\xf2\x59\x4a\xc6\x7e" 28003 "\x85\xe5\x6f\x38\x51\x93\x40\x0c" 28004 "\x99\xd7\x7f\x32\xa8\x06\x27\xd1" 28005 "\x2b\xd5\xb5\x3a\x1a\xe1\x5e\xda" 28006 "\xcd\x5a\x50\x30\x3c\xc7\xe7\x65" 28007 "\xa6\x07\x0b\x98\x91\xc6\x20\x27" 28008 "\x2a\x03\x63\x1b\x1e\x3d\xaf\xc8" 28009 "\x71\x48\x46\x6a\x64\x28\xf9\x3d" 28010 "\xd1\x1d\xab\xc8\x40\x76\xc2\x39" 28011 "\x4e\x00\x75\xd2\x0e\x82\x58\x8c" 28012 "\xd3\x73\x5a\xea\x46\x89\xbe\xfd" 28013 "\x4e\x2c\x0d\x94\xaa\x9b\x68\xac" 28014 "\x86\x87\x30\x7e\xa9\x16\xcd\x59" 28015 "\xd2\xa6\xbe\x0a\xd8\xf5\xfd\x2d" 28016 "\x49\x69\xd2\x1a\x90\xd2\x1b\xed" 28017 "\xff\x71\x04\x87\x87\x21\xc4\xb8" 28018 "\x1f\x5b\x51\x33\xd0\xd6\x59\x9a" 28019 "\x03\x0e\xd3\x8b\xfb\x57\x73\xfd" 28020 "\x5a\x52\x63\x82\xc8\x85\x2f\xcb" 28021 "\x74\x6d\x4e\xd9\x68\x37\x85\x6a" 28022 "\xd4\xfb\x94\xed\x8d\xd1\x1a\xaf" 28023 "\x76\xa7\xb7\x88\xd0\x2b\x4e\xda" 28024 "\xec\x99\x94\x27\x6f\x87\x8c\xdf" 28025 "\x4b\x5e\xa6\x66\xdd\xcb\x33\x7b" 28026 "\x64\x94\x31\xa8\x37\xa6\x1d\xdb" 28027 "\x0d\x5c\x93\xa4\x40\xf9\x30\x53" 28028 "\x4b\x74\x8d\xdd\xf6\xde\x3c\xac" 28029 "\x5c\x80\x01\x3a\xef\xb1\x9a\x02" 28030 "\x0c\x22\x8e\xe7\x44\x09\x74\x4c" 28031 "\xf2\x9a\x27\x69\x7f\x12\x32\x36" 28032 "\xde\x92\xdf\xde\x8f\x5b\x31\xab" 28033 "\x4a\x01\x26\xe0\xb1\xda\xe8\x37" 28034 "\x21\x64\xe8\xff\x69\xfc\x9e\x41" 28035 "\xd2\x96\x2d\x18\x64\x98\x33\x78" 28036 "\x24\x61\x73\x9b\x47\x29\xf1\xa7" 28037 "\xcb\x27\x0f\xf0\x85\x6d\x8c\x9d" 28038 "\x2c\x95\x9e\xe5\xb2\x8e\x30\x29" 28039 "\x78\x8a\x9d\x65\xb4\x8e\xde\x7b" 28040 "\xd9\x00\x50\xf5\x7f\x81\xc3\x1b" 28041 "\x25\x85\xeb\xc2\x8c\x33\x22\x1e" 28042 "\x68\x38\x22\x30\xd8\x2e\x00\x98" 28043 "\x85\x16\x06\x56\xb4\x81\x74\x20" 28044 "\x95\xdb\x1c\x05\x19\xe8\x23\x4d" 28045 "\x65\x5d\xcc\xd8\x7f\xc4\x2d\x0f" 28046 "\x57\x26\x71\x07\xad\xaa\x71\x9f" 28047 "\x19\x76\x2f\x25\x51\x88\xe4\xc0" 28048 "\x82\x6e\x08\x05\x37\x04\xee\x25" 28049 "\x23\x90\xe9\x4e\xce\x9b\x16\xc1" 28050 "\x31\xe7\x6e\x2c\x1b\xe1\x85\x9a" 28051 "\x0c\x8c\xbb\x12\x1e\x68\x7b\x93" 28052 "\xa9\x3c\x39\x56\x23\x3e\x6e\xc7" 28053 "\x77\x84\xd3\xe0\x86\x59\xaa\xb9" 28054 "\xd5\x53\x58\xc9\x0a\x83\x5f\x85" 28055 "\xd8\x47\x14\x67\x8a\x3c\x17\xe0" 28056 "\xab\x02\x51\xea\xf1\xf0\x4f\x30" 28057 "\x7d\xe0\x92\xc2\x5f\xfb\x19\x5a" 28058 "\x3f\xbd\xf4\x39\xa4\x31\x0c\x39" 28059 "\xd1\xae\x4e\xf7\x65\x7f\x1f\xce" 28060 "\xc2\x39\xd1\x84\xd4\xe5\x02\xe0" 28061 "\x58\xaa\xf1\x5e\x81\xaf\x7f\x72" 28062 "\x0f\x08\x99\x43\xb9\xd8\xac\x41" 28063 "\x35\x55\xf2\xb2\xd4\x98\xb8\x3b" 28064 "\x2b\x3c\x3e\x16\x06\x31\xfc\x79" 28065 "\x47\x38\x63\x51\xc5\xd0\x26\xd7" 28066 "\x43\xb4\x2b\xd9\xc5\x05\xf2\x9d" 28067 "\x18\xc9\x26\x82\x56\xd2\x11\x05" 28068 "\xb6\x89\xb4\x43\x9c\xb5\x9d\x11" 28069 "\x6c\x83\x37\x71\x27\x1c\xae\xbf" 28070 "\xcd\x57\xd2\xee\x0d\x5a\x15\x26" 28071 "\x67\x88\x80\x80\x1b\xdc\xc1\x62" 28072 "\xdd\x4c\xff\x92\x5c\x6c\xe1\xa0" 28073 "\xe3\x79\xa9\x65\x8c\x8c\x14\x42" 28074 "\xe5\x11\xd2\x1a\xad\xa9\x56\x6f" 28075 "\x98\xfc\x8a\x7b\x56\x1f\xc6\xc1" 28076 "\x52\x12\x92\x9b\x41\x0f\x4b\xae" 28077 "\x1b\x4a\xbc\xfe\x23\xb6\x94\x70" 28078 "\x04\x30\x9e\x69\x47\xbe\xb8\x8f" 28079 "\xca\x45\xd7\x8a\xf4\x78\x3e\xaa" 28080 "\x71\x17\xd8\x1e\xb8\x11\x8f\xbc" 28081 "\xc8\x1a\x65\x7b\x41\x89\x72\xc7" 28082 "\x5f\xbe\xc5\x2a\xdb\x5c\x54\xf9" 28083 "\x25\xa3\x7a\x80\x56\x9c\x8c\xab" 28084 "\x26\x19\x10\x36\xa6\xf3\x14\x79" 28085 "\x40\x98\x70\x68\xb7\x35\xd9\xb9" 28086 "\x27\xd4\xe7\x74\x5b\x3d\x97\xb4" 28087 "\xd9\xaa\xd9\xf2\xb5\x14\x84\x1f" 28088 "\xa9\xde\x12\x44\x5b\x00\xc0\xbc" 28089 "\xc8\x11\x25\x1b\x67\x7a\x15\x72" 28090 "\xa6\x31\x6f\xf4\x68\x7a\x86\x9d" 28091 "\x43\x1c\x5f\x16\xd3\xad\x2e\x52" 28092 "\xf3\xb4\xc3\xfa\x27\x2e\x68\x6c" 28093 "\x06\xe7\x4c\x4f\xa2\xe0\xe4\x21" 28094 "\x5d\x9e\x33\x58\x8d\xbf\xd5\x70" 28095 "\xf8\x80\xa5\xdd\xe7\x18\x79\xfa" 28096 "\x7b\xfd\x09\x69\x2c\x37\x32\xa8" 28097 "\x65\xfa\x8d\x8b\x5c\xcc\xe8\xf3" 28098 "\x37\xf6\xa6\xc6\x5c\xa2\x66\x79" 28099 "\xfa\x8a\xa7\xd1\x0b\x2e\x1b\x5e" 28100 "\x95\x35\x00\x76\xae\x42\xf7\x50" 28101 "\x51\x78\xfb\xb4\x28\x24\xde\x1a" 28102 "\x70\x8b\xed\xca\x3c\x5e\xe4\xbd" 28103 "\x28\xb5\xf3\x76\x4f\x67\x5d\x81" 28104 "\xb2\x60\x87\xd9\x7b\x19\x1a\xa7" 28105 "\x79\xa2\xfa\x3f\x9e\xa9\xd7\x25" 28106 "\x61\xe1\x74\x31\xa2\x77\xa0\x1b" 28107 "\xf6\xf7\xcb\xc5\xaa\x9e\xce\xf9" 28108 "\x9b\x96\xef\x51\xc3\x1a\x44\x96" 28109 "\xae\x17\x50\xab\x29\x08\xda\xcc" 28110 "\x1a\xb3\x12\xd0\x24\xe4\xe2\xe0" 28111 "\xc6\xe3\xcc\x82\xd0\xba\x47\x4c" 28112 "\x3f\x49\xd7\xe8\xb6\x61\xaa\x65" 28113 "\x25\x18\x40\x2d\x62\x25\x02\x71" 28114 "\x61\xa2\xc1\xb2\x13\xd2\x71\x3f" 28115 "\x43\x1a\xc9\x09\x92\xff\xd5\x57" 28116 "\xf0\xfc\x5e\x1c\xf1\xf5\xf9\xf3" 28117 "\x5b", 28118 .len = 1281, 28119 }, { 28120 .key = "\x80\x81\x82\x83\x84\x85\x86\x87" 28121 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 28122 "\x90\x91\x92\x93\x94\x95\x96\x97" 28123 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f", 28124 .klen = 32, 28125 .iv = "\x40\x41\x42\x43\x44\x45\x46\x47" 28126 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 28127 "\x50\x51\x52\x53\x54\x55\x56\x58" 28128 "\x00\x00\x00\x00\x00\x00\x00\x00", 28129 .ptext = "\x54\x68\x65\x20\x64\x68\x6f\x6c" 28130 "\x65\x20\x28\x70\x72\x6f\x6e\x6f" 28131 "\x75\x6e\x63\x65\x64\x20\x22\x64" 28132 "\x6f\x6c\x65\x22\x29\x20\x69\x73" 28133 "\x20\x61\x6c\x73\x6f\x20\x6b\x6e" 28134 "\x6f\x77\x6e\x20\x61\x73\x20\x74" 28135 "\x68\x65\x20\x41\x73\x69\x61\x74" 28136 "\x69\x63\x20\x77\x69\x6c\x64\x20" 28137 "\x64\x6f\x67\x2c\x20\x72\x65\x64" 28138 "\x20\x64\x6f\x67\x2c\x20\x61\x6e" 28139 "\x64\x20\x77\x68\x69\x73\x74\x6c" 28140 "\x69\x6e\x67\x20\x64\x6f\x67\x2e" 28141 "\x20\x49\x74\x20\x69\x73\x20\x61" 28142 "\x62\x6f\x75\x74\x20\x74\x68\x65" 28143 "\x20\x73\x69\x7a\x65\x20\x6f\x66" 28144 "\x20\x61\x20\x47\x65\x72\x6d\x61" 28145 "\x6e\x20\x73\x68\x65\x70\x68\x65" 28146 "\x72\x64\x20\x62\x75\x74\x20\x6c" 28147 "\x6f\x6f\x6b\x73\x20\x6d\x6f\x72" 28148 "\x65\x20\x6c\x69\x6b\x65\x20\x61" 28149 "\x20\x6c\x6f\x6e\x67\x2d\x6c\x65" 28150 "\x67\x67\x65\x64\x20\x66\x6f\x78" 28151 "\x2e\x20\x54\x68\x69\x73\x20\x68" 28152 "\x69\x67\x68\x6c\x79\x20\x65\x6c" 28153 "\x75\x73\x69\x76\x65\x20\x61\x6e" 28154 "\x64\x20\x73\x6b\x69\x6c\x6c\x65" 28155 "\x64\x20\x6a\x75\x6d\x70\x65\x72" 28156 "\x20\x69\x73\x20\x63\x6c\x61\x73" 28157 "\x73\x69\x66\x69\x65\x64\x20\x77" 28158 "\x69\x74\x68\x20\x77\x6f\x6c\x76" 28159 "\x65\x73\x2c\x20\x63\x6f\x79\x6f" 28160 "\x74\x65\x73\x2c\x20\x6a\x61\x63" 28161 "\x6b\x61\x6c\x73\x2c\x20\x61\x6e" 28162 "\x64\x20\x66\x6f\x78\x65\x73\x20" 28163 "\x69\x6e\x20\x74\x68\x65\x20\x74" 28164 "\x61\x78\x6f\x6e\x6f\x6d\x69\x63" 28165 "\x20\x66\x61\x6d\x69\x6c\x79\x20" 28166 "\x43\x61\x6e\x69\x64\x61\x65\x2e", 28167 .ctext = "\x9f\x1a\xab\x8a\x95\xf4\x7e\xcd" 28168 "\xee\x34\xc0\x39\xd6\x23\x43\x94" 28169 "\xf6\x01\xc1\x7f\x60\x91\xa5\x23" 28170 "\x4a\x8a\xe6\xb1\x14\x8b\xd7\x58" 28171 "\xee\x02\xad\xab\xce\x1e\x7d\xdf" 28172 "\xf9\x49\x27\x69\xd0\x8d\x0c\x20" 28173 "\x6e\x17\xc4\xae\x87\x7a\xc6\x61" 28174 "\x91\xe2\x8e\x0a\x1d\x61\xcc\x38" 28175 "\x02\x64\x43\x49\xc6\xb2\x59\x59" 28176 "\x42\xe7\x9d\x83\x00\x60\x90\xd2" 28177 "\xb9\xcd\x97\x6e\xc7\x95\x71\xbc" 28178 "\x23\x31\x58\x07\xb3\xb4\xac\x0b" 28179 "\x87\x64\x56\xe5\xe3\xec\x63\xa1" 28180 "\x71\x8c\x08\x48\x33\x20\x29\x81" 28181 "\xea\x01\x25\x20\xc3\xda\xe6\xee" 28182 "\x6a\x03\xf6\x68\x4d\x26\xa0\x91" 28183 "\x9e\x44\xb8\xc1\xc0\x8f\x5a\x6a" 28184 "\xc0\xcd\xbf\x24\x5e\x40\x66\xd2" 28185 "\x42\x24\xb5\xbf\xc1\xeb\x12\x60" 28186 "\x56\xbe\xb1\xa6\xc4\x0f\xfc\x49" 28187 "\x69\x9f\xcc\x06\x5c\xe3\x26\xd7" 28188 "\x52\xc0\x42\xe8\xb4\x76\xc3\xee" 28189 "\xb2\x97\xe3\x37\x61\x29\x5a\xb5" 28190 "\x8e\xe8\x8c\xc5\x38\xcc\xcb\xec" 28191 "\x64\x1a\xa9\x12\x5f\xf7\x79\xdf" 28192 "\x64\xca\x77\x4e\xbd\xf9\x83\xa0" 28193 "\x13\x27\x3f\x31\x03\x63\x30\x26" 28194 "\x27\x0b\x3e\xb3\x23\x13\x61\x0b" 28195 "\x70\x1d\xd4\xad\x85\x1e\xbf\xdf" 28196 "\xc6\x8e\x4d\x08\xcc\x7e\x77\xbd" 28197 "\x1e\x18\x77\x38\x3a\xfe\xc0\x5d" 28198 "\x16\xfc\xf0\xa9\x2f\xe9\x17\xc7" 28199 "\xd3\x23\x17\x18\xa3\xe6\x54\x77" 28200 "\x6f\x1b\xbe\x8a\x6e\x7e\xca\x97" 28201 "\x08\x05\x36\x76\xaf\x12\x7a\x42" 28202 "\xf7\x7a\xc2\x35\xc3\xb4\x93\x40" 28203 "\x54\x14\x90\xa0\x4d\x65\x1c\x37" 28204 "\x50\x70\x44\x29\x6d\x6e\x62\x68", 28205 .len = 304, 28206 } 28207 }; 28208 28209 /* Adiantum test vectors from https://github.com/google/adiantum */ 28210 static const struct cipher_testvec adiantum_xchacha12_aes_tv_template[] = { 28211 { 28212 .key = "\x9e\xeb\xb2\x49\x3c\x1c\xf5\xf4" 28213 "\x6a\x99\xc2\xc4\xdf\xb1\xf4\xdd" 28214 "\x75\x20\x57\xea\x2c\x4f\xcd\xb2" 28215 "\xa5\x3d\x7b\x49\x1e\xab\xfd\x0f", 28216 .klen = 32, 28217 .iv = "\xdf\x63\xd4\xab\xd2\x49\xf3\xd8" 28218 "\x33\x81\x37\x60\x7d\xfa\x73\x08" 28219 "\xd8\x49\x6d\x80\xe8\x2f\x62\x54" 28220 "\xeb\x0e\xa9\x39\x5b\x45\x7f\x8a", 28221 .ptext = "\x67\xc9\xf2\x30\x84\x41\x8e\x43" 28222 "\xfb\xf3\xb3\x3e\x79\x36\x7f\xe8", 28223 .ctext = "\x6d\x32\x86\x18\x67\x86\x0f\x3f" 28224 "\x96\x7c\x9d\x28\x0d\x53\xec\x9f", 28225 .len = 16, 28226 }, { 28227 .key = "\x36\x2b\x57\x97\xf8\x5d\xcd\x99" 28228 "\x5f\x1a\x5a\x44\x1d\x92\x0f\x27" 28229 "\xcc\x16\xd7\x2b\x85\x63\x99\xd3" 28230 "\xba\x96\xa1\xdb\xd2\x60\x68\xda", 28231 .klen = 32, 28232 .iv = "\xef\x58\x69\xb1\x2c\x5e\x9a\x47" 28233 "\x24\xc1\xb1\x69\xe1\x12\x93\x8f" 28234 "\x43\x3d\x6d\x00\xdb\x5e\xd8\xd9" 28235 "\x12\x9a\xfe\xd9\xff\x2d\xaa\xc4", 28236 .ptext = "\x5e\xa8\x68\x19\x85\x98\x12\x23" 28237 "\x26\x0a\xcc\xdb\x0a\x04\xb9\xdf" 28238 "\x4d\xb3\x48\x7b\xb0\xe3\xc8\x19" 28239 "\x43\x5a\x46\x06\x94\x2d\xf2", 28240 .ctext = "\xc7\xc6\xf1\x73\x8f\xc4\xff\x4a" 28241 "\x39\xbe\x78\xbe\x8d\x28\xc8\x89" 28242 "\x46\x63\xe7\x0c\x7d\x87\xe8\x4e" 28243 "\xc9\x18\x7b\xbe\x18\x60\x50", 28244 .len = 31, 28245 }, { 28246 .key = "\xa5\x28\x24\x34\x1a\x3c\xd8\xf7" 28247 "\x05\x91\x8f\xee\x85\x1f\x35\x7f" 28248 "\x80\x3d\xfc\x9b\x94\xf6\xfc\x9e" 28249 "\x19\x09\x00\xa9\x04\x31\x4f\x11", 28250 .klen = 32, 28251 .iv = "\xa1\xba\x49\x95\xff\x34\x6d\xb8" 28252 "\xcd\x87\x5d\x5e\xfd\xea\x85\xdb" 28253 "\x8a\x7b\x5e\xb2\x5d\x57\xdd\x62" 28254 "\xac\xa9\x8c\x41\x42\x94\x75\xb7", 28255 .ptext = "\x69\xb4\xe8\x8c\x37\xe8\x67\x82" 28256 "\xf1\xec\x5d\x04\xe5\x14\x91\x13" 28257 "\xdf\xf2\x87\x1b\x69\x81\x1d\x71" 28258 "\x70\x9e\x9c\x3b\xde\x49\x70\x11" 28259 "\xa0\xa3\xdb\x0d\x54\x4f\x66\x69" 28260 "\xd7\xdb\x80\xa7\x70\x92\x68\xce" 28261 "\x81\x04\x2c\xc6\xab\xae\xe5\x60" 28262 "\x15\xe9\x6f\xef\xaa\x8f\xa7\xa7" 28263 "\x63\x8f\xf2\xf0\x77\xf1\xa8\xea" 28264 "\xe1\xb7\x1f\x9e\xab\x9e\x4b\x3f" 28265 "\x07\x87\x5b\x6f\xcd\xa8\xaf\xb9" 28266 "\xfa\x70\x0b\x52\xb8\xa8\xa7\x9e" 28267 "\x07\x5f\xa6\x0e\xb3\x9b\x79\x13" 28268 "\x79\xc3\x3e\x8d\x1c\x2c\x68\xc8" 28269 "\x51\x1d\x3c\x7b\x7d\x79\x77\x2a" 28270 "\x56\x65\xc5\x54\x23\x28\xb0\x03", 28271 .ctext = "\x9e\x16\xab\xed\x4b\xa7\x42\x5a" 28272 "\xc6\xfb\x4e\x76\xff\xbe\x03\xa0" 28273 "\x0f\xe3\xad\xba\xe4\x98\x2b\x0e" 28274 "\x21\x48\xa0\xb8\x65\x48\x27\x48" 28275 "\x84\x54\x54\xb2\x9a\x94\x7b\xe6" 28276 "\x4b\x29\xe9\xcf\x05\x91\x80\x1a" 28277 "\x3a\xf3\x41\x96\x85\x1d\x9f\x74" 28278 "\x51\x56\x63\xfa\x7c\x28\x85\x49" 28279 "\xf7\x2f\xf9\xf2\x18\x46\xf5\x33" 28280 "\x80\xa3\x3c\xce\xb2\x57\x93\xf5" 28281 "\xae\xbd\xa9\xf5\x7b\x30\xc4\x93" 28282 "\x66\xe0\x30\x77\x16\xe4\xa0\x31" 28283 "\xba\x70\xbc\x68\x13\xf5\xb0\x9a" 28284 "\xc1\xfc\x7e\xfe\x55\x80\x5c\x48" 28285 "\x74\xa6\xaa\xa3\xac\xdc\xc2\xf5" 28286 "\x8d\xde\x34\x86\x78\x60\x75\x8d", 28287 .len = 128, 28288 }, { 28289 .key = "\xd3\x81\x72\x18\x23\xff\x6f\x4a" 28290 "\x25\x74\x29\x0d\x51\x8a\x0e\x13" 28291 "\xc1\x53\x5d\x30\x8d\xee\x75\x0d" 28292 "\x14\xd6\x69\xc9\x15\xa9\x0c\x60", 28293 .klen = 32, 28294 .iv = "\x65\x9b\xd4\xa8\x7d\x29\x1d\xf4" 28295 "\xc4\xd6\x9b\x6a\x28\xab\x64\xe2" 28296 "\x62\x81\x97\xc5\x81\xaa\xf9\x44" 28297 "\xc1\x72\x59\x82\xaf\x16\xc8\x2c", 28298 .ptext = "\xc7\x6b\x52\x6a\x10\xf0\xcc\x09" 28299 "\xc1\x12\x1d\x6d\x21\xa6\x78\xf5" 28300 "\x05\xa3\x69\x60\x91\x36\x98\x57" 28301 "\xba\x0c\x14\xcc\xf3\x2d\x73\x03" 28302 "\xc6\xb2\x5f\xc8\x16\x27\x37\x5d" 28303 "\xd0\x0b\x87\xb2\x50\x94\x7b\x58" 28304 "\x04\xf4\xe0\x7f\x6e\x57\x8e\xc9" 28305 "\x41\x84\xc1\xb1\x7e\x4b\x91\x12" 28306 "\x3a\x8b\x5d\x50\x82\x7b\xcb\xd9" 28307 "\x9a\xd9\x4e\x18\x06\x23\x9e\xd4" 28308 "\xa5\x20\x98\xef\xb5\xda\xe5\xc0" 28309 "\x8a\x6a\x83\x77\x15\x84\x1e\xae" 28310 "\x78\x94\x9d\xdf\xb7\xd1\xea\x67" 28311 "\xaa\xb0\x14\x15\xfa\x67\x21\x84" 28312 "\xd3\x41\x2a\xce\xba\x4b\x4a\xe8" 28313 "\x95\x62\xa9\x55\xf0\x80\xad\xbd" 28314 "\xab\xaf\xdd\x4f\xa5\x7c\x13\x36" 28315 "\xed\x5e\x4f\x72\xad\x4b\xf1\xd0" 28316 "\x88\x4e\xec\x2c\x88\x10\x5e\xea" 28317 "\x12\xc0\x16\x01\x29\xa3\xa0\x55" 28318 "\xaa\x68\xf3\xe9\x9d\x3b\x0d\x3b" 28319 "\x6d\xec\xf8\xa0\x2d\xf0\x90\x8d" 28320 "\x1c\xe2\x88\xd4\x24\x71\xf9\xb3" 28321 "\xc1\x9f\xc5\xd6\x76\x70\xc5\x2e" 28322 "\x9c\xac\xdb\x90\xbd\x83\x72\xba" 28323 "\x6e\xb5\xa5\x53\x83\xa9\xa5\xbf" 28324 "\x7d\x06\x0e\x3c\x2a\xd2\x04\xb5" 28325 "\x1e\x19\x38\x09\x16\xd2\x82\x1f" 28326 "\x75\x18\x56\xb8\x96\x0b\xa6\xf9" 28327 "\xcf\x62\xd9\x32\x5d\xa9\xd7\x1d" 28328 "\xec\xe4\xdf\x1b\xbe\xf1\x36\xee" 28329 "\xe3\x7b\xb5\x2f\xee\xf8\x53\x3d" 28330 "\x6a\xb7\x70\xa9\xfc\x9c\x57\x25" 28331 "\xf2\x89\x10\xd3\xb8\xa8\x8c\x30" 28332 "\xae\x23\x4f\x0e\x13\x66\x4f\xe1" 28333 "\xb6\xc0\xe4\xf8\xef\x93\xbd\x6e" 28334 "\x15\x85\x6b\xe3\x60\x81\x1d\x68" 28335 "\xd7\x31\x87\x89\x09\xab\xd5\x96" 28336 "\x1d\xf3\x6d\x67\x80\xca\x07\x31" 28337 "\x5d\xa7\xe4\xfb\x3e\xf2\x9b\x33" 28338 "\x52\x18\xc8\x30\xfe\x2d\xca\x1e" 28339 "\x79\x92\x7a\x60\x5c\xb6\x58\x87" 28340 "\xa4\x36\xa2\x67\x92\x8b\xa4\xb7" 28341 "\xf1\x86\xdf\xdc\xc0\x7e\x8f\x63" 28342 "\xd2\xa2\xdc\x78\xeb\x4f\xd8\x96" 28343 "\x47\xca\xb8\x91\xf9\xf7\x94\x21" 28344 "\x5f\x9a\x9f\x5b\xb8\x40\x41\x4b" 28345 "\x66\x69\x6a\x72\xd0\xcb\x70\xb7" 28346 "\x93\xb5\x37\x96\x05\x37\x4f\xe5" 28347 "\x8c\xa7\x5a\x4e\x8b\xb7\x84\xea" 28348 "\xc7\xfc\x19\x6e\x1f\x5a\xa1\xac" 28349 "\x18\x7d\x52\x3b\xb3\x34\x62\x99" 28350 "\xe4\x9e\x31\x04\x3f\xc0\x8d\x84" 28351 "\x17\x7c\x25\x48\x52\x67\x11\x27" 28352 "\x67\xbb\x5a\x85\xca\x56\xb2\x5c" 28353 "\xe6\xec\xd5\x96\x3d\x15\xfc\xfb" 28354 "\x22\x25\xf4\x13\xe5\x93\x4b\x9a" 28355 "\x77\xf1\x52\x18\xfa\x16\x5e\x49" 28356 "\x03\x45\xa8\x08\xfa\xb3\x41\x92" 28357 "\x79\x50\x33\xca\xd0\xd7\x42\x55" 28358 "\xc3\x9a\x0c\x4e\xd9\xa4\x3c\x86" 28359 "\x80\x9f\x53\xd1\xa4\x2e\xd1\xbc" 28360 "\xf1\x54\x6e\x93\xa4\x65\x99\x8e" 28361 "\xdf\x29\xc0\x64\x63\x07\xbb\xea", 28362 .ctext = "\x15\x97\xd0\x86\x18\x03\x9c\x51" 28363 "\xc5\x11\x36\x62\x13\x92\xe6\x73" 28364 "\x29\x79\xde\xa1\x00\x3e\x08\x64" 28365 "\x17\x1a\xbc\xd5\xfe\x33\x0e\x0c" 28366 "\x7c\x94\xa7\xc6\x3c\xbe\xac\xa2" 28367 "\x89\xe6\xbc\xdf\x0c\x33\x27\x42" 28368 "\x46\x73\x2f\xba\x4e\xa6\x46\x8f" 28369 "\xe4\xee\x39\x63\x42\x65\xa3\x88" 28370 "\x7a\xad\x33\x23\xa9\xa7\x20\x7f" 28371 "\x0b\xe6\x6a\xc3\x60\xda\x9e\xb4" 28372 "\xd6\x07\x8a\x77\x26\xd1\xab\x44" 28373 "\x99\x55\x03\x5e\xed\x8d\x7b\xbd" 28374 "\xc8\x21\xb7\x21\x30\x3f\xc0\xb5" 28375 "\xc8\xec\x6c\x23\xa6\xa3\x6d\xf1" 28376 "\x30\x0a\xd0\xa6\xa9\x28\x69\xae" 28377 "\x2a\xe6\x54\xac\x82\x9d\x6a\x95" 28378 "\x6f\x06\x44\xc5\x5a\x77\x6e\xec" 28379 "\xf8\xf8\x63\xb2\xe6\xaa\xbd\x8e" 28380 "\x0e\x8a\x62\x00\x03\xc8\x84\xdd" 28381 "\x47\x4a\xc3\x55\xba\xb7\xe7\xdf" 28382 "\x08\xbf\x62\xf5\xe8\xbc\xb6\x11" 28383 "\xe4\xcb\xd0\x66\x74\x32\xcf\xd4" 28384 "\xf8\x51\x80\x39\x14\x05\x12\xdb" 28385 "\x87\x93\xe2\x26\x30\x9c\x3a\x21" 28386 "\xe5\xd0\x38\x57\x80\x15\xe4\x08" 28387 "\x58\x05\x49\x7d\xe6\x92\x77\x70" 28388 "\xfb\x1e\x2d\x6a\x84\x00\xc8\x68" 28389 "\xf7\x1a\xdd\xf0\x7b\x38\x1e\xd8" 28390 "\x2c\x78\x78\x61\xcf\xe3\xde\x69" 28391 "\x1f\xd5\x03\xd5\x1a\xb4\xcf\x03" 28392 "\xc8\x7a\x70\x68\x35\xb4\xf6\xbe" 28393 "\x90\x62\xb2\x28\x99\x86\xf5\x44" 28394 "\x99\xeb\x31\xcf\xca\xdf\xd0\x21" 28395 "\xd6\x60\xf7\x0f\x40\xb4\x80\xb7" 28396 "\xab\xe1\x9b\x45\xba\x66\xda\xee" 28397 "\xdd\x04\x12\x40\x98\xe1\x69\xe5" 28398 "\x2b\x9c\x59\x80\xe7\x7b\xcc\x63" 28399 "\xa6\xc0\x3a\xa9\xfe\x8a\xf9\x62" 28400 "\x11\x34\x61\x94\x35\xfe\xf2\x99" 28401 "\xfd\xee\x19\xea\x95\xb6\x12\xbf" 28402 "\x1b\xdf\x02\x1a\xcc\x3e\x7e\x65" 28403 "\x78\x74\x10\x50\x29\x63\x28\xea" 28404 "\x6b\xab\xd4\x06\x4d\x15\x24\x31" 28405 "\xc7\x0a\xc9\x16\xb6\x48\xf0\xbf" 28406 "\x49\xdb\x68\x71\x31\x8f\x87\xe2" 28407 "\x13\x05\x64\xd6\x22\x0c\xf8\x36" 28408 "\x84\x24\x3e\x69\x5e\xb8\x9e\x16" 28409 "\x73\x6c\x83\x1e\xe0\x9f\x9e\xba" 28410 "\xe5\x59\x21\x33\x1b\xa9\x26\xc2" 28411 "\xc7\xd9\x30\x73\xb6\xa6\x73\x82" 28412 "\x19\xfa\x44\x4d\x40\x8b\x69\x04" 28413 "\x94\x74\xea\x6e\xb3\x09\x47\x01" 28414 "\x2a\xb9\x78\x34\x43\x11\xed\xd6" 28415 "\x8c\x95\x65\x1b\x85\x67\xa5\x40" 28416 "\xac\x9c\x05\x4b\x57\x4a\xa9\x96" 28417 "\x0f\xdd\x4f\xa1\xe0\xcf\x6e\xc7" 28418 "\x1b\xed\xa2\xb4\x56\x8c\x09\x6e" 28419 "\xa6\x65\xd7\x55\x81\xb7\xed\x11" 28420 "\x9b\x40\x75\xa8\x6b\x56\xaf\x16" 28421 "\x8b\x3d\xf4\xcb\xfe\xd5\x1d\x3d" 28422 "\x85\xc2\xc0\xde\x43\x39\x4a\x96" 28423 "\xba\x88\x97\xc0\xd6\x00\x0e\x27" 28424 "\x21\xb0\x21\x52\xba\xa7\x37\xaa" 28425 "\xcc\xbf\x95\xa8\xf4\xd0\x91\xf6", 28426 .len = 512, 28427 }, { 28428 .key = "\xeb\xe5\x11\x3a\x72\xeb\x10\xbe" 28429 "\x70\xcf\xe3\xea\xc2\x74\xa4\x48" 28430 "\x29\x0f\x8f\x3f\xcf\x4c\x28\x2a" 28431 "\x4e\x1e\x3c\xc3\x27\x9f\x16\x13", 28432 .klen = 32, 28433 .iv = "\x84\x3e\xa2\x7c\x06\x72\xb2\xad" 28434 "\x88\x76\x65\xb4\x1a\x29\x27\x12" 28435 "\x45\xb6\x8d\x0e\x4b\x87\x04\xfc" 28436 "\xb5\xcd\x1c\x4d\xe8\x06\xf1\xcb", 28437 .ptext = "\x8e\xb6\x07\x9b\x7c\xe4\xa4\xa2" 28438 "\x41\x6c\x24\x1d\xc0\x77\x4e\xd9" 28439 "\x4a\xa4\x2c\xb6\xe4\x55\x02\x7f" 28440 "\xc4\xec\xab\xc2\x5c\x63\x40\x92" 28441 "\x38\x24\x62\xdb\x65\x82\x10\x7f" 28442 "\x21\xa5\x39\x3a\x3f\x38\x7e\xad" 28443 "\x6c\x7b\xc9\x3f\x89\x8f\xa8\x08" 28444 "\xbd\x31\x57\x3c\x7a\x45\x67\x30" 28445 "\xa9\x27\x58\x34\xbe\xe3\xa4\xc3" 28446 "\xff\xc2\x9f\x43\xf0\x04\xba\x1e" 28447 "\xb6\xf3\xc4\xce\x09\x7a\x2e\x42" 28448 "\x7d\xad\x97\xc9\x77\x9a\x3a\x78" 28449 "\x6c\xaf\x7c\x2a\x46\xb4\x41\x86" 28450 "\x1a\x20\xf2\x5b\x1a\x60\xc9\xc4" 28451 "\x47\x5d\x10\xa4\xd2\x15\x6a\x19" 28452 "\x4f\xd5\x51\x37\xd5\x06\x70\x1a" 28453 "\x3e\x78\xf0\x2e\xaa\xb5\x2a\xbd" 28454 "\x83\x09\x7c\xcb\x29\xac\xd7\x9c" 28455 "\xbf\x80\xfd\x9d\xd4\xcf\x64\xca" 28456 "\xf8\xc9\xf1\x77\x2e\xbb\x39\x26" 28457 "\xac\xd9\xbe\xce\x24\x7f\xbb\xa2" 28458 "\x82\xba\xeb\x5f\x65\xc5\xf1\x56" 28459 "\x8a\x52\x02\x4d\x45\x23\x6d\xeb" 28460 "\xb0\x60\x7b\xd8\x6e\xb2\x98\xd2" 28461 "\xaf\x76\xf2\x33\x9b\xf3\xbb\x95" 28462 "\xc0\x50\xaa\xc7\x47\xf6\xb3\xf3" 28463 "\x77\x16\xcb\x14\x95\xbf\x1d\x32" 28464 "\x45\x0c\x75\x52\x2c\xe8\xd7\x31" 28465 "\xc0\x87\xb0\x97\x30\x30\xc5\x5e" 28466 "\x50\x70\x6e\xb0\x4b\x4e\x38\x19" 28467 "\x46\xca\x38\x6a\xca\x7d\xfe\x05" 28468 "\xc8\x80\x7c\x14\x6c\x24\xb5\x42" 28469 "\x28\x04\x4c\xff\x98\x20\x08\x10" 28470 "\x90\x31\x03\x78\xd8\xa1\xe6\xf9" 28471 "\x52\xc2\xfc\x3e\xa7\x68\xce\xeb" 28472 "\x59\x5d\xeb\xd8\x64\x4e\xf8\x8b" 28473 "\x24\x62\xcf\x17\x36\x84\xc0\x72" 28474 "\x60\x4f\x3e\x47\xda\x72\x3b\x0e" 28475 "\xce\x0b\xa9\x9c\x51\xdc\xa5\xb9" 28476 "\x71\x73\x08\x4e\x22\x31\xfd\x88" 28477 "\x29\xfc\x8d\x17\x3a\x7a\xe5\xb9" 28478 "\x0b\x9c\x6d\xdb\xce\xdb\xde\x81" 28479 "\x73\x5a\x16\x9d\x3c\x72\x88\x51" 28480 "\x10\x16\xf3\x11\x6e\x32\x5f\x4c" 28481 "\x87\xce\x88\x2c\xd2\xaf\xf5\xb7" 28482 "\xd8\x22\xed\xc9\xae\x68\x7f\xc5" 28483 "\x30\x62\xbe\xc9\xe0\x27\xa1\xb5" 28484 "\x57\x74\x36\x60\xb8\x6b\x8c\xec" 28485 "\x14\xad\xed\x69\xc9\xd8\xa5\x5b" 28486 "\x38\x07\x5b\xf3\x3e\x74\x48\x90" 28487 "\x61\x17\x23\xdd\x44\xbc\x9d\x12" 28488 "\x0a\x3a\x63\xb2\xab\x86\xb8\x67" 28489 "\x85\xd6\xb2\x5d\xde\x4a\xc1\x73" 28490 "\x2a\x7c\x53\x8e\xd6\x7d\x0e\xe4" 28491 "\x3b\xab\xc5\x3d\x32\x79\x18\xb7" 28492 "\xd6\x50\x4d\xf0\x8a\x37\xbb\xd3" 28493 "\x8d\xd8\x08\xd7\x7d\xaa\x24\x52" 28494 "\xf7\x90\xe3\xaa\xd6\x49\x7a\x47" 28495 "\xec\x37\xad\x74\x8b\xc1\xb7\xfe" 28496 "\x4f\x70\x14\x62\x22\x8c\x63\xc2" 28497 "\x1c\x4e\x38\xc3\x63\xb7\xbf\x53" 28498 "\xbd\x1f\xac\xa6\x94\xc5\x81\xfa" 28499 "\xe0\xeb\x81\xe9\xd9\x1d\x32\x3c" 28500 "\x85\x12\xca\x61\x65\xd1\x66\xd8" 28501 "\xe2\x0e\xc3\xa3\xff\x0d\xd3\xee" 28502 "\xdf\xcc\x3e\x01\xf5\x9b\x45\x5c" 28503 "\x33\xb5\xb0\x8d\x36\x1a\xdf\xf8" 28504 "\xa3\x81\xbe\xdb\x3d\x4b\xf6\xc6" 28505 "\xdf\x7f\xb0\x89\xbd\x39\x32\x50" 28506 "\xbb\xb2\xe3\x5c\xbb\x4b\x18\x98" 28507 "\x08\x66\x51\xe7\x4d\xfb\xfc\x4e" 28508 "\x22\x42\x6f\x61\xdb\x7f\x27\x88" 28509 "\x29\x3f\x02\xa9\xc6\x83\x30\xcc" 28510 "\x8b\xd5\x64\x7b\x7c\x76\x16\xbe" 28511 "\xb6\x8b\x26\xb8\x83\x16\xf2\x6b" 28512 "\xd1\xdc\x20\x6b\x42\x5a\xef\x7a" 28513 "\xa9\x60\xb8\x1a\xd3\x0d\x4e\xcb" 28514 "\x75\x6b\xc5\x80\x43\x38\x7f\xad" 28515 "\x9c\x56\xd9\xc4\xf1\x01\x74\xf0" 28516 "\x16\x53\x8d\x69\xbe\xf2\x5d\x92" 28517 "\x34\x38\xc8\x84\xf9\x1a\xfc\x26" 28518 "\x16\xcb\xae\x7d\x38\x21\x67\x74" 28519 "\x4c\x40\xaa\x6b\x97\xe0\xb0\x2f" 28520 "\xf5\x3e\xf6\xe2\x24\xc8\x22\xa4" 28521 "\xa8\x88\x27\x86\x44\x75\x5b\x29" 28522 "\x34\x08\x4b\xa1\xfe\x0c\x26\xe5" 28523 "\xac\x26\xf6\x21\x0c\xfb\xde\x14" 28524 "\xfe\xd7\xbe\xee\x48\x93\xd6\x99" 28525 "\x56\x9c\xcf\x22\xad\xa2\x53\x41" 28526 "\xfd\x58\xa1\x68\xdc\xc4\xef\x20" 28527 "\xa1\xee\xcf\x2b\x43\xb6\x57\xd8" 28528 "\xfe\x01\x80\x25\xdf\xd2\x35\x44" 28529 "\x0d\x15\x15\xc3\xfc\x49\xbf\xd0" 28530 "\xbf\x2f\x95\x81\x09\xa6\xb6\xd7" 28531 "\x21\x03\xfe\x52\xb7\xa8\x32\x4d" 28532 "\x75\x1e\x46\x44\xbc\x2b\x61\x04" 28533 "\x1b\x1c\xeb\x39\x86\x8f\xe9\x49" 28534 "\xce\x78\xa5\x5e\x67\xc5\xe9\xef" 28535 "\x43\xf8\xf1\x35\x22\x43\x61\xc1" 28536 "\x27\xb5\x09\xb2\xb8\xe1\x5e\x26" 28537 "\xcc\xf3\x6f\xb2\xb7\x55\x30\x98" 28538 "\x87\xfc\xe7\xa8\xc8\x94\x86\xa1" 28539 "\xd9\xa0\x3c\x74\x16\xb3\x25\x98" 28540 "\xba\xc6\x84\x4a\x27\xa6\x58\xfe" 28541 "\xe1\x68\x04\x30\xc8\xdb\x44\x52" 28542 "\x4e\xb2\xa4\x6f\xf7\x63\xf2\xd6" 28543 "\x63\x36\x17\x04\xf8\x06\xdb\xeb" 28544 "\x99\x17\xa5\x1b\x61\x90\xa3\x9f" 28545 "\x05\xae\x3e\xe4\xdb\xc8\x1c\x8e" 28546 "\x77\x27\x88\xdf\xd3\x22\x5a\xc5" 28547 "\x9c\xd6\x22\xf8\xc4\xd8\x92\x9d" 28548 "\x16\xcc\x54\x25\x3b\x6f\xdb\xc0" 28549 "\x78\xd8\xe3\xb3\x03\x69\xd7\x5d" 28550 "\xf8\x08\x04\x63\x61\x9d\x76\xf9" 28551 "\xad\x1d\xc4\x30\x9f\x75\x89\x6b" 28552 "\xfb\x62\xba\xae\xcb\x1b\x6c\xe5" 28553 "\x7e\xea\x58\x6b\xae\xce\x9b\x48" 28554 "\x4b\x80\xd4\x5e\x71\x53\xa7\x24" 28555 "\x73\xca\xf5\x3e\xbb\x5e\xd3\x1c" 28556 "\x33\xe3\xec\x5b\xa0\x32\x9d\x25" 28557 "\x0e\x0c\x28\x29\x39\x51\xc5\x70" 28558 "\xec\x60\x8f\x77\xfc\x06\x7a\x33" 28559 "\x19\xd5\x7a\x6e\x94\xea\xa3\xeb" 28560 "\x13\xa4\x2e\x09\xd8\x81\x65\x83" 28561 "\x03\x63\x8b\xb5\xc9\x89\x98\x73" 28562 "\x69\x53\x8e\xab\xf1\xd2\x2f\x67" 28563 "\xbd\xa6\x16\x6e\xd0\x8b\xc1\x25" 28564 "\x93\xd2\x50\x7c\x1f\xe1\x11\xd0" 28565 "\x58\x0d\x2f\x72\xe7\x5e\xdb\xa2" 28566 "\x55\x9a\xe0\x09\x21\xac\x61\x85" 28567 "\x4b\x20\x95\x73\x63\x26\xe3\x83" 28568 "\x4b\x5b\x40\x03\x14\xb0\x44\x16" 28569 "\xbd\xe0\x0e\xb7\x66\x56\xd7\x30" 28570 "\xb3\xfd\x8a\xd3\xda\x6a\xa7\x3d" 28571 "\x98\x09\x11\xb7\x00\x06\x24\x5a" 28572 "\xf7\x42\x94\xa6\x0e\xb1\x6d\x48" 28573 "\x74\xb1\xa7\xe6\x92\x0a\x15\x9a" 28574 "\xf5\xfa\x55\x1a\x6c\xdd\x71\x08" 28575 "\xd0\xf7\x8d\x0e\x7c\x67\x4d\xc6" 28576 "\xe6\xde\x78\x88\x88\x3c\x5e\x23" 28577 "\x46\xd2\x25\xa4\xfb\xa3\x26\x3f" 28578 "\x2b\xfd\x9c\x20\xda\x72\xe1\x81" 28579 "\x8f\xe6\xae\x08\x1d\x67\x15\xde" 28580 "\x86\x69\x1d\xc6\x1e\x6d\xb7\x5c" 28581 "\xdd\x43\x72\x5a\x7d\xa7\xd8\xd7" 28582 "\x1e\x66\xc5\x90\xf6\x51\x76\x91" 28583 "\xb3\xe3\x39\x81\x75\x08\xfa\xc5" 28584 "\x06\x70\x69\x1b\x2c\x20\x74\xe0" 28585 "\x53\xb0\x0c\x9d\xda\xa9\x5b\xdd" 28586 "\x1c\x38\x6c\x9e\x3b\xc4\x7a\x82" 28587 "\x93\x9e\xbb\x75\xfb\x19\x4a\x55" 28588 "\x65\x7a\x3c\xda\xcb\x66\x5c\x13" 28589 "\x17\x97\xe8\xbd\xae\x24\xd9\x76" 28590 "\xfb\x8c\x73\xde\xbd\xb4\x1b\xe0" 28591 "\xb9\x2c\xe8\xe0\x1d\x3f\xa8\x2c" 28592 "\x1e\x81\x5b\x77\xe7\xdf\x6d\x06" 28593 "\x7c\x9a\xf0\x2b\x5d\xfc\x86\xd5" 28594 "\xb1\xad\xbc\xa8\x73\x48\x61\x67" 28595 "\xd6\xba\xc8\xe8\xe2\xb8\xee\x40" 28596 "\x36\x22\x3e\x61\xf6\xc8\x16\xe4" 28597 "\x0e\x88\xad\x71\x53\x58\xe1\x6c" 28598 "\x8f\x4f\x89\x4b\x3e\x9c\x7f\xe9" 28599 "\xad\xc2\x28\xc2\x3a\x29\xf3\xec" 28600 "\xa9\x28\x39\xba\xc2\x86\xe1\x06" 28601 "\xf3\x8b\xe3\x95\x0c\x87\xb8\x1b" 28602 "\x72\x35\x8e\x8f\x6d\x18\xc8\x1c" 28603 "\xa5\x5d\x57\x9d\x73\x8a\xbb\x9e" 28604 "\x21\x05\x12\xd7\xe0\x21\x1c\x16" 28605 "\x3a\x95\x85\xbc\xb0\x71\x0b\x36" 28606 "\x6c\x44\x8d\xef\x3b\xec\x3f\x8e" 28607 "\x24\xa9\xe3\xa7\x63\x23\xca\x09" 28608 "\x62\x96\x79\x0c\x81\x05\x41\xf2" 28609 "\x07\x20\x26\xe5\x8e\x10\x54\x03" 28610 "\x05\x7b\xfe\x0c\xcc\x8c\x50\xe5" 28611 "\xca\x33\x4d\x48\x7a\x03\xd5\x64" 28612 "\x49\x09\xf2\x5c\x5d\xfe\x2b\x30" 28613 "\xbf\x29\x14\x29\x8b\x9b\x7c\x96" 28614 "\x47\x07\x86\x4d\x4e\x4d\xf1\x47" 28615 "\xd1\x10\x2a\xa8\xd3\x15\x8c\xf2" 28616 "\x2f\xf4\x3a\xdf\xd0\xa7\xcb\x5a" 28617 "\xad\x99\x39\x4a\xdf\x60\xbe\xf9" 28618 "\x91\x4e\xf5\x94\xef\xc5\x56\x32" 28619 "\x33\x86\x78\xa3\xd6\x4c\x29\x7c" 28620 "\xe8\xac\x06\xb5\xf5\x01\x5c\x9f" 28621 "\x02\xc8\xe8\xbf\x5c\x1a\x7f\x4d" 28622 "\x28\xa5\xb9\xda\xa9\x5e\xe7\x4b" 28623 "\xf4\x3d\xe9\x1d\x28\xaa\x1a\x8a" 28624 "\x76\xc8\x6c\x19\x61\x3c\x9e\x29" 28625 "\xcd\xbe\xff\xe0\x1c\xb8\x67\xb5" 28626 "\xa4\x46\xf8\xb9\x8a\xa2\xf6\x7c" 28627 "\xef\x23\x73\x0c\xe9\x72\x0a\x0d" 28628 "\x9b\x40\xd8\xfb\x0c\x9c\xab\xa8", 28629 .ctext = "\xcb\x78\x87\x9c\xc7\x13\xc1\x30" 28630 "\xdd\x2c\x7d\xb2\x97\xab\x06\x69" 28631 "\x47\x87\x8a\x12\x2b\x5d\x86\xd7" 28632 "\x2e\xe6\x7a\x0d\x58\x5d\xe7\x01" 28633 "\x78\x0e\xff\xc7\xc5\xd2\x94\xd6" 28634 "\xdd\x6b\x38\x1f\xa4\xe3\x3d\xe7" 28635 "\xc5\x8a\xb5\xbe\x65\x11\x2b\xe1" 28636 "\x2b\x8e\x84\xe8\xe0\x00\x7f\xdd" 28637 "\x15\x15\xab\xbd\x22\x94\xf7\xce" 28638 "\x99\x6f\xfd\x0e\x9b\x16\xeb\xeb" 28639 "\x24\xc7\xbb\xc6\xe1\x6c\x57\xba" 28640 "\x84\xab\x16\xf2\x57\xd6\x42\x9d" 28641 "\x56\x92\x5b\x44\x18\xd4\xa2\x1b" 28642 "\x1e\xa9\xdc\x7a\x16\x88\xc4\x4f" 28643 "\x6d\x77\x9a\x2e\x82\xa9\xc3\xee" 28644 "\xa4\xca\x05\x1b\x0e\xdc\x48\x96" 28645 "\xd0\x50\x21\x1f\x46\xc7\xc7\x70" 28646 "\x53\xcd\x1e\x4e\x5f\x2d\x4b\xb2" 28647 "\x86\xe5\x3a\xe6\x1d\xec\x7b\x9d" 28648 "\x8f\xd6\x41\xc6\xbb\x00\x4f\xe6" 28649 "\x02\x47\x07\x73\x50\x6b\xcf\xb2" 28650 "\x9e\x1c\x01\xc9\x09\xcc\xc3\x52" 28651 "\x27\xe6\x63\xe0\x5b\x55\x60\x4d" 28652 "\x72\xd0\xda\x4b\xec\xcb\x72\x5d" 28653 "\x37\x4a\xf5\xb8\xd9\xe2\x08\x10" 28654 "\xf3\xb9\xdc\x07\xc0\x02\x10\x14" 28655 "\x9f\xe6\x8f\xc4\xc4\xe1\x39\x7b" 28656 "\x47\xea\xae\x7c\xdd\x27\xa8\x4c" 28657 "\x6b\x0f\x4c\xf8\xff\x16\x4e\xcb" 28658 "\xec\x88\x33\x0d\x15\x10\x82\x66" 28659 "\xa7\x3d\x2c\xb6\xbc\x2e\xe4\xce" 28660 "\x4c\x2f\x4b\x46\x0f\x67\x78\xa5" 28661 "\xff\x6a\x7d\x0d\x5e\x6d\xab\xfb" 28662 "\x59\x99\xd8\x1f\x30\xd4\x33\xe8" 28663 "\x7d\x11\xae\xe3\xba\xd0\x3f\xa7" 28664 "\xa5\x5e\x43\xda\xf3\x0f\x3a\x5f" 28665 "\xba\xb0\x47\xb2\x08\x60\xf4\xed" 28666 "\x35\x23\x0c\xe9\x4f\x81\xc4\xc5" 28667 "\xa8\x35\xdc\x99\x52\x33\x19\xd4" 28668 "\x00\x01\x8d\x5a\x10\x82\x39\x78" 28669 "\xfc\x72\x24\x63\x4a\x38\xc5\x6f" 28670 "\xfe\xec\x2f\x26\x0c\x3c\x1c\xf6" 28671 "\x4d\x99\x7a\x77\x59\xfe\x10\xa5" 28672 "\xa1\x35\xbf\x2f\x15\xfa\x4e\x52" 28673 "\xe6\xd5\x1c\x88\x90\x75\xd5\xcc" 28674 "\xdb\x2a\xb1\xf0\x70\x54\x89\xc7" 28675 "\xeb\x1d\x6e\x61\x45\xa3\x50\x48" 28676 "\xcd\xdb\x32\xba\x7f\x6b\xaf\xef" 28677 "\x50\xcb\x0d\x36\xf7\x29\x3a\x10" 28678 "\x02\x73\xca\x8f\x3f\x5d\x82\x17" 28679 "\x91\x9a\xd8\x15\x15\xe3\xe1\x41" 28680 "\x43\xef\x85\xa6\xb0\xc7\x3b\x0f" 28681 "\xf0\xa5\xaa\x66\x77\x70\x5e\x70" 28682 "\xce\x17\x84\x68\x45\x39\x2c\x25" 28683 "\xc6\xc1\x5f\x7e\xe8\xfa\xe4\x3a" 28684 "\x47\x51\x7b\x9d\x54\x84\x98\x04" 28685 "\x5f\xf7\x5f\x3c\x34\xe7\xa3\x1d" 28686 "\xea\xb7\x6d\x05\xab\x28\xe4\x2c" 28687 "\xb1\x7f\x08\xa8\x5d\x07\xbf\xfe" 28688 "\x39\x72\x44\x87\x51\xc5\x73\xe4" 28689 "\x9a\x5f\xdd\x46\xbc\x4e\xb1\x39" 28690 "\xe4\x78\xb8\xbf\xdc\x5b\x88\x9b" 28691 "\xc1\x3f\xd9\xd0\xb3\x5a\xdf\xaa" 28692 "\x53\x6a\x91\x6d\x2a\x09\xf0\x0b" 28693 "\x5e\xe8\xb2\xa0\xb4\x73\x07\x1d" 28694 "\xc8\x33\x84\xe6\xda\xe6\xad\xd6" 28695 "\xad\x91\x01\x4e\x14\x42\x34\x2c" 28696 "\xe5\xf9\x99\x21\x56\x1f\x6c\x2b" 28697 "\x4c\xe3\xd5\x9e\x04\xdc\x9a\x16" 28698 "\xd1\x54\xe9\xc2\xf7\xc0\xd5\x06" 28699 "\x2f\xa1\x38\x2a\x55\x88\x23\xf8" 28700 "\xb0\xdb\x87\x32\xc9\x4e\xb0\x0c" 28701 "\xc5\x05\x78\x58\xa1\x2e\x75\x75" 28702 "\x68\xdc\xea\xdd\x0c\x33\x16\x5e" 28703 "\xe7\xdc\xfd\x42\x74\xbe\xae\x60" 28704 "\x3c\x37\x4b\x27\xf5\x2c\x5f\x55" 28705 "\x4a\x0b\x64\xfd\xa2\x01\x65\x9c" 28706 "\x27\x9f\x5e\x87\xd5\x95\x88\x66" 28707 "\x09\x84\x42\xab\x00\xe2\x58\xc3" 28708 "\x97\x45\xf1\x93\xe2\x34\x37\x3d" 28709 "\xfe\x93\x8c\x17\xb9\x79\x65\x06" 28710 "\xf7\x58\xe5\x1b\x3b\x4e\xda\x36" 28711 "\x17\xe3\x56\xec\x26\x0f\x2e\xfa" 28712 "\xd1\xb9\x2b\x3e\x7f\x1d\xe3\x4b" 28713 "\x67\xdf\x43\x53\x10\xba\xa3\xfb" 28714 "\x5d\x5a\xd8\xc4\xab\x19\x7e\x12" 28715 "\xaa\x83\xf1\xc0\xa1\xe0\xbf\x72" 28716 "\x5f\xe8\x68\x39\xef\x1a\xbe\xee" 28717 "\x6f\x47\x79\x19\xed\xf2\xa1\x4a" 28718 "\xe5\xfc\xb5\x58\xae\x63\x82\xcb" 28719 "\x16\x0b\x94\xbb\x3e\x02\x49\xc4" 28720 "\x3c\x33\xf1\xec\x1b\x11\x71\x9b" 28721 "\x5b\x80\xf1\x6f\x88\x1c\x05\x36" 28722 "\xa8\xd8\xee\x44\xb5\x18\xc3\x14" 28723 "\x62\xba\x98\xb9\xc0\x2a\x70\x93" 28724 "\xb3\xd8\x11\x69\x95\x1d\x43\x7b" 28725 "\x39\xc1\x91\x05\xc4\xe3\x1e\xc2" 28726 "\x1e\x5d\xe7\xde\xbe\xfd\xae\x99" 28727 "\x4b\x8f\x83\x1e\xf4\x9b\xb0\x2b" 28728 "\x66\x6e\x62\x24\x8d\xe0\x1b\x22" 28729 "\x59\xeb\xbd\x2a\x6b\x2e\x37\x17" 28730 "\x9e\x1f\x66\xcb\x66\xb4\xfb\x2c" 28731 "\x36\x22\x5d\x73\x56\xc1\xb0\x27" 28732 "\xe0\xf0\x1b\xe4\x47\x8b\xc6\xdc" 28733 "\x7c\x0c\x3d\x29\xcb\x33\x10\xfe" 28734 "\xc3\xc3\x1e\xff\x4c\x9b\x27\x86" 28735 "\xe2\xb0\xaf\xb7\x89\xce\x61\x69" 28736 "\xe7\x00\x3e\x92\xea\x5f\x9e\xc1" 28737 "\xfa\x6b\x20\xe2\x41\x23\x82\xeb" 28738 "\x07\x76\x4c\x4c\x2a\x96\x33\xbe" 28739 "\x89\xa9\xa8\xb9\x9a\x7d\x27\x18" 28740 "\x48\x23\x70\x46\xf3\x87\xa7\x91" 28741 "\x58\xb8\x74\xba\xed\xc6\xb2\xa1" 28742 "\x4d\xb6\x43\x9a\xe1\xa2\x41\xa5" 28743 "\x35\xd3\x90\x8a\xc7\x4d\xb7\x88" 28744 "\x0b\xe3\x74\x9f\x84\xfc\xd9\x73" 28745 "\xf2\x86\x0c\xad\xeb\x5d\x70\xac" 28746 "\x65\x07\x14\x8e\x57\xf6\xdc\xb4" 28747 "\xc2\x02\x7c\xd6\x89\xe2\x8a\x3e" 28748 "\x8e\x08\x3c\x12\x37\xaf\xe1\xa8" 28749 "\x04\x11\x5c\xae\x5a\x2b\x60\xa0" 28750 "\x03\x3c\x7a\xa2\x38\x92\xbe\xce" 28751 "\x09\xa2\x5e\x0f\xc2\xb2\xb5\x06" 28752 "\xc2\x97\x97\x9b\x09\x2f\x04\xfe" 28753 "\x2c\xe7\xa3\xc4\x42\xe9\xa3\x40" 28754 "\xa5\x52\x07\x2c\x3b\x89\x1a\xa5" 28755 "\x28\xb1\x93\x05\x98\x0c\x2f\x3d" 28756 "\xc6\xf5\x83\xac\x24\x1d\x28\x9f" 28757 "\x32\x66\x4d\x70\xb7\xe0\xab\xb8" 28758 "\x75\xc5\xf3\xd2\x7b\x26\x3e\xec" 28759 "\x64\xe6\xf7\x70\xe7\xf8\x10\x8e" 28760 "\x67\xd2\xb3\x87\x69\x40\x06\x9a" 28761 "\x2f\x6a\x1a\xfd\x62\x0c\xee\x31" 28762 "\x2e\xbe\x58\x97\x77\xd1\x09\x08" 28763 "\x1f\x8d\x42\x29\x34\xd5\xd8\xb5" 28764 "\x1f\xd7\x21\x18\xe3\xe7\x2e\x4a" 28765 "\x42\xfc\xdb\x19\xe9\xee\xb9\x22" 28766 "\xad\x5c\x07\xe9\xc8\x07\xe5\xe9" 28767 "\x95\xa2\x0d\x30\x46\xe2\x65\x51" 28768 "\x01\xa5\x74\x85\xe2\x52\x6e\x07" 28769 "\xc9\xf5\x33\x09\xde\x78\x62\xa9" 28770 "\x30\x2a\xd3\x86\xe5\x46\x2e\x60" 28771 "\xff\x74\xb0\x5f\xec\x76\xb7\xd1" 28772 "\x5e\x4d\x61\x97\x3c\x9c\x99\xc3" 28773 "\x41\x65\x21\x47\xf9\xb1\x06\xec" 28774 "\x18\xf8\x3f\xc7\x38\xfa\x7b\x14" 28775 "\x62\x79\x6a\x0b\x0c\xf5\x2c\xb7" 28776 "\xab\xcf\x63\x49\x6d\x1f\x46\xa8" 28777 "\xbc\x7d\x42\x53\x75\x6b\xca\x38" 28778 "\xac\x8b\xe7\xa1\xa1\x92\x19\x6b" 28779 "\x0d\x75\x80\x5b\x7d\x35\x86\x70" 28780 "\x12\x6b\xe5\x3e\xe5\x85\xa0\xa4" 28781 "\xd6\x77\x5e\x4d\x24\x57\x84\xa9" 28782 "\xe5\xa4\xbf\x25\xfb\x36\x65\x3b" 28783 "\x81\x39\x61\xec\x5e\x4a\x7e\x10" 28784 "\x58\x19\x13\x5c\x0f\x79\xec\xcf" 28785 "\xbb\x5f\x69\x21\xc3\xa7\x5a\xff" 28786 "\x3b\xc7\x85\x9b\x47\xbc\x3e\xad" 28787 "\xbf\x54\x60\xb6\x5b\x3f\xfc\x50" 28788 "\x68\x83\x76\x24\xb0\xc3\x3f\x93" 28789 "\x0d\xce\x36\x0a\x58\x9d\xcc\xe9" 28790 "\x52\xbb\xd0\x0b\x65\xe5\x0f\x62" 28791 "\x82\x16\xaa\xd2\xba\x5a\x4c\xd0" 28792 "\x67\xb5\x4e\x84\x1c\x02\x6e\xa3" 28793 "\xaa\x22\x54\x96\xc8\xd9\x9c\x58" 28794 "\x15\x63\xf4\x98\x1a\xa1\xd9\x11" 28795 "\x64\x25\x56\xb5\x03\x8e\x29\x85" 28796 "\x75\x88\xd1\xd2\xe4\xe6\x27\x48" 28797 "\x13\x9c\x2b\xaa\xfb\xd3\x6e\x2c" 28798 "\xe6\xd4\xe4\x8b\xd9\xf7\x01\x16" 28799 "\x46\xf9\x5c\x88\x7a\x93\x9e\x2d" 28800 "\xa6\xeb\x01\x2a\x72\xe4\x7f\xb4" 28801 "\x78\x0c\x50\x18\xd3\x8e\x65\xa7" 28802 "\x1b\xf9\x28\x5d\x89\x70\x96\x2f" 28803 "\xa1\xc2\x9b\x34\xfc\x7c\x27\x63" 28804 "\x93\xe6\xe3\xa4\x9d\x17\x97\x7e" 28805 "\x13\x79\x9c\x4b\x2c\x23\x91\x2c" 28806 "\x4f\xb1\x1d\x4b\xb4\x61\x6e\xe8" 28807 "\x32\x35\xc3\x41\x7a\x50\x60\xc8" 28808 "\x3e\xd8\x3f\x38\xfc\xc2\xa2\xe0" 28809 "\x3a\x21\x25\x8f\xc2\x22\xed\x04" 28810 "\x31\xb8\x72\x69\xaf\x6c\x6d\xab" 28811 "\x25\x16\x95\x87\x92\xc7\x46\x3f" 28812 "\x47\x05\x6c\xad\xa0\xa6\x1d\xf0" 28813 "\x66\x2e\x01\x1a\xc3\xbe\xe4\xf6" 28814 "\x51\xec\xa3\x95\x81\xe1\xcc\xab" 28815 "\xc1\x71\x65\x0a\xe6\x53\xfb\xb8" 28816 "\x53\x69\xad\x8b\xab\x8b\xa7\xcd" 28817 "\x8f\x15\x01\x25\xb1\x1f\x9c\x3b" 28818 "\x9b\x47\xad\x38\x38\x89\x6b\x1c" 28819 "\x8a\x33\xdd\x8a\x06\x23\x06\x0b" 28820 "\x7f\x70\xbe\x7e\xa1\x80\xbc\x7a", 28821 .len = 1536, 28822 }, { 28823 .key = "\x60\xd5\x36\xb0\x8e\x5d\x0e\x5f" 28824 "\x70\x47\x8c\xea\x87\x30\x1d\x58" 28825 "\x2a\xb2\xe8\xc6\xcb\x60\xe7\x6f" 28826 "\x56\x95\x83\x98\x38\x80\x84\x8a", 28827 .klen = 32, 28828 .iv = "\x43\xfe\x63\x3c\xdc\x9e\x0c\xa6" 28829 "\xee\x9c\x0b\x97\x65\xc2\x56\x1d" 28830 "\x5d\xd0\xbf\xa3\x9f\x1e\xfb\x78" 28831 "\xbf\x51\x1b\x18\x73\x27\x27\x8c", 28832 .ptext = "\x0b\x77\xd8\xa3\x8c\xa6\xb2\x2d" 28833 "\x3e\xdd\xcc\x7c\x4a\x3e\x61\xc4" 28834 "\x9a\x7f\x73\xb0\xb3\x29\x32\x61" 28835 "\x13\x25\x62\xcc\x59\x4c\xf4\xdb" 28836 "\xd7\xf5\xf4\xac\x75\x51\xb2\x83" 28837 "\x64\x9d\x1c\x8b\xd1\x8b\x0c\x06" 28838 "\xf1\x9f\xba\x9d\xae\x62\xd4\xd8" 28839 "\x96\xbe\x3c\x4c\x32\xe4\x82\x44" 28840 "\x47\x5a\xec\xb8\x8a\x5b\xd5\x35" 28841 "\x57\x1e\x5c\x80\x6f\x77\xa9\xb9" 28842 "\xf2\x4f\x71\x1e\x48\x51\x86\x43" 28843 "\x0d\xd5\x5b\x52\x30\x40\xcd\xbb" 28844 "\x2c\x25\xc1\x47\x8b\xb7\x13\xc2" 28845 "\x3a\x11\x40\xfc\xed\x45\xa4\xf0" 28846 "\xd6\xfd\x32\x99\x13\x71\x47\x2e" 28847 "\x4c\xb0\x81\xac\x95\x31\xd6\x23" 28848 "\xa4\x2f\xa9\xe8\x5a\x62\xdc\x96" 28849 "\xcf\x49\xa7\x17\x77\x76\x8a\x8c" 28850 "\x04\x22\xaf\xaf\x6d\xd9\x16\xba" 28851 "\x35\x21\x66\x78\x3d\xb6\x65\x83" 28852 "\xc6\xc1\x67\x8c\x32\xd6\xc0\xc7" 28853 "\xf5\x8a\xfc\x47\xd5\x87\x09\x2f" 28854 "\x51\x9d\x57\x6c\x29\x0b\x1c\x32" 28855 "\x47\x6e\x47\xb5\xf3\x81\xc8\x82" 28856 "\xca\x5d\xe3\x61\x38\xa0\xdc\xcc" 28857 "\x35\x73\xfd\xb3\x92\x5c\x72\xd2" 28858 "\x2d\xad\xf6\xcd\x20\x36\xff\x49" 28859 "\x48\x80\x21\xd3\x2f\x5f\xe9\xd8" 28860 "\x91\x20\x6b\xb1\x38\x52\x1e\xbc" 28861 "\x88\x48\xa1\xde\xc0\xa5\x46\xce" 28862 "\x9f\x32\x29\xbc\x2b\x51\x0b\xae" 28863 "\x7a\x44\x4e\xed\xeb\x95\x63\x99" 28864 "\x96\x87\xc9\x34\x02\x26\xde\x20" 28865 "\xe4\xcb\x59\x0c\xb5\x55\xbd\x55" 28866 "\x3f\xa9\x15\x25\xa7\x5f\xab\x10" 28867 "\xbe\x9a\x59\x6c\xd5\x27\xf3\xf0" 28868 "\x73\x4a\xb3\xe4\x08\x11\x00\xeb" 28869 "\xf1\xae\xc8\x0d\xef\xcd\xb5\xfc" 28870 "\x0d\x7e\x03\x67\xad\x0d\xec\xf1" 28871 "\x9a\xfd\x31\x60\x3e\xa2\xfa\x1c" 28872 "\x93\x79\x31\x31\xd6\x66\x7a\xbd" 28873 "\x85\xfd\x22\x08\x00\xae\x72\x10" 28874 "\xd6\xb0\xf4\xb8\x4a\x72\x5b\x9c" 28875 "\xbf\x84\xdd\xeb\x13\x05\x28\xb7" 28876 "\x61\x60\xfd\x7f\xf0\xbe\x4d\x18" 28877 "\x7d\xc9\xba\xb0\x01\x59\x74\x18" 28878 "\xe4\xf6\xa6\x74\x5d\x3f\xdc\xa0" 28879 "\x9e\x57\x93\xbf\x16\x6c\xf6\xbd" 28880 "\x93\x45\x38\x95\xb9\x69\xe9\x62" 28881 "\x21\x73\xbd\x81\x73\xac\x15\x74" 28882 "\x9e\x68\x28\x91\x38\xb7\xd4\x47" 28883 "\xc7\xab\xc9\x14\xad\x52\xe0\x4c" 28884 "\x17\x1c\x42\xc1\xb4\x9f\xac\xcc" 28885 "\xc8\x12\xea\xa9\x9e\x30\x21\x14" 28886 "\xa8\x74\xb4\x74\xec\x8d\x40\x06" 28887 "\x82\xb7\x92\xd7\x42\x5b\xf2\xf9" 28888 "\x6a\x1e\x75\x6e\x44\x55\xc2\x8d" 28889 "\x73\x5b\xb8\x8c\x3c\xef\x97\xde" 28890 "\x24\x43\xb3\x0e\xba\xad\x63\x63" 28891 "\x16\x0a\x77\x03\x48\xcf\x02\x8d" 28892 "\x76\x83\xa3\xba\x73\xbe\x80\x3f" 28893 "\x8f\x6e\x76\x24\xc1\xff\x2d\xb4" 28894 "\x20\x06\x9b\x67\xea\x29\xb5\xe0" 28895 "\x57\xda\x30\x9d\x38\xa2\x7d\x1e" 28896 "\x8f\xb9\xa8\x17\x64\xea\xbe\x04" 28897 "\x84\xd1\xce\x2b\xfd\x84\xf9\x26" 28898 "\x1f\x26\x06\x5c\x77\x6d\xc5\x9d" 28899 "\xe6\x37\x76\x60\x7d\x3e\xf9\x02" 28900 "\xba\xa6\xf3\x7f\xd3\x95\xb4\x0e" 28901 "\x52\x1c\x6a\x00\x8f\x3a\x0b\xce" 28902 "\x30\x98\xb2\x63\x2f\xff\x2d\x3b" 28903 "\x3a\x06\x65\xaf\xf4\x2c\xef\xbb" 28904 "\x88\xff\x2d\x4c\xa9\xf4\xff\x69" 28905 "\x9d\x46\xae\x67\x00\x3b\x40\x94" 28906 "\xe9\x7a\xf7\x0b\xb7\x3c\xa2\x2f" 28907 "\xc3\xde\x5e\x29\x01\xde\xca\xfa" 28908 "\xc6\xda\xd7\x19\xc7\xde\x4a\x16" 28909 "\x93\x6a\xb3\x9b\x47\xe9\xd2\xfc" 28910 "\xa1\xc3\x95\x9c\x0b\xa0\x2b\xd4" 28911 "\xd3\x1e\xd7\x21\x96\xf9\x1e\xf4" 28912 "\x59\xf4\xdf\x00\xf3\x37\x72\x7e" 28913 "\xd8\xfd\x49\xd4\xcd\x61\x7b\x22" 28914 "\x99\x56\x94\xff\x96\xcd\x9b\xb2" 28915 "\x76\xca\x9f\x56\xae\x04\x2e\x75" 28916 "\x89\x4e\x1b\x60\x52\xeb\x84\xf4" 28917 "\xd1\x33\xd2\x6c\x09\xb1\x1c\x43" 28918 "\x08\x67\x02\x01\xe3\x64\x82\xee" 28919 "\x36\xcd\xd0\x70\xf1\x93\xd5\x63" 28920 "\xef\x48\xc5\x56\xdb\x0a\x35\xfe" 28921 "\x85\x48\xb6\x97\x97\x02\x43\x1f" 28922 "\x7d\xc9\xa8\x2e\x71\x90\x04\x83" 28923 "\xe7\x46\xbd\x94\x52\xe3\xc5\xd1" 28924 "\xce\x6a\x2d\x6b\x86\x9a\xf5\x31" 28925 "\xcd\x07\x9c\xa2\xcd\x49\xf5\xec" 28926 "\x01\x3e\xdf\xd5\xdc\x15\x12\x9b" 28927 "\x0c\x99\x19\x7b\x2e\x83\xfb\xd8" 28928 "\x89\x3a\x1c\x1e\xb4\xdb\xeb\x23" 28929 "\xd9\x42\xae\x47\xfc\xda\x37\xe0" 28930 "\xd2\xb7\x47\xd9\xe8\xb5\xf6\x20" 28931 "\x42\x8a\x9d\xaf\xb9\x46\x80\xfd" 28932 "\xd4\x74\x6f\x38\x64\xf3\x8b\xed" 28933 "\x81\x94\x56\xe7\xf1\x1a\x64\x17" 28934 "\xd4\x27\x59\x09\xdf\x9b\x74\x05" 28935 "\x79\x6e\x13\x29\x2b\x9e\x1b\x86" 28936 "\x73\x9f\x40\xbe\x6e\xff\x92\x4e" 28937 "\xbf\xaa\xf4\xd0\x88\x8b\x6f\x73" 28938 "\x9d\x8b\xbf\xe5\x8a\x85\x45\x67" 28939 "\xd3\x13\x72\xc6\x2a\x63\x3d\xb1" 28940 "\x35\x7c\xb4\x38\xbb\x31\xe3\x77" 28941 "\x37\xad\x75\xa9\x6f\x84\x4e\x4f" 28942 "\xeb\x5b\x5d\x39\x6d\xed\x0a\xad" 28943 "\x6c\x1b\x8e\x1f\x57\xfa\xc7\x7c" 28944 "\xbf\xcf\xf2\xd1\x72\x3b\x70\x78" 28945 "\xee\x8e\xf3\x4f\xfd\x61\x30\x9f" 28946 "\x56\x05\x1d\x7d\x94\x9b\x5f\x8c" 28947 "\xa1\x0f\xeb\xc3\xa9\x9e\xb8\xa0" 28948 "\xc6\x4e\x1e\xb1\xbc\x0a\x87\xa8" 28949 "\x52\xa9\x1e\x3d\x58\x8e\xc6\x95" 28950 "\x85\x58\xa3\xc3\x3a\x43\x32\x50" 28951 "\x6c\xb3\x61\xe1\x0c\x7d\x02\x63" 28952 "\x5f\x8b\xdf\xef\x13\xf8\x66\xea" 28953 "\x89\x00\x1f\xbd\x5b\x4c\xd5\x67" 28954 "\x8f\x89\x84\x33\x2d\xd3\x70\x94" 28955 "\xde\x7b\xd4\xb0\xeb\x07\x96\x98" 28956 "\xc5\xc0\xbf\xc8\xcf\xdc\xc6\x5c" 28957 "\xd3\x7d\x78\x30\x0e\x14\xa0\x86" 28958 "\xd7\x8a\xb7\x53\xa3\xec\x71\xbf" 28959 "\x85\xf2\xea\xbd\x77\xa6\xd1\xfd" 28960 "\x5a\x53\x0c\xc3\xff\xf5\x1d\x46" 28961 "\x37\xb7\x2d\x88\x5c\xeb\x7a\x0c" 28962 "\x0d\x39\xc6\x40\x08\x90\x1f\x58" 28963 "\x36\x12\x35\x28\x64\x12\xe7\xbb" 28964 "\x50\xac\x45\x15\x7b\x16\x23\x5e" 28965 "\xd4\x11\x2a\x8e\x17\x47\xe1\xd0" 28966 "\x69\xc6\xd2\x5c\x2c\x76\xe6\xbb" 28967 "\xf7\xe7\x34\x61\x8e\x07\x36\xc8" 28968 "\xce\xcf\x3b\xeb\x0a\x55\xbd\x4e" 28969 "\x59\x95\xc9\x32\x5b\x79\x7a\x86" 28970 "\x03\x74\x4b\x10\x87\xb3\x60\xf6" 28971 "\x21\xa4\xa6\xa8\x9a\xc9\x3a\x6f" 28972 "\xd8\x13\xc9\x18\xd4\x38\x2b\xc2" 28973 "\xa5\x7e\x6a\x09\x0f\x06\xdf\x53" 28974 "\x9a\x44\xd9\x69\x2d\x39\x61\xb7" 28975 "\x1c\x36\x7f\x9e\xc6\x44\x9f\x42" 28976 "\x18\x0b\x99\xe6\x27\xa3\x1e\xa6" 28977 "\xd0\xb9\x9a\x2b\x6f\x60\x75\xbd" 28978 "\x52\x4a\x91\xd4\x7b\x8f\x95\x9f" 28979 "\xdd\x74\xed\x8b\x20\x00\xdd\x08" 28980 "\x6e\x5b\x61\x7b\x06\x6a\x19\x84" 28981 "\x1c\xf9\x86\x65\xcd\x1c\x73\x3f" 28982 "\x28\x5c\x8a\x93\x1a\xf3\xa3\x6c" 28983 "\x6c\xa9\x7c\xea\x3c\xd4\x15\x45" 28984 "\x7f\xbc\xe3\xbb\x42\xf0\x2e\x10" 28985 "\xcd\x0c\x8b\x44\x1a\x82\x83\x0c" 28986 "\x58\xb1\x24\x28\xa0\x11\x2f\x63" 28987 "\xa5\x82\xc5\x9f\x86\x42\xf4\x4d" 28988 "\x89\xdb\x76\x4a\xc3\x7f\xc4\xb8" 28989 "\xdd\x0d\x14\xde\xd2\x62\x02\xcb" 28990 "\x70\xb7\xee\xf4\x6a\x09\x12\x5e" 28991 "\xd1\x26\x1a\x2c\x20\x71\x31\xef" 28992 "\x7d\x65\x57\x65\x98\xff\x8b\x02" 28993 "\x9a\xb5\xa4\xa1\xaf\x03\xc4\x50" 28994 "\x33\xcf\x1b\x25\xfa\x7a\x79\xcc" 28995 "\x55\xe3\x21\x63\x0c\x6d\xeb\x5b" 28996 "\x1c\xad\x61\x0b\xbd\xb0\x48\xdb" 28997 "\xb3\xc8\xa0\x87\x7f\x8b\xac\xfd" 28998 "\xd2\x68\x9e\xb4\x11\x3c\x6f\xb1" 28999 "\xfe\x25\x7d\x84\x5a\xae\xc9\x31" 29000 "\xc3\xe5\x6a\x6f\xbc\xab\x41\xd9" 29001 "\xde\xce\xf9\xfa\xd5\x7c\x47\xd2" 29002 "\x66\x30\xc9\x97\xf2\x67\xdf\x59" 29003 "\xef\x4e\x11\xbc\x4e\x70\xe3\x46" 29004 "\x53\xbe\x16\x6d\x33\xfb\x57\x98" 29005 "\x4e\x34\x79\x3b\xc7\x3b\xaf\x94" 29006 "\xc1\x87\x4e\x47\x11\x1b\x22\x41" 29007 "\x99\x12\x61\xe0\xe0\x8c\xa9\xbd" 29008 "\x79\xb6\x06\x4d\x90\x3b\x0d\x30" 29009 "\x1a\x00\xaa\x0e\xed\x7c\x16\x2f" 29010 "\x0d\x1a\xfb\xf8\xad\x51\x4c\xab" 29011 "\x98\x4c\x80\xb6\x92\x03\xcb\xa9" 29012 "\x99\x9d\x16\xab\x43\x8c\x3f\x52" 29013 "\x96\x53\x63\x7e\xbb\xd2\x76\xb7" 29014 "\x6b\x77\xab\x52\x80\x33\xe3\xdf" 29015 "\x4b\x3c\x23\x1a\x33\xe1\x43\x40" 29016 "\x39\x1a\xe8\xbd\x3c\x6a\x77\x42" 29017 "\x88\x9f\xc6\xaa\x65\x28\xf2\x1e" 29018 "\xb0\x7c\x8e\x10\x41\x31\xe9\xd5" 29019 "\x9d\xfd\x28\x7f\xfb\x61\xd3\x39" 29020 "\x5f\x7e\xb4\xfb\x9c\x7d\x98\xb7" 29021 "\x37\x2f\x18\xd9\x3b\x83\xaf\x4e" 29022 "\xbb\xd5\x49\x69\x46\x93\x3a\x21" 29023 "\x46\x1d\xad\x84\xb5\xe7\x8c\xff" 29024 "\xbf\x81\x7e\x22\xf6\x88\x8c\x82" 29025 "\xf5\xde\xfe\x18\xc9\xfb\x58\x07" 29026 "\xe4\x68\xff\x9c\xf4\xe0\x24\x20" 29027 "\x90\x92\x01\x49\xc2\x38\xe1\x7c" 29028 "\xac\x61\x0b\x96\x36\xa4\x77\xe9" 29029 "\x29\xd4\x97\xae\x15\x13\x7c\x6c" 29030 "\x2d\xf1\xc5\x83\x97\x02\xa8\x2e" 29031 "\x0b\x0f\xaf\xb5\x42\x18\x8a\x8c" 29032 "\xb8\x28\x85\x28\x1b\x2a\x12\xa5" 29033 "\x4b\x0a\xaf\xd2\x72\x37\x66\x23" 29034 "\x28\xe6\x71\xa0\x77\x85\x7c\xff" 29035 "\xf3\x8d\x2f\x0c\x33\x30\xcd\x7f" 29036 "\x61\x64\x23\xb2\xe9\x79\x05\xb8" 29037 "\x61\x47\xb1\x2b\xda\xf7\x9a\x24" 29038 "\x94\xf6\xcf\x07\x78\xa2\x80\xaa" 29039 "\x6e\xe9\x58\x97\x19\x0c\x58\x73" 29040 "\xaf\xee\x2d\x6e\x26\x67\x18\x8a" 29041 "\xc6\x6d\xf6\xbc\x65\xa9\xcb\xe7" 29042 "\x53\xf1\x61\x97\x63\x52\x38\x86" 29043 "\x0e\xdd\x33\xa5\x30\xe9\x9f\x32" 29044 "\x43\x64\xbc\x2d\xdc\x28\x43\xd8" 29045 "\x6c\xcd\x00\x2c\x87\x9a\x33\x79" 29046 "\xbd\x63\x6d\x4d\xf9\x8a\x91\x83" 29047 "\x9a\xdb\xf7\x9a\x11\xe1\xd1\x93" 29048 "\x4a\x54\x0d\x51\x38\x30\x84\x0b" 29049 "\xc5\x29\x8d\x92\x18\x6c\x28\xfe" 29050 "\x1b\x07\x57\xec\x94\x74\x0b\x2c" 29051 "\x21\x01\xf6\x23\xf9\xb0\xa0\xaf" 29052 "\xb1\x3e\x2e\xa8\x0d\xbc\x2a\x68" 29053 "\x59\xde\x0b\x2d\xde\x74\x42\xa1" 29054 "\xb4\xce\xaf\xd8\x42\xeb\x59\xbd" 29055 "\x61\xcc\x27\x28\xc6\xf2\xde\x3e" 29056 "\x68\x64\x13\xd3\xc3\xc0\x31\xe0" 29057 "\x5d\xf9\xb4\xa1\x09\x20\x46\x8b" 29058 "\x48\xb9\x27\x62\x00\x12\xc5\x03" 29059 "\x28\xfd\x55\x27\x1c\x31\xfc\xdb" 29060 "\xc1\xcb\x7e\x67\x91\x2e\x50\x0c" 29061 "\x61\xf8\x9f\x31\x26\x5a\x3d\x2e" 29062 "\xa0\xc7\xef\x2a\xb6\x24\x48\xc9" 29063 "\xbb\x63\x99\xf4\x7c\x4e\xc5\x94" 29064 "\x99\xd5\xff\x34\x93\x8f\x31\x45" 29065 "\xae\x5e\x7b\xfd\xf4\x81\x84\x65" 29066 "\x5b\x41\x70\x0b\xe5\xaa\xec\x95" 29067 "\x6b\x3d\xe3\xdc\x12\x78\xf8\x28" 29068 "\x26\xec\x3a\x64\xc4\xab\x74\x97" 29069 "\x3d\xcf\x21\x7d\xcf\x59\xd3\x15" 29070 "\x47\x94\xe4\xd9\x48\x4c\x02\x49" 29071 "\x68\x50\x22\x16\x96\x2f\xc4\x23" 29072 "\x80\x47\x27\xd1\xee\x10\x3b\xa7" 29073 "\x19\xae\xe1\x40\x5f\x3a\xde\x5d" 29074 "\x97\x1c\x59\xce\xe1\xe7\x32\xa7" 29075 "\x20\x89\xef\x44\x22\x38\x3c\x14" 29076 "\x99\x3f\x1b\xd6\x37\xfe\x93\xbf" 29077 "\x34\x13\x86\xd7\x9b\xe5\x2a\x37" 29078 "\x72\x16\xa4\xdf\x7f\xe4\xa4\x66" 29079 "\x9d\xf2\x0b\x29\xa1\xe2\x9d\x36" 29080 "\xe1\x9d\x56\x95\x73\xe1\x91\x58" 29081 "\x0f\x64\xf8\x90\xbb\x0c\x48\x0f" 29082 "\xf5\x52\xae\xd9\xeb\x95\xb7\xdd" 29083 "\xae\x0b\x20\x55\x87\x3d\xf0\x69" 29084 "\x3c\x0a\x54\x61\xea\x00\xbd\xba" 29085 "\x5f\x7e\x25\x8c\x3e\x61\xee\xb2" 29086 "\x1a\xc8\x0e\x0b\xa5\x18\x49\xf2" 29087 "\x6e\x1d\x3f\x83\xc3\xf1\x1a\xcb" 29088 "\x9f\xc9\x82\x4e\x7b\x26\xfd\x68" 29089 "\x28\x25\x8d\x22\x17\xab\xf8\x4e" 29090 "\x1a\xa9\x81\x48\xb0\x9f\x52\x75" 29091 "\xe4\xef\xdd\xbd\x5b\xbe\xab\x3c" 29092 "\x43\x76\x23\x62\xce\xb8\xc2\x5b" 29093 "\xc6\x31\xe6\x81\xb4\x42\xb2\xfd" 29094 "\xf3\x74\xdd\x02\x3c\xa0\xd7\x97" 29095 "\xb0\xe7\xe9\xe0\xce\xef\xe9\x1c" 29096 "\x09\xa2\x6d\xd3\xc4\x60\xd6\xd6" 29097 "\x9e\x54\x31\x45\x76\xc9\x14\xd4" 29098 "\x95\x17\xe9\xbe\x69\x92\x71\xcb" 29099 "\xde\x7c\xf1\xbd\x2b\xef\x8d\xaf" 29100 "\x51\xe8\x28\xec\x48\x7f\xf8\xfa" 29101 "\x9f\x9f\x5e\x52\x61\xc3\xfc\x9a" 29102 "\x7e\xeb\xe3\x30\xb6\xfe\xc4\x4a" 29103 "\x87\x1a\xff\x54\x64\xc7\xaa\xa2" 29104 "\xfa\xb7\xb2\xe7\x25\xce\x95\xb4" 29105 "\x15\x93\xbd\x24\xb6\xbc\xe4\x62" 29106 "\x93\x7f\x44\x40\x72\xcb\xfb\xb2" 29107 "\xbf\xe8\x03\xa5\x87\x12\x27\xfd" 29108 "\xc6\x21\x8a\x8f\xc2\x48\x48\xb9" 29109 "\x6b\xb6\xf0\xf0\x0e\x0a\x0e\xa4" 29110 "\x40\xa9\xd8\x23\x24\xd0\x7f\xe2" 29111 "\xf9\xed\x76\xf0\x91\xa5\x83\x3c" 29112 "\x55\xe1\x92\xb8\xb6\x32\x9e\x63" 29113 "\x60\x81\x75\x29\x9e\xce\x2a\x70" 29114 "\x28\x0c\x87\xe5\x46\x73\x76\x66" 29115 "\xbc\x4b\x6c\x37\xc7\xd0\x1a\xa0" 29116 "\x9d\xcf\x04\xd3\x8c\x42\xae\x9d" 29117 "\x35\x5a\xf1\x40\x4c\x4e\x81\xaa" 29118 "\xfe\xd5\x83\x4f\x29\x19\xf3\x6c" 29119 "\x9e\xd0\x53\xe5\x05\x8f\x14\xfb" 29120 "\x68\xec\x0a\x3a\x85\xcd\x3e\xb4" 29121 "\x4a\xc2\x5b\x92\x2e\x0b\x58\x64" 29122 "\xde\xca\x64\x86\x53\xdb\x7f\x4e" 29123 "\x54\xc6\x5e\xaa\xe5\x82\x3b\x98" 29124 "\x5b\x01\xa7\x1f\x7b\x3d\xcc\x19" 29125 "\xf1\x11\x02\x64\x09\x25\x7c\x26" 29126 "\xee\xad\x50\x68\x31\x26\x16\x0f" 29127 "\xb6\x7b\x6f\xa2\x17\x1a\xba\xbe" 29128 "\xc3\x60\xdc\xd2\x44\xe0\xb4\xc4" 29129 "\xfe\xff\x69\xdb\x60\xa6\xaf\x39" 29130 "\x0a\xbd\x6e\x41\xd1\x9f\x87\x71" 29131 "\xcc\x43\xa8\x47\x10\xbc\x2b\x7d" 29132 "\x40\x12\x43\x31\xb8\x12\xe0\x95" 29133 "\x6f\x9d\xf8\x75\x51\x3d\x61\xbe" 29134 "\xa0\xd1\x0b\x8d\x50\xc7\xb8\xe7" 29135 "\xab\x03\xda\x41\xab\xc5\x4e\x33" 29136 "\x5a\x63\x94\x90\x22\x72\x54\x26" 29137 "\x93\x65\x99\x45\x55\xd3\x55\x56" 29138 "\xc5\x39\xe4\xb4\xb1\xea\xd8\xf9" 29139 "\xb5\x31\xf7\xeb\x80\x1a\x9e\x8d" 29140 "\xd2\x40\x01\xea\x33\xb9\xf2\x7a" 29141 "\x43\x41\x72\x0c\xbf\x20\xab\xf7" 29142 "\xfa\x65\xec\x3e\x35\x57\x1e\xef" 29143 "\x2a\x81\xfa\x10\xb2\xdb\x8e\xfa" 29144 "\x7f\xe7\xaf\x73\xfc\xbb\x57\xa2" 29145 "\xaf\x6f\x41\x11\x30\xd8\xaf\x94" 29146 "\x53\x8d\x4c\x23\xa5\x20\x63\xcf" 29147 "\x0d\x00\xe0\x94\x5e\x92\xaa\xb5" 29148 "\xe0\x4e\x96\x3c\xf4\x26\x2f\xf0" 29149 "\x3f\xd7\xed\x75\x2c\x63\xdf\xc8" 29150 "\xfb\x20\xb5\xae\x44\x83\xc0\xab" 29151 "\x05\xf9\xbb\xa7\x62\x7d\x21\x5b" 29152 "\x04\x80\x93\x84\x5f\x1d\x9e\xcd" 29153 "\xa2\x07\x7e\x22\x2f\x55\x94\x23" 29154 "\x74\x35\xa3\x0f\x03\xbe\x07\x62" 29155 "\xe9\x16\x69\x7e\xae\x38\x0e\x9b" 29156 "\xad\x6e\x83\x90\x21\x10\xb8\x07" 29157 "\xdc\xc1\x44\x20\xa5\x88\x00\xdc" 29158 "\xe1\x82\x16\xf1\x0c\xdc\xed\x8c" 29159 "\x32\xb5\x49\xab\x11\x41\xd5\xd2" 29160 "\x35\x2c\x70\x73\xce\xeb\xe3\xd6" 29161 "\xe4\x7d\x2c\xe8\x8c\xec\x8a\x92" 29162 "\x50\x87\x51\xbd\x2d\x9d\xf2\xf0" 29163 "\x3c\x7d\xb1\x87\xf5\x01\xb0\xed" 29164 "\x02\x5a\x20\x4d\x43\x08\x71\x49" 29165 "\x77\x72\x9b\xe6\xef\x30\xc9\xa2" 29166 "\x66\x66\xb8\x68\x9d\xdf\xc6\x16" 29167 "\xa5\x78\xee\x3c\x47\xa6\x7a\x31" 29168 "\x07\x6d\xce\x7b\x86\xf8\xb2\x31" 29169 "\xa8\xa4\x77\x3c\x63\x36\xe8\xd3" 29170 "\x7d\x40\x56\xd8\x48\x56\x9e\x3e" 29171 "\x56\xf6\x3d\xd2\x12\x6e\x35\x29" 29172 "\xd4\x7a\xdb\xff\x97\x4c\xeb\x3c" 29173 "\x28\x2a\xeb\xe9\x43\x40\x61\x06" 29174 "\xb8\xa8\x6d\x18\xc8\xbc\xc7\x23" 29175 "\x53\x2b\x8b\xcc\xce\x88\xdf\xf8" 29176 "\xff\xf8\x94\xe4\x5c\xee\xcf\x39" 29177 "\xe0\xf6\x1a\xae\xf2\xd5\x41\x6a" 29178 "\x09\x5a\x50\x66\xc4\xf4\x66\xdc" 29179 "\x6a\x69\xee\xc8\x47\xe6\x87\x52" 29180 "\x9e\x28\xe4\x39\x02\x0d\xc4\x7e" 29181 "\x18\xe6\xc6\x09\x07\x03\x30\xb9" 29182 "\xd1\xb0\x48\xe6\x80\xe8\x8c\xe6" 29183 "\xc7\x2c\x33\xca\x64\xe5\xc0\x6e" 29184 "\xac\x14\x4b\xe1\xf6\xeb\xce\xe4" 29185 "\xc1\x8c\xea\x5b\x8d\x3c\x86\x91" 29186 "\xd1\xd7\x16\x9c\x09\x9c\x6a\x51" 29187 "\xe5\xcd\xe3\xb0\x33\x1f\x03\xcd" 29188 "\xe5\xd8\x40\x9b\xdc\x29\xbe\xfa" 29189 "\x24\xcc\xf1\x55\x68\x3a\x89\x0d" 29190 "\x08\x48\xfd\x9b\x47\x41\x10\xae" 29191 "\x53\x3a\x83\x87\xd4\x89\xe7\x38" 29192 "\x47\xee\xd7\xbe\xe2\x58\x37\xd2" 29193 "\xfc\x21\x1d\x20\xa5\x2d\x69\x0c" 29194 "\x36\x5b\x2f\xcd\xa1\xa6\xe4\xa1" 29195 "\x00\x4d\xf7\xc8\x2d\xc7\x16\x6c" 29196 "\x6d\xad\x32\x8c\x8f\x74\xf9\xfa" 29197 "\x78\x1c\x9a\x0f\x6e\x93\x9c\x20" 29198 "\x43\xb9\xe4\xda\xc4\xc7\x90\x47" 29199 "\x86\x68\xb7\x6f\x82\x59\x4a\x30" 29200 "\xf1\xfd\x31\x0f\xa1\xea\x9b\x6b" 29201 "\x18\x5c\x39\xb0\xc7\x80\x64\xff" 29202 "\x6d\x5b\xb4\x8b\xba\x90\xea\x4e" 29203 "\x9a\x04\xd2\x68\x18\x50\xb5\x91" 29204 "\x45\x4f\x58\x5a\xe5\xc6\x7c\xab" 29205 "\x61\x3e\x3d\xec\x18\x87\xfc\xea" 29206 "\x26\x35\x4c\x99\x8a\x3f\x00\x7b" 29207 "\xf5\x89\x62\xda\xdd\xf1\x43\xef" 29208 "\x2c\x1d\x92\xfa\x9a\xd0\x37\x03" 29209 "\x69\x9c\xd8\x1f\x41\x44\xb7\x73" 29210 "\x54\x14\x91\x12\x41\x41\x54\xa2" 29211 "\x91\x55\xb6\xf7\x23\x41\xc9\xc2" 29212 "\x5b\x53\xf2\x61\x63\x0d\xa9\x87" 29213 "\x1a\xbb\x11\x1f\x3c\xbb\xa8\x1f" 29214 "\xe2\x66\x56\x88\x06\x3c\xd2\x0f" 29215 "\x3b\xc4\xd6\x8c\xbe\x54\x9f\xa8" 29216 "\x9c\x89\xfb\x88\x05\xef\xcd\xe7" 29217 "\xc1\xc4\x21\x36\x22\x8d\x9a\x5d" 29218 "\x1b\x1e\x4a\xc0\x89\xdd\x76\x16" 29219 "\x5a\xce\xcd\x1e\x6a\x1f\xa0\x2b" 29220 "\x83\xf6\x5e\x28\x8e\x65\xb5\x86" 29221 "\x72\x8f\xc5\xf2\x54\x81\x10\x8d" 29222 "\x63\x7b\x42\x7d\x06\x08\x16\xb3" 29223 "\xb0\x60\x65\x41\x49\xdb\x0d\xc1" 29224 "\xe2\xef\x72\x72\x06\xe7\x60\x5c" 29225 "\x95\x1c\x7d\x52\xec\x82\xee\xd3" 29226 "\x5b\xab\x61\xa4\x1f\x61\x64\x0c" 29227 "\x28\x32\x21\x7a\x81\xe7\x81\xf3" 29228 "\xdb\xc0\x18\xd9\xae\x0b\x3c\x9a" 29229 "\x58\xec\x70\x4f\x40\x25\x2b\xba" 29230 "\x96\x59\xac\x34\x45\x29\xc6\x57" 29231 "\xc1\xc3\x93\x60\x77\x92\xbb\x83" 29232 "\x8a\xa7\x72\x45\x2a\xc9\x35\xe7" 29233 "\x66\xd6\xa9\xe9\x43\x87\x20\x11" 29234 "\x6a\x2f\x87\xac\xe0\x93\x82\xe5" 29235 "\x6c\x57\xa9\x4c\x9e\x56\x57\x33" 29236 "\x1c\xd8\x7e\x25\x27\x41\x89\x97" 29237 "\xea\xa5\x56\x02\x5b\x93\x13\x46" 29238 "\xdc\x53\x3d\x95\xef\xaf\x9f\xf0" 29239 "\x0a\x8a\xfe\x0c\xbf\xf0\x25\x5f" 29240 "\xb4\x9f\x1b\x72\x9c\x37\xba\x46" 29241 "\x4e\xcc\xcc\x02\x5c\xec\x3f\x98" 29242 "\xff\x56\x1a\xc2\x7a\x65\x8f\xf6" 29243 "\xd2\x81\x37\x7a\x0a\xfc\x79\xb9" 29244 "\xcb\x8c\xc8\x1a\xd0\xba\x5d\x55" 29245 "\xbc\x6d\x2e\xb2\x2f\x75\x29\x3f" 29246 "\x1a\x4b\xa8\xd7\xe8\xf6\xf4\x2a" 29247 "\xa5\xa1\x68\xec\xf3\xd5\xdd\x0f" 29248 "\xad\x57\xae\x98\x83\xd5\x92\x4e" 29249 "\x76\x86\x8e\x5e\x4b\x87\x7b\xf7" 29250 "\x2d\x79\x3f\x12\x6a\x24\x58\xc8" 29251 "\xab\x9a\x65\x75\x82\x6f\xa5\x39" 29252 "\x72\xb0\xdf\x93\xb5\xa2\xf3\xdd" 29253 "\x1f\x32\xfa\xdb\xfe\x1b\xbf\x0a" 29254 "\xd9\x95\xdd\x02\xf1\x23\x54\xb1" 29255 "\xa5\xbb\x24\x04\x5c\x2a\x97\x92" 29256 "\xe6\xe0\x10\x61\xe3\x46\xc7\x0c" 29257 "\xcb\xbc\x51\x9a\x35\x16\xd9\x42" 29258 "\x62\xb3\x5e\xa4\x3c\x84\xa0\x7f" 29259 "\xb8\x7f\x70\xd1\x8b\x03\xdf\x27" 29260 "\x32\x06\x3f\x12\x23\x19\x22\x82" 29261 "\x2d\x37\xa5\x00\x31\x9b\xa9\x21" 29262 "\x8e\x34\x8c\x8e\x4f\xe8\xd4\x63" 29263 "\x6c\xb2\xa9\x6e\xf6\x7c\x96\xf1" 29264 "\x0e\x64\xab\x14\x3d\x8f\x74\xb3" 29265 "\x35\x79\x84\x78\x06\x68\x97\x30" 29266 "\xe0\x22\x55\xd6\xc5\x5b\x38\xb2" 29267 "\x75\x24\x0c\x52\xb6\x57\xcc\x0a" 29268 "\xbd\x3c\xd0\x73\x47\xd1\x25\xd6" 29269 "\x1c\xfd\x27\x05\x3f\x70\xe1\xa7" 29270 "\x69\x3b\xee\xc9\x9f\xfd\x2a\x7e" 29271 "\xab\x58\xe6\x0b\x35\x5e\x52\xf9" 29272 "\xff\xac\x5b\x82\x88\xa7\x65\xbc" 29273 "\x61\x29\xdc\xa1\x94\x42\xd1\xd3" 29274 "\xa0\xd8\xba\x3b\x49\xc8\xa7\xce" 29275 "\x01\x6c\xb7\x3f\xe3\x98\x4d\xd1" 29276 "\x9f\x46\x0d\xb3\xf2\x43\x33\x49" 29277 "\xb7\x27\xbd\xba\xcc\x3f\x09\x56" 29278 "\xfa\x64\x18\xb8\x17\x28\xde\x0d" 29279 "\x29\xfa\x1f\xad\x60\x3b\x90\xa7" 29280 "\x05\x9f\x4c\xc4\xdc\x05\x3b\x17" 29281 "\x58\xea\x99\xfd\x6b\x8a\x93\x77" 29282 "\xa5\x44\xbd\x8d\x29\x44\x29\x89" 29283 "\x52\x1d\x89\x8b\x44\x8f\xb9\x68" 29284 "\xeb\x93\xfd\x92\xd9\x14\x35\x9c" 29285 "\x28\x3a\x9f\x1d\xd8\xe0\x2a\x76" 29286 "\x51\xc1\xf0\xa9\x1d\xb4\xf8\xb9" 29287 "\xfc\x14\x78\x5a\xa2\xb1\xdb\x94" 29288 "\xcb\x18\xb9\x34\xbd\x0c\x65\x1d" 29289 "\x64\xde\xd0\x3a\xe4\x68\x0e\xbc" 29290 "\x13\xa7\x47\x89\x62\xa3\x03\x19" 29291 "\x64\xa1\x02\x27\x3a\x8d\x43\xfa" 29292 "\x68\xff\xda\x8b\x40\xe9\x19\x8b" 29293 "\x56\xbe\x1c\x9b\xe6\xf6\x3f\x60" 29294 "\xdb\x7a\xd5\xab\x82\xd8\xd9\x99" 29295 "\xe3\x5b\x0c\x0c\x69\x18\x5c\xed" 29296 "\x03\xf9\xc1\x61\xc4\x7b\xd4\x90" 29297 "\x43\xc3\x39\xec\xac\xcb\x1f\x4b" 29298 "\x23\xf8\xa9\x98\x2f\xf6\x48\x90" 29299 "\x6c\x2b\x94\xad\x14\xdd\xcc\xa2" 29300 "\x3d\xc7\x86\x0f\x7f\x1c\x0b\x93" 29301 "\x4b\x74\x1f\x80\x75\xb4\x91\xdf" 29302 "\xa8\x26\xf9\x06\x2b\x3a\x2c\xfd" 29303 "\x3c\x31\x40\x1e\x5b\xa6\x86\x01" 29304 "\xc4\xa2\x80\x4f\xf5\xa2\xf4\xff" 29305 "\xf6\x07\x8c\x92\xf7\x74\xbd\x42" 29306 "\xb0\x3f\x6b\x05\xca\x40\xeb\x04" 29307 "\x20\xa9\x37\x78\x32\x03\x60\xcc" 29308 "\xf3\xec\xb2\x2d\xb5\x80\x7c\xe4" 29309 "\x37\x53\x25\xd1\xe8\x91\x6a\xe5" 29310 "\xdf\xdd\xb0\xab\x69\xc7\xa1\xb2" 29311 "\xfc\xb3\xd1\x9e\xda\xa8\x0d\x68" 29312 "\xfe\x7d\xdc\x56\x33\x65\x99\xd2" 29313 "\xec\xa5\xa0\xa1\x26\xc9\xec\xbd" 29314 "\x22\x20\x5e\x0d\xcb\x93\x64\x7a" 29315 "\x56\x75\xed\xe5\x45\xa2\xbd\x16" 29316 "\x59\xf7\x43\xd9\x5b\x2c\xdd\xb6" 29317 "\x1d\xa8\x05\x89\x2f\x65\x2e\x66" 29318 "\xfe\xad\x93\xeb\x85\x8f\xe8\x4c" 29319 "\x00\x44\x71\x03\x0e\x26\xaf\xfd" 29320 "\xfa\x56\x0f\xdc\x9c\xf3\x2e\xab" 29321 "\x88\x26\x61\xc6\x13\xfe\xba\xc1" 29322 "\xd8\x8a\x38\xc3\xb6\x4e\x6d\x80" 29323 "\x4c\x65\x93\x2f\xf5\x54\xff\x63" 29324 "\xbe\xdf\x9a\xe3\x4f\xca\xc9\x71" 29325 "\x12\xab\x95\x66\xec\x09\x64\xea" 29326 "\xdc\x9f\x01\x61\x24\x88\xd1\xa7" 29327 "\xd0\x69\x26\xf0\x80\xb0\xec\x86" 29328 "\xc2\x58\x2f\x6a\xc5\xfd\xfc\x2a" 29329 "\xf6\x3e\x23\x77\x3b\x7e\xc5\xc5" 29330 "\xe7\xf9\x4d\xcc\x68\x53\x11\xc8" 29331 "\x5b\x44\xbd\x48\x0f\xb3\x35\x1a" 29332 "\x93\x4a\x80\x16\xa3\x0d\x50\x85" 29333 "\xa6\xc4\xd4\x74\x4d\x87\x59\x51" 29334 "\xd7\xf7\x7d\xee\xd0\x9b\xd1\x83" 29335 "\x25\x2b\xc6\x39\x27\x6a\xb3\x41" 29336 "\x5f\xd2\x24\xd4\xd6\xfa\x8c\x3e" 29337 "\xb2\xf9\x11\x71\x7a\x9e\x5e\x7b" 29338 "\x5b\x9a\x47\x80\xca\x1c\xbe\x04" 29339 "\x5d\x34\xc4\xa2\x2d\x41\xfe\x73" 29340 "\x53\x15\x9f\xdb\xe7\x7d\x82\x19" 29341 "\x21\x1b\x67\x2a\x74\x7a\x21\x4a" 29342 "\xc4\x96\x6f\x00\x92\x69\xf1\x99" 29343 "\x50\xf1\x4a\x16\x11\xf1\x16\x51", 29344 .ctext = "\x57\xd1\xcf\x26\xe5\x07\x7a\x3f" 29345 "\xa5\x5e\xd4\xa8\x12\xe9\x4e\x36" 29346 "\x9c\x28\x65\xe0\xbd\xef\xf1\x49" 29347 "\x04\xd4\xd4\x01\x4d\xf5\xfc\x2a" 29348 "\x32\xd8\x19\x21\xcd\x58\x2a\x1a" 29349 "\x43\x78\xa4\x57\x69\xa0\x52\xeb" 29350 "\xcd\xa5\x9c\x4d\x03\x28\xef\x8b" 29351 "\x54\xc6\x6c\x31\xab\x3e\xaf\x6d" 29352 "\x0a\x87\x83\x3d\xb7\xea\x6b\x3d" 29353 "\x11\x58\x7d\x5f\xaf\xc9\xfc\x50" 29354 "\x58\x9a\x84\xa1\xcf\x76\xdc\x77" 29355 "\x83\x9a\x28\x74\x69\xc9\x0c\xc2" 29356 "\x7b\x1e\x4e\xe4\x25\x41\x23\x0d" 29357 "\x4e\x0e\x2d\x7a\x87\xaa\x0f\x7c" 29358 "\x98\xad\xf0\x6f\xbf\xcb\xd5\x1a" 29359 "\x3e\xcf\x0e\xc5\xde\xbd\x8d\xf1" 29360 "\xaa\x19\x16\xb8\xc5\x25\x02\x33" 29361 "\xbd\x5a\x85\xe2\xc0\x77\x71\xda" 29362 "\x12\x4c\xdf\x7f\xce\xc0\x32\x95" 29363 "\x1a\xde\xcb\x0a\x70\xd0\x9e\x89" 29364 "\xc5\x97\x18\x04\xab\x8c\x38\x56" 29365 "\x69\xe5\xf6\xa5\x76\x2c\x52\x7a" 29366 "\x49\xd2\x9a\x95\xa6\xa8\x82\x42" 29367 "\x20\x1f\x58\x57\x4e\x22\xdb\x92" 29368 "\xec\xbd\x4a\x21\x66\x9b\x7a\xcb" 29369 "\x73\xcd\x6d\x15\x07\xc9\x97\xb8" 29370 "\x11\x35\xee\x29\xa4\x90\xfc\x46" 29371 "\x0f\x39\x56\xc6\x4a\x3a\xcf\xcc" 29372 "\xb1\xbf\x62\x1c\x16\xc5\x12\x6c" 29373 "\x0e\x69\x89\xce\xcf\x11\x4e\xe5" 29374 "\x7e\x4e\x7c\x8f\xb4\xc9\xe6\x54" 29375 "\x42\x89\x28\x27\xe6\xec\x50\xb7" 29376 "\x69\x91\x44\x3e\x46\xd4\x64\xf6" 29377 "\x25\x4c\x4d\x2f\x60\xd9\x9a\xd3" 29378 "\x1c\x70\xf4\xd8\x24\x1e\xdb\xcf" 29379 "\xa8\xc0\x22\xe6\x82\x57\xf6\xf0" 29380 "\xe1\x1e\x38\x66\xec\xdc\x20\xdb" 29381 "\x6a\x57\x68\xb1\x43\x61\xe1\x12" 29382 "\x18\x5f\x31\x57\x39\xcb\xea\x3c" 29383 "\x6e\x5d\x9a\xe0\xa6\x70\x4d\xd8" 29384 "\xf9\x47\x4e\xef\x31\xa5\x66\x9b" 29385 "\xb7\xf1\xd9\x59\x85\xfc\xdb\x7e" 29386 "\xa2\x7a\x70\x25\x0c\xfd\x18\x0d" 29387 "\x00\x42\xc9\x48\x8a\xbd\x74\xc5" 29388 "\x3e\xe1\x20\x5a\x5d\x2e\xe5\x32" 29389 "\x1d\x1c\x08\x65\x80\x69\xae\x24" 29390 "\x80\xde\xb6\xdf\x97\xaa\x42\x8d" 29391 "\xce\x39\x07\xe6\x69\x94\x5a\x75" 29392 "\x39\xda\x5e\x1a\xed\x4a\x4c\x23" 29393 "\x66\x1f\xf3\xb1\x6e\x8f\x21\x94" 29394 "\x45\xc4\x63\xbd\x06\x93\x5e\x30" 29395 "\xe7\x8f\xcb\xe0\xbb\x2a\x27\xcf" 29396 "\x57\xa9\xa6\x28\xaf\xae\xcb\xa5" 29397 "\x7b\x36\x61\x77\x3a\x4f\xec\x51" 29398 "\x71\xfd\x52\x9e\x32\x7b\x98\x09" 29399 "\xae\x27\xbc\x93\x96\xab\xb6\x02" 29400 "\xf7\x21\xd3\x42\x00\x7e\x7a\x92" 29401 "\x17\xfe\x1b\x3d\xcf\xb6\xfe\x1e" 29402 "\x40\xc3\x10\x25\xac\x22\x9e\xcc" 29403 "\xc2\x02\x61\xf5\x0a\x4b\xc3\xec" 29404 "\xb1\x44\x06\x05\xb8\xd6\xcb\xd5" 29405 "\xf1\xf5\xb5\x65\xbc\x1a\x19\xa2" 29406 "\x7d\x60\x87\x11\x06\x83\x25\xe3" 29407 "\x5e\xf0\xeb\x15\x93\xb6\x8e\xab" 29408 "\x49\x52\xe8\xdb\xde\xd1\x8e\xa2" 29409 "\x3a\x64\x13\x30\xaa\x20\xaf\x81" 29410 "\x8d\x3c\x24\x2a\x76\x6d\xca\x32" 29411 "\x63\x51\x6b\x8e\x4b\xa7\xf6\xad" 29412 "\xa5\x94\x16\x82\xa6\x97\x3b\xe5" 29413 "\x41\xcd\x87\x33\xdc\xc1\x48\xca" 29414 "\x4e\xa2\x82\xad\x8e\x1b\xae\xcb" 29415 "\x12\x93\x27\xa3\x2b\xfa\xe6\x26" 29416 "\x43\xbd\xb0\x00\x01\x22\x1d\xd3" 29417 "\x28\x9d\x69\xe0\xd4\xf8\x5b\x01" 29418 "\x40\x7d\x54\xe5\xe2\xbd\x78\x5a" 29419 "\x0e\xab\x51\xfc\xd4\xde\xba\xbc" 29420 "\xa4\x7a\x74\x6d\xf8\x36\xc2\x70" 29421 "\x03\x27\x36\xa2\xc0\xde\xf2\xc7" 29422 "\x55\xd4\x66\xee\x9a\x9e\xaa\x99" 29423 "\x2b\xeb\xa2\x6f\x17\x80\x60\x64" 29424 "\xed\x73\xdb\xc1\x70\xda\xde\x67" 29425 "\xcd\x6e\xc9\xfa\x3f\xef\x49\xd9" 29426 "\x18\x42\xf1\x87\x6e\x2c\xac\xe1" 29427 "\x12\x26\x52\xbe\x3e\xf1\xcc\x85" 29428 "\x9a\xd1\x9e\xc1\x02\xd3\xca\x2b" 29429 "\x99\xe7\xe8\x95\x7f\x91\x4b\xc0" 29430 "\xab\xd4\x5a\xf7\x88\x1c\x7e\xea" 29431 "\xd3\x15\x38\x26\xb5\xa3\xf2\xfc" 29432 "\xc4\x12\x70\x5a\x37\x83\x49\xac" 29433 "\xf4\x5e\x4c\xc8\x64\x03\x98\xad" 29434 "\xd2\xbb\x8d\x90\x01\x80\xa1\x2a" 29435 "\x23\xd1\x8d\x26\x43\x7d\x2b\xd0" 29436 "\x87\xe1\x8e\x6a\xb3\x73\x9d\xc2" 29437 "\x66\x75\xee\x2b\x41\x1a\xa0\x3b" 29438 "\x1b\xdd\xb9\x21\x69\x5c\xef\x52" 29439 "\x21\x57\xd6\x53\x31\x67\x7e\xd1" 29440 "\xd0\x67\x8b\xc0\x97\x2c\x0a\x09" 29441 "\x1d\xd4\x35\xc5\xd4\x11\x68\xf8" 29442 "\x5e\x75\xaf\x0c\xc3\x9d\xa7\x09" 29443 "\x38\xf5\x77\xb9\x80\xa9\x6b\xbd" 29444 "\x0c\x98\xb4\x8d\xf0\x35\x5a\x19" 29445 "\x1d\xf8\xb3\x5b\x45\xad\x4e\x4e" 29446 "\xd5\x59\xf5\xd7\x53\x63\x3e\x97" 29447 "\x7f\x91\x50\x65\x61\x21\xa9\xb7" 29448 "\x65\x12\xdc\x01\x56\x40\xe0\xb1" 29449 "\xe1\x23\xba\x9d\xb9\xc4\x8b\x1f" 29450 "\xa6\xfe\x24\x19\xe9\x42\x9f\x9b" 29451 "\x02\x48\xaa\x60\x0b\xf5\x7f\x8f" 29452 "\x35\x70\xed\x85\xb8\xc4\xdc\xb7" 29453 "\x16\xb7\x03\xe0\x2e\xa0\x25\xab" 29454 "\x02\x1f\x97\x8e\x5a\x48\xb6\xdb" 29455 "\x25\x7a\x16\xf6\x4c\xec\xec\xa6" 29456 "\xc1\x4e\xe3\x4e\xe3\x27\x78\xc8" 29457 "\xb6\xd7\x01\x61\x98\x1b\x38\xaa" 29458 "\x36\x93\xac\x6d\x05\x61\x4d\x5a" 29459 "\xc9\xe5\x27\xa9\x22\xf2\x38\x5e" 29460 "\x9e\xe5\xf7\x4a\x64\xd2\x14\x15" 29461 "\x71\x7c\x65\x6e\x90\x31\xc7\x49" 29462 "\x25\xec\x9f\xf1\xb2\xd6\xbc\x20" 29463 "\x6a\x13\xd5\x70\x65\xfc\x8b\x66" 29464 "\x2c\xf1\x57\xc2\xe7\xb8\x89\xf7" 29465 "\x17\xb2\x45\x64\xe0\xb3\x8c\x0d" 29466 "\x69\x57\xf9\x5c\xff\xc2\x3c\x18" 29467 "\x1e\xfd\x4b\x5e\x0d\x20\x01\x1a" 29468 "\xa3\xa3\xb3\x76\x98\x9c\x92\x41" 29469 "\xb4\xcd\x9f\x8f\x88\xcb\xb1\xb5" 29470 "\x25\x87\x45\x4c\x07\xa7\x15\x99" 29471 "\x24\x85\x15\x9e\xfc\x28\x98\x2b" 29472 "\xd0\x22\x0a\xcc\x62\x12\x86\x0a" 29473 "\xa8\x0e\x7d\x15\x32\x98\xae\x2d" 29474 "\x95\x25\x55\x33\x41\x5b\x8d\x75" 29475 "\x46\x61\x01\xa4\xfb\xf8\x6e\xe5" 29476 "\xec\x24\xfe\xd2\xd2\x46\xe2\x3a" 29477 "\x77\xf3\xa1\x39\xd3\x39\x32\xd8" 29478 "\x2a\x6b\x44\xd7\x70\x36\x23\x89" 29479 "\x4f\x75\x85\x42\x70\xd4\x2d\x4f" 29480 "\xea\xfc\xc9\xfe\xb4\x86\xd8\x73" 29481 "\x1d\xeb\xf7\x54\x0a\x47\x7e\x2c" 29482 "\x04\x7b\x47\xea\x52\x8f\x13\x1a" 29483 "\xf0\x19\x65\xe2\x0a\x1c\xae\x89" 29484 "\xe1\xc5\x87\x6e\x5d\x7f\xf8\x79" 29485 "\x08\xbf\xd2\x7f\x2c\x95\x22\xba" 29486 "\x32\x78\xa9\xf6\x03\x98\x18\xed" 29487 "\x15\xbf\x49\xb0\x6c\xa1\x4b\xb0" 29488 "\xf3\x17\xd5\x35\x5d\x19\x57\x5b" 29489 "\xf1\x07\x1e\xaa\x4d\xef\xd0\xd6" 29490 "\x72\x12\x6b\xd9\xbc\x10\x49\xc5" 29491 "\x28\xd4\xec\xe9\x8a\xb1\x6d\x50" 29492 "\x4b\xf3\x44\xb8\x49\x04\x62\xe9" 29493 "\xa4\xd8\x5a\xe7\x90\x02\xb7\x1e" 29494 "\x66\x89\xbc\x5a\x71\x4e\xbd\xf8" 29495 "\x18\xfb\x34\x2f\x67\xa2\x65\x71" 29496 "\x00\x63\x22\xef\x3a\xa5\x18\x0e" 29497 "\x54\x76\xaa\x58\xae\x87\x23\x93" 29498 "\xb0\x3c\xa2\xa4\x07\x77\x3e\xd7" 29499 "\x1a\x9c\xfe\x32\xc3\x54\x04\x4e" 29500 "\xd6\x98\x44\xda\x98\xf8\xd3\xc8" 29501 "\x1c\x07\x4b\xcd\x97\x5d\x96\x95" 29502 "\x9a\x1d\x4a\xfc\x19\xcb\x0b\xd0" 29503 "\x6d\x43\x3a\x9a\x39\x1c\xa8\x90" 29504 "\x9f\x53\x8b\xc4\x41\x75\xb5\xb9" 29505 "\x91\x5f\x02\x0a\x57\x6c\x8f\xc3" 29506 "\x1b\x0b\x3a\x8b\x58\x3b\xbe\x2e" 29507 "\xdc\x4c\x23\x71\x2e\x14\x06\x21" 29508 "\x0b\x3b\x58\xb8\x97\xd1\x00\x62" 29509 "\x2e\x74\x3e\x6e\x21\x8a\xcf\x60" 29510 "\xda\x0c\xf8\x7c\xfd\x07\x55\x7f" 29511 "\xb9\x1d\xda\x34\xc7\x27\xbf\x2a" 29512 "\xd9\xba\x41\x9b\x37\xa1\xc4\x5d" 29513 "\x03\x01\xce\xbb\x58\xff\xee\x74" 29514 "\x08\xbd\x0b\x80\xb1\xd5\xf8\xb5" 29515 "\x92\xf9\xbb\xbe\x03\xb5\xec\xbe" 29516 "\x17\xee\xd7\x4e\x87\x2b\x61\x1b" 29517 "\x27\xc3\x51\x50\xa0\x02\x73\x00" 29518 "\x1a\xea\x2a\x2b\xf8\xf6\xe6\x96" 29519 "\x75\x00\x56\xcc\xcb\x7a\x24\x29" 29520 "\xe8\xdb\x95\xbf\x4e\x8f\x0a\x78" 29521 "\xb8\xeb\x5a\x90\x37\xd0\x21\x94" 29522 "\x6a\x89\x6b\x41\x3a\x1b\xa7\x20" 29523 "\x43\x37\xda\xad\x81\xdd\xb4\xfc" 29524 "\xe9\x60\x82\x77\x44\x3f\x89\x23" 29525 "\x35\x04\x8f\xa1\xe8\xc0\xb6\x9f" 29526 "\x56\xa7\x86\x3d\x65\x9c\x57\xbb" 29527 "\x27\xdb\xe1\xb2\x13\x07\x9c\xb1" 29528 "\x60\x8b\x38\x6b\x7f\x24\x28\x14" 29529 "\xfe\xbf\xc0\xda\x61\x6e\xc2\xc7" 29530 "\x63\x36\xa8\x02\x54\x93\xb0\xba" 29531 "\xbd\x4d\x29\x14\x5a\x8b\xbc\x78" 29532 "\xb3\xa6\xc5\x15\x5d\x36\x4d\x38" 29533 "\x20\x9c\x1e\x98\x2e\x16\x89\x33" 29534 "\x66\xa2\x54\x57\xcc\xde\x12\xa6" 29535 "\x3b\x44\xf1\xac\x36\x3b\x97\xc1" 29536 "\x96\x94\xf2\x67\x57\x23\x9c\x29" 29537 "\xcd\xb7\x24\x2a\x8c\x86\xee\xaa" 29538 "\x0f\xee\xaf\xa0\xec\x40\x8c\x08" 29539 "\x18\xa1\xb4\x2c\x09\x46\x11\x7e" 29540 "\x97\x84\xb1\x03\xa5\x3e\x59\x05" 29541 "\x07\xc5\xf0\xcc\xb6\x71\x72\x2a" 29542 "\xa2\x02\x78\x60\x0b\xc4\x47\x93" 29543 "\xab\xcd\x67\x2b\xf5\xc5\x67\xa0" 29544 "\xc0\x3c\x6a\xd4\x7e\xc9\x93\x0c" 29545 "\x02\xdc\x15\x87\x48\x16\x26\x18" 29546 "\x4e\x0b\x16\x0e\xb3\x02\x3e\x4b" 29547 "\xc2\xe4\x49\x08\x9f\xb9\x8b\x1a" 29548 "\xca\x10\xe8\x6c\x58\xa9\x7e\xb8" 29549 "\xbe\xff\x58\x0e\x8a\xfb\x35\x93" 29550 "\xcc\x76\x7d\xd9\x44\x7c\x31\x96" 29551 "\xc0\x29\x73\xd3\x91\x0a\xc0\x65" 29552 "\x5c\xbe\xe7\x4e\xda\x31\x85\xf2" 29553 "\x72\xee\x34\xbe\x41\x90\xd4\x07" 29554 "\x50\x64\x56\x81\xe3\x27\xfb\xcc" 29555 "\xb7\x5c\x36\xb4\x6e\xbd\x23\xf8" 29556 "\xe8\x71\xce\xa8\x73\x77\x82\x74" 29557 "\xab\x8d\x0e\xe5\x93\x68\xb1\xd2" 29558 "\x51\xc2\x18\x58\xd5\x3f\x29\x6b" 29559 "\x2e\xd0\x88\x7f\x4a\x9d\xa2\xb8" 29560 "\xae\x96\x09\xbf\x47\xae\x7d\x12" 29561 "\x70\x67\xf1\xdd\xda\xdf\x47\x57" 29562 "\xc9\x2c\x0f\xcb\xf3\x57\xd4\xda" 29563 "\x00\x2e\x13\x48\x8f\xc0\xaa\x46" 29564 "\xe1\xc1\x57\x75\x1e\xce\x74\xc2" 29565 "\x82\xef\x31\x85\x8e\x38\x56\xff" 29566 "\xcb\xab\xe0\x78\x40\x51\xd3\xc5" 29567 "\xc3\xb1\xee\x9b\xd7\x72\x7f\x13" 29568 "\x83\x7f\x45\x49\x45\xa1\x05\x8e" 29569 "\xdc\x83\x81\x3c\x24\x28\x87\x08" 29570 "\xa0\x70\x73\x80\x42\xcf\x5c\x26" 29571 "\x39\xa5\xc5\x90\x5c\x56\xda\x58" 29572 "\x93\x45\x5d\x45\x64\x59\x16\x3f" 29573 "\xf1\x20\xf7\xa8\x2a\xd4\x3d\xbd" 29574 "\x17\xfb\x90\x01\xcf\x1e\x71\xab" 29575 "\x22\xa2\x24\xb5\x80\xac\xa2\x9a" 29576 "\x9c\x2d\x85\x69\xa7\x87\x33\x55" 29577 "\x65\x72\xc0\x91\x2a\x3d\x05\x33" 29578 "\x25\x0d\x29\x25\x9f\x45\x4e\xfa" 29579 "\x5d\x90\x3f\x34\x08\x54\xdb\x7d" 29580 "\x94\x20\xa2\x3b\x10\x01\xa4\x89" 29581 "\x1e\x90\x4f\x36\x3f\xc2\x40\x07" 29582 "\x3f\xab\x2e\x89\xce\x80\xe1\xf5" 29583 "\xac\xaf\x17\x10\x18\x0f\x4d\xe3" 29584 "\xfc\x82\x2b\xbe\xe2\x91\xfa\x5b" 29585 "\x9a\x9b\x2a\xd7\x99\x8d\x8f\xdc" 29586 "\x54\x99\xc4\xa3\x97\xfd\xd3\xdb" 29587 "\xd1\x51\x7c\xce\x13\x5c\x3b\x74" 29588 "\xda\x9a\xe3\xdc\xdc\x87\x84\x98" 29589 "\x16\x6d\xb0\x3d\x65\x57\x0b\xb2" 29590 "\xb8\x04\xd4\xea\x49\x72\xc3\x66" 29591 "\xbc\xdc\x91\x05\x2b\xa6\x5e\xeb" 29592 "\x55\x72\x3e\x34\xd4\x28\x4b\x9c" 29593 "\x07\x51\xf7\x30\xf3\xca\x04\xc1" 29594 "\xd3\x69\x50\x2c\x27\x27\xc4\xb9" 29595 "\x56\xc7\xa2\xd2\x66\x29\xea\xe0" 29596 "\x25\xb8\x49\xd1\x60\xc9\x5e\xb5" 29597 "\xed\x87\xb8\x74\x98\x0d\x16\x86" 29598 "\x2a\x02\x24\xde\xb9\xa9\x5e\xf0" 29599 "\xdd\xf7\x55\xb0\x26\x7a\x93\xd4" 29600 "\xe6\x7d\xd2\x43\xb2\x8f\x7e\x9a" 29601 "\x5d\x81\xe6\x28\xe5\x96\x7d\xc8" 29602 "\x33\xe0\x56\x57\xe2\xa0\xf2\x1d" 29603 "\x61\x78\x60\xd5\x81\x70\xa4\x11" 29604 "\x43\x36\xe9\xd1\x68\x27\x21\x3c" 29605 "\xb2\xa2\xad\x5f\x04\xd4\x55\x00" 29606 "\x25\x71\x91\xed\x3a\xc9\x7b\x57" 29607 "\x7b\xd1\x8a\xfb\x0e\xf5\x7b\x08" 29608 "\xa9\x26\x4f\x24\x5f\xdd\x79\xed" 29609 "\x19\xc4\xe1\xd5\xa8\x66\x60\xfc" 29610 "\x5d\x48\x11\xb0\xa3\xc3\xe6\xc0" 29611 "\xc6\x16\x7d\x20\x3f\x7c\x25\x52" 29612 "\xdf\x05\xdd\xb5\x0b\x92\xee\xc5" 29613 "\xe6\xd2\x7c\x3e\x2e\xd5\xac\xda" 29614 "\xdb\x48\x31\xac\x87\x13\x8c\xfa" 29615 "\xac\x18\xbc\xd1\x7f\x2d\xc6\x19" 29616 "\x8a\xfa\xa0\x97\x89\x26\x50\x46" 29617 "\x9c\xca\xe1\x73\x97\x26\x0a\x50" 29618 "\x95\xec\x79\x19\xf6\xbd\x9a\xa1" 29619 "\xcf\xc9\xab\xf7\x85\x84\xb2\xf5" 29620 "\x2c\x7c\x73\xaa\xe2\xc2\xfb\xcd" 29621 "\x5f\x08\x46\x2f\x8e\xd9\xff\xfd" 29622 "\x19\xf6\xf4\x5d\x2b\x4b\x54\xe2" 29623 "\x27\xaa\xfd\x2c\x5f\x75\x7c\xf6" 29624 "\x2c\x95\x77\xcc\x90\xa2\xda\x1e" 29625 "\x85\x37\x18\x34\x1d\xcf\x1b\xf2" 29626 "\x86\xda\x71\xfb\x72\xab\x87\x0f" 29627 "\x1e\x10\xb3\xba\x51\xea\x29\xd3" 29628 "\x8c\x87\xce\x4b\x66\xbf\x60\x6d" 29629 "\x81\x7c\xb8\x9c\xcc\x2e\x35\x02" 29630 "\x02\x32\x4a\x7a\x24\xc4\x9f\xce" 29631 "\xf0\x8a\x85\x90\xf3\x24\x95\x02" 29632 "\xec\x13\xc1\xa4\xdd\x44\x01\xef" 29633 "\xf6\xaa\x30\x70\xbf\x4e\x1a\xb9" 29634 "\xc0\xff\x3b\x57\x5d\x12\xfe\xc3" 29635 "\x1d\x5c\x3f\x74\xf9\xd9\x64\x61" 29636 "\x20\xb2\x76\x79\x38\xd2\x21\xfb" 29637 "\xc9\x32\xe8\xcc\x8e\x5f\xd7\x01" 29638 "\x9e\x25\x76\x4d\xa7\xc1\x33\x21" 29639 "\xfa\xcf\x98\x40\xd2\x1d\x48\xbd" 29640 "\xd0\xc0\x38\x90\x27\x9b\x89\x4a" 29641 "\x10\x1e\xaf\xa0\x78\x7d\x87\x2b" 29642 "\x72\x10\x02\xf0\x5d\x22\x8b\x22" 29643 "\xd7\x56\x7c\xd7\x6d\xcd\x9b\xc6" 29644 "\xbc\xb2\xa6\x36\xde\xac\x87\x14" 29645 "\x92\x93\x47\xca\x7d\xf4\x0b\x88" 29646 "\xea\xbf\x3f\x2f\xa9\x94\x24\x13" 29647 "\xa1\x52\x29\xfd\x5d\xa9\x76\x85" 29648 "\x21\x62\x39\xa3\xf0\xf7\xb5\xa3" 29649 "\xe0\x6c\x1b\xcb\xdb\x41\x91\xc6" 29650 "\x4f\xaa\x26\x8b\x15\xd5\x84\x3a" 29651 "\xda\xd6\x05\xc8\x8c\x0f\xe9\x19" 29652 "\x00\x81\x38\xfb\x8f\xdf\xb0\x63" 29653 "\x75\xe0\xe8\x8f\xef\x4a\xe0\x83" 29654 "\x34\xe9\x4e\x06\xd7\xbb\xcd\xed" 29655 "\x70\x0c\x72\x80\x64\x94\x67\xad" 29656 "\x4a\xda\x82\xcf\x60\xfc\x92\x43" 29657 "\xe3\x2f\xd1\x1e\x81\x1d\xdc\x62" 29658 "\xec\xb1\xb0\xad\x4f\x43\x1d\x38" 29659 "\x4e\x0d\x90\x40\x29\x1b\x98\xf1" 29660 "\xbc\x70\x4e\x5a\x08\xbe\x88\x3a" 29661 "\x55\xfb\x8c\x33\x1f\x0a\x7d\x2d" 29662 "\xdc\x75\x03\xd2\x3b\xe8\xb8\x32" 29663 "\x13\xab\x04\xbc\xe2\x33\x44\xa6" 29664 "\xff\x6e\xba\xbd\xdc\xe2\xbf\x54" 29665 "\x99\x71\x76\x59\x3b\x7a\xbc\xde" 29666 "\xa1\x6e\x73\x62\x96\x73\x56\x66" 29667 "\xfb\x1a\x56\x91\x2a\x8b\x12\xb0" 29668 "\x82\x9f\x9b\x0c\x42\xc7\x22\x2c" 29669 "\xbc\x49\xc5\x3c\x3b\xbf\x52\x64" 29670 "\xd6\xd4\x03\x52\xf3\xfd\x13\x98" 29671 "\xcc\xd8\xaa\x3e\x1d\x1f\x04\x8a" 29672 "\x03\x41\x19\x5b\x31\xf3\x48\x83" 29673 "\x49\xa3\xdd\xc9\x7c\x01\x34\x64" 29674 "\xe5\xf3\xdf\xc9\x7f\x17\xa2\xf5" 29675 "\x9c\x21\x79\x93\x91\x93\xbf\x9b" 29676 "\xa5\xa5\xda\x1d\x55\x32\x72\x78" 29677 "\xa6\x45\x2d\x21\x97\x6b\xfe\xbc" 29678 "\xd0\xe7\x8e\x97\x66\x85\x9e\x41" 29679 "\xfa\x2c\x8a\xee\x0d\x5a\x18\xf2" 29680 "\x15\x89\x8f\xfb\xbc\xd8\xa6\x0c" 29681 "\x83\xcc\x20\x08\xce\x70\xe5\xe6" 29682 "\xbb\x7d\x9f\x11\x5f\x1e\x16\x68" 29683 "\x18\xad\xa9\x4b\x04\x97\x8c\x18" 29684 "\xed\x2a\x70\x79\x39\xcf\x36\x72" 29685 "\x1e\x3e\x6d\x3c\x19\xce\x13\x19" 29686 "\xb5\x13\xe7\x02\xd8\x5c\xec\x0c" 29687 "\x81\xc5\xe5\x86\x10\x83\x9e\x67" 29688 "\x3b\x74\x29\x63\xda\x23\xbc\x43" 29689 "\xe9\x73\xa6\x2d\x25\x77\x66\xd0" 29690 "\x2e\x05\x38\xae\x2e\x0e\x7f\xaf" 29691 "\x82\xed\xef\x28\x39\x4c\x4b\x6f" 29692 "\xdb\xa1\xb5\x79\xd0\x5b\x50\x77" 29693 "\x6d\x75\x9f\x3c\xcf\xde\x41\xb8" 29694 "\xa9\x13\x11\x60\x19\x23\xc7\x35" 29695 "\x48\xbc\x14\x08\xf9\x57\xfe\x15" 29696 "\xfd\xb2\xbb\x8c\x44\x3b\xf1\x62" 29697 "\xbc\x0e\x01\x45\x39\xc0\xbb\xce" 29698 "\xf5\xb7\xe1\x16\x7b\xcc\x8d\x7f" 29699 "\xd3\x15\x36\xef\x8e\x4b\xaa\xee" 29700 "\x49\x0c\x6e\x9b\x8c\x0e\x9f\xe0" 29701 "\xd5\x7b\xdd\xbc\xb3\x67\x53\x6d" 29702 "\x8b\xbe\xa3\xcd\x1e\x37\x9d\xc3" 29703 "\x61\x36\xf4\x77\xec\x2b\xc7\x8b" 29704 "\xd7\xad\x8d\x23\xdd\xf7\x9d\xf1" 29705 "\x61\x1c\xbf\x09\xa5\x5e\xb9\x14" 29706 "\xa6\x3f\x1a\xd9\x12\xb4\xef\x56" 29707 "\x20\xa0\x77\x3e\xab\xf1\xb9\x91" 29708 "\x5a\x92\x85\x5c\x92\x15\xb2\x1f" 29709 "\xaf\xb0\x92\x23\x2d\x27\x8b\x7e" 29710 "\x12\xcc\x56\xaa\x62\x85\x15\xd7" 29711 "\x41\x89\x62\xd6\xd9\xd0\x6d\xbd" 29712 "\x21\xa8\x49\xb6\x35\x40\x2f\x8d" 29713 "\x2e\xfa\x24\x1e\x30\x12\x9c\x05" 29714 "\x59\xfa\xe1\xad\xc0\x53\x09\xda" 29715 "\xc0\x2e\x9d\x24\x0e\x4b\x6e\xd7" 29716 "\x68\x32\x6a\xa0\x3c\x23\xb6\x5a" 29717 "\x90\xb1\x1f\x62\xc8\x37\x36\x88" 29718 "\xa4\x4d\x91\x12\x8d\x51\x8d\x81" 29719 "\x44\x21\xfe\xd3\x61\x8d\xea\x5b" 29720 "\x87\x24\xa9\xe9\x87\xde\x75\x77" 29721 "\xc6\xa0\xd3\xf6\x99\x8b\x32\x56" 29722 "\x47\xc6\x60\x65\xb6\x4f\xd1\x59" 29723 "\x08\xb2\xe0\x15\x3e\xcb\x2c\xd6" 29724 "\x8d\xc6\xbf\xda\x63\xe2\x04\x88" 29725 "\x30\x9f\x37\x38\x98\x1c\x3e\x7a" 29726 "\xa8\x8f\x3e\x2c\xcf\x90\x15\x6e" 29727 "\x5d\xe9\x76\xd5\xdf\xc6\x2f\xf6" 29728 "\xf5\x4a\x86\xbd\x36\x2a\xda\xdf" 29729 "\x2f\xd8\x6e\x15\x18\x6b\xe9\xdb" 29730 "\x26\x54\x6e\x60\x3b\xb8\xf9\x91" 29731 "\xc1\x1d\xc0\x4f\x26\x8b\xdf\x55" 29732 "\x47\x2f\xce\xdd\x4e\x93\x58\x3f" 29733 "\x70\xdc\xf9\x4e\x9b\x37\x5e\x4f" 29734 "\x39\xb9\x30\xe6\xce\xdb\xaf\x46" 29735 "\xca\xfa\x52\xc9\x75\x3e\xd6\x96" 29736 "\xe8\x97\xf1\xb1\x64\x31\x71\x1e" 29737 "\x9f\xb6\xff\x69\xd6\xcd\x85\x4e" 29738 "\x20\xf5\xfc\x84\x3c\xaf\xcc\x8d" 29739 "\x5b\x52\xb8\xa2\x1c\x38\x47\x82" 29740 "\x96\xff\x06\x4c\xaf\x8a\xf4\x8f" 29741 "\xf8\x15\x97\xf6\xc3\xbc\x8c\x9e" 29742 "\xc2\x06\xd9\x64\xb8\x1b\x0d\xd1" 29743 "\x53\x55\x83\x7d\xcb\x8b\x7d\x20" 29744 "\xa7\x70\xcb\xaa\x25\xae\x5a\x4f" 29745 "\xdc\x66\xad\xe4\x54\xff\x09\xef" 29746 "\x25\xcb\xac\x59\x89\x1d\x06\xcf" 29747 "\xc7\x74\xe0\x5d\xa6\xd0\x04\xb4" 29748 "\x41\x75\x34\x80\x6c\x4c\xc9\xd0" 29749 "\x51\x0c\x0f\x84\x26\x75\x69\x23" 29750 "\x81\x67\xde\xbf\x6c\x57\x8a\xc4" 29751 "\xba\x91\xba\x8c\x2c\x75\xeb\x55" 29752 "\xe5\x1b\x13\xbc\xaa\xec\x31\xdb" 29753 "\xcc\x00\x3b\xe6\x50\xd8\xc3\xcc" 29754 "\x9c\xb8\x6e\xb4\x9b\x16\xee\x74" 29755 "\x26\x51\xda\x39\xe6\x31\xa1\xb2" 29756 "\xd7\x6f\xcb\xae\x7d\x9f\x38\x7d" 29757 "\x86\x49\x2a\x16\x5c\xc0\x08\xea" 29758 "\x6b\x55\x85\x47\xbb\x90\xba\x69" 29759 "\x56\xa5\x44\x62\x5b\xe6\x3b\xcc" 29760 "\xe7\x6d\x1e\xca\x4b\xf3\x86\xe0" 29761 "\x09\x76\x51\x83\x0a\x46\x19\x61" 29762 "\xf0\xce\xe1\x06\x7d\x06\xb4\xfe" 29763 "\xd9\xd3\x64\x8e\x0f\xd9\x64\x9e" 29764 "\x74\x44\x97\x5d\x92\x7b\xe3\xcf" 29765 "\x51\x44\xe7\xf2\xe7\xc0\x0c\xc2" 29766 "\xf1\xf7\xa6\x36\x52\x2f\x7c\x09" 29767 "\xfe\x8c\x59\x77\x52\x6a\x7e\xb3" 29768 "\x2b\xb9\x17\x78\xe4\xf2\x82\x62" 29769 "\x7f\x68\x8e\x04\xb4\x8f\x60\xd2" 29770 "\xc6\x22\x1e\x0f\x3a\x8e\x3c\xb2" 29771 "\x60\xbc\xa9\xb3\xda\xbd\x50\xe4" 29772 "\x33\x98\xdd\x6f\xe9\x3b\x77\x57" 29773 "\xeb\x7c\x8f\xbc\xfc\x34\x34\xb9" 29774 "\x40\x31\x67\xcf\xfe\x22\x20\xa5" 29775 "\x97\xe8\x4c\xa2\xc3\x94\xc6\x28" 29776 "\xa6\x24\xe5\xa6\xb5\xd8\x24\xef" 29777 "\x16\xa1\xc9\xe5\x92\xe6\x8c\x45" 29778 "\x24\x24\x51\x22\x1e\xad\xef\x2f" 29779 "\xb6\xbe\xfc\x92\x20\xac\x45\xe6" 29780 "\xc0\xb0\xc8\xfb\x21\x34\xd4\x05" 29781 "\x54\xb3\x99\xa4\xfe\xa9\xd5\xb5" 29782 "\x3b\x72\x83\xf6\xe2\xf9\x88\x0e" 29783 "\x20\x80\x3e\x4e\x8f\xa1\x75\x69" 29784 "\x43\x5a\x7c\x38\x62\x51\xb5\xb7" 29785 "\x84\x95\x3f\x6d\x24\xcc\xfd\x4b" 29786 "\x4a\xaa\x97\x83\x6d\x16\xa8\xc5" 29787 "\x18\xd9\xb9\xfe\xe2\x3f\xe8\xbd" 29788 "\x37\x44\xdf\x79\x3b\x34\x19\x1a" 29789 "\x65\x5e\xc7\x61\x1f\x17\x5e\x84" 29790 "\x20\x72\x32\x98\x8c\x9e\xac\x1f" 29791 "\x6e\x32\xae\x86\x46\x4f\x0f\x64" 29792 "\x3f\xce\x96\xe6\x02\x41\x53\x1f" 29793 "\x35\x30\x57\x7f\xfe\xb7\x47\xb9" 29794 "\x0c\x2f\x14\x34\x9b\x1c\x88\x17" 29795 "\xb5\xe5\x94\x17\x3e\xdc\x4d\x49" 29796 "\xe1\x5d\x75\x3e\xa6\x16\x42\xd4" 29797 "\x59\xb5\x24\x7c\x4c\x54\x1c\xf9" 29798 "\xd6\xed\x69\x22\x5f\x74\xc9\xa9" 29799 "\x7c\xb8\x09\xa7\xf9\x2b\x0d\x5f" 29800 "\x42\xff\x4e\x57\xde\x0c\x67\x45" 29801 "\xa4\x6e\xa0\x7e\x28\x34\xc5\xfe" 29802 "\x58\x7e\xda\xec\x9f\x0b\x31\x2a" 29803 "\x1f\x1b\x98\xad\x14\xcf\x9f\x96" 29804 "\xf8\x87\x0e\x14\x19\x81\x23\x53" 29805 "\x5f\x38\x08\xd9\xc1\xcb\xb2\xc5" 29806 "\x19\x72\x75\x01\xd4\xcf\xd9\x91" 29807 "\xfc\x48\xcc\xa3\x3c\xe6\x4c\xc6" 29808 "\x73\xde\x5e\x90\xce\x6c\x85\x43" 29809 "\x0d\xdf\xe3\x8c\x02\x62\xef\xac" 29810 "\xb8\x05\x80\x81\xf6\x22\x30\xad" 29811 "\x30\xa8\xcb\x55\x1e\xe6\x05\x7f" 29812 "\xc5\x58\x1a\x78\xb7\x2f\x8e\x3c" 29813 "\x80\x09\xca\xa2\x9a\x72\xeb\x10" 29814 "\x84\x54\xaa\x98\x35\x5e\xb1\xc2" 29815 "\xb7\x73\x14\x69\xef\xf8\x28\x43" 29816 "\x36\xd3\x10\x0a\xd6\x69\xf8\xc8" 29817 "\xbb\xe9\xe9\xf9\x29\x52\xf8\x6f" 29818 "\x12\x78\xf9\xc6\xb2\x12\xfd\x39" 29819 "\xa9\xeb\xe2\x47\xb9\x22\xc5\x8f" 29820 "\x4d\xb1\x17\x40\x02\x84\xed\x53" 29821 "\xc5\xfa\xc1\xcd\x59\x56\x93\xaa" 29822 "\x3f\x23\x3f\x02\xb7\xe9\x6e\xa0" 29823 "\xbc\x96\xb8\xb2\xf8\x04\x19\x87" 29824 "\xe9\x4f\x29\xbf\x3a\xcb\x6d\x48" 29825 "\xc9\xe7\x1f\xb7\xa8\xf8\xd4\xb4" 29826 "\x6d\x0f\xb4\xf6\x44\x11\x0f\xf7" 29827 "\x3d\xd2\x36\x05\x67\xa1\x46\x81" 29828 "\x90\xe9\x60\x64\xfa\x52\x87\x37" 29829 "\x44\x01\xbd\x58\xe1\xda\xda\x1e" 29830 "\xa7\x09\xf7\x43\x31\x2b\x4b\x55" 29831 "\xbd\x0d\x53\x7f\x12\x6c\xf5\x07" 29832 "\xfc\x61\xda\xd6\x0a\xbd\x89\x5f" 29833 "\x2c\xf5\xa8\x1f\x0d\x60\xe4\x3c" 29834 "\x5d\x94\x8a\x1f\x64\xce\xd5\x16" 29835 "\x73\xbc\xbe\xb1\x85\x28\xcb\x0b" 29836 "\x47\x5c\x1f\x66\x25\x89\x61\x6a" 29837 "\xa7\xcd\xf8\x1b\x31\x88\x42\x71" 29838 "\x58\x65\x53\xd5\xc0\xa3\x56\x2e" 29839 "\xb6\x86\x9e\x13\x78\x34\x36\x85" 29840 "\xbb\xce\x6e\x54\x33\xb9\x97\xc5" 29841 "\x72\xb8\xe0\x13\x34\x04\xbf\x83" 29842 "\xbf\x78\x1d\x7c\x23\x34\x90\xe0" 29843 "\x57\xd4\x3f\xc6\x61\xe3\xca\x96" 29844 "\x13\xdd\x9e\x20\x51\x18\x73\x37" 29845 "\x69\x37\xfb\xe5\x60\x1f\xf2\xa1" 29846 "\xef\xa2\x6e\x16\x32\x8e\xc3\xb6" 29847 "\x21\x5e\xc2\x1c\xb6\xc6\x96\x72" 29848 "\x4f\xa6\x85\x69\xa9\x5d\xb2\x2e" 29849 "\xac\xfe\x6e\xc3\xe7\xb3\x51\x08" 29850 "\x66\x2a\xac\x59\xb3\x73\x86\xae" 29851 "\x6d\x85\x97\x37\x68\xef\xa7\x85" 29852 "\xb7\xdd\xdd\xd9\x85\xc9\x57\x01" 29853 "\x10\x2b\x9a\x1e\x44\x12\x87\xa5" 29854 "\x60\x1f\x88\xae\xbf\x14\x2d\x05" 29855 "\x4c\x60\x85\x8a\x45\xac\x0f\xc2", 29856 .len = 4096, 29857 } 29858 }; 29859 29860 /* Adiantum with XChaCha20 instead of XChaCha12 */ 29861 /* Test vectors from https://github.com/google/adiantum */ 29862 static const struct cipher_testvec adiantum_xchacha20_aes_tv_template[] = { 29863 { 29864 .key = "\x9e\xeb\xb2\x49\x3c\x1c\xf5\xf4" 29865 "\x6a\x99\xc2\xc4\xdf\xb1\xf4\xdd" 29866 "\x75\x20\x57\xea\x2c\x4f\xcd\xb2" 29867 "\xa5\x3d\x7b\x49\x1e\xab\xfd\x0f", 29868 .klen = 32, 29869 .iv = "\xdf\x63\xd4\xab\xd2\x49\xf3\xd8" 29870 "\x33\x81\x37\x60\x7d\xfa\x73\x08" 29871 "\xd8\x49\x6d\x80\xe8\x2f\x62\x54" 29872 "\xeb\x0e\xa9\x39\x5b\x45\x7f\x8a", 29873 .ptext = "\x67\xc9\xf2\x30\x84\x41\x8e\x43" 29874 "\xfb\xf3\xb3\x3e\x79\x36\x7f\xe8", 29875 .ctext = "\xf6\x78\x97\xd6\xaa\x94\x01\x27" 29876 "\x2e\x4d\x83\xe0\x6e\x64\x9a\xdf", 29877 .len = 16, 29878 }, { 29879 .key = "\x36\x2b\x57\x97\xf8\x5d\xcd\x99" 29880 "\x5f\x1a\x5a\x44\x1d\x92\x0f\x27" 29881 "\xcc\x16\xd7\x2b\x85\x63\x99\xd3" 29882 "\xba\x96\xa1\xdb\xd2\x60\x68\xda", 29883 .klen = 32, 29884 .iv = "\xef\x58\x69\xb1\x2c\x5e\x9a\x47" 29885 "\x24\xc1\xb1\x69\xe1\x12\x93\x8f" 29886 "\x43\x3d\x6d\x00\xdb\x5e\xd8\xd9" 29887 "\x12\x9a\xfe\xd9\xff\x2d\xaa\xc4", 29888 .ptext = "\x5e\xa8\x68\x19\x85\x98\x12\x23" 29889 "\x26\x0a\xcc\xdb\x0a\x04\xb9\xdf" 29890 "\x4d\xb3\x48\x7b\xb0\xe3\xc8\x19" 29891 "\x43\x5a\x46\x06\x94\x2d\xf2", 29892 .ctext = "\x4b\xb8\x90\x10\xdf\x7f\x64\x08" 29893 "\x0e\x14\x42\x5f\x00\x74\x09\x36" 29894 "\x57\x72\xb5\xfd\xb5\x5d\xb8\x28" 29895 "\x0c\x04\x91\x14\x91\xe9\x37", 29896 .len = 31, 29897 }, { 29898 .key = "\xa5\x28\x24\x34\x1a\x3c\xd8\xf7" 29899 "\x05\x91\x8f\xee\x85\x1f\x35\x7f" 29900 "\x80\x3d\xfc\x9b\x94\xf6\xfc\x9e" 29901 "\x19\x09\x00\xa9\x04\x31\x4f\x11", 29902 .klen = 32, 29903 .iv = "\xa1\xba\x49\x95\xff\x34\x6d\xb8" 29904 "\xcd\x87\x5d\x5e\xfd\xea\x85\xdb" 29905 "\x8a\x7b\x5e\xb2\x5d\x57\xdd\x62" 29906 "\xac\xa9\x8c\x41\x42\x94\x75\xb7", 29907 .ptext = "\x69\xb4\xe8\x8c\x37\xe8\x67\x82" 29908 "\xf1\xec\x5d\x04\xe5\x14\x91\x13" 29909 "\xdf\xf2\x87\x1b\x69\x81\x1d\x71" 29910 "\x70\x9e\x9c\x3b\xde\x49\x70\x11" 29911 "\xa0\xa3\xdb\x0d\x54\x4f\x66\x69" 29912 "\xd7\xdb\x80\xa7\x70\x92\x68\xce" 29913 "\x81\x04\x2c\xc6\xab\xae\xe5\x60" 29914 "\x15\xe9\x6f\xef\xaa\x8f\xa7\xa7" 29915 "\x63\x8f\xf2\xf0\x77\xf1\xa8\xea" 29916 "\xe1\xb7\x1f\x9e\xab\x9e\x4b\x3f" 29917 "\x07\x87\x5b\x6f\xcd\xa8\xaf\xb9" 29918 "\xfa\x70\x0b\x52\xb8\xa8\xa7\x9e" 29919 "\x07\x5f\xa6\x0e\xb3\x9b\x79\x13" 29920 "\x79\xc3\x3e\x8d\x1c\x2c\x68\xc8" 29921 "\x51\x1d\x3c\x7b\x7d\x79\x77\x2a" 29922 "\x56\x65\xc5\x54\x23\x28\xb0\x03", 29923 .ctext = "\xb1\x8b\xa0\x05\x77\xa8\x4d\x59" 29924 "\x1b\x8e\x21\xfc\x3a\x49\xfa\xd4" 29925 "\xeb\x36\xf3\xc4\xdf\xdc\xae\x67" 29926 "\x07\x3f\x70\x0e\xe9\x66\xf5\x0c" 29927 "\x30\x4d\x66\xc9\xa4\x2f\x73\x9c" 29928 "\x13\xc8\x49\x44\xcc\x0a\x90\x9d" 29929 "\x7c\xdd\x19\x3f\xea\x72\x8d\x58" 29930 "\xab\xe7\x09\x2c\xec\xb5\x44\xd2" 29931 "\xca\xa6\x2d\x7a\x5c\x9c\x2b\x15" 29932 "\xec\x2a\xa6\x69\x91\xf9\xf3\x13" 29933 "\xf7\x72\xc1\xc1\x40\xd5\xe1\x94" 29934 "\xf4\x29\xa1\x3e\x25\x02\xa8\x3e" 29935 "\x94\xc1\x91\x14\xa1\x14\xcb\xbe" 29936 "\x67\x4c\xb9\x38\xfe\xa7\xaa\x32" 29937 "\x29\x62\x0d\xb2\xf6\x3c\x58\x57" 29938 "\xc1\xd5\x5a\xbb\xd6\xa6\x2a\xe5", 29939 .len = 128, 29940 }, { 29941 .key = "\xd3\x81\x72\x18\x23\xff\x6f\x4a" 29942 "\x25\x74\x29\x0d\x51\x8a\x0e\x13" 29943 "\xc1\x53\x5d\x30\x8d\xee\x75\x0d" 29944 "\x14\xd6\x69\xc9\x15\xa9\x0c\x60", 29945 .klen = 32, 29946 .iv = "\x65\x9b\xd4\xa8\x7d\x29\x1d\xf4" 29947 "\xc4\xd6\x9b\x6a\x28\xab\x64\xe2" 29948 "\x62\x81\x97\xc5\x81\xaa\xf9\x44" 29949 "\xc1\x72\x59\x82\xaf\x16\xc8\x2c", 29950 .ptext = "\xc7\x6b\x52\x6a\x10\xf0\xcc\x09" 29951 "\xc1\x12\x1d\x6d\x21\xa6\x78\xf5" 29952 "\x05\xa3\x69\x60\x91\x36\x98\x57" 29953 "\xba\x0c\x14\xcc\xf3\x2d\x73\x03" 29954 "\xc6\xb2\x5f\xc8\x16\x27\x37\x5d" 29955 "\xd0\x0b\x87\xb2\x50\x94\x7b\x58" 29956 "\x04\xf4\xe0\x7f\x6e\x57\x8e\xc9" 29957 "\x41\x84\xc1\xb1\x7e\x4b\x91\x12" 29958 "\x3a\x8b\x5d\x50\x82\x7b\xcb\xd9" 29959 "\x9a\xd9\x4e\x18\x06\x23\x9e\xd4" 29960 "\xa5\x20\x98\xef\xb5\xda\xe5\xc0" 29961 "\x8a\x6a\x83\x77\x15\x84\x1e\xae" 29962 "\x78\x94\x9d\xdf\xb7\xd1\xea\x67" 29963 "\xaa\xb0\x14\x15\xfa\x67\x21\x84" 29964 "\xd3\x41\x2a\xce\xba\x4b\x4a\xe8" 29965 "\x95\x62\xa9\x55\xf0\x80\xad\xbd" 29966 "\xab\xaf\xdd\x4f\xa5\x7c\x13\x36" 29967 "\xed\x5e\x4f\x72\xad\x4b\xf1\xd0" 29968 "\x88\x4e\xec\x2c\x88\x10\x5e\xea" 29969 "\x12\xc0\x16\x01\x29\xa3\xa0\x55" 29970 "\xaa\x68\xf3\xe9\x9d\x3b\x0d\x3b" 29971 "\x6d\xec\xf8\xa0\x2d\xf0\x90\x8d" 29972 "\x1c\xe2\x88\xd4\x24\x71\xf9\xb3" 29973 "\xc1\x9f\xc5\xd6\x76\x70\xc5\x2e" 29974 "\x9c\xac\xdb\x90\xbd\x83\x72\xba" 29975 "\x6e\xb5\xa5\x53\x83\xa9\xa5\xbf" 29976 "\x7d\x06\x0e\x3c\x2a\xd2\x04\xb5" 29977 "\x1e\x19\x38\x09\x16\xd2\x82\x1f" 29978 "\x75\x18\x56\xb8\x96\x0b\xa6\xf9" 29979 "\xcf\x62\xd9\x32\x5d\xa9\xd7\x1d" 29980 "\xec\xe4\xdf\x1b\xbe\xf1\x36\xee" 29981 "\xe3\x7b\xb5\x2f\xee\xf8\x53\x3d" 29982 "\x6a\xb7\x70\xa9\xfc\x9c\x57\x25" 29983 "\xf2\x89\x10\xd3\xb8\xa8\x8c\x30" 29984 "\xae\x23\x4f\x0e\x13\x66\x4f\xe1" 29985 "\xb6\xc0\xe4\xf8\xef\x93\xbd\x6e" 29986 "\x15\x85\x6b\xe3\x60\x81\x1d\x68" 29987 "\xd7\x31\x87\x89\x09\xab\xd5\x96" 29988 "\x1d\xf3\x6d\x67\x80\xca\x07\x31" 29989 "\x5d\xa7\xe4\xfb\x3e\xf2\x9b\x33" 29990 "\x52\x18\xc8\x30\xfe\x2d\xca\x1e" 29991 "\x79\x92\x7a\x60\x5c\xb6\x58\x87" 29992 "\xa4\x36\xa2\x67\x92\x8b\xa4\xb7" 29993 "\xf1\x86\xdf\xdc\xc0\x7e\x8f\x63" 29994 "\xd2\xa2\xdc\x78\xeb\x4f\xd8\x96" 29995 "\x47\xca\xb8\x91\xf9\xf7\x94\x21" 29996 "\x5f\x9a\x9f\x5b\xb8\x40\x41\x4b" 29997 "\x66\x69\x6a\x72\xd0\xcb\x70\xb7" 29998 "\x93\xb5\x37\x96\x05\x37\x4f\xe5" 29999 "\x8c\xa7\x5a\x4e\x8b\xb7\x84\xea" 30000 "\xc7\xfc\x19\x6e\x1f\x5a\xa1\xac" 30001 "\x18\x7d\x52\x3b\xb3\x34\x62\x99" 30002 "\xe4\x9e\x31\x04\x3f\xc0\x8d\x84" 30003 "\x17\x7c\x25\x48\x52\x67\x11\x27" 30004 "\x67\xbb\x5a\x85\xca\x56\xb2\x5c" 30005 "\xe6\xec\xd5\x96\x3d\x15\xfc\xfb" 30006 "\x22\x25\xf4\x13\xe5\x93\x4b\x9a" 30007 "\x77\xf1\x52\x18\xfa\x16\x5e\x49" 30008 "\x03\x45\xa8\x08\xfa\xb3\x41\x92" 30009 "\x79\x50\x33\xca\xd0\xd7\x42\x55" 30010 "\xc3\x9a\x0c\x4e\xd9\xa4\x3c\x86" 30011 "\x80\x9f\x53\xd1\xa4\x2e\xd1\xbc" 30012 "\xf1\x54\x6e\x93\xa4\x65\x99\x8e" 30013 "\xdf\x29\xc0\x64\x63\x07\xbb\xea", 30014 .ctext = "\xe0\x33\xf6\xe0\xb4\xa5\xdd\x2b" 30015 "\xdd\xce\xfc\x12\x1e\xfc\x2d\xf2" 30016 "\x8b\xc7\xeb\xc1\xc4\x2a\xe8\x44" 30017 "\x0f\x3d\x97\x19\x2e\x6d\xa2\x38" 30018 "\x9d\xa6\xaa\xe1\x96\xb9\x08\xe8" 30019 "\x0b\x70\x48\x5c\xed\xb5\x9b\xcb" 30020 "\x8b\x40\x88\x7e\x69\x73\xf7\x16" 30021 "\x71\xbb\x5b\xfc\xa3\x47\x5d\xa6" 30022 "\xae\x3a\x64\xc4\xe7\xb8\xa8\xe7" 30023 "\xb1\x32\x19\xdb\xe3\x01\xb8\xf0" 30024 "\xa4\x86\xb4\x4c\xc2\xde\x5c\xd2" 30025 "\x6c\x77\xd2\xe8\x18\xb7\x0a\xc9" 30026 "\x3d\x53\xb5\xc4\x5c\xf0\x8c\x06" 30027 "\xdc\x90\xe0\x74\x47\x1b\x0b\xf6" 30028 "\xd2\x71\x6b\xc4\xf1\x97\x00\x2d" 30029 "\x63\x57\x44\x1f\x8c\xf4\xe6\x9b" 30030 "\xe0\x7a\xdd\xec\x32\x73\x42\x32" 30031 "\x7f\x35\x67\x60\x0d\xcf\x10\x52" 30032 "\x61\x22\x53\x8d\x8e\xbb\x33\x76" 30033 "\x59\xd9\x10\xce\xdf\xef\xc0\x41" 30034 "\xd5\x33\x29\x6a\xda\x46\xa4\x51" 30035 "\xf0\x99\x3d\x96\x31\xdd\xb5\xcb" 30036 "\x3e\x2a\x1f\xc7\x5c\x79\xd3\xc5" 30037 "\x20\xa1\xb1\x39\x1b\xc6\x0a\x70" 30038 "\x26\x39\x95\x07\xad\x7a\xc9\x69" 30039 "\xfe\x81\xc7\x88\x08\x38\xaf\xad" 30040 "\x9e\x8d\xfb\xe8\x24\x0d\x22\xb8" 30041 "\x0e\xed\xbe\x37\x53\x7c\xa6\xc6" 30042 "\x78\x62\xec\xa3\x59\xd9\xc6\x9d" 30043 "\xb8\x0e\x69\x77\x84\x2d\x6a\x4c" 30044 "\xc5\xd9\xb2\xa0\x2b\xa8\x80\xcc" 30045 "\xe9\x1e\x9c\x5a\xc4\xa1\xb2\x37" 30046 "\x06\x9b\x30\x32\x67\xf7\xe7\xd2" 30047 "\x42\xc7\xdf\x4e\xd4\xcb\xa0\x12" 30048 "\x94\xa1\x34\x85\x93\x50\x4b\x0a" 30049 "\x3c\x7d\x49\x25\x01\x41\x6b\x96" 30050 "\xa9\x12\xbb\x0b\xc0\xd7\xd0\x93" 30051 "\x1f\x70\x38\xb8\x21\xee\xf6\xa7" 30052 "\xee\xeb\xe7\x81\xa4\x13\xb4\x87" 30053 "\xfa\xc1\xb0\xb5\x37\x8b\x74\xa2" 30054 "\x4e\xc7\xc2\xad\x3d\x62\x3f\xf8" 30055 "\x34\x42\xe5\xae\x45\x13\x63\xfe" 30056 "\xfc\x2a\x17\x46\x61\xa9\xd3\x1c" 30057 "\x4c\xaf\xf0\x09\x62\x26\x66\x1e" 30058 "\x74\xcf\xd6\x68\x3d\x7d\xd8\xb7" 30059 "\xe7\xe6\xf8\xf0\x08\x20\xf7\x47" 30060 "\x1c\x52\xaa\x0f\x3e\x21\xa3\xf2" 30061 "\xbf\x2f\x95\x16\xa8\xc8\xc8\x8c" 30062 "\x99\x0f\x5d\xfb\xfa\x2b\x58\x8a" 30063 "\x7e\xd6\x74\x02\x60\xf0\xd0\x5b" 30064 "\x65\xa8\xac\xea\x8d\x68\x46\x34" 30065 "\x26\x9d\x4f\xb1\x9a\x8e\xc0\x1a" 30066 "\xf1\xed\xc6\x7a\x83\xfd\x8a\x57" 30067 "\xf2\xe6\xe4\xba\xfc\xc6\x3c\xad" 30068 "\x5b\x19\x50\x2f\x3a\xcc\x06\x46" 30069 "\x04\x51\x3f\x91\x97\xf0\xd2\x07" 30070 "\xe7\x93\x89\x7e\xb5\x32\x0f\x03" 30071 "\xe5\x58\x9e\x74\x72\xeb\xc2\x38" 30072 "\x00\x0c\x91\x72\x69\xed\x7d\x6d" 30073 "\xc8\x71\xf0\xec\xff\x80\xd9\x1c" 30074 "\x9e\xd2\xfa\x15\xfc\x6c\x4e\xbc" 30075 "\xb1\xa6\xbd\xbd\x70\x40\xca\x20" 30076 "\xb8\x78\xd2\xa3\xc6\xf3\x79\x9c" 30077 "\xc7\x27\xe1\x6a\x29\xad\xa4\x03", 30078 .len = 512, 30079 }, { 30080 .key = "\xeb\xe5\x11\x3a\x72\xeb\x10\xbe" 30081 "\x70\xcf\xe3\xea\xc2\x74\xa4\x48" 30082 "\x29\x0f\x8f\x3f\xcf\x4c\x28\x2a" 30083 "\x4e\x1e\x3c\xc3\x27\x9f\x16\x13", 30084 .klen = 32, 30085 .iv = "\x84\x3e\xa2\x7c\x06\x72\xb2\xad" 30086 "\x88\x76\x65\xb4\x1a\x29\x27\x12" 30087 "\x45\xb6\x8d\x0e\x4b\x87\x04\xfc" 30088 "\xb5\xcd\x1c\x4d\xe8\x06\xf1\xcb", 30089 .ptext = "\x8e\xb6\x07\x9b\x7c\xe4\xa4\xa2" 30090 "\x41\x6c\x24\x1d\xc0\x77\x4e\xd9" 30091 "\x4a\xa4\x2c\xb6\xe4\x55\x02\x7f" 30092 "\xc4\xec\xab\xc2\x5c\x63\x40\x92" 30093 "\x38\x24\x62\xdb\x65\x82\x10\x7f" 30094 "\x21\xa5\x39\x3a\x3f\x38\x7e\xad" 30095 "\x6c\x7b\xc9\x3f\x89\x8f\xa8\x08" 30096 "\xbd\x31\x57\x3c\x7a\x45\x67\x30" 30097 "\xa9\x27\x58\x34\xbe\xe3\xa4\xc3" 30098 "\xff\xc2\x9f\x43\xf0\x04\xba\x1e" 30099 "\xb6\xf3\xc4\xce\x09\x7a\x2e\x42" 30100 "\x7d\xad\x97\xc9\x77\x9a\x3a\x78" 30101 "\x6c\xaf\x7c\x2a\x46\xb4\x41\x86" 30102 "\x1a\x20\xf2\x5b\x1a\x60\xc9\xc4" 30103 "\x47\x5d\x10\xa4\xd2\x15\x6a\x19" 30104 "\x4f\xd5\x51\x37\xd5\x06\x70\x1a" 30105 "\x3e\x78\xf0\x2e\xaa\xb5\x2a\xbd" 30106 "\x83\x09\x7c\xcb\x29\xac\xd7\x9c" 30107 "\xbf\x80\xfd\x9d\xd4\xcf\x64\xca" 30108 "\xf8\xc9\xf1\x77\x2e\xbb\x39\x26" 30109 "\xac\xd9\xbe\xce\x24\x7f\xbb\xa2" 30110 "\x82\xba\xeb\x5f\x65\xc5\xf1\x56" 30111 "\x8a\x52\x02\x4d\x45\x23\x6d\xeb" 30112 "\xb0\x60\x7b\xd8\x6e\xb2\x98\xd2" 30113 "\xaf\x76\xf2\x33\x9b\xf3\xbb\x95" 30114 "\xc0\x50\xaa\xc7\x47\xf6\xb3\xf3" 30115 "\x77\x16\xcb\x14\x95\xbf\x1d\x32" 30116 "\x45\x0c\x75\x52\x2c\xe8\xd7\x31" 30117 "\xc0\x87\xb0\x97\x30\x30\xc5\x5e" 30118 "\x50\x70\x6e\xb0\x4b\x4e\x38\x19" 30119 "\x46\xca\x38\x6a\xca\x7d\xfe\x05" 30120 "\xc8\x80\x7c\x14\x6c\x24\xb5\x42" 30121 "\x28\x04\x4c\xff\x98\x20\x08\x10" 30122 "\x90\x31\x03\x78\xd8\xa1\xe6\xf9" 30123 "\x52\xc2\xfc\x3e\xa7\x68\xce\xeb" 30124 "\x59\x5d\xeb\xd8\x64\x4e\xf8\x8b" 30125 "\x24\x62\xcf\x17\x36\x84\xc0\x72" 30126 "\x60\x4f\x3e\x47\xda\x72\x3b\x0e" 30127 "\xce\x0b\xa9\x9c\x51\xdc\xa5\xb9" 30128 "\x71\x73\x08\x4e\x22\x31\xfd\x88" 30129 "\x29\xfc\x8d\x17\x3a\x7a\xe5\xb9" 30130 "\x0b\x9c\x6d\xdb\xce\xdb\xde\x81" 30131 "\x73\x5a\x16\x9d\x3c\x72\x88\x51" 30132 "\x10\x16\xf3\x11\x6e\x32\x5f\x4c" 30133 "\x87\xce\x88\x2c\xd2\xaf\xf5\xb7" 30134 "\xd8\x22\xed\xc9\xae\x68\x7f\xc5" 30135 "\x30\x62\xbe\xc9\xe0\x27\xa1\xb5" 30136 "\x57\x74\x36\x60\xb8\x6b\x8c\xec" 30137 "\x14\xad\xed\x69\xc9\xd8\xa5\x5b" 30138 "\x38\x07\x5b\xf3\x3e\x74\x48\x90" 30139 "\x61\x17\x23\xdd\x44\xbc\x9d\x12" 30140 "\x0a\x3a\x63\xb2\xab\x86\xb8\x67" 30141 "\x85\xd6\xb2\x5d\xde\x4a\xc1\x73" 30142 "\x2a\x7c\x53\x8e\xd6\x7d\x0e\xe4" 30143 "\x3b\xab\xc5\x3d\x32\x79\x18\xb7" 30144 "\xd6\x50\x4d\xf0\x8a\x37\xbb\xd3" 30145 "\x8d\xd8\x08\xd7\x7d\xaa\x24\x52" 30146 "\xf7\x90\xe3\xaa\xd6\x49\x7a\x47" 30147 "\xec\x37\xad\x74\x8b\xc1\xb7\xfe" 30148 "\x4f\x70\x14\x62\x22\x8c\x63\xc2" 30149 "\x1c\x4e\x38\xc3\x63\xb7\xbf\x53" 30150 "\xbd\x1f\xac\xa6\x94\xc5\x81\xfa" 30151 "\xe0\xeb\x81\xe9\xd9\x1d\x32\x3c" 30152 "\x85\x12\xca\x61\x65\xd1\x66\xd8" 30153 "\xe2\x0e\xc3\xa3\xff\x0d\xd3\xee" 30154 "\xdf\xcc\x3e\x01\xf5\x9b\x45\x5c" 30155 "\x33\xb5\xb0\x8d\x36\x1a\xdf\xf8" 30156 "\xa3\x81\xbe\xdb\x3d\x4b\xf6\xc6" 30157 "\xdf\x7f\xb0\x89\xbd\x39\x32\x50" 30158 "\xbb\xb2\xe3\x5c\xbb\x4b\x18\x98" 30159 "\x08\x66\x51\xe7\x4d\xfb\xfc\x4e" 30160 "\x22\x42\x6f\x61\xdb\x7f\x27\x88" 30161 "\x29\x3f\x02\xa9\xc6\x83\x30\xcc" 30162 "\x8b\xd5\x64\x7b\x7c\x76\x16\xbe" 30163 "\xb6\x8b\x26\xb8\x83\x16\xf2\x6b" 30164 "\xd1\xdc\x20\x6b\x42\x5a\xef\x7a" 30165 "\xa9\x60\xb8\x1a\xd3\x0d\x4e\xcb" 30166 "\x75\x6b\xc5\x80\x43\x38\x7f\xad" 30167 "\x9c\x56\xd9\xc4\xf1\x01\x74\xf0" 30168 "\x16\x53\x8d\x69\xbe\xf2\x5d\x92" 30169 "\x34\x38\xc8\x84\xf9\x1a\xfc\x26" 30170 "\x16\xcb\xae\x7d\x38\x21\x67\x74" 30171 "\x4c\x40\xaa\x6b\x97\xe0\xb0\x2f" 30172 "\xf5\x3e\xf6\xe2\x24\xc8\x22\xa4" 30173 "\xa8\x88\x27\x86\x44\x75\x5b\x29" 30174 "\x34\x08\x4b\xa1\xfe\x0c\x26\xe5" 30175 "\xac\x26\xf6\x21\x0c\xfb\xde\x14" 30176 "\xfe\xd7\xbe\xee\x48\x93\xd6\x99" 30177 "\x56\x9c\xcf\x22\xad\xa2\x53\x41" 30178 "\xfd\x58\xa1\x68\xdc\xc4\xef\x20" 30179 "\xa1\xee\xcf\x2b\x43\xb6\x57\xd8" 30180 "\xfe\x01\x80\x25\xdf\xd2\x35\x44" 30181 "\x0d\x15\x15\xc3\xfc\x49\xbf\xd0" 30182 "\xbf\x2f\x95\x81\x09\xa6\xb6\xd7" 30183 "\x21\x03\xfe\x52\xb7\xa8\x32\x4d" 30184 "\x75\x1e\x46\x44\xbc\x2b\x61\x04" 30185 "\x1b\x1c\xeb\x39\x86\x8f\xe9\x49" 30186 "\xce\x78\xa5\x5e\x67\xc5\xe9\xef" 30187 "\x43\xf8\xf1\x35\x22\x43\x61\xc1" 30188 "\x27\xb5\x09\xb2\xb8\xe1\x5e\x26" 30189 "\xcc\xf3\x6f\xb2\xb7\x55\x30\x98" 30190 "\x87\xfc\xe7\xa8\xc8\x94\x86\xa1" 30191 "\xd9\xa0\x3c\x74\x16\xb3\x25\x98" 30192 "\xba\xc6\x84\x4a\x27\xa6\x58\xfe" 30193 "\xe1\x68\x04\x30\xc8\xdb\x44\x52" 30194 "\x4e\xb2\xa4\x6f\xf7\x63\xf2\xd6" 30195 "\x63\x36\x17\x04\xf8\x06\xdb\xeb" 30196 "\x99\x17\xa5\x1b\x61\x90\xa3\x9f" 30197 "\x05\xae\x3e\xe4\xdb\xc8\x1c\x8e" 30198 "\x77\x27\x88\xdf\xd3\x22\x5a\xc5" 30199 "\x9c\xd6\x22\xf8\xc4\xd8\x92\x9d" 30200 "\x16\xcc\x54\x25\x3b\x6f\xdb\xc0" 30201 "\x78\xd8\xe3\xb3\x03\x69\xd7\x5d" 30202 "\xf8\x08\x04\x63\x61\x9d\x76\xf9" 30203 "\xad\x1d\xc4\x30\x9f\x75\x89\x6b" 30204 "\xfb\x62\xba\xae\xcb\x1b\x6c\xe5" 30205 "\x7e\xea\x58\x6b\xae\xce\x9b\x48" 30206 "\x4b\x80\xd4\x5e\x71\x53\xa7\x24" 30207 "\x73\xca\xf5\x3e\xbb\x5e\xd3\x1c" 30208 "\x33\xe3\xec\x5b\xa0\x32\x9d\x25" 30209 "\x0e\x0c\x28\x29\x39\x51\xc5\x70" 30210 "\xec\x60\x8f\x77\xfc\x06\x7a\x33" 30211 "\x19\xd5\x7a\x6e\x94\xea\xa3\xeb" 30212 "\x13\xa4\x2e\x09\xd8\x81\x65\x83" 30213 "\x03\x63\x8b\xb5\xc9\x89\x98\x73" 30214 "\x69\x53\x8e\xab\xf1\xd2\x2f\x67" 30215 "\xbd\xa6\x16\x6e\xd0\x8b\xc1\x25" 30216 "\x93\xd2\x50\x7c\x1f\xe1\x11\xd0" 30217 "\x58\x0d\x2f\x72\xe7\x5e\xdb\xa2" 30218 "\x55\x9a\xe0\x09\x21\xac\x61\x85" 30219 "\x4b\x20\x95\x73\x63\x26\xe3\x83" 30220 "\x4b\x5b\x40\x03\x14\xb0\x44\x16" 30221 "\xbd\xe0\x0e\xb7\x66\x56\xd7\x30" 30222 "\xb3\xfd\x8a\xd3\xda\x6a\xa7\x3d" 30223 "\x98\x09\x11\xb7\x00\x06\x24\x5a" 30224 "\xf7\x42\x94\xa6\x0e\xb1\x6d\x48" 30225 "\x74\xb1\xa7\xe6\x92\x0a\x15\x9a" 30226 "\xf5\xfa\x55\x1a\x6c\xdd\x71\x08" 30227 "\xd0\xf7\x8d\x0e\x7c\x67\x4d\xc6" 30228 "\xe6\xde\x78\x88\x88\x3c\x5e\x23" 30229 "\x46\xd2\x25\xa4\xfb\xa3\x26\x3f" 30230 "\x2b\xfd\x9c\x20\xda\x72\xe1\x81" 30231 "\x8f\xe6\xae\x08\x1d\x67\x15\xde" 30232 "\x86\x69\x1d\xc6\x1e\x6d\xb7\x5c" 30233 "\xdd\x43\x72\x5a\x7d\xa7\xd8\xd7" 30234 "\x1e\x66\xc5\x90\xf6\x51\x76\x91" 30235 "\xb3\xe3\x39\x81\x75\x08\xfa\xc5" 30236 "\x06\x70\x69\x1b\x2c\x20\x74\xe0" 30237 "\x53\xb0\x0c\x9d\xda\xa9\x5b\xdd" 30238 "\x1c\x38\x6c\x9e\x3b\xc4\x7a\x82" 30239 "\x93\x9e\xbb\x75\xfb\x19\x4a\x55" 30240 "\x65\x7a\x3c\xda\xcb\x66\x5c\x13" 30241 "\x17\x97\xe8\xbd\xae\x24\xd9\x76" 30242 "\xfb\x8c\x73\xde\xbd\xb4\x1b\xe0" 30243 "\xb9\x2c\xe8\xe0\x1d\x3f\xa8\x2c" 30244 "\x1e\x81\x5b\x77\xe7\xdf\x6d\x06" 30245 "\x7c\x9a\xf0\x2b\x5d\xfc\x86\xd5" 30246 "\xb1\xad\xbc\xa8\x73\x48\x61\x67" 30247 "\xd6\xba\xc8\xe8\xe2\xb8\xee\x40" 30248 "\x36\x22\x3e\x61\xf6\xc8\x16\xe4" 30249 "\x0e\x88\xad\x71\x53\x58\xe1\x6c" 30250 "\x8f\x4f\x89\x4b\x3e\x9c\x7f\xe9" 30251 "\xad\xc2\x28\xc2\x3a\x29\xf3\xec" 30252 "\xa9\x28\x39\xba\xc2\x86\xe1\x06" 30253 "\xf3\x8b\xe3\x95\x0c\x87\xb8\x1b" 30254 "\x72\x35\x8e\x8f\x6d\x18\xc8\x1c" 30255 "\xa5\x5d\x57\x9d\x73\x8a\xbb\x9e" 30256 "\x21\x05\x12\xd7\xe0\x21\x1c\x16" 30257 "\x3a\x95\x85\xbc\xb0\x71\x0b\x36" 30258 "\x6c\x44\x8d\xef\x3b\xec\x3f\x8e" 30259 "\x24\xa9\xe3\xa7\x63\x23\xca\x09" 30260 "\x62\x96\x79\x0c\x81\x05\x41\xf2" 30261 "\x07\x20\x26\xe5\x8e\x10\x54\x03" 30262 "\x05\x7b\xfe\x0c\xcc\x8c\x50\xe5" 30263 "\xca\x33\x4d\x48\x7a\x03\xd5\x64" 30264 "\x49\x09\xf2\x5c\x5d\xfe\x2b\x30" 30265 "\xbf\x29\x14\x29\x8b\x9b\x7c\x96" 30266 "\x47\x07\x86\x4d\x4e\x4d\xf1\x47" 30267 "\xd1\x10\x2a\xa8\xd3\x15\x8c\xf2" 30268 "\x2f\xf4\x3a\xdf\xd0\xa7\xcb\x5a" 30269 "\xad\x99\x39\x4a\xdf\x60\xbe\xf9" 30270 "\x91\x4e\xf5\x94\xef\xc5\x56\x32" 30271 "\x33\x86\x78\xa3\xd6\x4c\x29\x7c" 30272 "\xe8\xac\x06\xb5\xf5\x01\x5c\x9f" 30273 "\x02\xc8\xe8\xbf\x5c\x1a\x7f\x4d" 30274 "\x28\xa5\xb9\xda\xa9\x5e\xe7\x4b" 30275 "\xf4\x3d\xe9\x1d\x28\xaa\x1a\x8a" 30276 "\x76\xc8\x6c\x19\x61\x3c\x9e\x29" 30277 "\xcd\xbe\xff\xe0\x1c\xb8\x67\xb5" 30278 "\xa4\x46\xf8\xb9\x8a\xa2\xf6\x7c" 30279 "\xef\x23\x73\x0c\xe9\x72\x0a\x0d" 30280 "\x9b\x40\xd8\xfb\x0c\x9c\xab\xa8", 30281 .ctext = "\xfc\x02\x83\x13\x73\x06\x70\x3f" 30282 "\x71\x28\x98\x61\xe5\x2c\x45\x49" 30283 "\x18\xa2\x0e\x17\xc9\xdb\x4d\xf6" 30284 "\xbe\x05\x02\x35\xc1\x18\x61\x28" 30285 "\xff\x28\x0a\xd9\x00\xb8\xed\xec" 30286 "\x14\x80\x88\x56\xcf\x98\x32\xcc" 30287 "\xb0\xee\xb4\x5e\x2d\x61\x59\xcb" 30288 "\x48\xc9\x25\xaa\x7e\x5f\xe5\x4f" 30289 "\x95\x8f\x5d\x47\xe8\xc3\x09\xb4" 30290 "\xce\xe7\x74\xcd\xc6\x09\x5c\xfc" 30291 "\xc7\x79\xc9\x39\xe4\xe3\x9b\x59" 30292 "\x67\x61\x10\xc9\xb7\x7a\xa8\x11" 30293 "\x59\xf6\x7a\x67\x1c\x3a\x70\x76" 30294 "\x2e\x0e\xbd\x10\x93\x01\x06\xea" 30295 "\x51\xc6\x5c\xa7\xda\xd1\x7d\x06" 30296 "\x8b\x1d\x5b\xb6\x87\xf0\x32\xbe" 30297 "\xff\x55\xaa\x58\x5a\x28\xd1\x64" 30298 "\x45\x3b\x0b\x5c\xee\xc4\x12\x2d" 30299 "\x1f\xb7\xa5\x73\xf5\x20\xf5\xa8" 30300 "\x10\x9d\xd8\x16\xd2\x05\x4d\x49" 30301 "\x99\x4a\x71\x56\xec\xa3\xc7\x27" 30302 "\xb0\x98\xcd\x59\x3c\x8a\xd1\x9e" 30303 "\x33\xa5\x92\xf2\xb7\x87\x23\x5d" 30304 "\x53\x9a\x8e\x7c\x63\x57\x5e\x9a" 30305 "\x21\x54\x7a\x3c\x5a\xd5\x68\x69" 30306 "\x35\x17\x51\x06\x19\x82\x9d\x44" 30307 "\x9e\x8a\x75\xc5\x16\x55\xa4\x78" 30308 "\x95\x63\xc3\xf0\x91\x73\x77\x44" 30309 "\x0c\xff\xb9\xb3\xa7\x5f\xcf\x2a" 30310 "\xa2\x54\x9c\xe3\x8b\x7e\x9d\x65" 30311 "\xe5\x64\x8b\xbe\x06\x3a\x90\x31" 30312 "\xdb\x42\x78\xe9\xe6\x8a\xae\xba" 30313 "\x8f\xfb\xc9\x3d\xd9\xc2\x3e\x57" 30314 "\xd5\x58\xfe\x70\x44\xe5\x2a\xd5" 30315 "\x87\xcf\x9f\x6a\x02\xde\x48\xe9" 30316 "\x13\xed\x8d\x2b\xf2\xa1\x56\x07" 30317 "\x36\x2d\xcf\xc3\x5c\xd4\x4b\x20" 30318 "\xb0\xdf\x1a\x70\xed\x0a\xe4\x2e" 30319 "\x9a\xfc\x88\xa1\xc4\x2d\xd6\xb8" 30320 "\xf1\x6e\x2c\x5c\xdc\x0e\xb0\x21" 30321 "\x2d\x76\xb8\xc3\x05\x4c\xf5\xc5" 30322 "\x9a\x14\xab\x08\xc2\x67\x59\x30" 30323 "\x7a\xef\xd8\x4a\x89\x49\xd4\xf0" 30324 "\x22\x39\xf2\x61\xaa\x70\x36\xcf" 30325 "\x65\xee\x43\x83\x2e\x32\xe4\xc9" 30326 "\xc2\xf1\xc7\x08\x28\x59\x10\x6f" 30327 "\x7a\xeb\x8f\x78\x9e\xdf\x07\x0f" 30328 "\xca\xc7\x02\x6a\x2e\x2a\xf0\x64" 30329 "\xfa\x4c\x8c\x4c\xfc\x13\x23\x63" 30330 "\x54\xeb\x1d\x41\xdf\x88\xd6\x66" 30331 "\xae\x5e\x31\x74\x5d\x84\x65\xb8" 30332 "\x61\x1c\x88\x1b\x8f\xb6\x14\x4e" 30333 "\x73\x23\x27\x71\x85\x04\x07\x59" 30334 "\x18\xa3\x2b\x69\x2a\x42\x81\xbf" 30335 "\x40\xf4\x40\xdf\x04\xb8\x6c\x2e" 30336 "\x21\x5b\x22\x25\x61\x01\x96\xce" 30337 "\xfb\xbc\x75\x25\x2c\x03\x55\xea" 30338 "\xb6\x56\x31\x03\xc8\x98\x77\xd6" 30339 "\x30\x19\x9e\x45\x05\xfd\xca\xdf" 30340 "\xae\x89\x30\xa3\xc1\x65\x41\x67" 30341 "\x12\x8e\xa4\x61\xd0\x87\x04\x0a" 30342 "\xe6\xf3\x43\x3a\x38\xce\x22\x36" 30343 "\x41\xdc\xe1\x7d\xd2\xa6\xe2\x66" 30344 "\x21\x8d\xc9\x59\x73\x52\x34\xd8" 30345 "\x1f\xf1\x87\x00\x9b\x12\x74\xeb" 30346 "\xbb\xa9\x34\x0c\x8e\x79\x74\x64" 30347 "\xbf\x94\x97\xe4\x94\xda\xf0\x39" 30348 "\x66\xa8\xd9\x82\xe3\x11\x3d\xe7" 30349 "\xb3\x9a\x40\x7a\x6f\x71\xc7\x0f" 30350 "\x7b\x6d\x59\x79\x18\x2f\x11\x60" 30351 "\x1e\xe0\xae\x1b\x1b\xb4\xad\x4d" 30352 "\x63\xd9\x3e\xa0\x8f\xe3\x66\x8c" 30353 "\xfe\x5a\x73\x07\x95\x27\x1a\x07" 30354 "\x6e\xd6\x14\x3f\xbe\xc5\x99\x94" 30355 "\xcf\x40\xf4\x39\x1c\xf2\x99\x5b" 30356 "\xb7\xfb\xb4\x4e\x5f\x21\x10\x04" 30357 "\x24\x08\xd4\x0d\x10\x7a\x2f\x52" 30358 "\x7d\x91\xc3\x38\xd3\x16\xf0\xfd" 30359 "\x53\xba\xda\x88\xa5\xf6\xc7\xfd" 30360 "\x63\x4a\x9f\x48\xb5\x31\xc2\xe1" 30361 "\x7b\x3e\xac\x8d\xc9\x95\x02\x92" 30362 "\xcc\xbd\x0e\x15\x2d\x97\x08\x82" 30363 "\xa6\x99\xbc\x2c\x96\x91\xde\xa4" 30364 "\x9c\xf5\x2c\xef\x12\x29\xb0\x72" 30365 "\x5f\x60\x5d\x3d\xf3\x85\x59\x79" 30366 "\xac\x06\x63\x74\xcc\x1a\x8d\x0e" 30367 "\xa7\x5f\xd9\x3e\x84\xf7\xbb\xde" 30368 "\x06\xd9\x4b\xab\xee\xb2\x03\xbe" 30369 "\x68\x49\x72\x84\x8e\xf8\x45\x2b" 30370 "\x59\x99\x17\xd3\xe9\x32\x79\xc3" 30371 "\x83\x4c\x7a\x6c\x71\x53\x8c\x09" 30372 "\x76\xfb\x3e\x80\x99\xbc\x2c\x7d" 30373 "\x42\xe5\x70\x08\x80\xc7\xaf\x15" 30374 "\x90\xda\x98\x98\x81\x04\x1c\x4d" 30375 "\x78\xf1\xf3\xcc\x1b\x3a\x7b\xef" 30376 "\xea\xe1\xee\x0e\xd2\x32\xb6\x63" 30377 "\xbf\xb2\xb5\x86\x8d\x16\xd3\x23" 30378 "\x04\x59\x51\xbb\x17\x03\xc0\x07" 30379 "\x93\xbf\x72\x58\x30\xf2\x0a\xa2" 30380 "\xbc\x60\x86\x3b\x68\x91\x67\x14" 30381 "\x10\x76\xda\xa3\x98\x2d\xfc\x8a" 30382 "\xb8\x95\xf7\xd2\x8b\x97\x8b\xfc" 30383 "\xf2\x9e\x86\x20\xb6\xdf\x93\x41" 30384 "\x06\x5e\x37\x3e\xe2\xb8\xd5\x06" 30385 "\x59\xd2\x8d\x43\x91\x5a\xed\x94" 30386 "\x54\xc2\x77\xbc\x0b\xb4\x29\x80" 30387 "\x22\x19\xe7\x35\x1f\x29\x4f\xd8" 30388 "\x02\x98\xee\x83\xca\x4c\x94\xa3" 30389 "\xec\xde\x4b\xf5\xca\x57\x93\xa3" 30390 "\x72\x69\xfe\x27\x7d\x39\x24\x9a" 30391 "\x60\x19\x72\xbe\x24\xb2\x2d\x99" 30392 "\x8c\xb7\x32\xf8\x74\x77\xfc\x8d" 30393 "\xb2\xc1\x7a\x88\x28\x26\xea\xb7" 30394 "\xad\xf0\x38\x49\x88\x78\x73\xcd" 30395 "\x01\xef\xb9\x30\x1a\x33\xa3\x24" 30396 "\x9b\x0b\xc5\x89\x64\x3f\xbe\x76" 30397 "\xd5\xa5\x28\x74\xa2\xc6\xa0\xa0" 30398 "\xdd\x13\x81\x64\x2f\xd1\xab\x15" 30399 "\xab\x13\xb5\x68\x59\xa4\x9f\x0e" 30400 "\x1e\x0a\xaf\xf7\x0b\x6e\x6b\x0b" 30401 "\xf7\x95\x4c\xbc\x1d\x40\x6d\x9c" 30402 "\x08\x42\xef\x07\x03\xb7\xa3\xea" 30403 "\x2a\x5f\xec\x41\x3c\x72\x31\x9d" 30404 "\xdc\x6b\x3a\x5e\x35\x3d\x12\x09" 30405 "\x27\xe8\x63\xbe\xcf\xb3\xbc\x01" 30406 "\x2d\x0c\x86\xb2\xab\x4a\x69\xe5" 30407 "\xf8\x45\x97\x76\x0e\x31\xe5\xc6" 30408 "\x4c\x4f\x94\xa5\x26\x19\x9f\x1b" 30409 "\xe1\xf4\x79\x04\xb4\x93\x92\xdc" 30410 "\xa5\x2a\x66\x25\x0d\xb2\x9e\xea" 30411 "\xa8\xf6\x02\x77\x2d\xd1\x3f\x59" 30412 "\x5c\x04\xe2\x36\x52\x5f\xa1\x27" 30413 "\x0a\x07\x56\xb6\x2d\xd5\x90\x32" 30414 "\x64\xee\x3f\x42\x8f\x61\xf8\xa0" 30415 "\xc1\x8b\x1e\x0b\xa2\x73\xa9\xf3" 30416 "\xc9\x0e\xb1\x96\x3a\x67\x5f\x1e" 30417 "\xd1\x98\x57\xa2\xba\xb3\x23\x9d" 30418 "\xa3\xc6\x3c\x7d\x5e\x3e\xb3\xe8" 30419 "\x80\xae\x2d\xda\x85\x90\x69\x3c" 30420 "\xf0\xe7\xdd\x9e\x20\x10\x52\xdb" 30421 "\xc3\xa0\x15\x73\xee\xb1\xf1\x0f" 30422 "\xf1\xf8\x3f\x40\xe5\x17\x80\x4e" 30423 "\x91\x95\xc7\xec\xd1\x9c\xd9\x1a" 30424 "\x8b\xac\xec\xc9\x0c\x07\xf4\xdc" 30425 "\x77\x2d\xa2\xc4\xf8\x27\xb5\x41" 30426 "\x2f\x85\xa6\x48\xad\x2a\x58\xc5" 30427 "\xea\xfa\x1c\xdb\xfd\xb7\x70\x45" 30428 "\xfc\xad\x11\xaf\x05\xed\xbf\xb6" 30429 "\x3c\xe1\x57\xb8\x72\x4a\xa0\x6b" 30430 "\x40\xd3\xda\xa9\xbc\xa5\x02\x95" 30431 "\x8c\xf0\x4e\x67\xb2\x58\x66\xea" 30432 "\x58\x0e\xc4\x88\xbc\x1d\x3b\x15" 30433 "\x17\xc8\xf5\xd0\x69\x08\x0a\x01" 30434 "\x80\x2e\x9e\x69\x4c\x37\x0b\xba" 30435 "\xfb\x1a\xa9\xc3\x5f\xec\x93\x7c" 30436 "\x4f\x72\x68\x1a\x05\xa1\x32\xe1" 30437 "\x16\x57\x9e\xa6\xe0\x42\xfa\x76" 30438 "\xc2\xf6\xd3\x9b\x37\x0d\xa3\x58" 30439 "\x30\x27\xe7\xea\xb1\xc3\x43\xfb" 30440 "\x67\x04\x70\x86\x0a\x71\x69\x34" 30441 "\xca\xb1\xe3\x4a\x56\xc9\x29\xd1" 30442 "\x12\x6a\xee\x89\xfd\x27\x83\xdf" 30443 "\x32\x1a\xc2\xe9\x94\xcc\x44\x2e" 30444 "\x0f\x3e\xc8\xc1\x70\x5b\xb0\xe8" 30445 "\x6d\x47\xe3\x39\x75\xd5\x45\x8a" 30446 "\x48\x4c\x64\x76\x6f\xae\x24\x6f" 30447 "\xae\x77\x33\x5b\xf5\xca\x9c\x30" 30448 "\x2c\x27\x15\x5e\x9c\x65\xad\x2a" 30449 "\x88\xb1\x36\xf6\xcd\x5e\x73\x72" 30450 "\x99\x5c\xe2\xe4\xb8\x3e\x12\xfb" 30451 "\x55\x86\xfa\xab\x53\x12\xdc\x6a" 30452 "\xe3\xfe\x6a\xeb\x9b\x5d\xeb\x72" 30453 "\x9d\xf1\xbb\x80\x80\x76\x2d\x57" 30454 "\x11\xde\xcf\xae\x46\xad\xdb\xcd" 30455 "\x62\x66\x3d\x7b\x7f\xcb\xc4\x43" 30456 "\x81\x0c\x7e\xb9\xb7\x47\x1a\x40" 30457 "\xfd\x08\x51\xbe\x01\x1a\xd8\x31" 30458 "\x43\x5e\x24\x91\xa2\x53\xa1\xc5" 30459 "\x8a\xe4\xbc\x00\x8e\xf7\x0c\x30" 30460 "\xdf\x03\x34\x2f\xce\xe4\x2e\xda" 30461 "\x2b\x87\xfc\xf8\x9b\x50\xd5\xb0" 30462 "\x5b\x08\xc6\x17\xa0\xae\x6b\x24" 30463 "\xe2\x1d\xd0\x47\xbe\xc4\x8f\x62" 30464 "\x1d\x12\x26\xc7\x78\xd4\xf2\xa3" 30465 "\xea\x39\x8c\xcb\x54\x3e\x2b\xb9" 30466 "\x9a\x8f\x97\xcf\x68\x53\x40\x02" 30467 "\x56\xac\x52\xbb\x62\x3c\xc6\x3f" 30468 "\x3a\x53\x3c\xe8\x21\x9a\x60\x65" 30469 "\x10\x6e\x59\xc3\x4f\xc3\x07\xc8" 30470 "\x61\x1c\xea\x62\x6e\xa2\x5a\x12" 30471 "\xd6\x10\x91\xbe\x5e\x58\x73\xbe" 30472 "\x77\xb8\xb7\x98\xc7\x7e\x78\x9a", 30473 .len = 1536, 30474 }, { 30475 .key = "\x60\xd5\x36\xb0\x8e\x5d\x0e\x5f" 30476 "\x70\x47\x8c\xea\x87\x30\x1d\x58" 30477 "\x2a\xb2\xe8\xc6\xcb\x60\xe7\x6f" 30478 "\x56\x95\x83\x98\x38\x80\x84\x8a", 30479 .klen = 32, 30480 .iv = "\x43\xfe\x63\x3c\xdc\x9e\x0c\xa6" 30481 "\xee\x9c\x0b\x97\x65\xc2\x56\x1d" 30482 "\x5d\xd0\xbf\xa3\x9f\x1e\xfb\x78" 30483 "\xbf\x51\x1b\x18\x73\x27\x27\x8c", 30484 .ptext = "\x0b\x77\xd8\xa3\x8c\xa6\xb2\x2d" 30485 "\x3e\xdd\xcc\x7c\x4a\x3e\x61\xc4" 30486 "\x9a\x7f\x73\xb0\xb3\x29\x32\x61" 30487 "\x13\x25\x62\xcc\x59\x4c\xf4\xdb" 30488 "\xd7\xf5\xf4\xac\x75\x51\xb2\x83" 30489 "\x64\x9d\x1c\x8b\xd1\x8b\x0c\x06" 30490 "\xf1\x9f\xba\x9d\xae\x62\xd4\xd8" 30491 "\x96\xbe\x3c\x4c\x32\xe4\x82\x44" 30492 "\x47\x5a\xec\xb8\x8a\x5b\xd5\x35" 30493 "\x57\x1e\x5c\x80\x6f\x77\xa9\xb9" 30494 "\xf2\x4f\x71\x1e\x48\x51\x86\x43" 30495 "\x0d\xd5\x5b\x52\x30\x40\xcd\xbb" 30496 "\x2c\x25\xc1\x47\x8b\xb7\x13\xc2" 30497 "\x3a\x11\x40\xfc\xed\x45\xa4\xf0" 30498 "\xd6\xfd\x32\x99\x13\x71\x47\x2e" 30499 "\x4c\xb0\x81\xac\x95\x31\xd6\x23" 30500 "\xa4\x2f\xa9\xe8\x5a\x62\xdc\x96" 30501 "\xcf\x49\xa7\x17\x77\x76\x8a\x8c" 30502 "\x04\x22\xaf\xaf\x6d\xd9\x16\xba" 30503 "\x35\x21\x66\x78\x3d\xb6\x65\x83" 30504 "\xc6\xc1\x67\x8c\x32\xd6\xc0\xc7" 30505 "\xf5\x8a\xfc\x47\xd5\x87\x09\x2f" 30506 "\x51\x9d\x57\x6c\x29\x0b\x1c\x32" 30507 "\x47\x6e\x47\xb5\xf3\x81\xc8\x82" 30508 "\xca\x5d\xe3\x61\x38\xa0\xdc\xcc" 30509 "\x35\x73\xfd\xb3\x92\x5c\x72\xd2" 30510 "\x2d\xad\xf6\xcd\x20\x36\xff\x49" 30511 "\x48\x80\x21\xd3\x2f\x5f\xe9\xd8" 30512 "\x91\x20\x6b\xb1\x38\x52\x1e\xbc" 30513 "\x88\x48\xa1\xde\xc0\xa5\x46\xce" 30514 "\x9f\x32\x29\xbc\x2b\x51\x0b\xae" 30515 "\x7a\x44\x4e\xed\xeb\x95\x63\x99" 30516 "\x96\x87\xc9\x34\x02\x26\xde\x20" 30517 "\xe4\xcb\x59\x0c\xb5\x55\xbd\x55" 30518 "\x3f\xa9\x15\x25\xa7\x5f\xab\x10" 30519 "\xbe\x9a\x59\x6c\xd5\x27\xf3\xf0" 30520 "\x73\x4a\xb3\xe4\x08\x11\x00\xeb" 30521 "\xf1\xae\xc8\x0d\xef\xcd\xb5\xfc" 30522 "\x0d\x7e\x03\x67\xad\x0d\xec\xf1" 30523 "\x9a\xfd\x31\x60\x3e\xa2\xfa\x1c" 30524 "\x93\x79\x31\x31\xd6\x66\x7a\xbd" 30525 "\x85\xfd\x22\x08\x00\xae\x72\x10" 30526 "\xd6\xb0\xf4\xb8\x4a\x72\x5b\x9c" 30527 "\xbf\x84\xdd\xeb\x13\x05\x28\xb7" 30528 "\x61\x60\xfd\x7f\xf0\xbe\x4d\x18" 30529 "\x7d\xc9\xba\xb0\x01\x59\x74\x18" 30530 "\xe4\xf6\xa6\x74\x5d\x3f\xdc\xa0" 30531 "\x9e\x57\x93\xbf\x16\x6c\xf6\xbd" 30532 "\x93\x45\x38\x95\xb9\x69\xe9\x62" 30533 "\x21\x73\xbd\x81\x73\xac\x15\x74" 30534 "\x9e\x68\x28\x91\x38\xb7\xd4\x47" 30535 "\xc7\xab\xc9\x14\xad\x52\xe0\x4c" 30536 "\x17\x1c\x42\xc1\xb4\x9f\xac\xcc" 30537 "\xc8\x12\xea\xa9\x9e\x30\x21\x14" 30538 "\xa8\x74\xb4\x74\xec\x8d\x40\x06" 30539 "\x82\xb7\x92\xd7\x42\x5b\xf2\xf9" 30540 "\x6a\x1e\x75\x6e\x44\x55\xc2\x8d" 30541 "\x73\x5b\xb8\x8c\x3c\xef\x97\xde" 30542 "\x24\x43\xb3\x0e\xba\xad\x63\x63" 30543 "\x16\x0a\x77\x03\x48\xcf\x02\x8d" 30544 "\x76\x83\xa3\xba\x73\xbe\x80\x3f" 30545 "\x8f\x6e\x76\x24\xc1\xff\x2d\xb4" 30546 "\x20\x06\x9b\x67\xea\x29\xb5\xe0" 30547 "\x57\xda\x30\x9d\x38\xa2\x7d\x1e" 30548 "\x8f\xb9\xa8\x17\x64\xea\xbe\x04" 30549 "\x84\xd1\xce\x2b\xfd\x84\xf9\x26" 30550 "\x1f\x26\x06\x5c\x77\x6d\xc5\x9d" 30551 "\xe6\x37\x76\x60\x7d\x3e\xf9\x02" 30552 "\xba\xa6\xf3\x7f\xd3\x95\xb4\x0e" 30553 "\x52\x1c\x6a\x00\x8f\x3a\x0b\xce" 30554 "\x30\x98\xb2\x63\x2f\xff\x2d\x3b" 30555 "\x3a\x06\x65\xaf\xf4\x2c\xef\xbb" 30556 "\x88\xff\x2d\x4c\xa9\xf4\xff\x69" 30557 "\x9d\x46\xae\x67\x00\x3b\x40\x94" 30558 "\xe9\x7a\xf7\x0b\xb7\x3c\xa2\x2f" 30559 "\xc3\xde\x5e\x29\x01\xde\xca\xfa" 30560 "\xc6\xda\xd7\x19\xc7\xde\x4a\x16" 30561 "\x93\x6a\xb3\x9b\x47\xe9\xd2\xfc" 30562 "\xa1\xc3\x95\x9c\x0b\xa0\x2b\xd4" 30563 "\xd3\x1e\xd7\x21\x96\xf9\x1e\xf4" 30564 "\x59\xf4\xdf\x00\xf3\x37\x72\x7e" 30565 "\xd8\xfd\x49\xd4\xcd\x61\x7b\x22" 30566 "\x99\x56\x94\xff\x96\xcd\x9b\xb2" 30567 "\x76\xca\x9f\x56\xae\x04\x2e\x75" 30568 "\x89\x4e\x1b\x60\x52\xeb\x84\xf4" 30569 "\xd1\x33\xd2\x6c\x09\xb1\x1c\x43" 30570 "\x08\x67\x02\x01\xe3\x64\x82\xee" 30571 "\x36\xcd\xd0\x70\xf1\x93\xd5\x63" 30572 "\xef\x48\xc5\x56\xdb\x0a\x35\xfe" 30573 "\x85\x48\xb6\x97\x97\x02\x43\x1f" 30574 "\x7d\xc9\xa8\x2e\x71\x90\x04\x83" 30575 "\xe7\x46\xbd\x94\x52\xe3\xc5\xd1" 30576 "\xce\x6a\x2d\x6b\x86\x9a\xf5\x31" 30577 "\xcd\x07\x9c\xa2\xcd\x49\xf5\xec" 30578 "\x01\x3e\xdf\xd5\xdc\x15\x12\x9b" 30579 "\x0c\x99\x19\x7b\x2e\x83\xfb\xd8" 30580 "\x89\x3a\x1c\x1e\xb4\xdb\xeb\x23" 30581 "\xd9\x42\xae\x47\xfc\xda\x37\xe0" 30582 "\xd2\xb7\x47\xd9\xe8\xb5\xf6\x20" 30583 "\x42\x8a\x9d\xaf\xb9\x46\x80\xfd" 30584 "\xd4\x74\x6f\x38\x64\xf3\x8b\xed" 30585 "\x81\x94\x56\xe7\xf1\x1a\x64\x17" 30586 "\xd4\x27\x59\x09\xdf\x9b\x74\x05" 30587 "\x79\x6e\x13\x29\x2b\x9e\x1b\x86" 30588 "\x73\x9f\x40\xbe\x6e\xff\x92\x4e" 30589 "\xbf\xaa\xf4\xd0\x88\x8b\x6f\x73" 30590 "\x9d\x8b\xbf\xe5\x8a\x85\x45\x67" 30591 "\xd3\x13\x72\xc6\x2a\x63\x3d\xb1" 30592 "\x35\x7c\xb4\x38\xbb\x31\xe3\x77" 30593 "\x37\xad\x75\xa9\x6f\x84\x4e\x4f" 30594 "\xeb\x5b\x5d\x39\x6d\xed\x0a\xad" 30595 "\x6c\x1b\x8e\x1f\x57\xfa\xc7\x7c" 30596 "\xbf\xcf\xf2\xd1\x72\x3b\x70\x78" 30597 "\xee\x8e\xf3\x4f\xfd\x61\x30\x9f" 30598 "\x56\x05\x1d\x7d\x94\x9b\x5f\x8c" 30599 "\xa1\x0f\xeb\xc3\xa9\x9e\xb8\xa0" 30600 "\xc6\x4e\x1e\xb1\xbc\x0a\x87\xa8" 30601 "\x52\xa9\x1e\x3d\x58\x8e\xc6\x95" 30602 "\x85\x58\xa3\xc3\x3a\x43\x32\x50" 30603 "\x6c\xb3\x61\xe1\x0c\x7d\x02\x63" 30604 "\x5f\x8b\xdf\xef\x13\xf8\x66\xea" 30605 "\x89\x00\x1f\xbd\x5b\x4c\xd5\x67" 30606 "\x8f\x89\x84\x33\x2d\xd3\x70\x94" 30607 "\xde\x7b\xd4\xb0\xeb\x07\x96\x98" 30608 "\xc5\xc0\xbf\xc8\xcf\xdc\xc6\x5c" 30609 "\xd3\x7d\x78\x30\x0e\x14\xa0\x86" 30610 "\xd7\x8a\xb7\x53\xa3\xec\x71\xbf" 30611 "\x85\xf2\xea\xbd\x77\xa6\xd1\xfd" 30612 "\x5a\x53\x0c\xc3\xff\xf5\x1d\x46" 30613 "\x37\xb7\x2d\x88\x5c\xeb\x7a\x0c" 30614 "\x0d\x39\xc6\x40\x08\x90\x1f\x58" 30615 "\x36\x12\x35\x28\x64\x12\xe7\xbb" 30616 "\x50\xac\x45\x15\x7b\x16\x23\x5e" 30617 "\xd4\x11\x2a\x8e\x17\x47\xe1\xd0" 30618 "\x69\xc6\xd2\x5c\x2c\x76\xe6\xbb" 30619 "\xf7\xe7\x34\x61\x8e\x07\x36\xc8" 30620 "\xce\xcf\x3b\xeb\x0a\x55\xbd\x4e" 30621 "\x59\x95\xc9\x32\x5b\x79\x7a\x86" 30622 "\x03\x74\x4b\x10\x87\xb3\x60\xf6" 30623 "\x21\xa4\xa6\xa8\x9a\xc9\x3a\x6f" 30624 "\xd8\x13\xc9\x18\xd4\x38\x2b\xc2" 30625 "\xa5\x7e\x6a\x09\x0f\x06\xdf\x53" 30626 "\x9a\x44\xd9\x69\x2d\x39\x61\xb7" 30627 "\x1c\x36\x7f\x9e\xc6\x44\x9f\x42" 30628 "\x18\x0b\x99\xe6\x27\xa3\x1e\xa6" 30629 "\xd0\xb9\x9a\x2b\x6f\x60\x75\xbd" 30630 "\x52\x4a\x91\xd4\x7b\x8f\x95\x9f" 30631 "\xdd\x74\xed\x8b\x20\x00\xdd\x08" 30632 "\x6e\x5b\x61\x7b\x06\x6a\x19\x84" 30633 "\x1c\xf9\x86\x65\xcd\x1c\x73\x3f" 30634 "\x28\x5c\x8a\x93\x1a\xf3\xa3\x6c" 30635 "\x6c\xa9\x7c\xea\x3c\xd4\x15\x45" 30636 "\x7f\xbc\xe3\xbb\x42\xf0\x2e\x10" 30637 "\xcd\x0c\x8b\x44\x1a\x82\x83\x0c" 30638 "\x58\xb1\x24\x28\xa0\x11\x2f\x63" 30639 "\xa5\x82\xc5\x9f\x86\x42\xf4\x4d" 30640 "\x89\xdb\x76\x4a\xc3\x7f\xc4\xb8" 30641 "\xdd\x0d\x14\xde\xd2\x62\x02\xcb" 30642 "\x70\xb7\xee\xf4\x6a\x09\x12\x5e" 30643 "\xd1\x26\x1a\x2c\x20\x71\x31\xef" 30644 "\x7d\x65\x57\x65\x98\xff\x8b\x02" 30645 "\x9a\xb5\xa4\xa1\xaf\x03\xc4\x50" 30646 "\x33\xcf\x1b\x25\xfa\x7a\x79\xcc" 30647 "\x55\xe3\x21\x63\x0c\x6d\xeb\x5b" 30648 "\x1c\xad\x61\x0b\xbd\xb0\x48\xdb" 30649 "\xb3\xc8\xa0\x87\x7f\x8b\xac\xfd" 30650 "\xd2\x68\x9e\xb4\x11\x3c\x6f\xb1" 30651 "\xfe\x25\x7d\x84\x5a\xae\xc9\x31" 30652 "\xc3\xe5\x6a\x6f\xbc\xab\x41\xd9" 30653 "\xde\xce\xf9\xfa\xd5\x7c\x47\xd2" 30654 "\x66\x30\xc9\x97\xf2\x67\xdf\x59" 30655 "\xef\x4e\x11\xbc\x4e\x70\xe3\x46" 30656 "\x53\xbe\x16\x6d\x33\xfb\x57\x98" 30657 "\x4e\x34\x79\x3b\xc7\x3b\xaf\x94" 30658 "\xc1\x87\x4e\x47\x11\x1b\x22\x41" 30659 "\x99\x12\x61\xe0\xe0\x8c\xa9\xbd" 30660 "\x79\xb6\x06\x4d\x90\x3b\x0d\x30" 30661 "\x1a\x00\xaa\x0e\xed\x7c\x16\x2f" 30662 "\x0d\x1a\xfb\xf8\xad\x51\x4c\xab" 30663 "\x98\x4c\x80\xb6\x92\x03\xcb\xa9" 30664 "\x99\x9d\x16\xab\x43\x8c\x3f\x52" 30665 "\x96\x53\x63\x7e\xbb\xd2\x76\xb7" 30666 "\x6b\x77\xab\x52\x80\x33\xe3\xdf" 30667 "\x4b\x3c\x23\x1a\x33\xe1\x43\x40" 30668 "\x39\x1a\xe8\xbd\x3c\x6a\x77\x42" 30669 "\x88\x9f\xc6\xaa\x65\x28\xf2\x1e" 30670 "\xb0\x7c\x8e\x10\x41\x31\xe9\xd5" 30671 "\x9d\xfd\x28\x7f\xfb\x61\xd3\x39" 30672 "\x5f\x7e\xb4\xfb\x9c\x7d\x98\xb7" 30673 "\x37\x2f\x18\xd9\x3b\x83\xaf\x4e" 30674 "\xbb\xd5\x49\x69\x46\x93\x3a\x21" 30675 "\x46\x1d\xad\x84\xb5\xe7\x8c\xff" 30676 "\xbf\x81\x7e\x22\xf6\x88\x8c\x82" 30677 "\xf5\xde\xfe\x18\xc9\xfb\x58\x07" 30678 "\xe4\x68\xff\x9c\xf4\xe0\x24\x20" 30679 "\x90\x92\x01\x49\xc2\x38\xe1\x7c" 30680 "\xac\x61\x0b\x96\x36\xa4\x77\xe9" 30681 "\x29\xd4\x97\xae\x15\x13\x7c\x6c" 30682 "\x2d\xf1\xc5\x83\x97\x02\xa8\x2e" 30683 "\x0b\x0f\xaf\xb5\x42\x18\x8a\x8c" 30684 "\xb8\x28\x85\x28\x1b\x2a\x12\xa5" 30685 "\x4b\x0a\xaf\xd2\x72\x37\x66\x23" 30686 "\x28\xe6\x71\xa0\x77\x85\x7c\xff" 30687 "\xf3\x8d\x2f\x0c\x33\x30\xcd\x7f" 30688 "\x61\x64\x23\xb2\xe9\x79\x05\xb8" 30689 "\x61\x47\xb1\x2b\xda\xf7\x9a\x24" 30690 "\x94\xf6\xcf\x07\x78\xa2\x80\xaa" 30691 "\x6e\xe9\x58\x97\x19\x0c\x58\x73" 30692 "\xaf\xee\x2d\x6e\x26\x67\x18\x8a" 30693 "\xc6\x6d\xf6\xbc\x65\xa9\xcb\xe7" 30694 "\x53\xf1\x61\x97\x63\x52\x38\x86" 30695 "\x0e\xdd\x33\xa5\x30\xe9\x9f\x32" 30696 "\x43\x64\xbc\x2d\xdc\x28\x43\xd8" 30697 "\x6c\xcd\x00\x2c\x87\x9a\x33\x79" 30698 "\xbd\x63\x6d\x4d\xf9\x8a\x91\x83" 30699 "\x9a\xdb\xf7\x9a\x11\xe1\xd1\x93" 30700 "\x4a\x54\x0d\x51\x38\x30\x84\x0b" 30701 "\xc5\x29\x8d\x92\x18\x6c\x28\xfe" 30702 "\x1b\x07\x57\xec\x94\x74\x0b\x2c" 30703 "\x21\x01\xf6\x23\xf9\xb0\xa0\xaf" 30704 "\xb1\x3e\x2e\xa8\x0d\xbc\x2a\x68" 30705 "\x59\xde\x0b\x2d\xde\x74\x42\xa1" 30706 "\xb4\xce\xaf\xd8\x42\xeb\x59\xbd" 30707 "\x61\xcc\x27\x28\xc6\xf2\xde\x3e" 30708 "\x68\x64\x13\xd3\xc3\xc0\x31\xe0" 30709 "\x5d\xf9\xb4\xa1\x09\x20\x46\x8b" 30710 "\x48\xb9\x27\x62\x00\x12\xc5\x03" 30711 "\x28\xfd\x55\x27\x1c\x31\xfc\xdb" 30712 "\xc1\xcb\x7e\x67\x91\x2e\x50\x0c" 30713 "\x61\xf8\x9f\x31\x26\x5a\x3d\x2e" 30714 "\xa0\xc7\xef\x2a\xb6\x24\x48\xc9" 30715 "\xbb\x63\x99\xf4\x7c\x4e\xc5\x94" 30716 "\x99\xd5\xff\x34\x93\x8f\x31\x45" 30717 "\xae\x5e\x7b\xfd\xf4\x81\x84\x65" 30718 "\x5b\x41\x70\x0b\xe5\xaa\xec\x95" 30719 "\x6b\x3d\xe3\xdc\x12\x78\xf8\x28" 30720 "\x26\xec\x3a\x64\xc4\xab\x74\x97" 30721 "\x3d\xcf\x21\x7d\xcf\x59\xd3\x15" 30722 "\x47\x94\xe4\xd9\x48\x4c\x02\x49" 30723 "\x68\x50\x22\x16\x96\x2f\xc4\x23" 30724 "\x80\x47\x27\xd1\xee\x10\x3b\xa7" 30725 "\x19\xae\xe1\x40\x5f\x3a\xde\x5d" 30726 "\x97\x1c\x59\xce\xe1\xe7\x32\xa7" 30727 "\x20\x89\xef\x44\x22\x38\x3c\x14" 30728 "\x99\x3f\x1b\xd6\x37\xfe\x93\xbf" 30729 "\x34\x13\x86\xd7\x9b\xe5\x2a\x37" 30730 "\x72\x16\xa4\xdf\x7f\xe4\xa4\x66" 30731 "\x9d\xf2\x0b\x29\xa1\xe2\x9d\x36" 30732 "\xe1\x9d\x56\x95\x73\xe1\x91\x58" 30733 "\x0f\x64\xf8\x90\xbb\x0c\x48\x0f" 30734 "\xf5\x52\xae\xd9\xeb\x95\xb7\xdd" 30735 "\xae\x0b\x20\x55\x87\x3d\xf0\x69" 30736 "\x3c\x0a\x54\x61\xea\x00\xbd\xba" 30737 "\x5f\x7e\x25\x8c\x3e\x61\xee\xb2" 30738 "\x1a\xc8\x0e\x0b\xa5\x18\x49\xf2" 30739 "\x6e\x1d\x3f\x83\xc3\xf1\x1a\xcb" 30740 "\x9f\xc9\x82\x4e\x7b\x26\xfd\x68" 30741 "\x28\x25\x8d\x22\x17\xab\xf8\x4e" 30742 "\x1a\xa9\x81\x48\xb0\x9f\x52\x75" 30743 "\xe4\xef\xdd\xbd\x5b\xbe\xab\x3c" 30744 "\x43\x76\x23\x62\xce\xb8\xc2\x5b" 30745 "\xc6\x31\xe6\x81\xb4\x42\xb2\xfd" 30746 "\xf3\x74\xdd\x02\x3c\xa0\xd7\x97" 30747 "\xb0\xe7\xe9\xe0\xce\xef\xe9\x1c" 30748 "\x09\xa2\x6d\xd3\xc4\x60\xd6\xd6" 30749 "\x9e\x54\x31\x45\x76\xc9\x14\xd4" 30750 "\x95\x17\xe9\xbe\x69\x92\x71\xcb" 30751 "\xde\x7c\xf1\xbd\x2b\xef\x8d\xaf" 30752 "\x51\xe8\x28\xec\x48\x7f\xf8\xfa" 30753 "\x9f\x9f\x5e\x52\x61\xc3\xfc\x9a" 30754 "\x7e\xeb\xe3\x30\xb6\xfe\xc4\x4a" 30755 "\x87\x1a\xff\x54\x64\xc7\xaa\xa2" 30756 "\xfa\xb7\xb2\xe7\x25\xce\x95\xb4" 30757 "\x15\x93\xbd\x24\xb6\xbc\xe4\x62" 30758 "\x93\x7f\x44\x40\x72\xcb\xfb\xb2" 30759 "\xbf\xe8\x03\xa5\x87\x12\x27\xfd" 30760 "\xc6\x21\x8a\x8f\xc2\x48\x48\xb9" 30761 "\x6b\xb6\xf0\xf0\x0e\x0a\x0e\xa4" 30762 "\x40\xa9\xd8\x23\x24\xd0\x7f\xe2" 30763 "\xf9\xed\x76\xf0\x91\xa5\x83\x3c" 30764 "\x55\xe1\x92\xb8\xb6\x32\x9e\x63" 30765 "\x60\x81\x75\x29\x9e\xce\x2a\x70" 30766 "\x28\x0c\x87\xe5\x46\x73\x76\x66" 30767 "\xbc\x4b\x6c\x37\xc7\xd0\x1a\xa0" 30768 "\x9d\xcf\x04\xd3\x8c\x42\xae\x9d" 30769 "\x35\x5a\xf1\x40\x4c\x4e\x81\xaa" 30770 "\xfe\xd5\x83\x4f\x29\x19\xf3\x6c" 30771 "\x9e\xd0\x53\xe5\x05\x8f\x14\xfb" 30772 "\x68\xec\x0a\x3a\x85\xcd\x3e\xb4" 30773 "\x4a\xc2\x5b\x92\x2e\x0b\x58\x64" 30774 "\xde\xca\x64\x86\x53\xdb\x7f\x4e" 30775 "\x54\xc6\x5e\xaa\xe5\x82\x3b\x98" 30776 "\x5b\x01\xa7\x1f\x7b\x3d\xcc\x19" 30777 "\xf1\x11\x02\x64\x09\x25\x7c\x26" 30778 "\xee\xad\x50\x68\x31\x26\x16\x0f" 30779 "\xb6\x7b\x6f\xa2\x17\x1a\xba\xbe" 30780 "\xc3\x60\xdc\xd2\x44\xe0\xb4\xc4" 30781 "\xfe\xff\x69\xdb\x60\xa6\xaf\x39" 30782 "\x0a\xbd\x6e\x41\xd1\x9f\x87\x71" 30783 "\xcc\x43\xa8\x47\x10\xbc\x2b\x7d" 30784 "\x40\x12\x43\x31\xb8\x12\xe0\x95" 30785 "\x6f\x9d\xf8\x75\x51\x3d\x61\xbe" 30786 "\xa0\xd1\x0b\x8d\x50\xc7\xb8\xe7" 30787 "\xab\x03\xda\x41\xab\xc5\x4e\x33" 30788 "\x5a\x63\x94\x90\x22\x72\x54\x26" 30789 "\x93\x65\x99\x45\x55\xd3\x55\x56" 30790 "\xc5\x39\xe4\xb4\xb1\xea\xd8\xf9" 30791 "\xb5\x31\xf7\xeb\x80\x1a\x9e\x8d" 30792 "\xd2\x40\x01\xea\x33\xb9\xf2\x7a" 30793 "\x43\x41\x72\x0c\xbf\x20\xab\xf7" 30794 "\xfa\x65\xec\x3e\x35\x57\x1e\xef" 30795 "\x2a\x81\xfa\x10\xb2\xdb\x8e\xfa" 30796 "\x7f\xe7\xaf\x73\xfc\xbb\x57\xa2" 30797 "\xaf\x6f\x41\x11\x30\xd8\xaf\x94" 30798 "\x53\x8d\x4c\x23\xa5\x20\x63\xcf" 30799 "\x0d\x00\xe0\x94\x5e\x92\xaa\xb5" 30800 "\xe0\x4e\x96\x3c\xf4\x26\x2f\xf0" 30801 "\x3f\xd7\xed\x75\x2c\x63\xdf\xc8" 30802 "\xfb\x20\xb5\xae\x44\x83\xc0\xab" 30803 "\x05\xf9\xbb\xa7\x62\x7d\x21\x5b" 30804 "\x04\x80\x93\x84\x5f\x1d\x9e\xcd" 30805 "\xa2\x07\x7e\x22\x2f\x55\x94\x23" 30806 "\x74\x35\xa3\x0f\x03\xbe\x07\x62" 30807 "\xe9\x16\x69\x7e\xae\x38\x0e\x9b" 30808 "\xad\x6e\x83\x90\x21\x10\xb8\x07" 30809 "\xdc\xc1\x44\x20\xa5\x88\x00\xdc" 30810 "\xe1\x82\x16\xf1\x0c\xdc\xed\x8c" 30811 "\x32\xb5\x49\xab\x11\x41\xd5\xd2" 30812 "\x35\x2c\x70\x73\xce\xeb\xe3\xd6" 30813 "\xe4\x7d\x2c\xe8\x8c\xec\x8a\x92" 30814 "\x50\x87\x51\xbd\x2d\x9d\xf2\xf0" 30815 "\x3c\x7d\xb1\x87\xf5\x01\xb0\xed" 30816 "\x02\x5a\x20\x4d\x43\x08\x71\x49" 30817 "\x77\x72\x9b\xe6\xef\x30\xc9\xa2" 30818 "\x66\x66\xb8\x68\x9d\xdf\xc6\x16" 30819 "\xa5\x78\xee\x3c\x47\xa6\x7a\x31" 30820 "\x07\x6d\xce\x7b\x86\xf8\xb2\x31" 30821 "\xa8\xa4\x77\x3c\x63\x36\xe8\xd3" 30822 "\x7d\x40\x56\xd8\x48\x56\x9e\x3e" 30823 "\x56\xf6\x3d\xd2\x12\x6e\x35\x29" 30824 "\xd4\x7a\xdb\xff\x97\x4c\xeb\x3c" 30825 "\x28\x2a\xeb\xe9\x43\x40\x61\x06" 30826 "\xb8\xa8\x6d\x18\xc8\xbc\xc7\x23" 30827 "\x53\x2b\x8b\xcc\xce\x88\xdf\xf8" 30828 "\xff\xf8\x94\xe4\x5c\xee\xcf\x39" 30829 "\xe0\xf6\x1a\xae\xf2\xd5\x41\x6a" 30830 "\x09\x5a\x50\x66\xc4\xf4\x66\xdc" 30831 "\x6a\x69\xee\xc8\x47\xe6\x87\x52" 30832 "\x9e\x28\xe4\x39\x02\x0d\xc4\x7e" 30833 "\x18\xe6\xc6\x09\x07\x03\x30\xb9" 30834 "\xd1\xb0\x48\xe6\x80\xe8\x8c\xe6" 30835 "\xc7\x2c\x33\xca\x64\xe5\xc0\x6e" 30836 "\xac\x14\x4b\xe1\xf6\xeb\xce\xe4" 30837 "\xc1\x8c\xea\x5b\x8d\x3c\x86\x91" 30838 "\xd1\xd7\x16\x9c\x09\x9c\x6a\x51" 30839 "\xe5\xcd\xe3\xb0\x33\x1f\x03\xcd" 30840 "\xe5\xd8\x40\x9b\xdc\x29\xbe\xfa" 30841 "\x24\xcc\xf1\x55\x68\x3a\x89\x0d" 30842 "\x08\x48\xfd\x9b\x47\x41\x10\xae" 30843 "\x53\x3a\x83\x87\xd4\x89\xe7\x38" 30844 "\x47\xee\xd7\xbe\xe2\x58\x37\xd2" 30845 "\xfc\x21\x1d\x20\xa5\x2d\x69\x0c" 30846 "\x36\x5b\x2f\xcd\xa1\xa6\xe4\xa1" 30847 "\x00\x4d\xf7\xc8\x2d\xc7\x16\x6c" 30848 "\x6d\xad\x32\x8c\x8f\x74\xf9\xfa" 30849 "\x78\x1c\x9a\x0f\x6e\x93\x9c\x20" 30850 "\x43\xb9\xe4\xda\xc4\xc7\x90\x47" 30851 "\x86\x68\xb7\x6f\x82\x59\x4a\x30" 30852 "\xf1\xfd\x31\x0f\xa1\xea\x9b\x6b" 30853 "\x18\x5c\x39\xb0\xc7\x80\x64\xff" 30854 "\x6d\x5b\xb4\x8b\xba\x90\xea\x4e" 30855 "\x9a\x04\xd2\x68\x18\x50\xb5\x91" 30856 "\x45\x4f\x58\x5a\xe5\xc6\x7c\xab" 30857 "\x61\x3e\x3d\xec\x18\x87\xfc\xea" 30858 "\x26\x35\x4c\x99\x8a\x3f\x00\x7b" 30859 "\xf5\x89\x62\xda\xdd\xf1\x43\xef" 30860 "\x2c\x1d\x92\xfa\x9a\xd0\x37\x03" 30861 "\x69\x9c\xd8\x1f\x41\x44\xb7\x73" 30862 "\x54\x14\x91\x12\x41\x41\x54\xa2" 30863 "\x91\x55\xb6\xf7\x23\x41\xc9\xc2" 30864 "\x5b\x53\xf2\x61\x63\x0d\xa9\x87" 30865 "\x1a\xbb\x11\x1f\x3c\xbb\xa8\x1f" 30866 "\xe2\x66\x56\x88\x06\x3c\xd2\x0f" 30867 "\x3b\xc4\xd6\x8c\xbe\x54\x9f\xa8" 30868 "\x9c\x89\xfb\x88\x05\xef\xcd\xe7" 30869 "\xc1\xc4\x21\x36\x22\x8d\x9a\x5d" 30870 "\x1b\x1e\x4a\xc0\x89\xdd\x76\x16" 30871 "\x5a\xce\xcd\x1e\x6a\x1f\xa0\x2b" 30872 "\x83\xf6\x5e\x28\x8e\x65\xb5\x86" 30873 "\x72\x8f\xc5\xf2\x54\x81\x10\x8d" 30874 "\x63\x7b\x42\x7d\x06\x08\x16\xb3" 30875 "\xb0\x60\x65\x41\x49\xdb\x0d\xc1" 30876 "\xe2\xef\x72\x72\x06\xe7\x60\x5c" 30877 "\x95\x1c\x7d\x52\xec\x82\xee\xd3" 30878 "\x5b\xab\x61\xa4\x1f\x61\x64\x0c" 30879 "\x28\x32\x21\x7a\x81\xe7\x81\xf3" 30880 "\xdb\xc0\x18\xd9\xae\x0b\x3c\x9a" 30881 "\x58\xec\x70\x4f\x40\x25\x2b\xba" 30882 "\x96\x59\xac\x34\x45\x29\xc6\x57" 30883 "\xc1\xc3\x93\x60\x77\x92\xbb\x83" 30884 "\x8a\xa7\x72\x45\x2a\xc9\x35\xe7" 30885 "\x66\xd6\xa9\xe9\x43\x87\x20\x11" 30886 "\x6a\x2f\x87\xac\xe0\x93\x82\xe5" 30887 "\x6c\x57\xa9\x4c\x9e\x56\x57\x33" 30888 "\x1c\xd8\x7e\x25\x27\x41\x89\x97" 30889 "\xea\xa5\x56\x02\x5b\x93\x13\x46" 30890 "\xdc\x53\x3d\x95\xef\xaf\x9f\xf0" 30891 "\x0a\x8a\xfe\x0c\xbf\xf0\x25\x5f" 30892 "\xb4\x9f\x1b\x72\x9c\x37\xba\x46" 30893 "\x4e\xcc\xcc\x02\x5c\xec\x3f\x98" 30894 "\xff\x56\x1a\xc2\x7a\x65\x8f\xf6" 30895 "\xd2\x81\x37\x7a\x0a\xfc\x79\xb9" 30896 "\xcb\x8c\xc8\x1a\xd0\xba\x5d\x55" 30897 "\xbc\x6d\x2e\xb2\x2f\x75\x29\x3f" 30898 "\x1a\x4b\xa8\xd7\xe8\xf6\xf4\x2a" 30899 "\xa5\xa1\x68\xec\xf3\xd5\xdd\x0f" 30900 "\xad\x57\xae\x98\x83\xd5\x92\x4e" 30901 "\x76\x86\x8e\x5e\x4b\x87\x7b\xf7" 30902 "\x2d\x79\x3f\x12\x6a\x24\x58\xc8" 30903 "\xab\x9a\x65\x75\x82\x6f\xa5\x39" 30904 "\x72\xb0\xdf\x93\xb5\xa2\xf3\xdd" 30905 "\x1f\x32\xfa\xdb\xfe\x1b\xbf\x0a" 30906 "\xd9\x95\xdd\x02\xf1\x23\x54\xb1" 30907 "\xa5\xbb\x24\x04\x5c\x2a\x97\x92" 30908 "\xe6\xe0\x10\x61\xe3\x46\xc7\x0c" 30909 "\xcb\xbc\x51\x9a\x35\x16\xd9\x42" 30910 "\x62\xb3\x5e\xa4\x3c\x84\xa0\x7f" 30911 "\xb8\x7f\x70\xd1\x8b\x03\xdf\x27" 30912 "\x32\x06\x3f\x12\x23\x19\x22\x82" 30913 "\x2d\x37\xa5\x00\x31\x9b\xa9\x21" 30914 "\x8e\x34\x8c\x8e\x4f\xe8\xd4\x63" 30915 "\x6c\xb2\xa9\x6e\xf6\x7c\x96\xf1" 30916 "\x0e\x64\xab\x14\x3d\x8f\x74\xb3" 30917 "\x35\x79\x84\x78\x06\x68\x97\x30" 30918 "\xe0\x22\x55\xd6\xc5\x5b\x38\xb2" 30919 "\x75\x24\x0c\x52\xb6\x57\xcc\x0a" 30920 "\xbd\x3c\xd0\x73\x47\xd1\x25\xd6" 30921 "\x1c\xfd\x27\x05\x3f\x70\xe1\xa7" 30922 "\x69\x3b\xee\xc9\x9f\xfd\x2a\x7e" 30923 "\xab\x58\xe6\x0b\x35\x5e\x52\xf9" 30924 "\xff\xac\x5b\x82\x88\xa7\x65\xbc" 30925 "\x61\x29\xdc\xa1\x94\x42\xd1\xd3" 30926 "\xa0\xd8\xba\x3b\x49\xc8\xa7\xce" 30927 "\x01\x6c\xb7\x3f\xe3\x98\x4d\xd1" 30928 "\x9f\x46\x0d\xb3\xf2\x43\x33\x49" 30929 "\xb7\x27\xbd\xba\xcc\x3f\x09\x56" 30930 "\xfa\x64\x18\xb8\x17\x28\xde\x0d" 30931 "\x29\xfa\x1f\xad\x60\x3b\x90\xa7" 30932 "\x05\x9f\x4c\xc4\xdc\x05\x3b\x17" 30933 "\x58\xea\x99\xfd\x6b\x8a\x93\x77" 30934 "\xa5\x44\xbd\x8d\x29\x44\x29\x89" 30935 "\x52\x1d\x89\x8b\x44\x8f\xb9\x68" 30936 "\xeb\x93\xfd\x92\xd9\x14\x35\x9c" 30937 "\x28\x3a\x9f\x1d\xd8\xe0\x2a\x76" 30938 "\x51\xc1\xf0\xa9\x1d\xb4\xf8\xb9" 30939 "\xfc\x14\x78\x5a\xa2\xb1\xdb\x94" 30940 "\xcb\x18\xb9\x34\xbd\x0c\x65\x1d" 30941 "\x64\xde\xd0\x3a\xe4\x68\x0e\xbc" 30942 "\x13\xa7\x47\x89\x62\xa3\x03\x19" 30943 "\x64\xa1\x02\x27\x3a\x8d\x43\xfa" 30944 "\x68\xff\xda\x8b\x40\xe9\x19\x8b" 30945 "\x56\xbe\x1c\x9b\xe6\xf6\x3f\x60" 30946 "\xdb\x7a\xd5\xab\x82\xd8\xd9\x99" 30947 "\xe3\x5b\x0c\x0c\x69\x18\x5c\xed" 30948 "\x03\xf9\xc1\x61\xc4\x7b\xd4\x90" 30949 "\x43\xc3\x39\xec\xac\xcb\x1f\x4b" 30950 "\x23\xf8\xa9\x98\x2f\xf6\x48\x90" 30951 "\x6c\x2b\x94\xad\x14\xdd\xcc\xa2" 30952 "\x3d\xc7\x86\x0f\x7f\x1c\x0b\x93" 30953 "\x4b\x74\x1f\x80\x75\xb4\x91\xdf" 30954 "\xa8\x26\xf9\x06\x2b\x3a\x2c\xfd" 30955 "\x3c\x31\x40\x1e\x5b\xa6\x86\x01" 30956 "\xc4\xa2\x80\x4f\xf5\xa2\xf4\xff" 30957 "\xf6\x07\x8c\x92\xf7\x74\xbd\x42" 30958 "\xb0\x3f\x6b\x05\xca\x40\xeb\x04" 30959 "\x20\xa9\x37\x78\x32\x03\x60\xcc" 30960 "\xf3\xec\xb2\x2d\xb5\x80\x7c\xe4" 30961 "\x37\x53\x25\xd1\xe8\x91\x6a\xe5" 30962 "\xdf\xdd\xb0\xab\x69\xc7\xa1\xb2" 30963 "\xfc\xb3\xd1\x9e\xda\xa8\x0d\x68" 30964 "\xfe\x7d\xdc\x56\x33\x65\x99\xd2" 30965 "\xec\xa5\xa0\xa1\x26\xc9\xec\xbd" 30966 "\x22\x20\x5e\x0d\xcb\x93\x64\x7a" 30967 "\x56\x75\xed\xe5\x45\xa2\xbd\x16" 30968 "\x59\xf7\x43\xd9\x5b\x2c\xdd\xb6" 30969 "\x1d\xa8\x05\x89\x2f\x65\x2e\x66" 30970 "\xfe\xad\x93\xeb\x85\x8f\xe8\x4c" 30971 "\x00\x44\x71\x03\x0e\x26\xaf\xfd" 30972 "\xfa\x56\x0f\xdc\x9c\xf3\x2e\xab" 30973 "\x88\x26\x61\xc6\x13\xfe\xba\xc1" 30974 "\xd8\x8a\x38\xc3\xb6\x4e\x6d\x80" 30975 "\x4c\x65\x93\x2f\xf5\x54\xff\x63" 30976 "\xbe\xdf\x9a\xe3\x4f\xca\xc9\x71" 30977 "\x12\xab\x95\x66\xec\x09\x64\xea" 30978 "\xdc\x9f\x01\x61\x24\x88\xd1\xa7" 30979 "\xd0\x69\x26\xf0\x80\xb0\xec\x86" 30980 "\xc2\x58\x2f\x6a\xc5\xfd\xfc\x2a" 30981 "\xf6\x3e\x23\x77\x3b\x7e\xc5\xc5" 30982 "\xe7\xf9\x4d\xcc\x68\x53\x11\xc8" 30983 "\x5b\x44\xbd\x48\x0f\xb3\x35\x1a" 30984 "\x93\x4a\x80\x16\xa3\x0d\x50\x85" 30985 "\xa6\xc4\xd4\x74\x4d\x87\x59\x51" 30986 "\xd7\xf7\x7d\xee\xd0\x9b\xd1\x83" 30987 "\x25\x2b\xc6\x39\x27\x6a\xb3\x41" 30988 "\x5f\xd2\x24\xd4\xd6\xfa\x8c\x3e" 30989 "\xb2\xf9\x11\x71\x7a\x9e\x5e\x7b" 30990 "\x5b\x9a\x47\x80\xca\x1c\xbe\x04" 30991 "\x5d\x34\xc4\xa2\x2d\x41\xfe\x73" 30992 "\x53\x15\x9f\xdb\xe7\x7d\x82\x19" 30993 "\x21\x1b\x67\x2a\x74\x7a\x21\x4a" 30994 "\xc4\x96\x6f\x00\x92\x69\xf1\x99" 30995 "\x50\xf1\x4a\x16\x11\xf1\x16\x51", 30996 .ctext = "\x2c\xf5\x4c\xc9\x99\x19\x83\x84" 30997 "\x09\xbc\xe6\xad\xbe\xb6\x6b\x1b" 30998 "\x75\x0b\x3d\x33\x10\xb4\x8b\xf7" 30999 "\xa7\xc7\xba\x9f\x6e\xd7\xc7\xfd" 31000 "\x58\xef\x24\xf4\xdc\x26\x3f\x35" 31001 "\x02\x98\xf2\x8c\x96\xca\xfc\xca" 31002 "\xca\xfa\x27\xe6\x23\x1f\xf0\xc7" 31003 "\xe3\x46\xbf\xca\x7b\x4e\x24\xcd" 31004 "\xd0\x13\x3f\x80\xd6\x5b\x0b\xdc" 31005 "\xad\xc6\x49\x77\xd7\x58\xf5\xfd" 31006 "\x58\xba\x72\x0d\x9e\x0b\x63\xc3" 31007 "\x86\xac\x06\x97\x70\x42\xec\x3a" 31008 "\x0d\x53\x27\x17\xbd\x3e\xcb\xe0" 31009 "\xaa\x19\xb4\xfe\x5d\x1b\xcb\xd7" 31010 "\x99\xc3\x19\x45\x6f\xdf\x64\x44" 31011 "\x9f\xf8\x55\x1b\x72\x8d\x78\x51" 31012 "\x3c\x83\x48\x8f\xaf\x05\x60\x7d" 31013 "\x22\xce\x07\x53\xfd\x91\xcf\xfa" 31014 "\x5f\x86\x66\x3e\x72\x67\x7f\xc1" 31015 "\x49\x82\xc7\x1c\x91\x1e\x48\xcd" 31016 "\x5e\xc6\x5f\xd9\xc9\x43\x88\x35" 31017 "\x80\xba\x91\xe1\x54\x4b\x14\xbe" 31018 "\xbd\x75\x48\xb8\xde\x22\x64\xb5" 31019 "\x8c\xcb\x5e\x92\x99\x8f\x4a\xab" 31020 "\x00\x6c\xb4\x2e\x03\x3b\x0e\xee" 31021 "\x4d\x39\x05\xbc\x94\x80\xbb\xb2" 31022 "\x36\x16\xa3\xd9\x8f\x61\xd7\x67" 31023 "\xb5\x90\x46\x85\xe1\x4e\x71\x84" 31024 "\xd0\x84\xc0\xc0\x8f\xad\xdb\xeb" 31025 "\x44\xf4\x66\x35\x3f\x92\xa2\x05" 31026 "\xa4\x9c\xb8\xdc\x77\x6c\x85\x34" 31027 "\xd2\x6a\xea\x32\xb8\x08\xf6\x13" 31028 "\x78\x1e\x29\xef\x12\x54\x16\x28" 31029 "\x25\xf8\x32\x0e\x4f\x94\xe6\xb3" 31030 "\x0b\x97\x79\x97\xb3\xb0\x37\x61" 31031 "\xa4\x10\x6f\x15\x9c\x7d\x22\x41" 31032 "\xe2\xd7\xa7\xa0\xfc\xc5\x62\x55" 31033 "\xed\x68\x39\x7b\x09\xd2\x17\xaa" 31034 "\xf2\xb8\xc9\x1d\xa2\x23\xfd\xaa" 31035 "\x9c\x57\x16\x0d\xe3\x63\x3c\x2b" 31036 "\x13\xdd\xa2\xf0\x8e\xd3\x02\x81" 31037 "\x09\xba\x80\x02\xdb\x97\xfe\x0f" 31038 "\x77\x8d\x18\xf1\xf4\x59\x27\x79" 31039 "\xa3\x46\x88\xda\x51\x67\xd0\xe9" 31040 "\x5d\x22\x98\xc1\xe4\xea\x08\xda" 31041 "\xf7\xb9\x16\x71\x36\xbd\x43\x8a" 31042 "\x4b\x6e\xf3\xaa\xb0\xba\x1a\xbc" 31043 "\xaa\xca\xde\x5c\xc0\xa5\x11\x6d" 31044 "\x8a\x8f\xcc\x04\xfc\x6c\x89\x75" 31045 "\x4b\x2c\x29\x6f\x41\xc7\x6e\xda" 31046 "\xea\xa6\xaf\xb0\xb1\x46\x9e\x30" 31047 "\x5e\x11\x46\x07\x3b\xd6\xaa\x36" 31048 "\xa4\x01\x84\x1d\xb9\x8e\x58\x9d" 31049 "\xa9\xb6\x1c\x56\x5c\x5a\xde\xfa" 31050 "\x66\x96\xe6\x29\x26\xd4\x68\xd0" 31051 "\x1a\xcb\x98\xbb\xce\x19\xbb\x87" 31052 "\x00\x6c\x59\x17\xe3\xd1\xe6\x5c" 31053 "\xd0\x98\xe1\x91\xc4\x28\xaf\xbf" 31054 "\xbb\xdf\x75\x4e\xd9\x9d\x99\x0f" 31055 "\xc6\x0c\x03\x24\x3e\xb6\xd7\x3f" 31056 "\xd5\x43\x4a\x47\x26\xab\xf6\x3f" 31057 "\x7f\xf1\x15\x0c\xde\x68\xa0\x5f" 31058 "\x63\xf9\xe2\x5e\x5d\x42\xf1\x36" 31059 "\x38\x90\x06\x18\x84\xf2\xfa\x81" 31060 "\x36\x33\x29\x18\xaa\x8c\x49\x0e" 31061 "\xda\x27\x38\x9c\x12\x8b\x83\xfa" 31062 "\x40\xd0\xb6\x0a\x72\x85\xf0\xc7" 31063 "\xaa\x5f\x30\x1a\x6f\x45\xe4\x35" 31064 "\x4c\xf3\x4c\xe4\x1c\xd7\x48\x77" 31065 "\xdd\x3e\xe4\x73\x44\xb1\xb8\x1c" 31066 "\x42\x40\x90\x61\xb1\x6d\x8b\x20" 31067 "\x2d\x30\x63\x01\x26\x71\xbc\x5a" 31068 "\x76\xce\xc1\xfb\x13\xf9\x4c\x6e" 31069 "\x7a\x16\x8a\x53\xcb\x07\xaa\xa1" 31070 "\xba\xd0\x68\x7a\x2d\x25\x48\x85" 31071 "\xb7\x6b\x0a\x05\xf2\xdf\x0e\x46" 31072 "\x4e\xc8\xcd\x59\x5b\x9a\x2e\x9e" 31073 "\xdb\x4a\xf6\xfd\x7b\xa4\x5c\x4d" 31074 "\x78\x8d\xe7\xb0\x84\x3f\xf0\xc1" 31075 "\x47\x39\xbf\x1e\x8c\xc2\x11\x0d" 31076 "\x90\xd1\x17\x42\xb3\x50\xeb\xaa" 31077 "\xcd\xc0\x98\x36\x84\xd0\xfe\x75" 31078 "\xf8\x8f\xdc\xa0\xa1\x53\xe5\x8c" 31079 "\xf2\x0f\x4a\x31\x48\xae\x3d\xaf" 31080 "\x19\x4b\x75\x2e\xc1\xe3\xcd\x4d" 31081 "\x2c\xa4\x54\x7b\x4d\x5e\x93\xa2" 31082 "\xe7\x1f\x34\x19\x9f\xb2\xbf\x22" 31083 "\x65\x1a\x03\x48\x12\x66\x50\x3e" 31084 "\x0e\x5d\x60\x29\x44\x69\x90\xee" 31085 "\x9d\x8b\x55\x78\xdf\x63\x31\xc3" 31086 "\x1b\x21\x7d\x06\x21\x86\x60\xb0" 31087 "\x9d\xdb\x3d\xcc\xe2\x20\xf4\x88" 31088 "\x20\x62\x2e\xe8\xa9\xea\x42\x41" 31089 "\xb0\xab\x73\x61\x40\x39\xac\x11" 31090 "\x55\x27\x51\x5f\x11\xef\xb1\x23" 31091 "\xff\x81\x99\x86\x0c\x6f\x16\xaf" 31092 "\xf6\x89\x86\xd8\xf6\x41\xc2\x80" 31093 "\x21\xf4\xd5\x6d\xef\xa3\x0c\x4d" 31094 "\x59\xfd\xdc\x93\x1a\x4f\xe6\x22" 31095 "\x83\x40\x0c\x98\x67\xba\x7c\x93" 31096 "\x0b\xa9\x89\xfc\x3e\xff\x84\x12" 31097 "\x3e\x27\xa3\x8a\x48\x17\xd6\x08" 31098 "\x85\x2f\xf1\xa8\x90\x90\x71\xbe" 31099 "\x44\xd6\x34\xbf\x74\x52\x0a\x17" 31100 "\x39\x64\x78\x1a\xbc\x81\xbe\xc8" 31101 "\xea\x7f\x0b\x5a\x2c\x77\xff\xac" 31102 "\xdd\x37\x35\x78\x09\x28\x29\x4a" 31103 "\xd1\xd6\x6c\xc3\xd5\x70\xdd\xfc" 31104 "\x21\xcd\xce\xeb\x51\x11\xf7\xbc" 31105 "\x12\x43\x1e\x6c\xa1\xa3\x79\xe6" 31106 "\x1d\x63\x52\xff\xf0\xbb\xcf\xec" 31107 "\x56\x58\x63\xe2\x21\x0b\x2d\x5c" 31108 "\x64\x09\xf3\xee\x05\x42\x34\x93" 31109 "\x38\xa8\x60\xea\x1d\x95\x90\x65" 31110 "\xad\x2f\xda\x1d\xdd\x21\x1a\xf1" 31111 "\x94\xe0\x6a\x81\xa1\xd3\x63\x31" 31112 "\x45\x73\xce\x54\x4e\xb1\x75\x26" 31113 "\x59\x18\xc2\x31\x73\xe6\xf5\x7d" 31114 "\x06\x5b\x65\x67\xe5\x69\x90\xdf" 31115 "\x27\x6a\xbf\x81\x7d\x92\xbe\xd1" 31116 "\x4e\x0b\xa8\x18\x94\x72\xe1\xd0" 31117 "\xb6\x2a\x16\x08\x7a\x34\xb8\xf2" 31118 "\xe1\xac\x08\x66\xe6\x78\x66\xfd" 31119 "\x36\xbd\xee\xc6\x71\xa4\x09\x4e" 31120 "\x3b\x09\xf2\x8e\x3a\x90\xba\xa0" 31121 "\xc2\x1d\x9f\xad\x52\x0e\xc9\x10" 31122 "\x99\x40\x90\xd5\x7d\x73\x56\xef" 31123 "\x48\x1e\x56\x5c\x7d\x3c\xcb\x84" 31124 "\x10\x0a\xcc\xda\xce\xad\xd8\xa8" 31125 "\x79\xc7\x29\x95\x31\x3b\xd9\x9b" 31126 "\xb6\x84\x3e\x03\x74\xc5\x76\xba" 31127 "\x4b\xd9\x4f\x7c\xc4\x5f\x7f\x70" 31128 "\xc5\xe3\x6e\xd0\x14\x32\xec\x60" 31129 "\xb0\x69\x78\xb7\xef\xda\x5a\xe7" 31130 "\x4e\x50\x97\xd4\x94\x58\x67\x57" 31131 "\x4e\x7c\x75\xe0\xcf\x8d\xe1\x78" 31132 "\x97\x52\xc8\x73\x81\xf9\xb6\x02" 31133 "\x54\x72\x6d\xc0\x70\xff\xe2\xeb" 31134 "\x6c\xe1\x30\x0a\x94\xd0\x55\xec" 31135 "\xed\x61\x9c\x6d\xd9\xa0\x92\x62" 31136 "\x4e\xfd\xd8\x79\x27\x02\x4e\x13" 31137 "\xb2\x04\xba\x00\x9a\x77\xed\xc3" 31138 "\x5b\xa4\x22\x02\xa9\xed\xaf\xac" 31139 "\x4f\xe1\x74\x73\x51\x36\x78\x8b" 31140 "\xdb\xf5\x32\xfd\x0d\xb9\xcb\x15" 31141 "\x4c\xae\x43\x72\xeb\xbe\xc0\xf8" 31142 "\x91\x67\xf1\x4f\x5a\xd4\xa4\x69" 31143 "\x8f\x3e\x16\xd2\x09\x31\x72\x5a" 31144 "\x5e\x0a\xc4\xbc\x44\xd4\xbb\x82" 31145 "\x7a\xdf\x52\x25\x8c\x45\xdc\xe4" 31146 "\xe0\x71\x84\xe4\xe0\x3d\x59\x30" 31147 "\x5b\x94\x12\x33\x78\x85\x90\x84" 31148 "\x52\x05\x33\xa7\xa7\x16\xe0\x4d" 31149 "\x6a\xf7\xfa\x03\x98\x6c\x4f\xb0" 31150 "\x06\x66\x06\xa1\xdd\x3c\xbe\xbb" 31151 "\xb2\x62\xab\x64\xd3\xbf\x2c\x30" 31152 "\x0e\xfc\xd9\x95\x32\x32\xf3\x3b" 31153 "\x39\x7e\xda\x62\x62\x0f\xc3\xfe" 31154 "\x55\x76\x09\xf5\x8a\x09\x91\x93" 31155 "\x32\xea\xbc\x2b\x0b\xcf\x1d\x65" 31156 "\x48\x33\xba\xeb\x0f\xd4\xf9\x3b" 31157 "\x1e\x90\x74\x6d\x93\x52\x61\x81" 31158 "\xa3\xf2\xb5\xea\x1d\x61\x86\x68" 31159 "\x00\x40\xcc\x58\xdd\xf2\x64\x01" 31160 "\xab\xfd\x94\xc0\xa3\x83\x83\x33" 31161 "\xa4\xb0\xb8\xd3\x9d\x08\x3c\x7f" 31162 "\x8e\xa8\xaf\x87\xa5\xe7\xcd\x36" 31163 "\x92\x96\xdc\xa1\xf2\xea\xe6\xd1" 31164 "\x1e\xe9\x65\xa4\xff\xda\x17\x96" 31165 "\xad\x91\x4a\xc5\x26\xb4\x1d\x1c" 31166 "\x2b\x50\x48\x26\xc8\x86\x3f\x05" 31167 "\xb8\x87\x1b\x3f\xee\x2e\x55\x61" 31168 "\x0d\xdc\xcf\x56\x0e\xe2\xcc\xda" 31169 "\x87\xee\xc5\xcd\x0e\xf4\xa4\xaf" 31170 "\x8a\x02\xee\x16\x0b\xc4\xdd\x6d" 31171 "\x80\x3e\xf3\xfe\x95\xb4\xfe\x97" 31172 "\x0d\xe2\xab\xbb\x27\x84\xee\x25" 31173 "\x39\x74\xb0\xfb\xdc\x5a\x0f\x65" 31174 "\x31\x2a\x89\x08\xa4\x8c\x9f\x25" 31175 "\x5f\x93\x83\x39\xda\xb4\x22\x17" 31176 "\xbd\xd2\x0d\xfc\xde\xf8\x00\x34" 31177 "\xc2\x48\x55\x06\x4c\x8b\x79\xe5" 31178 "\xba\x0c\x50\x4f\x98\xa3\x59\x3d" 31179 "\xc4\xec\xd1\x85\xf3\x60\x41\x16" 31180 "\x0a\xe2\xf4\x38\x33\x24\xc1\xe0" 31181 "\x0d\x86\x1f\x5a\xd2\xba\x7c\x5f" 31182 "\x97\x60\x54\xa3\x52\x31\x78\x57" 31183 "\x7a\xc0\xc7\x1e\xd4\x11\x8f\xef" 31184 "\x86\x0a\x60\x26\x4a\x8f\x06\xf7" 31185 "\x1f\x47\x45\x6e\x87\x13\x15\xf3" 31186 "\x91\x08\xbf\x2a\x6e\x71\x21\x8e" 31187 "\x92\x90\xde\x01\x97\x81\x46\x87" 31188 "\x8a\xfc\xab\x12\x0c\x60\x3e\x9d" 31189 "\xbd\x40\x0a\x45\x3f\x5b\x83\x04" 31190 "\xb5\x8f\x42\x78\x68\xfe\x3a\xd1" 31191 "\x59\xf7\x12\xaa\x86\x86\x1c\x77" 31192 "\xfc\xc6\x64\x47\x0f\x7e\xd3\xbc" 31193 "\x95\x90\x23\xb3\x60\xdc\x0d\xf4" 31194 "\x67\xe6\x32\xee\xad\xbf\x60\x07" 31195 "\xbd\xdb\x6e\x3f\x55\x88\xdb\x93" 31196 "\x62\x41\xd6\xeb\x34\xd6\xa3\x96" 31197 "\xd2\xbc\x29\xaa\x75\x65\x41\x9f" 31198 "\x70\x43\xbb\x6d\xd9\xa5\x95\x22" 31199 "\x3e\xf9\x07\xa0\x7d\x75\xba\xb8" 31200 "\xcd\x81\x3b\x94\x01\x19\xc3\x67" 31201 "\x9d\xa4\x7f\xa0\x99\xcc\x4a\xc4" 31202 "\xfa\x76\x3f\xab\x5c\xea\x26\xdf" 31203 "\xa2\x4c\x5b\x11\x55\xa3\x6a\x70" 31204 "\xcb\xbc\x93\x11\x48\x38\x73\x7a" 31205 "\x40\xbf\xbc\x04\x05\xb0\x2d\x9b" 31206 "\x9a\x23\x57\xa5\xf6\x63\xfa\xc7" 31207 "\xd8\x4d\xc2\xc0\xf8\xbd\xfb\x7d" 31208 "\xea\x20\xa2\xe0\x4d\xaa\x63\x1e" 31209 "\x9a\xa2\xed\x54\xe6\x49\xaf\x52" 31210 "\xaf\x7e\x94\x57\x19\x07\x06\x74" 31211 "\x57\x5b\x62\x61\x99\x20\xe7\x95" 31212 "\x14\x19\xcf\x42\x83\x6a\x94\xf5" 31213 "\xab\xa7\xf2\x48\xf6\x0b\x40\x3d" 31214 "\x93\x8d\x3d\x14\x5d\xf2\x45\x2c" 31215 "\xac\x1c\x0b\x12\xc9\x56\x3f\x7c" 31216 "\x17\xeb\x1d\xed\x7e\x5c\xaa\x37" 31217 "\xe3\xb4\x56\xf9\x0e\xb9\x8e\xc8" 31218 "\x16\x70\x3e\xff\x95\xb9\x89\x9c" 31219 "\x19\x0d\x0d\x48\xbd\xb9\xe3\x73" 31220 "\xdf\x4e\x67\x9d\x93\x6c\x0b\x75" 31221 "\x8a\x2d\x89\x5c\x32\x9d\x75\x05" 31222 "\xd9\x13\xbe\x14\x5f\xf0\xb7\xb4" 31223 "\xd9\x2c\x02\x22\x41\xf2\x9c\x1f" 31224 "\xc1\x8c\xf5\x6a\x8c\xd5\xa5\x6b" 31225 "\x54\x47\xec\x3a\x76\x08\xf6\xf7" 31226 "\xed\x7c\x7e\x3b\x55\xb8\xa9\x20" 31227 "\xa6\xec\x2d\x8c\x03\x38\x9d\x74" 31228 "\xe9\x36\xe7\x05\x40\xec\xf4\xa1" 31229 "\xa7\x70\xa7\x6f\x1f\x93\xc2\x1d" 31230 "\x2c\x4e\x5f\xe8\x04\x6d\x91\x67" 31231 "\x23\xd9\x47\xb4\xf6\xbc\x35\x25" 31232 "\x1b\xa8\xe1\x17\xa8\x21\x38\xd8" 31233 "\x7a\x55\xd9\xc6\x6f\x0a\x1b\xcb" 31234 "\xde\xf8\x1e\x20\x8c\xa1\x14\x49" 31235 "\x49\x00\x00\x31\x0f\xa8\x24\x67" 31236 "\x97\x7a\x1f\x04\xb9\x6b\x60\xd0" 31237 "\x32\xc3\xf4\xf9\x4f\xb2\xfd\x7b" 31238 "\xf9\xb3\x43\xd8\x23\xaa\x21\x37" 31239 "\x9e\x91\xc5\xa4\xce\xd8\xe4\xf5" 31240 "\x55\x3e\xc9\xe4\xc5\x51\xd3\x4d" 31241 "\xc6\x83\xe9\x23\x8e\x3e\x21\xe0" 31242 "\x40\x23\x4e\x2b\x2d\x89\xc4\x5d" 31243 "\x58\xdc\x43\x03\x8e\x9a\xfb\xef" 31244 "\x76\xac\x78\x57\xc3\xb8\xf7\x9f" 31245 "\xf5\xb1\xc2\xa4\x0c\xee\x58\x52" 31246 "\x45\xdf\x1a\xd9\x0e\xe0\x56\x1f" 31247 "\x23\x79\x99\x5f\x34\xad\x9f\x41" 31248 "\x67\x2a\xc7\x8b\xe7\x82\x6e\x67" 31249 "\x58\xb5\xae\x18\xd7\x2f\x8f\x57" 31250 "\x0e\xa4\x21\x3c\x84\x21\x05\x50" 31251 "\x57\xb0\xd1\xb1\xc8\x9d\xd4\x44" 31252 "\x25\x40\x6b\xd5\x6f\x18\x92\x89" 31253 "\x6d\x5b\xe9\x5a\x3c\x74\xc0\x33" 31254 "\x2c\x7a\xa7\x99\x71\x4e\x9d\x1b" 31255 "\xe1\x1d\xcb\x62\x8b\x3c\x07\x07" 31256 "\x67\xf6\xa6\x54\x10\x72\x3f\xea" 31257 "\xe5\xcd\xe6\xf1\xeb\x3d\x43\x0b" 31258 "\xfe\x4b\xc7\x1d\x3d\xd9\xa3\xe2" 31259 "\x9b\x79\x47\xc7\xab\x28\xcc\x4d" 31260 "\xa8\x77\x9c\xec\xef\x56\xf8\x92" 31261 "\x07\x48\x1b\x21\x04\xa8\x24\xb0" 31262 "\x82\x7d\xd1\x17\xa4\xaf\x5f\xfa" 31263 "\x92\xbf\x6a\xb7\x7e\xc7\xb7\x75" 31264 "\x40\x3c\x14\x09\x57\xae\xe0\x4e" 31265 "\xf8\xc9\xda\x1e\x5d\x27\xc4\x8c" 31266 "\x27\xe3\x4d\xe3\x55\x8c\xd2\xef" 31267 "\x0c\xab\x67\x53\x96\xd3\x48\xfb" 31268 "\x75\x4f\x74\x9e\xcb\x82\xa4\x96" 31269 "\x91\x41\x48\xaa\x65\xdb\x34\x72" 31270 "\xc9\xee\xa2\x77\x8b\x6e\x44\x12" 31271 "\x4e\x51\x51\xc3\xf5\xef\x6a\x50" 31272 "\x99\x26\x41\x1e\x66\xa4\x2b\xb9" 31273 "\x21\x15\x38\xc2\x0b\x7f\x37\xb6" 31274 "\x89\x8b\x27\x70\xae\xa1\x90\x28" 31275 "\x04\xe7\xd5\x17\xcb\x60\x99\xb4" 31276 "\xe2\xd7\x04\xd3\x11\x27\x86\xe4" 31277 "\xd0\x0d\x36\x04\x68\xe0\xb4\x71" 31278 "\xe8\x86\x4b\x9f\xa3\xd2\xda\x87" 31279 "\xc2\x2c\xad\x66\xfa\x53\x18\xf8" 31280 "\xec\x10\x74\xc5\xb6\x53\x09\x93" 31281 "\x21\x09\xbd\x77\x2d\x2a\x12\x4c" 31282 "\x86\xfe\x50\x8e\xd1\x16\xab\xb1" 31283 "\xfd\xd7\x87\xde\xc3\x6f\x7c\x16" 31284 "\xe2\x88\x3d\x41\xac\x36\x7e\xf8" 31285 "\xc2\x3b\x46\xd5\x44\x3d\x9d\xe8" 31286 "\xe9\x0c\xb7\xb3\xc6\xb9\xe5\xe7" 31287 "\x27\x17\x78\x03\xd4\xda\xe4\x73" 31288 "\x38\x34\xe7\x53\x29\xc4\xcb\x93" 31289 "\xc9\xa1\x10\x8a\xb2\xfc\x0b\x07" 31290 "\x47\xb8\xb1\x13\x49\x86\x24\x8b" 31291 "\x10\xb1\xd9\x5f\xbb\xd8\x90\x37" 31292 "\x06\x03\xe0\x76\xff\x19\x1a\x16" 31293 "\xd8\x2d\xa7\x4a\xea\x22\x64\xbe" 31294 "\xed\x1c\xc8\x33\xb4\xf4\xb1\x48" 31295 "\x95\xb5\x2f\xaa\x05\xc7\x03\xa0" 31296 "\xf1\xa4\xf3\x63\x4b\xbe\x79\xb9" 31297 "\x4b\x67\x7e\x4e\x3e\x81\x8f\xef" 31298 "\xe9\x55\x99\x30\xd0\x26\xec\x5d" 31299 "\x89\xb6\x3f\x28\x38\x81\x7a\x00" 31300 "\x89\x85\xb8\xff\x19\x0f\x8f\x5d" 31301 "\x5c\x6d\x6a\x3d\x6c\xb9\xfb\x7c" 31302 "\x0c\x4b\x7e\xbc\x0c\xc4\xad\xbb" 31303 "\x0a\x8b\xc8\x48\xb7\xfa\x4d\x53" 31304 "\x82\x10\xd6\x29\x58\x83\x50\x3c" 31305 "\xd4\x5a\xfd\x14\xa3\xb5\x88\xfb" 31306 "\x23\xee\xc9\xcc\xab\x92\x52\xb3" 31307 "\x0b\x07\xf3\x1e\x9a\x2a\x2e\x35" 31308 "\x32\x37\xa5\x86\xd0\xe5\x5f\xdd" 31309 "\x3d\x67\x70\xb4\x9a\xc9\x93\xdc" 31310 "\x31\x33\xe3\x3a\xc5\xcf\xd9\x44" 31311 "\x2f\x3f\x87\xb2\x0c\x36\x55\x17" 31312 "\xa9\xda\xb1\xca\x00\x09\x87\xe6" 31313 "\x66\x34\xb3\x9f\x52\x37\x98\x10" 31314 "\x2e\x5d\xa4\x14\x7f\x63\xa6\xcd" 31315 "\x6c\x2d\x7c\x74\x4c\xae\x9c\x65" 31316 "\xe0\x79\xc0\xd6\xc3\xfe\xa8\xf4" 31317 "\x1a\x4f\xf5\xbc\xea\x7a\x92\x40" 31318 "\x51\xa7\x05\x45\x40\xd8\x9c\x3c" 31319 "\xde\x5f\x0b\x6e\x10\x5c\x1c\xdc" 31320 "\xd2\x65\x60\xbb\x70\x68\x5c\xa9" 31321 "\x59\x25\x0e\x4e\x93\xb8\x49\x89" 31322 "\xf6\xae\xeb\x1f\x8b\x56\xc8\x56" 31323 "\xb0\xb5\xc9\xee\xa5\x15\x07\x4d" 31324 "\x8a\xcc\xad\x04\x4d\x99\x8c\x49" 31325 "\x8d\x7c\xe0\xa5\x7d\x7f\x33\x61" 31326 "\xf2\xfc\xe7\x88\x3f\x2b\x73\xab" 31327 "\x2e\x38\x17\x48\xa9\x86\xdd\x81" 31328 "\x21\x45\xbc\x98\x1d\xe5\xa5\xbc" 31329 "\x0d\x0b\x18\x8e\x86\x1e\x76\x0a" 31330 "\x30\x12\x21\xf0\x51\xed\xc1\xcd" 31331 "\x9a\xf1\x7e\x7e\x64\xb2\xa3\xd6" 31332 "\x37\xe7\xc6\xde\x97\xb9\x5d\x05" 31333 "\xf5\x50\xe2\x0a\xaa\x68\x16\xa6" 31334 "\x26\x9c\x7d\xff\x4c\x05\xce\x48" 31335 "\xa7\xff\x10\x19\x5e\xef\x46\x54" 31336 "\xec\xe4\x7b\xb6\x12\x23\xae\x93" 31337 "\x4f\x79\xf8\x3c\x1c\x07\x15\x66" 31338 "\x07\xc1\x52\xde\x7f\xda\x51\x7b" 31339 "\xfe\x13\x67\xab\x8d\x56\xdc\xc1" 31340 "\x70\x4b\x13\xd2\x30\x00\xc1\x97" 31341 "\x22\xa7\x83\xf8\x18\xd9\x6d\x40" 31342 "\x54\xe0\xc1\xdb\x3e\x83\x73\x12" 31343 "\xe1\x48\x49\xb9\xd4\x20\x0c\x06" 31344 "\x1c\x82\xb5\xbe\x5a\xae\x60\x5e" 31345 "\xe2\x09\xba\x05\xbb\x9a\x80\x63" 31346 "\xf2\xc4\x4b\x41\x39\x16\x76\x26" 31347 "\xb1\x03\x06\x23\x65\x37\x33\x92" 31348 "\xca\xf9\x72\xf5\xcd\x95\xc1\xc0" 31349 "\x91\x5a\xfd\x28\xb9\x62\x59\x84" 31350 "\x87\x9d\x82\xcb\xe0\x67\x7c\x26" 31351 "\xb8\x00\x16\xd9\x5d\xb4\x74\xd4" 31352 "\x75\x8c\x75\xf8\x87\x3b\xa8\x77" 31353 "\xcd\x82\x3d\x7b\xb9\x63\x44\x0f" 31354 "\x44\x83\x55\x5b\xc7\xdc\x18\x0b" 31355 "\x8c\x36\xb3\x59\xeb\x58\x13\x38" 31356 "\x4b\x8a\xb7\xa3\x9a\xa2\xf3\xeb" 31357 "\xc6\x30\x84\x86\x0a\xcf\x8b\xfa" 31358 "\x36\x66\x26\xbc\xd0\x96\xa3\xb4" 31359 "\x8d\x6b\xf7\x5b\x75\x59\xbb\xd3" 31360 "\x14\x78\x57\x2f\x27\xa8\x95\xcf" 31361 "\xa2\xa5\x76\x28\xbd\xab\x8b\x59" 31362 "\x04\x91\x8a\xc5\x3c\xc3\xa7\xcf" 31363 "\xe0\xfb\xdd\x7a\xbb\x10\xde\x36" 31364 "\x43\x1c\x59\xf7\x41\xb6\xa5\x80" 31365 "\x72\x7b\xe3\x7a\xa3\x01\xc3\x8c" 31366 "\x7e\xf3\xf2\x42\x1a\x0c\x7e\xf3" 31367 "\xfc\x5b\x6e\x1f\x20\xf1\x32\x76" 31368 "\x83\x71\x36\x3e\x7e\xa7\xf7\xdd" 31369 "\x25\x2e\xe6\x04\xe2\x5b\x44\xb5" 31370 "\x16\xfb\xdf\x9b\x46\x2a\xa8\x81" 31371 "\x89\x15\x3e\xb5\xb0\x09\x40\x33" 31372 "\x60\xc7\x37\x63\x14\x09\xc1\x6e" 31373 "\x56\x52\xbe\xe4\x88\xe0\x75\xbc" 31374 "\x49\x62\x8c\xf1\xdf\x62\xe6\xac" 31375 "\xd5\x87\xf7\xc9\x92\x52\x36\x59" 31376 "\x22\x6f\x31\x99\x76\xdb\x41\xb6" 31377 "\x26\x91\x79\x7e\xd2\x78\xaf\x07" 31378 "\x78\x4b\xed\x54\x30\xb2\xff\xbc" 31379 "\x2c\x0a\x1a\xbe\xbf\xd5\x5a\x4d" 31380 "\xd1\xbc\x30\xc2\xf4\xf1\xc1\x9e" 31381 "\x9a\x96\x89\x00\x50\xfc\xf6\xaf" 31382 "\xfa\x60\xbf\x1a\x32\x8f\x57\x36" 31383 "\x2f\x02\xb7\x28\x50\xc3\xd3\xfd" 31384 "\x6b\xc4\xe6\xbb\xc9\xec\xed\x86" 31385 "\xdf\x27\x45\x2c\x0c\x6d\x65\x3b" 31386 "\x6e\x63\x96\xc7\xd6\xb5\xb2\x05" 31387 "\x8b\xe0\x02\x2a\xfa\x20\x0c\x82" 31388 "\xa5\x45\x75\x12\x01\x40\xff\x3e" 31389 "\xfd\xfc\xfb\xbc\x30\x49\xe8\x99" 31390 "\x8d\x48\x8e\x49\x65\x2a\xe3\xa5" 31391 "\x06\xe3\x22\x68\x3b\xd9\xa4\xcf" 31392 "\x84\x6f\xfa\x2b\xb1\xd8\x8c\x30" 31393 "\xd5\x5d\x0c\x63\x32\x59\x28\x6e" 31394 "\x2a\x60\xa4\x57\x12\xf8\xc2\x95" 31395 "\x0a\xf6\xc6\x48\x23\xce\x72\x40" 31396 "\x0d\x75\xa0\xd4\x48\x03\xf5\xc4" 31397 "\xcd\x26\xe7\x83\xcc\x0d\xcf\x7f" 31398 "\x22\x5f\x91\xb3\x42\x02\x9a\x26" 31399 "\x12\x26\x68\x12\x25\x0b\x08\x61" 31400 "\xcb\x25\x86\x95\xfc\x57\x4d\xb6" 31401 "\x36\x6c\xb4\xdc\xa9\x2d\x76\x7f" 31402 "\x25\x06\xa2\x08\x69\x09\xd9\x09" 31403 "\x3c\x40\xe1\xfd\x30\x8f\xc2\x13" 31404 "\x92\xd4\xb5\x3b\x0c\xb2\x32\x4f" 31405 "\x10\xc9\x1a\x41\xa6\xb2\x11\xf6" 31406 "\x3b\x1b\x88\x56\xbf\x61\x3c\xb2" 31407 "\xe6\xdb\x24\x9a\x55\x7e\x35\xf8" 31408 "\x82\x5e\x52\xe3\xf2\xb3\x40\x1c" 31409 "\xdd\xe3\x29\x37\xe0\x85\x08\x8b" 31410 "\xb2\x8b\x09\x38\xac\xa9\x85\xe5" 31411 "\x9e\x36\xb8\x95\x0b\x84\x9d\x10" 31412 "\xcc\xae\xe2\x06\x56\x3c\x85\xce" 31413 "\xc0\xdc\x36\x59\x17\xf9\x48\xf4" 31414 "\x5b\x08\x8e\x86\x00\xa0\xf5\xdd" 31415 "\x0c\xb6\x63\xfd\x5a\xe5\x1e\xa6" 31416 "\x0a\xef\x76\xc2\xc7\x9b\x96\x2f" 31417 "\x66\x2b\x7d\x50\xa6\x0c\x42\xc6" 31418 "\xa5\x05\x05\x10\xeb\xd8\xda\x15" 31419 "\x03\xbe\x2f\x24\x34\x8f\x84\xd8" 31420 "\x58\xb8\xa3\xf2\x63\xc8\xc3\xf6" 31421 "\xc2\xde\x27\x58\x69\xf9\x07\xca" 31422 "\x12\x3e\xe2\xf4\xc8\x29\x60\x30" 31423 "\x2f\x87\xf4\x50\xc2\x25\xcc\xfd" 31424 "\xdc\x76\x4f\x56\x1c\xb2\xd9\x78" 31425 "\x11\x6b\x6e\xb4\x67\xbf\x25\xc4" 31426 "\xae\x7d\x50\x7f\xb2\x5c\x69\x26" 31427 "\xed\x6b\xd2\x3b\x42\x64\xe3\x0c" 31428 "\x15\xa6\xd1\xb6\x3e\x23\x76\x09" 31429 "\x48\xd2\x08\x41\x76\xc9\x7d\x5f" 31430 "\x50\x5d\x8e\xf9\x04\x96\xed\x3a" 31431 "\xf8\x7c\x3b\x7d\x84\xba\xea\xe6" 31432 "\x24\xd2\x0f\x7f\x5a\x0b\x6f\xd9" 31433 "\x33\x14\x67\xfb\x9f\xe7\x44\x4e" 31434 "\x3b\x4b\x06\xaa\xb4\x7a\x8b\x83" 31435 "\x82\x74\xa6\x5e\x10\xea\xd6\x4b" 31436 "\x56\x32\xd7\x79\x7c\x05\xf4\x64" 31437 "\x9c\x64\x25\x9c\xc2\xda\x21\x9a" 31438 "\xd8\xde\x37\x83\x3f\xd8\x83\xa2" 31439 "\x1e\x3c\x1e\x41\x7e\xf2\x97\x84" 31440 "\xe5\xa2\x02\x2b\x6e\xc5\xd7\x91" 31441 "\x24\x66\xc1\xf0\x05\x1c\x0f\x3d" 31442 "\xcf\x63\x94\x10\x2e\x0e\x89\xda" 31443 "\x0d\xe9\x58\x2a\x48\x0c\xc8\x36" 31444 "\xc4\x7b\xf0\xd3\xe2\x5b\xf1\xf6" 31445 "\xad\x3d\xe7\x25\x6b\x83\x08\x5c" 31446 "\xd9\x79\xde\x93\x37\x93\x92\x46" 31447 "\xe7\xf4\x1c\x9e\x94\x91\x30\xd9" 31448 "\xb6\x57\xf1\x04\xb5\x2f\xe3\xb9" 31449 "\x0a\x78\xfe\xcb\xb5\x31\xc1\xc6" 31450 "\x99\xb3\xaf\x73\xfb\x69\xcb\x49" 31451 "\xd2\xec\xea\xd3\x0f\x45\x13\x23" 31452 "\xc8\xae\x92\x29\xce\x71\xd0\xba" 31453 "\xcf\xfd\xb2\x14\x61\xfd\xf6\x7b" 31454 "\xdf\x05\xe5\xbb\x58\xf7\x41\x3b" 31455 "\x6e\xd2\x14\x28\x7c\x15\xb7\x70" 31456 "\xca\xc7\x7a\xd7\x4e\x4b\x35\x6e" 31457 "\x9e\x09\x24\x33\xaf\xca\x41\x1f" 31458 "\x0d\xe3\xf1\x7c\x35\xcb\xe2\x0a" 31459 "\xb2\xeb\x94\x7a\xbc\x53\xd7\xe1" 31460 "\x5e\xbc\xa1\x55\xef\x3c\x37\xef" 31461 "\x6d\xfe\x3a\xcd\xcf\x48\x36\x26" 31462 "\xdb\x3e\x44\xdd\xc8\x03\xa6\xa6" 31463 "\x85\xb5\xfe\xf3\xec\x44\xb3\x22" 31464 "\x9d\x21\x82\xc6\x0b\x1a\x7c\xc6" 31465 "\xf7\xa9\x8e\x7e\x13\x1a\x85\x1f" 31466 "\x93\x81\x38\x47\xc0\x83\x21\xa3" 31467 "\xde\xec\xc0\x8f\x4c\x3b\x57\x2f" 31468 "\x92\xbb\x66\xe3\x24\xeb\xae\x1e" 31469 "\xb3\x18\x57\xf2\xf3\x4a\x50\x52" 31470 "\xe9\x91\x08\x1f\x85\x44\xc1\x07" 31471 "\xa1\xd3\x62\xe9\xe0\x82\x38\xfd" 31472 "\x27\x3f\x7e\x10\x7d\xaf\xa1\x7a" 31473 "\xf0\xaa\x79\xee\x6e\xa2\xc0\xbb" 31474 "\x01\xda\xfb\xc4\x85\x26\x85\x31" 31475 "\x15\xf4\x3c\xe0\x96\x79\x0e\xd7" 31476 "\x50\x68\x37\x57\xb5\x31\xf7\x3c" 31477 "\xbd\xaa\xcc\x2c\x8f\x57\x59\xa5" 31478 "\xd4\x4b\xc6\x45\xc0\x32\x3d\x85" 31479 "\x6d\xee\xf4\x6b\x63\xf9\x3a\xfb" 31480 "\x2f\xdb\xb8\x42\x19\x8e\x88\x1f" 31481 "\xfd\x7d\x0b\x69\x14\x8f\x36\xb2" 31482 "\xd9\x27\x34\x53\x9c\x52\x00\x94" 31483 "\xcc\x8b\x37\x82\xaf\x8e\xb3\xc0" 31484 "\x8a\xcf\x44\xc6\x3a\x19\xbe\x1f" 31485 "\x23\x33\x68\xc4\xb6\xbb\x13\x20" 31486 "\xec\x6a\x87\x5b\xc2\x7c\xd3\x04" 31487 "\x34\x97\x32\xd5\x11\x02\x06\x45" 31488 "\x98\x0b\xaa\xab\xbe\xfb\xd0\x2c" 31489 "\x0e\xf1\x8b\x7f\x1c\x70\x85\x67" 31490 "\x60\x50\x66\x79\xbb\x45\x21\xc4" 31491 "\xb5\xd3\xb9\x4f\xe5\x41\x49\x86" 31492 "\x6b\x20\xef\xac\x16\x74\xe9\x23" 31493 "\xa5\x2d\x5c\x2b\x85\xb2\x33\xe8" 31494 "\x2a\xd1\x24\xd1\x5b\x9b\x7f\xfc" 31495 "\x2f\x3b\xf7\x6a\x8b\xde\x55\x7e" 31496 "\xda\x13\x1b\xd6\x90\x74\xb0\xbe" 31497 "\x46\x0d\xcf\xc7\x78\x33\x31\xdc" 31498 "\x6a\x6a\x50\x3e\x4c\xe2\xab\x48" 31499 "\xbc\x4e\x7d\x62\xb9\xfc\xdd\x85" 31500 "\x1c\x5d\x93\x15\x5e\x01\xd9\x2b" 31501 "\x48\x71\x82\xd6\x44\xd6\x0e\x92" 31502 "\x6e\x75\xc9\x3c\x1d\x31\x18\x6f" 31503 "\x8b\xd7\x18\xf3\x09\x08\x45\xb1" 31504 "\x3e\xa4\x25\xc6\x34\x48\xaf\x42" 31505 "\x77\x33\x03\x65\x3e\x2f\xff\x8f" 31506 "\xe9\xe1\xa0\xfe\xb2\xc3\x80\x77" 31507 "\x20\x05\xe4\x9b\x47\x3b\xb2\xbd", 31508 .len = 4096, 31509 } 31510 }; 31511 31512 /* 31513 * CTS (Cipher Text Stealing) mode tests 31514 */ 31515 static const struct cipher_testvec cts_mode_tv_template[] = { 31516 { /* from rfc3962 */ 31517 .klen = 16, 31518 .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 31519 "\x74\x65\x72\x69\x79\x61\x6b\x69", 31520 .ptext = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 31521 "\x6c\x69\x6b\x65\x20\x74\x68\x65" 31522 "\x20", 31523 .len = 17, 31524 .ctext = "\xc6\x35\x35\x68\xf2\xbf\x8c\xb4" 31525 "\xd8\xa5\x80\x36\x2d\xa7\xff\x7f" 31526 "\x97", 31527 }, { 31528 .klen = 16, 31529 .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 31530 "\x74\x65\x72\x69\x79\x61\x6b\x69", 31531 .ptext = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 31532 "\x6c\x69\x6b\x65\x20\x74\x68\x65" 31533 "\x20\x47\x65\x6e\x65\x72\x61\x6c" 31534 "\x20\x47\x61\x75\x27\x73\x20", 31535 .len = 31, 31536 .ctext = "\xfc\x00\x78\x3e\x0e\xfd\xb2\xc1" 31537 "\xd4\x45\xd4\xc8\xef\xf7\xed\x22" 31538 "\x97\x68\x72\x68\xd6\xec\xcc\xc0" 31539 "\xc0\x7b\x25\xe2\x5e\xcf\xe5", 31540 }, { 31541 .klen = 16, 31542 .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 31543 "\x74\x65\x72\x69\x79\x61\x6b\x69", 31544 .ptext = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 31545 "\x6c\x69\x6b\x65\x20\x74\x68\x65" 31546 "\x20\x47\x65\x6e\x65\x72\x61\x6c" 31547 "\x20\x47\x61\x75\x27\x73\x20\x43", 31548 .len = 32, 31549 .ctext = "\x39\x31\x25\x23\xa7\x86\x62\xd5" 31550 "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8" 31551 "\x97\x68\x72\x68\xd6\xec\xcc\xc0" 31552 "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84", 31553 }, { 31554 .klen = 16, 31555 .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 31556 "\x74\x65\x72\x69\x79\x61\x6b\x69", 31557 .ptext = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 31558 "\x6c\x69\x6b\x65\x20\x74\x68\x65" 31559 "\x20\x47\x65\x6e\x65\x72\x61\x6c" 31560 "\x20\x47\x61\x75\x27\x73\x20\x43" 31561 "\x68\x69\x63\x6b\x65\x6e\x2c\x20" 31562 "\x70\x6c\x65\x61\x73\x65\x2c", 31563 .len = 47, 31564 .ctext = "\x97\x68\x72\x68\xd6\xec\xcc\xc0" 31565 "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84" 31566 "\xb3\xff\xfd\x94\x0c\x16\xa1\x8c" 31567 "\x1b\x55\x49\xd2\xf8\x38\x02\x9e" 31568 "\x39\x31\x25\x23\xa7\x86\x62\xd5" 31569 "\xbe\x7f\xcb\xcc\x98\xeb\xf5", 31570 }, { 31571 .klen = 16, 31572 .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 31573 "\x74\x65\x72\x69\x79\x61\x6b\x69", 31574 .ptext = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 31575 "\x6c\x69\x6b\x65\x20\x74\x68\x65" 31576 "\x20\x47\x65\x6e\x65\x72\x61\x6c" 31577 "\x20\x47\x61\x75\x27\x73\x20\x43" 31578 "\x68\x69\x63\x6b\x65\x6e\x2c\x20" 31579 "\x70\x6c\x65\x61\x73\x65\x2c\x20", 31580 .len = 48, 31581 .ctext = "\x97\x68\x72\x68\xd6\xec\xcc\xc0" 31582 "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84" 31583 "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0" 31584 "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8" 31585 "\x39\x31\x25\x23\xa7\x86\x62\xd5" 31586 "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8", 31587 }, { 31588 .klen = 16, 31589 .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 31590 "\x74\x65\x72\x69\x79\x61\x6b\x69", 31591 .ptext = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 31592 "\x6c\x69\x6b\x65\x20\x74\x68\x65" 31593 "\x20\x47\x65\x6e\x65\x72\x61\x6c" 31594 "\x20\x47\x61\x75\x27\x73\x20\x43" 31595 "\x68\x69\x63\x6b\x65\x6e\x2c\x20" 31596 "\x70\x6c\x65\x61\x73\x65\x2c\x20" 31597 "\x61\x6e\x64\x20\x77\x6f\x6e\x74" 31598 "\x6f\x6e\x20\x73\x6f\x75\x70\x2e", 31599 .len = 64, 31600 .ctext = "\x97\x68\x72\x68\xd6\xec\xcc\xc0" 31601 "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84" 31602 "\x39\x31\x25\x23\xa7\x86\x62\xd5" 31603 "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8" 31604 "\x48\x07\xef\xe8\x36\xee\x89\xa5" 31605 "\x26\x73\x0d\xbc\x2f\x7b\xc8\x40" 31606 "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0" 31607 "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8", 31608 } 31609 }; 31610 31611 /* 31612 * Compression stuff. 31613 */ 31614 #define COMP_BUF_SIZE 512 31615 31616 struct comp_testvec { 31617 int inlen, outlen; 31618 char input[COMP_BUF_SIZE]; 31619 char output[COMP_BUF_SIZE]; 31620 }; 31621 31622 /* 31623 * Deflate test vectors (null-terminated strings). 31624 * Params: winbits=-11, Z_DEFAULT_COMPRESSION, MAX_MEM_LEVEL. 31625 */ 31626 31627 static const struct comp_testvec deflate_comp_tv_template[] = { 31628 { 31629 .inlen = 70, 31630 .outlen = 38, 31631 .input = "Join us now and share the software " 31632 "Join us now and share the software ", 31633 .output = "\xf3\xca\xcf\xcc\x53\x28\x2d\x56" 31634 "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51" 31635 "\x28\xce\x48\x2c\x4a\x55\x28\xc9" 31636 "\x48\x55\x28\xce\x4f\x2b\x29\x07" 31637 "\x71\xbc\x08\x2b\x01\x00", 31638 }, { 31639 .inlen = 191, 31640 .outlen = 122, 31641 .input = "This document describes a compression method based on the DEFLATE" 31642 "compression algorithm. This document defines the application of " 31643 "the DEFLATE algorithm to the IP Payload Compression Protocol.", 31644 .output = "\x5d\x8d\x31\x0e\xc2\x30\x10\x04" 31645 "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09" 31646 "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8" 31647 "\x24\xdb\x67\xd9\x47\xc1\xef\x49" 31648 "\x68\x12\x51\xae\x76\x67\xd6\x27" 31649 "\x19\x88\x1a\xde\x85\xab\x21\xf2" 31650 "\x08\x5d\x16\x1e\x20\x04\x2d\xad" 31651 "\xf3\x18\xa2\x15\x85\x2d\x69\xc4" 31652 "\x42\x83\x23\xb6\x6c\x89\x71\x9b" 31653 "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f" 31654 "\xed\x62\xa9\x4c\x80\xff\x13\xaf" 31655 "\x52\x37\xed\x0e\x52\x6b\x59\x02" 31656 "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98" 31657 "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a" 31658 "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79" 31659 "\xfa\x02", 31660 }, 31661 }; 31662 31663 static const struct comp_testvec deflate_decomp_tv_template[] = { 31664 { 31665 .inlen = 122, 31666 .outlen = 191, 31667 .input = "\x5d\x8d\x31\x0e\xc2\x30\x10\x04" 31668 "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09" 31669 "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8" 31670 "\x24\xdb\x67\xd9\x47\xc1\xef\x49" 31671 "\x68\x12\x51\xae\x76\x67\xd6\x27" 31672 "\x19\x88\x1a\xde\x85\xab\x21\xf2" 31673 "\x08\x5d\x16\x1e\x20\x04\x2d\xad" 31674 "\xf3\x18\xa2\x15\x85\x2d\x69\xc4" 31675 "\x42\x83\x23\xb6\x6c\x89\x71\x9b" 31676 "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f" 31677 "\xed\x62\xa9\x4c\x80\xff\x13\xaf" 31678 "\x52\x37\xed\x0e\x52\x6b\x59\x02" 31679 "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98" 31680 "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a" 31681 "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79" 31682 "\xfa\x02", 31683 .output = "This document describes a compression method based on the DEFLATE" 31684 "compression algorithm. This document defines the application of " 31685 "the DEFLATE algorithm to the IP Payload Compression Protocol.", 31686 }, { 31687 .inlen = 38, 31688 .outlen = 70, 31689 .input = "\xf3\xca\xcf\xcc\x53\x28\x2d\x56" 31690 "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51" 31691 "\x28\xce\x48\x2c\x4a\x55\x28\xc9" 31692 "\x48\x55\x28\xce\x4f\x2b\x29\x07" 31693 "\x71\xbc\x08\x2b\x01\x00", 31694 .output = "Join us now and share the software " 31695 "Join us now and share the software ", 31696 }, 31697 }; 31698 31699 static const struct comp_testvec zlib_deflate_comp_tv_template[] = { 31700 { 31701 .inlen = 70, 31702 .outlen = 44, 31703 .input = "Join us now and share the software " 31704 "Join us now and share the software ", 31705 .output = "\x78\x5e\xf3\xca\xcf\xcc\x53\x28" 31706 "\x2d\x56\xc8\xcb\x2f\x57\x48\xcc" 31707 "\x4b\x51\x28\xce\x48\x2c\x4a\x55" 31708 "\x28\xc9\x48\x55\x28\xce\x4f\x2b" 31709 "\x29\x07\x71\xbc\x08\x2b\x01\x00" 31710 "\x7c\x65\x19\x3d", 31711 }, { 31712 .inlen = 191, 31713 .outlen = 129, 31714 .input = "This document describes a compression method based on the DEFLATE" 31715 "compression algorithm. This document defines the application of " 31716 "the DEFLATE algorithm to the IP Payload Compression Protocol.", 31717 .output = "\x78\x5e\x5d\xce\x41\x0a\xc3\x30" 31718 "\x0c\x04\xc0\xaf\xec\x0b\xf2\x87" 31719 "\xd2\xa6\x50\xe8\xc1\x07\x7f\x40" 31720 "\xb1\x95\x5a\x60\x5b\xc6\x56\x0f" 31721 "\xfd\x7d\x93\x1e\x42\xe8\x51\xec" 31722 "\xee\x20\x9f\x64\x20\x6a\x78\x17" 31723 "\xae\x86\xc8\x23\x74\x59\x78\x80" 31724 "\x10\xb4\xb4\xce\x63\x88\x56\x14" 31725 "\xb6\xa4\x11\x0b\x0d\x8e\xd8\x6e" 31726 "\x4b\x8c\xdb\x7c\x7f\x5e\xfc\x7c" 31727 "\xae\x51\x7e\x69\x17\x4b\x65\x02" 31728 "\xfc\x1f\xbc\x4a\xdd\xd8\x7d\x48" 31729 "\xad\x65\x09\x64\x3b\xac\xeb\xd9" 31730 "\xc2\x01\xc0\xf4\x17\x3c\x1c\x1c" 31731 "\x7d\xb2\x52\xc4\xf5\xf4\x8f\xeb" 31732 "\x6a\x1a\x34\x4f\x5f\x2e\x32\x45" 31733 "\x4e", 31734 }, 31735 }; 31736 31737 static const struct comp_testvec zlib_deflate_decomp_tv_template[] = { 31738 { 31739 .inlen = 128, 31740 .outlen = 191, 31741 .input = "\x78\x9c\x5d\x8d\x31\x0e\xc2\x30" 31742 "\x10\x04\xbf\xb2\x2f\xc8\x1f\x10" 31743 "\x04\x09\x89\xc2\x85\x3f\x70\xb1" 31744 "\x2f\xf8\x24\xdb\x67\xd9\x47\xc1" 31745 "\xef\x49\x68\x12\x51\xae\x76\x67" 31746 "\xd6\x27\x19\x88\x1a\xde\x85\xab" 31747 "\x21\xf2\x08\x5d\x16\x1e\x20\x04" 31748 "\x2d\xad\xf3\x18\xa2\x15\x85\x2d" 31749 "\x69\xc4\x42\x83\x23\xb6\x6c\x89" 31750 "\x71\x9b\xef\xcf\x8b\x9f\xcf\x33" 31751 "\xca\x2f\xed\x62\xa9\x4c\x80\xff" 31752 "\x13\xaf\x52\x37\xed\x0e\x52\x6b" 31753 "\x59\x02\xd9\x4e\xe8\x7a\x76\x1d" 31754 "\x02\x98\xfe\x8a\x87\x83\xa3\x4f" 31755 "\x56\x8a\xb8\x9e\x8e\x5c\x57\xd3" 31756 "\xa0\x79\xfa\x02\x2e\x32\x45\x4e", 31757 .output = "This document describes a compression method based on the DEFLATE" 31758 "compression algorithm. This document defines the application of " 31759 "the DEFLATE algorithm to the IP Payload Compression Protocol.", 31760 }, { 31761 .inlen = 44, 31762 .outlen = 70, 31763 .input = "\x78\x9c\xf3\xca\xcf\xcc\x53\x28" 31764 "\x2d\x56\xc8\xcb\x2f\x57\x48\xcc" 31765 "\x4b\x51\x28\xce\x48\x2c\x4a\x55" 31766 "\x28\xc9\x48\x55\x28\xce\x4f\x2b" 31767 "\x29\x07\x71\xbc\x08\x2b\x01\x00" 31768 "\x7c\x65\x19\x3d", 31769 .output = "Join us now and share the software " 31770 "Join us now and share the software ", 31771 }, 31772 }; 31773 31774 /* 31775 * LZO test vectors (null-terminated strings). 31776 */ 31777 static const struct comp_testvec lzo_comp_tv_template[] = { 31778 { 31779 .inlen = 70, 31780 .outlen = 57, 31781 .input = "Join us now and share the software " 31782 "Join us now and share the software ", 31783 .output = "\x00\x0d\x4a\x6f\x69\x6e\x20\x75" 31784 "\x73\x20\x6e\x6f\x77\x20\x61\x6e" 31785 "\x64\x20\x73\x68\x61\x72\x65\x20" 31786 "\x74\x68\x65\x20\x73\x6f\x66\x74" 31787 "\x77\x70\x01\x32\x88\x00\x0c\x65" 31788 "\x20\x74\x68\x65\x20\x73\x6f\x66" 31789 "\x74\x77\x61\x72\x65\x20\x11\x00" 31790 "\x00", 31791 }, { 31792 .inlen = 159, 31793 .outlen = 131, 31794 .input = "This document describes a compression method based on the LZO " 31795 "compression algorithm. This document defines the application of " 31796 "the LZO algorithm used in UBIFS.", 31797 .output = "\x00\x2c\x54\x68\x69\x73\x20\x64" 31798 "\x6f\x63\x75\x6d\x65\x6e\x74\x20" 31799 "\x64\x65\x73\x63\x72\x69\x62\x65" 31800 "\x73\x20\x61\x20\x63\x6f\x6d\x70" 31801 "\x72\x65\x73\x73\x69\x6f\x6e\x20" 31802 "\x6d\x65\x74\x68\x6f\x64\x20\x62" 31803 "\x61\x73\x65\x64\x20\x6f\x6e\x20" 31804 "\x74\x68\x65\x20\x4c\x5a\x4f\x20" 31805 "\x2a\x8c\x00\x09\x61\x6c\x67\x6f" 31806 "\x72\x69\x74\x68\x6d\x2e\x20\x20" 31807 "\x2e\x54\x01\x03\x66\x69\x6e\x65" 31808 "\x73\x20\x74\x06\x05\x61\x70\x70" 31809 "\x6c\x69\x63\x61\x74\x76\x0a\x6f" 31810 "\x66\x88\x02\x60\x09\x27\xf0\x00" 31811 "\x0c\x20\x75\x73\x65\x64\x20\x69" 31812 "\x6e\x20\x55\x42\x49\x46\x53\x2e" 31813 "\x11\x00\x00", 31814 }, 31815 }; 31816 31817 static const struct comp_testvec lzo_decomp_tv_template[] = { 31818 { 31819 .inlen = 133, 31820 .outlen = 159, 31821 .input = "\x00\x2b\x54\x68\x69\x73\x20\x64" 31822 "\x6f\x63\x75\x6d\x65\x6e\x74\x20" 31823 "\x64\x65\x73\x63\x72\x69\x62\x65" 31824 "\x73\x20\x61\x20\x63\x6f\x6d\x70" 31825 "\x72\x65\x73\x73\x69\x6f\x6e\x20" 31826 "\x6d\x65\x74\x68\x6f\x64\x20\x62" 31827 "\x61\x73\x65\x64\x20\x6f\x6e\x20" 31828 "\x74\x68\x65\x20\x4c\x5a\x4f\x2b" 31829 "\x8c\x00\x0d\x61\x6c\x67\x6f\x72" 31830 "\x69\x74\x68\x6d\x2e\x20\x20\x54" 31831 "\x68\x69\x73\x2a\x54\x01\x02\x66" 31832 "\x69\x6e\x65\x73\x94\x06\x05\x61" 31833 "\x70\x70\x6c\x69\x63\x61\x74\x76" 31834 "\x0a\x6f\x66\x88\x02\x60\x09\x27" 31835 "\xf0\x00\x0c\x20\x75\x73\x65\x64" 31836 "\x20\x69\x6e\x20\x55\x42\x49\x46" 31837 "\x53\x2e\x11\x00\x00", 31838 .output = "This document describes a compression method based on the LZO " 31839 "compression algorithm. This document defines the application of " 31840 "the LZO algorithm used in UBIFS.", 31841 }, { 31842 .inlen = 46, 31843 .outlen = 70, 31844 .input = "\x00\x0d\x4a\x6f\x69\x6e\x20\x75" 31845 "\x73\x20\x6e\x6f\x77\x20\x61\x6e" 31846 "\x64\x20\x73\x68\x61\x72\x65\x20" 31847 "\x74\x68\x65\x20\x73\x6f\x66\x74" 31848 "\x77\x70\x01\x01\x4a\x6f\x69\x6e" 31849 "\x3d\x88\x00\x11\x00\x00", 31850 .output = "Join us now and share the software " 31851 "Join us now and share the software ", 31852 }, 31853 }; 31854 31855 static const struct comp_testvec lzorle_comp_tv_template[] = { 31856 { 31857 .inlen = 70, 31858 .outlen = 59, 31859 .input = "Join us now and share the software " 31860 "Join us now and share the software ", 31861 .output = "\x11\x01\x00\x0d\x4a\x6f\x69\x6e" 31862 "\x20\x75\x73\x20\x6e\x6f\x77\x20" 31863 "\x61\x6e\x64\x20\x73\x68\x61\x72" 31864 "\x65\x20\x74\x68\x65\x20\x73\x6f" 31865 "\x66\x74\x77\x70\x01\x32\x88\x00" 31866 "\x0c\x65\x20\x74\x68\x65\x20\x73" 31867 "\x6f\x66\x74\x77\x61\x72\x65\x20" 31868 "\x11\x00\x00", 31869 }, { 31870 .inlen = 159, 31871 .outlen = 133, 31872 .input = "This document describes a compression method based on the LZO " 31873 "compression algorithm. This document defines the application of " 31874 "the LZO algorithm used in UBIFS.", 31875 .output = "\x11\x01\x00\x2c\x54\x68\x69\x73" 31876 "\x20\x64\x6f\x63\x75\x6d\x65\x6e" 31877 "\x74\x20\x64\x65\x73\x63\x72\x69" 31878 "\x62\x65\x73\x20\x61\x20\x63\x6f" 31879 "\x6d\x70\x72\x65\x73\x73\x69\x6f" 31880 "\x6e\x20\x6d\x65\x74\x68\x6f\x64" 31881 "\x20\x62\x61\x73\x65\x64\x20\x6f" 31882 "\x6e\x20\x74\x68\x65\x20\x4c\x5a" 31883 "\x4f\x20\x2a\x8c\x00\x09\x61\x6c" 31884 "\x67\x6f\x72\x69\x74\x68\x6d\x2e" 31885 "\x20\x20\x2e\x54\x01\x03\x66\x69" 31886 "\x6e\x65\x73\x20\x74\x06\x05\x61" 31887 "\x70\x70\x6c\x69\x63\x61\x74\x76" 31888 "\x0a\x6f\x66\x88\x02\x60\x09\x27" 31889 "\xf0\x00\x0c\x20\x75\x73\x65\x64" 31890 "\x20\x69\x6e\x20\x55\x42\x49\x46" 31891 "\x53\x2e\x11\x00\x00", 31892 }, 31893 }; 31894 31895 static const struct comp_testvec lzorle_decomp_tv_template[] = { 31896 { 31897 .inlen = 133, 31898 .outlen = 159, 31899 .input = "\x00\x2b\x54\x68\x69\x73\x20\x64" 31900 "\x6f\x63\x75\x6d\x65\x6e\x74\x20" 31901 "\x64\x65\x73\x63\x72\x69\x62\x65" 31902 "\x73\x20\x61\x20\x63\x6f\x6d\x70" 31903 "\x72\x65\x73\x73\x69\x6f\x6e\x20" 31904 "\x6d\x65\x74\x68\x6f\x64\x20\x62" 31905 "\x61\x73\x65\x64\x20\x6f\x6e\x20" 31906 "\x74\x68\x65\x20\x4c\x5a\x4f\x2b" 31907 "\x8c\x00\x0d\x61\x6c\x67\x6f\x72" 31908 "\x69\x74\x68\x6d\x2e\x20\x20\x54" 31909 "\x68\x69\x73\x2a\x54\x01\x02\x66" 31910 "\x69\x6e\x65\x73\x94\x06\x05\x61" 31911 "\x70\x70\x6c\x69\x63\x61\x74\x76" 31912 "\x0a\x6f\x66\x88\x02\x60\x09\x27" 31913 "\xf0\x00\x0c\x20\x75\x73\x65\x64" 31914 "\x20\x69\x6e\x20\x55\x42\x49\x46" 31915 "\x53\x2e\x11\x00\x00", 31916 .output = "This document describes a compression method based on the LZO " 31917 "compression algorithm. This document defines the application of " 31918 "the LZO algorithm used in UBIFS.", 31919 }, { 31920 .inlen = 59, 31921 .outlen = 70, 31922 .input = "\x11\x01\x00\x0d\x4a\x6f\x69\x6e" 31923 "\x20\x75\x73\x20\x6e\x6f\x77\x20" 31924 "\x61\x6e\x64\x20\x73\x68\x61\x72" 31925 "\x65\x20\x74\x68\x65\x20\x73\x6f" 31926 "\x66\x74\x77\x70\x01\x32\x88\x00" 31927 "\x0c\x65\x20\x74\x68\x65\x20\x73" 31928 "\x6f\x66\x74\x77\x61\x72\x65\x20" 31929 "\x11\x00\x00", 31930 .output = "Join us now and share the software " 31931 "Join us now and share the software ", 31932 }, 31933 }; 31934 31935 /* 31936 * Michael MIC test vectors from IEEE 802.11i 31937 */ 31938 #define MICHAEL_MIC_TEST_VECTORS 6 31939 31940 static const struct hash_testvec michael_mic_tv_template[] = { 31941 { 31942 .key = "\x00\x00\x00\x00\x00\x00\x00\x00", 31943 .ksize = 8, 31944 .plaintext = zeroed_string, 31945 .psize = 0, 31946 .digest = "\x82\x92\x5c\x1c\xa1\xd1\x30\xb8", 31947 }, 31948 { 31949 .key = "\x82\x92\x5c\x1c\xa1\xd1\x30\xb8", 31950 .ksize = 8, 31951 .plaintext = "M", 31952 .psize = 1, 31953 .digest = "\x43\x47\x21\xca\x40\x63\x9b\x3f", 31954 }, 31955 { 31956 .key = "\x43\x47\x21\xca\x40\x63\x9b\x3f", 31957 .ksize = 8, 31958 .plaintext = "Mi", 31959 .psize = 2, 31960 .digest = "\xe8\xf9\xbe\xca\xe9\x7e\x5d\x29", 31961 }, 31962 { 31963 .key = "\xe8\xf9\xbe\xca\xe9\x7e\x5d\x29", 31964 .ksize = 8, 31965 .plaintext = "Mic", 31966 .psize = 3, 31967 .digest = "\x90\x03\x8f\xc6\xcf\x13\xc1\xdb", 31968 }, 31969 { 31970 .key = "\x90\x03\x8f\xc6\xcf\x13\xc1\xdb", 31971 .ksize = 8, 31972 .plaintext = "Mich", 31973 .psize = 4, 31974 .digest = "\xd5\x5e\x10\x05\x10\x12\x89\x86", 31975 }, 31976 { 31977 .key = "\xd5\x5e\x10\x05\x10\x12\x89\x86", 31978 .ksize = 8, 31979 .plaintext = "Michael", 31980 .psize = 7, 31981 .digest = "\x0a\x94\x2b\x12\x4e\xca\xa5\x46", 31982 } 31983 }; 31984 31985 /* 31986 * CRC32 test vectors 31987 */ 31988 static const struct hash_testvec crc32_tv_template[] = { 31989 { 31990 .psize = 0, 31991 .digest = "\x00\x00\x00\x00", 31992 }, 31993 { 31994 .plaintext = "abcdefg", 31995 .psize = 7, 31996 .digest = "\xd8\xb5\x46\xac", 31997 }, 31998 { 31999 .key = "\x87\xa9\xcb\xed", 32000 .ksize = 4, 32001 .psize = 0, 32002 .digest = "\x87\xa9\xcb\xed", 32003 }, 32004 { 32005 .key = "\xff\xff\xff\xff", 32006 .ksize = 4, 32007 .plaintext = "\x01\x02\x03\x04\x05\x06\x07\x08" 32008 "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 32009 "\x11\x12\x13\x14\x15\x16\x17\x18" 32010 "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20" 32011 "\x21\x22\x23\x24\x25\x26\x27\x28", 32012 .psize = 40, 32013 .digest = "\x3a\xdf\x4b\xb0", 32014 }, 32015 { 32016 .key = "\xff\xff\xff\xff", 32017 .ksize = 4, 32018 .plaintext = "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30" 32019 "\x31\x32\x33\x34\x35\x36\x37\x38" 32020 "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40" 32021 "\x41\x42\x43\x44\x45\x46\x47\x48" 32022 "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50", 32023 .psize = 40, 32024 .digest = "\xa9\x7a\x7f\x7b", 32025 }, 32026 { 32027 .key = "\xff\xff\xff\xff", 32028 .ksize = 4, 32029 .plaintext = "\x51\x52\x53\x54\x55\x56\x57\x58" 32030 "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60" 32031 "\x61\x62\x63\x64\x65\x66\x67\x68" 32032 "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70" 32033 "\x71\x72\x73\x74\x75\x76\x77\x78", 32034 .psize = 40, 32035 .digest = "\xba\xd3\xf8\x1c", 32036 }, 32037 { 32038 .key = "\xff\xff\xff\xff", 32039 .ksize = 4, 32040 .plaintext = "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80" 32041 "\x81\x82\x83\x84\x85\x86\x87\x88" 32042 "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90" 32043 "\x91\x92\x93\x94\x95\x96\x97\x98" 32044 "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0", 32045 .psize = 40, 32046 .digest = "\xa8\xa9\xc2\x02", 32047 }, 32048 { 32049 .key = "\xff\xff\xff\xff", 32050 .ksize = 4, 32051 .plaintext = "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8" 32052 "\xa9\xaa\xab\xac\xad\xae\xaf\xb0" 32053 "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8" 32054 "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0" 32055 "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8", 32056 .psize = 40, 32057 .digest = "\x27\xf0\x57\xe2", 32058 }, 32059 { 32060 .key = "\xff\xff\xff\xff", 32061 .ksize = 4, 32062 .plaintext = "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0" 32063 "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8" 32064 "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0" 32065 "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8" 32066 "\xe9\xea\xeb\xec\xed\xee\xef\xf0", 32067 .psize = 40, 32068 .digest = "\x49\x78\x10\x08", 32069 }, 32070 { 32071 .key = "\x80\xea\xd3\xf1", 32072 .ksize = 4, 32073 .plaintext = "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30" 32074 "\x31\x32\x33\x34\x35\x36\x37\x38" 32075 "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40" 32076 "\x41\x42\x43\x44\x45\x46\x47\x48" 32077 "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50", 32078 .psize = 40, 32079 .digest = "\x9a\xb1\xdc\xf0", 32080 }, 32081 { 32082 .key = "\xf3\x4a\x1d\x5d", 32083 .ksize = 4, 32084 .plaintext = "\x51\x52\x53\x54\x55\x56\x57\x58" 32085 "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60" 32086 "\x61\x62\x63\x64\x65\x66\x67\x68" 32087 "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70" 32088 "\x71\x72\x73\x74\x75\x76\x77\x78", 32089 .psize = 40, 32090 .digest = "\xb4\x97\xcc\xd4", 32091 }, 32092 { 32093 .key = "\x2e\x80\x04\x59", 32094 .ksize = 4, 32095 .plaintext = "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80" 32096 "\x81\x82\x83\x84\x85\x86\x87\x88" 32097 "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90" 32098 "\x91\x92\x93\x94\x95\x96\x97\x98" 32099 "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0", 32100 .psize = 40, 32101 .digest = "\x67\x9b\xfa\x79", 32102 }, 32103 { 32104 .key = "\xa6\xcc\x19\x85", 32105 .ksize = 4, 32106 .plaintext = "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8" 32107 "\xa9\xaa\xab\xac\xad\xae\xaf\xb0" 32108 "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8" 32109 "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0" 32110 "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8", 32111 .psize = 40, 32112 .digest = "\x24\xb5\x16\xef", 32113 }, 32114 { 32115 .key = "\x41\xfc\xfe\x2d", 32116 .ksize = 4, 32117 .plaintext = "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0" 32118 "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8" 32119 "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0" 32120 "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8" 32121 "\xe9\xea\xeb\xec\xed\xee\xef\xf0", 32122 .psize = 40, 32123 .digest = "\x15\x94\x80\x39", 32124 }, 32125 { 32126 .key = "\xff\xff\xff\xff", 32127 .ksize = 4, 32128 .plaintext = "\x01\x02\x03\x04\x05\x06\x07\x08" 32129 "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 32130 "\x11\x12\x13\x14\x15\x16\x17\x18" 32131 "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20" 32132 "\x21\x22\x23\x24\x25\x26\x27\x28" 32133 "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30" 32134 "\x31\x32\x33\x34\x35\x36\x37\x38" 32135 "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40" 32136 "\x41\x42\x43\x44\x45\x46\x47\x48" 32137 "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50" 32138 "\x51\x52\x53\x54\x55\x56\x57\x58" 32139 "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60" 32140 "\x61\x62\x63\x64\x65\x66\x67\x68" 32141 "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70" 32142 "\x71\x72\x73\x74\x75\x76\x77\x78" 32143 "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80" 32144 "\x81\x82\x83\x84\x85\x86\x87\x88" 32145 "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90" 32146 "\x91\x92\x93\x94\x95\x96\x97\x98" 32147 "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0" 32148 "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8" 32149 "\xa9\xaa\xab\xac\xad\xae\xaf\xb0" 32150 "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8" 32151 "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0" 32152 "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8" 32153 "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0" 32154 "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8" 32155 "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0" 32156 "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8" 32157 "\xe9\xea\xeb\xec\xed\xee\xef\xf0", 32158 .psize = 240, 32159 .digest = "\x6c\xc6\x56\xde", 32160 }, { 32161 .key = "\xff\xff\xff\xff", 32162 .ksize = 4, 32163 .plaintext = "\x6e\x05\x79\x10\xa7\x1b\xb2\x49" 32164 "\xe0\x54\xeb\x82\x19\x8d\x24\xbb" 32165 "\x2f\xc6\x5d\xf4\x68\xff\x96\x0a" 32166 "\xa1\x38\xcf\x43\xda\x71\x08\x7c" 32167 "\x13\xaa\x1e\xb5\x4c\xe3\x57\xee" 32168 "\x85\x1c\x90\x27\xbe\x32\xc9\x60" 32169 "\xf7\x6b\x02\x99\x0d\xa4\x3b\xd2" 32170 "\x46\xdd\x74\x0b\x7f\x16\xad\x21" 32171 "\xb8\x4f\xe6\x5a\xf1\x88\x1f\x93" 32172 "\x2a\xc1\x35\xcc\x63\xfa\x6e\x05" 32173 "\x9c\x10\xa7\x3e\xd5\x49\xe0\x77" 32174 "\x0e\x82\x19\xb0\x24\xbb\x52\xe9" 32175 "\x5d\xf4\x8b\x22\x96\x2d\xc4\x38" 32176 "\xcf\x66\xfd\x71\x08\x9f\x13\xaa" 32177 "\x41\xd8\x4c\xe3\x7a\x11\x85\x1c" 32178 "\xb3\x27\xbe\x55\xec\x60\xf7\x8e" 32179 "\x02\x99\x30\xc7\x3b\xd2\x69\x00" 32180 "\x74\x0b\xa2\x16\xad\x44\xdb\x4f" 32181 "\xe6\x7d\x14\x88\x1f\xb6\x2a\xc1" 32182 "\x58\xef\x63\xfa\x91\x05\x9c\x33" 32183 "\xca\x3e\xd5\x6c\x03\x77\x0e\xa5" 32184 "\x19\xb0\x47\xde\x52\xe9\x80\x17" 32185 "\x8b\x22\xb9\x2d\xc4\x5b\xf2\x66" 32186 "\xfd\x94\x08\x9f\x36\xcd\x41\xd8" 32187 "\x6f\x06\x7a\x11\xa8\x1c\xb3\x4a" 32188 "\xe1\x55\xec\x83\x1a\x8e\x25\xbc" 32189 "\x30\xc7\x5e\xf5\x69\x00\x97\x0b" 32190 "\xa2\x39\xd0\x44\xdb\x72\x09\x7d" 32191 "\x14\xab\x1f\xb6\x4d\xe4\x58\xef" 32192 "\x86\x1d\x91\x28\xbf\x33\xca\x61" 32193 "\xf8\x6c\x03\x9a\x0e\xa5\x3c\xd3" 32194 "\x47\xde\x75\x0c\x80\x17\xae\x22" 32195 "\xb9\x50\xe7\x5b\xf2\x89\x20\x94" 32196 "\x2b\xc2\x36\xcd\x64\xfb\x6f\x06" 32197 "\x9d\x11\xa8\x3f\xd6\x4a\xe1\x78" 32198 "\x0f\x83\x1a\xb1\x25\xbc\x53\xea" 32199 "\x5e\xf5\x8c\x00\x97\x2e\xc5\x39" 32200 "\xd0\x67\xfe\x72\x09\xa0\x14\xab" 32201 "\x42\xd9\x4d\xe4\x7b\x12\x86\x1d" 32202 "\xb4\x28\xbf\x56\xed\x61\xf8\x8f" 32203 "\x03\x9a\x31\xc8\x3c\xd3\x6a\x01" 32204 "\x75\x0c\xa3\x17\xae\x45\xdc\x50" 32205 "\xe7\x7e\x15\x89\x20\xb7\x2b\xc2" 32206 "\x59\xf0\x64\xfb\x92\x06\x9d\x34" 32207 "\xcb\x3f\xd6\x6d\x04\x78\x0f\xa6" 32208 "\x1a\xb1\x48\xdf\x53\xea\x81\x18" 32209 "\x8c\x23\xba\x2e\xc5\x5c\xf3\x67" 32210 "\xfe\x95\x09\xa0\x37\xce\x42\xd9" 32211 "\x70\x07\x7b\x12\xa9\x1d\xb4\x4b" 32212 "\xe2\x56\xed\x84\x1b\x8f\x26\xbd" 32213 "\x31\xc8\x5f\xf6\x6a\x01\x98\x0c" 32214 "\xa3\x3a\xd1\x45\xdc\x73\x0a\x7e" 32215 "\x15\xac\x20\xb7\x4e\xe5\x59\xf0" 32216 "\x87\x1e\x92\x29\xc0\x34\xcb\x62" 32217 "\xf9\x6d\x04\x9b\x0f\xa6\x3d\xd4" 32218 "\x48\xdf\x76\x0d\x81\x18\xaf\x23" 32219 "\xba\x51\xe8\x5c\xf3\x8a\x21\x95" 32220 "\x2c\xc3\x37\xce\x65\xfc\x70\x07" 32221 "\x9e\x12\xa9\x40\xd7\x4b\xe2\x79" 32222 "\x10\x84\x1b\xb2\x26\xbd\x54\xeb" 32223 "\x5f\xf6\x8d\x01\x98\x2f\xc6\x3a" 32224 "\xd1\x68\xff\x73\x0a\xa1\x15\xac" 32225 "\x43\xda\x4e\xe5\x7c\x13\x87\x1e" 32226 "\xb5\x29\xc0\x57\xee\x62\xf9\x90" 32227 "\x04\x9b\x32\xc9\x3d\xd4\x6b\x02" 32228 "\x76\x0d\xa4\x18\xaf\x46\xdd\x51" 32229 "\xe8\x7f\x16\x8a\x21\xb8\x2c\xc3" 32230 "\x5a\xf1\x65\xfc\x93\x07\x9e\x35" 32231 "\xcc\x40\xd7\x6e\x05\x79\x10\xa7" 32232 "\x1b\xb2\x49\xe0\x54\xeb\x82\x19" 32233 "\x8d\x24\xbb\x2f\xc6\x5d\xf4\x68" 32234 "\xff\x96\x0a\xa1\x38\xcf\x43\xda" 32235 "\x71\x08\x7c\x13\xaa\x1e\xb5\x4c" 32236 "\xe3\x57\xee\x85\x1c\x90\x27\xbe" 32237 "\x32\xc9\x60\xf7\x6b\x02\x99\x0d" 32238 "\xa4\x3b\xd2\x46\xdd\x74\x0b\x7f" 32239 "\x16\xad\x21\xb8\x4f\xe6\x5a\xf1" 32240 "\x88\x1f\x93\x2a\xc1\x35\xcc\x63" 32241 "\xfa\x6e\x05\x9c\x10\xa7\x3e\xd5" 32242 "\x49\xe0\x77\x0e\x82\x19\xb0\x24" 32243 "\xbb\x52\xe9\x5d\xf4\x8b\x22\x96" 32244 "\x2d\xc4\x38\xcf\x66\xfd\x71\x08" 32245 "\x9f\x13\xaa\x41\xd8\x4c\xe3\x7a" 32246 "\x11\x85\x1c\xb3\x27\xbe\x55\xec" 32247 "\x60\xf7\x8e\x02\x99\x30\xc7\x3b" 32248 "\xd2\x69\x00\x74\x0b\xa2\x16\xad" 32249 "\x44\xdb\x4f\xe6\x7d\x14\x88\x1f" 32250 "\xb6\x2a\xc1\x58\xef\x63\xfa\x91" 32251 "\x05\x9c\x33\xca\x3e\xd5\x6c\x03" 32252 "\x77\x0e\xa5\x19\xb0\x47\xde\x52" 32253 "\xe9\x80\x17\x8b\x22\xb9\x2d\xc4" 32254 "\x5b\xf2\x66\xfd\x94\x08\x9f\x36" 32255 "\xcd\x41\xd8\x6f\x06\x7a\x11\xa8" 32256 "\x1c\xb3\x4a\xe1\x55\xec\x83\x1a" 32257 "\x8e\x25\xbc\x30\xc7\x5e\xf5\x69" 32258 "\x00\x97\x0b\xa2\x39\xd0\x44\xdb" 32259 "\x72\x09\x7d\x14\xab\x1f\xb6\x4d" 32260 "\xe4\x58\xef\x86\x1d\x91\x28\xbf" 32261 "\x33\xca\x61\xf8\x6c\x03\x9a\x0e" 32262 "\xa5\x3c\xd3\x47\xde\x75\x0c\x80" 32263 "\x17\xae\x22\xb9\x50\xe7\x5b\xf2" 32264 "\x89\x20\x94\x2b\xc2\x36\xcd\x64" 32265 "\xfb\x6f\x06\x9d\x11\xa8\x3f\xd6" 32266 "\x4a\xe1\x78\x0f\x83\x1a\xb1\x25" 32267 "\xbc\x53\xea\x5e\xf5\x8c\x00\x97" 32268 "\x2e\xc5\x39\xd0\x67\xfe\x72\x09" 32269 "\xa0\x14\xab\x42\xd9\x4d\xe4\x7b" 32270 "\x12\x86\x1d\xb4\x28\xbf\x56\xed" 32271 "\x61\xf8\x8f\x03\x9a\x31\xc8\x3c" 32272 "\xd3\x6a\x01\x75\x0c\xa3\x17\xae" 32273 "\x45\xdc\x50\xe7\x7e\x15\x89\x20" 32274 "\xb7\x2b\xc2\x59\xf0\x64\xfb\x92" 32275 "\x06\x9d\x34\xcb\x3f\xd6\x6d\x04" 32276 "\x78\x0f\xa6\x1a\xb1\x48\xdf\x53" 32277 "\xea\x81\x18\x8c\x23\xba\x2e\xc5" 32278 "\x5c\xf3\x67\xfe\x95\x09\xa0\x37" 32279 "\xce\x42\xd9\x70\x07\x7b\x12\xa9" 32280 "\x1d\xb4\x4b\xe2\x56\xed\x84\x1b" 32281 "\x8f\x26\xbd\x31\xc8\x5f\xf6\x6a" 32282 "\x01\x98\x0c\xa3\x3a\xd1\x45\xdc" 32283 "\x73\x0a\x7e\x15\xac\x20\xb7\x4e" 32284 "\xe5\x59\xf0\x87\x1e\x92\x29\xc0" 32285 "\x34\xcb\x62\xf9\x6d\x04\x9b\x0f" 32286 "\xa6\x3d\xd4\x48\xdf\x76\x0d\x81" 32287 "\x18\xaf\x23\xba\x51\xe8\x5c\xf3" 32288 "\x8a\x21\x95\x2c\xc3\x37\xce\x65" 32289 "\xfc\x70\x07\x9e\x12\xa9\x40\xd7" 32290 "\x4b\xe2\x79\x10\x84\x1b\xb2\x26" 32291 "\xbd\x54\xeb\x5f\xf6\x8d\x01\x98" 32292 "\x2f\xc6\x3a\xd1\x68\xff\x73\x0a" 32293 "\xa1\x15\xac\x43\xda\x4e\xe5\x7c" 32294 "\x13\x87\x1e\xb5\x29\xc0\x57\xee" 32295 "\x62\xf9\x90\x04\x9b\x32\xc9\x3d" 32296 "\xd4\x6b\x02\x76\x0d\xa4\x18\xaf" 32297 "\x46\xdd\x51\xe8\x7f\x16\x8a\x21" 32298 "\xb8\x2c\xc3\x5a\xf1\x65\xfc\x93" 32299 "\x07\x9e\x35\xcc\x40\xd7\x6e\x05" 32300 "\x79\x10\xa7\x1b\xb2\x49\xe0\x54" 32301 "\xeb\x82\x19\x8d\x24\xbb\x2f\xc6" 32302 "\x5d\xf4\x68\xff\x96\x0a\xa1\x38" 32303 "\xcf\x43\xda\x71\x08\x7c\x13\xaa" 32304 "\x1e\xb5\x4c\xe3\x57\xee\x85\x1c" 32305 "\x90\x27\xbe\x32\xc9\x60\xf7\x6b" 32306 "\x02\x99\x0d\xa4\x3b\xd2\x46\xdd" 32307 "\x74\x0b\x7f\x16\xad\x21\xb8\x4f" 32308 "\xe6\x5a\xf1\x88\x1f\x93\x2a\xc1" 32309 "\x35\xcc\x63\xfa\x6e\x05\x9c\x10" 32310 "\xa7\x3e\xd5\x49\xe0\x77\x0e\x82" 32311 "\x19\xb0\x24\xbb\x52\xe9\x5d\xf4" 32312 "\x8b\x22\x96\x2d\xc4\x38\xcf\x66" 32313 "\xfd\x71\x08\x9f\x13\xaa\x41\xd8" 32314 "\x4c\xe3\x7a\x11\x85\x1c\xb3\x27" 32315 "\xbe\x55\xec\x60\xf7\x8e\x02\x99" 32316 "\x30\xc7\x3b\xd2\x69\x00\x74\x0b" 32317 "\xa2\x16\xad\x44\xdb\x4f\xe6\x7d" 32318 "\x14\x88\x1f\xb6\x2a\xc1\x58\xef" 32319 "\x63\xfa\x91\x05\x9c\x33\xca\x3e" 32320 "\xd5\x6c\x03\x77\x0e\xa5\x19\xb0" 32321 "\x47\xde\x52\xe9\x80\x17\x8b\x22" 32322 "\xb9\x2d\xc4\x5b\xf2\x66\xfd\x94" 32323 "\x08\x9f\x36\xcd\x41\xd8\x6f\x06" 32324 "\x7a\x11\xa8\x1c\xb3\x4a\xe1\x55" 32325 "\xec\x83\x1a\x8e\x25\xbc\x30\xc7" 32326 "\x5e\xf5\x69\x00\x97\x0b\xa2\x39" 32327 "\xd0\x44\xdb\x72\x09\x7d\x14\xab" 32328 "\x1f\xb6\x4d\xe4\x58\xef\x86\x1d" 32329 "\x91\x28\xbf\x33\xca\x61\xf8\x6c" 32330 "\x03\x9a\x0e\xa5\x3c\xd3\x47\xde" 32331 "\x75\x0c\x80\x17\xae\x22\xb9\x50" 32332 "\xe7\x5b\xf2\x89\x20\x94\x2b\xc2" 32333 "\x36\xcd\x64\xfb\x6f\x06\x9d\x11" 32334 "\xa8\x3f\xd6\x4a\xe1\x78\x0f\x83" 32335 "\x1a\xb1\x25\xbc\x53\xea\x5e\xf5" 32336 "\x8c\x00\x97\x2e\xc5\x39\xd0\x67" 32337 "\xfe\x72\x09\xa0\x14\xab\x42\xd9" 32338 "\x4d\xe4\x7b\x12\x86\x1d\xb4\x28" 32339 "\xbf\x56\xed\x61\xf8\x8f\x03\x9a" 32340 "\x31\xc8\x3c\xd3\x6a\x01\x75\x0c" 32341 "\xa3\x17\xae\x45\xdc\x50\xe7\x7e" 32342 "\x15\x89\x20\xb7\x2b\xc2\x59\xf0" 32343 "\x64\xfb\x92\x06\x9d\x34\xcb\x3f" 32344 "\xd6\x6d\x04\x78\x0f\xa6\x1a\xb1" 32345 "\x48\xdf\x53\xea\x81\x18\x8c\x23" 32346 "\xba\x2e\xc5\x5c\xf3\x67\xfe\x95" 32347 "\x09\xa0\x37\xce\x42\xd9\x70\x07" 32348 "\x7b\x12\xa9\x1d\xb4\x4b\xe2\x56" 32349 "\xed\x84\x1b\x8f\x26\xbd\x31\xc8" 32350 "\x5f\xf6\x6a\x01\x98\x0c\xa3\x3a" 32351 "\xd1\x45\xdc\x73\x0a\x7e\x15\xac" 32352 "\x20\xb7\x4e\xe5\x59\xf0\x87\x1e" 32353 "\x92\x29\xc0\x34\xcb\x62\xf9\x6d" 32354 "\x04\x9b\x0f\xa6\x3d\xd4\x48\xdf" 32355 "\x76\x0d\x81\x18\xaf\x23\xba\x51" 32356 "\xe8\x5c\xf3\x8a\x21\x95\x2c\xc3" 32357 "\x37\xce\x65\xfc\x70\x07\x9e\x12" 32358 "\xa9\x40\xd7\x4b\xe2\x79\x10\x84" 32359 "\x1b\xb2\x26\xbd\x54\xeb\x5f\xf6" 32360 "\x8d\x01\x98\x2f\xc6\x3a\xd1\x68" 32361 "\xff\x73\x0a\xa1\x15\xac\x43\xda" 32362 "\x4e\xe5\x7c\x13\x87\x1e\xb5\x29" 32363 "\xc0\x57\xee\x62\xf9\x90\x04\x9b" 32364 "\x32\xc9\x3d\xd4\x6b\x02\x76\x0d" 32365 "\xa4\x18\xaf\x46\xdd\x51\xe8\x7f" 32366 "\x16\x8a\x21\xb8\x2c\xc3\x5a\xf1" 32367 "\x65\xfc\x93\x07\x9e\x35\xcc\x40" 32368 "\xd7\x6e\x05\x79\x10\xa7\x1b\xb2" 32369 "\x49\xe0\x54\xeb\x82\x19\x8d\x24" 32370 "\xbb\x2f\xc6\x5d\xf4\x68\xff\x96" 32371 "\x0a\xa1\x38\xcf\x43\xda\x71\x08" 32372 "\x7c\x13\xaa\x1e\xb5\x4c\xe3\x57" 32373 "\xee\x85\x1c\x90\x27\xbe\x32\xc9" 32374 "\x60\xf7\x6b\x02\x99\x0d\xa4\x3b" 32375 "\xd2\x46\xdd\x74\x0b\x7f\x16\xad" 32376 "\x21\xb8\x4f\xe6\x5a\xf1\x88\x1f" 32377 "\x93\x2a\xc1\x35\xcc\x63\xfa\x6e" 32378 "\x05\x9c\x10\xa7\x3e\xd5\x49\xe0" 32379 "\x77\x0e\x82\x19\xb0\x24\xbb\x52" 32380 "\xe9\x5d\xf4\x8b\x22\x96\x2d\xc4" 32381 "\x38\xcf\x66\xfd\x71\x08\x9f\x13" 32382 "\xaa\x41\xd8\x4c\xe3\x7a\x11\x85" 32383 "\x1c\xb3\x27\xbe\x55\xec\x60\xf7" 32384 "\x8e\x02\x99\x30\xc7\x3b\xd2\x69" 32385 "\x00\x74\x0b\xa2\x16\xad\x44\xdb" 32386 "\x4f\xe6\x7d\x14\x88\x1f\xb6\x2a" 32387 "\xc1\x58\xef\x63\xfa\x91\x05\x9c" 32388 "\x33\xca\x3e\xd5\x6c\x03\x77\x0e" 32389 "\xa5\x19\xb0\x47\xde\x52\xe9\x80" 32390 "\x17\x8b\x22\xb9\x2d\xc4\x5b\xf2" 32391 "\x66\xfd\x94\x08\x9f\x36\xcd\x41" 32392 "\xd8\x6f\x06\x7a\x11\xa8\x1c\xb3" 32393 "\x4a\xe1\x55\xec\x83\x1a\x8e\x25" 32394 "\xbc\x30\xc7\x5e\xf5\x69\x00\x97" 32395 "\x0b\xa2\x39\xd0\x44\xdb\x72\x09" 32396 "\x7d\x14\xab\x1f\xb6\x4d\xe4\x58" 32397 "\xef\x86\x1d\x91\x28\xbf\x33\xca" 32398 "\x61\xf8\x6c\x03\x9a\x0e\xa5\x3c" 32399 "\xd3\x47\xde\x75\x0c\x80\x17\xae" 32400 "\x22\xb9\x50\xe7\x5b\xf2\x89\x20" 32401 "\x94\x2b\xc2\x36\xcd\x64\xfb\x6f" 32402 "\x06\x9d\x11\xa8\x3f\xd6\x4a\xe1" 32403 "\x78\x0f\x83\x1a\xb1\x25\xbc\x53" 32404 "\xea\x5e\xf5\x8c\x00\x97\x2e\xc5" 32405 "\x39\xd0\x67\xfe\x72\x09\xa0\x14" 32406 "\xab\x42\xd9\x4d\xe4\x7b\x12\x86" 32407 "\x1d\xb4\x28\xbf\x56\xed\x61\xf8" 32408 "\x8f\x03\x9a\x31\xc8\x3c\xd3\x6a" 32409 "\x01\x75\x0c\xa3\x17\xae\x45\xdc" 32410 "\x50\xe7\x7e\x15\x89\x20\xb7\x2b" 32411 "\xc2\x59\xf0\x64\xfb\x92\x06\x9d" 32412 "\x34\xcb\x3f\xd6\x6d\x04\x78\x0f" 32413 "\xa6\x1a\xb1\x48\xdf\x53\xea\x81" 32414 "\x18\x8c\x23\xba\x2e\xc5\x5c\xf3" 32415 "\x67\xfe\x95\x09\xa0\x37\xce\x42" 32416 "\xd9\x70\x07\x7b\x12\xa9\x1d\xb4" 32417 "\x4b\xe2\x56\xed\x84\x1b\x8f\x26" 32418 "\xbd\x31\xc8\x5f\xf6\x6a\x01\x98", 32419 .psize = 2048, 32420 .digest = "\xfb\x3a\x7a\xda", 32421 } 32422 }; 32423 32424 /* 32425 * CRC32C test vectors 32426 */ 32427 static const struct hash_testvec crc32c_tv_template[] = { 32428 { 32429 .psize = 0, 32430 .digest = "\x00\x00\x00\x00", 32431 }, 32432 { 32433 .plaintext = "abcdefg", 32434 .psize = 7, 32435 .digest = "\x41\xf4\x27\xe6", 32436 }, 32437 { 32438 .key = "\x87\xa9\xcb\xed", 32439 .ksize = 4, 32440 .psize = 0, 32441 .digest = "\x78\x56\x34\x12", 32442 }, 32443 { 32444 .key = "\xff\xff\xff\xff", 32445 .ksize = 4, 32446 .plaintext = "\x01\x02\x03\x04\x05\x06\x07\x08" 32447 "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 32448 "\x11\x12\x13\x14\x15\x16\x17\x18" 32449 "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20" 32450 "\x21\x22\x23\x24\x25\x26\x27\x28", 32451 .psize = 40, 32452 .digest = "\x7f\x15\x2c\x0e", 32453 }, 32454 { 32455 .key = "\xff\xff\xff\xff", 32456 .ksize = 4, 32457 .plaintext = "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30" 32458 "\x31\x32\x33\x34\x35\x36\x37\x38" 32459 "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40" 32460 "\x41\x42\x43\x44\x45\x46\x47\x48" 32461 "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50", 32462 .psize = 40, 32463 .digest = "\xf6\xeb\x80\xe9", 32464 }, 32465 { 32466 .key = "\xff\xff\xff\xff", 32467 .ksize = 4, 32468 .plaintext = "\x51\x52\x53\x54\x55\x56\x57\x58" 32469 "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60" 32470 "\x61\x62\x63\x64\x65\x66\x67\x68" 32471 "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70" 32472 "\x71\x72\x73\x74\x75\x76\x77\x78", 32473 .psize = 40, 32474 .digest = "\xed\xbd\x74\xde", 32475 }, 32476 { 32477 .key = "\xff\xff\xff\xff", 32478 .ksize = 4, 32479 .plaintext = "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80" 32480 "\x81\x82\x83\x84\x85\x86\x87\x88" 32481 "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90" 32482 "\x91\x92\x93\x94\x95\x96\x97\x98" 32483 "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0", 32484 .psize = 40, 32485 .digest = "\x62\xc8\x79\xd5", 32486 }, 32487 { 32488 .key = "\xff\xff\xff\xff", 32489 .ksize = 4, 32490 .plaintext = "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8" 32491 "\xa9\xaa\xab\xac\xad\xae\xaf\xb0" 32492 "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8" 32493 "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0" 32494 "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8", 32495 .psize = 40, 32496 .digest = "\xd0\x9a\x97\xba", 32497 }, 32498 { 32499 .key = "\xff\xff\xff\xff", 32500 .ksize = 4, 32501 .plaintext = "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0" 32502 "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8" 32503 "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0" 32504 "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8" 32505 "\xe9\xea\xeb\xec\xed\xee\xef\xf0", 32506 .psize = 40, 32507 .digest = "\x13\xd9\x29\x2b", 32508 }, 32509 { 32510 .key = "\x80\xea\xd3\xf1", 32511 .ksize = 4, 32512 .plaintext = "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30" 32513 "\x31\x32\x33\x34\x35\x36\x37\x38" 32514 "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40" 32515 "\x41\x42\x43\x44\x45\x46\x47\x48" 32516 "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50", 32517 .psize = 40, 32518 .digest = "\x0c\xb5\xe2\xa2", 32519 }, 32520 { 32521 .key = "\xf3\x4a\x1d\x5d", 32522 .ksize = 4, 32523 .plaintext = "\x51\x52\x53\x54\x55\x56\x57\x58" 32524 "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60" 32525 "\x61\x62\x63\x64\x65\x66\x67\x68" 32526 "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70" 32527 "\x71\x72\x73\x74\x75\x76\x77\x78", 32528 .psize = 40, 32529 .digest = "\xd1\x7f\xfb\xa6", 32530 }, 32531 { 32532 .key = "\x2e\x80\x04\x59", 32533 .ksize = 4, 32534 .plaintext = "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80" 32535 "\x81\x82\x83\x84\x85\x86\x87\x88" 32536 "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90" 32537 "\x91\x92\x93\x94\x95\x96\x97\x98" 32538 "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0", 32539 .psize = 40, 32540 .digest = "\x59\x33\xe6\x7a", 32541 }, 32542 { 32543 .key = "\xa6\xcc\x19\x85", 32544 .ksize = 4, 32545 .plaintext = "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8" 32546 "\xa9\xaa\xab\xac\xad\xae\xaf\xb0" 32547 "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8" 32548 "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0" 32549 "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8", 32550 .psize = 40, 32551 .digest = "\xbe\x03\x01\xd2", 32552 }, 32553 { 32554 .key = "\x41\xfc\xfe\x2d", 32555 .ksize = 4, 32556 .plaintext = "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0" 32557 "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8" 32558 "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0" 32559 "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8" 32560 "\xe9\xea\xeb\xec\xed\xee\xef\xf0", 32561 .psize = 40, 32562 .digest = "\x75\xd3\xc5\x24", 32563 }, 32564 { 32565 .key = "\xff\xff\xff\xff", 32566 .ksize = 4, 32567 .plaintext = "\x01\x02\x03\x04\x05\x06\x07\x08" 32568 "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 32569 "\x11\x12\x13\x14\x15\x16\x17\x18" 32570 "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20" 32571 "\x21\x22\x23\x24\x25\x26\x27\x28" 32572 "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30" 32573 "\x31\x32\x33\x34\x35\x36\x37\x38" 32574 "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40" 32575 "\x41\x42\x43\x44\x45\x46\x47\x48" 32576 "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50" 32577 "\x51\x52\x53\x54\x55\x56\x57\x58" 32578 "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60" 32579 "\x61\x62\x63\x64\x65\x66\x67\x68" 32580 "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70" 32581 "\x71\x72\x73\x74\x75\x76\x77\x78" 32582 "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80" 32583 "\x81\x82\x83\x84\x85\x86\x87\x88" 32584 "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90" 32585 "\x91\x92\x93\x94\x95\x96\x97\x98" 32586 "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0" 32587 "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8" 32588 "\xa9\xaa\xab\xac\xad\xae\xaf\xb0" 32589 "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8" 32590 "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0" 32591 "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8" 32592 "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0" 32593 "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8" 32594 "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0" 32595 "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8" 32596 "\xe9\xea\xeb\xec\xed\xee\xef\xf0", 32597 .psize = 240, 32598 .digest = "\x75\xd3\xc5\x24", 32599 }, { 32600 .key = "\xff\xff\xff\xff", 32601 .ksize = 4, 32602 .plaintext = "\x6e\x05\x79\x10\xa7\x1b\xb2\x49" 32603 "\xe0\x54\xeb\x82\x19\x8d\x24\xbb" 32604 "\x2f\xc6\x5d\xf4\x68\xff\x96\x0a" 32605 "\xa1\x38\xcf\x43\xda\x71\x08\x7c" 32606 "\x13\xaa\x1e\xb5\x4c\xe3\x57\xee" 32607 "\x85\x1c\x90\x27\xbe\x32\xc9\x60" 32608 "\xf7\x6b\x02\x99\x0d\xa4\x3b\xd2" 32609 "\x46\xdd\x74\x0b\x7f\x16\xad\x21" 32610 "\xb8\x4f\xe6\x5a\xf1\x88\x1f\x93" 32611 "\x2a\xc1\x35\xcc\x63\xfa\x6e\x05" 32612 "\x9c\x10\xa7\x3e\xd5\x49\xe0\x77" 32613 "\x0e\x82\x19\xb0\x24\xbb\x52\xe9" 32614 "\x5d\xf4\x8b\x22\x96\x2d\xc4\x38" 32615 "\xcf\x66\xfd\x71\x08\x9f\x13\xaa" 32616 "\x41\xd8\x4c\xe3\x7a\x11\x85\x1c" 32617 "\xb3\x27\xbe\x55\xec\x60\xf7\x8e" 32618 "\x02\x99\x30\xc7\x3b\xd2\x69\x00" 32619 "\x74\x0b\xa2\x16\xad\x44\xdb\x4f" 32620 "\xe6\x7d\x14\x88\x1f\xb6\x2a\xc1" 32621 "\x58\xef\x63\xfa\x91\x05\x9c\x33" 32622 "\xca\x3e\xd5\x6c\x03\x77\x0e\xa5" 32623 "\x19\xb0\x47\xde\x52\xe9\x80\x17" 32624 "\x8b\x22\xb9\x2d\xc4\x5b\xf2\x66" 32625 "\xfd\x94\x08\x9f\x36\xcd\x41\xd8" 32626 "\x6f\x06\x7a\x11\xa8\x1c\xb3\x4a" 32627 "\xe1\x55\xec\x83\x1a\x8e\x25\xbc" 32628 "\x30\xc7\x5e\xf5\x69\x00\x97\x0b" 32629 "\xa2\x39\xd0\x44\xdb\x72\x09\x7d" 32630 "\x14\xab\x1f\xb6\x4d\xe4\x58\xef" 32631 "\x86\x1d\x91\x28\xbf\x33\xca\x61" 32632 "\xf8\x6c\x03\x9a\x0e\xa5\x3c\xd3" 32633 "\x47\xde\x75\x0c\x80\x17\xae\x22" 32634 "\xb9\x50\xe7\x5b\xf2\x89\x20\x94" 32635 "\x2b\xc2\x36\xcd\x64\xfb\x6f\x06" 32636 "\x9d\x11\xa8\x3f\xd6\x4a\xe1\x78" 32637 "\x0f\x83\x1a\xb1\x25\xbc\x53\xea" 32638 "\x5e\xf5\x8c\x00\x97\x2e\xc5\x39" 32639 "\xd0\x67\xfe\x72\x09\xa0\x14\xab" 32640 "\x42\xd9\x4d\xe4\x7b\x12\x86\x1d" 32641 "\xb4\x28\xbf\x56\xed\x61\xf8\x8f" 32642 "\x03\x9a\x31\xc8\x3c\xd3\x6a\x01" 32643 "\x75\x0c\xa3\x17\xae\x45\xdc\x50" 32644 "\xe7\x7e\x15\x89\x20\xb7\x2b\xc2" 32645 "\x59\xf0\x64\xfb\x92\x06\x9d\x34" 32646 "\xcb\x3f\xd6\x6d\x04\x78\x0f\xa6" 32647 "\x1a\xb1\x48\xdf\x53\xea\x81\x18" 32648 "\x8c\x23\xba\x2e\xc5\x5c\xf3\x67" 32649 "\xfe\x95\x09\xa0\x37\xce\x42\xd9" 32650 "\x70\x07\x7b\x12\xa9\x1d\xb4\x4b" 32651 "\xe2\x56\xed\x84\x1b\x8f\x26\xbd" 32652 "\x31\xc8\x5f\xf6\x6a\x01\x98\x0c" 32653 "\xa3\x3a\xd1\x45\xdc\x73\x0a\x7e" 32654 "\x15\xac\x20\xb7\x4e\xe5\x59\xf0" 32655 "\x87\x1e\x92\x29\xc0\x34\xcb\x62" 32656 "\xf9\x6d\x04\x9b\x0f\xa6\x3d\xd4" 32657 "\x48\xdf\x76\x0d\x81\x18\xaf\x23" 32658 "\xba\x51\xe8\x5c\xf3\x8a\x21\x95" 32659 "\x2c\xc3\x37\xce\x65\xfc\x70\x07" 32660 "\x9e\x12\xa9\x40\xd7\x4b\xe2\x79" 32661 "\x10\x84\x1b\xb2\x26\xbd\x54\xeb" 32662 "\x5f\xf6\x8d\x01\x98\x2f\xc6\x3a" 32663 "\xd1\x68\xff\x73\x0a\xa1\x15\xac" 32664 "\x43\xda\x4e\xe5\x7c\x13\x87\x1e" 32665 "\xb5\x29\xc0\x57\xee\x62\xf9\x90" 32666 "\x04\x9b\x32\xc9\x3d\xd4\x6b\x02" 32667 "\x76\x0d\xa4\x18\xaf\x46\xdd\x51" 32668 "\xe8\x7f\x16\x8a\x21\xb8\x2c\xc3" 32669 "\x5a\xf1\x65\xfc\x93\x07\x9e\x35" 32670 "\xcc\x40\xd7\x6e\x05\x79\x10\xa7" 32671 "\x1b\xb2\x49\xe0\x54\xeb\x82\x19" 32672 "\x8d\x24\xbb\x2f\xc6\x5d\xf4\x68" 32673 "\xff\x96\x0a\xa1\x38\xcf\x43\xda" 32674 "\x71\x08\x7c\x13\xaa\x1e\xb5\x4c" 32675 "\xe3\x57\xee\x85\x1c\x90\x27\xbe" 32676 "\x32\xc9\x60\xf7\x6b\x02\x99\x0d" 32677 "\xa4\x3b\xd2\x46\xdd\x74\x0b\x7f" 32678 "\x16\xad\x21\xb8\x4f\xe6\x5a\xf1" 32679 "\x88\x1f\x93\x2a\xc1\x35\xcc\x63" 32680 "\xfa\x6e\x05\x9c\x10\xa7\x3e\xd5" 32681 "\x49\xe0\x77\x0e\x82\x19\xb0\x24" 32682 "\xbb\x52\xe9\x5d\xf4\x8b\x22\x96" 32683 "\x2d\xc4\x38\xcf\x66\xfd\x71\x08" 32684 "\x9f\x13\xaa\x41\xd8\x4c\xe3\x7a" 32685 "\x11\x85\x1c\xb3\x27\xbe\x55\xec" 32686 "\x60\xf7\x8e\x02\x99\x30\xc7\x3b" 32687 "\xd2\x69\x00\x74\x0b\xa2\x16\xad" 32688 "\x44\xdb\x4f\xe6\x7d\x14\x88\x1f" 32689 "\xb6\x2a\xc1\x58\xef\x63\xfa\x91" 32690 "\x05\x9c\x33\xca\x3e\xd5\x6c\x03" 32691 "\x77\x0e\xa5\x19\xb0\x47\xde\x52" 32692 "\xe9\x80\x17\x8b\x22\xb9\x2d\xc4" 32693 "\x5b\xf2\x66\xfd\x94\x08\x9f\x36" 32694 "\xcd\x41\xd8\x6f\x06\x7a\x11\xa8" 32695 "\x1c\xb3\x4a\xe1\x55\xec\x83\x1a" 32696 "\x8e\x25\xbc\x30\xc7\x5e\xf5\x69" 32697 "\x00\x97\x0b\xa2\x39\xd0\x44\xdb" 32698 "\x72\x09\x7d\x14\xab\x1f\xb6\x4d" 32699 "\xe4\x58\xef\x86\x1d\x91\x28\xbf" 32700 "\x33\xca\x61\xf8\x6c\x03\x9a\x0e" 32701 "\xa5\x3c\xd3\x47\xde\x75\x0c\x80" 32702 "\x17\xae\x22\xb9\x50\xe7\x5b\xf2" 32703 "\x89\x20\x94\x2b\xc2\x36\xcd\x64" 32704 "\xfb\x6f\x06\x9d\x11\xa8\x3f\xd6" 32705 "\x4a\xe1\x78\x0f\x83\x1a\xb1\x25" 32706 "\xbc\x53\xea\x5e\xf5\x8c\x00\x97" 32707 "\x2e\xc5\x39\xd0\x67\xfe\x72\x09" 32708 "\xa0\x14\xab\x42\xd9\x4d\xe4\x7b" 32709 "\x12\x86\x1d\xb4\x28\xbf\x56\xed" 32710 "\x61\xf8\x8f\x03\x9a\x31\xc8\x3c" 32711 "\xd3\x6a\x01\x75\x0c\xa3\x17\xae" 32712 "\x45\xdc\x50\xe7\x7e\x15\x89\x20" 32713 "\xb7\x2b\xc2\x59\xf0\x64\xfb\x92" 32714 "\x06\x9d\x34\xcb\x3f\xd6\x6d\x04" 32715 "\x78\x0f\xa6\x1a\xb1\x48\xdf\x53" 32716 "\xea\x81\x18\x8c\x23\xba\x2e\xc5" 32717 "\x5c\xf3\x67\xfe\x95\x09\xa0\x37" 32718 "\xce\x42\xd9\x70\x07\x7b\x12\xa9" 32719 "\x1d\xb4\x4b\xe2\x56\xed\x84\x1b" 32720 "\x8f\x26\xbd\x31\xc8\x5f\xf6\x6a" 32721 "\x01\x98\x0c\xa3\x3a\xd1\x45\xdc" 32722 "\x73\x0a\x7e\x15\xac\x20\xb7\x4e" 32723 "\xe5\x59\xf0\x87\x1e\x92\x29\xc0" 32724 "\x34\xcb\x62\xf9\x6d\x04\x9b\x0f" 32725 "\xa6\x3d\xd4\x48\xdf\x76\x0d\x81" 32726 "\x18\xaf\x23\xba\x51\xe8\x5c\xf3" 32727 "\x8a\x21\x95\x2c\xc3\x37\xce\x65" 32728 "\xfc\x70\x07\x9e\x12\xa9\x40\xd7" 32729 "\x4b\xe2\x79\x10\x84\x1b\xb2\x26" 32730 "\xbd\x54\xeb\x5f\xf6\x8d\x01\x98" 32731 "\x2f\xc6\x3a\xd1\x68\xff\x73\x0a" 32732 "\xa1\x15\xac\x43\xda\x4e\xe5\x7c" 32733 "\x13\x87\x1e\xb5\x29\xc0\x57\xee" 32734 "\x62\xf9\x90\x04\x9b\x32\xc9\x3d" 32735 "\xd4\x6b\x02\x76\x0d\xa4\x18\xaf" 32736 "\x46\xdd\x51\xe8\x7f\x16\x8a\x21" 32737 "\xb8\x2c\xc3\x5a\xf1\x65\xfc\x93" 32738 "\x07\x9e\x35\xcc\x40\xd7\x6e\x05" 32739 "\x79\x10\xa7\x1b\xb2\x49\xe0\x54" 32740 "\xeb\x82\x19\x8d\x24\xbb\x2f\xc6" 32741 "\x5d\xf4\x68\xff\x96\x0a\xa1\x38" 32742 "\xcf\x43\xda\x71\x08\x7c\x13\xaa" 32743 "\x1e\xb5\x4c\xe3\x57\xee\x85\x1c" 32744 "\x90\x27\xbe\x32\xc9\x60\xf7\x6b" 32745 "\x02\x99\x0d\xa4\x3b\xd2\x46\xdd" 32746 "\x74\x0b\x7f\x16\xad\x21\xb8\x4f" 32747 "\xe6\x5a\xf1\x88\x1f\x93\x2a\xc1" 32748 "\x35\xcc\x63\xfa\x6e\x05\x9c\x10" 32749 "\xa7\x3e\xd5\x49\xe0\x77\x0e\x82" 32750 "\x19\xb0\x24\xbb\x52\xe9\x5d\xf4" 32751 "\x8b\x22\x96\x2d\xc4\x38\xcf\x66" 32752 "\xfd\x71\x08\x9f\x13\xaa\x41\xd8" 32753 "\x4c\xe3\x7a\x11\x85\x1c\xb3\x27" 32754 "\xbe\x55\xec\x60\xf7\x8e\x02\x99" 32755 "\x30\xc7\x3b\xd2\x69\x00\x74\x0b" 32756 "\xa2\x16\xad\x44\xdb\x4f\xe6\x7d" 32757 "\x14\x88\x1f\xb6\x2a\xc1\x58\xef" 32758 "\x63\xfa\x91\x05\x9c\x33\xca\x3e" 32759 "\xd5\x6c\x03\x77\x0e\xa5\x19\xb0" 32760 "\x47\xde\x52\xe9\x80\x17\x8b\x22" 32761 "\xb9\x2d\xc4\x5b\xf2\x66\xfd\x94" 32762 "\x08\x9f\x36\xcd\x41\xd8\x6f\x06" 32763 "\x7a\x11\xa8\x1c\xb3\x4a\xe1\x55" 32764 "\xec\x83\x1a\x8e\x25\xbc\x30\xc7" 32765 "\x5e\xf5\x69\x00\x97\x0b\xa2\x39" 32766 "\xd0\x44\xdb\x72\x09\x7d\x14\xab" 32767 "\x1f\xb6\x4d\xe4\x58\xef\x86\x1d" 32768 "\x91\x28\xbf\x33\xca\x61\xf8\x6c" 32769 "\x03\x9a\x0e\xa5\x3c\xd3\x47\xde" 32770 "\x75\x0c\x80\x17\xae\x22\xb9\x50" 32771 "\xe7\x5b\xf2\x89\x20\x94\x2b\xc2" 32772 "\x36\xcd\x64\xfb\x6f\x06\x9d\x11" 32773 "\xa8\x3f\xd6\x4a\xe1\x78\x0f\x83" 32774 "\x1a\xb1\x25\xbc\x53\xea\x5e\xf5" 32775 "\x8c\x00\x97\x2e\xc5\x39\xd0\x67" 32776 "\xfe\x72\x09\xa0\x14\xab\x42\xd9" 32777 "\x4d\xe4\x7b\x12\x86\x1d\xb4\x28" 32778 "\xbf\x56\xed\x61\xf8\x8f\x03\x9a" 32779 "\x31\xc8\x3c\xd3\x6a\x01\x75\x0c" 32780 "\xa3\x17\xae\x45\xdc\x50\xe7\x7e" 32781 "\x15\x89\x20\xb7\x2b\xc2\x59\xf0" 32782 "\x64\xfb\x92\x06\x9d\x34\xcb\x3f" 32783 "\xd6\x6d\x04\x78\x0f\xa6\x1a\xb1" 32784 "\x48\xdf\x53\xea\x81\x18\x8c\x23" 32785 "\xba\x2e\xc5\x5c\xf3\x67\xfe\x95" 32786 "\x09\xa0\x37\xce\x42\xd9\x70\x07" 32787 "\x7b\x12\xa9\x1d\xb4\x4b\xe2\x56" 32788 "\xed\x84\x1b\x8f\x26\xbd\x31\xc8" 32789 "\x5f\xf6\x6a\x01\x98\x0c\xa3\x3a" 32790 "\xd1\x45\xdc\x73\x0a\x7e\x15\xac" 32791 "\x20\xb7\x4e\xe5\x59\xf0\x87\x1e" 32792 "\x92\x29\xc0\x34\xcb\x62\xf9\x6d" 32793 "\x04\x9b\x0f\xa6\x3d\xd4\x48\xdf" 32794 "\x76\x0d\x81\x18\xaf\x23\xba\x51" 32795 "\xe8\x5c\xf3\x8a\x21\x95\x2c\xc3" 32796 "\x37\xce\x65\xfc\x70\x07\x9e\x12" 32797 "\xa9\x40\xd7\x4b\xe2\x79\x10\x84" 32798 "\x1b\xb2\x26\xbd\x54\xeb\x5f\xf6" 32799 "\x8d\x01\x98\x2f\xc6\x3a\xd1\x68" 32800 "\xff\x73\x0a\xa1\x15\xac\x43\xda" 32801 "\x4e\xe5\x7c\x13\x87\x1e\xb5\x29" 32802 "\xc0\x57\xee\x62\xf9\x90\x04\x9b" 32803 "\x32\xc9\x3d\xd4\x6b\x02\x76\x0d" 32804 "\xa4\x18\xaf\x46\xdd\x51\xe8\x7f" 32805 "\x16\x8a\x21\xb8\x2c\xc3\x5a\xf1" 32806 "\x65\xfc\x93\x07\x9e\x35\xcc\x40" 32807 "\xd7\x6e\x05\x79\x10\xa7\x1b\xb2" 32808 "\x49\xe0\x54\xeb\x82\x19\x8d\x24" 32809 "\xbb\x2f\xc6\x5d\xf4\x68\xff\x96" 32810 "\x0a\xa1\x38\xcf\x43\xda\x71\x08" 32811 "\x7c\x13\xaa\x1e\xb5\x4c\xe3\x57" 32812 "\xee\x85\x1c\x90\x27\xbe\x32\xc9" 32813 "\x60\xf7\x6b\x02\x99\x0d\xa4\x3b" 32814 "\xd2\x46\xdd\x74\x0b\x7f\x16\xad" 32815 "\x21\xb8\x4f\xe6\x5a\xf1\x88\x1f" 32816 "\x93\x2a\xc1\x35\xcc\x63\xfa\x6e" 32817 "\x05\x9c\x10\xa7\x3e\xd5\x49\xe0" 32818 "\x77\x0e\x82\x19\xb0\x24\xbb\x52" 32819 "\xe9\x5d\xf4\x8b\x22\x96\x2d\xc4" 32820 "\x38\xcf\x66\xfd\x71\x08\x9f\x13" 32821 "\xaa\x41\xd8\x4c\xe3\x7a\x11\x85" 32822 "\x1c\xb3\x27\xbe\x55\xec\x60\xf7" 32823 "\x8e\x02\x99\x30\xc7\x3b\xd2\x69" 32824 "\x00\x74\x0b\xa2\x16\xad\x44\xdb" 32825 "\x4f\xe6\x7d\x14\x88\x1f\xb6\x2a" 32826 "\xc1\x58\xef\x63\xfa\x91\x05\x9c" 32827 "\x33\xca\x3e\xd5\x6c\x03\x77\x0e" 32828 "\xa5\x19\xb0\x47\xde\x52\xe9\x80" 32829 "\x17\x8b\x22\xb9\x2d\xc4\x5b\xf2" 32830 "\x66\xfd\x94\x08\x9f\x36\xcd\x41" 32831 "\xd8\x6f\x06\x7a\x11\xa8\x1c\xb3" 32832 "\x4a\xe1\x55\xec\x83\x1a\x8e\x25" 32833 "\xbc\x30\xc7\x5e\xf5\x69\x00\x97" 32834 "\x0b\xa2\x39\xd0\x44\xdb\x72\x09" 32835 "\x7d\x14\xab\x1f\xb6\x4d\xe4\x58" 32836 "\xef\x86\x1d\x91\x28\xbf\x33\xca" 32837 "\x61\xf8\x6c\x03\x9a\x0e\xa5\x3c" 32838 "\xd3\x47\xde\x75\x0c\x80\x17\xae" 32839 "\x22\xb9\x50\xe7\x5b\xf2\x89\x20" 32840 "\x94\x2b\xc2\x36\xcd\x64\xfb\x6f" 32841 "\x06\x9d\x11\xa8\x3f\xd6\x4a\xe1" 32842 "\x78\x0f\x83\x1a\xb1\x25\xbc\x53" 32843 "\xea\x5e\xf5\x8c\x00\x97\x2e\xc5" 32844 "\x39\xd0\x67\xfe\x72\x09\xa0\x14" 32845 "\xab\x42\xd9\x4d\xe4\x7b\x12\x86" 32846 "\x1d\xb4\x28\xbf\x56\xed\x61\xf8" 32847 "\x8f\x03\x9a\x31\xc8\x3c\xd3\x6a" 32848 "\x01\x75\x0c\xa3\x17\xae\x45\xdc" 32849 "\x50\xe7\x7e\x15\x89\x20\xb7\x2b" 32850 "\xc2\x59\xf0\x64\xfb\x92\x06\x9d" 32851 "\x34\xcb\x3f\xd6\x6d\x04\x78\x0f" 32852 "\xa6\x1a\xb1\x48\xdf\x53\xea\x81" 32853 "\x18\x8c\x23\xba\x2e\xc5\x5c\xf3" 32854 "\x67\xfe\x95\x09\xa0\x37\xce\x42" 32855 "\xd9\x70\x07\x7b\x12\xa9\x1d\xb4" 32856 "\x4b\xe2\x56\xed\x84\x1b\x8f\x26" 32857 "\xbd\x31\xc8\x5f\xf6\x6a\x01\x98", 32858 .psize = 2048, 32859 .digest = "\xec\x26\x4d\x95", 32860 } 32861 }; 32862 32863 static const struct hash_testvec xxhash64_tv_template[] = { 32864 { 32865 .psize = 0, 32866 .digest = "\x99\xe9\xd8\x51\x37\xdb\x46\xef", 32867 }, 32868 { 32869 .plaintext = "\x40", 32870 .psize = 1, 32871 .digest = "\x20\x5c\x91\xaa\x88\xeb\x59\xd0", 32872 }, 32873 { 32874 .plaintext = "\x40\x8b\xb8\x41\xe4\x42\x15\x2d" 32875 "\x88\xc7\x9a\x09\x1a\x9b", 32876 .psize = 14, 32877 .digest = "\xa8\xe8\x2b\xa9\x92\xa1\x37\x4a", 32878 }, 32879 { 32880 .plaintext = "\x40\x8b\xb8\x41\xe4\x42\x15\x2d" 32881 "\x88\xc7\x9a\x09\x1a\x9b\x42\xe0" 32882 "\xd4\x38\xa5\x2a\x26\xa5\x19\x4b" 32883 "\x57\x65\x7f\xad\xc3\x7d\xca\x40" 32884 "\x31\x65\x05\xbb\x31\xae\x51\x11" 32885 "\xa8\xc0\xb3\x28\x42\xeb\x3c\x46" 32886 "\xc8\xed\xed\x0f\x8d\x0b\xfa\x6e" 32887 "\xbc\xe3\x88\x53\xca\x8f\xc8\xd9" 32888 "\x41\x26\x7a\x3d\x21\xdb\x1a\x3c" 32889 "\x01\x1d\xc9\xe9\xb7\x3a\x78\x67" 32890 "\x57\x20\x94\xf1\x1e\xfd\xce\x39" 32891 "\x99\x57\x69\x39\xa5\xd0\x8d\xd9" 32892 "\x43\xfe\x1d\x66\x04\x3c\x27\x6a" 32893 "\xe1\x0d\xe7\xc9\xfa\xc9\x07\x56" 32894 "\xa5\xb3\xec\xd9\x1f\x42\x65\x66" 32895 "\xaa\xbf\x87\x9b\xc5\x41\x9c\x27" 32896 "\x3f\x2f\xa9\x55\x93\x01\x27\x33" 32897 "\x43\x99\x4d\x81\x85\xae\x82\x00" 32898 "\x6c\xd0\xd1\xa3\x57\x18\x06\xcc" 32899 "\xec\x72\xf7\x8e\x87\x2d\x1f\x5e" 32900 "\xd7\x5b\x1f\x36\x4c\xfa\xfd\x18" 32901 "\x89\x76\xd3\x5e\xb5\x5a\xc0\x01" 32902 "\xd2\xa1\x9a\x50\xe6\x08\xb4\x76" 32903 "\x56\x4f\x0e\xbc\x54\xfc\x67\xe6" 32904 "\xb9\xc0\x28\x4b\xb5\xc3\xff\x79" 32905 "\x52\xea\xa1\x90\xc3\xaf\x08\x70" 32906 "\x12\x02\x0c\xdb\x94\x00\x38\x95" 32907 "\xed\xfd\x08\xf7\xe8\x04", 32908 .psize = 222, 32909 .digest = "\x41\xfc\xd4\x29\xfe\xe7\x85\x17", 32910 }, 32911 { 32912 .psize = 0, 32913 .key = "\xb1\x79\x37\x9e\x00\x00\x00\x00", 32914 .ksize = 8, 32915 .digest = "\xef\x17\x9b\x92\xa2\xfd\x75\xac", 32916 }, 32917 32918 { 32919 .plaintext = "\x40", 32920 .psize = 1, 32921 .key = "\xb1\x79\x37\x9e\x00\x00\x00\x00", 32922 .ksize = 8, 32923 .digest = "\xd1\x70\x4f\x14\x02\xc4\x9e\x71", 32924 }, 32925 { 32926 .plaintext = "\x40\x8b\xb8\x41\xe4\x42\x15\x2d" 32927 "\x88\xc7\x9a\x09\x1a\x9b", 32928 .psize = 14, 32929 .key = "\xb1\x79\x37\x9e\x00\x00\x00\x00", 32930 .ksize = 8, 32931 .digest = "\xa4\xcd\xfe\x8e\x37\xe2\x1c\x64" 32932 }, 32933 { 32934 .plaintext = "\x40\x8b\xb8\x41\xe4\x42\x15\x2d" 32935 "\x88\xc7\x9a\x09\x1a\x9b\x42\xe0" 32936 "\xd4\x38\xa5\x2a\x26\xa5\x19\x4b" 32937 "\x57\x65\x7f\xad\xc3\x7d\xca\x40" 32938 "\x31\x65\x05\xbb\x31\xae\x51\x11" 32939 "\xa8\xc0\xb3\x28\x42\xeb\x3c\x46" 32940 "\xc8\xed\xed\x0f\x8d\x0b\xfa\x6e" 32941 "\xbc\xe3\x88\x53\xca\x8f\xc8\xd9" 32942 "\x41\x26\x7a\x3d\x21\xdb\x1a\x3c" 32943 "\x01\x1d\xc9\xe9\xb7\x3a\x78\x67" 32944 "\x57\x20\x94\xf1\x1e\xfd\xce\x39" 32945 "\x99\x57\x69\x39\xa5\xd0\x8d\xd9" 32946 "\x43\xfe\x1d\x66\x04\x3c\x27\x6a" 32947 "\xe1\x0d\xe7\xc9\xfa\xc9\x07\x56" 32948 "\xa5\xb3\xec\xd9\x1f\x42\x65\x66" 32949 "\xaa\xbf\x87\x9b\xc5\x41\x9c\x27" 32950 "\x3f\x2f\xa9\x55\x93\x01\x27\x33" 32951 "\x43\x99\x4d\x81\x85\xae\x82\x00" 32952 "\x6c\xd0\xd1\xa3\x57\x18\x06\xcc" 32953 "\xec\x72\xf7\x8e\x87\x2d\x1f\x5e" 32954 "\xd7\x5b\x1f\x36\x4c\xfa\xfd\x18" 32955 "\x89\x76\xd3\x5e\xb5\x5a\xc0\x01" 32956 "\xd2\xa1\x9a\x50\xe6\x08\xb4\x76" 32957 "\x56\x4f\x0e\xbc\x54\xfc\x67\xe6" 32958 "\xb9\xc0\x28\x4b\xb5\xc3\xff\x79" 32959 "\x52\xea\xa1\x90\xc3\xaf\x08\x70" 32960 "\x12\x02\x0c\xdb\x94\x00\x38\x95" 32961 "\xed\xfd\x08\xf7\xe8\x04", 32962 .psize = 222, 32963 .key = "\xb1\x79\x37\x9e\x00\x00\x00\x00", 32964 .ksize = 8, 32965 .digest = "\x58\xbc\x55\xf2\x42\x81\x5c\xf0" 32966 }, 32967 }; 32968 32969 static const struct comp_testvec lz4_comp_tv_template[] = { 32970 { 32971 .inlen = 255, 32972 .outlen = 218, 32973 .input = "LZ4 is lossless compression algorithm, providing" 32974 " compression speed at 400 MB/s per core, scalable " 32975 "with multi-cores CPU. It features an extremely fast " 32976 "decoder, with speed in multiple GB/s per core, " 32977 "typically reaching RAM speed limits on multi-core " 32978 "systems.", 32979 .output = "\xf9\x21\x4c\x5a\x34\x20\x69\x73\x20\x6c\x6f\x73\x73" 32980 "\x6c\x65\x73\x73\x20\x63\x6f\x6d\x70\x72\x65\x73\x73" 32981 "\x69\x6f\x6e\x20\x61\x6c\x67\x6f\x72\x69\x74\x68\x6d" 32982 "\x2c\x20\x70\x72\x6f\x76\x69\x64\x69\x6e\x67\x21\x00" 32983 "\xf0\x21\x73\x70\x65\x65\x64\x20\x61\x74\x20\x34\x30" 32984 "\x30\x20\x4d\x42\x2f\x73\x20\x70\x65\x72\x20\x63\x6f" 32985 "\x72\x65\x2c\x20\x73\x63\x61\x6c\x61\x62\x6c\x65\x20" 32986 "\x77\x69\x74\x68\x20\x6d\x75\x6c\x74\x69\x2d\x1a\x00" 32987 "\xf0\x00\x73\x20\x43\x50\x55\x2e\x20\x49\x74\x20\x66" 32988 "\x65\x61\x74\x75\x11\x00\xf2\x0b\x61\x6e\x20\x65\x78" 32989 "\x74\x72\x65\x6d\x65\x6c\x79\x20\x66\x61\x73\x74\x20" 32990 "\x64\x65\x63\x6f\x64\x65\x72\x2c\x3d\x00\x02\x67\x00" 32991 "\x22\x69\x6e\x46\x00\x5a\x70\x6c\x65\x20\x47\x6c\x00" 32992 "\xf0\x00\x74\x79\x70\x69\x63\x61\x6c\x6c\x79\x20\x72" 32993 "\x65\x61\x63\x68\xa7\x00\x33\x52\x41\x4d\x38\x00\x83" 32994 "\x6c\x69\x6d\x69\x74\x73\x20\x6f\x3f\x00\x01\x85\x00" 32995 "\x90\x20\x73\x79\x73\x74\x65\x6d\x73\x2e", 32996 32997 }, 32998 }; 32999 33000 static const struct comp_testvec lz4_decomp_tv_template[] = { 33001 { 33002 .inlen = 218, 33003 .outlen = 255, 33004 .input = "\xf9\x21\x4c\x5a\x34\x20\x69\x73\x20\x6c\x6f\x73\x73" 33005 "\x6c\x65\x73\x73\x20\x63\x6f\x6d\x70\x72\x65\x73\x73" 33006 "\x69\x6f\x6e\x20\x61\x6c\x67\x6f\x72\x69\x74\x68\x6d" 33007 "\x2c\x20\x70\x72\x6f\x76\x69\x64\x69\x6e\x67\x21\x00" 33008 "\xf0\x21\x73\x70\x65\x65\x64\x20\x61\x74\x20\x34\x30" 33009 "\x30\x20\x4d\x42\x2f\x73\x20\x70\x65\x72\x20\x63\x6f" 33010 "\x72\x65\x2c\x20\x73\x63\x61\x6c\x61\x62\x6c\x65\x20" 33011 "\x77\x69\x74\x68\x20\x6d\x75\x6c\x74\x69\x2d\x1a\x00" 33012 "\xf0\x00\x73\x20\x43\x50\x55\x2e\x20\x49\x74\x20\x66" 33013 "\x65\x61\x74\x75\x11\x00\xf2\x0b\x61\x6e\x20\x65\x78" 33014 "\x74\x72\x65\x6d\x65\x6c\x79\x20\x66\x61\x73\x74\x20" 33015 "\x64\x65\x63\x6f\x64\x65\x72\x2c\x3d\x00\x02\x67\x00" 33016 "\x22\x69\x6e\x46\x00\x5a\x70\x6c\x65\x20\x47\x6c\x00" 33017 "\xf0\x00\x74\x79\x70\x69\x63\x61\x6c\x6c\x79\x20\x72" 33018 "\x65\x61\x63\x68\xa7\x00\x33\x52\x41\x4d\x38\x00\x83" 33019 "\x6c\x69\x6d\x69\x74\x73\x20\x6f\x3f\x00\x01\x85\x00" 33020 "\x90\x20\x73\x79\x73\x74\x65\x6d\x73\x2e", 33021 .output = "LZ4 is lossless compression algorithm, providing" 33022 " compression speed at 400 MB/s per core, scalable " 33023 "with multi-cores CPU. It features an extremely fast " 33024 "decoder, with speed in multiple GB/s per core, " 33025 "typically reaching RAM speed limits on multi-core " 33026 "systems.", 33027 }, 33028 }; 33029 33030 static const struct comp_testvec lz4hc_comp_tv_template[] = { 33031 { 33032 .inlen = 255, 33033 .outlen = 216, 33034 .input = "LZ4 is lossless compression algorithm, providing" 33035 " compression speed at 400 MB/s per core, scalable " 33036 "with multi-cores CPU. It features an extremely fast " 33037 "decoder, with speed in multiple GB/s per core, " 33038 "typically reaching RAM speed limits on multi-core " 33039 "systems.", 33040 .output = "\xf9\x21\x4c\x5a\x34\x20\x69\x73\x20\x6c\x6f\x73\x73" 33041 "\x6c\x65\x73\x73\x20\x63\x6f\x6d\x70\x72\x65\x73\x73" 33042 "\x69\x6f\x6e\x20\x61\x6c\x67\x6f\x72\x69\x74\x68\x6d" 33043 "\x2c\x20\x70\x72\x6f\x76\x69\x64\x69\x6e\x67\x21\x00" 33044 "\xf0\x21\x73\x70\x65\x65\x64\x20\x61\x74\x20\x34\x30" 33045 "\x30\x20\x4d\x42\x2f\x73\x20\x70\x65\x72\x20\x63\x6f" 33046 "\x72\x65\x2c\x20\x73\x63\x61\x6c\x61\x62\x6c\x65\x20" 33047 "\x77\x69\x74\x68\x20\x6d\x75\x6c\x74\x69\x2d\x1a\x00" 33048 "\xf0\x00\x73\x20\x43\x50\x55\x2e\x20\x49\x74\x20\x66" 33049 "\x65\x61\x74\x75\x11\x00\xf2\x0b\x61\x6e\x20\x65\x78" 33050 "\x74\x72\x65\x6d\x65\x6c\x79\x20\x66\x61\x73\x74\x20" 33051 "\x64\x65\x63\x6f\x64\x65\x72\x2c\x3d\x00\x02\x67\x00" 33052 "\x22\x69\x6e\x46\x00\x5a\x70\x6c\x65\x20\x47\x6c\x00" 33053 "\xf0\x00\x74\x79\x70\x69\x63\x61\x6c\x6c\x79\x20\x72" 33054 "\x65\x61\x63\x68\xa7\x00\x33\x52\x41\x4d\x38\x00\x97" 33055 "\x6c\x69\x6d\x69\x74\x73\x20\x6f\x6e\x85\x00\x90\x20" 33056 "\x73\x79\x73\x74\x65\x6d\x73\x2e", 33057 33058 }, 33059 }; 33060 33061 static const struct comp_testvec lz4hc_decomp_tv_template[] = { 33062 { 33063 .inlen = 216, 33064 .outlen = 255, 33065 .input = "\xf9\x21\x4c\x5a\x34\x20\x69\x73\x20\x6c\x6f\x73\x73" 33066 "\x6c\x65\x73\x73\x20\x63\x6f\x6d\x70\x72\x65\x73\x73" 33067 "\x69\x6f\x6e\x20\x61\x6c\x67\x6f\x72\x69\x74\x68\x6d" 33068 "\x2c\x20\x70\x72\x6f\x76\x69\x64\x69\x6e\x67\x21\x00" 33069 "\xf0\x21\x73\x70\x65\x65\x64\x20\x61\x74\x20\x34\x30" 33070 "\x30\x20\x4d\x42\x2f\x73\x20\x70\x65\x72\x20\x63\x6f" 33071 "\x72\x65\x2c\x20\x73\x63\x61\x6c\x61\x62\x6c\x65\x20" 33072 "\x77\x69\x74\x68\x20\x6d\x75\x6c\x74\x69\x2d\x1a\x00" 33073 "\xf0\x00\x73\x20\x43\x50\x55\x2e\x20\x49\x74\x20\x66" 33074 "\x65\x61\x74\x75\x11\x00\xf2\x0b\x61\x6e\x20\x65\x78" 33075 "\x74\x72\x65\x6d\x65\x6c\x79\x20\x66\x61\x73\x74\x20" 33076 "\x64\x65\x63\x6f\x64\x65\x72\x2c\x3d\x00\x02\x67\x00" 33077 "\x22\x69\x6e\x46\x00\x5a\x70\x6c\x65\x20\x47\x6c\x00" 33078 "\xf0\x00\x74\x79\x70\x69\x63\x61\x6c\x6c\x79\x20\x72" 33079 "\x65\x61\x63\x68\xa7\x00\x33\x52\x41\x4d\x38\x00\x97" 33080 "\x6c\x69\x6d\x69\x74\x73\x20\x6f\x6e\x85\x00\x90\x20" 33081 "\x73\x79\x73\x74\x65\x6d\x73\x2e", 33082 .output = "LZ4 is lossless compression algorithm, providing" 33083 " compression speed at 400 MB/s per core, scalable " 33084 "with multi-cores CPU. It features an extremely fast " 33085 "decoder, with speed in multiple GB/s per core, " 33086 "typically reaching RAM speed limits on multi-core " 33087 "systems.", 33088 }, 33089 }; 33090 33091 static const struct comp_testvec zstd_comp_tv_template[] = { 33092 { 33093 .inlen = 68, 33094 .outlen = 39, 33095 .input = "The algorithm is zstd. " 33096 "The algorithm is zstd. " 33097 "The algorithm is zstd.", 33098 .output = "\x28\xb5\x2f\xfd\x00\x50\xf5\x00\x00\xb8\x54\x68\x65" 33099 "\x20\x61\x6c\x67\x6f\x72\x69\x74\x68\x6d\x20\x69\x73" 33100 "\x20\x7a\x73\x74\x64\x2e\x20\x01\x00\x55\x73\x36\x01" 33101 , 33102 }, 33103 { 33104 .inlen = 244, 33105 .outlen = 151, 33106 .input = "zstd, short for Zstandard, is a fast lossless " 33107 "compression algorithm, targeting real-time " 33108 "compression scenarios at zlib-level and better " 33109 "compression ratios. The zstd compression library " 33110 "provides in-memory compression and decompression " 33111 "functions.", 33112 .output = "\x28\xb5\x2f\xfd\x00\x50\x75\x04\x00\x42\x4b\x1e\x17" 33113 "\x90\x81\x31\x00\xf2\x2f\xe4\x36\xc9\xef\x92\x88\x32" 33114 "\xc9\xf2\x24\x94\xd8\x68\x9a\x0f\x00\x0c\xc4\x31\x6f" 33115 "\x0d\x0c\x38\xac\x5c\x48\x03\xcd\x63\x67\xc0\xf3\xad" 33116 "\x4e\x90\xaa\x78\xa0\xa4\xc5\x99\xda\x2f\xb6\x24\x60" 33117 "\xe2\x79\x4b\xaa\xb6\x6b\x85\x0b\xc9\xc6\x04\x66\x86" 33118 "\xe2\xcc\xe2\x25\x3f\x4f\x09\xcd\xb8\x9d\xdb\xc1\x90" 33119 "\xa9\x11\xbc\x35\x44\x69\x2d\x9c\x64\x4f\x13\x31\x64" 33120 "\xcc\xfb\x4d\x95\x93\x86\x7f\x33\x7f\x1a\xef\xe9\x30" 33121 "\xf9\x67\xa1\x94\x0a\x69\x0f\x60\xcd\xc3\xab\x99\xdc" 33122 "\x42\xed\x97\x05\x00\x33\xc3\x15\x95\x3a\x06\xa0\x0e" 33123 "\x20\xa9\x0e\x82\xb9\x43\x45\x01", 33124 }, 33125 }; 33126 33127 static const struct comp_testvec zstd_decomp_tv_template[] = { 33128 { 33129 .inlen = 43, 33130 .outlen = 68, 33131 .input = "\x28\xb5\x2f\xfd\x04\x50\xf5\x00\x00\xb8\x54\x68\x65" 33132 "\x20\x61\x6c\x67\x6f\x72\x69\x74\x68\x6d\x20\x69\x73" 33133 "\x20\x7a\x73\x74\x64\x2e\x20\x01\x00\x55\x73\x36\x01" 33134 "\x6b\xf4\x13\x35", 33135 .output = "The algorithm is zstd. " 33136 "The algorithm is zstd. " 33137 "The algorithm is zstd.", 33138 }, 33139 { 33140 .inlen = 155, 33141 .outlen = 244, 33142 .input = "\x28\xb5\x2f\xfd\x04\x50\x75\x04\x00\x42\x4b\x1e\x17" 33143 "\x90\x81\x31\x00\xf2\x2f\xe4\x36\xc9\xef\x92\x88\x32" 33144 "\xc9\xf2\x24\x94\xd8\x68\x9a\x0f\x00\x0c\xc4\x31\x6f" 33145 "\x0d\x0c\x38\xac\x5c\x48\x03\xcd\x63\x67\xc0\xf3\xad" 33146 "\x4e\x90\xaa\x78\xa0\xa4\xc5\x99\xda\x2f\xb6\x24\x60" 33147 "\xe2\x79\x4b\xaa\xb6\x6b\x85\x0b\xc9\xc6\x04\x66\x86" 33148 "\xe2\xcc\xe2\x25\x3f\x4f\x09\xcd\xb8\x9d\xdb\xc1\x90" 33149 "\xa9\x11\xbc\x35\x44\x69\x2d\x9c\x64\x4f\x13\x31\x64" 33150 "\xcc\xfb\x4d\x95\x93\x86\x7f\x33\x7f\x1a\xef\xe9\x30" 33151 "\xf9\x67\xa1\x94\x0a\x69\x0f\x60\xcd\xc3\xab\x99\xdc" 33152 "\x42\xed\x97\x05\x00\x33\xc3\x15\x95\x3a\x06\xa0\x0e" 33153 "\x20\xa9\x0e\x82\xb9\x43\x45\x01\xaa\x6d\xda\x0d", 33154 .output = "zstd, short for Zstandard, is a fast lossless " 33155 "compression algorithm, targeting real-time " 33156 "compression scenarios at zlib-level and better " 33157 "compression ratios. The zstd compression library " 33158 "provides in-memory compression and decompression " 33159 "functions.", 33160 }, 33161 }; 33162 33163 /* based on aes_cbc_tv_template */ 33164 static const struct cipher_testvec essiv_aes_cbc_tv_template[] = { 33165 { 33166 .key = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b" 33167 "\x51\x2e\x03\xd5\x34\x12\x00\x06", 33168 .klen = 16, 33169 .iv = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30" 33170 "\x00\x00\x00\x00\x00\x00\x00\x00", 33171 .ptext = "Single block msg", 33172 .ctext = "\xfa\x59\xe7\x5f\x41\x56\x65\xc3" 33173 "\x36\xca\x6b\x72\x10\x9f\x8c\xd4", 33174 .len = 16, 33175 }, { 33176 .key = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0" 33177 "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a", 33178 .klen = 16, 33179 .iv = "\x56\x2e\x17\x99\x6d\x09\x3d\x28" 33180 "\x00\x00\x00\x00\x00\x00\x00\x00", 33181 .ptext = "\x00\x01\x02\x03\x04\x05\x06\x07" 33182 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 33183 "\x10\x11\x12\x13\x14\x15\x16\x17" 33184 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 33185 .ctext = "\xc8\x59\x9a\xfe\x79\xe6\x7b\x20" 33186 "\x06\x7d\x55\x0a\x5e\xc7\xb5\xa7" 33187 "\x0b\x9c\x80\xd2\x15\xa1\xb8\x6d" 33188 "\xc6\xab\x7b\x65\xd9\xfd\x88\xeb", 33189 .len = 32, 33190 }, { 33191 .key = "\x8e\x73\xb0\xf7\xda\x0e\x64\x52" 33192 "\xc8\x10\xf3\x2b\x80\x90\x79\xe5" 33193 "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b", 33194 .klen = 24, 33195 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 33196 "\x00\x00\x00\x00\x00\x00\x00\x00", 33197 .ptext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 33198 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 33199 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 33200 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 33201 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 33202 "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 33203 "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 33204 "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 33205 .ctext = "\x96\x6d\xa9\x7a\x42\xe6\x01\xc7" 33206 "\x17\xfc\xa7\x41\xd3\x38\x0b\xe5" 33207 "\x51\x48\xf7\x7e\x5e\x26\xa9\xfe" 33208 "\x45\x72\x1c\xd9\xde\xab\xf3\x4d" 33209 "\x39\x47\xc5\x4f\x97\x3a\x55\x63" 33210 "\x80\x29\x64\x4c\x33\xe8\x21\x8a" 33211 "\x6a\xef\x6b\x6a\x8f\x43\xc0\xcb" 33212 "\xf0\xf3\x6e\x74\x54\x44\x92\x44", 33213 .len = 64, 33214 }, { 33215 .key = "\x60\x3d\xeb\x10\x15\xca\x71\xbe" 33216 "\x2b\x73\xae\xf0\x85\x7d\x77\x81" 33217 "\x1f\x35\x2c\x07\x3b\x61\x08\xd7" 33218 "\x2d\x98\x10\xa3\x09\x14\xdf\xf4", 33219 .klen = 32, 33220 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 33221 "\x00\x00\x00\x00\x00\x00\x00\x00", 33222 .ptext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 33223 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 33224 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 33225 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 33226 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 33227 "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 33228 "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 33229 "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 33230 .ctext = "\x24\x52\xf1\x48\x74\xd0\xa7\x93" 33231 "\x75\x9b\x63\x46\xc0\x1c\x1e\x17" 33232 "\x4d\xdc\x5b\x3a\x27\x93\x2a\x63" 33233 "\xf7\xf1\xc7\xb3\x54\x56\x5b\x50" 33234 "\xa3\x31\xa5\x8b\xd6\xfd\xb6\x3c" 33235 "\x8b\xf6\xf2\x45\x05\x0c\xc8\xbb" 33236 "\x32\x0b\x26\x1c\xe9\x8b\x02\xc0" 33237 "\xb2\x6f\x37\xa7\x5b\xa8\xa9\x42", 33238 .len = 64, 33239 }, { 33240 .key = "\xC9\x83\xA6\xC9\xEC\x0F\x32\x55" 33241 "\x0F\x32\x55\x78\x9B\xBE\x78\x9B" 33242 "\xBE\xE1\x04\x27\xE1\x04\x27\x4A" 33243 "\x6D\x90\x4A\x6D\x90\xB3\xD6\xF9", 33244 .klen = 32, 33245 .iv = "\xE7\x82\x1D\xB8\x53\x11\xAC\x47" 33246 "\x00\x00\x00\x00\x00\x00\x00\x00", 33247 .ptext = "\x50\xB9\x22\xAE\x17\x80\x0C\x75" 33248 "\xDE\x47\xD3\x3C\xA5\x0E\x9A\x03" 33249 "\x6C\xF8\x61\xCA\x33\xBF\x28\x91" 33250 "\x1D\x86\xEF\x58\xE4\x4D\xB6\x1F" 33251 "\xAB\x14\x7D\x09\x72\xDB\x44\xD0" 33252 "\x39\xA2\x0B\x97\x00\x69\xF5\x5E" 33253 "\xC7\x30\xBC\x25\x8E\x1A\x83\xEC" 33254 "\x55\xE1\x4A\xB3\x1C\xA8\x11\x7A" 33255 "\x06\x6F\xD8\x41\xCD\x36\x9F\x08" 33256 "\x94\xFD\x66\xF2\x5B\xC4\x2D\xB9" 33257 "\x22\x8B\x17\x80\xE9\x52\xDE\x47" 33258 "\xB0\x19\xA5\x0E\x77\x03\x6C\xD5" 33259 "\x3E\xCA\x33\x9C\x05\x91\xFA\x63" 33260 "\xEF\x58\xC1\x2A\xB6\x1F\x88\x14" 33261 "\x7D\xE6\x4F\xDB\x44\xAD\x16\xA2" 33262 "\x0B\x74\x00\x69\xD2\x3B\xC7\x30" 33263 "\x99\x02\x8E\xF7\x60\xEC\x55\xBE" 33264 "\x27\xB3\x1C\x85\x11\x7A\xE3\x4C" 33265 "\xD8\x41\xAA\x13\x9F\x08\x71\xFD" 33266 "\x66\xCF\x38\xC4\x2D\x96\x22\x8B" 33267 "\xF4\x5D\xE9\x52\xBB\x24\xB0\x19" 33268 "\x82\x0E\x77\xE0\x49\xD5\x3E\xA7" 33269 "\x10\x9C\x05\x6E\xFA\x63\xCC\x35" 33270 "\xC1\x2A\x93\x1F\x88\xF1\x5A\xE6" 33271 "\x4F\xB8\x21\xAD\x16\x7F\x0B\x74" 33272 "\xDD\x46\xD2\x3B\xA4\x0D\x99\x02" 33273 "\x6B\xF7\x60\xC9\x32\xBE\x27\x90" 33274 "\x1C\x85\xEE\x57\xE3\x4C\xB5\x1E" 33275 "\xAA\x13\x7C\x08\x71\xDA\x43\xCF" 33276 "\x38\xA1\x0A\x96\xFF\x68\xF4\x5D" 33277 "\xC6\x2F\xBB\x24\x8D\x19\x82\xEB" 33278 "\x54\xE0\x49\xB2\x1B\xA7\x10\x79" 33279 "\x05\x6E\xD7\x40\xCC\x35\x9E\x07" 33280 "\x93\xFC\x65\xF1\x5A\xC3\x2C\xB8" 33281 "\x21\x8A\x16\x7F\xE8\x51\xDD\x46" 33282 "\xAF\x18\xA4\x0D\x76\x02\x6B\xD4" 33283 "\x3D\xC9\x32\x9B\x04\x90\xF9\x62" 33284 "\xEE\x57\xC0\x29\xB5\x1E\x87\x13" 33285 "\x7C\xE5\x4E\xDA\x43\xAC\x15\xA1" 33286 "\x0A\x73\xFF\x68\xD1\x3A\xC6\x2F" 33287 "\x98\x01\x8D\xF6\x5F\xEB\x54\xBD" 33288 "\x26\xB2\x1B\x84\x10\x79\xE2\x4B" 33289 "\xD7\x40\xA9\x12\x9E\x07\x70\xFC" 33290 "\x65\xCE\x37\xC3\x2C\x95\x21\x8A" 33291 "\xF3\x5C\xE8\x51\xBA\x23\xAF\x18" 33292 "\x81\x0D\x76\xDF\x48\xD4\x3D\xA6" 33293 "\x0F\x9B\x04\x6D\xF9\x62\xCB\x34" 33294 "\xC0\x29\x92\x1E\x87\xF0\x59\xE5" 33295 "\x4E\xB7\x20\xAC\x15\x7E\x0A\x73" 33296 "\xDC\x45\xD1\x3A\xA3\x0C\x98\x01" 33297 "\x6A\xF6\x5F\xC8\x31\xBD\x26\x8F" 33298 "\x1B\x84\xED\x56\xE2\x4B\xB4\x1D" 33299 "\xA9\x12\x7B\x07\x70\xD9\x42\xCE" 33300 "\x37\xA0\x09\x95\xFE\x67\xF3\x5C" 33301 "\xC5\x2E\xBA\x23\x8C\x18\x81\xEA" 33302 "\x53\xDF\x48\xB1\x1A\xA6\x0F\x78" 33303 "\x04\x6D\xD6\x3F\xCB\x34\x9D\x06" 33304 "\x92\xFB\x64\xF0\x59\xC2\x2B\xB7" 33305 "\x20\x89\x15\x7E\xE7\x50\xDC\x45" 33306 "\xAE\x17\xA3\x0C\x75\x01\x6A\xD3" 33307 "\x3C\xC8\x31\x9A\x03\x8F\xF8\x61" 33308 "\xED\x56\xBF\x28\xB4\x1D\x86\x12", 33309 .ctext = "\x97\x7f\x69\x0f\x0f\x34\xa6\x33" 33310 "\x66\x49\x7e\xd0\x4d\x1b\xc9\x64" 33311 "\xf9\x61\x95\x98\x11\x00\x88\xf8" 33312 "\x2e\x88\x01\x0f\x2b\xe1\xae\x3e" 33313 "\xfe\xd6\x47\x30\x11\x68\x7d\x99" 33314 "\xad\x69\x6a\xe8\x41\x5f\x1e\x16" 33315 "\x00\x3a\x47\xdf\x8e\x7d\x23\x1c" 33316 "\x19\x5b\x32\x76\x60\x03\x05\xc1" 33317 "\xa0\xff\xcf\xcc\x74\x39\x46\x63" 33318 "\xfe\x5f\xa6\x35\xa7\xb4\xc1\xf9" 33319 "\x4b\x5e\x38\xcc\x8c\xc1\xa2\xcf" 33320 "\x9a\xc3\xae\x55\x42\x46\x93\xd9" 33321 "\xbd\x22\xd3\x8a\x19\x96\xc3\xb3" 33322 "\x7d\x03\x18\xf9\x45\x09\x9c\xc8" 33323 "\x90\xf3\x22\xb3\x25\x83\x9a\x75" 33324 "\xbb\x04\x48\x97\x3a\x63\x08\x04" 33325 "\xa0\x69\xf6\x52\xd4\x89\x93\x69" 33326 "\xb4\x33\xa2\x16\x58\xec\x4b\x26" 33327 "\x76\x54\x10\x0b\x6e\x53\x1e\xbc" 33328 "\x16\x18\x42\xb1\xb1\xd3\x4b\xda" 33329 "\x06\x9f\x8b\x77\xf7\xab\xd6\xed" 33330 "\xa3\x1d\x90\xda\x49\x38\x20\xb8" 33331 "\x6c\xee\xae\x3e\xae\x6c\x03\xb8" 33332 "\x0b\xed\xc8\xaa\x0e\xc5\x1f\x90" 33333 "\x60\xe2\xec\x1b\x76\xd0\xcf\xda" 33334 "\x29\x1b\xb8\x5a\xbc\xf4\xba\x13" 33335 "\x91\xa6\xcb\x83\x3f\xeb\xe9\x7b" 33336 "\x03\xba\x40\x9e\xe6\x7a\xb2\x4a" 33337 "\x73\x49\xfc\xed\xfb\x55\xa4\x24" 33338 "\xc7\xa4\xd7\x4b\xf5\xf7\x16\x62" 33339 "\x80\xd3\x19\x31\x52\x25\xa8\x69" 33340 "\xda\x9a\x87\xf5\xf2\xee\x5d\x61" 33341 "\xc1\x12\x72\x3e\x52\x26\x45\x3a" 33342 "\xd8\x9d\x57\xfa\x14\xe2\x9b\x2f" 33343 "\xd4\xaa\x5e\x31\xf4\x84\x89\xa4" 33344 "\xe3\x0e\xb0\x58\x41\x75\x6a\xcb" 33345 "\x30\x01\x98\x90\x15\x80\xf5\x27" 33346 "\x92\x13\x81\xf0\x1c\x1e\xfc\xb1" 33347 "\x33\xf7\x63\xb0\x67\xec\x2e\x5c" 33348 "\x85\xe3\x5b\xd0\x43\x8a\xb8\x5f" 33349 "\x44\x9f\xec\x19\xc9\x8f\xde\xdf" 33350 "\x79\xef\xf8\xee\x14\x87\xb3\x34" 33351 "\x76\x00\x3a\x9b\xc7\xed\xb1\x3d" 33352 "\xef\x07\xb0\xe4\xfd\x68\x9e\xeb" 33353 "\xc2\xb4\x1a\x85\x9a\x7d\x11\x88" 33354 "\xf8\xab\x43\x55\x2b\x8a\x4f\x60" 33355 "\x85\x9a\xf4\xba\xae\x48\x81\xeb" 33356 "\x93\x07\x97\x9e\xde\x2a\xfc\x4e" 33357 "\x31\xde\xaa\x44\xf7\x2a\xc3\xee" 33358 "\x60\xa2\x98\x2c\x0a\x88\x50\xc5" 33359 "\x6d\x89\xd3\xe4\xb6\xa7\xf4\xb0" 33360 "\xcf\x0e\x89\xe3\x5e\x8f\x82\xf4" 33361 "\x9d\xd1\xa9\x51\x50\x8a\xd2\x18" 33362 "\x07\xb2\xaa\x3b\x7f\x58\x9b\xf4" 33363 "\xb7\x24\x39\xd3\x66\x2f\x1e\xc0" 33364 "\x11\xa3\x56\x56\x2a\x10\x73\xbc" 33365 "\xe1\x23\xbf\xa9\x37\x07\x9c\xc3" 33366 "\xb2\xc9\xa8\x1c\x5b\x5c\x58\xa4" 33367 "\x77\x02\x26\xad\xc3\x40\x11\x53" 33368 "\x93\x68\x72\xde\x05\x8b\x10\xbc" 33369 "\xa6\xd4\x1b\xd9\x27\xd8\x16\x12" 33370 "\x61\x2b\x31\x2a\x44\x87\x96\x58", 33371 .len = 496, 33372 }, 33373 }; 33374 33375 /* based on hmac_sha256_aes_cbc_tv_temp */ 33376 static const struct aead_testvec essiv_hmac_sha256_aes_cbc_tv_temp[] = { 33377 { 33378 #ifdef __LITTLE_ENDIAN 33379 .key = "\x08\x00" /* rta length */ 33380 "\x01\x00" /* rta type */ 33381 #else 33382 .key = "\x00\x08" /* rta length */ 33383 "\x00\x01" /* rta type */ 33384 #endif 33385 "\x00\x00\x00\x10" /* enc key length */ 33386 "\x00\x00\x00\x00\x00\x00\x00\x00" 33387 "\x00\x00\x00\x00\x00\x00\x00\x00" 33388 "\x00\x00\x00\x00\x00\x00\x00\x00" 33389 "\x00\x00\x00\x00\x00\x00\x00\x00" 33390 "\x06\xa9\x21\x40\x36\xb8\xa1\x5b" 33391 "\x51\x2e\x03\xd5\x34\x12\x00\x06", 33392 .klen = 8 + 32 + 16, 33393 .iv = "\xb3\x0c\x5a\x11\x41\xad\xc1\x04" 33394 "\xbc\x1e\x7e\x35\xb0\x5d\x78\x29", 33395 .assoc = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30" 33396 "\xb4\x22\xda\x80\x2c\x9f\xac\x41", 33397 .alen = 16, 33398 .ptext = "Single block msg", 33399 .plen = 16, 33400 .ctext = "\xe3\x53\x77\x9c\x10\x79\xae\xb8" 33401 "\x27\x08\x94\x2d\xbe\x77\x18\x1a" 33402 "\xcc\xde\x2d\x6a\xae\xf1\x0b\xcc" 33403 "\x38\x06\x38\x51\xb4\xb8\xf3\x5b" 33404 "\x5c\x34\xa6\xa3\x6e\x0b\x05\xe5" 33405 "\x6a\x6d\x44\xaa\x26\xa8\x44\xa5", 33406 .clen = 16 + 32, 33407 }, { 33408 #ifdef __LITTLE_ENDIAN 33409 .key = "\x08\x00" /* rta length */ 33410 "\x01\x00" /* rta type */ 33411 #else 33412 .key = "\x00\x08" /* rta length */ 33413 "\x00\x01" /* rta type */ 33414 #endif 33415 "\x00\x00\x00\x10" /* enc key length */ 33416 "\x20\x21\x22\x23\x24\x25\x26\x27" 33417 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 33418 "\x30\x31\x32\x33\x34\x35\x36\x37" 33419 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 33420 "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0" 33421 "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a", 33422 .klen = 8 + 32 + 16, 33423 .iv = "\x56\xe8\x14\xa5\x74\x18\x75\x13" 33424 "\x2f\x79\xe7\xc8\x65\xe3\x48\x45", 33425 .assoc = "\x56\x2e\x17\x99\x6d\x09\x3d\x28" 33426 "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58", 33427 .alen = 16, 33428 .ptext = "\x00\x01\x02\x03\x04\x05\x06\x07" 33429 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 33430 "\x10\x11\x12\x13\x14\x15\x16\x17" 33431 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 33432 .plen = 32, 33433 .ctext = "\xd2\x96\xcd\x94\xc2\xcc\xcf\x8a" 33434 "\x3a\x86\x30\x28\xb5\xe1\xdc\x0a" 33435 "\x75\x86\x60\x2d\x25\x3c\xff\xf9" 33436 "\x1b\x82\x66\xbe\xa6\xd6\x1a\xb1" 33437 "\xf5\x33\x53\xf3\x68\x85\x2a\x99" 33438 "\x0e\x06\x58\x8f\xba\xf6\x06\xda" 33439 "\x49\x69\x0d\x5b\xd4\x36\x06\x62" 33440 "\x35\x5e\x54\x58\x53\x4d\xdf\xbf", 33441 .clen = 32 + 32, 33442 }, { 33443 #ifdef __LITTLE_ENDIAN 33444 .key = "\x08\x00" /* rta length */ 33445 "\x01\x00" /* rta type */ 33446 #else 33447 .key = "\x00\x08" /* rta length */ 33448 "\x00\x01" /* rta type */ 33449 #endif 33450 "\x00\x00\x00\x10" /* enc key length */ 33451 "\x11\x22\x33\x44\x55\x66\x77\x88" 33452 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 33453 "\x22\x33\x44\x55\x66\x77\x88\x99" 33454 "\xaa\xbb\xcc\xdd\xee\xff\x11\x22" 33455 "\x6c\x3e\xa0\x47\x76\x30\xce\x21" 33456 "\xa2\xce\x33\x4a\xa7\x46\xc2\xcd", 33457 .klen = 8 + 32 + 16, 33458 .iv = "\x1f\x6b\xfb\xd6\x6b\x72\x2f\xc9" 33459 "\xb6\x9f\x8c\x10\xa8\x96\x15\x64", 33460 .assoc = "\xc7\x82\xdc\x4c\x09\x8c\x66\xcb" 33461 "\xd9\xcd\x27\xd8\x25\x68\x2c\x81", 33462 .alen = 16, 33463 .ptext = "This is a 48-byte message (exactly 3 AES blocks)", 33464 .plen = 48, 33465 .ctext = "\xd0\xa0\x2b\x38\x36\x45\x17\x53" 33466 "\xd4\x93\x66\x5d\x33\xf0\xe8\x86" 33467 "\x2d\xea\x54\xcd\xb2\x93\xab\xc7" 33468 "\x50\x69\x39\x27\x67\x72\xf8\xd5" 33469 "\x02\x1c\x19\x21\x6b\xad\x52\x5c" 33470 "\x85\x79\x69\x5d\x83\xba\x26\x84" 33471 "\x68\xb9\x3e\x90\x38\xa0\x88\x01" 33472 "\xe7\xc6\xce\x10\x31\x2f\x9b\x1d" 33473 "\x24\x78\xfb\xbe\x02\xe0\x4f\x40" 33474 "\x10\xbd\xaa\xc6\xa7\x79\xe0\x1a", 33475 .clen = 48 + 32, 33476 }, { 33477 #ifdef __LITTLE_ENDIAN 33478 .key = "\x08\x00" /* rta length */ 33479 "\x01\x00" /* rta type */ 33480 #else 33481 .key = "\x00\x08" /* rta length */ 33482 "\x00\x01" /* rta type */ 33483 #endif 33484 "\x00\x00\x00\x10" /* enc key length */ 33485 "\x11\x22\x33\x44\x55\x66\x77\x88" 33486 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 33487 "\x22\x33\x44\x55\x66\x77\x88\x99" 33488 "\xaa\xbb\xcc\xdd\xee\xff\x11\x22" 33489 "\x56\xe4\x7a\x38\xc5\x59\x89\x74" 33490 "\xbc\x46\x90\x3d\xba\x29\x03\x49", 33491 .klen = 8 + 32 + 16, 33492 .iv = "\x13\xe5\xf2\xef\x61\x97\x59\x35" 33493 "\x9b\x36\x84\x46\x4e\x63\xd1\x41", 33494 .assoc = "\x8c\xe8\x2e\xef\xbe\xa0\xda\x3c" 33495 "\x44\x69\x9e\xd7\xdb\x51\xb7\xd9", 33496 .alen = 16, 33497 .ptext = "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 33498 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 33499 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 33500 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 33501 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 33502 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 33503 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 33504 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf", 33505 .plen = 64, 33506 .ctext = "\xc3\x0e\x32\xff\xed\xc0\x77\x4e" 33507 "\x6a\xff\x6a\xf0\x86\x9f\x71\xaa" 33508 "\x0f\x3a\xf0\x7a\x9a\x31\xa9\xc6" 33509 "\x84\xdb\x20\x7e\xb0\xef\x8e\x4e" 33510 "\x35\x90\x7a\xa6\x32\xc3\xff\xdf" 33511 "\x86\x8b\xb7\xb2\x9d\x3d\x46\xad" 33512 "\x83\xce\x9f\x9a\x10\x2e\xe9\x9d" 33513 "\x49\xa5\x3e\x87\xf4\xc3\xda\x55" 33514 "\x7a\x1b\xd4\x3c\xdb\x17\x95\xe2" 33515 "\xe0\x93\xec\xc9\x9f\xf7\xce\xd8" 33516 "\x3f\x54\xe2\x49\x39\xe3\x71\x25" 33517 "\x2b\x6c\xe9\x5d\xec\xec\x2b\x64", 33518 .clen = 64 + 32, 33519 }, { 33520 #ifdef __LITTLE_ENDIAN 33521 .key = "\x08\x00" /* rta length */ 33522 "\x01\x00" /* rta type */ 33523 #else 33524 .key = "\x00\x08" /* rta length */ 33525 "\x00\x01" /* rta type */ 33526 #endif 33527 "\x00\x00\x00\x10" /* enc key length */ 33528 "\x11\x22\x33\x44\x55\x66\x77\x88" 33529 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 33530 "\x22\x33\x44\x55\x66\x77\x88\x99" 33531 "\xaa\xbb\xcc\xdd\xee\xff\x11\x22" 33532 "\x90\xd3\x82\xb4\x10\xee\xba\x7a" 33533 "\xd9\x38\xc4\x6c\xec\x1a\x82\xbf", 33534 .klen = 8 + 32 + 16, 33535 .iv = "\xe4\x13\xa1\x15\xe9\x6b\xb8\x23" 33536 "\x81\x7a\x94\x29\xab\xfd\xd2\x2c", 33537 .assoc = "\x00\x00\x43\x21\x00\x00\x00\x01" 33538 "\xe9\x6e\x8c\x08\xab\x46\x57\x63" 33539 "\xfd\x09\x8d\x45\xdd\x3f\xf8\x93", 33540 .alen = 24, 33541 .ptext = "\x08\x00\x0e\xbd\xa7\x0a\x00\x00" 33542 "\x8e\x9c\x08\x3d\xb9\x5b\x07\x00" 33543 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 33544 "\x10\x11\x12\x13\x14\x15\x16\x17" 33545 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 33546 "\x20\x21\x22\x23\x24\x25\x26\x27" 33547 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 33548 "\x30\x31\x32\x33\x34\x35\x36\x37" 33549 "\x01\x02\x03\x04\x05\x06\x07\x08" 33550 "\x09\x0a\x0b\x0c\x0d\x0e\x0e\x01", 33551 .plen = 80, 33552 .ctext = "\xf6\x63\xc2\x5d\x32\x5c\x18\xc6" 33553 "\xa9\x45\x3e\x19\x4e\x12\x08\x49" 33554 "\xa4\x87\x0b\x66\xcc\x6b\x99\x65" 33555 "\x33\x00\x13\xb4\x89\x8d\xc8\x56" 33556 "\xa4\x69\x9e\x52\x3a\x55\xdb\x08" 33557 "\x0b\x59\xec\x3a\x8e\x4b\x7e\x52" 33558 "\x77\x5b\x07\xd1\xdb\x34\xed\x9c" 33559 "\x53\x8a\xb5\x0c\x55\x1b\x87\x4a" 33560 "\xa2\x69\xad\xd0\x47\xad\x2d\x59" 33561 "\x13\xac\x19\xb7\xcf\xba\xd4\xa6" 33562 "\xbb\xd4\x0f\xbe\xa3\x3b\x4c\xb8" 33563 "\x3a\xd2\xe1\x03\x86\xa5\x59\xb7" 33564 "\x73\xc3\x46\x20\x2c\xb1\xef\x68" 33565 "\xbb\x8a\x32\x7e\x12\x8c\x69\xcf", 33566 .clen = 80 + 32, 33567 }, { 33568 #ifdef __LITTLE_ENDIAN 33569 .key = "\x08\x00" /* rta length */ 33570 "\x01\x00" /* rta type */ 33571 #else 33572 .key = "\x00\x08" /* rta length */ 33573 "\x00\x01" /* rta type */ 33574 #endif 33575 "\x00\x00\x00\x18" /* enc key length */ 33576 "\x11\x22\x33\x44\x55\x66\x77\x88" 33577 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 33578 "\x22\x33\x44\x55\x66\x77\x88\x99" 33579 "\xaa\xbb\xcc\xdd\xee\xff\x11\x22" 33580 "\x8e\x73\xb0\xf7\xda\x0e\x64\x52" 33581 "\xc8\x10\xf3\x2b\x80\x90\x79\xe5" 33582 "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b", 33583 .klen = 8 + 32 + 24, 33584 .iv = "\x49\xca\x41\xc9\x6b\xbf\x6c\x98" 33585 "\x38\x2f\xa7\x3d\x4d\x80\x49\xb0", 33586 .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07" 33587 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 33588 .alen = 16, 33589 .ptext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 33590 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 33591 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 33592 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 33593 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 33594 "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 33595 "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 33596 "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 33597 .plen = 64, 33598 .ctext = "\x4f\x02\x1d\xb2\x43\xbc\x63\x3d" 33599 "\x71\x78\x18\x3a\x9f\xa0\x71\xe8" 33600 "\xb4\xd9\xad\xa9\xad\x7d\xed\xf4" 33601 "\xe5\xe7\x38\x76\x3f\x69\x14\x5a" 33602 "\x57\x1b\x24\x20\x12\xfb\x7a\xe0" 33603 "\x7f\xa9\xba\xac\x3d\xf1\x02\xe0" 33604 "\x08\xb0\xe2\x79\x88\x59\x88\x81" 33605 "\xd9\x20\xa9\xe6\x4f\x56\x15\xcd" 33606 "\x2f\xee\x5f\xdb\x66\xfe\x79\x09" 33607 "\x61\x81\x31\xea\x5b\x3d\x8e\xfb" 33608 "\xca\x71\x85\x93\xf7\x85\x55\x8b" 33609 "\x7a\xe4\x94\xca\x8b\xba\x19\x33", 33610 .clen = 64 + 32, 33611 }, { 33612 #ifdef __LITTLE_ENDIAN 33613 .key = "\x08\x00" /* rta length */ 33614 "\x01\x00" /* rta type */ 33615 #else 33616 .key = "\x00\x08" /* rta length */ 33617 "\x00\x01" /* rta type */ 33618 #endif 33619 "\x00\x00\x00\x20" /* enc key length */ 33620 "\x11\x22\x33\x44\x55\x66\x77\x88" 33621 "\x99\xaa\xbb\xcc\xdd\xee\xff\x11" 33622 "\x22\x33\x44\x55\x66\x77\x88\x99" 33623 "\xaa\xbb\xcc\xdd\xee\xff\x11\x22" 33624 "\x60\x3d\xeb\x10\x15\xca\x71\xbe" 33625 "\x2b\x73\xae\xf0\x85\x7d\x77\x81" 33626 "\x1f\x35\x2c\x07\x3b\x61\x08\xd7" 33627 "\x2d\x98\x10\xa3\x09\x14\xdf\xf4", 33628 .klen = 8 + 32 + 32, 33629 .iv = "\xdf\xab\xf2\x7c\xdc\xe0\x33\x4c" 33630 "\xf9\x75\xaf\xf9\x2f\x60\x3a\x9b", 33631 .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07" 33632 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 33633 .alen = 16, 33634 .ptext = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 33635 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 33636 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 33637 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 33638 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 33639 "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 33640 "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 33641 "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 33642 .plen = 64, 33643 .ctext = "\xf5\x8c\x4c\x04\xd6\xe5\xf1\xba" 33644 "\x77\x9e\xab\xfb\x5f\x7b\xfb\xd6" 33645 "\x9c\xfc\x4e\x96\x7e\xdb\x80\x8d" 33646 "\x67\x9f\x77\x7b\xc6\x70\x2c\x7d" 33647 "\x39\xf2\x33\x69\xa9\xd9\xba\xcf" 33648 "\xa5\x30\xe2\x63\x04\x23\x14\x61" 33649 "\xb2\xeb\x05\xe2\xc3\x9b\xe9\xfc" 33650 "\xda\x6c\x19\x07\x8c\x6a\x9d\x1b" 33651 "\x24\x29\xed\xc2\x31\x49\xdb\xb1" 33652 "\x8f\x74\xbd\x17\x92\x03\xbe\x8f" 33653 "\xf3\x61\xde\x1c\xe9\xdb\xcd\xd0" 33654 "\xcc\xce\xe9\x85\x57\xcf\x6f\x5f", 33655 .clen = 64 + 32, 33656 }, 33657 }; 33658 33659 static const char blake2_ordered_sequence[] = 33660 "\x00\x01\x02\x03\x04\x05\x06\x07" 33661 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 33662 "\x10\x11\x12\x13\x14\x15\x16\x17" 33663 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 33664 "\x20\x21\x22\x23\x24\x25\x26\x27" 33665 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 33666 "\x30\x31\x32\x33\x34\x35\x36\x37" 33667 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 33668 "\x40\x41\x42\x43\x44\x45\x46\x47" 33669 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 33670 "\x50\x51\x52\x53\x54\x55\x56\x57" 33671 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 33672 "\x60\x61\x62\x63\x64\x65\x66\x67" 33673 "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 33674 "\x70\x71\x72\x73\x74\x75\x76\x77" 33675 "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 33676 "\x80\x81\x82\x83\x84\x85\x86\x87" 33677 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 33678 "\x90\x91\x92\x93\x94\x95\x96\x97" 33679 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 33680 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 33681 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 33682 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 33683 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 33684 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 33685 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 33686 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 33687 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 33688 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 33689 "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 33690 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 33691 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"; 33692 33693 static const struct hash_testvec blake2b_160_tv_template[] = {{ 33694 .digest = (u8[]){ 0x33, 0x45, 0x52, 0x4a, 0xbf, 0x6b, 0xbe, 0x18, 33695 0x09, 0x44, 0x92, 0x24, 0xb5, 0x97, 0x2c, 0x41, 33696 0x79, 0x0b, 0x6c, 0xf2, }, 33697 }, { 33698 .plaintext = blake2_ordered_sequence, 33699 .psize = 64, 33700 .digest = (u8[]){ 0x11, 0xcc, 0x66, 0x61, 0xe9, 0x22, 0xb0, 0xe4, 33701 0x07, 0xe0, 0xa5, 0x72, 0x49, 0xc3, 0x8d, 0x4f, 33702 0xf7, 0x6d, 0x8e, 0xc8, }, 33703 }, { 33704 .ksize = 32, 33705 .key = blake2_ordered_sequence, 33706 .plaintext = blake2_ordered_sequence, 33707 .psize = 1, 33708 .digest = (u8[]){ 0x31, 0xe3, 0xd9, 0xd5, 0x4e, 0x72, 0xd8, 0x0b, 33709 0x2b, 0x3b, 0xd7, 0x6b, 0x82, 0x7a, 0x1d, 0xfb, 33710 0x56, 0x2f, 0x79, 0x4c, }, 33711 }, { 33712 .ksize = 64, 33713 .key = blake2_ordered_sequence, 33714 .plaintext = blake2_ordered_sequence, 33715 .psize = 7, 33716 .digest = (u8[]){ 0x28, 0x20, 0xd1, 0xbe, 0x7f, 0xcc, 0xc1, 0x62, 33717 0xd9, 0x0d, 0x9a, 0x4b, 0x47, 0xd1, 0x5e, 0x04, 33718 0x74, 0x2a, 0x53, 0x17, }, 33719 }, { 33720 .ksize = 1, 33721 .key = "B", 33722 .plaintext = blake2_ordered_sequence, 33723 .psize = 15, 33724 .digest = (u8[]){ 0x45, 0xe9, 0x95, 0xb6, 0xc4, 0xe8, 0x22, 0xea, 33725 0xfe, 0xd2, 0x37, 0xdb, 0x46, 0xbf, 0xf1, 0x25, 33726 0xd5, 0x03, 0x1d, 0x81, }, 33727 }, { 33728 .ksize = 32, 33729 .key = blake2_ordered_sequence, 33730 .plaintext = blake2_ordered_sequence, 33731 .psize = 247, 33732 .digest = (u8[]){ 0x7e, 0xb9, 0xf2, 0x9b, 0x2f, 0xc2, 0x01, 0xd4, 33733 0xb0, 0x4f, 0x08, 0x2b, 0x8e, 0xbd, 0x06, 0xef, 33734 0x1c, 0xc4, 0x25, 0x95, }, 33735 }, { 33736 .ksize = 64, 33737 .key = blake2_ordered_sequence, 33738 .plaintext = blake2_ordered_sequence, 33739 .psize = 256, 33740 .digest = (u8[]){ 0x6e, 0x35, 0x01, 0x70, 0xbf, 0xb6, 0xc4, 0xba, 33741 0x33, 0x1b, 0xa6, 0xd3, 0xc2, 0x5d, 0xb4, 0x03, 33742 0x95, 0xaf, 0x29, 0x16, }, 33743 }}; 33744 33745 static const struct hash_testvec blake2b_256_tv_template[] = {{ 33746 .plaintext = blake2_ordered_sequence, 33747 .psize = 7, 33748 .digest = (u8[]){ 0x9d, 0xf1, 0x4b, 0x72, 0x48, 0x76, 0x4a, 0x86, 33749 0x91, 0x97, 0xc3, 0x5e, 0x39, 0x2d, 0x2a, 0x6d, 33750 0x6f, 0xdc, 0x5b, 0x79, 0xd5, 0x97, 0x29, 0x79, 33751 0x20, 0xfd, 0x3f, 0x14, 0x91, 0xb4, 0x42, 0xd2, }, 33752 }, { 33753 .plaintext = blake2_ordered_sequence, 33754 .psize = 256, 33755 .digest = (u8[]){ 0x39, 0xa7, 0xeb, 0x9f, 0xed, 0xc1, 0x9a, 0xab, 33756 0xc8, 0x34, 0x25, 0xc6, 0x75, 0x5d, 0xd9, 0x0e, 33757 0x6f, 0x9d, 0x0c, 0x80, 0x49, 0x64, 0xa1, 0xf4, 33758 0xaa, 0xee, 0xa3, 0xb9, 0xfb, 0x59, 0x98, 0x35, }, 33759 }, { 33760 .ksize = 1, 33761 .key = "B", 33762 .digest = (u8[]){ 0xc3, 0x08, 0xb1, 0xbf, 0xe4, 0xf9, 0xbc, 0xb4, 33763 0x75, 0xaf, 0x3f, 0x59, 0x6e, 0xae, 0xde, 0x6a, 33764 0xa3, 0x8e, 0xb5, 0x94, 0xad, 0x30, 0xf0, 0x17, 33765 0x1c, 0xfb, 0xd8, 0x3e, 0x8a, 0xbe, 0xed, 0x9c, }, 33766 }, { 33767 .ksize = 64, 33768 .key = blake2_ordered_sequence, 33769 .plaintext = blake2_ordered_sequence, 33770 .psize = 1, 33771 .digest = (u8[]){ 0x34, 0x75, 0x8b, 0x64, 0x71, 0x35, 0x62, 0x82, 33772 0x97, 0xfb, 0x09, 0xc7, 0x93, 0x0c, 0xd0, 0x4e, 33773 0x95, 0x28, 0xe5, 0x66, 0x91, 0x12, 0xf5, 0xb1, 33774 0x31, 0x84, 0x93, 0xe1, 0x4d, 0xe7, 0x7e, 0x55, }, 33775 }, { 33776 .ksize = 32, 33777 .key = blake2_ordered_sequence, 33778 .plaintext = blake2_ordered_sequence, 33779 .psize = 15, 33780 .digest = (u8[]){ 0xce, 0x74, 0xa9, 0x2e, 0xe9, 0x40, 0x3d, 0xa2, 33781 0x11, 0x4a, 0x99, 0x25, 0x7a, 0x34, 0x5d, 0x35, 33782 0xdf, 0x6a, 0x48, 0x79, 0x2a, 0x93, 0x93, 0xff, 33783 0x1f, 0x3c, 0x39, 0xd0, 0x71, 0x1f, 0x20, 0x7b, }, 33784 }, { 33785 .ksize = 1, 33786 .key = "B", 33787 .plaintext = blake2_ordered_sequence, 33788 .psize = 64, 33789 .digest = (u8[]){ 0x2e, 0x84, 0xdb, 0xa2, 0x5f, 0x0e, 0xe9, 0x52, 33790 0x79, 0x50, 0x69, 0x9f, 0xf1, 0xfd, 0xfc, 0x9d, 33791 0x89, 0x83, 0xa9, 0xb6, 0xa4, 0xd5, 0xfa, 0xb5, 33792 0xbe, 0x35, 0x1a, 0x17, 0x8a, 0x2c, 0x7f, 0x7d, }, 33793 }, { 33794 .ksize = 64, 33795 .key = blake2_ordered_sequence, 33796 .plaintext = blake2_ordered_sequence, 33797 .psize = 247, 33798 .digest = (u8[]){ 0x2e, 0x26, 0xf0, 0x09, 0x02, 0x65, 0x90, 0x09, 33799 0xcc, 0xf5, 0x4c, 0x44, 0x74, 0x0e, 0xa0, 0xa8, 33800 0x25, 0x4a, 0xda, 0x61, 0x56, 0x95, 0x7d, 0x3f, 33801 0x6d, 0xc0, 0x43, 0x17, 0x95, 0x89, 0xcd, 0x9d, }, 33802 }}; 33803 33804 static const struct hash_testvec blake2b_384_tv_template[] = {{ 33805 .plaintext = blake2_ordered_sequence, 33806 .psize = 1, 33807 .digest = (u8[]){ 0xcc, 0x01, 0x08, 0x85, 0x36, 0xf7, 0x84, 0xf0, 33808 0xbb, 0x76, 0x9e, 0x41, 0xc4, 0x95, 0x7b, 0x6d, 33809 0x0c, 0xde, 0x1f, 0xcc, 0x8c, 0xf1, 0xd9, 0x1f, 33810 0xc4, 0x77, 0xd4, 0xdd, 0x6e, 0x3f, 0xbf, 0xcd, 33811 0x43, 0xd1, 0x69, 0x8d, 0x14, 0x6f, 0x34, 0x8b, 33812 0x2c, 0x36, 0xa3, 0x39, 0x68, 0x2b, 0xec, 0x3f, }, 33813 }, { 33814 .plaintext = blake2_ordered_sequence, 33815 .psize = 247, 33816 .digest = (u8[]){ 0xc8, 0xf8, 0xf0, 0xa2, 0x69, 0xfa, 0xcc, 0x4d, 33817 0x32, 0x5f, 0x13, 0x88, 0xca, 0x71, 0x99, 0x8f, 33818 0xf7, 0x30, 0x41, 0x5d, 0x6e, 0x34, 0xb7, 0x6e, 33819 0x3e, 0xd0, 0x46, 0xb6, 0xca, 0x30, 0x66, 0xb2, 33820 0x6f, 0x0c, 0x35, 0x54, 0x17, 0xcd, 0x26, 0x1b, 33821 0xef, 0x48, 0x98, 0xe0, 0x56, 0x7c, 0x05, 0xd2, }, 33822 }, { 33823 .ksize = 32, 33824 .key = blake2_ordered_sequence, 33825 .digest = (u8[]){ 0x15, 0x09, 0x7a, 0x90, 0x13, 0x23, 0xab, 0x0c, 33826 0x0b, 0x43, 0x21, 0x9a, 0xb5, 0xc6, 0x0c, 0x2e, 33827 0x7c, 0x57, 0xfc, 0xcc, 0x4b, 0x0f, 0xf0, 0x57, 33828 0xb7, 0x9c, 0xe7, 0x0f, 0xe1, 0x57, 0xac, 0x37, 33829 0x77, 0xd4, 0xf4, 0x2f, 0x03, 0x3b, 0x64, 0x09, 33830 0x84, 0xa0, 0xb3, 0x24, 0xb7, 0xae, 0x47, 0x5e, }, 33831 }, { 33832 .ksize = 1, 33833 .key = "B", 33834 .plaintext = blake2_ordered_sequence, 33835 .psize = 7, 33836 .digest = (u8[]){ 0x0b, 0x82, 0x88, 0xca, 0x05, 0x2f, 0x1b, 0x15, 33837 0xdc, 0xbb, 0x22, 0x27, 0x11, 0x6b, 0xf4, 0xd1, 33838 0xe9, 0x8f, 0x1b, 0x0b, 0x58, 0x3f, 0x5e, 0x86, 33839 0x80, 0x82, 0x6f, 0x8e, 0x54, 0xc1, 0x9f, 0x12, 33840 0xcf, 0xe9, 0x56, 0xc1, 0xfc, 0x1a, 0x08, 0xb9, 33841 0x4a, 0x57, 0x0a, 0x76, 0x3c, 0x15, 0x33, 0x18, }, 33842 }, { 33843 .ksize = 64, 33844 .key = blake2_ordered_sequence, 33845 .plaintext = blake2_ordered_sequence, 33846 .psize = 15, 33847 .digest = (u8[]){ 0x4a, 0x81, 0x55, 0xb9, 0x79, 0x42, 0x8c, 0xc6, 33848 0x4f, 0xfe, 0xca, 0x82, 0x3b, 0xb2, 0xf7, 0xbc, 33849 0x5e, 0xfc, 0xab, 0x09, 0x1c, 0xd6, 0x3b, 0xe1, 33850 0x50, 0x82, 0x3b, 0xde, 0xc7, 0x06, 0xee, 0x3b, 33851 0x29, 0xce, 0xe5, 0x68, 0xe0, 0xff, 0xfa, 0xe1, 33852 0x7a, 0xf1, 0xc0, 0xfe, 0x57, 0xf4, 0x60, 0x49, }, 33853 }, { 33854 .ksize = 32, 33855 .key = blake2_ordered_sequence, 33856 .plaintext = blake2_ordered_sequence, 33857 .psize = 64, 33858 .digest = (u8[]){ 0x34, 0xbd, 0xe1, 0x99, 0x43, 0x9f, 0x82, 0x72, 33859 0xe7, 0xed, 0x94, 0x9e, 0xe1, 0x84, 0xee, 0x82, 33860 0xfd, 0x26, 0x23, 0xc4, 0x17, 0x8d, 0xf5, 0x04, 33861 0xeb, 0xb7, 0xbc, 0xb8, 0xf3, 0x68, 0xb7, 0xad, 33862 0x94, 0x8e, 0x05, 0x3f, 0x8a, 0x5d, 0x8d, 0x81, 33863 0x3e, 0x88, 0xa7, 0x8c, 0xa2, 0xd5, 0xdc, 0x76, }, 33864 }, { 33865 .ksize = 1, 33866 .key = "B", 33867 .plaintext = blake2_ordered_sequence, 33868 .psize = 256, 33869 .digest = (u8[]){ 0x22, 0x14, 0xf4, 0xb0, 0x4c, 0xa8, 0xb5, 0x7d, 33870 0xa7, 0x5c, 0x04, 0xeb, 0xd8, 0x8d, 0x04, 0x71, 33871 0xc7, 0x3c, 0xc7, 0x6e, 0x8b, 0x20, 0x36, 0x40, 33872 0x9d, 0xd0, 0x60, 0xc6, 0xe3, 0x0b, 0x6e, 0x50, 33873 0xf5, 0xaf, 0xf5, 0xc6, 0x3b, 0xe3, 0x84, 0x6a, 33874 0x93, 0x1b, 0x12, 0xd6, 0x18, 0x27, 0xba, 0x36, }, 33875 }}; 33876 33877 static const struct hash_testvec blake2b_512_tv_template[] = {{ 33878 .plaintext = blake2_ordered_sequence, 33879 .psize = 15, 33880 .digest = (u8[]){ 0x44, 0x4b, 0x24, 0x0f, 0xe3, 0xed, 0x86, 0xd0, 33881 0xe2, 0xef, 0x4c, 0xe7, 0xd8, 0x51, 0xed, 0xde, 33882 0x22, 0x15, 0x55, 0x82, 0xaa, 0x09, 0x14, 0x79, 33883 0x7b, 0x72, 0x6c, 0xd0, 0x58, 0xb6, 0xf4, 0x59, 33884 0x32, 0xe0, 0xe1, 0x29, 0x51, 0x68, 0x76, 0x52, 33885 0x7b, 0x1d, 0xd8, 0x8f, 0xc6, 0x6d, 0x71, 0x19, 33886 0xf4, 0xab, 0x3b, 0xed, 0x93, 0xa6, 0x1a, 0x0e, 33887 0x2d, 0x2d, 0x2a, 0xea, 0xc3, 0x36, 0xd9, 0x58, }, 33888 }, { 33889 .ksize = 64, 33890 .key = blake2_ordered_sequence, 33891 .digest = (u8[]){ 0x10, 0xeb, 0xb6, 0x77, 0x00, 0xb1, 0x86, 0x8e, 33892 0xfb, 0x44, 0x17, 0x98, 0x7a, 0xcf, 0x46, 0x90, 33893 0xae, 0x9d, 0x97, 0x2f, 0xb7, 0xa5, 0x90, 0xc2, 33894 0xf0, 0x28, 0x71, 0x79, 0x9a, 0xaa, 0x47, 0x86, 33895 0xb5, 0xe9, 0x96, 0xe8, 0xf0, 0xf4, 0xeb, 0x98, 33896 0x1f, 0xc2, 0x14, 0xb0, 0x05, 0xf4, 0x2d, 0x2f, 33897 0xf4, 0x23, 0x34, 0x99, 0x39, 0x16, 0x53, 0xdf, 33898 0x7a, 0xef, 0xcb, 0xc1, 0x3f, 0xc5, 0x15, 0x68, }, 33899 }, { 33900 .ksize = 1, 33901 .key = "B", 33902 .plaintext = blake2_ordered_sequence, 33903 .psize = 1, 33904 .digest = (u8[]){ 0xd2, 0x11, 0x31, 0x29, 0x3f, 0xea, 0xca, 0x72, 33905 0x21, 0xe4, 0x06, 0x65, 0x05, 0x2a, 0xd1, 0x02, 33906 0xc0, 0x8d, 0x7b, 0xf1, 0x09, 0x3c, 0xef, 0x88, 33907 0xe1, 0x68, 0x0c, 0xf1, 0x3b, 0xa4, 0xe3, 0x03, 33908 0xed, 0xa0, 0xe3, 0x60, 0x58, 0xa0, 0xdb, 0x52, 33909 0x8a, 0x66, 0x43, 0x09, 0x60, 0x1a, 0xbb, 0x67, 33910 0xc5, 0x84, 0x31, 0x40, 0xfa, 0xde, 0xc1, 0xd0, 33911 0xff, 0x3f, 0x4a, 0x69, 0xd9, 0x92, 0x26, 0x86, }, 33912 }, { 33913 .ksize = 32, 33914 .key = blake2_ordered_sequence, 33915 .plaintext = blake2_ordered_sequence, 33916 .psize = 7, 33917 .digest = (u8[]){ 0xa3, 0x3e, 0x50, 0xbc, 0xfb, 0xd9, 0xf0, 0x82, 33918 0xa6, 0xd1, 0xdf, 0xaf, 0x82, 0xd0, 0xcf, 0x84, 33919 0x9a, 0x25, 0x3c, 0xae, 0x6d, 0xb5, 0xaf, 0x01, 33920 0xd7, 0xaf, 0xed, 0x50, 0xdc, 0xe2, 0xba, 0xcc, 33921 0x8c, 0x38, 0xf5, 0x16, 0x89, 0x38, 0x86, 0xce, 33922 0x68, 0x10, 0x63, 0x64, 0xa5, 0x79, 0x53, 0xb5, 33923 0x2e, 0x8e, 0xbc, 0x0a, 0xce, 0x95, 0xc0, 0x1e, 33924 0x69, 0x59, 0x1d, 0x3b, 0xd8, 0x19, 0x90, 0xd7, }, 33925 }, { 33926 .ksize = 64, 33927 .key = blake2_ordered_sequence, 33928 .plaintext = blake2_ordered_sequence, 33929 .psize = 64, 33930 .digest = (u8[]){ 0x65, 0x67, 0x6d, 0x80, 0x06, 0x17, 0x97, 0x2f, 33931 0xbd, 0x87, 0xe4, 0xb9, 0x51, 0x4e, 0x1c, 0x67, 33932 0x40, 0x2b, 0x7a, 0x33, 0x10, 0x96, 0xd3, 0xbf, 33933 0xac, 0x22, 0xf1, 0xab, 0xb9, 0x53, 0x74, 0xab, 33934 0xc9, 0x42, 0xf1, 0x6e, 0x9a, 0xb0, 0xea, 0xd3, 33935 0x3b, 0x87, 0xc9, 0x19, 0x68, 0xa6, 0xe5, 0x09, 33936 0xe1, 0x19, 0xff, 0x07, 0x78, 0x7b, 0x3e, 0xf4, 33937 0x83, 0xe1, 0xdc, 0xdc, 0xcf, 0x6e, 0x30, 0x22, }, 33938 }, { 33939 .ksize = 1, 33940 .key = "B", 33941 .plaintext = blake2_ordered_sequence, 33942 .psize = 247, 33943 .digest = (u8[]){ 0xc2, 0x96, 0x2c, 0x6b, 0x84, 0xff, 0xee, 0xea, 33944 0x9b, 0xb8, 0x55, 0x2d, 0x6b, 0xa5, 0xd5, 0xe5, 33945 0xbd, 0xb1, 0x54, 0xb6, 0x1e, 0xfb, 0x63, 0x16, 33946 0x6e, 0x22, 0x04, 0xf0, 0x82, 0x7a, 0xc6, 0x99, 33947 0xf7, 0x4c, 0xff, 0x93, 0x71, 0x57, 0x64, 0xd0, 33948 0x08, 0x60, 0x39, 0x98, 0xb8, 0xd2, 0x2b, 0x4e, 33949 0x81, 0x8d, 0xe4, 0x8f, 0xb2, 0x1e, 0x8f, 0x99, 33950 0x98, 0xf1, 0x02, 0x9b, 0x4c, 0x7c, 0x97, 0x1a, }, 33951 }, { 33952 .ksize = 32, 33953 .key = blake2_ordered_sequence, 33954 .plaintext = blake2_ordered_sequence, 33955 .psize = 256, 33956 .digest = (u8[]){ 0x0f, 0x32, 0x05, 0x09, 0xad, 0x9f, 0x25, 0xf7, 33957 0xf2, 0x00, 0x71, 0xc9, 0x9f, 0x08, 0x58, 0xd1, 33958 0x67, 0xc3, 0xa6, 0x2c, 0x0d, 0xe5, 0x7c, 0x15, 33959 0x35, 0x18, 0x5a, 0x68, 0xc1, 0xca, 0x1c, 0x6e, 33960 0x0f, 0xc4, 0xf6, 0x0c, 0x43, 0xe1, 0xb4, 0x3d, 33961 0x28, 0xe4, 0xc7, 0xa1, 0xcf, 0x6b, 0x17, 0x4e, 33962 0xf1, 0x5b, 0xb5, 0x53, 0xd4, 0xa7, 0xd0, 0x5b, 33963 0xae, 0x15, 0x81, 0x15, 0xd0, 0x88, 0xa0, 0x3c, }, 33964 }}; 33965 33966 static const struct hash_testvec blakes2s_128_tv_template[] = {{ 33967 .digest = (u8[]){ 0x64, 0x55, 0x0d, 0x6f, 0xfe, 0x2c, 0x0a, 0x01, 33968 0xa1, 0x4a, 0xba, 0x1e, 0xad, 0xe0, 0x20, 0x0c, }, 33969 }, { 33970 .plaintext = blake2_ordered_sequence, 33971 .psize = 64, 33972 .digest = (u8[]){ 0xdc, 0x66, 0xca, 0x8f, 0x03, 0x86, 0x58, 0x01, 33973 0xb0, 0xff, 0xe0, 0x6e, 0xd8, 0xa1, 0xa9, 0x0e, }, 33974 }, { 33975 .ksize = 16, 33976 .key = blake2_ordered_sequence, 33977 .plaintext = blake2_ordered_sequence, 33978 .psize = 1, 33979 .digest = (u8[]){ 0x88, 0x1e, 0x42, 0xe7, 0xbb, 0x35, 0x80, 0x82, 33980 0x63, 0x7c, 0x0a, 0x0f, 0xd7, 0xec, 0x6c, 0x2f, }, 33981 }, { 33982 .ksize = 32, 33983 .key = blake2_ordered_sequence, 33984 .plaintext = blake2_ordered_sequence, 33985 .psize = 7, 33986 .digest = (u8[]){ 0xcf, 0x9e, 0x07, 0x2a, 0xd5, 0x22, 0xf2, 0xcd, 33987 0xa2, 0xd8, 0x25, 0x21, 0x80, 0x86, 0x73, 0x1c, }, 33988 }, { 33989 .ksize = 1, 33990 .key = "B", 33991 .plaintext = blake2_ordered_sequence, 33992 .psize = 15, 33993 .digest = (u8[]){ 0xf6, 0x33, 0x5a, 0x2c, 0x22, 0xa0, 0x64, 0xb2, 33994 0xb6, 0x3f, 0xeb, 0xbc, 0xd1, 0xc3, 0xe5, 0xb2, }, 33995 }, { 33996 .ksize = 16, 33997 .key = blake2_ordered_sequence, 33998 .plaintext = blake2_ordered_sequence, 33999 .psize = 247, 34000 .digest = (u8[]){ 0x72, 0x66, 0x49, 0x60, 0xf9, 0x4a, 0xea, 0xbe, 34001 0x1f, 0xf4, 0x60, 0xce, 0xb7, 0x81, 0xcb, 0x09, }, 34002 }, { 34003 .ksize = 32, 34004 .key = blake2_ordered_sequence, 34005 .plaintext = blake2_ordered_sequence, 34006 .psize = 256, 34007 .digest = (u8[]){ 0xd5, 0xa4, 0x0e, 0xc3, 0x16, 0xc7, 0x51, 0xa6, 34008 0x3c, 0xd0, 0xd9, 0x11, 0x57, 0xfa, 0x1e, 0xbb, }, 34009 }}; 34010 34011 static const struct hash_testvec blakes2s_160_tv_template[] = {{ 34012 .plaintext = blake2_ordered_sequence, 34013 .psize = 7, 34014 .digest = (u8[]){ 0xb4, 0xf2, 0x03, 0x49, 0x37, 0xed, 0xb1, 0x3e, 34015 0x5b, 0x2a, 0xca, 0x64, 0x82, 0x74, 0xf6, 0x62, 34016 0xe3, 0xf2, 0x84, 0xff, }, 34017 }, { 34018 .plaintext = blake2_ordered_sequence, 34019 .psize = 256, 34020 .digest = (u8[]){ 0xaa, 0x56, 0x9b, 0xdc, 0x98, 0x17, 0x75, 0xf2, 34021 0xb3, 0x68, 0x83, 0xb7, 0x9b, 0x8d, 0x48, 0xb1, 34022 0x9b, 0x2d, 0x35, 0x05, }, 34023 }, { 34024 .ksize = 1, 34025 .key = "B", 34026 .digest = (u8[]){ 0x50, 0x16, 0xe7, 0x0c, 0x01, 0xd0, 0xd3, 0xc3, 34027 0xf4, 0x3e, 0xb1, 0x6e, 0x97, 0xa9, 0x4e, 0xd1, 34028 0x79, 0x65, 0x32, 0x93, }, 34029 }, { 34030 .ksize = 32, 34031 .key = blake2_ordered_sequence, 34032 .plaintext = blake2_ordered_sequence, 34033 .psize = 1, 34034 .digest = (u8[]){ 0x1c, 0x2b, 0xcd, 0x9a, 0x68, 0xca, 0x8c, 0x71, 34035 0x90, 0x29, 0x6c, 0x54, 0xfa, 0x56, 0x4a, 0xef, 34036 0xa2, 0x3a, 0x56, 0x9c, }, 34037 }, { 34038 .ksize = 16, 34039 .key = blake2_ordered_sequence, 34040 .plaintext = blake2_ordered_sequence, 34041 .psize = 15, 34042 .digest = (u8[]){ 0x36, 0xc3, 0x5f, 0x9a, 0xdc, 0x7e, 0xbf, 0x19, 34043 0x68, 0xaa, 0xca, 0xd8, 0x81, 0xbf, 0x09, 0x34, 34044 0x83, 0x39, 0x0f, 0x30, }, 34045 }, { 34046 .ksize = 1, 34047 .key = "B", 34048 .plaintext = blake2_ordered_sequence, 34049 .psize = 64, 34050 .digest = (u8[]){ 0x86, 0x80, 0x78, 0xa4, 0x14, 0xec, 0x03, 0xe5, 34051 0xb6, 0x9a, 0x52, 0x0e, 0x42, 0xee, 0x39, 0x9d, 34052 0xac, 0xa6, 0x81, 0x63, }, 34053 }, { 34054 .ksize = 32, 34055 .key = blake2_ordered_sequence, 34056 .plaintext = blake2_ordered_sequence, 34057 .psize = 247, 34058 .digest = (u8[]){ 0x2d, 0xd8, 0xd2, 0x53, 0x66, 0xfa, 0xa9, 0x01, 34059 0x1c, 0x9c, 0xaf, 0xa3, 0xe2, 0x9d, 0x9b, 0x10, 34060 0x0a, 0xf6, 0x73, 0xe8, }, 34061 }}; 34062 34063 static const struct hash_testvec blakes2s_224_tv_template[] = {{ 34064 .plaintext = blake2_ordered_sequence, 34065 .psize = 1, 34066 .digest = (u8[]){ 0x61, 0xb9, 0x4e, 0xc9, 0x46, 0x22, 0xa3, 0x91, 34067 0xd2, 0xae, 0x42, 0xe6, 0x45, 0x6c, 0x90, 0x12, 34068 0xd5, 0x80, 0x07, 0x97, 0xb8, 0x86, 0x5a, 0xfc, 34069 0x48, 0x21, 0x97, 0xbb, }, 34070 }, { 34071 .plaintext = blake2_ordered_sequence, 34072 .psize = 247, 34073 .digest = (u8[]){ 0x9e, 0xda, 0xc7, 0x20, 0x2c, 0xd8, 0x48, 0x2e, 34074 0x31, 0x94, 0xab, 0x46, 0x6d, 0x94, 0xd8, 0xb4, 34075 0x69, 0xcd, 0xae, 0x19, 0x6d, 0x9e, 0x41, 0xcc, 34076 0x2b, 0xa4, 0xd5, 0xf6, }, 34077 }, { 34078 .ksize = 16, 34079 .key = blake2_ordered_sequence, 34080 .digest = (u8[]){ 0x32, 0xc0, 0xac, 0xf4, 0x3b, 0xd3, 0x07, 0x9f, 34081 0xbe, 0xfb, 0xfa, 0x4d, 0x6b, 0x4e, 0x56, 0xb3, 34082 0xaa, 0xd3, 0x27, 0xf6, 0x14, 0xbf, 0xb9, 0x32, 34083 0xa7, 0x19, 0xfc, 0xb8, }, 34084 }, { 34085 .ksize = 1, 34086 .key = "B", 34087 .plaintext = blake2_ordered_sequence, 34088 .psize = 7, 34089 .digest = (u8[]){ 0x73, 0xad, 0x5e, 0x6d, 0xb9, 0x02, 0x8e, 0x76, 34090 0xf2, 0x66, 0x42, 0x4b, 0x4c, 0xfa, 0x1f, 0xe6, 34091 0x2e, 0x56, 0x40, 0xe5, 0xa2, 0xb0, 0x3c, 0xe8, 34092 0x7b, 0x45, 0xfe, 0x05, }, 34093 }, { 34094 .ksize = 32, 34095 .key = blake2_ordered_sequence, 34096 .plaintext = blake2_ordered_sequence, 34097 .psize = 15, 34098 .digest = (u8[]){ 0x16, 0x60, 0xfb, 0x92, 0x54, 0xb3, 0x6e, 0x36, 34099 0x81, 0xf4, 0x16, 0x41, 0xc3, 0x3d, 0xd3, 0x43, 34100 0x84, 0xed, 0x10, 0x6f, 0x65, 0x80, 0x7a, 0x3e, 34101 0x25, 0xab, 0xc5, 0x02, }, 34102 }, { 34103 .ksize = 16, 34104 .key = blake2_ordered_sequence, 34105 .plaintext = blake2_ordered_sequence, 34106 .psize = 64, 34107 .digest = (u8[]){ 0xca, 0xaa, 0x39, 0x67, 0x9c, 0xf7, 0x6b, 0xc7, 34108 0xb6, 0x82, 0xca, 0x0e, 0x65, 0x36, 0x5b, 0x7c, 34109 0x24, 0x00, 0xfa, 0x5f, 0xda, 0x06, 0x91, 0x93, 34110 0x6a, 0x31, 0x83, 0xb5, }, 34111 }, { 34112 .ksize = 1, 34113 .key = "B", 34114 .plaintext = blake2_ordered_sequence, 34115 .psize = 256, 34116 .digest = (u8[]){ 0x90, 0x02, 0x26, 0xb5, 0x06, 0x9c, 0x36, 0x86, 34117 0x94, 0x91, 0x90, 0x1e, 0x7d, 0x2a, 0x71, 0xb2, 34118 0x48, 0xb5, 0xe8, 0x16, 0xfd, 0x64, 0x33, 0x45, 34119 0xb3, 0xd7, 0xec, 0xcc, }, 34120 }}; 34121 34122 static const struct hash_testvec blakes2s_256_tv_template[] = {{ 34123 .plaintext = blake2_ordered_sequence, 34124 .psize = 15, 34125 .digest = (u8[]){ 0xd9, 0x7c, 0x82, 0x8d, 0x81, 0x82, 0xa7, 0x21, 34126 0x80, 0xa0, 0x6a, 0x78, 0x26, 0x83, 0x30, 0x67, 34127 0x3f, 0x7c, 0x4e, 0x06, 0x35, 0x94, 0x7c, 0x04, 34128 0xc0, 0x23, 0x23, 0xfd, 0x45, 0xc0, 0xa5, 0x2d, }, 34129 }, { 34130 .ksize = 32, 34131 .key = blake2_ordered_sequence, 34132 .digest = (u8[]){ 0x48, 0xa8, 0x99, 0x7d, 0xa4, 0x07, 0x87, 0x6b, 34133 0x3d, 0x79, 0xc0, 0xd9, 0x23, 0x25, 0xad, 0x3b, 34134 0x89, 0xcb, 0xb7, 0x54, 0xd8, 0x6a, 0xb7, 0x1a, 34135 0xee, 0x04, 0x7a, 0xd3, 0x45, 0xfd, 0x2c, 0x49, }, 34136 }, { 34137 .ksize = 1, 34138 .key = "B", 34139 .plaintext = blake2_ordered_sequence, 34140 .psize = 1, 34141 .digest = (u8[]){ 0x22, 0x27, 0xae, 0xaa, 0x6e, 0x81, 0x56, 0x03, 34142 0xa7, 0xe3, 0xa1, 0x18, 0xa5, 0x9a, 0x2c, 0x18, 34143 0xf4, 0x63, 0xbc, 0x16, 0x70, 0xf1, 0xe7, 0x4b, 34144 0x00, 0x6d, 0x66, 0x16, 0xae, 0x9e, 0x74, 0x4e, }, 34145 }, { 34146 .ksize = 16, 34147 .key = blake2_ordered_sequence, 34148 .plaintext = blake2_ordered_sequence, 34149 .psize = 7, 34150 .digest = (u8[]){ 0x58, 0x5d, 0xa8, 0x60, 0x1c, 0xa4, 0xd8, 0x03, 34151 0x86, 0x86, 0x84, 0x64, 0xd7, 0xa0, 0x8e, 0x15, 34152 0x2f, 0x05, 0xa2, 0x1b, 0xbc, 0xef, 0x7a, 0x34, 34153 0xb3, 0xc5, 0xbc, 0x4b, 0xf0, 0x32, 0xeb, 0x12, }, 34154 }, { 34155 .ksize = 32, 34156 .key = blake2_ordered_sequence, 34157 .plaintext = blake2_ordered_sequence, 34158 .psize = 64, 34159 .digest = (u8[]){ 0x89, 0x75, 0xb0, 0x57, 0x7f, 0xd3, 0x55, 0x66, 34160 0xd7, 0x50, 0xb3, 0x62, 0xb0, 0x89, 0x7a, 0x26, 34161 0xc3, 0x99, 0x13, 0x6d, 0xf0, 0x7b, 0xab, 0xab, 34162 0xbd, 0xe6, 0x20, 0x3f, 0xf2, 0x95, 0x4e, 0xd4, }, 34163 }, { 34164 .ksize = 1, 34165 .key = "B", 34166 .plaintext = blake2_ordered_sequence, 34167 .psize = 247, 34168 .digest = (u8[]){ 0x2e, 0x74, 0x1c, 0x1d, 0x03, 0xf4, 0x9d, 0x84, 34169 0x6f, 0xfc, 0x86, 0x32, 0x92, 0x49, 0x7e, 0x66, 34170 0xd7, 0xc3, 0x10, 0x88, 0xfe, 0x28, 0xb3, 0xe0, 34171 0xbf, 0x50, 0x75, 0xad, 0x8e, 0xa4, 0xe6, 0xb2, }, 34172 }, { 34173 .ksize = 16, 34174 .key = blake2_ordered_sequence, 34175 .plaintext = blake2_ordered_sequence, 34176 .psize = 256, 34177 .digest = (u8[]){ 0xb9, 0xd2, 0x81, 0x0e, 0x3a, 0xb1, 0x62, 0x9b, 34178 0xad, 0x44, 0x05, 0xf4, 0x92, 0x2e, 0x99, 0xc1, 34179 0x4a, 0x47, 0xbb, 0x5b, 0x6f, 0xb2, 0x96, 0xed, 34180 0xd5, 0x06, 0xb5, 0x3a, 0x7c, 0x7a, 0x65, 0x1d, }, 34181 }}; 34182 34183 #endif /* _CRYPTO_TESTMGR_H */ 34184