Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

crypto: cryptomgr - Add test infrastructure

This patch moves the newly created alg_test infrastructure into
cryptomgr. This shall allow us to use it for testing at algorithm
registrations.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

+10527 -10413
+4 -4
crypto/Kconfig
··· 40 40 41 41 config CRYPTO_MANAGER 42 42 tristate "Cryptographic algorithm manager" 43 - select CRYPTO_ALGAPI 43 + select CRYPTO_AEAD 44 + select CRYPTO_HASH 45 + select CRYPTO_BLKCIPHER 44 46 help 45 47 Create default cryptographic template instantiations such as 46 48 cbc(aes). ··· 87 85 config CRYPTO_TEST 88 86 tristate "Testing module" 89 87 depends on m 90 - select CRYPTO_ALGAPI 91 - select CRYPTO_AEAD 92 - select CRYPTO_BLKCIPHER 88 + select CRYPTO_MANAGER 93 89 help 94 90 Quick & dirty crypto test module. 95 91
+2
crypto/Makefile
··· 22 22 crypto_hash-objs += ahash.o 23 23 obj-$(CONFIG_CRYPTO_HASH) += crypto_hash.o 24 24 25 + cryptomgr-objs := algboss.o testmgr.o 26 + 25 27 obj-$(CONFIG_CRYPTO_MANAGER) += cryptomgr.o 26 28 obj-$(CONFIG_CRYPTO_HMAC) += hmac.o 27 29 obj-$(CONFIG_CRYPTO_XCBC) += xcbc.o
+18 -2
crypto/cryptomgr.c crypto/algboss.c
··· 206 206 207 207 static int __init cryptomgr_init(void) 208 208 { 209 - return crypto_register_notifier(&cryptomgr_notifier); 209 + int err; 210 + 211 + err = testmgr_init(); 212 + if (err) 213 + return err; 214 + 215 + err = crypto_register_notifier(&cryptomgr_notifier); 216 + if (err) 217 + goto free_testmgr; 218 + 219 + return 0; 220 + 221 + free_testmgr: 222 + testmgr_exit(); 223 + return err; 210 224 } 211 225 212 226 static void __exit cryptomgr_exit(void) 213 227 { 214 228 int err = crypto_unregister_notifier(&cryptomgr_notifier); 215 229 BUG_ON(err); 230 + 231 + testmgr_exit(); 216 232 } 217 233 218 - module_init(cryptomgr_init); 234 + subsys_initcall(cryptomgr_init); 219 235 module_exit(cryptomgr_exit); 220 236 221 237 MODULE_LICENSE("GPL");
+3
crypto/internal.h
··· 108 108 int crypto_register_notifier(struct notifier_block *nb); 109 109 int crypto_unregister_notifier(struct notifier_block *nb); 110 110 111 + int __init testmgr_init(void); 112 + void testmgr_exit(void); 113 + 111 114 static inline void crypto_alg_put(struct crypto_alg *alg) 112 115 { 113 116 if (atomic_dec_and_test(&alg->cra_refcnt) && alg->cra_destroy)
+8 -1700
crypto/tcrypt.c
··· 19 19 #include <linux/err.h> 20 20 #include <linux/init.h> 21 21 #include <linux/module.h> 22 - #include <linux/mm.h> 23 22 #include <linux/slab.h> 24 23 #include <linux/scatterlist.h> 25 24 #include <linux/string.h> 26 - #include <linux/crypto.h> 27 25 #include <linux/moduleparam.h> 28 26 #include <linux/jiffies.h> 29 27 #include <linux/timex.h> ··· 32 34 * Need slab memory for testing (size in number of pages). 33 35 */ 34 36 #define TVMEMSIZE 4 35 - #define XBUFSIZE 8 36 37 37 38 /* 38 - * Indexes into the xbuf to simulate cross-page access. 39 - */ 40 - #define IDX1 32 41 - #define IDX2 32400 42 - #define IDX3 1 43 - #define IDX4 8193 44 - #define IDX5 22222 45 - #define IDX6 17101 46 - #define IDX7 27333 47 - #define IDX8 3000 48 - 49 - /* 50 - * Used by test_cipher() 39 + * Used by test_cipher_speed() 51 40 */ 52 41 #define ENCRYPT 1 53 42 #define DECRYPT 0 54 - 55 - struct tcrypt_result { 56 - struct completion completion; 57 - int err; 58 - }; 59 - 60 - struct aead_test_suite { 61 - struct { 62 - struct aead_testvec *vecs; 63 - unsigned int count; 64 - } enc, dec; 65 - }; 66 - 67 - struct cipher_test_suite { 68 - struct { 69 - struct cipher_testvec *vecs; 70 - unsigned int count; 71 - } enc, dec; 72 - }; 73 - 74 - struct comp_test_suite { 75 - struct { 76 - struct comp_testvec *vecs; 77 - unsigned int count; 78 - } comp, decomp; 79 - }; 80 - 81 - struct hash_test_suite { 82 - struct hash_testvec *vecs; 83 - unsigned int count; 84 - }; 85 - 86 - struct alg_test_desc { 87 - const char *alg; 88 - int (*test)(const struct alg_test_desc *desc, const char *driver, 89 - u32 type, u32 mask); 90 - 91 - union { 92 - struct aead_test_suite aead; 93 - struct cipher_test_suite cipher; 94 - struct comp_test_suite comp; 95 - struct hash_test_suite hash; 96 - } suite; 97 - }; 98 - 99 - static unsigned int IDX[8] = { IDX1, IDX2, IDX3, IDX4, IDX5, IDX6, IDX7, IDX8 }; 100 43 101 44 /* 102 45 * Used by test_cipher_speed() ··· 45 106 static unsigned int sec; 46 107 47 108 static int mode; 48 - static char *xbuf[XBUFSIZE]; 49 - static char *axbuf[XBUFSIZE]; 50 109 static char *tvmem[TVMEMSIZE]; 51 110 52 111 static char *check[] = { ··· 55 118 "camellia", "seed", "salsa20", "rmd128", "rmd160", "rmd256", "rmd320", 56 119 "lzo", "cts", NULL 57 120 }; 58 - 59 - static void hexdump(unsigned char *buf, unsigned int len) 60 - { 61 - print_hex_dump(KERN_CONT, "", DUMP_PREFIX_OFFSET, 62 - 16, 1, 63 - buf, len, false); 64 - } 65 - 66 - static void tcrypt_complete(struct crypto_async_request *req, int err) 67 - { 68 - struct tcrypt_result *res = req->data; 69 - 70 - if (err == -EINPROGRESS) 71 - return; 72 - 73 - res->err = err; 74 - complete(&res->completion); 75 - } 76 - 77 - static int test_hash(struct crypto_ahash *tfm, struct hash_testvec *template, 78 - unsigned int tcount) 79 - { 80 - const char *algo = crypto_tfm_alg_driver_name(crypto_ahash_tfm(tfm)); 81 - unsigned int i, j, k, temp; 82 - struct scatterlist sg[8]; 83 - char result[64]; 84 - struct ahash_request *req; 85 - struct tcrypt_result tresult; 86 - int ret; 87 - void *hash_buff; 88 - 89 - init_completion(&tresult.completion); 90 - 91 - req = ahash_request_alloc(tfm, GFP_KERNEL); 92 - if (!req) { 93 - printk(KERN_ERR "alg: hash: Failed to allocate request for " 94 - "%s\n", algo); 95 - ret = -ENOMEM; 96 - goto out_noreq; 97 - } 98 - ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG, 99 - tcrypt_complete, &tresult); 100 - 101 - for (i = 0; i < tcount; i++) { 102 - memset(result, 0, 64); 103 - 104 - hash_buff = xbuf[0]; 105 - 106 - memcpy(hash_buff, template[i].plaintext, template[i].psize); 107 - sg_init_one(&sg[0], hash_buff, template[i].psize); 108 - 109 - if (template[i].ksize) { 110 - crypto_ahash_clear_flags(tfm, ~0); 111 - ret = crypto_ahash_setkey(tfm, template[i].key, 112 - template[i].ksize); 113 - if (ret) { 114 - printk(KERN_ERR "alg: hash: setkey failed on " 115 - "test %d for %s: ret=%d\n", i + 1, algo, 116 - -ret); 117 - goto out; 118 - } 119 - } 120 - 121 - ahash_request_set_crypt(req, sg, result, template[i].psize); 122 - ret = crypto_ahash_digest(req); 123 - switch (ret) { 124 - case 0: 125 - break; 126 - case -EINPROGRESS: 127 - case -EBUSY: 128 - ret = wait_for_completion_interruptible( 129 - &tresult.completion); 130 - if (!ret && !(ret = tresult.err)) { 131 - INIT_COMPLETION(tresult.completion); 132 - break; 133 - } 134 - /* fall through */ 135 - default: 136 - printk(KERN_ERR "alg: hash: digest failed on test %d " 137 - "for %s: ret=%d\n", i + 1, algo, -ret); 138 - goto out; 139 - } 140 - 141 - if (memcmp(result, template[i].digest, 142 - crypto_ahash_digestsize(tfm))) { 143 - printk(KERN_ERR "alg: hash: Test %d failed for %s\n", 144 - i + 1, algo); 145 - hexdump(result, crypto_ahash_digestsize(tfm)); 146 - ret = -EINVAL; 147 - goto out; 148 - } 149 - } 150 - 151 - j = 0; 152 - for (i = 0; i < tcount; i++) { 153 - if (template[i].np) { 154 - j++; 155 - memset(result, 0, 64); 156 - 157 - temp = 0; 158 - sg_init_table(sg, template[i].np); 159 - for (k = 0; k < template[i].np; k++) { 160 - sg_set_buf(&sg[k], 161 - memcpy(xbuf[IDX[k] >> PAGE_SHIFT] + 162 - offset_in_page(IDX[k]), 163 - template[i].plaintext + temp, 164 - template[i].tap[k]), 165 - template[i].tap[k]); 166 - temp += template[i].tap[k]; 167 - } 168 - 169 - if (template[i].ksize) { 170 - crypto_ahash_clear_flags(tfm, ~0); 171 - ret = crypto_ahash_setkey(tfm, template[i].key, 172 - template[i].ksize); 173 - 174 - if (ret) { 175 - printk(KERN_ERR "alg: hash: setkey " 176 - "failed on chunking test %d " 177 - "for %s: ret=%d\n", j, algo, 178 - -ret); 179 - goto out; 180 - } 181 - } 182 - 183 - ahash_request_set_crypt(req, sg, result, 184 - template[i].psize); 185 - ret = crypto_ahash_digest(req); 186 - switch (ret) { 187 - case 0: 188 - break; 189 - case -EINPROGRESS: 190 - case -EBUSY: 191 - ret = wait_for_completion_interruptible( 192 - &tresult.completion); 193 - if (!ret && !(ret = tresult.err)) { 194 - INIT_COMPLETION(tresult.completion); 195 - break; 196 - } 197 - /* fall through */ 198 - default: 199 - printk(KERN_ERR "alg: hash: digest failed " 200 - "on chunking test %d for %s: " 201 - "ret=%d\n", j, algo, -ret); 202 - goto out; 203 - } 204 - 205 - if (memcmp(result, template[i].digest, 206 - crypto_ahash_digestsize(tfm))) { 207 - printk(KERN_ERR "alg: hash: Chunking test %d " 208 - "failed for %s\n", j, algo); 209 - hexdump(result, crypto_ahash_digestsize(tfm)); 210 - ret = -EINVAL; 211 - goto out; 212 - } 213 - } 214 - } 215 - 216 - ret = 0; 217 - 218 - out: 219 - ahash_request_free(req); 220 - out_noreq: 221 - return ret; 222 - } 223 - 224 - static int test_aead(struct crypto_aead *tfm, int enc, 225 - struct aead_testvec *template, unsigned int tcount) 226 - { 227 - const char *algo = crypto_tfm_alg_driver_name(crypto_aead_tfm(tfm)); 228 - unsigned int i, j, k, n, temp; 229 - int ret = 0; 230 - char *q; 231 - char *key; 232 - struct aead_request *req; 233 - struct scatterlist sg[8]; 234 - struct scatterlist asg[8]; 235 - const char *e; 236 - struct tcrypt_result result; 237 - unsigned int authsize; 238 - void *input; 239 - void *assoc; 240 - char iv[MAX_IVLEN]; 241 - 242 - if (enc == ENCRYPT) 243 - e = "encryption"; 244 - else 245 - e = "decryption"; 246 - 247 - init_completion(&result.completion); 248 - 249 - req = aead_request_alloc(tfm, GFP_KERNEL); 250 - if (!req) { 251 - printk(KERN_ERR "alg: aead: Failed to allocate request for " 252 - "%s\n", algo); 253 - ret = -ENOMEM; 254 - goto out; 255 - } 256 - 257 - aead_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG, 258 - tcrypt_complete, &result); 259 - 260 - for (i = 0, j = 0; i < tcount; i++) { 261 - if (!template[i].np) { 262 - j++; 263 - 264 - /* some tepmplates have no input data but they will 265 - * touch input 266 - */ 267 - input = xbuf[0]; 268 - assoc = axbuf[0]; 269 - 270 - memcpy(input, template[i].input, template[i].ilen); 271 - memcpy(assoc, template[i].assoc, template[i].alen); 272 - if (template[i].iv) 273 - memcpy(iv, template[i].iv, MAX_IVLEN); 274 - else 275 - memset(iv, 0, MAX_IVLEN); 276 - 277 - crypto_aead_clear_flags(tfm, ~0); 278 - if (template[i].wk) 279 - crypto_aead_set_flags( 280 - tfm, CRYPTO_TFM_REQ_WEAK_KEY); 281 - 282 - key = template[i].key; 283 - 284 - ret = crypto_aead_setkey(tfm, key, 285 - template[i].klen); 286 - if (!ret == template[i].fail) { 287 - printk(KERN_ERR "alg: aead: setkey failed on " 288 - "test %d for %s: flags=%x\n", j, algo, 289 - crypto_aead_get_flags(tfm)); 290 - goto out; 291 - } else if (ret) 292 - continue; 293 - 294 - authsize = abs(template[i].rlen - template[i].ilen); 295 - ret = crypto_aead_setauthsize(tfm, authsize); 296 - if (ret) { 297 - printk(KERN_ERR "alg: aead: Failed to set " 298 - "authsize to %u on test %d for %s\n", 299 - authsize, j, algo); 300 - goto out; 301 - } 302 - 303 - sg_init_one(&sg[0], input, 304 - template[i].ilen + (enc ? authsize : 0)); 305 - 306 - sg_init_one(&asg[0], assoc, template[i].alen); 307 - 308 - aead_request_set_crypt(req, sg, sg, 309 - template[i].ilen, iv); 310 - 311 - aead_request_set_assoc(req, asg, template[i].alen); 312 - 313 - ret = enc ? 314 - crypto_aead_encrypt(req) : 315 - crypto_aead_decrypt(req); 316 - 317 - switch (ret) { 318 - case 0: 319 - break; 320 - case -EINPROGRESS: 321 - case -EBUSY: 322 - ret = wait_for_completion_interruptible( 323 - &result.completion); 324 - if (!ret && !(ret = result.err)) { 325 - INIT_COMPLETION(result.completion); 326 - break; 327 - } 328 - /* fall through */ 329 - default: 330 - printk(KERN_ERR "alg: aead: %s failed on test " 331 - "%d for %s: ret=%d\n", e, j, algo, -ret); 332 - goto out; 333 - } 334 - 335 - q = input; 336 - if (memcmp(q, template[i].result, template[i].rlen)) { 337 - printk(KERN_ERR "alg: aead: Test %d failed on " 338 - "%s for %s\n", j, e, algo); 339 - hexdump(q, template[i].rlen); 340 - ret = -EINVAL; 341 - goto out; 342 - } 343 - } 344 - } 345 - 346 - for (i = 0, j = 0; i < tcount; i++) { 347 - if (template[i].np) { 348 - j++; 349 - 350 - if (template[i].iv) 351 - memcpy(iv, template[i].iv, MAX_IVLEN); 352 - else 353 - memset(iv, 0, MAX_IVLEN); 354 - 355 - crypto_aead_clear_flags(tfm, ~0); 356 - if (template[i].wk) 357 - crypto_aead_set_flags( 358 - tfm, CRYPTO_TFM_REQ_WEAK_KEY); 359 - key = template[i].key; 360 - 361 - ret = crypto_aead_setkey(tfm, key, template[i].klen); 362 - if (!ret == template[i].fail) { 363 - printk(KERN_ERR "alg: aead: setkey failed on " 364 - "chunk test %d for %s: flags=%x\n", j, 365 - algo, crypto_aead_get_flags(tfm)); 366 - goto out; 367 - } else if (ret) 368 - continue; 369 - 370 - authsize = abs(template[i].rlen - template[i].ilen); 371 - 372 - ret = -EINVAL; 373 - sg_init_table(sg, template[i].np); 374 - for (k = 0, temp = 0; k < template[i].np; k++) { 375 - if (WARN_ON(offset_in_page(IDX[k]) + 376 - template[i].tap[k] > PAGE_SIZE)) 377 - goto out; 378 - 379 - q = xbuf[IDX[k] >> PAGE_SHIFT] + 380 - offset_in_page(IDX[k]); 381 - 382 - memcpy(q, template[i].input + temp, 383 - template[i].tap[k]); 384 - 385 - n = template[i].tap[k]; 386 - if (k == template[i].np - 1 && enc) 387 - n += authsize; 388 - if (offset_in_page(q) + n < PAGE_SIZE) 389 - q[n] = 0; 390 - 391 - sg_set_buf(&sg[k], q, template[i].tap[k]); 392 - temp += template[i].tap[k]; 393 - } 394 - 395 - ret = crypto_aead_setauthsize(tfm, authsize); 396 - if (ret) { 397 - printk(KERN_ERR "alg: aead: Failed to set " 398 - "authsize to %u on chunk test %d for " 399 - "%s\n", authsize, j, algo); 400 - goto out; 401 - } 402 - 403 - if (enc) { 404 - if (WARN_ON(sg[k - 1].offset + 405 - sg[k - 1].length + authsize > 406 - PAGE_SIZE)) { 407 - ret = -EINVAL; 408 - goto out; 409 - } 410 - 411 - sg[k - 1].length += authsize; 412 - } 413 - 414 - sg_init_table(asg, template[i].anp); 415 - for (k = 0, temp = 0; k < template[i].anp; k++) { 416 - sg_set_buf(&asg[k], 417 - memcpy(axbuf[IDX[k] >> PAGE_SHIFT] + 418 - offset_in_page(IDX[k]), 419 - template[i].assoc + temp, 420 - template[i].atap[k]), 421 - template[i].atap[k]); 422 - temp += template[i].atap[k]; 423 - } 424 - 425 - aead_request_set_crypt(req, sg, sg, 426 - template[i].ilen, 427 - iv); 428 - 429 - aead_request_set_assoc(req, asg, template[i].alen); 430 - 431 - ret = enc ? 432 - crypto_aead_encrypt(req) : 433 - crypto_aead_decrypt(req); 434 - 435 - switch (ret) { 436 - case 0: 437 - break; 438 - case -EINPROGRESS: 439 - case -EBUSY: 440 - ret = wait_for_completion_interruptible( 441 - &result.completion); 442 - if (!ret && !(ret = result.err)) { 443 - INIT_COMPLETION(result.completion); 444 - break; 445 - } 446 - /* fall through */ 447 - default: 448 - printk(KERN_ERR "alg: aead: %s failed on " 449 - "chunk test %d for %s: ret=%d\n", e, j, 450 - algo, -ret); 451 - goto out; 452 - } 453 - 454 - ret = -EINVAL; 455 - for (k = 0, temp = 0; k < template[i].np; k++) { 456 - q = xbuf[IDX[k] >> PAGE_SHIFT] + 457 - offset_in_page(IDX[k]); 458 - 459 - n = template[i].tap[k]; 460 - if (k == template[i].np - 1) 461 - n += enc ? authsize : -authsize; 462 - 463 - if (memcmp(q, template[i].result + temp, n)) { 464 - printk(KERN_ERR "alg: aead: Chunk " 465 - "test %d failed on %s at page " 466 - "%u for %s\n", j, e, k, algo); 467 - hexdump(q, n); 468 - goto out; 469 - } 470 - 471 - q += n; 472 - if (k == template[i].np - 1 && !enc) { 473 - if (memcmp(q, template[i].input + 474 - temp + n, authsize)) 475 - n = authsize; 476 - else 477 - n = 0; 478 - } else { 479 - for (n = 0; offset_in_page(q + n) && 480 - q[n]; n++) 481 - ; 482 - } 483 - if (n) { 484 - printk(KERN_ERR "alg: aead: Result " 485 - "buffer corruption in chunk " 486 - "test %d on %s at page %u for " 487 - "%s: %u bytes:\n", j, e, k, 488 - algo, n); 489 - hexdump(q, n); 490 - goto out; 491 - } 492 - 493 - temp += template[i].tap[k]; 494 - } 495 - } 496 - } 497 - 498 - ret = 0; 499 - 500 - out: 501 - aead_request_free(req); 502 - return ret; 503 - } 504 - 505 - static int test_cipher(struct crypto_ablkcipher *tfm, int enc, 506 - struct cipher_testvec *template, unsigned int tcount) 507 - { 508 - const char *algo = 509 - crypto_tfm_alg_driver_name(crypto_ablkcipher_tfm(tfm)); 510 - unsigned int i, j, k, n, temp; 511 - int ret; 512 - char *q; 513 - struct ablkcipher_request *req; 514 - struct scatterlist sg[8]; 515 - const char *e; 516 - struct tcrypt_result result; 517 - void *data; 518 - char iv[MAX_IVLEN]; 519 - 520 - if (enc == ENCRYPT) 521 - e = "encryption"; 522 - else 523 - e = "decryption"; 524 - 525 - init_completion(&result.completion); 526 - 527 - req = ablkcipher_request_alloc(tfm, GFP_KERNEL); 528 - if (!req) { 529 - printk(KERN_ERR "alg: cipher: Failed to allocate request for " 530 - "%s\n", algo); 531 - ret = -ENOMEM; 532 - goto out; 533 - } 534 - 535 - ablkcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG, 536 - tcrypt_complete, &result); 537 - 538 - j = 0; 539 - for (i = 0; i < tcount; i++) { 540 - if (template[i].iv) 541 - memcpy(iv, template[i].iv, MAX_IVLEN); 542 - else 543 - memset(iv, 0, MAX_IVLEN); 544 - 545 - if (!(template[i].np)) { 546 - j++; 547 - 548 - data = xbuf[0]; 549 - memcpy(data, template[i].input, template[i].ilen); 550 - 551 - crypto_ablkcipher_clear_flags(tfm, ~0); 552 - if (template[i].wk) 553 - crypto_ablkcipher_set_flags( 554 - tfm, CRYPTO_TFM_REQ_WEAK_KEY); 555 - 556 - ret = crypto_ablkcipher_setkey(tfm, template[i].key, 557 - template[i].klen); 558 - if (!ret == template[i].fail) { 559 - printk(KERN_ERR "alg: cipher: setkey failed " 560 - "on test %d for %s: flags=%x\n", j, 561 - algo, crypto_ablkcipher_get_flags(tfm)); 562 - goto out; 563 - } else if (ret) 564 - continue; 565 - 566 - sg_init_one(&sg[0], data, template[i].ilen); 567 - 568 - ablkcipher_request_set_crypt(req, sg, sg, 569 - template[i].ilen, iv); 570 - ret = enc ? 571 - crypto_ablkcipher_encrypt(req) : 572 - crypto_ablkcipher_decrypt(req); 573 - 574 - switch (ret) { 575 - case 0: 576 - break; 577 - case -EINPROGRESS: 578 - case -EBUSY: 579 - ret = wait_for_completion_interruptible( 580 - &result.completion); 581 - if (!ret && !((ret = result.err))) { 582 - INIT_COMPLETION(result.completion); 583 - break; 584 - } 585 - /* fall through */ 586 - default: 587 - printk(KERN_ERR "alg: cipher: %s failed on " 588 - "test %d for %s: ret=%d\n", e, j, algo, 589 - -ret); 590 - goto out; 591 - } 592 - 593 - q = data; 594 - if (memcmp(q, template[i].result, template[i].rlen)) { 595 - printk(KERN_ERR "alg: cipher: Test %d failed " 596 - "on %s for %s\n", j, e, algo); 597 - hexdump(q, template[i].rlen); 598 - ret = -EINVAL; 599 - goto out; 600 - } 601 - } 602 - } 603 - 604 - j = 0; 605 - for (i = 0; i < tcount; i++) { 606 - 607 - if (template[i].iv) 608 - memcpy(iv, template[i].iv, MAX_IVLEN); 609 - else 610 - memset(iv, 0, MAX_IVLEN); 611 - 612 - if (template[i].np) { 613 - j++; 614 - 615 - crypto_ablkcipher_clear_flags(tfm, ~0); 616 - if (template[i].wk) 617 - crypto_ablkcipher_set_flags( 618 - tfm, CRYPTO_TFM_REQ_WEAK_KEY); 619 - 620 - ret = crypto_ablkcipher_setkey(tfm, template[i].key, 621 - template[i].klen); 622 - if (!ret == template[i].fail) { 623 - printk(KERN_ERR "alg: cipher: setkey failed " 624 - "on chunk test %d for %s: flags=%x\n", 625 - j, algo, 626 - crypto_ablkcipher_get_flags(tfm)); 627 - goto out; 628 - } else if (ret) 629 - continue; 630 - 631 - temp = 0; 632 - ret = -EINVAL; 633 - sg_init_table(sg, template[i].np); 634 - for (k = 0; k < template[i].np; k++) { 635 - if (WARN_ON(offset_in_page(IDX[k]) + 636 - template[i].tap[k] > PAGE_SIZE)) 637 - goto out; 638 - 639 - q = xbuf[IDX[k] >> PAGE_SHIFT] + 640 - offset_in_page(IDX[k]); 641 - 642 - memcpy(q, template[i].input + temp, 643 - template[i].tap[k]); 644 - 645 - if (offset_in_page(q) + template[i].tap[k] < 646 - PAGE_SIZE) 647 - q[template[i].tap[k]] = 0; 648 - 649 - sg_set_buf(&sg[k], q, template[i].tap[k]); 650 - 651 - temp += template[i].tap[k]; 652 - } 653 - 654 - ablkcipher_request_set_crypt(req, sg, sg, 655 - template[i].ilen, iv); 656 - 657 - ret = enc ? 658 - crypto_ablkcipher_encrypt(req) : 659 - crypto_ablkcipher_decrypt(req); 660 - 661 - switch (ret) { 662 - case 0: 663 - break; 664 - case -EINPROGRESS: 665 - case -EBUSY: 666 - ret = wait_for_completion_interruptible( 667 - &result.completion); 668 - if (!ret && !((ret = result.err))) { 669 - INIT_COMPLETION(result.completion); 670 - break; 671 - } 672 - /* fall through */ 673 - default: 674 - printk(KERN_ERR "alg: cipher: %s failed on " 675 - "chunk test %d for %s: ret=%d\n", e, j, 676 - algo, -ret); 677 - goto out; 678 - } 679 - 680 - temp = 0; 681 - ret = -EINVAL; 682 - for (k = 0; k < template[i].np; k++) { 683 - q = xbuf[IDX[k] >> PAGE_SHIFT] + 684 - offset_in_page(IDX[k]); 685 - 686 - if (memcmp(q, template[i].result + temp, 687 - template[i].tap[k])) { 688 - printk(KERN_ERR "alg: cipher: Chunk " 689 - "test %d failed on %s at page " 690 - "%u for %s\n", j, e, k, algo); 691 - hexdump(q, template[i].tap[k]); 692 - goto out; 693 - } 694 - 695 - q += template[i].tap[k]; 696 - for (n = 0; offset_in_page(q + n) && q[n]; n++) 697 - ; 698 - if (n) { 699 - printk(KERN_ERR "alg: cipher: " 700 - "Result buffer corruption in " 701 - "chunk test %d on %s at page " 702 - "%u for %s: %u bytes:\n", j, e, 703 - k, algo, n); 704 - hexdump(q, n); 705 - goto out; 706 - } 707 - temp += template[i].tap[k]; 708 - } 709 - } 710 - } 711 - 712 - ret = 0; 713 - 714 - out: 715 - ablkcipher_request_free(req); 716 - return ret; 717 - } 718 121 719 122 static int test_cipher_jiffies(struct blkcipher_desc *desc, int enc, 720 123 struct scatterlist *sg, int blen, int sec) ··· 131 854 static u32 block_sizes[] = { 16, 64, 256, 1024, 8192, 0 }; 132 855 133 856 static void test_cipher_speed(const char *algo, int enc, unsigned int sec, 134 - struct cipher_testvec *template, 857 + struct cipher_speed_template *template, 135 858 unsigned int tcount, u8 *keysize) 136 859 { 137 860 unsigned int ret, i, j, iv_len; 138 - unsigned char *key, iv[128]; 861 + const char *key, iv[128]; 139 862 struct crypto_blkcipher *tfm; 140 863 struct blkcipher_desc desc; 141 864 const char *e; ··· 178 901 memset(tvmem[0], 0xff, PAGE_SIZE); 179 902 180 903 /* set key, plain text and IV */ 181 - key = (unsigned char *)tvmem[0]; 904 + key = tvmem[0]; 182 905 for (j = 0; j < tcount; j++) { 183 906 if (template[j].klen == *keysize) { 184 907 key = template[j].key; ··· 452 1175 crypto_free_hash(tfm); 453 1176 } 454 1177 455 - static int test_comp(struct crypto_comp *tfm, struct comp_testvec *ctemplate, 456 - struct comp_testvec *dtemplate, int ctcount, int dtcount) 457 - { 458 - const char *algo = crypto_tfm_alg_driver_name(crypto_comp_tfm(tfm)); 459 - unsigned int i; 460 - char result[COMP_BUF_SIZE]; 461 - int ret; 462 - 463 - for (i = 0; i < ctcount; i++) { 464 - int ilen, dlen = COMP_BUF_SIZE; 465 - 466 - memset(result, 0, sizeof (result)); 467 - 468 - ilen = ctemplate[i].inlen; 469 - ret = crypto_comp_compress(tfm, ctemplate[i].input, 470 - ilen, result, &dlen); 471 - if (ret) { 472 - printk(KERN_ERR "alg: comp: compression failed " 473 - "on test %d for %s: ret=%d\n", i + 1, algo, 474 - -ret); 475 - goto out; 476 - } 477 - 478 - if (memcmp(result, ctemplate[i].output, dlen)) { 479 - printk(KERN_ERR "alg: comp: Compression test %d " 480 - "failed for %s\n", i + 1, algo); 481 - hexdump(result, dlen); 482 - ret = -EINVAL; 483 - goto out; 484 - } 485 - } 486 - 487 - for (i = 0; i < dtcount; i++) { 488 - int ilen, ret, dlen = COMP_BUF_SIZE; 489 - 490 - memset(result, 0, sizeof (result)); 491 - 492 - ilen = dtemplate[i].inlen; 493 - ret = crypto_comp_decompress(tfm, dtemplate[i].input, 494 - ilen, result, &dlen); 495 - if (ret) { 496 - printk(KERN_ERR "alg: comp: decompression failed " 497 - "on test %d for %s: ret=%d\n", i + 1, algo, 498 - -ret); 499 - goto out; 500 - } 501 - 502 - if (memcmp(result, dtemplate[i].output, dlen)) { 503 - printk(KERN_ERR "alg: comp: Decompression test %d " 504 - "failed for %s\n", i + 1, algo); 505 - hexdump(result, dlen); 506 - ret = -EINVAL; 507 - goto out; 508 - } 509 - } 510 - 511 - ret = 0; 512 - 513 - out: 514 - return ret; 515 - } 516 - 517 1178 static void test_available(void) 518 1179 { 519 1180 char **name = check; ··· 462 1247 "found\n" : "not found\n"); 463 1248 name++; 464 1249 } 465 - } 466 - 467 - static int alg_test_aead(const struct alg_test_desc *desc, const char *driver, 468 - u32 type, u32 mask) 469 - { 470 - struct crypto_aead *tfm; 471 - int err = 0; 472 - 473 - tfm = crypto_alloc_aead(driver, type, mask); 474 - if (IS_ERR(tfm)) { 475 - printk(KERN_ERR "alg: aead: Failed to load transform for %s: " 476 - "%ld\n", driver, PTR_ERR(tfm)); 477 - return PTR_ERR(tfm); 478 - } 479 - 480 - if (desc->suite.aead.enc.vecs) { 481 - err = test_aead(tfm, ENCRYPT, desc->suite.aead.enc.vecs, 482 - desc->suite.aead.enc.count); 483 - if (err) 484 - goto out; 485 - } 486 - 487 - if (!err && desc->suite.aead.dec.vecs) 488 - err = test_aead(tfm, DECRYPT, desc->suite.aead.dec.vecs, 489 - desc->suite.aead.dec.count); 490 - 491 - out: 492 - crypto_free_aead(tfm); 493 - return err; 494 - } 495 - 496 - static int alg_test_cipher(const struct alg_test_desc *desc, 497 - const char *driver, u32 type, u32 mask) 498 - { 499 - struct crypto_ablkcipher *tfm; 500 - int err = 0; 501 - 502 - tfm = crypto_alloc_ablkcipher(driver, type, mask); 503 - if (IS_ERR(tfm)) { 504 - printk(KERN_ERR "alg: cipher: Failed to load transform for " 505 - "%s: %ld\n", driver, PTR_ERR(tfm)); 506 - return PTR_ERR(tfm); 507 - } 508 - 509 - if (desc->suite.cipher.enc.vecs) { 510 - err = test_cipher(tfm, ENCRYPT, desc->suite.cipher.enc.vecs, 511 - desc->suite.cipher.enc.count); 512 - if (err) 513 - goto out; 514 - } 515 - 516 - if (desc->suite.cipher.dec.vecs) 517 - err = test_cipher(tfm, DECRYPT, desc->suite.cipher.dec.vecs, 518 - desc->suite.cipher.dec.count); 519 - 520 - out: 521 - crypto_free_ablkcipher(tfm); 522 - return err; 523 - } 524 - 525 - static int alg_test_comp(const struct alg_test_desc *desc, const char *driver, 526 - u32 type, u32 mask) 527 - { 528 - struct crypto_comp *tfm; 529 - int err; 530 - 531 - tfm = crypto_alloc_comp(driver, type, mask); 532 - if (IS_ERR(tfm)) { 533 - printk(KERN_ERR "alg: comp: Failed to load transform for %s: " 534 - "%ld\n", driver, PTR_ERR(tfm)); 535 - return PTR_ERR(tfm); 536 - } 537 - 538 - err = test_comp(tfm, desc->suite.comp.comp.vecs, 539 - desc->suite.comp.decomp.vecs, 540 - desc->suite.comp.comp.count, 541 - desc->suite.comp.decomp.count); 542 - 543 - crypto_free_comp(tfm); 544 - return err; 545 - } 546 - 547 - static int alg_test_hash(const struct alg_test_desc *desc, const char *driver, 548 - u32 type, u32 mask) 549 - { 550 - struct crypto_ahash *tfm; 551 - int err; 552 - 553 - tfm = crypto_alloc_ahash(driver, type, mask); 554 - if (IS_ERR(tfm)) { 555 - printk(KERN_ERR "alg: hash: Failed to load transform for %s: " 556 - "%ld\n", driver, PTR_ERR(tfm)); 557 - return PTR_ERR(tfm); 558 - } 559 - 560 - err = test_hash(tfm, desc->suite.hash.vecs, desc->suite.hash.count); 561 - 562 - crypto_free_ahash(tfm); 563 - return err; 564 - } 565 - 566 - /* Please keep this list sorted by algorithm name. */ 567 - static const struct alg_test_desc alg_test_descs[] = { 568 - { 569 - .alg = "cbc(aes)", 570 - .test = alg_test_cipher, 571 - .suite = { 572 - .cipher = { 573 - .enc = { 574 - .vecs = aes_cbc_enc_tv_template, 575 - .count = AES_CBC_ENC_TEST_VECTORS 576 - }, 577 - .dec = { 578 - .vecs = aes_cbc_dec_tv_template, 579 - .count = AES_CBC_DEC_TEST_VECTORS 580 - } 581 - } 582 - } 583 - }, { 584 - .alg = "cbc(anubis)", 585 - .test = alg_test_cipher, 586 - .suite = { 587 - .cipher = { 588 - .enc = { 589 - .vecs = anubis_cbc_enc_tv_template, 590 - .count = ANUBIS_CBC_ENC_TEST_VECTORS 591 - }, 592 - .dec = { 593 - .vecs = anubis_cbc_dec_tv_template, 594 - .count = ANUBIS_CBC_DEC_TEST_VECTORS 595 - } 596 - } 597 - } 598 - }, { 599 - .alg = "cbc(blowfish)", 600 - .test = alg_test_cipher, 601 - .suite = { 602 - .cipher = { 603 - .enc = { 604 - .vecs = bf_cbc_enc_tv_template, 605 - .count = BF_CBC_ENC_TEST_VECTORS 606 - }, 607 - .dec = { 608 - .vecs = bf_cbc_dec_tv_template, 609 - .count = BF_CBC_DEC_TEST_VECTORS 610 - } 611 - } 612 - } 613 - }, { 614 - .alg = "cbc(camellia)", 615 - .test = alg_test_cipher, 616 - .suite = { 617 - .cipher = { 618 - .enc = { 619 - .vecs = camellia_cbc_enc_tv_template, 620 - .count = CAMELLIA_CBC_ENC_TEST_VECTORS 621 - }, 622 - .dec = { 623 - .vecs = camellia_cbc_dec_tv_template, 624 - .count = CAMELLIA_CBC_DEC_TEST_VECTORS 625 - } 626 - } 627 - } 628 - }, { 629 - .alg = "cbc(des)", 630 - .test = alg_test_cipher, 631 - .suite = { 632 - .cipher = { 633 - .enc = { 634 - .vecs = des_cbc_enc_tv_template, 635 - .count = DES_CBC_ENC_TEST_VECTORS 636 - }, 637 - .dec = { 638 - .vecs = des_cbc_dec_tv_template, 639 - .count = DES_CBC_DEC_TEST_VECTORS 640 - } 641 - } 642 - } 643 - }, { 644 - .alg = "cbc(des3_ede)", 645 - .test = alg_test_cipher, 646 - .suite = { 647 - .cipher = { 648 - .enc = { 649 - .vecs = des3_ede_cbc_enc_tv_template, 650 - .count = DES3_EDE_CBC_ENC_TEST_VECTORS 651 - }, 652 - .dec = { 653 - .vecs = des3_ede_cbc_dec_tv_template, 654 - .count = DES3_EDE_CBC_DEC_TEST_VECTORS 655 - } 656 - } 657 - } 658 - }, { 659 - .alg = "cbc(twofish)", 660 - .test = alg_test_cipher, 661 - .suite = { 662 - .cipher = { 663 - .enc = { 664 - .vecs = tf_cbc_enc_tv_template, 665 - .count = TF_CBC_ENC_TEST_VECTORS 666 - }, 667 - .dec = { 668 - .vecs = tf_cbc_dec_tv_template, 669 - .count = TF_CBC_DEC_TEST_VECTORS 670 - } 671 - } 672 - } 673 - }, { 674 - .alg = "ccm(aes)", 675 - .test = alg_test_aead, 676 - .suite = { 677 - .aead = { 678 - .enc = { 679 - .vecs = aes_ccm_enc_tv_template, 680 - .count = AES_CCM_ENC_TEST_VECTORS 681 - }, 682 - .dec = { 683 - .vecs = aes_ccm_dec_tv_template, 684 - .count = AES_CCM_DEC_TEST_VECTORS 685 - } 686 - } 687 - } 688 - }, { 689 - .alg = "crc32c", 690 - .test = alg_test_hash, 691 - .suite = { 692 - .hash = { 693 - .vecs = crc32c_tv_template, 694 - .count = CRC32C_TEST_VECTORS 695 - } 696 - } 697 - }, { 698 - .alg = "cts(cbc(aes))", 699 - .test = alg_test_cipher, 700 - .suite = { 701 - .cipher = { 702 - .enc = { 703 - .vecs = cts_mode_enc_tv_template, 704 - .count = CTS_MODE_ENC_TEST_VECTORS 705 - }, 706 - .dec = { 707 - .vecs = cts_mode_dec_tv_template, 708 - .count = CTS_MODE_DEC_TEST_VECTORS 709 - } 710 - } 711 - } 712 - }, { 713 - .alg = "deflate", 714 - .test = alg_test_comp, 715 - .suite = { 716 - .comp = { 717 - .comp = { 718 - .vecs = deflate_comp_tv_template, 719 - .count = DEFLATE_COMP_TEST_VECTORS 720 - }, 721 - .decomp = { 722 - .vecs = deflate_decomp_tv_template, 723 - .count = DEFLATE_DECOMP_TEST_VECTORS 724 - } 725 - } 726 - } 727 - }, { 728 - .alg = "ecb(aes)", 729 - .test = alg_test_cipher, 730 - .suite = { 731 - .cipher = { 732 - .enc = { 733 - .vecs = aes_enc_tv_template, 734 - .count = AES_ENC_TEST_VECTORS 735 - }, 736 - .dec = { 737 - .vecs = aes_dec_tv_template, 738 - .count = AES_DEC_TEST_VECTORS 739 - } 740 - } 741 - } 742 - }, { 743 - .alg = "ecb(anubis)", 744 - .test = alg_test_cipher, 745 - .suite = { 746 - .cipher = { 747 - .enc = { 748 - .vecs = anubis_enc_tv_template, 749 - .count = ANUBIS_ENC_TEST_VECTORS 750 - }, 751 - .dec = { 752 - .vecs = anubis_dec_tv_template, 753 - .count = ANUBIS_DEC_TEST_VECTORS 754 - } 755 - } 756 - } 757 - }, { 758 - .alg = "ecb(arc4)", 759 - .test = alg_test_cipher, 760 - .suite = { 761 - .cipher = { 762 - .enc = { 763 - .vecs = arc4_enc_tv_template, 764 - .count = ARC4_ENC_TEST_VECTORS 765 - }, 766 - .dec = { 767 - .vecs = arc4_dec_tv_template, 768 - .count = ARC4_DEC_TEST_VECTORS 769 - } 770 - } 771 - } 772 - }, { 773 - .alg = "ecb(blowfish)", 774 - .test = alg_test_cipher, 775 - .suite = { 776 - .cipher = { 777 - .enc = { 778 - .vecs = bf_enc_tv_template, 779 - .count = BF_ENC_TEST_VECTORS 780 - }, 781 - .dec = { 782 - .vecs = bf_dec_tv_template, 783 - .count = BF_DEC_TEST_VECTORS 784 - } 785 - } 786 - } 787 - }, { 788 - .alg = "ecb(camellia)", 789 - .test = alg_test_cipher, 790 - .suite = { 791 - .cipher = { 792 - .enc = { 793 - .vecs = camellia_enc_tv_template, 794 - .count = CAMELLIA_ENC_TEST_VECTORS 795 - }, 796 - .dec = { 797 - .vecs = camellia_dec_tv_template, 798 - .count = CAMELLIA_DEC_TEST_VECTORS 799 - } 800 - } 801 - } 802 - }, { 803 - .alg = "ecb(cast5)", 804 - .test = alg_test_cipher, 805 - .suite = { 806 - .cipher = { 807 - .enc = { 808 - .vecs = cast5_enc_tv_template, 809 - .count = CAST5_ENC_TEST_VECTORS 810 - }, 811 - .dec = { 812 - .vecs = cast5_dec_tv_template, 813 - .count = CAST5_DEC_TEST_VECTORS 814 - } 815 - } 816 - } 817 - }, { 818 - .alg = "ecb(cast6)", 819 - .test = alg_test_cipher, 820 - .suite = { 821 - .cipher = { 822 - .enc = { 823 - .vecs = cast6_enc_tv_template, 824 - .count = CAST6_ENC_TEST_VECTORS 825 - }, 826 - .dec = { 827 - .vecs = cast6_dec_tv_template, 828 - .count = CAST6_DEC_TEST_VECTORS 829 - } 830 - } 831 - } 832 - }, { 833 - .alg = "ecb(des)", 834 - .test = alg_test_cipher, 835 - .suite = { 836 - .cipher = { 837 - .enc = { 838 - .vecs = des_enc_tv_template, 839 - .count = DES_ENC_TEST_VECTORS 840 - }, 841 - .dec = { 842 - .vecs = des_dec_tv_template, 843 - .count = DES_DEC_TEST_VECTORS 844 - } 845 - } 846 - } 847 - }, { 848 - .alg = "ecb(des3_ede)", 849 - .test = alg_test_cipher, 850 - .suite = { 851 - .cipher = { 852 - .enc = { 853 - .vecs = des3_ede_enc_tv_template, 854 - .count = DES3_EDE_ENC_TEST_VECTORS 855 - }, 856 - .dec = { 857 - .vecs = des3_ede_dec_tv_template, 858 - .count = DES3_EDE_DEC_TEST_VECTORS 859 - } 860 - } 861 - } 862 - }, { 863 - .alg = "ecb(khazad)", 864 - .test = alg_test_cipher, 865 - .suite = { 866 - .cipher = { 867 - .enc = { 868 - .vecs = khazad_enc_tv_template, 869 - .count = KHAZAD_ENC_TEST_VECTORS 870 - }, 871 - .dec = { 872 - .vecs = khazad_dec_tv_template, 873 - .count = KHAZAD_DEC_TEST_VECTORS 874 - } 875 - } 876 - } 877 - }, { 878 - .alg = "ecb(seed)", 879 - .test = alg_test_cipher, 880 - .suite = { 881 - .cipher = { 882 - .enc = { 883 - .vecs = seed_enc_tv_template, 884 - .count = SEED_ENC_TEST_VECTORS 885 - }, 886 - .dec = { 887 - .vecs = seed_dec_tv_template, 888 - .count = SEED_DEC_TEST_VECTORS 889 - } 890 - } 891 - } 892 - }, { 893 - .alg = "ecb(serpent)", 894 - .test = alg_test_cipher, 895 - .suite = { 896 - .cipher = { 897 - .enc = { 898 - .vecs = serpent_enc_tv_template, 899 - .count = SERPENT_ENC_TEST_VECTORS 900 - }, 901 - .dec = { 902 - .vecs = serpent_dec_tv_template, 903 - .count = SERPENT_DEC_TEST_VECTORS 904 - } 905 - } 906 - } 907 - }, { 908 - .alg = "ecb(tea)", 909 - .test = alg_test_cipher, 910 - .suite = { 911 - .cipher = { 912 - .enc = { 913 - .vecs = tea_enc_tv_template, 914 - .count = TEA_ENC_TEST_VECTORS 915 - }, 916 - .dec = { 917 - .vecs = tea_dec_tv_template, 918 - .count = TEA_DEC_TEST_VECTORS 919 - } 920 - } 921 - } 922 - }, { 923 - .alg = "ecb(tnepres)", 924 - .test = alg_test_cipher, 925 - .suite = { 926 - .cipher = { 927 - .enc = { 928 - .vecs = tnepres_enc_tv_template, 929 - .count = TNEPRES_ENC_TEST_VECTORS 930 - }, 931 - .dec = { 932 - .vecs = tnepres_dec_tv_template, 933 - .count = TNEPRES_DEC_TEST_VECTORS 934 - } 935 - } 936 - } 937 - }, { 938 - .alg = "ecb(twofish)", 939 - .test = alg_test_cipher, 940 - .suite = { 941 - .cipher = { 942 - .enc = { 943 - .vecs = tf_enc_tv_template, 944 - .count = TF_ENC_TEST_VECTORS 945 - }, 946 - .dec = { 947 - .vecs = tf_dec_tv_template, 948 - .count = TF_DEC_TEST_VECTORS 949 - } 950 - } 951 - } 952 - }, { 953 - .alg = "ecb(xeta)", 954 - .test = alg_test_cipher, 955 - .suite = { 956 - .cipher = { 957 - .enc = { 958 - .vecs = xeta_enc_tv_template, 959 - .count = XETA_ENC_TEST_VECTORS 960 - }, 961 - .dec = { 962 - .vecs = xeta_dec_tv_template, 963 - .count = XETA_DEC_TEST_VECTORS 964 - } 965 - } 966 - } 967 - }, { 968 - .alg = "ecb(xtea)", 969 - .test = alg_test_cipher, 970 - .suite = { 971 - .cipher = { 972 - .enc = { 973 - .vecs = xtea_enc_tv_template, 974 - .count = XTEA_ENC_TEST_VECTORS 975 - }, 976 - .dec = { 977 - .vecs = xtea_dec_tv_template, 978 - .count = XTEA_DEC_TEST_VECTORS 979 - } 980 - } 981 - } 982 - }, { 983 - .alg = "gcm(aes)", 984 - .test = alg_test_aead, 985 - .suite = { 986 - .aead = { 987 - .enc = { 988 - .vecs = aes_gcm_enc_tv_template, 989 - .count = AES_GCM_ENC_TEST_VECTORS 990 - }, 991 - .dec = { 992 - .vecs = aes_gcm_dec_tv_template, 993 - .count = AES_GCM_DEC_TEST_VECTORS 994 - } 995 - } 996 - } 997 - }, { 998 - .alg = "hmac(md5)", 999 - .test = alg_test_hash, 1000 - .suite = { 1001 - .hash = { 1002 - .vecs = hmac_md5_tv_template, 1003 - .count = HMAC_MD5_TEST_VECTORS 1004 - } 1005 - } 1006 - }, { 1007 - .alg = "hmac(rmd128)", 1008 - .test = alg_test_hash, 1009 - .suite = { 1010 - .hash = { 1011 - .vecs = hmac_rmd128_tv_template, 1012 - .count = HMAC_RMD128_TEST_VECTORS 1013 - } 1014 - } 1015 - }, { 1016 - .alg = "hmac(rmd160)", 1017 - .test = alg_test_hash, 1018 - .suite = { 1019 - .hash = { 1020 - .vecs = hmac_rmd160_tv_template, 1021 - .count = HMAC_RMD160_TEST_VECTORS 1022 - } 1023 - } 1024 - }, { 1025 - .alg = "hmac(sha1)", 1026 - .test = alg_test_hash, 1027 - .suite = { 1028 - .hash = { 1029 - .vecs = hmac_sha1_tv_template, 1030 - .count = HMAC_SHA1_TEST_VECTORS 1031 - } 1032 - } 1033 - }, { 1034 - .alg = "hmac(sha224)", 1035 - .test = alg_test_hash, 1036 - .suite = { 1037 - .hash = { 1038 - .vecs = hmac_sha224_tv_template, 1039 - .count = HMAC_SHA224_TEST_VECTORS 1040 - } 1041 - } 1042 - }, { 1043 - .alg = "hmac(sha256)", 1044 - .test = alg_test_hash, 1045 - .suite = { 1046 - .hash = { 1047 - .vecs = hmac_sha256_tv_template, 1048 - .count = HMAC_SHA256_TEST_VECTORS 1049 - } 1050 - } 1051 - }, { 1052 - .alg = "hmac(sha384)", 1053 - .test = alg_test_hash, 1054 - .suite = { 1055 - .hash = { 1056 - .vecs = hmac_sha384_tv_template, 1057 - .count = HMAC_SHA384_TEST_VECTORS 1058 - } 1059 - } 1060 - }, { 1061 - .alg = "hmac(sha512)", 1062 - .test = alg_test_hash, 1063 - .suite = { 1064 - .hash = { 1065 - .vecs = hmac_sha512_tv_template, 1066 - .count = HMAC_SHA512_TEST_VECTORS 1067 - } 1068 - } 1069 - }, { 1070 - .alg = "lrw(aes)", 1071 - .test = alg_test_cipher, 1072 - .suite = { 1073 - .cipher = { 1074 - .enc = { 1075 - .vecs = aes_lrw_enc_tv_template, 1076 - .count = AES_LRW_ENC_TEST_VECTORS 1077 - }, 1078 - .dec = { 1079 - .vecs = aes_lrw_dec_tv_template, 1080 - .count = AES_LRW_DEC_TEST_VECTORS 1081 - } 1082 - } 1083 - } 1084 - }, { 1085 - .alg = "lzo", 1086 - .test = alg_test_comp, 1087 - .suite = { 1088 - .comp = { 1089 - .comp = { 1090 - .vecs = lzo_comp_tv_template, 1091 - .count = LZO_COMP_TEST_VECTORS 1092 - }, 1093 - .decomp = { 1094 - .vecs = lzo_decomp_tv_template, 1095 - .count = LZO_DECOMP_TEST_VECTORS 1096 - } 1097 - } 1098 - } 1099 - }, { 1100 - .alg = "md4", 1101 - .test = alg_test_hash, 1102 - .suite = { 1103 - .hash = { 1104 - .vecs = md4_tv_template, 1105 - .count = MD4_TEST_VECTORS 1106 - } 1107 - } 1108 - }, { 1109 - .alg = "md5", 1110 - .test = alg_test_hash, 1111 - .suite = { 1112 - .hash = { 1113 - .vecs = md5_tv_template, 1114 - .count = MD5_TEST_VECTORS 1115 - } 1116 - } 1117 - }, { 1118 - .alg = "michael_mic", 1119 - .test = alg_test_hash, 1120 - .suite = { 1121 - .hash = { 1122 - .vecs = michael_mic_tv_template, 1123 - .count = MICHAEL_MIC_TEST_VECTORS 1124 - } 1125 - } 1126 - }, { 1127 - .alg = "pcbc(fcrypt)", 1128 - .test = alg_test_cipher, 1129 - .suite = { 1130 - .cipher = { 1131 - .enc = { 1132 - .vecs = fcrypt_pcbc_enc_tv_template, 1133 - .count = FCRYPT_ENC_TEST_VECTORS 1134 - }, 1135 - .dec = { 1136 - .vecs = fcrypt_pcbc_dec_tv_template, 1137 - .count = FCRYPT_DEC_TEST_VECTORS 1138 - } 1139 - } 1140 - } 1141 - }, { 1142 - .alg = "rfc3686(ctr(aes))", 1143 - .test = alg_test_cipher, 1144 - .suite = { 1145 - .cipher = { 1146 - .enc = { 1147 - .vecs = aes_ctr_enc_tv_template, 1148 - .count = AES_CTR_ENC_TEST_VECTORS 1149 - }, 1150 - .dec = { 1151 - .vecs = aes_ctr_dec_tv_template, 1152 - .count = AES_CTR_DEC_TEST_VECTORS 1153 - } 1154 - } 1155 - } 1156 - }, { 1157 - .alg = "rmd128", 1158 - .test = alg_test_hash, 1159 - .suite = { 1160 - .hash = { 1161 - .vecs = rmd128_tv_template, 1162 - .count = RMD128_TEST_VECTORS 1163 - } 1164 - } 1165 - }, { 1166 - .alg = "rmd160", 1167 - .test = alg_test_hash, 1168 - .suite = { 1169 - .hash = { 1170 - .vecs = rmd160_tv_template, 1171 - .count = RMD160_TEST_VECTORS 1172 - } 1173 - } 1174 - }, { 1175 - .alg = "rmd256", 1176 - .test = alg_test_hash, 1177 - .suite = { 1178 - .hash = { 1179 - .vecs = rmd256_tv_template, 1180 - .count = RMD256_TEST_VECTORS 1181 - } 1182 - } 1183 - }, { 1184 - .alg = "rmd320", 1185 - .test = alg_test_hash, 1186 - .suite = { 1187 - .hash = { 1188 - .vecs = rmd320_tv_template, 1189 - .count = RMD320_TEST_VECTORS 1190 - } 1191 - } 1192 - }, { 1193 - .alg = "salsa20", 1194 - .test = alg_test_cipher, 1195 - .suite = { 1196 - .cipher = { 1197 - .enc = { 1198 - .vecs = salsa20_stream_enc_tv_template, 1199 - .count = SALSA20_STREAM_ENC_TEST_VECTORS 1200 - } 1201 - } 1202 - } 1203 - }, { 1204 - .alg = "sha1", 1205 - .test = alg_test_hash, 1206 - .suite = { 1207 - .hash = { 1208 - .vecs = sha1_tv_template, 1209 - .count = SHA1_TEST_VECTORS 1210 - } 1211 - } 1212 - }, { 1213 - .alg = "sha224", 1214 - .test = alg_test_hash, 1215 - .suite = { 1216 - .hash = { 1217 - .vecs = sha224_tv_template, 1218 - .count = SHA224_TEST_VECTORS 1219 - } 1220 - } 1221 - }, { 1222 - .alg = "sha256", 1223 - .test = alg_test_hash, 1224 - .suite = { 1225 - .hash = { 1226 - .vecs = sha256_tv_template, 1227 - .count = SHA256_TEST_VECTORS 1228 - } 1229 - } 1230 - }, { 1231 - .alg = "sha384", 1232 - .test = alg_test_hash, 1233 - .suite = { 1234 - .hash = { 1235 - .vecs = sha384_tv_template, 1236 - .count = SHA384_TEST_VECTORS 1237 - } 1238 - } 1239 - }, { 1240 - .alg = "sha512", 1241 - .test = alg_test_hash, 1242 - .suite = { 1243 - .hash = { 1244 - .vecs = sha512_tv_template, 1245 - .count = SHA512_TEST_VECTORS 1246 - } 1247 - } 1248 - }, { 1249 - .alg = "tgr128", 1250 - .test = alg_test_hash, 1251 - .suite = { 1252 - .hash = { 1253 - .vecs = tgr128_tv_template, 1254 - .count = TGR128_TEST_VECTORS 1255 - } 1256 - } 1257 - }, { 1258 - .alg = "tgr160", 1259 - .test = alg_test_hash, 1260 - .suite = { 1261 - .hash = { 1262 - .vecs = tgr160_tv_template, 1263 - .count = TGR160_TEST_VECTORS 1264 - } 1265 - } 1266 - }, { 1267 - .alg = "tgr192", 1268 - .test = alg_test_hash, 1269 - .suite = { 1270 - .hash = { 1271 - .vecs = tgr192_tv_template, 1272 - .count = TGR192_TEST_VECTORS 1273 - } 1274 - } 1275 - }, { 1276 - .alg = "wp256", 1277 - .test = alg_test_hash, 1278 - .suite = { 1279 - .hash = { 1280 - .vecs = wp256_tv_template, 1281 - .count = WP256_TEST_VECTORS 1282 - } 1283 - } 1284 - }, { 1285 - .alg = "wp384", 1286 - .test = alg_test_hash, 1287 - .suite = { 1288 - .hash = { 1289 - .vecs = wp384_tv_template, 1290 - .count = WP384_TEST_VECTORS 1291 - } 1292 - } 1293 - }, { 1294 - .alg = "wp512", 1295 - .test = alg_test_hash, 1296 - .suite = { 1297 - .hash = { 1298 - .vecs = wp512_tv_template, 1299 - .count = WP512_TEST_VECTORS 1300 - } 1301 - } 1302 - }, { 1303 - .alg = "xcbc(aes)", 1304 - .test = alg_test_hash, 1305 - .suite = { 1306 - .hash = { 1307 - .vecs = aes_xcbc128_tv_template, 1308 - .count = XCBC_AES_TEST_VECTORS 1309 - } 1310 - } 1311 - }, { 1312 - .alg = "xts(aes)", 1313 - .test = alg_test_cipher, 1314 - .suite = { 1315 - .cipher = { 1316 - .enc = { 1317 - .vecs = aes_xts_enc_tv_template, 1318 - .count = AES_XTS_ENC_TEST_VECTORS 1319 - }, 1320 - .dec = { 1321 - .vecs = aes_xts_dec_tv_template, 1322 - .count = AES_XTS_DEC_TEST_VECTORS 1323 - } 1324 - } 1325 - } 1326 - } 1327 - }; 1328 - 1329 - static int alg_test(const char *driver, const char *alg, u32 type, u32 mask) 1330 - { 1331 - int start = 0; 1332 - int end = ARRAY_SIZE(alg_test_descs); 1333 - 1334 - while (start < end) { 1335 - int i = (start + end) / 2; 1336 - int diff = strcmp(alg_test_descs[i].alg, alg); 1337 - 1338 - if (diff > 0) { 1339 - end = i; 1340 - continue; 1341 - } 1342 - 1343 - if (diff < 0) { 1344 - start = i + 1; 1345 - continue; 1346 - } 1347 - 1348 - return alg_test_descs[i].test(alg_test_descs + i, driver, 1349 - type, mask); 1350 - } 1351 - 1352 - printk(KERN_INFO "alg: No test for %s (%s)\n", alg, driver); 1353 - return 0; 1354 1250 } 1355 1251 1356 1252 static inline int tcrypt_test(const char *alg) ··· 718 2392 719 2393 case 201: 720 2394 test_cipher_speed("ecb(des3_ede)", ENCRYPT, sec, 721 - des3_ede_enc_tv_template, DES3_EDE_ENC_TEST_VECTORS, 2395 + des3_speed_template, DES3_SPEED_VECTORS, 722 2396 speed_template_24); 723 2397 test_cipher_speed("ecb(des3_ede)", DECRYPT, sec, 724 - des3_ede_enc_tv_template, DES3_EDE_ENC_TEST_VECTORS, 2398 + des3_speed_template, DES3_SPEED_VECTORS, 725 2399 speed_template_24); 726 2400 test_cipher_speed("cbc(des3_ede)", ENCRYPT, sec, 727 - des3_ede_enc_tv_template, DES3_EDE_ENC_TEST_VECTORS, 2401 + des3_speed_template, DES3_SPEED_VECTORS, 728 2402 speed_template_24); 729 2403 test_cipher_speed("cbc(des3_ede)", DECRYPT, sec, 730 - des3_ede_enc_tv_template, DES3_EDE_ENC_TEST_VECTORS, 2404 + des3_speed_template, DES3_SPEED_VECTORS, 731 2405 speed_template_24); 732 2406 break; 733 2407 ··· 871 2545 goto err_free_tv; 872 2546 } 873 2547 874 - for (i = 0; i < XBUFSIZE; i++) { 875 - xbuf[i] = (void *)__get_free_page(GFP_KERNEL); 876 - if (!xbuf[i]) 877 - goto err_free_xbuf; 878 - } 879 - 880 - for (i = 0; i < XBUFSIZE; i++) { 881 - axbuf[i] = (void *)__get_free_page(GFP_KERNEL); 882 - if (!axbuf[i]) 883 - goto err_free_axbuf; 884 - } 885 - 886 2548 do_test(mode); 887 2549 888 2550 /* We intentionaly return -EAGAIN to prevent keeping ··· 881 2567 */ 882 2568 err = -EAGAIN; 883 2569 884 - err_free_axbuf: 885 - for (i = 0; i < XBUFSIZE && axbuf[i]; i++) 886 - free_page((unsigned long)axbuf[i]); 887 - err_free_xbuf: 888 - for (i = 0; i < XBUFSIZE && xbuf[i]; i++) 889 - free_page((unsigned long)xbuf[i]); 890 2570 err_free_tv: 891 2571 for (i = 0; i < TVMEMSIZE && tvmem[i]; i++) 892 2572 free_page((unsigned long)tvmem[i]);
+6 -8707
crypto/tcrypt.h
··· 17 17 #ifndef _CRYPTO_TCRYPT_H 18 18 #define _CRYPTO_TCRYPT_H 19 19 20 - #define MAX_DIGEST_SIZE 64 21 - #define MAX_TAP 8 22 - 23 - #define MAX_KEYLEN 56 24 - #define MAX_IVLEN 32 25 - 26 - struct hash_testvec { 27 - /* only used with keyed hash algorithms */ 28 - char *key; 29 - char *plaintext; 30 - char *digest; 31 - unsigned char tap[MAX_TAP]; 32 - unsigned char psize; 33 - unsigned char np; 34 - unsigned char ksize; 35 - }; 36 - 37 - struct cipher_testvec { 38 - char *key; 39 - char *iv; 40 - char *input; 41 - char *result; 42 - unsigned short tap[MAX_TAP]; 43 - int np; 44 - unsigned char fail; 45 - unsigned char wk; /* weak key flag */ 46 - unsigned char klen; 47 - unsigned short ilen; 48 - unsigned short rlen; 49 - }; 50 - 51 - struct aead_testvec { 52 - char *key; 53 - char *iv; 54 - char *input; 55 - char *assoc; 56 - char *result; 57 - unsigned char tap[MAX_TAP]; 58 - unsigned char atap[MAX_TAP]; 59 - int np; 60 - int anp; 61 - unsigned char fail; 62 - unsigned char wk; /* weak key flag */ 63 - unsigned char klen; 64 - unsigned short ilen; 65 - unsigned short alen; 66 - unsigned short rlen; 20 + struct cipher_speed_template { 21 + const char *key; 22 + unsigned int klen; 67 23 }; 68 24 69 25 struct hash_speed { ··· 27 71 unsigned int plen; /* per-update length */ 28 72 }; 29 73 30 - static char zeroed_string[48]; 31 - 32 - /* 33 - * MD4 test vectors from RFC1320 34 - */ 35 - #define MD4_TEST_VECTORS 7 36 - 37 - static struct hash_testvec md4_tv_template [] = { 38 - { 39 - .plaintext = "", 40 - .digest = "\x31\xd6\xcf\xe0\xd1\x6a\xe9\x31" 41 - "\xb7\x3c\x59\xd7\xe0\xc0\x89\xc0", 42 - }, { 43 - .plaintext = "a", 44 - .psize = 1, 45 - .digest = "\xbd\xe5\x2c\xb3\x1d\xe3\x3e\x46" 46 - "\x24\x5e\x05\xfb\xdb\xd6\xfb\x24", 47 - }, { 48 - .plaintext = "abc", 49 - .psize = 3, 50 - .digest = "\xa4\x48\x01\x7a\xaf\x21\xd8\x52" 51 - "\x5f\xc1\x0a\xe8\x7a\xa6\x72\x9d", 52 - }, { 53 - .plaintext = "message digest", 54 - .psize = 14, 55 - .digest = "\xd9\x13\x0a\x81\x64\x54\x9f\xe8" 56 - "\x18\x87\x48\x06\xe1\xc7\x01\x4b", 57 - }, { 58 - .plaintext = "abcdefghijklmnopqrstuvwxyz", 59 - .psize = 26, 60 - .digest = "\xd7\x9e\x1c\x30\x8a\xa5\xbb\xcd" 61 - "\xee\xa8\xed\x63\xdf\x41\x2d\xa9", 62 - .np = 2, 63 - .tap = { 13, 13 }, 64 - }, { 65 - .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", 66 - .psize = 62, 67 - .digest = "\x04\x3f\x85\x82\xf2\x41\xdb\x35" 68 - "\x1c\xe6\x27\xe1\x53\xe7\xf0\xe4", 69 - }, { 70 - .plaintext = "123456789012345678901234567890123456789012345678901234567890123" 71 - "45678901234567890", 72 - .psize = 80, 73 - .digest = "\xe3\x3b\x4d\xdc\x9c\x38\xf2\x19" 74 - "\x9c\x3e\x7b\x16\x4f\xcc\x05\x36", 75 - }, 76 - }; 77 - 78 - /* 79 - * MD5 test vectors from RFC1321 80 - */ 81 - #define MD5_TEST_VECTORS 7 82 - 83 - static struct hash_testvec md5_tv_template[] = { 84 - { 85 - .digest = "\xd4\x1d\x8c\xd9\x8f\x00\xb2\x04" 86 - "\xe9\x80\x09\x98\xec\xf8\x42\x7e", 87 - }, { 88 - .plaintext = "a", 89 - .psize = 1, 90 - .digest = "\x0c\xc1\x75\xb9\xc0\xf1\xb6\xa8" 91 - "\x31\xc3\x99\xe2\x69\x77\x26\x61", 92 - }, { 93 - .plaintext = "abc", 94 - .psize = 3, 95 - .digest = "\x90\x01\x50\x98\x3c\xd2\x4f\xb0" 96 - "\xd6\x96\x3f\x7d\x28\xe1\x7f\x72", 97 - }, { 98 - .plaintext = "message digest", 99 - .psize = 14, 100 - .digest = "\xf9\x6b\x69\x7d\x7c\xb7\x93\x8d" 101 - "\x52\x5a\x2f\x31\xaa\xf1\x61\xd0", 102 - }, { 103 - .plaintext = "abcdefghijklmnopqrstuvwxyz", 104 - .psize = 26, 105 - .digest = "\xc3\xfc\xd3\xd7\x61\x92\xe4\x00" 106 - "\x7d\xfb\x49\x6c\xca\x67\xe1\x3b", 107 - .np = 2, 108 - .tap = {13, 13} 109 - }, { 110 - .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", 111 - .psize = 62, 112 - .digest = "\xd1\x74\xab\x98\xd2\x77\xd9\xf5" 113 - "\xa5\x61\x1c\x2c\x9f\x41\x9d\x9f", 114 - }, { 115 - .plaintext = "12345678901234567890123456789012345678901234567890123456789012" 116 - "345678901234567890", 117 - .psize = 80, 118 - .digest = "\x57\xed\xf4\xa2\x2b\xe3\xc9\x55" 119 - "\xac\x49\xda\x2e\x21\x07\xb6\x7a", 120 - } 121 - 122 - }; 123 - 124 - /* 125 - * RIPEMD-128 test vectors from ISO/IEC 10118-3:2004(E) 126 - */ 127 - #define RMD128_TEST_VECTORS 10 128 - 129 - static struct hash_testvec rmd128_tv_template[] = { 130 - { 131 - .digest = "\xcd\xf2\x62\x13\xa1\x50\xdc\x3e" 132 - "\xcb\x61\x0f\x18\xf6\xb3\x8b\x46", 133 - }, { 134 - .plaintext = "a", 135 - .psize = 1, 136 - .digest = "\x86\xbe\x7a\xfa\x33\x9d\x0f\xc7" 137 - "\xcf\xc7\x85\xe7\x2f\x57\x8d\x33", 138 - }, { 139 - .plaintext = "abc", 140 - .psize = 3, 141 - .digest = "\xc1\x4a\x12\x19\x9c\x66\xe4\xba" 142 - "\x84\x63\x6b\x0f\x69\x14\x4c\x77", 143 - }, { 144 - .plaintext = "message digest", 145 - .psize = 14, 146 - .digest = "\x9e\x32\x7b\x3d\x6e\x52\x30\x62" 147 - "\xaf\xc1\x13\x2d\x7d\xf9\xd1\xb8", 148 - }, { 149 - .plaintext = "abcdefghijklmnopqrstuvwxyz", 150 - .psize = 26, 151 - .digest = "\xfd\x2a\xa6\x07\xf7\x1d\xc8\xf5" 152 - "\x10\x71\x49\x22\xb3\x71\x83\x4e", 153 - }, { 154 - .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde" 155 - "fghijklmnopqrstuvwxyz0123456789", 156 - .psize = 62, 157 - .digest = "\xd1\xe9\x59\xeb\x17\x9c\x91\x1f" 158 - "\xae\xa4\x62\x4c\x60\xc5\xc7\x02", 159 - }, { 160 - .plaintext = "1234567890123456789012345678901234567890" 161 - "1234567890123456789012345678901234567890", 162 - .psize = 80, 163 - .digest = "\x3f\x45\xef\x19\x47\x32\xc2\xdb" 164 - "\xb2\xc4\xa2\xc7\x69\x79\x5f\xa3", 165 - }, { 166 - .plaintext = "abcdbcdecdefdefgefghfghighij" 167 - "hijkijkljklmklmnlmnomnopnopq", 168 - .psize = 56, 169 - .digest = "\xa1\xaa\x06\x89\xd0\xfa\xfa\x2d" 170 - "\xdc\x22\xe8\x8b\x49\x13\x3a\x06", 171 - .np = 2, 172 - .tap = { 28, 28 }, 173 - }, { 174 - .plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghi" 175 - "jklmghijklmnhijklmnoijklmnopjklmnopqklmnopqr" 176 - "lmnopqrsmnopqrstnopqrstu", 177 - .psize = 112, 178 - .digest = "\xd4\xec\xc9\x13\xe1\xdf\x77\x6b" 179 - "\xf4\x8d\xe9\xd5\x5b\x1f\x25\x46", 180 - }, { 181 - .plaintext = "abcdbcdecdefdefgefghfghighijhijk", 182 - .psize = 32, 183 - .digest = "\x13\xfc\x13\xe8\xef\xff\x34\x7d" 184 - "\xe1\x93\xff\x46\xdb\xac\xcf\xd4", 185 - } 186 - }; 187 - 188 - /* 189 - * RIPEMD-160 test vectors from ISO/IEC 10118-3:2004(E) 190 - */ 191 - #define RMD160_TEST_VECTORS 10 192 - 193 - static struct hash_testvec rmd160_tv_template[] = { 194 - { 195 - .digest = "\x9c\x11\x85\xa5\xc5\xe9\xfc\x54\x61\x28" 196 - "\x08\x97\x7e\xe8\xf5\x48\xb2\x25\x8d\x31", 197 - }, { 198 - .plaintext = "a", 199 - .psize = 1, 200 - .digest = "\x0b\xdc\x9d\x2d\x25\x6b\x3e\xe9\xda\xae" 201 - "\x34\x7b\xe6\xf4\xdc\x83\x5a\x46\x7f\xfe", 202 - }, { 203 - .plaintext = "abc", 204 - .psize = 3, 205 - .digest = "\x8e\xb2\x08\xf7\xe0\x5d\x98\x7a\x9b\x04" 206 - "\x4a\x8e\x98\xc6\xb0\x87\xf1\x5a\x0b\xfc", 207 - }, { 208 - .plaintext = "message digest", 209 - .psize = 14, 210 - .digest = "\x5d\x06\x89\xef\x49\xd2\xfa\xe5\x72\xb8" 211 - "\x81\xb1\x23\xa8\x5f\xfa\x21\x59\x5f\x36", 212 - }, { 213 - .plaintext = "abcdefghijklmnopqrstuvwxyz", 214 - .psize = 26, 215 - .digest = "\xf7\x1c\x27\x10\x9c\x69\x2c\x1b\x56\xbb" 216 - "\xdc\xeb\x5b\x9d\x28\x65\xb3\x70\x8d\xbc", 217 - }, { 218 - .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde" 219 - "fghijklmnopqrstuvwxyz0123456789", 220 - .psize = 62, 221 - .digest = "\xb0\xe2\x0b\x6e\x31\x16\x64\x02\x86\xed" 222 - "\x3a\x87\xa5\x71\x30\x79\xb2\x1f\x51\x89", 223 - }, { 224 - .plaintext = "1234567890123456789012345678901234567890" 225 - "1234567890123456789012345678901234567890", 226 - .psize = 80, 227 - .digest = "\x9b\x75\x2e\x45\x57\x3d\x4b\x39\xf4\xdb" 228 - "\xd3\x32\x3c\xab\x82\xbf\x63\x32\x6b\xfb", 229 - }, { 230 - .plaintext = "abcdbcdecdefdefgefghfghighij" 231 - "hijkijkljklmklmnlmnomnopnopq", 232 - .psize = 56, 233 - .digest = "\x12\xa0\x53\x38\x4a\x9c\x0c\x88\xe4\x05" 234 - "\xa0\x6c\x27\xdc\xf4\x9a\xda\x62\xeb\x2b", 235 - .np = 2, 236 - .tap = { 28, 28 }, 237 - }, { 238 - .plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghi" 239 - "jklmghijklmnhijklmnoijklmnopjklmnopqklmnopqr" 240 - "lmnopqrsmnopqrstnopqrstu", 241 - .psize = 112, 242 - .digest = "\x6f\x3f\xa3\x9b\x6b\x50\x3c\x38\x4f\x91" 243 - "\x9a\x49\xa7\xaa\x5c\x2c\x08\xbd\xfb\x45", 244 - }, { 245 - .plaintext = "abcdbcdecdefdefgefghfghighijhijk", 246 - .psize = 32, 247 - .digest = "\x94\xc2\x64\x11\x54\x04\xe6\x33\x79\x0d" 248 - "\xfc\xc8\x7b\x58\x7d\x36\x77\x06\x7d\x9f", 249 - } 250 - }; 251 - 252 - /* 253 - * RIPEMD-256 test vectors 254 - */ 255 - #define RMD256_TEST_VECTORS 8 256 - 257 - static struct hash_testvec rmd256_tv_template[] = { 258 - { 259 - .digest = "\x02\xba\x4c\x4e\x5f\x8e\xcd\x18" 260 - "\x77\xfc\x52\xd6\x4d\x30\xe3\x7a" 261 - "\x2d\x97\x74\xfb\x1e\x5d\x02\x63" 262 - "\x80\xae\x01\x68\xe3\xc5\x52\x2d", 263 - }, { 264 - .plaintext = "a", 265 - .psize = 1, 266 - .digest = "\xf9\x33\x3e\x45\xd8\x57\xf5\xd9" 267 - "\x0a\x91\xba\xb7\x0a\x1e\xba\x0c" 268 - "\xfb\x1b\xe4\xb0\x78\x3c\x9a\xcf" 269 - "\xcd\x88\x3a\x91\x34\x69\x29\x25", 270 - }, { 271 - .plaintext = "abc", 272 - .psize = 3, 273 - .digest = "\xaf\xbd\x6e\x22\x8b\x9d\x8c\xbb" 274 - "\xce\xf5\xca\x2d\x03\xe6\xdb\xa1" 275 - "\x0a\xc0\xbc\x7d\xcb\xe4\x68\x0e" 276 - "\x1e\x42\xd2\xe9\x75\x45\x9b\x65", 277 - }, { 278 - .plaintext = "message digest", 279 - .psize = 14, 280 - .digest = "\x87\xe9\x71\x75\x9a\x1c\xe4\x7a" 281 - "\x51\x4d\x5c\x91\x4c\x39\x2c\x90" 282 - "\x18\xc7\xc4\x6b\xc1\x44\x65\x55" 283 - "\x4a\xfc\xdf\x54\xa5\x07\x0c\x0e", 284 - }, { 285 - .plaintext = "abcdefghijklmnopqrstuvwxyz", 286 - .psize = 26, 287 - .digest = "\x64\x9d\x30\x34\x75\x1e\xa2\x16" 288 - "\x77\x6b\xf9\xa1\x8a\xcc\x81\xbc" 289 - "\x78\x96\x11\x8a\x51\x97\x96\x87" 290 - "\x82\xdd\x1f\xd9\x7d\x8d\x51\x33", 291 - }, { 292 - .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde" 293 - "fghijklmnopqrstuvwxyz0123456789", 294 - .psize = 62, 295 - .digest = "\x57\x40\xa4\x08\xac\x16\xb7\x20" 296 - "\xb8\x44\x24\xae\x93\x1c\xbb\x1f" 297 - "\xe3\x63\xd1\xd0\xbf\x40\x17\xf1" 298 - "\xa8\x9f\x7e\xa6\xde\x77\xa0\xb8", 299 - }, { 300 - .plaintext = "1234567890123456789012345678901234567890" 301 - "1234567890123456789012345678901234567890", 302 - .psize = 80, 303 - .digest = "\x06\xfd\xcc\x7a\x40\x95\x48\xaa" 304 - "\xf9\x13\x68\xc0\x6a\x62\x75\xb5" 305 - "\x53\xe3\xf0\x99\xbf\x0e\xa4\xed" 306 - "\xfd\x67\x78\xdf\x89\xa8\x90\xdd", 307 - }, { 308 - .plaintext = "abcdbcdecdefdefgefghfghighij" 309 - "hijkijkljklmklmnlmnomnopnopq", 310 - .psize = 56, 311 - .digest = "\x38\x43\x04\x55\x83\xaa\xc6\xc8" 312 - "\xc8\xd9\x12\x85\x73\xe7\xa9\x80" 313 - "\x9a\xfb\x2a\x0f\x34\xcc\xc3\x6e" 314 - "\xa9\xe7\x2f\x16\xf6\x36\x8e\x3f", 315 - .np = 2, 316 - .tap = { 28, 28 }, 317 - } 318 - }; 319 - 320 - /* 321 - * RIPEMD-320 test vectors 322 - */ 323 - #define RMD320_TEST_VECTORS 8 324 - 325 - static struct hash_testvec rmd320_tv_template[] = { 326 - { 327 - .digest = "\x22\xd6\x5d\x56\x61\x53\x6c\xdc\x75\xc1" 328 - "\xfd\xf5\xc6\xde\x7b\x41\xb9\xf2\x73\x25" 329 - "\xeb\xc6\x1e\x85\x57\x17\x7d\x70\x5a\x0e" 330 - "\xc8\x80\x15\x1c\x3a\x32\xa0\x08\x99\xb8", 331 - }, { 332 - .plaintext = "a", 333 - .psize = 1, 334 - .digest = "\xce\x78\x85\x06\x38\xf9\x26\x58\xa5\xa5" 335 - "\x85\x09\x75\x79\x92\x6d\xda\x66\x7a\x57" 336 - "\x16\x56\x2c\xfc\xf6\xfb\xe7\x7f\x63\x54" 337 - "\x2f\x99\xb0\x47\x05\xd6\x97\x0d\xff\x5d", 338 - }, { 339 - .plaintext = "abc", 340 - .psize = 3, 341 - .digest = "\xde\x4c\x01\xb3\x05\x4f\x89\x30\xa7\x9d" 342 - "\x09\xae\x73\x8e\x92\x30\x1e\x5a\x17\x08" 343 - "\x5b\xef\xfd\xc1\xb8\xd1\x16\x71\x3e\x74" 344 - "\xf8\x2f\xa9\x42\xd6\x4c\xdb\xc4\x68\x2d", 345 - }, { 346 - .plaintext = "message digest", 347 - .psize = 14, 348 - .digest = "\x3a\x8e\x28\x50\x2e\xd4\x5d\x42\x2f\x68" 349 - "\x84\x4f\x9d\xd3\x16\xe7\xb9\x85\x33\xfa" 350 - "\x3f\x2a\x91\xd2\x9f\x84\xd4\x25\xc8\x8d" 351 - "\x6b\x4e\xff\x72\x7d\xf6\x6a\x7c\x01\x97", 352 - }, { 353 - .plaintext = "abcdefghijklmnopqrstuvwxyz", 354 - .psize = 26, 355 - .digest = "\xca\xbd\xb1\x81\x0b\x92\x47\x0a\x20\x93" 356 - "\xaa\x6b\xce\x05\x95\x2c\x28\x34\x8c\xf4" 357 - "\x3f\xf6\x08\x41\x97\x51\x66\xbb\x40\xed" 358 - "\x23\x40\x04\xb8\x82\x44\x63\xe6\xb0\x09", 359 - }, { 360 - .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde" 361 - "fghijklmnopqrstuvwxyz0123456789", 362 - .psize = 62, 363 - .digest = "\xed\x54\x49\x40\xc8\x6d\x67\xf2\x50\xd2" 364 - "\x32\xc3\x0b\x7b\x3e\x57\x70\xe0\xc6\x0c" 365 - "\x8c\xb9\xa4\xca\xfe\x3b\x11\x38\x8a\xf9" 366 - "\x92\x0e\x1b\x99\x23\x0b\x84\x3c\x86\xa4", 367 - }, { 368 - .plaintext = "1234567890123456789012345678901234567890" 369 - "1234567890123456789012345678901234567890", 370 - .psize = 80, 371 - .digest = "\x55\x78\x88\xaf\x5f\x6d\x8e\xd6\x2a\xb6" 372 - "\x69\x45\xc6\xd2\xa0\xa4\x7e\xcd\x53\x41" 373 - "\xe9\x15\xeb\x8f\xea\x1d\x05\x24\x95\x5f" 374 - "\x82\x5d\xc7\x17\xe4\xa0\x08\xab\x2d\x42", 375 - }, { 376 - .plaintext = "abcdbcdecdefdefgefghfghighij" 377 - "hijkijkljklmklmnlmnomnopnopq", 378 - .psize = 56, 379 - .digest = "\xd0\x34\xa7\x95\x0c\xf7\x22\x02\x1b\xa4" 380 - "\xb8\x4d\xf7\x69\xa5\xde\x20\x60\xe2\x59" 381 - "\xdf\x4c\x9b\xb4\xa4\x26\x8c\x0e\x93\x5b" 382 - "\xbc\x74\x70\xa9\x69\xc9\xd0\x72\xa1\xac", 383 - .np = 2, 384 - .tap = { 28, 28 }, 385 - } 386 - }; 387 - 388 - /* 389 - * SHA1 test vectors from from FIPS PUB 180-1 390 - */ 391 - #define SHA1_TEST_VECTORS 2 392 - 393 - static struct hash_testvec sha1_tv_template[] = { 394 - { 395 - .plaintext = "abc", 396 - .psize = 3, 397 - .digest = "\xa9\x99\x3e\x36\x47\x06\x81\x6a\xba\x3e" 398 - "\x25\x71\x78\x50\xc2\x6c\x9c\xd0\xd8\x9d", 399 - }, { 400 - .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 401 - .psize = 56, 402 - .digest = "\x84\x98\x3e\x44\x1c\x3b\xd2\x6e\xba\xae" 403 - "\x4a\xa1\xf9\x51\x29\xe5\xe5\x46\x70\xf1", 404 - .np = 2, 405 - .tap = { 28, 28 } 406 - } 407 - }; 408 - 409 - 410 - /* 411 - * SHA224 test vectors from from FIPS PUB 180-2 412 - */ 413 - #define SHA224_TEST_VECTORS 2 414 - 415 - static struct hash_testvec sha224_tv_template[] = { 416 - { 417 - .plaintext = "abc", 418 - .psize = 3, 419 - .digest = "\x23\x09\x7D\x22\x34\x05\xD8\x22" 420 - "\x86\x42\xA4\x77\xBD\xA2\x55\xB3" 421 - "\x2A\xAD\xBC\xE4\xBD\xA0\xB3\xF7" 422 - "\xE3\x6C\x9D\xA7", 423 - }, { 424 - .plaintext = 425 - "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 426 - .psize = 56, 427 - .digest = "\x75\x38\x8B\x16\x51\x27\x76\xCC" 428 - "\x5D\xBA\x5D\xA1\xFD\x89\x01\x50" 429 - "\xB0\xC6\x45\x5C\xB4\xF5\x8B\x19" 430 - "\x52\x52\x25\x25", 431 - .np = 2, 432 - .tap = { 28, 28 } 433 - } 434 - }; 435 - 436 - /* 437 - * SHA256 test vectors from from NIST 438 - */ 439 - #define SHA256_TEST_VECTORS 2 440 - 441 - static struct hash_testvec sha256_tv_template[] = { 442 - { 443 - .plaintext = "abc", 444 - .psize = 3, 445 - .digest = "\xba\x78\x16\xbf\x8f\x01\xcf\xea" 446 - "\x41\x41\x40\xde\x5d\xae\x22\x23" 447 - "\xb0\x03\x61\xa3\x96\x17\x7a\x9c" 448 - "\xb4\x10\xff\x61\xf2\x00\x15\xad", 449 - }, { 450 - .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 451 - .psize = 56, 452 - .digest = "\x24\x8d\x6a\x61\xd2\x06\x38\xb8" 453 - "\xe5\xc0\x26\x93\x0c\x3e\x60\x39" 454 - "\xa3\x3c\xe4\x59\x64\xff\x21\x67" 455 - "\xf6\xec\xed\xd4\x19\xdb\x06\xc1", 456 - .np = 2, 457 - .tap = { 28, 28 } 458 - }, 459 - }; 460 - 461 - /* 462 - * SHA384 test vectors from from NIST and kerneli 463 - */ 464 - #define SHA384_TEST_VECTORS 4 465 - 466 - static struct hash_testvec sha384_tv_template[] = { 467 - { 468 - .plaintext= "abc", 469 - .psize = 3, 470 - .digest = "\xcb\x00\x75\x3f\x45\xa3\x5e\x8b" 471 - "\xb5\xa0\x3d\x69\x9a\xc6\x50\x07" 472 - "\x27\x2c\x32\xab\x0e\xde\xd1\x63" 473 - "\x1a\x8b\x60\x5a\x43\xff\x5b\xed" 474 - "\x80\x86\x07\x2b\xa1\xe7\xcc\x23" 475 - "\x58\xba\xec\xa1\x34\xc8\x25\xa7", 476 - }, { 477 - .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 478 - .psize = 56, 479 - .digest = "\x33\x91\xfd\xdd\xfc\x8d\xc7\x39" 480 - "\x37\x07\xa6\x5b\x1b\x47\x09\x39" 481 - "\x7c\xf8\xb1\xd1\x62\xaf\x05\xab" 482 - "\xfe\x8f\x45\x0d\xe5\xf3\x6b\xc6" 483 - "\xb0\x45\x5a\x85\x20\xbc\x4e\x6f" 484 - "\x5f\xe9\x5b\x1f\xe3\xc8\x45\x2b", 485 - }, { 486 - .plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmn" 487 - "hijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu", 488 - .psize = 112, 489 - .digest = "\x09\x33\x0c\x33\xf7\x11\x47\xe8" 490 - "\x3d\x19\x2f\xc7\x82\xcd\x1b\x47" 491 - "\x53\x11\x1b\x17\x3b\x3b\x05\xd2" 492 - "\x2f\xa0\x80\x86\xe3\xb0\xf7\x12" 493 - "\xfc\xc7\xc7\x1a\x55\x7e\x2d\xb9" 494 - "\x66\xc3\xe9\xfa\x91\x74\x60\x39", 495 - }, { 496 - .plaintext = "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd" 497 - "efghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz", 498 - .psize = 104, 499 - .digest = "\x3d\x20\x89\x73\xab\x35\x08\xdb" 500 - "\xbd\x7e\x2c\x28\x62\xba\x29\x0a" 501 - "\xd3\x01\x0e\x49\x78\xc1\x98\xdc" 502 - "\x4d\x8f\xd0\x14\xe5\x82\x82\x3a" 503 - "\x89\xe1\x6f\x9b\x2a\x7b\xbc\x1a" 504 - "\xc9\x38\xe2\xd1\x99\xe8\xbe\xa4", 505 - .np = 4, 506 - .tap = { 26, 26, 26, 26 } 507 - }, 508 - }; 509 - 510 - /* 511 - * SHA512 test vectors from from NIST and kerneli 512 - */ 513 - #define SHA512_TEST_VECTORS 4 514 - 515 - static struct hash_testvec sha512_tv_template[] = { 516 - { 517 - .plaintext = "abc", 518 - .psize = 3, 519 - .digest = "\xdd\xaf\x35\xa1\x93\x61\x7a\xba" 520 - "\xcc\x41\x73\x49\xae\x20\x41\x31" 521 - "\x12\xe6\xfa\x4e\x89\xa9\x7e\xa2" 522 - "\x0a\x9e\xee\xe6\x4b\x55\xd3\x9a" 523 - "\x21\x92\x99\x2a\x27\x4f\xc1\xa8" 524 - "\x36\xba\x3c\x23\xa3\xfe\xeb\xbd" 525 - "\x45\x4d\x44\x23\x64\x3c\xe8\x0e" 526 - "\x2a\x9a\xc9\x4f\xa5\x4c\xa4\x9f", 527 - }, { 528 - .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 529 - .psize = 56, 530 - .digest = "\x20\x4a\x8f\xc6\xdd\xa8\x2f\x0a" 531 - "\x0c\xed\x7b\xeb\x8e\x08\xa4\x16" 532 - "\x57\xc1\x6e\xf4\x68\xb2\x28\xa8" 533 - "\x27\x9b\xe3\x31\xa7\x03\xc3\x35" 534 - "\x96\xfd\x15\xc1\x3b\x1b\x07\xf9" 535 - "\xaa\x1d\x3b\xea\x57\x78\x9c\xa0" 536 - "\x31\xad\x85\xc7\xa7\x1d\xd7\x03" 537 - "\x54\xec\x63\x12\x38\xca\x34\x45", 538 - }, { 539 - .plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmn" 540 - "hijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu", 541 - .psize = 112, 542 - .digest = "\x8e\x95\x9b\x75\xda\xe3\x13\xda" 543 - "\x8c\xf4\xf7\x28\x14\xfc\x14\x3f" 544 - "\x8f\x77\x79\xc6\xeb\x9f\x7f\xa1" 545 - "\x72\x99\xae\xad\xb6\x88\x90\x18" 546 - "\x50\x1d\x28\x9e\x49\x00\xf7\xe4" 547 - "\x33\x1b\x99\xde\xc4\xb5\x43\x3a" 548 - "\xc7\xd3\x29\xee\xb6\xdd\x26\x54" 549 - "\x5e\x96\xe5\x5b\x87\x4b\xe9\x09", 550 - }, { 551 - .plaintext = "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd" 552 - "efghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz", 553 - .psize = 104, 554 - .digest = "\x93\x0d\x0c\xef\xcb\x30\xff\x11" 555 - "\x33\xb6\x89\x81\x21\xf1\xcf\x3d" 556 - "\x27\x57\x8a\xfc\xaf\xe8\x67\x7c" 557 - "\x52\x57\xcf\x06\x99\x11\xf7\x5d" 558 - "\x8f\x58\x31\xb5\x6e\xbf\xda\x67" 559 - "\xb2\x78\xe6\x6d\xff\x8b\x84\xfe" 560 - "\x2b\x28\x70\xf7\x42\xa5\x80\xd8" 561 - "\xed\xb4\x19\x87\x23\x28\x50\xc9", 562 - .np = 4, 563 - .tap = { 26, 26, 26, 26 } 564 - }, 565 - }; 566 - 567 - 568 - /* 569 - * WHIRLPOOL test vectors from Whirlpool package 570 - * by Vincent Rijmen and Paulo S. L. M. Barreto as part of the NESSIE 571 - * submission 572 - */ 573 - #define WP512_TEST_VECTORS 8 574 - 575 - static struct hash_testvec wp512_tv_template[] = { 576 - { 577 - .plaintext = "", 578 - .psize = 0, 579 - .digest = "\x19\xFA\x61\xD7\x55\x22\xA4\x66" 580 - "\x9B\x44\xE3\x9C\x1D\x2E\x17\x26" 581 - "\xC5\x30\x23\x21\x30\xD4\x07\xF8" 582 - "\x9A\xFE\xE0\x96\x49\x97\xF7\xA7" 583 - "\x3E\x83\xBE\x69\x8B\x28\x8F\xEB" 584 - "\xCF\x88\xE3\xE0\x3C\x4F\x07\x57" 585 - "\xEA\x89\x64\xE5\x9B\x63\xD9\x37" 586 - "\x08\xB1\x38\xCC\x42\xA6\x6E\xB3", 587 - 588 - 589 - }, { 590 - .plaintext = "a", 591 - .psize = 1, 592 - .digest = "\x8A\xCA\x26\x02\x79\x2A\xEC\x6F" 593 - "\x11\xA6\x72\x06\x53\x1F\xB7\xD7" 594 - "\xF0\xDF\xF5\x94\x13\x14\x5E\x69" 595 - "\x73\xC4\x50\x01\xD0\x08\x7B\x42" 596 - "\xD1\x1B\xC6\x45\x41\x3A\xEF\xF6" 597 - "\x3A\x42\x39\x1A\x39\x14\x5A\x59" 598 - "\x1A\x92\x20\x0D\x56\x01\x95\xE5" 599 - "\x3B\x47\x85\x84\xFD\xAE\x23\x1A", 600 - }, { 601 - .plaintext = "abc", 602 - .psize = 3, 603 - .digest = "\x4E\x24\x48\xA4\xC6\xF4\x86\xBB" 604 - "\x16\xB6\x56\x2C\x73\xB4\x02\x0B" 605 - "\xF3\x04\x3E\x3A\x73\x1B\xCE\x72" 606 - "\x1A\xE1\xB3\x03\xD9\x7E\x6D\x4C" 607 - "\x71\x81\xEE\xBD\xB6\xC5\x7E\x27" 608 - "\x7D\x0E\x34\x95\x71\x14\xCB\xD6" 609 - "\xC7\x97\xFC\x9D\x95\xD8\xB5\x82" 610 - "\xD2\x25\x29\x20\x76\xD4\xEE\xF5", 611 - }, { 612 - .plaintext = "message digest", 613 - .psize = 14, 614 - .digest = "\x37\x8C\x84\xA4\x12\x6E\x2D\xC6" 615 - "\xE5\x6D\xCC\x74\x58\x37\x7A\xAC" 616 - "\x83\x8D\x00\x03\x22\x30\xF5\x3C" 617 - "\xE1\xF5\x70\x0C\x0F\xFB\x4D\x3B" 618 - "\x84\x21\x55\x76\x59\xEF\x55\xC1" 619 - "\x06\xB4\xB5\x2A\xC5\xA4\xAA\xA6" 620 - "\x92\xED\x92\x00\x52\x83\x8F\x33" 621 - "\x62\xE8\x6D\xBD\x37\xA8\x90\x3E", 622 - }, { 623 - .plaintext = "abcdefghijklmnopqrstuvwxyz", 624 - .psize = 26, 625 - .digest = "\xF1\xD7\x54\x66\x26\x36\xFF\xE9" 626 - "\x2C\x82\xEB\xB9\x21\x2A\x48\x4A" 627 - "\x8D\x38\x63\x1E\xAD\x42\x38\xF5" 628 - "\x44\x2E\xE1\x3B\x80\x54\xE4\x1B" 629 - "\x08\xBF\x2A\x92\x51\xC3\x0B\x6A" 630 - "\x0B\x8A\xAE\x86\x17\x7A\xB4\xA6" 631 - "\xF6\x8F\x67\x3E\x72\x07\x86\x5D" 632 - "\x5D\x98\x19\xA3\xDB\xA4\xEB\x3B", 633 - }, { 634 - .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" 635 - "abcdefghijklmnopqrstuvwxyz0123456789", 636 - .psize = 62, 637 - .digest = "\xDC\x37\xE0\x08\xCF\x9E\xE6\x9B" 638 - "\xF1\x1F\x00\xED\x9A\xBA\x26\x90" 639 - "\x1D\xD7\xC2\x8C\xDE\xC0\x66\xCC" 640 - "\x6A\xF4\x2E\x40\xF8\x2F\x3A\x1E" 641 - "\x08\xEB\xA2\x66\x29\x12\x9D\x8F" 642 - "\xB7\xCB\x57\x21\x1B\x92\x81\xA6" 643 - "\x55\x17\xCC\x87\x9D\x7B\x96\x21" 644 - "\x42\xC6\x5F\x5A\x7A\xF0\x14\x67", 645 - }, { 646 - .plaintext = "1234567890123456789012345678901234567890" 647 - "1234567890123456789012345678901234567890", 648 - .psize = 80, 649 - .digest = "\x46\x6E\xF1\x8B\xAB\xB0\x15\x4D" 650 - "\x25\xB9\xD3\x8A\x64\x14\xF5\xC0" 651 - "\x87\x84\x37\x2B\xCC\xB2\x04\xD6" 652 - "\x54\x9C\x4A\xFA\xDB\x60\x14\x29" 653 - "\x4D\x5B\xD8\xDF\x2A\x6C\x44\xE5" 654 - "\x38\xCD\x04\x7B\x26\x81\xA5\x1A" 655 - "\x2C\x60\x48\x1E\x88\xC5\xA2\x0B" 656 - "\x2C\x2A\x80\xCF\x3A\x9A\x08\x3B", 657 - }, { 658 - .plaintext = "abcdbcdecdefdefgefghfghighijhijk", 659 - .psize = 32, 660 - .digest = "\x2A\x98\x7E\xA4\x0F\x91\x70\x61" 661 - "\xF5\xD6\xF0\xA0\xE4\x64\x4F\x48" 662 - "\x8A\x7A\x5A\x52\xDE\xEE\x65\x62" 663 - "\x07\xC5\x62\xF9\x88\xE9\x5C\x69" 664 - "\x16\xBD\xC8\x03\x1B\xC5\xBE\x1B" 665 - "\x7B\x94\x76\x39\xFE\x05\x0B\x56" 666 - "\x93\x9B\xAA\xA0\xAD\xFF\x9A\xE6" 667 - "\x74\x5B\x7B\x18\x1C\x3B\xE3\xFD", 668 - }, 669 - }; 670 - 671 - #define WP384_TEST_VECTORS 8 672 - 673 - static struct hash_testvec wp384_tv_template[] = { 674 - { 675 - .plaintext = "", 676 - .psize = 0, 677 - .digest = "\x19\xFA\x61\xD7\x55\x22\xA4\x66" 678 - "\x9B\x44\xE3\x9C\x1D\x2E\x17\x26" 679 - "\xC5\x30\x23\x21\x30\xD4\x07\xF8" 680 - "\x9A\xFE\xE0\x96\x49\x97\xF7\xA7" 681 - "\x3E\x83\xBE\x69\x8B\x28\x8F\xEB" 682 - "\xCF\x88\xE3\xE0\x3C\x4F\x07\x57", 683 - 684 - 685 - }, { 686 - .plaintext = "a", 687 - .psize = 1, 688 - .digest = "\x8A\xCA\x26\x02\x79\x2A\xEC\x6F" 689 - "\x11\xA6\x72\x06\x53\x1F\xB7\xD7" 690 - "\xF0\xDF\xF5\x94\x13\x14\x5E\x69" 691 - "\x73\xC4\x50\x01\xD0\x08\x7B\x42" 692 - "\xD1\x1B\xC6\x45\x41\x3A\xEF\xF6" 693 - "\x3A\x42\x39\x1A\x39\x14\x5A\x59", 694 - }, { 695 - .plaintext = "abc", 696 - .psize = 3, 697 - .digest = "\x4E\x24\x48\xA4\xC6\xF4\x86\xBB" 698 - "\x16\xB6\x56\x2C\x73\xB4\x02\x0B" 699 - "\xF3\x04\x3E\x3A\x73\x1B\xCE\x72" 700 - "\x1A\xE1\xB3\x03\xD9\x7E\x6D\x4C" 701 - "\x71\x81\xEE\xBD\xB6\xC5\x7E\x27" 702 - "\x7D\x0E\x34\x95\x71\x14\xCB\xD6", 703 - }, { 704 - .plaintext = "message digest", 705 - .psize = 14, 706 - .digest = "\x37\x8C\x84\xA4\x12\x6E\x2D\xC6" 707 - "\xE5\x6D\xCC\x74\x58\x37\x7A\xAC" 708 - "\x83\x8D\x00\x03\x22\x30\xF5\x3C" 709 - "\xE1\xF5\x70\x0C\x0F\xFB\x4D\x3B" 710 - "\x84\x21\x55\x76\x59\xEF\x55\xC1" 711 - "\x06\xB4\xB5\x2A\xC5\xA4\xAA\xA6", 712 - }, { 713 - .plaintext = "abcdefghijklmnopqrstuvwxyz", 714 - .psize = 26, 715 - .digest = "\xF1\xD7\x54\x66\x26\x36\xFF\xE9" 716 - "\x2C\x82\xEB\xB9\x21\x2A\x48\x4A" 717 - "\x8D\x38\x63\x1E\xAD\x42\x38\xF5" 718 - "\x44\x2E\xE1\x3B\x80\x54\xE4\x1B" 719 - "\x08\xBF\x2A\x92\x51\xC3\x0B\x6A" 720 - "\x0B\x8A\xAE\x86\x17\x7A\xB4\xA6", 721 - }, { 722 - .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" 723 - "abcdefghijklmnopqrstuvwxyz0123456789", 724 - .psize = 62, 725 - .digest = "\xDC\x37\xE0\x08\xCF\x9E\xE6\x9B" 726 - "\xF1\x1F\x00\xED\x9A\xBA\x26\x90" 727 - "\x1D\xD7\xC2\x8C\xDE\xC0\x66\xCC" 728 - "\x6A\xF4\x2E\x40\xF8\x2F\x3A\x1E" 729 - "\x08\xEB\xA2\x66\x29\x12\x9D\x8F" 730 - "\xB7\xCB\x57\x21\x1B\x92\x81\xA6", 731 - }, { 732 - .plaintext = "1234567890123456789012345678901234567890" 733 - "1234567890123456789012345678901234567890", 734 - .psize = 80, 735 - .digest = "\x46\x6E\xF1\x8B\xAB\xB0\x15\x4D" 736 - "\x25\xB9\xD3\x8A\x64\x14\xF5\xC0" 737 - "\x87\x84\x37\x2B\xCC\xB2\x04\xD6" 738 - "\x54\x9C\x4A\xFA\xDB\x60\x14\x29" 739 - "\x4D\x5B\xD8\xDF\x2A\x6C\x44\xE5" 740 - "\x38\xCD\x04\x7B\x26\x81\xA5\x1A", 741 - }, { 742 - .plaintext = "abcdbcdecdefdefgefghfghighijhijk", 743 - .psize = 32, 744 - .digest = "\x2A\x98\x7E\xA4\x0F\x91\x70\x61" 745 - "\xF5\xD6\xF0\xA0\xE4\x64\x4F\x48" 746 - "\x8A\x7A\x5A\x52\xDE\xEE\x65\x62" 747 - "\x07\xC5\x62\xF9\x88\xE9\x5C\x69" 748 - "\x16\xBD\xC8\x03\x1B\xC5\xBE\x1B" 749 - "\x7B\x94\x76\x39\xFE\x05\x0B\x56", 750 - }, 751 - }; 752 - 753 - #define WP256_TEST_VECTORS 8 754 - 755 - static struct hash_testvec wp256_tv_template[] = { 756 - { 757 - .plaintext = "", 758 - .psize = 0, 759 - .digest = "\x19\xFA\x61\xD7\x55\x22\xA4\x66" 760 - "\x9B\x44\xE3\x9C\x1D\x2E\x17\x26" 761 - "\xC5\x30\x23\x21\x30\xD4\x07\xF8" 762 - "\x9A\xFE\xE0\x96\x49\x97\xF7\xA7", 763 - 764 - 765 - }, { 766 - .plaintext = "a", 767 - .psize = 1, 768 - .digest = "\x8A\xCA\x26\x02\x79\x2A\xEC\x6F" 769 - "\x11\xA6\x72\x06\x53\x1F\xB7\xD7" 770 - "\xF0\xDF\xF5\x94\x13\x14\x5E\x69" 771 - "\x73\xC4\x50\x01\xD0\x08\x7B\x42", 772 - }, { 773 - .plaintext = "abc", 774 - .psize = 3, 775 - .digest = "\x4E\x24\x48\xA4\xC6\xF4\x86\xBB" 776 - "\x16\xB6\x56\x2C\x73\xB4\x02\x0B" 777 - "\xF3\x04\x3E\x3A\x73\x1B\xCE\x72" 778 - "\x1A\xE1\xB3\x03\xD9\x7E\x6D\x4C", 779 - }, { 780 - .plaintext = "message digest", 781 - .psize = 14, 782 - .digest = "\x37\x8C\x84\xA4\x12\x6E\x2D\xC6" 783 - "\xE5\x6D\xCC\x74\x58\x37\x7A\xAC" 784 - "\x83\x8D\x00\x03\x22\x30\xF5\x3C" 785 - "\xE1\xF5\x70\x0C\x0F\xFB\x4D\x3B", 786 - }, { 787 - .plaintext = "abcdefghijklmnopqrstuvwxyz", 788 - .psize = 26, 789 - .digest = "\xF1\xD7\x54\x66\x26\x36\xFF\xE9" 790 - "\x2C\x82\xEB\xB9\x21\x2A\x48\x4A" 791 - "\x8D\x38\x63\x1E\xAD\x42\x38\xF5" 792 - "\x44\x2E\xE1\x3B\x80\x54\xE4\x1B", 793 - }, { 794 - .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" 795 - "abcdefghijklmnopqrstuvwxyz0123456789", 796 - .psize = 62, 797 - .digest = "\xDC\x37\xE0\x08\xCF\x9E\xE6\x9B" 798 - "\xF1\x1F\x00\xED\x9A\xBA\x26\x90" 799 - "\x1D\xD7\xC2\x8C\xDE\xC0\x66\xCC" 800 - "\x6A\xF4\x2E\x40\xF8\x2F\x3A\x1E", 801 - }, { 802 - .plaintext = "1234567890123456789012345678901234567890" 803 - "1234567890123456789012345678901234567890", 804 - .psize = 80, 805 - .digest = "\x46\x6E\xF1\x8B\xAB\xB0\x15\x4D" 806 - "\x25\xB9\xD3\x8A\x64\x14\xF5\xC0" 807 - "\x87\x84\x37\x2B\xCC\xB2\x04\xD6" 808 - "\x54\x9C\x4A\xFA\xDB\x60\x14\x29", 809 - }, { 810 - .plaintext = "abcdbcdecdefdefgefghfghighijhijk", 811 - .psize = 32, 812 - .digest = "\x2A\x98\x7E\xA4\x0F\x91\x70\x61" 813 - "\xF5\xD6\xF0\xA0\xE4\x64\x4F\x48" 814 - "\x8A\x7A\x5A\x52\xDE\xEE\x65\x62" 815 - "\x07\xC5\x62\xF9\x88\xE9\x5C\x69", 816 - }, 817 - }; 818 - 819 - /* 820 - * TIGER test vectors from Tiger website 821 - */ 822 - #define TGR192_TEST_VECTORS 6 823 - 824 - static struct hash_testvec tgr192_tv_template[] = { 825 - { 826 - .plaintext = "", 827 - .psize = 0, 828 - .digest = "\x24\xf0\x13\x0c\x63\xac\x93\x32" 829 - "\x16\x16\x6e\x76\xb1\xbb\x92\x5f" 830 - "\xf3\x73\xde\x2d\x49\x58\x4e\x7a", 831 - }, { 832 - .plaintext = "abc", 833 - .psize = 3, 834 - .digest = "\xf2\x58\xc1\xe8\x84\x14\xab\x2a" 835 - "\x52\x7a\xb5\x41\xff\xc5\xb8\xbf" 836 - "\x93\x5f\x7b\x95\x1c\x13\x29\x51", 837 - }, { 838 - .plaintext = "Tiger", 839 - .psize = 5, 840 - .digest = "\x9f\x00\xf5\x99\x07\x23\x00\xdd" 841 - "\x27\x6a\xbb\x38\xc8\xeb\x6d\xec" 842 - "\x37\x79\x0c\x11\x6f\x9d\x2b\xdf", 843 - }, { 844 - .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-", 845 - .psize = 64, 846 - .digest = "\x87\xfb\x2a\x90\x83\x85\x1c\xf7" 847 - "\x47\x0d\x2c\xf8\x10\xe6\xdf\x9e" 848 - "\xb5\x86\x44\x50\x34\xa5\xa3\x86", 849 - }, { 850 - .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ=abcdefghijklmnopqrstuvwxyz+0123456789", 851 - .psize = 64, 852 - .digest = "\x46\x7d\xb8\x08\x63\xeb\xce\x48" 853 - "\x8d\xf1\xcd\x12\x61\x65\x5d\xe9" 854 - "\x57\x89\x65\x65\x97\x5f\x91\x97", 855 - }, { 856 - .plaintext = "Tiger - A Fast New Hash Function, " 857 - "by Ross Anderson and Eli Biham, " 858 - "proceedings of Fast Software Encryption 3, " 859 - "Cambridge, 1996.", 860 - .psize = 125, 861 - .digest = "\x3d\x9a\xeb\x03\xd1\xbd\x1a\x63" 862 - "\x57\xb2\x77\x4d\xfd\x6d\x5b\x24" 863 - "\xdd\x68\x15\x1d\x50\x39\x74\xfc", 864 - }, 865 - }; 866 - 867 - #define TGR160_TEST_VECTORS 6 868 - 869 - static struct hash_testvec tgr160_tv_template[] = { 870 - { 871 - .plaintext = "", 872 - .psize = 0, 873 - .digest = "\x24\xf0\x13\x0c\x63\xac\x93\x32" 874 - "\x16\x16\x6e\x76\xb1\xbb\x92\x5f" 875 - "\xf3\x73\xde\x2d", 876 - }, { 877 - .plaintext = "abc", 878 - .psize = 3, 879 - .digest = "\xf2\x58\xc1\xe8\x84\x14\xab\x2a" 880 - "\x52\x7a\xb5\x41\xff\xc5\xb8\xbf" 881 - "\x93\x5f\x7b\x95", 882 - }, { 883 - .plaintext = "Tiger", 884 - .psize = 5, 885 - .digest = "\x9f\x00\xf5\x99\x07\x23\x00\xdd" 886 - "\x27\x6a\xbb\x38\xc8\xeb\x6d\xec" 887 - "\x37\x79\x0c\x11", 888 - }, { 889 - .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-", 890 - .psize = 64, 891 - .digest = "\x87\xfb\x2a\x90\x83\x85\x1c\xf7" 892 - "\x47\x0d\x2c\xf8\x10\xe6\xdf\x9e" 893 - "\xb5\x86\x44\x50", 894 - }, { 895 - .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ=abcdefghijklmnopqrstuvwxyz+0123456789", 896 - .psize = 64, 897 - .digest = "\x46\x7d\xb8\x08\x63\xeb\xce\x48" 898 - "\x8d\xf1\xcd\x12\x61\x65\x5d\xe9" 899 - "\x57\x89\x65\x65", 900 - }, { 901 - .plaintext = "Tiger - A Fast New Hash Function, " 902 - "by Ross Anderson and Eli Biham, " 903 - "proceedings of Fast Software Encryption 3, " 904 - "Cambridge, 1996.", 905 - .psize = 125, 906 - .digest = "\x3d\x9a\xeb\x03\xd1\xbd\x1a\x63" 907 - "\x57\xb2\x77\x4d\xfd\x6d\x5b\x24" 908 - "\xdd\x68\x15\x1d", 909 - }, 910 - }; 911 - 912 - #define TGR128_TEST_VECTORS 6 913 - 914 - static struct hash_testvec tgr128_tv_template[] = { 915 - { 916 - .plaintext = "", 917 - .psize = 0, 918 - .digest = "\x24\xf0\x13\x0c\x63\xac\x93\x32" 919 - "\x16\x16\x6e\x76\xb1\xbb\x92\x5f", 920 - }, { 921 - .plaintext = "abc", 922 - .psize = 3, 923 - .digest = "\xf2\x58\xc1\xe8\x84\x14\xab\x2a" 924 - "\x52\x7a\xb5\x41\xff\xc5\xb8\xbf", 925 - }, { 926 - .plaintext = "Tiger", 927 - .psize = 5, 928 - .digest = "\x9f\x00\xf5\x99\x07\x23\x00\xdd" 929 - "\x27\x6a\xbb\x38\xc8\xeb\x6d\xec", 930 - }, { 931 - .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-", 932 - .psize = 64, 933 - .digest = "\x87\xfb\x2a\x90\x83\x85\x1c\xf7" 934 - "\x47\x0d\x2c\xf8\x10\xe6\xdf\x9e", 935 - }, { 936 - .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ=abcdefghijklmnopqrstuvwxyz+0123456789", 937 - .psize = 64, 938 - .digest = "\x46\x7d\xb8\x08\x63\xeb\xce\x48" 939 - "\x8d\xf1\xcd\x12\x61\x65\x5d\xe9", 940 - }, { 941 - .plaintext = "Tiger - A Fast New Hash Function, " 942 - "by Ross Anderson and Eli Biham, " 943 - "proceedings of Fast Software Encryption 3, " 944 - "Cambridge, 1996.", 945 - .psize = 125, 946 - .digest = "\x3d\x9a\xeb\x03\xd1\xbd\x1a\x63" 947 - "\x57\xb2\x77\x4d\xfd\x6d\x5b\x24", 948 - }, 949 - }; 950 - 951 - /* 952 - * HMAC-MD5 test vectors from RFC2202 953 - * (These need to be fixed to not use strlen). 954 - */ 955 - #define HMAC_MD5_TEST_VECTORS 7 956 - 957 - static struct hash_testvec hmac_md5_tv_template[] = 958 - { 959 - { 960 - .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b", 961 - .ksize = 16, 962 - .plaintext = "Hi There", 963 - .psize = 8, 964 - .digest = "\x92\x94\x72\x7a\x36\x38\xbb\x1c" 965 - "\x13\xf4\x8e\xf8\x15\x8b\xfc\x9d", 966 - }, { 967 - .key = "Jefe", 968 - .ksize = 4, 969 - .plaintext = "what do ya want for nothing?", 970 - .psize = 28, 971 - .digest = "\x75\x0c\x78\x3e\x6a\xb0\xb5\x03" 972 - "\xea\xa8\x6e\x31\x0a\x5d\xb7\x38", 973 - .np = 2, 974 - .tap = {14, 14} 975 - }, { 976 - .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa", 977 - .ksize = 16, 978 - .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 979 - "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 980 - "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 981 - "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd", 982 - .psize = 50, 983 - .digest = "\x56\xbe\x34\x52\x1d\x14\x4c\x88" 984 - "\xdb\xb8\xc7\x33\xf0\xe8\xb3\xf6", 985 - }, { 986 - .key = "\x01\x02\x03\x04\x05\x06\x07\x08" 987 - "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 988 - "\x11\x12\x13\x14\x15\x16\x17\x18\x19", 989 - .ksize = 25, 990 - .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 991 - "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 992 - "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 993 - "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd", 994 - .psize = 50, 995 - .digest = "\x69\x7e\xaf\x0a\xca\x3a\x3a\xea" 996 - "\x3a\x75\x16\x47\x46\xff\xaa\x79", 997 - }, { 998 - .key = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c", 999 - .ksize = 16, 1000 - .plaintext = "Test With Truncation", 1001 - .psize = 20, 1002 - .digest = "\x56\x46\x1e\xf2\x34\x2e\xdc\x00" 1003 - "\xf9\xba\xb9\x95\x69\x0e\xfd\x4c", 1004 - }, { 1005 - .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1006 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1007 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1008 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1009 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1010 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1011 - "\xaa\xaa", 1012 - .ksize = 80, 1013 - .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First", 1014 - .psize = 54, 1015 - .digest = "\x6b\x1a\xb7\xfe\x4b\xd7\xbf\x8f" 1016 - "\x0b\x62\xe6\xce\x61\xb9\xd0\xcd", 1017 - }, { 1018 - .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1019 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1020 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1021 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1022 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1023 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1024 - "\xaa\xaa", 1025 - .ksize = 80, 1026 - .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One " 1027 - "Block-Size Data", 1028 - .psize = 73, 1029 - .digest = "\x6f\x63\x0f\xad\x67\xcd\xa0\xee" 1030 - "\x1f\xb1\xf5\x62\xdb\x3a\xa5\x3e", 1031 - }, 1032 - }; 1033 - 1034 - /* 1035 - * HMAC-RIPEMD128 test vectors from RFC2286 1036 - */ 1037 - #define HMAC_RMD128_TEST_VECTORS 7 1038 - 1039 - static struct hash_testvec hmac_rmd128_tv_template[] = { 1040 - { 1041 - .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b", 1042 - .ksize = 16, 1043 - .plaintext = "Hi There", 1044 - .psize = 8, 1045 - .digest = "\xfb\xf6\x1f\x94\x92\xaa\x4b\xbf" 1046 - "\x81\xc1\x72\xe8\x4e\x07\x34\xdb", 1047 - }, { 1048 - .key = "Jefe", 1049 - .ksize = 4, 1050 - .plaintext = "what do ya want for nothing?", 1051 - .psize = 28, 1052 - .digest = "\x87\x5f\x82\x88\x62\xb6\xb3\x34" 1053 - "\xb4\x27\xc5\x5f\x9f\x7f\xf0\x9b", 1054 - .np = 2, 1055 - .tap = { 14, 14 }, 1056 - }, { 1057 - .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa", 1058 - .ksize = 16, 1059 - .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 1060 - "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 1061 - "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 1062 - "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd", 1063 - .psize = 50, 1064 - .digest = "\x09\xf0\xb2\x84\x6d\x2f\x54\x3d" 1065 - "\xa3\x63\xcb\xec\x8d\x62\xa3\x8d", 1066 - }, { 1067 - .key = "\x01\x02\x03\x04\x05\x06\x07\x08" 1068 - "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 1069 - "\x11\x12\x13\x14\x15\x16\x17\x18\x19", 1070 - .ksize = 25, 1071 - .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 1072 - "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 1073 - "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 1074 - "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd", 1075 - .psize = 50, 1076 - .digest = "\xbd\xbb\xd7\xcf\x03\xe4\x4b\x5a" 1077 - "\xa6\x0a\xf8\x15\xbe\x4d\x22\x94", 1078 - }, { 1079 - .key = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c", 1080 - .ksize = 16, 1081 - .plaintext = "Test With Truncation", 1082 - .psize = 20, 1083 - .digest = "\xe7\x98\x08\xf2\x4b\x25\xfd\x03" 1084 - "\x1c\x15\x5f\x0d\x55\x1d\x9a\x3a", 1085 - }, { 1086 - .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1087 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1088 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1089 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1090 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1091 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1092 - "\xaa\xaa", 1093 - .ksize = 80, 1094 - .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First", 1095 - .psize = 54, 1096 - .digest = "\xdc\x73\x29\x28\xde\x98\x10\x4a" 1097 - "\x1f\x59\xd3\x73\xc1\x50\xac\xbb", 1098 - }, { 1099 - .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1100 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1101 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1102 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1103 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1104 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1105 - "\xaa\xaa", 1106 - .ksize = 80, 1107 - .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One " 1108 - "Block-Size Data", 1109 - .psize = 73, 1110 - .digest = "\x5c\x6b\xec\x96\x79\x3e\x16\xd4" 1111 - "\x06\x90\xc2\x37\x63\x5f\x30\xc5", 1112 - }, 1113 - }; 1114 - 1115 - /* 1116 - * HMAC-RIPEMD160 test vectors from RFC2286 1117 - */ 1118 - #define HMAC_RMD160_TEST_VECTORS 7 1119 - 1120 - static struct hash_testvec hmac_rmd160_tv_template[] = { 1121 - { 1122 - .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b", 1123 - .ksize = 20, 1124 - .plaintext = "Hi There", 1125 - .psize = 8, 1126 - .digest = "\x24\xcb\x4b\xd6\x7d\x20\xfc\x1a\x5d\x2e" 1127 - "\xd7\x73\x2d\xcc\x39\x37\x7f\x0a\x56\x68", 1128 - }, { 1129 - .key = "Jefe", 1130 - .ksize = 4, 1131 - .plaintext = "what do ya want for nothing?", 1132 - .psize = 28, 1133 - .digest = "\xdd\xa6\xc0\x21\x3a\x48\x5a\x9e\x24\xf4" 1134 - "\x74\x20\x64\xa7\xf0\x33\xb4\x3c\x40\x69", 1135 - .np = 2, 1136 - .tap = { 14, 14 }, 1137 - }, { 1138 - .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa", 1139 - .ksize = 20, 1140 - .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 1141 - "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 1142 - "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 1143 - "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd", 1144 - .psize = 50, 1145 - .digest = "\xb0\xb1\x05\x36\x0d\xe7\x59\x96\x0a\xb4" 1146 - "\xf3\x52\x98\xe1\x16\xe2\x95\xd8\xe7\xc1", 1147 - }, { 1148 - .key = "\x01\x02\x03\x04\x05\x06\x07\x08" 1149 - "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 1150 - "\x11\x12\x13\x14\x15\x16\x17\x18\x19", 1151 - .ksize = 25, 1152 - .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 1153 - "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 1154 - "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 1155 - "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd", 1156 - .psize = 50, 1157 - .digest = "\xd5\xca\x86\x2f\x4d\x21\xd5\xe6\x10\xe1" 1158 - "\x8b\x4c\xf1\xbe\xb9\x7a\x43\x65\xec\xf4", 1159 - }, { 1160 - .key = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c", 1161 - .ksize = 20, 1162 - .plaintext = "Test With Truncation", 1163 - .psize = 20, 1164 - .digest = "\x76\x19\x69\x39\x78\xf9\x1d\x90\x53\x9a" 1165 - "\xe7\x86\x50\x0f\xf3\xd8\xe0\x51\x8e\x39", 1166 - }, { 1167 - .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1168 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1169 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1170 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1171 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1172 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1173 - "\xaa\xaa", 1174 - .ksize = 80, 1175 - .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First", 1176 - .psize = 54, 1177 - .digest = "\x64\x66\xca\x07\xac\x5e\xac\x29\xe1\xbd" 1178 - "\x52\x3e\x5a\xda\x76\x05\xb7\x91\xfd\x8b", 1179 - }, { 1180 - .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1181 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1182 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1183 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1184 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1185 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1186 - "\xaa\xaa", 1187 - .ksize = 80, 1188 - .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One " 1189 - "Block-Size Data", 1190 - .psize = 73, 1191 - .digest = "\x69\xea\x60\x79\x8d\x71\x61\x6c\xce\x5f" 1192 - "\xd0\x87\x1e\x23\x75\x4c\xd7\x5d\x5a\x0a", 1193 - }, 1194 - }; 1195 - 1196 - /* 1197 - * HMAC-SHA1 test vectors from RFC2202 1198 - */ 1199 - #define HMAC_SHA1_TEST_VECTORS 7 1200 - 1201 - static struct hash_testvec hmac_sha1_tv_template[] = { 1202 - { 1203 - .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b", 1204 - .ksize = 20, 1205 - .plaintext = "Hi There", 1206 - .psize = 8, 1207 - .digest = "\xb6\x17\x31\x86\x55\x05\x72\x64" 1208 - "\xe2\x8b\xc0\xb6\xfb\x37\x8c\x8e\xf1" 1209 - "\x46\xbe", 1210 - }, { 1211 - .key = "Jefe", 1212 - .ksize = 4, 1213 - .plaintext = "what do ya want for nothing?", 1214 - .psize = 28, 1215 - .digest = "\xef\xfc\xdf\x6a\xe5\xeb\x2f\xa2\xd2\x74" 1216 - "\x16\xd5\xf1\x84\xdf\x9c\x25\x9a\x7c\x79", 1217 - .np = 2, 1218 - .tap = { 14, 14 } 1219 - }, { 1220 - .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa", 1221 - .ksize = 20, 1222 - .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 1223 - "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 1224 - "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 1225 - "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd", 1226 - .psize = 50, 1227 - .digest = "\x12\x5d\x73\x42\xb9\xac\x11\xcd\x91\xa3" 1228 - "\x9a\xf4\x8a\xa1\x7b\x4f\x63\xf1\x75\xd3", 1229 - }, { 1230 - .key = "\x01\x02\x03\x04\x05\x06\x07\x08" 1231 - "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 1232 - "\x11\x12\x13\x14\x15\x16\x17\x18\x19", 1233 - .ksize = 25, 1234 - .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 1235 - "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 1236 - "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 1237 - "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd", 1238 - .psize = 50, 1239 - .digest = "\x4c\x90\x07\xf4\x02\x62\x50\xc6\xbc\x84" 1240 - "\x14\xf9\xbf\x50\xc8\x6c\x2d\x72\x35\xda", 1241 - }, { 1242 - .key = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c", 1243 - .ksize = 20, 1244 - .plaintext = "Test With Truncation", 1245 - .psize = 20, 1246 - .digest = "\x4c\x1a\x03\x42\x4b\x55\xe0\x7f\xe7\xf2" 1247 - "\x7b\xe1\xd5\x8b\xb9\x32\x4a\x9a\x5a\x04", 1248 - }, { 1249 - .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1250 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1251 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1252 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1253 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1254 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1255 - "\xaa\xaa", 1256 - .ksize = 80, 1257 - .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First", 1258 - .psize = 54, 1259 - .digest = "\xaa\x4a\xe5\xe1\x52\x72\xd0\x0e\x95\x70" 1260 - "\x56\x37\xce\x8a\x3b\x55\xed\x40\x21\x12", 1261 - }, { 1262 - .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1263 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1264 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1265 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1266 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1267 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1268 - "\xaa\xaa", 1269 - .ksize = 80, 1270 - .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One " 1271 - "Block-Size Data", 1272 - .psize = 73, 1273 - .digest = "\xe8\xe9\x9d\x0f\x45\x23\x7d\x78\x6d\x6b" 1274 - "\xba\xa7\x96\x5c\x78\x08\xbb\xff\x1a\x91", 1275 - }, 1276 - }; 1277 - 1278 - 1279 - /* 1280 - * SHA224 HMAC test vectors from RFC4231 1281 - */ 1282 - #define HMAC_SHA224_TEST_VECTORS 4 1283 - 1284 - static struct hash_testvec hmac_sha224_tv_template[] = { 1285 - { 1286 - .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 1287 - "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 1288 - "\x0b\x0b\x0b\x0b", 1289 - .ksize = 20, 1290 - /* ("Hi There") */ 1291 - .plaintext = "\x48\x69\x20\x54\x68\x65\x72\x65", 1292 - .psize = 8, 1293 - .digest = "\x89\x6f\xb1\x12\x8a\xbb\xdf\x19" 1294 - "\x68\x32\x10\x7c\xd4\x9d\xf3\x3f" 1295 - "\x47\xb4\xb1\x16\x99\x12\xba\x4f" 1296 - "\x53\x68\x4b\x22", 1297 - }, { 1298 - .key = "Jefe", 1299 - .ksize = 4, 1300 - /* ("what do ya want for nothing?") */ 1301 - .plaintext = "\x77\x68\x61\x74\x20\x64\x6f\x20" 1302 - "\x79\x61\x20\x77\x61\x6e\x74\x20" 1303 - "\x66\x6f\x72\x20\x6e\x6f\x74\x68" 1304 - "\x69\x6e\x67\x3f", 1305 - .psize = 28, 1306 - .digest = "\xa3\x0e\x01\x09\x8b\xc6\xdb\xbf" 1307 - "\x45\x69\x0f\x3a\x7e\x9e\x6d\x0f" 1308 - "\x8b\xbe\xa2\xa3\x9e\x61\x48\x00" 1309 - "\x8f\xd0\x5e\x44", 1310 - .np = 4, 1311 - .tap = { 7, 7, 7, 7 } 1312 - }, { 1313 - .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1314 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1315 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1316 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1317 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1318 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1319 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1320 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1321 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1322 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1323 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1324 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1325 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1326 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1327 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1328 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1329 - "\xaa\xaa\xaa", 1330 - .ksize = 131, 1331 - /* ("Test Using Larger Than Block-Size Key - Hash Key First") */ 1332 - .plaintext = "\x54\x65\x73\x74\x20\x55\x73\x69" 1333 - "\x6e\x67\x20\x4c\x61\x72\x67\x65" 1334 - "\x72\x20\x54\x68\x61\x6e\x20\x42" 1335 - "\x6c\x6f\x63\x6b\x2d\x53\x69\x7a" 1336 - "\x65\x20\x4b\x65\x79\x20\x2d\x20" 1337 - "\x48\x61\x73\x68\x20\x4b\x65\x79" 1338 - "\x20\x46\x69\x72\x73\x74", 1339 - .psize = 54, 1340 - .digest = "\x95\xe9\xa0\xdb\x96\x20\x95\xad" 1341 - "\xae\xbe\x9b\x2d\x6f\x0d\xbc\xe2" 1342 - "\xd4\x99\xf1\x12\xf2\xd2\xb7\x27" 1343 - "\x3f\xa6\x87\x0e", 1344 - }, { 1345 - .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1346 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1347 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1348 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1349 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1350 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1351 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1352 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1353 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1354 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1355 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1356 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1357 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1358 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1359 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1360 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1361 - "\xaa\xaa\xaa", 1362 - .ksize = 131, 1363 - /* ("This is a test using a larger than block-size key and a") 1364 - (" larger than block-size data. The key needs to be") 1365 - (" hashed before being used by the HMAC algorithm.") */ 1366 - .plaintext = "\x54\x68\x69\x73\x20\x69\x73\x20" 1367 - "\x61\x20\x74\x65\x73\x74\x20\x75" 1368 - "\x73\x69\x6e\x67\x20\x61\x20\x6c" 1369 - "\x61\x72\x67\x65\x72\x20\x74\x68" 1370 - "\x61\x6e\x20\x62\x6c\x6f\x63\x6b" 1371 - "\x2d\x73\x69\x7a\x65\x20\x6b\x65" 1372 - "\x79\x20\x61\x6e\x64\x20\x61\x20" 1373 - "\x6c\x61\x72\x67\x65\x72\x20\x74" 1374 - "\x68\x61\x6e\x20\x62\x6c\x6f\x63" 1375 - "\x6b\x2d\x73\x69\x7a\x65\x20\x64" 1376 - "\x61\x74\x61\x2e\x20\x54\x68\x65" 1377 - "\x20\x6b\x65\x79\x20\x6e\x65\x65" 1378 - "\x64\x73\x20\x74\x6f\x20\x62\x65" 1379 - "\x20\x68\x61\x73\x68\x65\x64\x20" 1380 - "\x62\x65\x66\x6f\x72\x65\x20\x62" 1381 - "\x65\x69\x6e\x67\x20\x75\x73\x65" 1382 - "\x64\x20\x62\x79\x20\x74\x68\x65" 1383 - "\x20\x48\x4d\x41\x43\x20\x61\x6c" 1384 - "\x67\x6f\x72\x69\x74\x68\x6d\x2e", 1385 - .psize = 152, 1386 - .digest = "\x3a\x85\x41\x66\xac\x5d\x9f\x02" 1387 - "\x3f\x54\xd5\x17\xd0\xb3\x9d\xbd" 1388 - "\x94\x67\x70\xdb\x9c\x2b\x95\xc9" 1389 - "\xf6\xf5\x65\xd1", 1390 - }, 1391 - }; 1392 - 1393 - /* 1394 - * HMAC-SHA256 test vectors from 1395 - * draft-ietf-ipsec-ciph-sha-256-01.txt 1396 - */ 1397 - #define HMAC_SHA256_TEST_VECTORS 10 1398 - 1399 - static struct hash_testvec hmac_sha256_tv_template[] = { 1400 - { 1401 - .key = "\x01\x02\x03\x04\x05\x06\x07\x08" 1402 - "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 1403 - "\x11\x12\x13\x14\x15\x16\x17\x18" 1404 - "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20", 1405 - .ksize = 32, 1406 - .plaintext = "abc", 1407 - .psize = 3, 1408 - .digest = "\xa2\x1b\x1f\x5d\x4c\xf4\xf7\x3a" 1409 - "\x4d\xd9\x39\x75\x0f\x7a\x06\x6a" 1410 - "\x7f\x98\xcc\x13\x1c\xb1\x6a\x66" 1411 - "\x92\x75\x90\x21\xcf\xab\x81\x81", 1412 - }, { 1413 - .key = "\x01\x02\x03\x04\x05\x06\x07\x08" 1414 - "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 1415 - "\x11\x12\x13\x14\x15\x16\x17\x18" 1416 - "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20", 1417 - .ksize = 32, 1418 - .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 1419 - .psize = 56, 1420 - .digest = "\x10\x4f\xdc\x12\x57\x32\x8f\x08" 1421 - "\x18\x4b\xa7\x31\x31\xc5\x3c\xae" 1422 - "\xe6\x98\xe3\x61\x19\x42\x11\x49" 1423 - "\xea\x8c\x71\x24\x56\x69\x7d\x30", 1424 - }, { 1425 - .key = "\x01\x02\x03\x04\x05\x06\x07\x08" 1426 - "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 1427 - "\x11\x12\x13\x14\x15\x16\x17\x18" 1428 - "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20", 1429 - .ksize = 32, 1430 - .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq" 1431 - "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 1432 - .psize = 112, 1433 - .digest = "\x47\x03\x05\xfc\x7e\x40\xfe\x34" 1434 - "\xd3\xee\xb3\xe7\x73\xd9\x5a\xab" 1435 - "\x73\xac\xf0\xfd\x06\x04\x47\xa5" 1436 - "\xeb\x45\x95\xbf\x33\xa9\xd1\xa3", 1437 - }, { 1438 - .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 1439 - "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 1440 - "\x0b\x0b\x0b\x0b\x0b\x0b", 1441 - .ksize = 32, 1442 - .plaintext = "Hi There", 1443 - .psize = 8, 1444 - .digest = "\x19\x8a\x60\x7e\xb4\x4b\xfb\xc6" 1445 - "\x99\x03\xa0\xf1\xcf\x2b\xbd\xc5" 1446 - "\xba\x0a\xa3\xf3\xd9\xae\x3c\x1c" 1447 - "\x7a\x3b\x16\x96\xa0\xb6\x8c\xf7", 1448 - }, { 1449 - .key = "Jefe", 1450 - .ksize = 4, 1451 - .plaintext = "what do ya want for nothing?", 1452 - .psize = 28, 1453 - .digest = "\x5b\xdc\xc1\x46\xbf\x60\x75\x4e" 1454 - "\x6a\x04\x24\x26\x08\x95\x75\xc7" 1455 - "\x5a\x00\x3f\x08\x9d\x27\x39\x83" 1456 - "\x9d\xec\x58\xb9\x64\xec\x38\x43", 1457 - .np = 2, 1458 - .tap = { 14, 14 } 1459 - }, { 1460 - .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1461 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1462 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa", 1463 - .ksize = 32, 1464 - .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 1465 - "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 1466 - "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 1467 - "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd", 1468 - .psize = 50, 1469 - .digest = "\xcd\xcb\x12\x20\xd1\xec\xcc\xea" 1470 - "\x91\xe5\x3a\xba\x30\x92\xf9\x62" 1471 - "\xe5\x49\xfe\x6c\xe9\xed\x7f\xdc" 1472 - "\x43\x19\x1f\xbd\xe4\x5c\x30\xb0", 1473 - }, { 1474 - .key = "\x01\x02\x03\x04\x05\x06\x07\x08" 1475 - "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 1476 - "\x11\x12\x13\x14\x15\x16\x17\x18" 1477 - "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20" 1478 - "\x21\x22\x23\x24\x25", 1479 - .ksize = 37, 1480 - .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 1481 - "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 1482 - "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 1483 - "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd", 1484 - .psize = 50, 1485 - .digest = "\xd4\x63\x3c\x17\xf6\xfb\x8d\x74" 1486 - "\x4c\x66\xde\xe0\xf8\xf0\x74\x55" 1487 - "\x6e\xc4\xaf\x55\xef\x07\x99\x85" 1488 - "\x41\x46\x8e\xb4\x9b\xd2\xe9\x17", 1489 - }, { 1490 - .key = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c" 1491 - "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c" 1492 - "\x0c\x0c\x0c\x0c\x0c\x0c", 1493 - .ksize = 32, 1494 - .plaintext = "Test With Truncation", 1495 - .psize = 20, 1496 - .digest = "\x75\x46\xaf\x01\x84\x1f\xc0\x9b" 1497 - "\x1a\xb9\xc3\x74\x9a\x5f\x1c\x17" 1498 - "\xd4\xf5\x89\x66\x8a\x58\x7b\x27" 1499 - "\x00\xa9\xc9\x7c\x11\x93\xcf\x42", 1500 - }, { 1501 - .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1502 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1503 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1504 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1505 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1506 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1507 - "\xaa\xaa", 1508 - .ksize = 80, 1509 - .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First", 1510 - .psize = 54, 1511 - .digest = "\x69\x53\x02\x5e\xd9\x6f\x0c\x09" 1512 - "\xf8\x0a\x96\xf7\x8e\x65\x38\xdb" 1513 - "\xe2\xe7\xb8\x20\xe3\xdd\x97\x0e" 1514 - "\x7d\xdd\x39\x09\x1b\x32\x35\x2f", 1515 - }, { 1516 - .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1517 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1518 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1519 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1520 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1521 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1522 - "\xaa\xaa", 1523 - .ksize = 80, 1524 - .plaintext = "Test Using Larger Than Block-Size Key and Larger Than " 1525 - "One Block-Size Data", 1526 - .psize = 73, 1527 - .digest = "\x63\x55\xac\x22\xe8\x90\xd0\xa3" 1528 - "\xc8\x48\x1a\x5c\xa4\x82\x5b\xc8" 1529 - "\x84\xd3\xe7\xa1\xff\x98\xa2\xfc" 1530 - "\x2a\xc7\xd8\xe0\x64\xc3\xb2\xe6", 1531 - }, 1532 - }; 1533 - 1534 - #define XCBC_AES_TEST_VECTORS 6 1535 - 1536 - static struct hash_testvec aes_xcbc128_tv_template[] = { 1537 - { 1538 - .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 1539 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 1540 - .plaintext = zeroed_string, 1541 - .digest = "\x75\xf0\x25\x1d\x52\x8a\xc0\x1c" 1542 - "\x45\x73\xdf\xd5\x84\xd7\x9f\x29", 1543 - .psize = 0, 1544 - .ksize = 16, 1545 - }, { 1546 - .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 1547 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 1548 - .plaintext = "\x00\x01\x02", 1549 - .digest = "\x5b\x37\x65\x80\xae\x2f\x19\xaf" 1550 - "\xe7\x21\x9c\xee\xf1\x72\x75\x6f", 1551 - .psize = 3, 1552 - .ksize = 16, 1553 - } , { 1554 - .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 1555 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 1556 - .plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07" 1557 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 1558 - .digest = "\xd2\xa2\x46\xfa\x34\x9b\x68\xa7" 1559 - "\x99\x98\xa4\x39\x4f\xf7\xa2\x63", 1560 - .psize = 16, 1561 - .ksize = 16, 1562 - }, { 1563 - .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 1564 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 1565 - .plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07" 1566 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 1567 - "\x10\x11\x12\x13", 1568 - .digest = "\x47\xf5\x1b\x45\x64\x96\x62\x15" 1569 - "\xb8\x98\x5c\x63\x05\x5e\xd3\x08", 1570 - .tap = { 10, 10 }, 1571 - .psize = 20, 1572 - .np = 2, 1573 - .ksize = 16, 1574 - }, { 1575 - .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 1576 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 1577 - .plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07" 1578 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 1579 - "\x10\x11\x12\x13\x14\x15\x16\x17" 1580 - "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 1581 - .digest = "\xf5\x4f\x0e\xc8\xd2\xb9\xf3\xd3" 1582 - "\x68\x07\x73\x4b\xd5\x28\x3f\xd4", 1583 - .psize = 32, 1584 - .ksize = 16, 1585 - }, { 1586 - .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 1587 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 1588 - .plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07" 1589 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 1590 - "\x10\x11\x12\x13\x14\x15\x16\x17" 1591 - "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 1592 - "\x20\x21", 1593 - .digest = "\xbe\xcb\xb3\xbc\xcd\xb5\x18\xa3" 1594 - "\x06\x77\xd5\x48\x1f\xb6\xb4\xd8", 1595 - .tap = { 17, 17 }, 1596 - .psize = 34, 1597 - .np = 2, 1598 - .ksize = 16, 1599 - } 1600 - }; 1601 - 1602 - /* 1603 - * SHA384 HMAC test vectors from RFC4231 1604 - */ 1605 - 1606 - #define HMAC_SHA384_TEST_VECTORS 4 1607 - 1608 - static struct hash_testvec hmac_sha384_tv_template[] = { 1609 - { 1610 - .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 1611 - "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 1612 - "\x0b\x0b\x0b\x0b", 1613 - .ksize = 20, 1614 - .plaintext = "Hi There", 1615 - .psize = 8, 1616 - .digest = "\xaf\xd0\x39\x44\xd8\x48\x95\x62" 1617 - "\x6b\x08\x25\xf4\xab\x46\x90\x7f" 1618 - "\x15\xf9\xda\xdb\xe4\x10\x1e\xc6" 1619 - "\x82\xaa\x03\x4c\x7c\xeb\xc5\x9c" 1620 - "\xfa\xea\x9e\xa9\x07\x6e\xde\x7f" 1621 - "\x4a\xf1\x52\xe8\xb2\xfa\x9c\xb6", 1622 - }, { 1623 - .key = "Jefe", 1624 - .ksize = 4, 1625 - .plaintext = "what do ya want for nothing?", 1626 - .psize = 28, 1627 - .digest = "\xaf\x45\xd2\xe3\x76\x48\x40\x31" 1628 - "\x61\x7f\x78\xd2\xb5\x8a\x6b\x1b" 1629 - "\x9c\x7e\xf4\x64\xf5\xa0\x1b\x47" 1630 - "\xe4\x2e\xc3\x73\x63\x22\x44\x5e" 1631 - "\x8e\x22\x40\xca\x5e\x69\xe2\xc7" 1632 - "\x8b\x32\x39\xec\xfa\xb2\x16\x49", 1633 - .np = 4, 1634 - .tap = { 7, 7, 7, 7 } 1635 - }, { 1636 - .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1637 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1638 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1639 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1640 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1641 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1642 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1643 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1644 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1645 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1646 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1647 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1648 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1649 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1650 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1651 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1652 - "\xaa\xaa\xaa", 1653 - .ksize = 131, 1654 - .plaintext = "Test Using Larger Than Block-Siz" 1655 - "e Key - Hash Key First", 1656 - .psize = 54, 1657 - .digest = "\x4e\xce\x08\x44\x85\x81\x3e\x90" 1658 - "\x88\xd2\xc6\x3a\x04\x1b\xc5\xb4" 1659 - "\x4f\x9e\xf1\x01\x2a\x2b\x58\x8f" 1660 - "\x3c\xd1\x1f\x05\x03\x3a\xc4\xc6" 1661 - "\x0c\x2e\xf6\xab\x40\x30\xfe\x82" 1662 - "\x96\x24\x8d\xf1\x63\xf4\x49\x52", 1663 - }, { 1664 - .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1665 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1666 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1667 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1668 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1669 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1670 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1671 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1672 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1673 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1674 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1675 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1676 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1677 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1678 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1679 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1680 - "\xaa\xaa\xaa", 1681 - .ksize = 131, 1682 - .plaintext = "This is a test u" 1683 - "sing a larger th" 1684 - "an block-size ke" 1685 - "y and a larger t" 1686 - "han block-size d" 1687 - "ata. The key nee" 1688 - "ds to be hashed " 1689 - "before being use" 1690 - "d by the HMAC al" 1691 - "gorithm.", 1692 - .psize = 152, 1693 - .digest = "\x66\x17\x17\x8e\x94\x1f\x02\x0d" 1694 - "\x35\x1e\x2f\x25\x4e\x8f\xd3\x2c" 1695 - "\x60\x24\x20\xfe\xb0\xb8\xfb\x9a" 1696 - "\xdc\xce\xbb\x82\x46\x1e\x99\xc5" 1697 - "\xa6\x78\xcc\x31\xe7\x99\x17\x6d" 1698 - "\x38\x60\xe6\x11\x0c\x46\x52\x3e", 1699 - }, 1700 - }; 1701 - 1702 - /* 1703 - * SHA512 HMAC test vectors from RFC4231 1704 - */ 1705 - 1706 - #define HMAC_SHA512_TEST_VECTORS 4 1707 - 1708 - static struct hash_testvec hmac_sha512_tv_template[] = { 1709 - { 1710 - .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 1711 - "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 1712 - "\x0b\x0b\x0b\x0b", 1713 - .ksize = 20, 1714 - .plaintext = "Hi There", 1715 - .psize = 8, 1716 - .digest = "\x87\xaa\x7c\xde\xa5\xef\x61\x9d" 1717 - "\x4f\xf0\xb4\x24\x1a\x1d\x6c\xb0" 1718 - "\x23\x79\xf4\xe2\xce\x4e\xc2\x78" 1719 - "\x7a\xd0\xb3\x05\x45\xe1\x7c\xde" 1720 - "\xda\xa8\x33\xb7\xd6\xb8\xa7\x02" 1721 - "\x03\x8b\x27\x4e\xae\xa3\xf4\xe4" 1722 - "\xbe\x9d\x91\x4e\xeb\x61\xf1\x70" 1723 - "\x2e\x69\x6c\x20\x3a\x12\x68\x54", 1724 - }, { 1725 - .key = "Jefe", 1726 - .ksize = 4, 1727 - .plaintext = "what do ya want for nothing?", 1728 - .psize = 28, 1729 - .digest = "\x16\x4b\x7a\x7b\xfc\xf8\x19\xe2" 1730 - "\xe3\x95\xfb\xe7\x3b\x56\xe0\xa3" 1731 - "\x87\xbd\x64\x22\x2e\x83\x1f\xd6" 1732 - "\x10\x27\x0c\xd7\xea\x25\x05\x54" 1733 - "\x97\x58\xbf\x75\xc0\x5a\x99\x4a" 1734 - "\x6d\x03\x4f\x65\xf8\xf0\xe6\xfd" 1735 - "\xca\xea\xb1\xa3\x4d\x4a\x6b\x4b" 1736 - "\x63\x6e\x07\x0a\x38\xbc\xe7\x37", 1737 - .np = 4, 1738 - .tap = { 7, 7, 7, 7 } 1739 - }, { 1740 - .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1741 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1742 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1743 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1744 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1745 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1746 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1747 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1748 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1749 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1750 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1751 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1752 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1753 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1754 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1755 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1756 - "\xaa\xaa\xaa", 1757 - .ksize = 131, 1758 - .plaintext = "Test Using Large" 1759 - "r Than Block-Siz" 1760 - "e Key - Hash Key" 1761 - " First", 1762 - .psize = 54, 1763 - .digest = "\x80\xb2\x42\x63\xc7\xc1\xa3\xeb" 1764 - "\xb7\x14\x93\xc1\xdd\x7b\xe8\xb4" 1765 - "\x9b\x46\xd1\xf4\x1b\x4a\xee\xc1" 1766 - "\x12\x1b\x01\x37\x83\xf8\xf3\x52" 1767 - "\x6b\x56\xd0\x37\xe0\x5f\x25\x98" 1768 - "\xbd\x0f\xd2\x21\x5d\x6a\x1e\x52" 1769 - "\x95\xe6\x4f\x73\xf6\x3f\x0a\xec" 1770 - "\x8b\x91\x5a\x98\x5d\x78\x65\x98", 1771 - }, { 1772 - .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1773 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1774 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1775 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1776 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1777 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1778 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1779 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1780 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1781 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1782 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1783 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1784 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1785 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1786 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1787 - "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1788 - "\xaa\xaa\xaa", 1789 - .ksize = 131, 1790 - .plaintext = 1791 - "This is a test u" 1792 - "sing a larger th" 1793 - "an block-size ke" 1794 - "y and a larger t" 1795 - "han block-size d" 1796 - "ata. The key nee" 1797 - "ds to be hashed " 1798 - "before being use" 1799 - "d by the HMAC al" 1800 - "gorithm.", 1801 - .psize = 152, 1802 - .digest = "\xe3\x7b\x6a\x77\x5d\xc8\x7d\xba" 1803 - "\xa4\xdf\xa9\xf9\x6e\x5e\x3f\xfd" 1804 - "\xde\xbd\x71\xf8\x86\x72\x89\x86" 1805 - "\x5d\xf5\xa3\x2d\x20\xcd\xc9\x44" 1806 - "\xb6\x02\x2c\xac\x3c\x49\x82\xb1" 1807 - "\x0d\x5e\xeb\x55\xc3\xe4\xde\x15" 1808 - "\x13\x46\x76\xfb\x6d\xe0\x44\x60" 1809 - "\x65\xc9\x74\x40\xfa\x8c\x6a\x58", 1810 - }, 1811 - }; 1812 - 1813 74 /* 1814 75 * DES test vectors. 1815 76 */ 1816 - #define DES_ENC_TEST_VECTORS 10 1817 - #define DES_DEC_TEST_VECTORS 4 1818 - #define DES_CBC_ENC_TEST_VECTORS 5 1819 - #define DES_CBC_DEC_TEST_VECTORS 4 1820 - #define DES3_EDE_ENC_TEST_VECTORS 3 1821 - #define DES3_EDE_DEC_TEST_VECTORS 3 1822 - #define DES3_EDE_CBC_ENC_TEST_VECTORS 1 1823 - #define DES3_EDE_CBC_DEC_TEST_VECTORS 1 77 + #define DES3_SPEED_VECTORS 1 1824 78 1825 - static struct cipher_testvec des_enc_tv_template[] = { 1826 - { /* From Applied Cryptography */ 1827 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 1828 - .klen = 8, 1829 - .input = "\x01\x23\x45\x67\x89\xab\xcd\xe7", 1830 - .ilen = 8, 1831 - .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d", 1832 - .rlen = 8, 1833 - }, { /* Same key, different plaintext block */ 1834 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 1835 - .klen = 8, 1836 - .input = "\x22\x33\x44\x55\x66\x77\x88\x99", 1837 - .ilen = 8, 1838 - .result = "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b", 1839 - .rlen = 8, 1840 - }, { /* Sbox test from NBS */ 1841 - .key = "\x7c\xa1\x10\x45\x4a\x1a\x6e\x57", 1842 - .klen = 8, 1843 - .input = "\x01\xa1\xd6\xd0\x39\x77\x67\x42", 1844 - .ilen = 8, 1845 - .result = "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b", 1846 - .rlen = 8, 1847 - }, { /* Three blocks */ 1848 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 1849 - .klen = 8, 1850 - .input = "\x01\x23\x45\x67\x89\xab\xcd\xe7" 1851 - "\x22\x33\x44\x55\x66\x77\x88\x99" 1852 - "\xca\xfe\xba\xbe\xfe\xed\xbe\xef", 1853 - .ilen = 24, 1854 - .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d" 1855 - "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b" 1856 - "\xb4\x99\x26\xf7\x1f\xe1\xd4\x90", 1857 - .rlen = 24, 1858 - }, { /* Weak key */ 1859 - .fail = 1, 1860 - .wk = 1, 1861 - .key = "\x01\x01\x01\x01\x01\x01\x01\x01", 1862 - .klen = 8, 1863 - .input = "\x01\x23\x45\x67\x89\xab\xcd\xe7", 1864 - .ilen = 8, 1865 - .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d", 1866 - .rlen = 8, 1867 - }, { /* Two blocks -- for testing encryption across pages */ 1868 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 1869 - .klen = 8, 1870 - .input = "\x01\x23\x45\x67\x89\xab\xcd\xe7" 1871 - "\x22\x33\x44\x55\x66\x77\x88\x99", 1872 - .ilen = 16, 1873 - .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d" 1874 - "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b", 1875 - .rlen = 16, 1876 - .np = 2, 1877 - .tap = { 8, 8 } 1878 - }, { /* Four blocks -- for testing encryption with chunking */ 1879 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 1880 - .klen = 8, 1881 - .input = "\x01\x23\x45\x67\x89\xab\xcd\xe7" 1882 - "\x22\x33\x44\x55\x66\x77\x88\x99" 1883 - "\xca\xfe\xba\xbe\xfe\xed\xbe\xef" 1884 - "\x22\x33\x44\x55\x66\x77\x88\x99", 1885 - .ilen = 32, 1886 - .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d" 1887 - "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b" 1888 - "\xb4\x99\x26\xf7\x1f\xe1\xd4\x90" 1889 - "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b", 1890 - .rlen = 32, 1891 - .np = 3, 1892 - .tap = { 14, 10, 8 } 1893 - }, { 1894 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 1895 - .klen = 8, 1896 - .input = "\x01\x23\x45\x67\x89\xab\xcd\xe7" 1897 - "\x22\x33\x44\x55\x66\x77\x88\x99" 1898 - "\xca\xfe\xba\xbe\xfe\xed\xbe\xef", 1899 - .ilen = 24, 1900 - .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d" 1901 - "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b" 1902 - "\xb4\x99\x26\xf7\x1f\xe1\xd4\x90", 1903 - .rlen = 24, 1904 - .np = 4, 1905 - .tap = { 2, 1, 3, 18 } 1906 - }, { 1907 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 1908 - .klen = 8, 1909 - .input = "\x01\x23\x45\x67\x89\xab\xcd\xe7" 1910 - "\x22\x33\x44\x55\x66\x77\x88\x99", 1911 - .ilen = 16, 1912 - .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d" 1913 - "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b", 1914 - .rlen = 16, 1915 - .np = 5, 1916 - .tap = { 2, 2, 2, 2, 8 } 1917 - }, { 1918 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 1919 - .klen = 8, 1920 - .input = "\x01\x23\x45\x67\x89\xab\xcd\xe7", 1921 - .ilen = 8, 1922 - .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d", 1923 - .rlen = 8, 1924 - .np = 8, 1925 - .tap = { 1, 1, 1, 1, 1, 1, 1, 1 } 1926 - }, 1927 - }; 1928 - 1929 - static struct cipher_testvec des_dec_tv_template[] = { 1930 - { /* From Applied Cryptography */ 1931 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 1932 - .klen = 8, 1933 - .input = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d", 1934 - .ilen = 8, 1935 - .result = "\x01\x23\x45\x67\x89\xab\xcd\xe7", 1936 - .rlen = 8, 1937 - }, { /* Sbox test from NBS */ 1938 - .key = "\x7c\xa1\x10\x45\x4a\x1a\x6e\x57", 1939 - .klen = 8, 1940 - .input = "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b", 1941 - .ilen = 8, 1942 - .result = "\x01\xa1\xd6\xd0\x39\x77\x67\x42", 1943 - .rlen = 8, 1944 - }, { /* Two blocks, for chunking test */ 1945 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 1946 - .klen = 8, 1947 - .input = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d" 1948 - "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b", 1949 - .ilen = 16, 1950 - .result = "\x01\x23\x45\x67\x89\xab\xcd\xe7" 1951 - "\xa3\x99\x7b\xca\xaf\x69\xa0\xf5", 1952 - .rlen = 16, 1953 - .np = 2, 1954 - .tap = { 8, 8 } 1955 - }, { 1956 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 1957 - .klen = 8, 1958 - .input = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d" 1959 - "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b", 1960 - .ilen = 16, 1961 - .result = "\x01\x23\x45\x67\x89\xab\xcd\xe7" 1962 - "\xa3\x99\x7b\xca\xaf\x69\xa0\xf5", 1963 - .rlen = 16, 1964 - .np = 3, 1965 - .tap = { 3, 12, 1 } 1966 - }, 1967 - }; 1968 - 1969 - static struct cipher_testvec des_cbc_enc_tv_template[] = { 1970 - { /* From OpenSSL */ 1971 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 1972 - .klen = 8, 1973 - .iv = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 1974 - .input = "\x37\x36\x35\x34\x33\x32\x31\x20" 1975 - "\x4e\x6f\x77\x20\x69\x73\x20\x74" 1976 - "\x68\x65\x20\x74\x69\x6d\x65\x20", 1977 - .ilen = 24, 1978 - .result = "\xcc\xd1\x73\xff\xab\x20\x39\xf4" 1979 - "\xac\xd8\xae\xfd\xdf\xd8\xa1\xeb" 1980 - "\x46\x8e\x91\x15\x78\x88\xba\x68", 1981 - .rlen = 24, 1982 - }, { /* FIPS Pub 81 */ 1983 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 1984 - .klen = 8, 1985 - .iv = "\x12\x34\x56\x78\x90\xab\xcd\xef", 1986 - .input = "\x4e\x6f\x77\x20\x69\x73\x20\x74", 1987 - .ilen = 8, 1988 - .result = "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c", 1989 - .rlen = 8, 1990 - }, { 1991 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 1992 - .klen = 8, 1993 - .iv = "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c", 1994 - .input = "\x68\x65\x20\x74\x69\x6d\x65\x20", 1995 - .ilen = 8, 1996 - .result = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f", 1997 - .rlen = 8, 1998 - }, { 1999 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 2000 - .klen = 8, 2001 - .iv = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f", 2002 - .input = "\x66\x6f\x72\x20\x61\x6c\x6c\x20", 2003 - .ilen = 8, 2004 - .result = "\x68\x37\x88\x49\x9a\x7c\x05\xf6", 2005 - .rlen = 8, 2006 - }, { /* Copy of openssl vector for chunk testing */ 2007 - /* From OpenSSL */ 2008 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 2009 - .klen = 8, 2010 - .iv = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 2011 - .input = "\x37\x36\x35\x34\x33\x32\x31\x20" 2012 - "\x4e\x6f\x77\x20\x69\x73\x20\x74" 2013 - "\x68\x65\x20\x74\x69\x6d\x65\x20", 2014 - .ilen = 24, 2015 - .result = "\xcc\xd1\x73\xff\xab\x20\x39\xf4" 2016 - "\xac\xd8\xae\xfd\xdf\xd8\xa1\xeb" 2017 - "\x46\x8e\x91\x15\x78\x88\xba\x68", 2018 - .rlen = 24, 2019 - .np = 2, 2020 - .tap = { 13, 11 } 2021 - }, 2022 - }; 2023 - 2024 - static struct cipher_testvec des_cbc_dec_tv_template[] = { 2025 - { /* FIPS Pub 81 */ 2026 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 2027 - .klen = 8, 2028 - .iv = "\x12\x34\x56\x78\x90\xab\xcd\xef", 2029 - .input = "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c", 2030 - .ilen = 8, 2031 - .result = "\x4e\x6f\x77\x20\x69\x73\x20\x74", 2032 - .rlen = 8, 2033 - }, { 2034 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 2035 - .klen = 8, 2036 - .iv = "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c", 2037 - .input = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f", 2038 - .ilen = 8, 2039 - .result = "\x68\x65\x20\x74\x69\x6d\x65\x20", 2040 - .rlen = 8, 2041 - }, { 2042 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 2043 - .klen = 8, 2044 - .iv = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f", 2045 - .input = "\x68\x37\x88\x49\x9a\x7c\x05\xf6", 2046 - .ilen = 8, 2047 - .result = "\x66\x6f\x72\x20\x61\x6c\x6c\x20", 2048 - .rlen = 8, 2049 - }, { /* Copy of above, for chunk testing */ 2050 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 2051 - .klen = 8, 2052 - .iv = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f", 2053 - .input = "\x68\x37\x88\x49\x9a\x7c\x05\xf6", 2054 - .ilen = 8, 2055 - .result = "\x66\x6f\x72\x20\x61\x6c\x6c\x20", 2056 - .rlen = 8, 2057 - .np = 2, 2058 - .tap = { 4, 4 } 2059 - }, 2060 - }; 2061 - 2062 - static struct cipher_testvec des3_ede_enc_tv_template[] = { 2063 - { /* These are from openssl */ 79 + static struct cipher_speed_template des3_speed_template[] = { 80 + { 2064 81 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 2065 82 "\x55\x55\x55\x55\x55\x55\x55\x55" 2066 83 "\xfe\xdc\xba\x98\x76\x54\x32\x10", 2067 84 .klen = 24, 2068 - .input = "\x73\x6f\x6d\x65\x64\x61\x74\x61", 2069 - .ilen = 8, 2070 - .result = "\x18\xd7\x48\xe5\x63\x62\x05\x72", 2071 - .rlen = 8, 2072 - }, { 2073 - .key = "\x03\x52\x02\x07\x67\x20\x82\x17" 2074 - "\x86\x02\x87\x66\x59\x08\x21\x98" 2075 - "\x64\x05\x6a\xbd\xfe\xa9\x34\x57", 2076 - .klen = 24, 2077 - .input = "\x73\x71\x75\x69\x67\x67\x6c\x65", 2078 - .ilen = 8, 2079 - .result = "\xc0\x7d\x2a\x0f\xa5\x66\xfa\x30", 2080 - .rlen = 8, 2081 - }, { 2082 - .key = "\x10\x46\x10\x34\x89\x98\x80\x20" 2083 - "\x91\x07\xd0\x15\x89\x19\x01\x01" 2084 - "\x19\x07\x92\x10\x98\x1a\x01\x01", 2085 - .klen = 24, 2086 - .input = "\x00\x00\x00\x00\x00\x00\x00\x00", 2087 - .ilen = 8, 2088 - .result = "\xe1\xef\x62\xc3\x32\xfe\x82\x5b", 2089 - .rlen = 8, 2090 - }, 2091 - }; 2092 - 2093 - static struct cipher_testvec des3_ede_dec_tv_template[] = { 2094 - { /* These are from openssl */ 2095 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 2096 - "\x55\x55\x55\x55\x55\x55\x55\x55" 2097 - "\xfe\xdc\xba\x98\x76\x54\x32\x10", 2098 - .klen = 24, 2099 - .input = "\x18\xd7\x48\xe5\x63\x62\x05\x72", 2100 - .ilen = 8, 2101 - .result = "\x73\x6f\x6d\x65\x64\x61\x74\x61", 2102 - .rlen = 8, 2103 - }, { 2104 - .key = "\x03\x52\x02\x07\x67\x20\x82\x17" 2105 - "\x86\x02\x87\x66\x59\x08\x21\x98" 2106 - "\x64\x05\x6a\xbd\xfe\xa9\x34\x57", 2107 - .klen = 24, 2108 - .input = "\xc0\x7d\x2a\x0f\xa5\x66\xfa\x30", 2109 - .ilen = 8, 2110 - .result = "\x73\x71\x75\x69\x67\x67\x6c\x65", 2111 - .rlen = 8, 2112 - }, { 2113 - .key = "\x10\x46\x10\x34\x89\x98\x80\x20" 2114 - "\x91\x07\xd0\x15\x89\x19\x01\x01" 2115 - "\x19\x07\x92\x10\x98\x1a\x01\x01", 2116 - .klen = 24, 2117 - .input = "\xe1\xef\x62\xc3\x32\xfe\x82\x5b", 2118 - .ilen = 8, 2119 - .result = "\x00\x00\x00\x00\x00\x00\x00\x00", 2120 - .rlen = 8, 2121 - }, 2122 - }; 2123 - 2124 - static struct cipher_testvec des3_ede_cbc_enc_tv_template[] = { 2125 - { /* Generated from openssl */ 2126 - .key = "\xE9\xC0\xFF\x2E\x76\x0B\x64\x24" 2127 - "\x44\x4D\x99\x5A\x12\xD6\x40\xC0" 2128 - "\xEA\xC2\x84\xE8\x14\x95\xDB\xE8", 2129 - .klen = 24, 2130 - .iv = "\x7D\x33\x88\x93\x0F\x93\xB2\x42", 2131 - .input = "\x6f\x54\x20\x6f\x61\x4d\x79\x6e" 2132 - "\x53\x20\x63\x65\x65\x72\x73\x74" 2133 - "\x54\x20\x6f\x6f\x4d\x20\x6e\x61" 2134 - "\x20\x79\x65\x53\x72\x63\x74\x65" 2135 - "\x20\x73\x6f\x54\x20\x6f\x61\x4d" 2136 - "\x79\x6e\x53\x20\x63\x65\x65\x72" 2137 - "\x73\x74\x54\x20\x6f\x6f\x4d\x20" 2138 - "\x6e\x61\x20\x79\x65\x53\x72\x63" 2139 - "\x74\x65\x20\x73\x6f\x54\x20\x6f" 2140 - "\x61\x4d\x79\x6e\x53\x20\x63\x65" 2141 - "\x65\x72\x73\x74\x54\x20\x6f\x6f" 2142 - "\x4d\x20\x6e\x61\x20\x79\x65\x53" 2143 - "\x72\x63\x74\x65\x20\x73\x6f\x54" 2144 - "\x20\x6f\x61\x4d\x79\x6e\x53\x20" 2145 - "\x63\x65\x65\x72\x73\x74\x54\x20" 2146 - "\x6f\x6f\x4d\x20\x6e\x61\x0a\x79", 2147 - .ilen = 128, 2148 - .result = "\x0e\x2d\xb6\x97\x3c\x56\x33\xf4" 2149 - "\x67\x17\x21\xc7\x6e\x8a\xd5\x49" 2150 - "\x74\xb3\x49\x05\xc5\x1c\xd0\xed" 2151 - "\x12\x56\x5c\x53\x96\xb6\x00\x7d" 2152 - "\x90\x48\xfc\xf5\x8d\x29\x39\xcc" 2153 - "\x8a\xd5\x35\x18\x36\x23\x4e\xd7" 2154 - "\x76\xd1\xda\x0c\x94\x67\xbb\x04" 2155 - "\x8b\xf2\x03\x6c\xa8\xcf\xb6\xea" 2156 - "\x22\x64\x47\xaa\x8f\x75\x13\xbf" 2157 - "\x9f\xc2\xc3\xf0\xc9\x56\xc5\x7a" 2158 - "\x71\x63\x2e\x89\x7b\x1e\x12\xca" 2159 - "\xe2\x5f\xaf\xd8\xa4\xf8\xc9\x7a" 2160 - "\xd6\xf9\x21\x31\x62\x44\x45\xa6" 2161 - "\xd6\xbc\x5a\xd3\x2d\x54\x43\xcc" 2162 - "\x9d\xde\xa5\x70\xe9\x42\x45\x8a" 2163 - "\x6b\xfa\xb1\x91\x13\xb0\xd9\x19", 2164 - .rlen = 128, 2165 - }, 2166 - }; 2167 - 2168 - static struct cipher_testvec des3_ede_cbc_dec_tv_template[] = { 2169 - { /* Generated from openssl */ 2170 - .key = "\xE9\xC0\xFF\x2E\x76\x0B\x64\x24" 2171 - "\x44\x4D\x99\x5A\x12\xD6\x40\xC0" 2172 - "\xEA\xC2\x84\xE8\x14\x95\xDB\xE8", 2173 - .klen = 24, 2174 - .iv = "\x7D\x33\x88\x93\x0F\x93\xB2\x42", 2175 - .input = "\x0e\x2d\xb6\x97\x3c\x56\x33\xf4" 2176 - "\x67\x17\x21\xc7\x6e\x8a\xd5\x49" 2177 - "\x74\xb3\x49\x05\xc5\x1c\xd0\xed" 2178 - "\x12\x56\x5c\x53\x96\xb6\x00\x7d" 2179 - "\x90\x48\xfc\xf5\x8d\x29\x39\xcc" 2180 - "\x8a\xd5\x35\x18\x36\x23\x4e\xd7" 2181 - "\x76\xd1\xda\x0c\x94\x67\xbb\x04" 2182 - "\x8b\xf2\x03\x6c\xa8\xcf\xb6\xea" 2183 - "\x22\x64\x47\xaa\x8f\x75\x13\xbf" 2184 - "\x9f\xc2\xc3\xf0\xc9\x56\xc5\x7a" 2185 - "\x71\x63\x2e\x89\x7b\x1e\x12\xca" 2186 - "\xe2\x5f\xaf\xd8\xa4\xf8\xc9\x7a" 2187 - "\xd6\xf9\x21\x31\x62\x44\x45\xa6" 2188 - "\xd6\xbc\x5a\xd3\x2d\x54\x43\xcc" 2189 - "\x9d\xde\xa5\x70\xe9\x42\x45\x8a" 2190 - "\x6b\xfa\xb1\x91\x13\xb0\xd9\x19", 2191 - .ilen = 128, 2192 - .result = "\x6f\x54\x20\x6f\x61\x4d\x79\x6e" 2193 - "\x53\x20\x63\x65\x65\x72\x73\x74" 2194 - "\x54\x20\x6f\x6f\x4d\x20\x6e\x61" 2195 - "\x20\x79\x65\x53\x72\x63\x74\x65" 2196 - "\x20\x73\x6f\x54\x20\x6f\x61\x4d" 2197 - "\x79\x6e\x53\x20\x63\x65\x65\x72" 2198 - "\x73\x74\x54\x20\x6f\x6f\x4d\x20" 2199 - "\x6e\x61\x20\x79\x65\x53\x72\x63" 2200 - "\x74\x65\x20\x73\x6f\x54\x20\x6f" 2201 - "\x61\x4d\x79\x6e\x53\x20\x63\x65" 2202 - "\x65\x72\x73\x74\x54\x20\x6f\x6f" 2203 - "\x4d\x20\x6e\x61\x20\x79\x65\x53" 2204 - "\x72\x63\x74\x65\x20\x73\x6f\x54" 2205 - "\x20\x6f\x61\x4d\x79\x6e\x53\x20" 2206 - "\x63\x65\x65\x72\x73\x74\x54\x20" 2207 - "\x6f\x6f\x4d\x20\x6e\x61\x0a\x79", 2208 - .rlen = 128, 2209 - }, 2210 - }; 2211 - 2212 - /* 2213 - * Blowfish test vectors. 2214 - */ 2215 - #define BF_ENC_TEST_VECTORS 6 2216 - #define BF_DEC_TEST_VECTORS 6 2217 - #define BF_CBC_ENC_TEST_VECTORS 1 2218 - #define BF_CBC_DEC_TEST_VECTORS 1 2219 - 2220 - static struct cipher_testvec bf_enc_tv_template[] = { 2221 - { /* DES test vectors from OpenSSL */ 2222 - .key = "\x00\x00\x00\x00\x00\x00\x00\x00", 2223 - .klen = 8, 2224 - .input = "\x00\x00\x00\x00\x00\x00\x00\x00", 2225 - .ilen = 8, 2226 - .result = "\x4e\xf9\x97\x45\x61\x98\xdd\x78", 2227 - .rlen = 8, 2228 - }, { 2229 - .key = "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e", 2230 - .klen = 8, 2231 - .input = "\x01\x23\x45\x67\x89\xab\xcd\xef", 2232 - .ilen = 8, 2233 - .result = "\xa7\x90\x79\x51\x08\xea\x3c\xae", 2234 - .rlen = 8, 2235 - }, { 2236 - .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87", 2237 - .klen = 8, 2238 - .input = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 2239 - .ilen = 8, 2240 - .result = "\xe8\x7a\x24\x4e\x2c\xc8\x5e\x82", 2241 - .rlen = 8, 2242 - }, { /* Vary the keylength... */ 2243 - .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87" 2244 - "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f", 2245 - .klen = 16, 2246 - .input = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 2247 - .ilen = 8, 2248 - .result = "\x93\x14\x28\x87\xee\x3b\xe1\x5c", 2249 - .rlen = 8, 2250 - }, { 2251 - .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87" 2252 - "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f" 2253 - "\x00\x11\x22\x33\x44", 2254 - .klen = 21, 2255 - .input = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 2256 - .ilen = 8, 2257 - .result = "\xe6\xf5\x1e\xd7\x9b\x9d\xb2\x1f", 2258 - .rlen = 8, 2259 - }, { /* Generated with bf488 */ 2260 - .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87" 2261 - "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f" 2262 - "\x00\x11\x22\x33\x44\x55\x66\x77" 2263 - "\x04\x68\x91\x04\xc2\xfd\x3b\x2f" 2264 - "\x58\x40\x23\x64\x1a\xba\x61\x76" 2265 - "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e" 2266 - "\xff\xff\xff\xff\xff\xff\xff\xff", 2267 - .klen = 56, 2268 - .input = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 2269 - .ilen = 8, 2270 - .result = "\xc0\x45\x04\x01\x2e\x4e\x1f\x53", 2271 - .rlen = 8, 2272 - }, 2273 - }; 2274 - 2275 - static struct cipher_testvec bf_dec_tv_template[] = { 2276 - { /* DES test vectors from OpenSSL */ 2277 - .key = "\x00\x00\x00\x00\x00\x00\x00\x00", 2278 - .klen = 8, 2279 - .input = "\x4e\xf9\x97\x45\x61\x98\xdd\x78", 2280 - .ilen = 8, 2281 - .result = "\x00\x00\x00\x00\x00\x00\x00\x00", 2282 - .rlen = 8, 2283 - }, { 2284 - .key = "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e", 2285 - .klen = 8, 2286 - .input = "\xa7\x90\x79\x51\x08\xea\x3c\xae", 2287 - .ilen = 8, 2288 - .result = "\x01\x23\x45\x67\x89\xab\xcd\xef", 2289 - .rlen = 8, 2290 - }, { 2291 - .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87", 2292 - .klen = 8, 2293 - .input = "\xe8\x7a\x24\x4e\x2c\xc8\x5e\x82", 2294 - .ilen = 8, 2295 - .result = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 2296 - .rlen = 8, 2297 - }, { /* Vary the keylength... */ 2298 - .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87" 2299 - "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f", 2300 - .klen = 16, 2301 - .input = "\x93\x14\x28\x87\xee\x3b\xe1\x5c", 2302 - .ilen = 8, 2303 - .result = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 2304 - .rlen = 8, 2305 - }, { 2306 - .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87" 2307 - "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f" 2308 - "\x00\x11\x22\x33\x44", 2309 - .klen = 21, 2310 - .input = "\xe6\xf5\x1e\xd7\x9b\x9d\xb2\x1f", 2311 - .ilen = 8, 2312 - .result = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 2313 - .rlen = 8, 2314 - }, { /* Generated with bf488, using OpenSSL, Libgcrypt and Nettle */ 2315 - .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87" 2316 - "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f" 2317 - "\x00\x11\x22\x33\x44\x55\x66\x77" 2318 - "\x04\x68\x91\x04\xc2\xfd\x3b\x2f" 2319 - "\x58\x40\x23\x64\x1a\xba\x61\x76" 2320 - "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e" 2321 - "\xff\xff\xff\xff\xff\xff\xff\xff", 2322 - .klen = 56, 2323 - .input = "\xc0\x45\x04\x01\x2e\x4e\x1f\x53", 2324 - .ilen = 8, 2325 - .result = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 2326 - .rlen = 8, 2327 - }, 2328 - }; 2329 - 2330 - static struct cipher_testvec bf_cbc_enc_tv_template[] = { 2331 - { /* From OpenSSL */ 2332 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 2333 - "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87", 2334 - .klen = 16, 2335 - .iv = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 2336 - .input = "\x37\x36\x35\x34\x33\x32\x31\x20" 2337 - "\x4e\x6f\x77\x20\x69\x73\x20\x74" 2338 - "\x68\x65\x20\x74\x69\x6d\x65\x20" 2339 - "\x66\x6f\x72\x20\x00\x00\x00\x00", 2340 - .ilen = 32, 2341 - .result = "\x6b\x77\xb4\xd6\x30\x06\xde\xe6" 2342 - "\x05\xb1\x56\xe2\x74\x03\x97\x93" 2343 - "\x58\xde\xb9\xe7\x15\x46\x16\xd9" 2344 - "\x59\xf1\x65\x2b\xd5\xff\x92\xcc", 2345 - .rlen = 32, 2346 - }, 2347 - }; 2348 - 2349 - static struct cipher_testvec bf_cbc_dec_tv_template[] = { 2350 - { /* From OpenSSL */ 2351 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 2352 - "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87", 2353 - .klen = 16, 2354 - .iv = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 2355 - .input = "\x6b\x77\xb4\xd6\x30\x06\xde\xe6" 2356 - "\x05\xb1\x56\xe2\x74\x03\x97\x93" 2357 - "\x58\xde\xb9\xe7\x15\x46\x16\xd9" 2358 - "\x59\xf1\x65\x2b\xd5\xff\x92\xcc", 2359 - .ilen = 32, 2360 - .result = "\x37\x36\x35\x34\x33\x32\x31\x20" 2361 - "\x4e\x6f\x77\x20\x69\x73\x20\x74" 2362 - "\x68\x65\x20\x74\x69\x6d\x65\x20" 2363 - "\x66\x6f\x72\x20\x00\x00\x00\x00", 2364 - .rlen = 32, 2365 - }, 2366 - }; 2367 - 2368 - /* 2369 - * Twofish test vectors. 2370 - */ 2371 - #define TF_ENC_TEST_VECTORS 3 2372 - #define TF_DEC_TEST_VECTORS 3 2373 - #define TF_CBC_ENC_TEST_VECTORS 4 2374 - #define TF_CBC_DEC_TEST_VECTORS 4 2375 - 2376 - static struct cipher_testvec tf_enc_tv_template[] = { 2377 - { 2378 - .key = zeroed_string, 2379 - .klen = 16, 2380 - .input = zeroed_string, 2381 - .ilen = 16, 2382 - .result = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32" 2383 - "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a", 2384 - .rlen = 16, 2385 - }, { 2386 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 2387 - "\xfe\xdc\xba\x98\x76\x54\x32\x10" 2388 - "\x00\x11\x22\x33\x44\x55\x66\x77", 2389 - .klen = 24, 2390 - .input = zeroed_string, 2391 - .ilen = 16, 2392 - .result = "\xcf\xd1\xd2\xe5\xa9\xbe\x9c\xdf" 2393 - "\x50\x1f\x13\xb8\x92\xbd\x22\x48", 2394 - .rlen = 16, 2395 - }, { 2396 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 2397 - "\xfe\xdc\xba\x98\x76\x54\x32\x10" 2398 - "\x00\x11\x22\x33\x44\x55\x66\x77" 2399 - "\x88\x99\xaa\xbb\xcc\xdd\xee\xff", 2400 - .klen = 32, 2401 - .input = zeroed_string, 2402 - .ilen = 16, 2403 - .result = "\x37\x52\x7b\xe0\x05\x23\x34\xb8" 2404 - "\x9f\x0c\xfc\xca\xe8\x7c\xfa\x20", 2405 - .rlen = 16, 2406 - }, 2407 - }; 2408 - 2409 - static struct cipher_testvec tf_dec_tv_template[] = { 2410 - { 2411 - .key = zeroed_string, 2412 - .klen = 16, 2413 - .input = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32" 2414 - "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a", 2415 - .ilen = 16, 2416 - .result = zeroed_string, 2417 - .rlen = 16, 2418 - }, { 2419 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 2420 - "\xfe\xdc\xba\x98\x76\x54\x32\x10" 2421 - "\x00\x11\x22\x33\x44\x55\x66\x77", 2422 - .klen = 24, 2423 - .input = "\xcf\xd1\xd2\xe5\xa9\xbe\x9c\xdf" 2424 - "\x50\x1f\x13\xb8\x92\xbd\x22\x48", 2425 - .ilen = 16, 2426 - .result = zeroed_string, 2427 - .rlen = 16, 2428 - }, { 2429 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 2430 - "\xfe\xdc\xba\x98\x76\x54\x32\x10" 2431 - "\x00\x11\x22\x33\x44\x55\x66\x77" 2432 - "\x88\x99\xaa\xbb\xcc\xdd\xee\xff", 2433 - .klen = 32, 2434 - .input = "\x37\x52\x7b\xe0\x05\x23\x34\xb8" 2435 - "\x9f\x0c\xfc\xca\xe8\x7c\xfa\x20", 2436 - .ilen = 16, 2437 - .result = zeroed_string, 2438 - .rlen = 16, 2439 - }, 2440 - }; 2441 - 2442 - static struct cipher_testvec tf_cbc_enc_tv_template[] = { 2443 - { /* Generated with Nettle */ 2444 - .key = zeroed_string, 2445 - .klen = 16, 2446 - .iv = zeroed_string, 2447 - .input = zeroed_string, 2448 - .ilen = 16, 2449 - .result = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32" 2450 - "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a", 2451 - .rlen = 16, 2452 - }, { 2453 - .key = zeroed_string, 2454 - .klen = 16, 2455 - .iv = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32" 2456 - "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a", 2457 - .input = zeroed_string, 2458 - .ilen = 16, 2459 - .result = "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e" 2460 - "\x86\xcb\x08\x6b\x78\x9f\x54\x19", 2461 - .rlen = 16, 2462 - }, { 2463 - .key = zeroed_string, 2464 - .klen = 16, 2465 - .iv = "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e" 2466 - "\x86\xcb\x08\x6b\x78\x9f\x54\x19", 2467 - .input = zeroed_string, 2468 - .ilen = 16, 2469 - .result = "\x05\xef\x8c\x61\xa8\x11\x58\x26" 2470 - "\x34\xba\x5c\xb7\x10\x6a\xa6\x41", 2471 - .rlen = 16, 2472 - }, { 2473 - .key = zeroed_string, 2474 - .klen = 16, 2475 - .iv = zeroed_string, 2476 - .input = zeroed_string, 2477 - .ilen = 48, 2478 - .result = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32" 2479 - "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a" 2480 - "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e" 2481 - "\x86\xcb\x08\x6b\x78\x9f\x54\x19" 2482 - "\x05\xef\x8c\x61\xa8\x11\x58\x26" 2483 - "\x34\xba\x5c\xb7\x10\x6a\xa6\x41", 2484 - .rlen = 48, 2485 - }, 2486 - }; 2487 - 2488 - static struct cipher_testvec tf_cbc_dec_tv_template[] = { 2489 - { /* Reverse of the first four above */ 2490 - .key = zeroed_string, 2491 - .klen = 16, 2492 - .iv = zeroed_string, 2493 - .input = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32" 2494 - "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a", 2495 - .ilen = 16, 2496 - .result = zeroed_string, 2497 - .rlen = 16, 2498 - }, { 2499 - .key = zeroed_string, 2500 - .klen = 16, 2501 - .iv = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32" 2502 - "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a", 2503 - .input = "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e" 2504 - "\x86\xcb\x08\x6b\x78\x9f\x54\x19", 2505 - .ilen = 16, 2506 - .result = zeroed_string, 2507 - .rlen = 16, 2508 - }, { 2509 - .key = zeroed_string, 2510 - .klen = 16, 2511 - .iv = "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e" 2512 - "\x86\xcb\x08\x6b\x78\x9f\x54\x19", 2513 - .input = "\x05\xef\x8c\x61\xa8\x11\x58\x26" 2514 - "\x34\xba\x5c\xb7\x10\x6a\xa6\x41", 2515 - .ilen = 16, 2516 - .result = zeroed_string, 2517 - .rlen = 16, 2518 - }, { 2519 - .key = zeroed_string, 2520 - .klen = 16, 2521 - .iv = zeroed_string, 2522 - .input = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32" 2523 - "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a" 2524 - "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e" 2525 - "\x86\xcb\x08\x6b\x78\x9f\x54\x19" 2526 - "\x05\xef\x8c\x61\xa8\x11\x58\x26" 2527 - "\x34\xba\x5c\xb7\x10\x6a\xa6\x41", 2528 - .ilen = 48, 2529 - .result = zeroed_string, 2530 - .rlen = 48, 2531 - }, 2532 - }; 2533 - 2534 - /* 2535 - * Serpent test vectors. These are backwards because Serpent writes 2536 - * octet sequences in right-to-left mode. 2537 - */ 2538 - #define SERPENT_ENC_TEST_VECTORS 4 2539 - #define SERPENT_DEC_TEST_VECTORS 4 2540 - 2541 - #define TNEPRES_ENC_TEST_VECTORS 4 2542 - #define TNEPRES_DEC_TEST_VECTORS 4 2543 - 2544 - static struct cipher_testvec serpent_enc_tv_template[] = { 2545 - { 2546 - .input = "\x00\x01\x02\x03\x04\x05\x06\x07" 2547 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2548 - .ilen = 16, 2549 - .result = "\x12\x07\xfc\xce\x9b\xd0\xd6\x47" 2550 - "\x6a\xe9\x8f\xbe\xd1\x43\xa0\xe2", 2551 - .rlen = 16, 2552 - }, { 2553 - .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 2554 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2555 - .klen = 16, 2556 - .input = "\x00\x01\x02\x03\x04\x05\x06\x07" 2557 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2558 - .ilen = 16, 2559 - .result = "\x4c\x7d\x8a\x32\x80\x72\xa2\x2c" 2560 - "\x82\x3e\x4a\x1f\x3a\xcd\xa1\x6d", 2561 - .rlen = 16, 2562 - }, { 2563 - .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 2564 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 2565 - "\x10\x11\x12\x13\x14\x15\x16\x17" 2566 - "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 2567 - .klen = 32, 2568 - .input = "\x00\x01\x02\x03\x04\x05\x06\x07" 2569 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2570 - .ilen = 16, 2571 - .result = "\xde\x26\x9f\xf8\x33\xe4\x32\xb8" 2572 - "\x5b\x2e\x88\xd2\x70\x1c\xe7\x5c", 2573 - .rlen = 16, 2574 - }, { 2575 - .key = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80", 2576 - .klen = 16, 2577 - .input = zeroed_string, 2578 - .ilen = 16, 2579 - .result = "\xdd\xd2\x6b\x98\xa5\xff\xd8\x2c" 2580 - "\x05\x34\x5a\x9d\xad\xbf\xaf\x49", 2581 - .rlen = 16, 2582 - }, 2583 - }; 2584 - 2585 - static struct cipher_testvec tnepres_enc_tv_template[] = { 2586 - { /* KeySize=128, PT=0, I=1 */ 2587 - .input = "\x00\x00\x00\x00\x00\x00\x00\x00" 2588 - "\x00\x00\x00\x00\x00\x00\x00\x00", 2589 - .key = "\x80\x00\x00\x00\x00\x00\x00\x00" 2590 - "\x00\x00\x00\x00\x00\x00\x00\x00", 2591 - .klen = 16, 2592 - .ilen = 16, 2593 - .result = "\x49\xaf\xbf\xad\x9d\x5a\x34\x05" 2594 - "\x2c\xd8\xff\xa5\x98\x6b\xd2\xdd", 2595 - .rlen = 16, 2596 - }, { /* KeySize=192, PT=0, I=1 */ 2597 - .key = "\x80\x00\x00\x00\x00\x00\x00\x00" 2598 - "\x00\x00\x00\x00\x00\x00\x00\x00" 2599 - "\x00\x00\x00\x00\x00\x00\x00\x00", 2600 - .klen = 24, 2601 - .input = "\x00\x00\x00\x00\x00\x00\x00\x00" 2602 - "\x00\x00\x00\x00\x00\x00\x00\x00", 2603 - .ilen = 16, 2604 - .result = "\xe7\x8e\x54\x02\xc7\x19\x55\x68" 2605 - "\xac\x36\x78\xf7\xa3\xf6\x0c\x66", 2606 - .rlen = 16, 2607 - }, { /* KeySize=256, PT=0, I=1 */ 2608 - .key = "\x80\x00\x00\x00\x00\x00\x00\x00" 2609 - "\x00\x00\x00\x00\x00\x00\x00\x00" 2610 - "\x00\x00\x00\x00\x00\x00\x00\x00" 2611 - "\x00\x00\x00\x00\x00\x00\x00\x00", 2612 - .klen = 32, 2613 - .input = "\x00\x00\x00\x00\x00\x00\x00\x00" 2614 - "\x00\x00\x00\x00\x00\x00\x00\x00", 2615 - .ilen = 16, 2616 - .result = "\xab\xed\x96\xe7\x66\xbf\x28\xcb" 2617 - "\xc0\xeb\xd2\x1a\x82\xef\x08\x19", 2618 - .rlen = 16, 2619 - }, { /* KeySize=256, I=257 */ 2620 - .key = "\x1f\x1e\x1d\x1c\x1b\x1a\x19\x18" 2621 - "\x17\x16\x15\x14\x13\x12\x11\x10" 2622 - "\x0f\x0e\x0d\x0c\x0b\x0a\x09\x08" 2623 - "\x07\x06\x05\x04\x03\x02\x01\x00", 2624 - .klen = 32, 2625 - .input = "\x0f\x0e\x0d\x0c\x0b\x0a\x09\x08" 2626 - "\x07\x06\x05\x04\x03\x02\x01\x00", 2627 - .ilen = 16, 2628 - .result = "\x5c\xe7\x1c\x70\xd2\x88\x2e\x5b" 2629 - "\xb8\x32\xe4\x33\xf8\x9f\x26\xde", 2630 - .rlen = 16, 2631 - }, 2632 - }; 2633 - 2634 - 2635 - static struct cipher_testvec serpent_dec_tv_template[] = { 2636 - { 2637 - .input = "\x12\x07\xfc\xce\x9b\xd0\xd6\x47" 2638 - "\x6a\xe9\x8f\xbe\xd1\x43\xa0\xe2", 2639 - .ilen = 16, 2640 - .result = "\x00\x01\x02\x03\x04\x05\x06\x07" 2641 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2642 - .rlen = 16, 2643 - }, { 2644 - .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 2645 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2646 - .klen = 16, 2647 - .input = "\x4c\x7d\x8a\x32\x80\x72\xa2\x2c" 2648 - "\x82\x3e\x4a\x1f\x3a\xcd\xa1\x6d", 2649 - .ilen = 16, 2650 - .result = "\x00\x01\x02\x03\x04\x05\x06\x07" 2651 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2652 - .rlen = 16, 2653 - }, { 2654 - .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 2655 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 2656 - "\x10\x11\x12\x13\x14\x15\x16\x17" 2657 - "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 2658 - .klen = 32, 2659 - .input = "\xde\x26\x9f\xf8\x33\xe4\x32\xb8" 2660 - "\x5b\x2e\x88\xd2\x70\x1c\xe7\x5c", 2661 - .ilen = 16, 2662 - .result = "\x00\x01\x02\x03\x04\x05\x06\x07" 2663 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2664 - .rlen = 16, 2665 - }, { 2666 - .key = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80", 2667 - .klen = 16, 2668 - .input = "\xdd\xd2\x6b\x98\xa5\xff\xd8\x2c" 2669 - "\x05\x34\x5a\x9d\xad\xbf\xaf\x49", 2670 - .ilen = 16, 2671 - .result = zeroed_string, 2672 - .rlen = 16, 2673 - }, 2674 - }; 2675 - 2676 - static struct cipher_testvec tnepres_dec_tv_template[] = { 2677 - { 2678 - .input = "\x41\xcc\x6b\x31\x59\x31\x45\x97" 2679 - "\x6d\x6f\xbb\x38\x4b\x37\x21\x28", 2680 - .ilen = 16, 2681 - .result = "\x00\x01\x02\x03\x04\x05\x06\x07" 2682 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2683 - .rlen = 16, 2684 - }, { 2685 - .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 2686 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2687 - .klen = 16, 2688 - .input = "\xea\xf4\xd7\xfc\xd8\x01\x34\x47" 2689 - "\x81\x45\x0b\xfa\x0c\xd6\xad\x6e", 2690 - .ilen = 16, 2691 - .result = "\x00\x01\x02\x03\x04\x05\x06\x07" 2692 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2693 - .rlen = 16, 2694 - }, { 2695 - .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 2696 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 2697 - "\x10\x11\x12\x13\x14\x15\x16\x17" 2698 - "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 2699 - .klen = 32, 2700 - .input = "\x64\xa9\x1a\x37\xed\x9f\xe7\x49" 2701 - "\xa8\x4e\x76\xd6\xf5\x0d\x78\xee", 2702 - .ilen = 16, 2703 - .result = "\x00\x01\x02\x03\x04\x05\x06\x07" 2704 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2705 - .rlen = 16, 2706 - }, { /* KeySize=128, I=121 */ 2707 - .key = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80", 2708 - .klen = 16, 2709 - .input = "\x3d\xda\xbf\xc0\x06\xda\xab\x06" 2710 - "\x46\x2a\xf4\xef\x81\x54\x4e\x26", 2711 - .ilen = 16, 2712 - .result = zeroed_string, 2713 - .rlen = 16, 2714 - }, 2715 - }; 2716 - 2717 - 2718 - /* Cast6 test vectors from RFC 2612 */ 2719 - #define CAST6_ENC_TEST_VECTORS 3 2720 - #define CAST6_DEC_TEST_VECTORS 3 2721 - 2722 - static struct cipher_testvec cast6_enc_tv_template[] = { 2723 - { 2724 - .key = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c" 2725 - "\x0a\xf7\x56\x47\xf2\x9f\x61\x5d", 2726 - .klen = 16, 2727 - .input = zeroed_string, 2728 - .ilen = 16, 2729 - .result = "\xc8\x42\xa0\x89\x72\xb4\x3d\x20" 2730 - "\x83\x6c\x91\xd1\xb7\x53\x0f\x6b", 2731 - .rlen = 16, 2732 - }, { 2733 - .key = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c" 2734 - "\xbe\xd0\xac\x83\x94\x0a\xc2\x98" 2735 - "\xba\xc7\x7a\x77\x17\x94\x28\x63", 2736 - .klen = 24, 2737 - .input = zeroed_string, 2738 - .ilen = 16, 2739 - .result = "\x1b\x38\x6c\x02\x10\xdc\xad\xcb" 2740 - "\xdd\x0e\x41\xaa\x08\xa7\xa7\xe8", 2741 - .rlen = 16, 2742 - }, { 2743 - .key = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c" 2744 - "\xbe\xd0\xac\x83\x94\x0a\xc2\x98" 2745 - "\x8d\x7c\x47\xce\x26\x49\x08\x46" 2746 - "\x1c\xc1\xb5\x13\x7a\xe6\xb6\x04", 2747 - .klen = 32, 2748 - .input = zeroed_string, 2749 - .ilen = 16, 2750 - .result = "\x4f\x6a\x20\x38\x28\x68\x97\xb9" 2751 - "\xc9\x87\x01\x36\x55\x33\x17\xfa", 2752 - .rlen = 16, 2753 - }, 2754 - }; 2755 - 2756 - static struct cipher_testvec cast6_dec_tv_template[] = { 2757 - { 2758 - .key = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c" 2759 - "\x0a\xf7\x56\x47\xf2\x9f\x61\x5d", 2760 - .klen = 16, 2761 - .input = "\xc8\x42\xa0\x89\x72\xb4\x3d\x20" 2762 - "\x83\x6c\x91\xd1\xb7\x53\x0f\x6b", 2763 - .ilen = 16, 2764 - .result = zeroed_string, 2765 - .rlen = 16, 2766 - }, { 2767 - .key = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c" 2768 - "\xbe\xd0\xac\x83\x94\x0a\xc2\x98" 2769 - "\xba\xc7\x7a\x77\x17\x94\x28\x63", 2770 - .klen = 24, 2771 - .input = "\x1b\x38\x6c\x02\x10\xdc\xad\xcb" 2772 - "\xdd\x0e\x41\xaa\x08\xa7\xa7\xe8", 2773 - .ilen = 16, 2774 - .result = zeroed_string, 2775 - .rlen = 16, 2776 - }, { 2777 - .key = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c" 2778 - "\xbe\xd0\xac\x83\x94\x0a\xc2\x98" 2779 - "\x8d\x7c\x47\xce\x26\x49\x08\x46" 2780 - "\x1c\xc1\xb5\x13\x7a\xe6\xb6\x04", 2781 - .klen = 32, 2782 - .input = "\x4f\x6a\x20\x38\x28\x68\x97\xb9" 2783 - "\xc9\x87\x01\x36\x55\x33\x17\xfa", 2784 - .ilen = 16, 2785 - .result = zeroed_string, 2786 - .rlen = 16, 2787 - }, 2788 - }; 2789 - 2790 - 2791 - /* 2792 - * AES test vectors. 2793 - */ 2794 - #define AES_ENC_TEST_VECTORS 3 2795 - #define AES_DEC_TEST_VECTORS 3 2796 - #define AES_CBC_ENC_TEST_VECTORS 4 2797 - #define AES_CBC_DEC_TEST_VECTORS 4 2798 - #define AES_LRW_ENC_TEST_VECTORS 8 2799 - #define AES_LRW_DEC_TEST_VECTORS 8 2800 - #define AES_XTS_ENC_TEST_VECTORS 4 2801 - #define AES_XTS_DEC_TEST_VECTORS 4 2802 - #define AES_CTR_ENC_TEST_VECTORS 7 2803 - #define AES_CTR_DEC_TEST_VECTORS 6 2804 - #define AES_GCM_ENC_TEST_VECTORS 9 2805 - #define AES_GCM_DEC_TEST_VECTORS 8 2806 - #define AES_CCM_ENC_TEST_VECTORS 7 2807 - #define AES_CCM_DEC_TEST_VECTORS 7 2808 - 2809 - static struct cipher_testvec aes_enc_tv_template[] = { 2810 - { /* From FIPS-197 */ 2811 - .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 2812 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2813 - .klen = 16, 2814 - .input = "\x00\x11\x22\x33\x44\x55\x66\x77" 2815 - "\x88\x99\xaa\xbb\xcc\xdd\xee\xff", 2816 - .ilen = 16, 2817 - .result = "\x69\xc4\xe0\xd8\x6a\x7b\x04\x30" 2818 - "\xd8\xcd\xb7\x80\x70\xb4\xc5\x5a", 2819 - .rlen = 16, 2820 - }, { 2821 - .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 2822 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 2823 - "\x10\x11\x12\x13\x14\x15\x16\x17", 2824 - .klen = 24, 2825 - .input = "\x00\x11\x22\x33\x44\x55\x66\x77" 2826 - "\x88\x99\xaa\xbb\xcc\xdd\xee\xff", 2827 - .ilen = 16, 2828 - .result = "\xdd\xa9\x7c\xa4\x86\x4c\xdf\xe0" 2829 - "\x6e\xaf\x70\xa0\xec\x0d\x71\x91", 2830 - .rlen = 16, 2831 - }, { 2832 - .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 2833 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 2834 - "\x10\x11\x12\x13\x14\x15\x16\x17" 2835 - "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 2836 - .klen = 32, 2837 - .input = "\x00\x11\x22\x33\x44\x55\x66\x77" 2838 - "\x88\x99\xaa\xbb\xcc\xdd\xee\xff", 2839 - .ilen = 16, 2840 - .result = "\x8e\xa2\xb7\xca\x51\x67\x45\xbf" 2841 - "\xea\xfc\x49\x90\x4b\x49\x60\x89", 2842 - .rlen = 16, 2843 - }, 2844 - }; 2845 - 2846 - static struct cipher_testvec aes_dec_tv_template[] = { 2847 - { /* From FIPS-197 */ 2848 - .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 2849 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2850 - .klen = 16, 2851 - .input = "\x69\xc4\xe0\xd8\x6a\x7b\x04\x30" 2852 - "\xd8\xcd\xb7\x80\x70\xb4\xc5\x5a", 2853 - .ilen = 16, 2854 - .result = "\x00\x11\x22\x33\x44\x55\x66\x77" 2855 - "\x88\x99\xaa\xbb\xcc\xdd\xee\xff", 2856 - .rlen = 16, 2857 - }, { 2858 - .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 2859 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 2860 - "\x10\x11\x12\x13\x14\x15\x16\x17", 2861 - .klen = 24, 2862 - .input = "\xdd\xa9\x7c\xa4\x86\x4c\xdf\xe0" 2863 - "\x6e\xaf\x70\xa0\xec\x0d\x71\x91", 2864 - .ilen = 16, 2865 - .result = "\x00\x11\x22\x33\x44\x55\x66\x77" 2866 - "\x88\x99\xaa\xbb\xcc\xdd\xee\xff", 2867 - .rlen = 16, 2868 - }, { 2869 - .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 2870 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 2871 - "\x10\x11\x12\x13\x14\x15\x16\x17" 2872 - "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 2873 - .klen = 32, 2874 - .input = "\x8e\xa2\xb7\xca\x51\x67\x45\xbf" 2875 - "\xea\xfc\x49\x90\x4b\x49\x60\x89", 2876 - .ilen = 16, 2877 - .result = "\x00\x11\x22\x33\x44\x55\x66\x77" 2878 - "\x88\x99\xaa\xbb\xcc\xdd\xee\xff", 2879 - .rlen = 16, 2880 - }, 2881 - }; 2882 - 2883 - static struct cipher_testvec aes_cbc_enc_tv_template[] = { 2884 - { /* From RFC 3602 */ 2885 - .key = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b" 2886 - "\x51\x2e\x03\xd5\x34\x12\x00\x06", 2887 - .klen = 16, 2888 - .iv = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30" 2889 - "\xb4\x22\xda\x80\x2c\x9f\xac\x41", 2890 - .input = "Single block msg", 2891 - .ilen = 16, 2892 - .result = "\xe3\x53\x77\x9c\x10\x79\xae\xb8" 2893 - "\x27\x08\x94\x2d\xbe\x77\x18\x1a", 2894 - .rlen = 16, 2895 - }, { 2896 - .key = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0" 2897 - "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a", 2898 - .klen = 16, 2899 - .iv = "\x56\x2e\x17\x99\x6d\x09\x3d\x28" 2900 - "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58", 2901 - .input = "\x00\x01\x02\x03\x04\x05\x06\x07" 2902 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 2903 - "\x10\x11\x12\x13\x14\x15\x16\x17" 2904 - "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 2905 - .ilen = 32, 2906 - .result = "\xd2\x96\xcd\x94\xc2\xcc\xcf\x8a" 2907 - "\x3a\x86\x30\x28\xb5\xe1\xdc\x0a" 2908 - "\x75\x86\x60\x2d\x25\x3c\xff\xf9" 2909 - "\x1b\x82\x66\xbe\xa6\xd6\x1a\xb1", 2910 - .rlen = 32, 2911 - }, { /* From NIST SP800-38A */ 2912 - .key = "\x8e\x73\xb0\xf7\xda\x0e\x64\x52" 2913 - "\xc8\x10\xf3\x2b\x80\x90\x79\xe5" 2914 - "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b", 2915 - .klen = 24, 2916 - .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 2917 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2918 - .input = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 2919 - "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 2920 - "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 2921 - "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 2922 - "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 2923 - "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 2924 - "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 2925 - "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 2926 - .ilen = 64, 2927 - .result = "\x4f\x02\x1d\xb2\x43\xbc\x63\x3d" 2928 - "\x71\x78\x18\x3a\x9f\xa0\x71\xe8" 2929 - "\xb4\xd9\xad\xa9\xad\x7d\xed\xf4" 2930 - "\xe5\xe7\x38\x76\x3f\x69\x14\x5a" 2931 - "\x57\x1b\x24\x20\x12\xfb\x7a\xe0" 2932 - "\x7f\xa9\xba\xac\x3d\xf1\x02\xe0" 2933 - "\x08\xb0\xe2\x79\x88\x59\x88\x81" 2934 - "\xd9\x20\xa9\xe6\x4f\x56\x15\xcd", 2935 - .rlen = 64, 2936 - }, { 2937 - .key = "\x60\x3d\xeb\x10\x15\xca\x71\xbe" 2938 - "\x2b\x73\xae\xf0\x85\x7d\x77\x81" 2939 - "\x1f\x35\x2c\x07\x3b\x61\x08\xd7" 2940 - "\x2d\x98\x10\xa3\x09\x14\xdf\xf4", 2941 - .klen = 32, 2942 - .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 2943 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2944 - .input = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 2945 - "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 2946 - "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 2947 - "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 2948 - "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 2949 - "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 2950 - "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 2951 - "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 2952 - .ilen = 64, 2953 - .result = "\xf5\x8c\x4c\x04\xd6\xe5\xf1\xba" 2954 - "\x77\x9e\xab\xfb\x5f\x7b\xfb\xd6" 2955 - "\x9c\xfc\x4e\x96\x7e\xdb\x80\x8d" 2956 - "\x67\x9f\x77\x7b\xc6\x70\x2c\x7d" 2957 - "\x39\xf2\x33\x69\xa9\xd9\xba\xcf" 2958 - "\xa5\x30\xe2\x63\x04\x23\x14\x61" 2959 - "\xb2\xeb\x05\xe2\xc3\x9b\xe9\xfc" 2960 - "\xda\x6c\x19\x07\x8c\x6a\x9d\x1b", 2961 - .rlen = 64, 2962 - }, 2963 - }; 2964 - 2965 - static struct cipher_testvec aes_cbc_dec_tv_template[] = { 2966 - { /* From RFC 3602 */ 2967 - .key = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b" 2968 - "\x51\x2e\x03\xd5\x34\x12\x00\x06", 2969 - .klen = 16, 2970 - .iv = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30" 2971 - "\xb4\x22\xda\x80\x2c\x9f\xac\x41", 2972 - .input = "\xe3\x53\x77\x9c\x10\x79\xae\xb8" 2973 - "\x27\x08\x94\x2d\xbe\x77\x18\x1a", 2974 - .ilen = 16, 2975 - .result = "Single block msg", 2976 - .rlen = 16, 2977 - }, { 2978 - .key = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0" 2979 - "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a", 2980 - .klen = 16, 2981 - .iv = "\x56\x2e\x17\x99\x6d\x09\x3d\x28" 2982 - "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58", 2983 - .input = "\xd2\x96\xcd\x94\xc2\xcc\xcf\x8a" 2984 - "\x3a\x86\x30\x28\xb5\xe1\xdc\x0a" 2985 - "\x75\x86\x60\x2d\x25\x3c\xff\xf9" 2986 - "\x1b\x82\x66\xbe\xa6\xd6\x1a\xb1", 2987 - .ilen = 32, 2988 - .result = "\x00\x01\x02\x03\x04\x05\x06\x07" 2989 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 2990 - "\x10\x11\x12\x13\x14\x15\x16\x17" 2991 - "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 2992 - .rlen = 32, 2993 - }, { /* From NIST SP800-38A */ 2994 - .key = "\x8e\x73\xb0\xf7\xda\x0e\x64\x52" 2995 - "\xc8\x10\xf3\x2b\x80\x90\x79\xe5" 2996 - "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b", 2997 - .klen = 24, 2998 - .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 2999 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 3000 - .input = "\x4f\x02\x1d\xb2\x43\xbc\x63\x3d" 3001 - "\x71\x78\x18\x3a\x9f\xa0\x71\xe8" 3002 - "\xb4\xd9\xad\xa9\xad\x7d\xed\xf4" 3003 - "\xe5\xe7\x38\x76\x3f\x69\x14\x5a" 3004 - "\x57\x1b\x24\x20\x12\xfb\x7a\xe0" 3005 - "\x7f\xa9\xba\xac\x3d\xf1\x02\xe0" 3006 - "\x08\xb0\xe2\x79\x88\x59\x88\x81" 3007 - "\xd9\x20\xa9\xe6\x4f\x56\x15\xcd", 3008 - .ilen = 64, 3009 - .result = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 3010 - "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 3011 - "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 3012 - "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 3013 - "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 3014 - "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 3015 - "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 3016 - "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 3017 - .rlen = 64, 3018 - }, { 3019 - .key = "\x60\x3d\xeb\x10\x15\xca\x71\xbe" 3020 - "\x2b\x73\xae\xf0\x85\x7d\x77\x81" 3021 - "\x1f\x35\x2c\x07\x3b\x61\x08\xd7" 3022 - "\x2d\x98\x10\xa3\x09\x14\xdf\xf4", 3023 - .klen = 32, 3024 - .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 3025 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 3026 - .input = "\xf5\x8c\x4c\x04\xd6\xe5\xf1\xba" 3027 - "\x77\x9e\xab\xfb\x5f\x7b\xfb\xd6" 3028 - "\x9c\xfc\x4e\x96\x7e\xdb\x80\x8d" 3029 - "\x67\x9f\x77\x7b\xc6\x70\x2c\x7d" 3030 - "\x39\xf2\x33\x69\xa9\xd9\xba\xcf" 3031 - "\xa5\x30\xe2\x63\x04\x23\x14\x61" 3032 - "\xb2\xeb\x05\xe2\xc3\x9b\xe9\xfc" 3033 - "\xda\x6c\x19\x07\x8c\x6a\x9d\x1b", 3034 - .ilen = 64, 3035 - .result = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 3036 - "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 3037 - "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 3038 - "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 3039 - "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 3040 - "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 3041 - "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 3042 - "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 3043 - .rlen = 64, 3044 - }, 3045 - }; 3046 - 3047 - static struct cipher_testvec aes_lrw_enc_tv_template[] = { 3048 - /* from http://grouper.ieee.org/groups/1619/email/pdf00017.pdf */ 3049 - { /* LRW-32-AES 1 */ 3050 - .key = "\x45\x62\xac\x25\xf8\x28\x17\x6d" 3051 - "\x4c\x26\x84\x14\xb5\x68\x01\x85" 3052 - "\x25\x8e\x2a\x05\xe7\x3e\x9d\x03" 3053 - "\xee\x5a\x83\x0c\xcc\x09\x4c\x87", 3054 - .klen = 32, 3055 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3056 - "\x00\x00\x00\x00\x00\x00\x00\x01", 3057 - .input = "\x30\x31\x32\x33\x34\x35\x36\x37" 3058 - "\x38\x39\x41\x42\x43\x44\x45\x46", 3059 - .ilen = 16, 3060 - .result = "\xf1\xb2\x73\xcd\x65\xa3\xdf\x5f" 3061 - "\xe9\x5d\x48\x92\x54\x63\x4e\xb8", 3062 - .rlen = 16, 3063 - }, { /* LRW-32-AES 2 */ 3064 - .key = "\x59\x70\x47\x14\xf5\x57\x47\x8c" 3065 - "\xd7\x79\xe8\x0f\x54\x88\x79\x44" 3066 - "\x0d\x48\xf0\xb7\xb1\x5a\x53\xea" 3067 - "\x1c\xaa\x6b\x29\xc2\xca\xfb\xaf", 3068 - .klen = 32, 3069 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3070 - "\x00\x00\x00\x00\x00\x00\x00\x02", 3071 - .input = "\x30\x31\x32\x33\x34\x35\x36\x37" 3072 - "\x38\x39\x41\x42\x43\x44\x45\x46", 3073 - .ilen = 16, 3074 - .result = "\x00\xc8\x2b\xae\x95\xbb\xcd\xe5" 3075 - "\x27\x4f\x07\x69\xb2\x60\xe1\x36", 3076 - .rlen = 16, 3077 - }, { /* LRW-32-AES 3 */ 3078 - .key = "\xd8\x2a\x91\x34\xb2\x6a\x56\x50" 3079 - "\x30\xfe\x69\xe2\x37\x7f\x98\x47" 3080 - "\xcd\xf9\x0b\x16\x0c\x64\x8f\xb6" 3081 - "\xb0\x0d\x0d\x1b\xae\x85\x87\x1f", 3082 - .klen = 32, 3083 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3084 - "\x00\x00\x00\x02\x00\x00\x00\x00", 3085 - .input = "\x30\x31\x32\x33\x34\x35\x36\x37" 3086 - "\x38\x39\x41\x42\x43\x44\x45\x46", 3087 - .ilen = 16, 3088 - .result = "\x76\x32\x21\x83\xed\x8f\xf1\x82" 3089 - "\xf9\x59\x62\x03\x69\x0e\x5e\x01", 3090 - .rlen = 16, 3091 - }, { /* LRW-32-AES 4 */ 3092 - .key = "\x0f\x6a\xef\xf8\xd3\xd2\xbb\x15" 3093 - "\x25\x83\xf7\x3c\x1f\x01\x28\x74" 3094 - "\xca\xc6\xbc\x35\x4d\x4a\x65\x54" 3095 - "\x90\xae\x61\xcf\x7b\xae\xbd\xcc" 3096 - "\xad\xe4\x94\xc5\x4a\x29\xae\x70", 3097 - .klen = 40, 3098 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3099 - "\x00\x00\x00\x00\x00\x00\x00\x01", 3100 - .input = "\x30\x31\x32\x33\x34\x35\x36\x37" 3101 - "\x38\x39\x41\x42\x43\x44\x45\x46", 3102 - .ilen = 16, 3103 - .result = "\x9c\x0f\x15\x2f\x55\xa2\xd8\xf0" 3104 - "\xd6\x7b\x8f\x9e\x28\x22\xbc\x41", 3105 - .rlen = 16, 3106 - }, { /* LRW-32-AES 5 */ 3107 - .key = "\x8a\xd4\xee\x10\x2f\xbd\x81\xff" 3108 - "\xf8\x86\xce\xac\x93\xc5\xad\xc6" 3109 - "\xa0\x19\x07\xc0\x9d\xf7\xbb\xdd" 3110 - "\x52\x13\xb2\xb7\xf0\xff\x11\xd8" 3111 - "\xd6\x08\xd0\xcd\x2e\xb1\x17\x6f", 3112 - .klen = 40, 3113 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3114 - "\x00\x00\x00\x02\x00\x00\x00\x00", 3115 - .input = "\x30\x31\x32\x33\x34\x35\x36\x37" 3116 - "\x38\x39\x41\x42\x43\x44\x45\x46", 3117 - .ilen = 16, 3118 - .result = "\xd4\x27\x6a\x7f\x14\x91\x3d\x65" 3119 - "\xc8\x60\x48\x02\x87\xe3\x34\x06", 3120 - .rlen = 16, 3121 - }, { /* LRW-32-AES 6 */ 3122 - .key = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c" 3123 - "\x23\x84\xcb\x1c\x77\xd6\x19\x5d" 3124 - "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21" 3125 - "\xa7\x9c\x21\xf8\xcb\x90\x02\x89" 3126 - "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1" 3127 - "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e", 3128 - .klen = 48, 3129 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3130 - "\x00\x00\x00\x00\x00\x00\x00\x01", 3131 - .input = "\x30\x31\x32\x33\x34\x35\x36\x37" 3132 - "\x38\x39\x41\x42\x43\x44\x45\x46", 3133 - .ilen = 16, 3134 - .result = "\xbd\x06\xb8\xe1\xdb\x98\x89\x9e" 3135 - "\xc4\x98\xe4\x91\xcf\x1c\x70\x2b", 3136 - .rlen = 16, 3137 - }, { /* LRW-32-AES 7 */ 3138 - .key = "\xfb\x76\x15\xb2\x3d\x80\x89\x1d" 3139 - "\xd4\x70\x98\x0b\xc7\x95\x84\xc8" 3140 - "\xb2\xfb\x64\xce\x60\x97\x87\x8d" 3141 - "\x17\xfc\xe4\x5a\x49\xe8\x30\xb7" 3142 - "\x6e\x78\x17\xe7\x2d\x5e\x12\xd4" 3143 - "\x60\x64\x04\x7a\xf1\x2f\x9e\x0c", 3144 - .klen = 48, 3145 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3146 - "\x00\x00\x00\x02\x00\x00\x00\x00", 3147 - .input = "\x30\x31\x32\x33\x34\x35\x36\x37" 3148 - "\x38\x39\x41\x42\x43\x44\x45\x46", 3149 - .ilen = 16, 3150 - .result = "\x5b\x90\x8e\xc1\xab\xdd\x67\x5f" 3151 - "\x3d\x69\x8a\x95\x53\xc8\x9c\xe5", 3152 - .rlen = 16, 3153 - }, { 3154 - /* http://www.mail-archive.com/stds-p1619@listserv.ieee.org/msg00173.html */ 3155 - .key = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c" 3156 - "\x23\x84\xcb\x1c\x77\xd6\x19\x5d" 3157 - "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21" 3158 - "\xa7\x9c\x21\xf8\xcb\x90\x02\x89" 3159 - "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1" 3160 - "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e", 3161 - .klen = 48, 3162 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3163 - "\x00\x00\x00\x00\x00\x00\x00\x01", 3164 - .input = "\x05\x11\xb7\x18\xab\xc6\x2d\xac" 3165 - "\x70\x5d\xf6\x22\x94\xcd\xe5\x6c" 3166 - "\x17\x6b\xf6\x1c\xf0\xf3\x6e\xf8" 3167 - "\x50\x38\x1f\x71\x49\xb6\x57\xd6" 3168 - "\x8f\xcb\x8d\x6b\xe3\xa6\x29\x90" 3169 - "\xfe\x2a\x62\x82\xae\x6d\x8b\xf6" 3170 - "\xad\x1e\x9e\x20\x5f\x38\xbe\x04" 3171 - "\xda\x10\x8e\xed\xa2\xa4\x87\xab" 3172 - "\xda\x6b\xb4\x0c\x75\xba\xd3\x7c" 3173 - "\xc9\xac\x42\x31\x95\x7c\xc9\x04" 3174 - "\xeb\xd5\x6e\x32\x69\x8a\xdb\xa6" 3175 - "\x15\xd7\x3f\x4f\x2f\x66\x69\x03" 3176 - "\x9c\x1f\x54\x0f\xde\x1f\xf3\x65" 3177 - "\x4c\x96\x12\xed\x7c\x92\x03\x01" 3178 - "\x6f\xbc\x35\x93\xac\xf1\x27\xf1" 3179 - "\xb4\x96\x82\x5a\x5f\xb0\xa0\x50" 3180 - "\x89\xa4\x8e\x66\x44\x85\xcc\xfd" 3181 - "\x33\x14\x70\xe3\x96\xb2\xc3\xd3" 3182 - "\xbb\x54\x5a\x1a\xf9\x74\xa2\xc5" 3183 - "\x2d\x64\x75\xdd\xb4\x54\xe6\x74" 3184 - "\x8c\xd3\x9d\x9e\x86\xab\x51\x53" 3185 - "\xb7\x93\x3e\x6f\xd0\x4e\x2c\x40" 3186 - "\xf6\xa8\x2e\x3e\x9d\xf4\x66\xa5" 3187 - "\x76\x12\x73\x44\x1a\x56\xd7\x72" 3188 - "\x88\xcd\x21\x8c\x4c\x0f\xfe\xda" 3189 - "\x95\xe0\x3a\xa6\xa5\x84\x46\xcd" 3190 - "\xd5\x3e\x9d\x3a\xe2\x67\xe6\x60" 3191 - "\x1a\xe2\x70\x85\x58\xc2\x1b\x09" 3192 - "\xe1\xd7\x2c\xca\xad\xa8\x8f\xf9" 3193 - "\xac\xb3\x0e\xdb\xca\x2e\xe2\xb8" 3194 - "\x51\x71\xd9\x3c\x6c\xf1\x56\xf8" 3195 - "\xea\x9c\xf1\xfb\x0c\xe6\xb7\x10" 3196 - "\x1c\xf8\xa9\x7c\xe8\x53\x35\xc1" 3197 - "\x90\x3e\x76\x4a\x74\xa4\x21\x2c" 3198 - "\xf6\x2c\x4e\x0f\x94\x3a\x88\x2e" 3199 - "\x41\x09\x6a\x33\x7d\xf6\xdd\x3f" 3200 - "\x8d\x23\x31\x74\x84\xeb\x88\x6e" 3201 - "\xcc\xb9\xbc\x22\x83\x19\x07\x22" 3202 - "\xa5\x2d\xdf\xa5\xf3\x80\x85\x78" 3203 - "\x84\x39\x6a\x6d\x6a\x99\x4f\xa5" 3204 - "\x15\xfe\x46\xb0\xe4\x6c\xa5\x41" 3205 - "\x3c\xce\x8f\x42\x60\x71\xa7\x75" 3206 - "\x08\x40\x65\x8a\x82\xbf\xf5\x43" 3207 - "\x71\x96\xa9\x4d\x44\x8a\x20\xbe" 3208 - "\xfa\x4d\xbb\xc0\x7d\x31\x96\x65" 3209 - "\xe7\x75\xe5\x3e\xfd\x92\x3b\xc9" 3210 - "\x55\xbb\x16\x7e\xf7\xc2\x8c\xa4" 3211 - "\x40\x1d\xe5\xef\x0e\xdf\xe4\x9a" 3212 - "\x62\x73\x65\xfd\x46\x63\x25\x3d" 3213 - "\x2b\xaf\xe5\x64\xfe\xa5\x5c\xcf" 3214 - "\x24\xf3\xb4\xac\x64\xba\xdf\x4b" 3215 - "\xc6\x96\x7d\x81\x2d\x8d\x97\xf7" 3216 - "\xc5\x68\x77\x84\x32\x2b\xcc\x85" 3217 - "\x74\x96\xf0\x12\x77\x61\xb9\xeb" 3218 - "\x71\xaa\x82\xcb\x1c\xdb\x89\xc8" 3219 - "\xc6\xb5\xe3\x5c\x7d\x39\x07\x24" 3220 - "\xda\x39\x87\x45\xc0\x2b\xbb\x01" 3221 - "\xac\xbc\x2a\x5c\x7f\xfc\xe8\xce" 3222 - "\x6d\x9c\x6f\xed\xd3\xc1\xa1\xd6" 3223 - "\xc5\x55\xa9\x66\x2f\xe1\xc8\x32" 3224 - "\xa6\x5d\xa4\x3a\x98\x73\xe8\x45" 3225 - "\xa4\xc7\xa8\xb4\xf6\x13\x03\xf6" 3226 - "\xe9\x2e\xc4\x29\x0f\x84\xdb\xc4" 3227 - "\x21\xc4\xc2\x75\x67\x89\x37\x0a", 3228 - .ilen = 512, 3229 - .result = "\x1a\x1d\xa9\x30\xad\xf9\x2f\x9b" 3230 - "\xb6\x1d\xae\xef\xf0\x2f\xf8\x5a" 3231 - "\x39\x3c\xbf\x2a\xb2\x45\xb2\x23" 3232 - "\x1b\x63\x3c\xcf\xaa\xbe\xcf\x4e" 3233 - "\xfa\xe8\x29\xc2\x20\x68\x2b\x3c" 3234 - "\x2e\x8b\xf7\x6e\x25\xbd\xe3\x3d" 3235 - "\x66\x27\xd6\xaf\xd6\x64\x3e\xe3" 3236 - "\xe8\x58\x46\x97\x39\x51\x07\xde" 3237 - "\xcb\x37\xbc\xa9\xc0\x5f\x75\xc3" 3238 - "\x0e\x84\x23\x1d\x16\xd4\x1c\x59" 3239 - "\x9c\x1a\x02\x55\xab\x3a\x97\x1d" 3240 - "\xdf\xdd\xc7\x06\x51\xd7\x70\xae" 3241 - "\x23\xc6\x8c\xf5\x1e\xa0\xe5\x82" 3242 - "\xb8\xb2\xbf\x04\xa0\x32\x8e\x68" 3243 - "\xeb\xaf\x6e\x2d\x94\x22\x2f\xce" 3244 - "\x4c\xb5\x59\xe2\xa2\x2f\xa0\x98" 3245 - "\x1a\x97\xc6\xd4\xb5\x00\x59\xf2" 3246 - "\x84\x14\x72\xb1\x9a\x6e\xa3\x7f" 3247 - "\xea\x20\xe7\xcb\x65\x77\x3a\xdf" 3248 - "\xc8\x97\x67\x15\xc2\x2a\x27\xcc" 3249 - "\x18\x55\xa1\x24\x0b\x24\x24\xaf" 3250 - "\x5b\xec\x68\xb8\xc8\xf5\xba\x63" 3251 - "\xff\xed\x89\xce\xd5\x3d\x88\xf3" 3252 - "\x25\xef\x05\x7c\x3a\xef\xeb\xd8" 3253 - "\x7a\x32\x0d\xd1\x1e\x58\x59\x99" 3254 - "\x90\x25\xb5\x26\xb0\xe3\x2b\x6c" 3255 - "\x4c\xa9\x8b\x84\x4f\x5e\x01\x50" 3256 - "\x41\x30\x58\xc5\x62\x74\x52\x1d" 3257 - "\x45\x24\x6a\x42\x64\x4f\x97\x1c" 3258 - "\xa8\x66\xb5\x6d\x79\xd4\x0d\x48" 3259 - "\xc5\x5f\xf3\x90\x32\xdd\xdd\xe1" 3260 - "\xe4\xa9\x9f\xfc\xc3\x52\x5a\x46" 3261 - "\xe4\x81\x84\x95\x36\x59\x7a\x6b" 3262 - "\xaa\xb3\x60\xad\xce\x9f\x9f\x28" 3263 - "\xe0\x01\x75\x22\xc4\x4e\xa9\x62" 3264 - "\x5c\x62\x0d\x00\xcb\x13\xe8\x43" 3265 - "\x72\xd4\x2d\x53\x46\xb5\xd1\x16" 3266 - "\x22\x18\xdf\x34\x33\xf5\xd6\x1c" 3267 - "\xb8\x79\x78\x97\x94\xff\x72\x13" 3268 - "\x4c\x27\xfc\xcb\xbf\x01\x53\xa6" 3269 - "\xb4\x50\x6e\xde\xdf\xb5\x43\xa4" 3270 - "\x59\xdf\x52\xf9\x7c\xe0\x11\x6f" 3271 - "\x2d\x14\x8e\x24\x61\x2c\xe1\x17" 3272 - "\xcc\xce\x51\x0c\x19\x8a\x82\x30" 3273 - "\x94\xd5\x3d\x6a\x53\x06\x5e\xbd" 3274 - "\xb7\xeb\xfa\xfd\x27\x51\xde\x85" 3275 - "\x1e\x86\x53\x11\x53\x94\x00\xee" 3276 - "\x2b\x8c\x08\x2a\xbf\xdd\xae\x11" 3277 - "\xcb\x1e\xa2\x07\x9a\x80\xcf\x62" 3278 - "\x9b\x09\xdc\x95\x3c\x96\x8e\xb1" 3279 - "\x09\xbd\xe4\xeb\xdb\xca\x70\x7a" 3280 - "\x9e\xfa\x31\x18\x45\x3c\x21\x33" 3281 - "\xb0\xb3\x2b\xea\xf3\x71\x2d\xe1" 3282 - "\x03\xad\x1b\x48\xd4\x67\x27\xf0" 3283 - "\x62\xe4\x3d\xfb\x9b\x08\x76\xe7" 3284 - "\xdd\x2b\x01\x39\x04\x5a\x58\x7a" 3285 - "\xf7\x11\x90\xec\xbd\x51\x5c\x32" 3286 - "\x6b\xd7\x35\x39\x02\x6b\xf2\xa6" 3287 - "\xd0\x0d\x07\xe1\x06\xc4\x5b\x7d" 3288 - "\xe4\x6a\xd7\xee\x15\x1f\x83\xb4" 3289 - "\xa3\xa7\x5e\xc3\x90\xb7\xef\xd3" 3290 - "\xb7\x4f\xf8\x92\x4c\xb7\x3c\x29" 3291 - "\xcd\x7e\x2b\x5d\x43\xea\x42\xe7" 3292 - "\x74\x3f\x7d\x58\x88\x75\xde\x3e", 3293 - .rlen = 512, 3294 85 } 3295 - }; 3296 - 3297 - static struct cipher_testvec aes_lrw_dec_tv_template[] = { 3298 - /* from http://grouper.ieee.org/groups/1619/email/pdf00017.pdf */ 3299 - /* same as enc vectors with input and result reversed */ 3300 - { /* LRW-32-AES 1 */ 3301 - .key = "\x45\x62\xac\x25\xf8\x28\x17\x6d" 3302 - "\x4c\x26\x84\x14\xb5\x68\x01\x85" 3303 - "\x25\x8e\x2a\x05\xe7\x3e\x9d\x03" 3304 - "\xee\x5a\x83\x0c\xcc\x09\x4c\x87", 3305 - .klen = 32, 3306 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3307 - "\x00\x00\x00\x00\x00\x00\x00\x01", 3308 - .input = "\xf1\xb2\x73\xcd\x65\xa3\xdf\x5f" 3309 - "\xe9\x5d\x48\x92\x54\x63\x4e\xb8", 3310 - .ilen = 16, 3311 - .result = "\x30\x31\x32\x33\x34\x35\x36\x37" 3312 - "\x38\x39\x41\x42\x43\x44\x45\x46", 3313 - .rlen = 16, 3314 - }, { /* LRW-32-AES 2 */ 3315 - .key = "\x59\x70\x47\x14\xf5\x57\x47\x8c" 3316 - "\xd7\x79\xe8\x0f\x54\x88\x79\x44" 3317 - "\x0d\x48\xf0\xb7\xb1\x5a\x53\xea" 3318 - "\x1c\xaa\x6b\x29\xc2\xca\xfb\xaf", 3319 - .klen = 32, 3320 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3321 - "\x00\x00\x00\x00\x00\x00\x00\x02", 3322 - .input = "\x00\xc8\x2b\xae\x95\xbb\xcd\xe5" 3323 - "\x27\x4f\x07\x69\xb2\x60\xe1\x36", 3324 - .ilen = 16, 3325 - .result = "\x30\x31\x32\x33\x34\x35\x36\x37" 3326 - "\x38\x39\x41\x42\x43\x44\x45\x46", 3327 - .rlen = 16, 3328 - }, { /* LRW-32-AES 3 */ 3329 - .key = "\xd8\x2a\x91\x34\xb2\x6a\x56\x50" 3330 - "\x30\xfe\x69\xe2\x37\x7f\x98\x47" 3331 - "\xcd\xf9\x0b\x16\x0c\x64\x8f\xb6" 3332 - "\xb0\x0d\x0d\x1b\xae\x85\x87\x1f", 3333 - .klen = 32, 3334 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3335 - "\x00\x00\x00\x02\x00\x00\x00\x00", 3336 - .input = "\x76\x32\x21\x83\xed\x8f\xf1\x82" 3337 - "\xf9\x59\x62\x03\x69\x0e\x5e\x01", 3338 - .ilen = 16, 3339 - .result = "\x30\x31\x32\x33\x34\x35\x36\x37" 3340 - "\x38\x39\x41\x42\x43\x44\x45\x46", 3341 - .rlen = 16, 3342 - }, { /* LRW-32-AES 4 */ 3343 - .key = "\x0f\x6a\xef\xf8\xd3\xd2\xbb\x15" 3344 - "\x25\x83\xf7\x3c\x1f\x01\x28\x74" 3345 - "\xca\xc6\xbc\x35\x4d\x4a\x65\x54" 3346 - "\x90\xae\x61\xcf\x7b\xae\xbd\xcc" 3347 - "\xad\xe4\x94\xc5\x4a\x29\xae\x70", 3348 - .klen = 40, 3349 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3350 - "\x00\x00\x00\x00\x00\x00\x00\x01", 3351 - .input = "\x9c\x0f\x15\x2f\x55\xa2\xd8\xf0" 3352 - "\xd6\x7b\x8f\x9e\x28\x22\xbc\x41", 3353 - .ilen = 16, 3354 - .result = "\x30\x31\x32\x33\x34\x35\x36\x37" 3355 - "\x38\x39\x41\x42\x43\x44\x45\x46", 3356 - .rlen = 16, 3357 - }, { /* LRW-32-AES 5 */ 3358 - .key = "\x8a\xd4\xee\x10\x2f\xbd\x81\xff" 3359 - "\xf8\x86\xce\xac\x93\xc5\xad\xc6" 3360 - "\xa0\x19\x07\xc0\x9d\xf7\xbb\xdd" 3361 - "\x52\x13\xb2\xb7\xf0\xff\x11\xd8" 3362 - "\xd6\x08\xd0\xcd\x2e\xb1\x17\x6f", 3363 - .klen = 40, 3364 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3365 - "\x00\x00\x00\x02\x00\x00\x00\x00", 3366 - .input = "\xd4\x27\x6a\x7f\x14\x91\x3d\x65" 3367 - "\xc8\x60\x48\x02\x87\xe3\x34\x06", 3368 - .ilen = 16, 3369 - .result = "\x30\x31\x32\x33\x34\x35\x36\x37" 3370 - "\x38\x39\x41\x42\x43\x44\x45\x46", 3371 - .rlen = 16, 3372 - }, { /* LRW-32-AES 6 */ 3373 - .key = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c" 3374 - "\x23\x84\xcb\x1c\x77\xd6\x19\x5d" 3375 - "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21" 3376 - "\xa7\x9c\x21\xf8\xcb\x90\x02\x89" 3377 - "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1" 3378 - "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e", 3379 - .klen = 48, 3380 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3381 - "\x00\x00\x00\x00\x00\x00\x00\x01", 3382 - .input = "\xbd\x06\xb8\xe1\xdb\x98\x89\x9e" 3383 - "\xc4\x98\xe4\x91\xcf\x1c\x70\x2b", 3384 - .ilen = 16, 3385 - .result = "\x30\x31\x32\x33\x34\x35\x36\x37" 3386 - "\x38\x39\x41\x42\x43\x44\x45\x46", 3387 - .rlen = 16, 3388 - }, { /* LRW-32-AES 7 */ 3389 - .key = "\xfb\x76\x15\xb2\x3d\x80\x89\x1d" 3390 - "\xd4\x70\x98\x0b\xc7\x95\x84\xc8" 3391 - "\xb2\xfb\x64\xce\x60\x97\x87\x8d" 3392 - "\x17\xfc\xe4\x5a\x49\xe8\x30\xb7" 3393 - "\x6e\x78\x17\xe7\x2d\x5e\x12\xd4" 3394 - "\x60\x64\x04\x7a\xf1\x2f\x9e\x0c", 3395 - .klen = 48, 3396 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3397 - "\x00\x00\x00\x02\x00\x00\x00\x00", 3398 - .input = "\x5b\x90\x8e\xc1\xab\xdd\x67\x5f" 3399 - "\x3d\x69\x8a\x95\x53\xc8\x9c\xe5", 3400 - .ilen = 16, 3401 - .result = "\x30\x31\x32\x33\x34\x35\x36\x37" 3402 - "\x38\x39\x41\x42\x43\x44\x45\x46", 3403 - .rlen = 16, 3404 - }, { 3405 - /* http://www.mail-archive.com/stds-p1619@listserv.ieee.org/msg00173.html */ 3406 - .key = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c" 3407 - "\x23\x84\xcb\x1c\x77\xd6\x19\x5d" 3408 - "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21" 3409 - "\xa7\x9c\x21\xf8\xcb\x90\x02\x89" 3410 - "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1" 3411 - "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e", 3412 - .klen = 48, 3413 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3414 - "\x00\x00\x00\x00\x00\x00\x00\x01", 3415 - .input = "\x1a\x1d\xa9\x30\xad\xf9\x2f\x9b" 3416 - "\xb6\x1d\xae\xef\xf0\x2f\xf8\x5a" 3417 - "\x39\x3c\xbf\x2a\xb2\x45\xb2\x23" 3418 - "\x1b\x63\x3c\xcf\xaa\xbe\xcf\x4e" 3419 - "\xfa\xe8\x29\xc2\x20\x68\x2b\x3c" 3420 - "\x2e\x8b\xf7\x6e\x25\xbd\xe3\x3d" 3421 - "\x66\x27\xd6\xaf\xd6\x64\x3e\xe3" 3422 - "\xe8\x58\x46\x97\x39\x51\x07\xde" 3423 - "\xcb\x37\xbc\xa9\xc0\x5f\x75\xc3" 3424 - "\x0e\x84\x23\x1d\x16\xd4\x1c\x59" 3425 - "\x9c\x1a\x02\x55\xab\x3a\x97\x1d" 3426 - "\xdf\xdd\xc7\x06\x51\xd7\x70\xae" 3427 - "\x23\xc6\x8c\xf5\x1e\xa0\xe5\x82" 3428 - "\xb8\xb2\xbf\x04\xa0\x32\x8e\x68" 3429 - "\xeb\xaf\x6e\x2d\x94\x22\x2f\xce" 3430 - "\x4c\xb5\x59\xe2\xa2\x2f\xa0\x98" 3431 - "\x1a\x97\xc6\xd4\xb5\x00\x59\xf2" 3432 - "\x84\x14\x72\xb1\x9a\x6e\xa3\x7f" 3433 - "\xea\x20\xe7\xcb\x65\x77\x3a\xdf" 3434 - "\xc8\x97\x67\x15\xc2\x2a\x27\xcc" 3435 - "\x18\x55\xa1\x24\x0b\x24\x24\xaf" 3436 - "\x5b\xec\x68\xb8\xc8\xf5\xba\x63" 3437 - "\xff\xed\x89\xce\xd5\x3d\x88\xf3" 3438 - "\x25\xef\x05\x7c\x3a\xef\xeb\xd8" 3439 - "\x7a\x32\x0d\xd1\x1e\x58\x59\x99" 3440 - "\x90\x25\xb5\x26\xb0\xe3\x2b\x6c" 3441 - "\x4c\xa9\x8b\x84\x4f\x5e\x01\x50" 3442 - "\x41\x30\x58\xc5\x62\x74\x52\x1d" 3443 - "\x45\x24\x6a\x42\x64\x4f\x97\x1c" 3444 - "\xa8\x66\xb5\x6d\x79\xd4\x0d\x48" 3445 - "\xc5\x5f\xf3\x90\x32\xdd\xdd\xe1" 3446 - "\xe4\xa9\x9f\xfc\xc3\x52\x5a\x46" 3447 - "\xe4\x81\x84\x95\x36\x59\x7a\x6b" 3448 - "\xaa\xb3\x60\xad\xce\x9f\x9f\x28" 3449 - "\xe0\x01\x75\x22\xc4\x4e\xa9\x62" 3450 - "\x5c\x62\x0d\x00\xcb\x13\xe8\x43" 3451 - "\x72\xd4\x2d\x53\x46\xb5\xd1\x16" 3452 - "\x22\x18\xdf\x34\x33\xf5\xd6\x1c" 3453 - "\xb8\x79\x78\x97\x94\xff\x72\x13" 3454 - "\x4c\x27\xfc\xcb\xbf\x01\x53\xa6" 3455 - "\xb4\x50\x6e\xde\xdf\xb5\x43\xa4" 3456 - "\x59\xdf\x52\xf9\x7c\xe0\x11\x6f" 3457 - "\x2d\x14\x8e\x24\x61\x2c\xe1\x17" 3458 - "\xcc\xce\x51\x0c\x19\x8a\x82\x30" 3459 - "\x94\xd5\x3d\x6a\x53\x06\x5e\xbd" 3460 - "\xb7\xeb\xfa\xfd\x27\x51\xde\x85" 3461 - "\x1e\x86\x53\x11\x53\x94\x00\xee" 3462 - "\x2b\x8c\x08\x2a\xbf\xdd\xae\x11" 3463 - "\xcb\x1e\xa2\x07\x9a\x80\xcf\x62" 3464 - "\x9b\x09\xdc\x95\x3c\x96\x8e\xb1" 3465 - "\x09\xbd\xe4\xeb\xdb\xca\x70\x7a" 3466 - "\x9e\xfa\x31\x18\x45\x3c\x21\x33" 3467 - "\xb0\xb3\x2b\xea\xf3\x71\x2d\xe1" 3468 - "\x03\xad\x1b\x48\xd4\x67\x27\xf0" 3469 - "\x62\xe4\x3d\xfb\x9b\x08\x76\xe7" 3470 - "\xdd\x2b\x01\x39\x04\x5a\x58\x7a" 3471 - "\xf7\x11\x90\xec\xbd\x51\x5c\x32" 3472 - "\x6b\xd7\x35\x39\x02\x6b\xf2\xa6" 3473 - "\xd0\x0d\x07\xe1\x06\xc4\x5b\x7d" 3474 - "\xe4\x6a\xd7\xee\x15\x1f\x83\xb4" 3475 - "\xa3\xa7\x5e\xc3\x90\xb7\xef\xd3" 3476 - "\xb7\x4f\xf8\x92\x4c\xb7\x3c\x29" 3477 - "\xcd\x7e\x2b\x5d\x43\xea\x42\xe7" 3478 - "\x74\x3f\x7d\x58\x88\x75\xde\x3e", 3479 - .ilen = 512, 3480 - .result = "\x05\x11\xb7\x18\xab\xc6\x2d\xac" 3481 - "\x70\x5d\xf6\x22\x94\xcd\xe5\x6c" 3482 - "\x17\x6b\xf6\x1c\xf0\xf3\x6e\xf8" 3483 - "\x50\x38\x1f\x71\x49\xb6\x57\xd6" 3484 - "\x8f\xcb\x8d\x6b\xe3\xa6\x29\x90" 3485 - "\xfe\x2a\x62\x82\xae\x6d\x8b\xf6" 3486 - "\xad\x1e\x9e\x20\x5f\x38\xbe\x04" 3487 - "\xda\x10\x8e\xed\xa2\xa4\x87\xab" 3488 - "\xda\x6b\xb4\x0c\x75\xba\xd3\x7c" 3489 - "\xc9\xac\x42\x31\x95\x7c\xc9\x04" 3490 - "\xeb\xd5\x6e\x32\x69\x8a\xdb\xa6" 3491 - "\x15\xd7\x3f\x4f\x2f\x66\x69\x03" 3492 - "\x9c\x1f\x54\x0f\xde\x1f\xf3\x65" 3493 - "\x4c\x96\x12\xed\x7c\x92\x03\x01" 3494 - "\x6f\xbc\x35\x93\xac\xf1\x27\xf1" 3495 - "\xb4\x96\x82\x5a\x5f\xb0\xa0\x50" 3496 - "\x89\xa4\x8e\x66\x44\x85\xcc\xfd" 3497 - "\x33\x14\x70\xe3\x96\xb2\xc3\xd3" 3498 - "\xbb\x54\x5a\x1a\xf9\x74\xa2\xc5" 3499 - "\x2d\x64\x75\xdd\xb4\x54\xe6\x74" 3500 - "\x8c\xd3\x9d\x9e\x86\xab\x51\x53" 3501 - "\xb7\x93\x3e\x6f\xd0\x4e\x2c\x40" 3502 - "\xf6\xa8\x2e\x3e\x9d\xf4\x66\xa5" 3503 - "\x76\x12\x73\x44\x1a\x56\xd7\x72" 3504 - "\x88\xcd\x21\x8c\x4c\x0f\xfe\xda" 3505 - "\x95\xe0\x3a\xa6\xa5\x84\x46\xcd" 3506 - "\xd5\x3e\x9d\x3a\xe2\x67\xe6\x60" 3507 - "\x1a\xe2\x70\x85\x58\xc2\x1b\x09" 3508 - "\xe1\xd7\x2c\xca\xad\xa8\x8f\xf9" 3509 - "\xac\xb3\x0e\xdb\xca\x2e\xe2\xb8" 3510 - "\x51\x71\xd9\x3c\x6c\xf1\x56\xf8" 3511 - "\xea\x9c\xf1\xfb\x0c\xe6\xb7\x10" 3512 - "\x1c\xf8\xa9\x7c\xe8\x53\x35\xc1" 3513 - "\x90\x3e\x76\x4a\x74\xa4\x21\x2c" 3514 - "\xf6\x2c\x4e\x0f\x94\x3a\x88\x2e" 3515 - "\x41\x09\x6a\x33\x7d\xf6\xdd\x3f" 3516 - "\x8d\x23\x31\x74\x84\xeb\x88\x6e" 3517 - "\xcc\xb9\xbc\x22\x83\x19\x07\x22" 3518 - "\xa5\x2d\xdf\xa5\xf3\x80\x85\x78" 3519 - "\x84\x39\x6a\x6d\x6a\x99\x4f\xa5" 3520 - "\x15\xfe\x46\xb0\xe4\x6c\xa5\x41" 3521 - "\x3c\xce\x8f\x42\x60\x71\xa7\x75" 3522 - "\x08\x40\x65\x8a\x82\xbf\xf5\x43" 3523 - "\x71\x96\xa9\x4d\x44\x8a\x20\xbe" 3524 - "\xfa\x4d\xbb\xc0\x7d\x31\x96\x65" 3525 - "\xe7\x75\xe5\x3e\xfd\x92\x3b\xc9" 3526 - "\x55\xbb\x16\x7e\xf7\xc2\x8c\xa4" 3527 - "\x40\x1d\xe5\xef\x0e\xdf\xe4\x9a" 3528 - "\x62\x73\x65\xfd\x46\x63\x25\x3d" 3529 - "\x2b\xaf\xe5\x64\xfe\xa5\x5c\xcf" 3530 - "\x24\xf3\xb4\xac\x64\xba\xdf\x4b" 3531 - "\xc6\x96\x7d\x81\x2d\x8d\x97\xf7" 3532 - "\xc5\x68\x77\x84\x32\x2b\xcc\x85" 3533 - "\x74\x96\xf0\x12\x77\x61\xb9\xeb" 3534 - "\x71\xaa\x82\xcb\x1c\xdb\x89\xc8" 3535 - "\xc6\xb5\xe3\x5c\x7d\x39\x07\x24" 3536 - "\xda\x39\x87\x45\xc0\x2b\xbb\x01" 3537 - "\xac\xbc\x2a\x5c\x7f\xfc\xe8\xce" 3538 - "\x6d\x9c\x6f\xed\xd3\xc1\xa1\xd6" 3539 - "\xc5\x55\xa9\x66\x2f\xe1\xc8\x32" 3540 - "\xa6\x5d\xa4\x3a\x98\x73\xe8\x45" 3541 - "\xa4\xc7\xa8\xb4\xf6\x13\x03\xf6" 3542 - "\xe9\x2e\xc4\x29\x0f\x84\xdb\xc4" 3543 - "\x21\xc4\xc2\x75\x67\x89\x37\x0a", 3544 - .rlen = 512, 3545 - } 3546 - }; 3547 - 3548 - static struct cipher_testvec aes_xts_enc_tv_template[] = { 3549 - /* http://grouper.ieee.org/groups/1619/email/pdf00086.pdf */ 3550 - { /* XTS-AES 1 */ 3551 - .key = "\x00\x00\x00\x00\x00\x00\x00\x00" 3552 - "\x00\x00\x00\x00\x00\x00\x00\x00" 3553 - "\x00\x00\x00\x00\x00\x00\x00\x00" 3554 - "\x00\x00\x00\x00\x00\x00\x00\x00", 3555 - .klen = 32, 3556 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3557 - "\x00\x00\x00\x00\x00\x00\x00\x00", 3558 - .input = "\x00\x00\x00\x00\x00\x00\x00\x00" 3559 - "\x00\x00\x00\x00\x00\x00\x00\x00" 3560 - "\x00\x00\x00\x00\x00\x00\x00\x00" 3561 - "\x00\x00\x00\x00\x00\x00\x00\x00", 3562 - .ilen = 32, 3563 - .result = "\x91\x7c\xf6\x9e\xbd\x68\xb2\xec" 3564 - "\x9b\x9f\xe9\xa3\xea\xdd\xa6\x92" 3565 - "\xcd\x43\xd2\xf5\x95\x98\xed\x85" 3566 - "\x8c\x02\xc2\x65\x2f\xbf\x92\x2e", 3567 - .rlen = 32, 3568 - }, { /* XTS-AES 2 */ 3569 - .key = "\x11\x11\x11\x11\x11\x11\x11\x11" 3570 - "\x11\x11\x11\x11\x11\x11\x11\x11" 3571 - "\x22\x22\x22\x22\x22\x22\x22\x22" 3572 - "\x22\x22\x22\x22\x22\x22\x22\x22", 3573 - .klen = 32, 3574 - .iv = "\x33\x33\x33\x33\x33\x00\x00\x00" 3575 - "\x00\x00\x00\x00\x00\x00\x00\x00", 3576 - .input = "\x44\x44\x44\x44\x44\x44\x44\x44" 3577 - "\x44\x44\x44\x44\x44\x44\x44\x44" 3578 - "\x44\x44\x44\x44\x44\x44\x44\x44" 3579 - "\x44\x44\x44\x44\x44\x44\x44\x44", 3580 - .ilen = 32, 3581 - .result = "\xc4\x54\x18\x5e\x6a\x16\x93\x6e" 3582 - "\x39\x33\x40\x38\xac\xef\x83\x8b" 3583 - "\xfb\x18\x6f\xff\x74\x80\xad\xc4" 3584 - "\x28\x93\x82\xec\xd6\xd3\x94\xf0", 3585 - .rlen = 32, 3586 - }, { /* XTS-AES 3 */ 3587 - .key = "\xff\xfe\xfd\xfc\xfb\xfa\xf9\xf8" 3588 - "\xf7\xf6\xf5\xf4\xf3\xf2\xf1\xf0" 3589 - "\x22\x22\x22\x22\x22\x22\x22\x22" 3590 - "\x22\x22\x22\x22\x22\x22\x22\x22", 3591 - .klen = 32, 3592 - .iv = "\x33\x33\x33\x33\x33\x00\x00\x00" 3593 - "\x00\x00\x00\x00\x00\x00\x00\x00", 3594 - .input = "\x44\x44\x44\x44\x44\x44\x44\x44" 3595 - "\x44\x44\x44\x44\x44\x44\x44\x44" 3596 - "\x44\x44\x44\x44\x44\x44\x44\x44" 3597 - "\x44\x44\x44\x44\x44\x44\x44\x44", 3598 - .ilen = 32, 3599 - .result = "\xaf\x85\x33\x6b\x59\x7a\xfc\x1a" 3600 - "\x90\x0b\x2e\xb2\x1e\xc9\x49\xd2" 3601 - "\x92\xdf\x4c\x04\x7e\x0b\x21\x53" 3602 - "\x21\x86\xa5\x97\x1a\x22\x7a\x89", 3603 - .rlen = 32, 3604 - }, { /* XTS-AES 4 */ 3605 - .key = "\x27\x18\x28\x18\x28\x45\x90\x45" 3606 - "\x23\x53\x60\x28\x74\x71\x35\x26" 3607 - "\x31\x41\x59\x26\x53\x58\x97\x93" 3608 - "\x23\x84\x62\x64\x33\x83\x27\x95", 3609 - .klen = 32, 3610 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3611 - "\x00\x00\x00\x00\x00\x00\x00\x00", 3612 - .input = "\x00\x01\x02\x03\x04\x05\x06\x07" 3613 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 3614 - "\x10\x11\x12\x13\x14\x15\x16\x17" 3615 - "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 3616 - "\x20\x21\x22\x23\x24\x25\x26\x27" 3617 - "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 3618 - "\x30\x31\x32\x33\x34\x35\x36\x37" 3619 - "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 3620 - "\x40\x41\x42\x43\x44\x45\x46\x47" 3621 - "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 3622 - "\x50\x51\x52\x53\x54\x55\x56\x57" 3623 - "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 3624 - "\x60\x61\x62\x63\x64\x65\x66\x67" 3625 - "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 3626 - "\x70\x71\x72\x73\x74\x75\x76\x77" 3627 - "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 3628 - "\x80\x81\x82\x83\x84\x85\x86\x87" 3629 - "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 3630 - "\x90\x91\x92\x93\x94\x95\x96\x97" 3631 - "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 3632 - "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 3633 - "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 3634 - "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 3635 - "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 3636 - "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 3637 - "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 3638 - "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 3639 - "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 3640 - "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 3641 - "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 3642 - "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 3643 - "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff" 3644 - "\x00\x01\x02\x03\x04\x05\x06\x07" 3645 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 3646 - "\x10\x11\x12\x13\x14\x15\x16\x17" 3647 - "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 3648 - "\x20\x21\x22\x23\x24\x25\x26\x27" 3649 - "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 3650 - "\x30\x31\x32\x33\x34\x35\x36\x37" 3651 - "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 3652 - "\x40\x41\x42\x43\x44\x45\x46\x47" 3653 - "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 3654 - "\x50\x51\x52\x53\x54\x55\x56\x57" 3655 - "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 3656 - "\x60\x61\x62\x63\x64\x65\x66\x67" 3657 - "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 3658 - "\x70\x71\x72\x73\x74\x75\x76\x77" 3659 - "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 3660 - "\x80\x81\x82\x83\x84\x85\x86\x87" 3661 - "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 3662 - "\x90\x91\x92\x93\x94\x95\x96\x97" 3663 - "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 3664 - "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 3665 - "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 3666 - "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 3667 - "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 3668 - "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 3669 - "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 3670 - "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 3671 - "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 3672 - "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 3673 - "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 3674 - "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 3675 - "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff", 3676 - .ilen = 512, 3677 - .result = "\x27\xa7\x47\x9b\xef\xa1\xd4\x76" 3678 - "\x48\x9f\x30\x8c\xd4\xcf\xa6\xe2" 3679 - "\xa9\x6e\x4b\xbe\x32\x08\xff\x25" 3680 - "\x28\x7d\xd3\x81\x96\x16\xe8\x9c" 3681 - "\xc7\x8c\xf7\xf5\xe5\x43\x44\x5f" 3682 - "\x83\x33\xd8\xfa\x7f\x56\x00\x00" 3683 - "\x05\x27\x9f\xa5\xd8\xb5\xe4\xad" 3684 - "\x40\xe7\x36\xdd\xb4\xd3\x54\x12" 3685 - "\x32\x80\x63\xfd\x2a\xab\x53\xe5" 3686 - "\xea\x1e\x0a\x9f\x33\x25\x00\xa5" 3687 - "\xdf\x94\x87\xd0\x7a\x5c\x92\xcc" 3688 - "\x51\x2c\x88\x66\xc7\xe8\x60\xce" 3689 - "\x93\xfd\xf1\x66\xa2\x49\x12\xb4" 3690 - "\x22\x97\x61\x46\xae\x20\xce\x84" 3691 - "\x6b\xb7\xdc\x9b\xa9\x4a\x76\x7a" 3692 - "\xae\xf2\x0c\x0d\x61\xad\x02\x65" 3693 - "\x5e\xa9\x2d\xc4\xc4\xe4\x1a\x89" 3694 - "\x52\xc6\x51\xd3\x31\x74\xbe\x51" 3695 - "\xa1\x0c\x42\x11\x10\xe6\xd8\x15" 3696 - "\x88\xed\xe8\x21\x03\xa2\x52\xd8" 3697 - "\xa7\x50\xe8\x76\x8d\xef\xff\xed" 3698 - "\x91\x22\x81\x0a\xae\xb9\x9f\x91" 3699 - "\x72\xaf\x82\xb6\x04\xdc\x4b\x8e" 3700 - "\x51\xbc\xb0\x82\x35\xa6\xf4\x34" 3701 - "\x13\x32\xe4\xca\x60\x48\x2a\x4b" 3702 - "\xa1\xa0\x3b\x3e\x65\x00\x8f\xc5" 3703 - "\xda\x76\xb7\x0b\xf1\x69\x0d\xb4" 3704 - "\xea\xe2\x9c\x5f\x1b\xad\xd0\x3c" 3705 - "\x5c\xcf\x2a\x55\xd7\x05\xdd\xcd" 3706 - "\x86\xd4\x49\x51\x1c\xeb\x7e\xc3" 3707 - "\x0b\xf1\x2b\x1f\xa3\x5b\x91\x3f" 3708 - "\x9f\x74\x7a\x8a\xfd\x1b\x13\x0e" 3709 - "\x94\xbf\xf9\x4e\xff\xd0\x1a\x91" 3710 - "\x73\x5c\xa1\x72\x6a\xcd\x0b\x19" 3711 - "\x7c\x4e\x5b\x03\x39\x36\x97\xe1" 3712 - "\x26\x82\x6f\xb6\xbb\xde\x8e\xcc" 3713 - "\x1e\x08\x29\x85\x16\xe2\xc9\xed" 3714 - "\x03\xff\x3c\x1b\x78\x60\xf6\xde" 3715 - "\x76\xd4\xce\xcd\x94\xc8\x11\x98" 3716 - "\x55\xef\x52\x97\xca\x67\xe9\xf3" 3717 - "\xe7\xff\x72\xb1\xe9\x97\x85\xca" 3718 - "\x0a\x7e\x77\x20\xc5\xb3\x6d\xc6" 3719 - "\xd7\x2c\xac\x95\x74\xc8\xcb\xbc" 3720 - "\x2f\x80\x1e\x23\xe5\x6f\xd3\x44" 3721 - "\xb0\x7f\x22\x15\x4b\xeb\xa0\xf0" 3722 - "\x8c\xe8\x89\x1e\x64\x3e\xd9\x95" 3723 - "\xc9\x4d\x9a\x69\xc9\xf1\xb5\xf4" 3724 - "\x99\x02\x7a\x78\x57\x2a\xee\xbd" 3725 - "\x74\xd2\x0c\xc3\x98\x81\xc2\x13" 3726 - "\xee\x77\x0b\x10\x10\xe4\xbe\xa7" 3727 - "\x18\x84\x69\x77\xae\x11\x9f\x7a" 3728 - "\x02\x3a\xb5\x8c\xca\x0a\xd7\x52" 3729 - "\xaf\xe6\x56\xbb\x3c\x17\x25\x6a" 3730 - "\x9f\x6e\x9b\xf1\x9f\xdd\x5a\x38" 3731 - "\xfc\x82\xbb\xe8\x72\xc5\x53\x9e" 3732 - "\xdb\x60\x9e\xf4\xf7\x9c\x20\x3e" 3733 - "\xbb\x14\x0f\x2e\x58\x3c\xb2\xad" 3734 - "\x15\xb4\xaa\x5b\x65\x50\x16\xa8" 3735 - "\x44\x92\x77\xdb\xd4\x77\xef\x2c" 3736 - "\x8d\x6c\x01\x7d\xb7\x38\xb1\x8d" 3737 - "\xeb\x4a\x42\x7d\x19\x23\xce\x3f" 3738 - "\xf2\x62\x73\x57\x79\xa4\x18\xf2" 3739 - "\x0a\x28\x2d\xf9\x20\x14\x7b\xea" 3740 - "\xbe\x42\x1e\xe5\x31\x9d\x05\x68", 3741 - .rlen = 512, 3742 - } 3743 - }; 3744 - 3745 - static struct cipher_testvec aes_xts_dec_tv_template[] = { 3746 - /* http://grouper.ieee.org/groups/1619/email/pdf00086.pdf */ 3747 - { /* XTS-AES 1 */ 3748 - .key = "\x00\x00\x00\x00\x00\x00\x00\x00" 3749 - "\x00\x00\x00\x00\x00\x00\x00\x00" 3750 - "\x00\x00\x00\x00\x00\x00\x00\x00" 3751 - "\x00\x00\x00\x00\x00\x00\x00\x00", 3752 - .klen = 32, 3753 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3754 - "\x00\x00\x00\x00\x00\x00\x00\x00", 3755 - .input = "\x91\x7c\xf6\x9e\xbd\x68\xb2\xec" 3756 - "\x9b\x9f\xe9\xa3\xea\xdd\xa6\x92" 3757 - "\xcd\x43\xd2\xf5\x95\x98\xed\x85" 3758 - "\x8c\x02\xc2\x65\x2f\xbf\x92\x2e", 3759 - .ilen = 32, 3760 - .result = "\x00\x00\x00\x00\x00\x00\x00\x00" 3761 - "\x00\x00\x00\x00\x00\x00\x00\x00" 3762 - "\x00\x00\x00\x00\x00\x00\x00\x00" 3763 - "\x00\x00\x00\x00\x00\x00\x00\x00", 3764 - .rlen = 32, 3765 - }, { /* XTS-AES 2 */ 3766 - .key = "\x11\x11\x11\x11\x11\x11\x11\x11" 3767 - "\x11\x11\x11\x11\x11\x11\x11\x11" 3768 - "\x22\x22\x22\x22\x22\x22\x22\x22" 3769 - "\x22\x22\x22\x22\x22\x22\x22\x22", 3770 - .klen = 32, 3771 - .iv = "\x33\x33\x33\x33\x33\x00\x00\x00" 3772 - "\x00\x00\x00\x00\x00\x00\x00\x00", 3773 - .input = "\xc4\x54\x18\x5e\x6a\x16\x93\x6e" 3774 - "\x39\x33\x40\x38\xac\xef\x83\x8b" 3775 - "\xfb\x18\x6f\xff\x74\x80\xad\xc4" 3776 - "\x28\x93\x82\xec\xd6\xd3\x94\xf0", 3777 - .ilen = 32, 3778 - .result = "\x44\x44\x44\x44\x44\x44\x44\x44" 3779 - "\x44\x44\x44\x44\x44\x44\x44\x44" 3780 - "\x44\x44\x44\x44\x44\x44\x44\x44" 3781 - "\x44\x44\x44\x44\x44\x44\x44\x44", 3782 - .rlen = 32, 3783 - }, { /* XTS-AES 3 */ 3784 - .key = "\xff\xfe\xfd\xfc\xfb\xfa\xf9\xf8" 3785 - "\xf7\xf6\xf5\xf4\xf3\xf2\xf1\xf0" 3786 - "\x22\x22\x22\x22\x22\x22\x22\x22" 3787 - "\x22\x22\x22\x22\x22\x22\x22\x22", 3788 - .klen = 32, 3789 - .iv = "\x33\x33\x33\x33\x33\x00\x00\x00" 3790 - "\x00\x00\x00\x00\x00\x00\x00\x00", 3791 - .input = "\xaf\x85\x33\x6b\x59\x7a\xfc\x1a" 3792 - "\x90\x0b\x2e\xb2\x1e\xc9\x49\xd2" 3793 - "\x92\xdf\x4c\x04\x7e\x0b\x21\x53" 3794 - "\x21\x86\xa5\x97\x1a\x22\x7a\x89", 3795 - .ilen = 32, 3796 - .result = "\x44\x44\x44\x44\x44\x44\x44\x44" 3797 - "\x44\x44\x44\x44\x44\x44\x44\x44" 3798 - "\x44\x44\x44\x44\x44\x44\x44\x44" 3799 - "\x44\x44\x44\x44\x44\x44\x44\x44", 3800 - .rlen = 32, 3801 - }, { /* XTS-AES 4 */ 3802 - .key = "\x27\x18\x28\x18\x28\x45\x90\x45" 3803 - "\x23\x53\x60\x28\x74\x71\x35\x26" 3804 - "\x31\x41\x59\x26\x53\x58\x97\x93" 3805 - "\x23\x84\x62\x64\x33\x83\x27\x95", 3806 - .klen = 32, 3807 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3808 - "\x00\x00\x00\x00\x00\x00\x00\x00", 3809 - .input = "\x27\xa7\x47\x9b\xef\xa1\xd4\x76" 3810 - "\x48\x9f\x30\x8c\xd4\xcf\xa6\xe2" 3811 - "\xa9\x6e\x4b\xbe\x32\x08\xff\x25" 3812 - "\x28\x7d\xd3\x81\x96\x16\xe8\x9c" 3813 - "\xc7\x8c\xf7\xf5\xe5\x43\x44\x5f" 3814 - "\x83\x33\xd8\xfa\x7f\x56\x00\x00" 3815 - "\x05\x27\x9f\xa5\xd8\xb5\xe4\xad" 3816 - "\x40\xe7\x36\xdd\xb4\xd3\x54\x12" 3817 - "\x32\x80\x63\xfd\x2a\xab\x53\xe5" 3818 - "\xea\x1e\x0a\x9f\x33\x25\x00\xa5" 3819 - "\xdf\x94\x87\xd0\x7a\x5c\x92\xcc" 3820 - "\x51\x2c\x88\x66\xc7\xe8\x60\xce" 3821 - "\x93\xfd\xf1\x66\xa2\x49\x12\xb4" 3822 - "\x22\x97\x61\x46\xae\x20\xce\x84" 3823 - "\x6b\xb7\xdc\x9b\xa9\x4a\x76\x7a" 3824 - "\xae\xf2\x0c\x0d\x61\xad\x02\x65" 3825 - "\x5e\xa9\x2d\xc4\xc4\xe4\x1a\x89" 3826 - "\x52\xc6\x51\xd3\x31\x74\xbe\x51" 3827 - "\xa1\x0c\x42\x11\x10\xe6\xd8\x15" 3828 - "\x88\xed\xe8\x21\x03\xa2\x52\xd8" 3829 - "\xa7\x50\xe8\x76\x8d\xef\xff\xed" 3830 - "\x91\x22\x81\x0a\xae\xb9\x9f\x91" 3831 - "\x72\xaf\x82\xb6\x04\xdc\x4b\x8e" 3832 - "\x51\xbc\xb0\x82\x35\xa6\xf4\x34" 3833 - "\x13\x32\xe4\xca\x60\x48\x2a\x4b" 3834 - "\xa1\xa0\x3b\x3e\x65\x00\x8f\xc5" 3835 - "\xda\x76\xb7\x0b\xf1\x69\x0d\xb4" 3836 - "\xea\xe2\x9c\x5f\x1b\xad\xd0\x3c" 3837 - "\x5c\xcf\x2a\x55\xd7\x05\xdd\xcd" 3838 - "\x86\xd4\x49\x51\x1c\xeb\x7e\xc3" 3839 - "\x0b\xf1\x2b\x1f\xa3\x5b\x91\x3f" 3840 - "\x9f\x74\x7a\x8a\xfd\x1b\x13\x0e" 3841 - "\x94\xbf\xf9\x4e\xff\xd0\x1a\x91" 3842 - "\x73\x5c\xa1\x72\x6a\xcd\x0b\x19" 3843 - "\x7c\x4e\x5b\x03\x39\x36\x97\xe1" 3844 - "\x26\x82\x6f\xb6\xbb\xde\x8e\xcc" 3845 - "\x1e\x08\x29\x85\x16\xe2\xc9\xed" 3846 - "\x03\xff\x3c\x1b\x78\x60\xf6\xde" 3847 - "\x76\xd4\xce\xcd\x94\xc8\x11\x98" 3848 - "\x55\xef\x52\x97\xca\x67\xe9\xf3" 3849 - "\xe7\xff\x72\xb1\xe9\x97\x85\xca" 3850 - "\x0a\x7e\x77\x20\xc5\xb3\x6d\xc6" 3851 - "\xd7\x2c\xac\x95\x74\xc8\xcb\xbc" 3852 - "\x2f\x80\x1e\x23\xe5\x6f\xd3\x44" 3853 - "\xb0\x7f\x22\x15\x4b\xeb\xa0\xf0" 3854 - "\x8c\xe8\x89\x1e\x64\x3e\xd9\x95" 3855 - "\xc9\x4d\x9a\x69\xc9\xf1\xb5\xf4" 3856 - "\x99\x02\x7a\x78\x57\x2a\xee\xbd" 3857 - "\x74\xd2\x0c\xc3\x98\x81\xc2\x13" 3858 - "\xee\x77\x0b\x10\x10\xe4\xbe\xa7" 3859 - "\x18\x84\x69\x77\xae\x11\x9f\x7a" 3860 - "\x02\x3a\xb5\x8c\xca\x0a\xd7\x52" 3861 - "\xaf\xe6\x56\xbb\x3c\x17\x25\x6a" 3862 - "\x9f\x6e\x9b\xf1\x9f\xdd\x5a\x38" 3863 - "\xfc\x82\xbb\xe8\x72\xc5\x53\x9e" 3864 - "\xdb\x60\x9e\xf4\xf7\x9c\x20\x3e" 3865 - "\xbb\x14\x0f\x2e\x58\x3c\xb2\xad" 3866 - "\x15\xb4\xaa\x5b\x65\x50\x16\xa8" 3867 - "\x44\x92\x77\xdb\xd4\x77\xef\x2c" 3868 - "\x8d\x6c\x01\x7d\xb7\x38\xb1\x8d" 3869 - "\xeb\x4a\x42\x7d\x19\x23\xce\x3f" 3870 - "\xf2\x62\x73\x57\x79\xa4\x18\xf2" 3871 - "\x0a\x28\x2d\xf9\x20\x14\x7b\xea" 3872 - "\xbe\x42\x1e\xe5\x31\x9d\x05\x68", 3873 - .ilen = 512, 3874 - .result = "\x00\x01\x02\x03\x04\x05\x06\x07" 3875 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 3876 - "\x10\x11\x12\x13\x14\x15\x16\x17" 3877 - "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 3878 - "\x20\x21\x22\x23\x24\x25\x26\x27" 3879 - "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 3880 - "\x30\x31\x32\x33\x34\x35\x36\x37" 3881 - "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 3882 - "\x40\x41\x42\x43\x44\x45\x46\x47" 3883 - "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 3884 - "\x50\x51\x52\x53\x54\x55\x56\x57" 3885 - "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 3886 - "\x60\x61\x62\x63\x64\x65\x66\x67" 3887 - "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 3888 - "\x70\x71\x72\x73\x74\x75\x76\x77" 3889 - "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 3890 - "\x80\x81\x82\x83\x84\x85\x86\x87" 3891 - "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 3892 - "\x90\x91\x92\x93\x94\x95\x96\x97" 3893 - "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 3894 - "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 3895 - "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 3896 - "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 3897 - "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 3898 - "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 3899 - "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 3900 - "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 3901 - "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 3902 - "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 3903 - "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 3904 - "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 3905 - "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff" 3906 - "\x00\x01\x02\x03\x04\x05\x06\x07" 3907 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 3908 - "\x10\x11\x12\x13\x14\x15\x16\x17" 3909 - "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 3910 - "\x20\x21\x22\x23\x24\x25\x26\x27" 3911 - "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 3912 - "\x30\x31\x32\x33\x34\x35\x36\x37" 3913 - "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 3914 - "\x40\x41\x42\x43\x44\x45\x46\x47" 3915 - "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 3916 - "\x50\x51\x52\x53\x54\x55\x56\x57" 3917 - "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 3918 - "\x60\x61\x62\x63\x64\x65\x66\x67" 3919 - "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 3920 - "\x70\x71\x72\x73\x74\x75\x76\x77" 3921 - "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 3922 - "\x80\x81\x82\x83\x84\x85\x86\x87" 3923 - "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 3924 - "\x90\x91\x92\x93\x94\x95\x96\x97" 3925 - "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 3926 - "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 3927 - "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 3928 - "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 3929 - "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 3930 - "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 3931 - "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 3932 - "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 3933 - "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 3934 - "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 3935 - "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 3936 - "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 3937 - "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff", 3938 - .rlen = 512, 3939 - } 3940 - }; 3941 - 3942 - 3943 - static struct cipher_testvec aes_ctr_enc_tv_template[] = { 3944 - { /* From RFC 3686 */ 3945 - .key = "\xae\x68\x52\xf8\x12\x10\x67\xcc" 3946 - "\x4b\xf7\xa5\x76\x55\x77\xf3\x9e" 3947 - "\x00\x00\x00\x30", 3948 - .klen = 20, 3949 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00", 3950 - .input = "Single block msg", 3951 - .ilen = 16, 3952 - .result = "\xe4\x09\x5d\x4f\xb7\xa7\xb3\x79" 3953 - "\x2d\x61\x75\xa3\x26\x13\x11\xb8", 3954 - .rlen = 16, 3955 - }, { 3956 - .key = "\x7e\x24\x06\x78\x17\xfa\xe0\xd7" 3957 - "\x43\xd6\xce\x1f\x32\x53\x91\x63" 3958 - "\x00\x6c\xb6\xdb", 3959 - .klen = 20, 3960 - .iv = "\xc0\x54\x3b\x59\xda\x48\xd9\x0b", 3961 - .input = "\x00\x01\x02\x03\x04\x05\x06\x07" 3962 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 3963 - "\x10\x11\x12\x13\x14\x15\x16\x17" 3964 - "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 3965 - .ilen = 32, 3966 - .result = "\x51\x04\xa1\x06\x16\x8a\x72\xd9" 3967 - "\x79\x0d\x41\xee\x8e\xda\xd3\x88" 3968 - "\xeb\x2e\x1e\xfc\x46\xda\x57\xc8" 3969 - "\xfc\xe6\x30\xdf\x91\x41\xbe\x28", 3970 - .rlen = 32, 3971 - }, { 3972 - .key = "\x16\xaf\x5b\x14\x5f\xc9\xf5\x79" 3973 - "\xc1\x75\xf9\x3e\x3b\xfb\x0e\xed" 3974 - "\x86\x3d\x06\xcc\xfd\xb7\x85\x15" 3975 - "\x00\x00\x00\x48", 3976 - .klen = 28, 3977 - .iv = "\x36\x73\x3c\x14\x7d\x6d\x93\xcb", 3978 - .input = "Single block msg", 3979 - .ilen = 16, 3980 - .result = "\x4b\x55\x38\x4f\xe2\x59\xc9\xc8" 3981 - "\x4e\x79\x35\xa0\x03\xcb\xe9\x28", 3982 - .rlen = 16, 3983 - }, { 3984 - .key = "\x7c\x5c\xb2\x40\x1b\x3d\xc3\x3c" 3985 - "\x19\xe7\x34\x08\x19\xe0\xf6\x9c" 3986 - "\x67\x8c\x3d\xb8\xe6\xf6\xa9\x1a" 3987 - "\x00\x96\xb0\x3b", 3988 - .klen = 28, 3989 - .iv = "\x02\x0c\x6e\xad\xc2\xcb\x50\x0d", 3990 - .input = "\x00\x01\x02\x03\x04\x05\x06\x07" 3991 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 3992 - "\x10\x11\x12\x13\x14\x15\x16\x17" 3993 - "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 3994 - .ilen = 32, 3995 - .result = "\x45\x32\x43\xfc\x60\x9b\x23\x32" 3996 - "\x7e\xdf\xaa\xfa\x71\x31\xcd\x9f" 3997 - "\x84\x90\x70\x1c\x5a\xd4\xa7\x9c" 3998 - "\xfc\x1f\xe0\xff\x42\xf4\xfb\x00", 3999 - .rlen = 32, 4000 - }, { 4001 - .key = "\x77\x6b\xef\xf2\x85\x1d\xb0\x6f" 4002 - "\x4c\x8a\x05\x42\xc8\x69\x6f\x6c" 4003 - "\x6a\x81\xaf\x1e\xec\x96\xb4\xd3" 4004 - "\x7f\xc1\xd6\x89\xe6\xc1\xc1\x04" 4005 - "\x00\x00\x00\x60", 4006 - .klen = 36, 4007 - .iv = "\xdb\x56\x72\xc9\x7a\xa8\xf0\xb2", 4008 - .input = "Single block msg", 4009 - .ilen = 16, 4010 - .result = "\x14\x5a\xd0\x1d\xbf\x82\x4e\xc7" 4011 - "\x56\x08\x63\xdc\x71\xe3\xe0\xc0", 4012 - .rlen = 16, 4013 - }, { 4014 - .key = "\xf6\xd6\x6d\x6b\xd5\x2d\x59\xbb" 4015 - "\x07\x96\x36\x58\x79\xef\xf8\x86" 4016 - "\xc6\x6d\xd5\x1a\x5b\x6a\x99\x74" 4017 - "\x4b\x50\x59\x0c\x87\xa2\x38\x84" 4018 - "\x00\xfa\xac\x24", 4019 - .klen = 36, 4020 - .iv = "\xc1\x58\x5e\xf1\x5a\x43\xd8\x75", 4021 - .input = "\x00\x01\x02\x03\x04\x05\x06\x07" 4022 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 4023 - "\x10\x11\x12\x13\x14\x15\x16\x17" 4024 - "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 4025 - .ilen = 32, 4026 - .result = "\xf0\x5e\x23\x1b\x38\x94\x61\x2c" 4027 - "\x49\xee\x00\x0b\x80\x4e\xb2\xa9" 4028 - "\xb8\x30\x6b\x50\x8f\x83\x9d\x6a" 4029 - "\x55\x30\x83\x1d\x93\x44\xaf\x1c", 4030 - .rlen = 32, 4031 - }, { 4032 - // generated using Crypto++ 4033 - .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 4034 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 4035 - "\x10\x11\x12\x13\x14\x15\x16\x17" 4036 - "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 4037 - "\x00\x00\x00\x00", 4038 - .klen = 32 + 4, 4039 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00", 4040 - .input = 4041 - "\x00\x01\x02\x03\x04\x05\x06\x07" 4042 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 4043 - "\x10\x11\x12\x13\x14\x15\x16\x17" 4044 - "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 4045 - "\x20\x21\x22\x23\x24\x25\x26\x27" 4046 - "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 4047 - "\x30\x31\x32\x33\x34\x35\x36\x37" 4048 - "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 4049 - "\x40\x41\x42\x43\x44\x45\x46\x47" 4050 - "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 4051 - "\x50\x51\x52\x53\x54\x55\x56\x57" 4052 - "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 4053 - "\x60\x61\x62\x63\x64\x65\x66\x67" 4054 - "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 4055 - "\x70\x71\x72\x73\x74\x75\x76\x77" 4056 - "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 4057 - "\x80\x81\x82\x83\x84\x85\x86\x87" 4058 - "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 4059 - "\x90\x91\x92\x93\x94\x95\x96\x97" 4060 - "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 4061 - "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 4062 - "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 4063 - "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 4064 - "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 4065 - "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 4066 - "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 4067 - "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 4068 - "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 4069 - "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 4070 - "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 4071 - "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 4072 - "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff" 4073 - "\x00\x03\x06\x09\x0c\x0f\x12\x15" 4074 - "\x18\x1b\x1e\x21\x24\x27\x2a\x2d" 4075 - "\x30\x33\x36\x39\x3c\x3f\x42\x45" 4076 - "\x48\x4b\x4e\x51\x54\x57\x5a\x5d" 4077 - "\x60\x63\x66\x69\x6c\x6f\x72\x75" 4078 - "\x78\x7b\x7e\x81\x84\x87\x8a\x8d" 4079 - "\x90\x93\x96\x99\x9c\x9f\xa2\xa5" 4080 - "\xa8\xab\xae\xb1\xb4\xb7\xba\xbd" 4081 - "\xc0\xc3\xc6\xc9\xcc\xcf\xd2\xd5" 4082 - "\xd8\xdb\xde\xe1\xe4\xe7\xea\xed" 4083 - "\xf0\xf3\xf6\xf9\xfc\xff\x02\x05" 4084 - "\x08\x0b\x0e\x11\x14\x17\x1a\x1d" 4085 - "\x20\x23\x26\x29\x2c\x2f\x32\x35" 4086 - "\x38\x3b\x3e\x41\x44\x47\x4a\x4d" 4087 - "\x50\x53\x56\x59\x5c\x5f\x62\x65" 4088 - "\x68\x6b\x6e\x71\x74\x77\x7a\x7d" 4089 - "\x80\x83\x86\x89\x8c\x8f\x92\x95" 4090 - "\x98\x9b\x9e\xa1\xa4\xa7\xaa\xad" 4091 - "\xb0\xb3\xb6\xb9\xbc\xbf\xc2\xc5" 4092 - "\xc8\xcb\xce\xd1\xd4\xd7\xda\xdd" 4093 - "\xe0\xe3\xe6\xe9\xec\xef\xf2\xf5" 4094 - "\xf8\xfb\xfe\x01\x04\x07\x0a\x0d" 4095 - "\x10\x13\x16\x19\x1c\x1f\x22\x25" 4096 - "\x28\x2b\x2e\x31\x34\x37\x3a\x3d" 4097 - "\x40\x43\x46\x49\x4c\x4f\x52\x55" 4098 - "\x58\x5b\x5e\x61\x64\x67\x6a\x6d" 4099 - "\x70\x73\x76\x79\x7c\x7f\x82\x85" 4100 - "\x88\x8b\x8e\x91\x94\x97\x9a\x9d" 4101 - "\xa0\xa3\xa6\xa9\xac\xaf\xb2\xb5" 4102 - "\xb8\xbb\xbe\xc1\xc4\xc7\xca\xcd" 4103 - "\xd0\xd3\xd6\xd9\xdc\xdf\xe2\xe5" 4104 - "\xe8\xeb\xee\xf1\xf4\xf7\xfa\xfd" 4105 - "\x00\x05\x0a\x0f\x14\x19\x1e\x23" 4106 - "\x28\x2d\x32\x37\x3c\x41\x46\x4b" 4107 - "\x50\x55\x5a\x5f\x64\x69\x6e\x73" 4108 - "\x78\x7d\x82\x87\x8c\x91\x96\x9b" 4109 - "\xa0\xa5\xaa\xaf\xb4\xb9\xbe\xc3" 4110 - "\xc8\xcd\xd2\xd7\xdc\xe1\xe6\xeb" 4111 - "\xf0\xf5\xfa\xff\x04\x09\x0e\x13" 4112 - "\x18\x1d\x22\x27\x2c\x31\x36\x3b" 4113 - "\x40\x45\x4a\x4f\x54\x59\x5e\x63" 4114 - "\x68\x6d\x72\x77\x7c\x81\x86\x8b" 4115 - "\x90\x95\x9a\x9f\xa4\xa9\xae\xb3" 4116 - "\xb8\xbd\xc2\xc7\xcc\xd1\xd6\xdb" 4117 - "\xe0\xe5\xea\xef\xf4\xf9\xfe\x03" 4118 - "\x08\x0d\x12\x17\x1c\x21\x26\x2b" 4119 - "\x30\x35\x3a\x3f\x44\x49\x4e\x53" 4120 - "\x58\x5d\x62\x67\x6c\x71\x76\x7b" 4121 - "\x80\x85\x8a\x8f\x94\x99\x9e\xa3" 4122 - "\xa8\xad\xb2\xb7\xbc\xc1\xc6\xcb" 4123 - "\xd0\xd5\xda\xdf\xe4\xe9\xee\xf3" 4124 - "\xf8\xfd\x02\x07\x0c\x11\x16\x1b" 4125 - "\x20\x25\x2a\x2f\x34\x39\x3e\x43" 4126 - "\x48\x4d\x52\x57\x5c\x61\x66\x6b" 4127 - "\x70\x75\x7a\x7f\x84\x89\x8e\x93" 4128 - "\x98\x9d\xa2\xa7\xac\xb1\xb6\xbb" 4129 - "\xc0\xc5\xca\xcf\xd4\xd9\xde\xe3" 4130 - "\xe8\xed\xf2\xf7\xfc\x01\x06\x0b" 4131 - "\x10\x15\x1a\x1f\x24\x29\x2e\x33" 4132 - "\x38\x3d\x42\x47\x4c\x51\x56\x5b" 4133 - "\x60\x65\x6a\x6f\x74\x79\x7e\x83" 4134 - "\x88\x8d\x92\x97\x9c\xa1\xa6\xab" 4135 - "\xb0\xb5\xba\xbf\xc4\xc9\xce\xd3" 4136 - "\xd8\xdd\xe2\xe7\xec\xf1\xf6\xfb" 4137 - "\x00\x07\x0e\x15\x1c\x23\x2a\x31" 4138 - "\x38\x3f\x46\x4d\x54\x5b\x62\x69" 4139 - "\x70\x77\x7e\x85\x8c\x93\x9a\xa1" 4140 - "\xa8\xaf\xb6\xbd\xc4\xcb\xd2\xd9" 4141 - "\xe0\xe7\xee\xf5\xfc\x03\x0a\x11" 4142 - "\x18\x1f\x26\x2d\x34\x3b\x42\x49" 4143 - "\x50\x57\x5e\x65\x6c\x73\x7a\x81" 4144 - "\x88\x8f\x96\x9d\xa4\xab\xb2\xb9" 4145 - "\xc0\xc7\xce\xd5\xdc\xe3\xea\xf1" 4146 - "\xf8\xff\x06\x0d\x14\x1b\x22\x29" 4147 - "\x30\x37\x3e\x45\x4c\x53\x5a\x61" 4148 - "\x68\x6f\x76\x7d\x84\x8b\x92\x99" 4149 - "\xa0\xa7\xae\xb5\xbc\xc3\xca\xd1" 4150 - "\xd8\xdf\xe6\xed\xf4\xfb\x02\x09" 4151 - "\x10\x17\x1e\x25\x2c\x33\x3a\x41" 4152 - "\x48\x4f\x56\x5d\x64\x6b\x72\x79" 4153 - "\x80\x87\x8e\x95\x9c\xa3\xaa\xb1" 4154 - "\xb8\xbf\xc6\xcd\xd4\xdb\xe2\xe9" 4155 - "\xf0\xf7\xfe\x05\x0c\x13\x1a\x21" 4156 - "\x28\x2f\x36\x3d\x44\x4b\x52\x59" 4157 - "\x60\x67\x6e\x75\x7c\x83\x8a\x91" 4158 - "\x98\x9f\xa6\xad\xb4\xbb\xc2\xc9" 4159 - "\xd0\xd7\xde\xe5\xec\xf3\xfa\x01" 4160 - "\x08\x0f\x16\x1d\x24\x2b\x32\x39" 4161 - "\x40\x47\x4e\x55\x5c\x63\x6a\x71" 4162 - "\x78\x7f\x86\x8d\x94\x9b\xa2\xa9" 4163 - "\xb0\xb7\xbe\xc5\xcc\xd3\xda\xe1" 4164 - "\xe8\xef\xf6\xfd\x04\x0b\x12\x19" 4165 - "\x20\x27\x2e\x35\x3c\x43\x4a\x51" 4166 - "\x58\x5f\x66\x6d\x74\x7b\x82\x89" 4167 - "\x90\x97\x9e\xa5\xac\xb3\xba\xc1" 4168 - "\xc8\xcf\xd6\xdd\xe4\xeb\xf2\xf9" 4169 - "\x00\x09\x12\x1b\x24\x2d\x36\x3f" 4170 - "\x48\x51\x5a\x63\x6c\x75\x7e\x87" 4171 - "\x90\x99\xa2\xab\xb4\xbd\xc6\xcf" 4172 - "\xd8\xe1\xea\xf3\xfc\x05\x0e\x17" 4173 - "\x20\x29\x32\x3b\x44\x4d\x56\x5f" 4174 - "\x68\x71\x7a\x83\x8c\x95\x9e\xa7" 4175 - "\xb0\xb9\xc2\xcb\xd4\xdd\xe6\xef" 4176 - "\xf8\x01\x0a\x13\x1c\x25\x2e\x37" 4177 - "\x40\x49\x52\x5b\x64\x6d\x76\x7f" 4178 - "\x88\x91\x9a\xa3\xac\xb5\xbe\xc7" 4179 - "\xd0\xd9\xe2\xeb\xf4\xfd\x06\x0f" 4180 - "\x18\x21\x2a\x33\x3c\x45\x4e\x57" 4181 - "\x60\x69\x72\x7b\x84\x8d\x96\x9f" 4182 - "\xa8\xb1\xba\xc3\xcc\xd5\xde\xe7" 4183 - "\xf0\xf9\x02\x0b\x14\x1d\x26\x2f" 4184 - "\x38\x41\x4a\x53\x5c\x65\x6e\x77" 4185 - "\x80\x89\x92\x9b\xa4\xad\xb6\xbf" 4186 - "\xc8\xd1\xda\xe3\xec\xf5\xfe\x07" 4187 - "\x10\x19\x22\x2b\x34\x3d\x46\x4f" 4188 - "\x58\x61\x6a\x73\x7c\x85\x8e\x97" 4189 - "\xa0\xa9\xb2\xbb\xc4\xcd\xd6\xdf" 4190 - "\xe8\xf1\xfa\x03\x0c\x15\x1e\x27" 4191 - "\x30\x39\x42\x4b\x54\x5d\x66\x6f" 4192 - "\x78\x81\x8a\x93\x9c\xa5\xae\xb7" 4193 - "\xc0\xc9\xd2\xdb\xe4\xed\xf6\xff" 4194 - "\x08\x11\x1a\x23\x2c\x35\x3e\x47" 4195 - "\x50\x59\x62\x6b\x74\x7d\x86\x8f" 4196 - "\x98\xa1\xaa\xb3\xbc\xc5\xce\xd7" 4197 - "\xe0\xe9\xf2\xfb\x04\x0d\x16\x1f" 4198 - "\x28\x31\x3a\x43\x4c\x55\x5e\x67" 4199 - "\x70\x79\x82\x8b\x94\x9d\xa6\xaf" 4200 - "\xb8\xc1\xca\xd3\xdc\xe5\xee\xf7" 4201 - "\x00\x0b\x16\x21\x2c\x37\x42\x4d" 4202 - "\x58\x63\x6e\x79\x84\x8f\x9a\xa5" 4203 - "\xb0\xbb\xc6\xd1\xdc\xe7\xf2\xfd" 4204 - "\x08\x13\x1e\x29\x34\x3f\x4a\x55" 4205 - "\x60\x6b\x76\x81\x8c\x97\xa2\xad" 4206 - "\xb8\xc3\xce\xd9\xe4\xef\xfa\x05" 4207 - "\x10\x1b\x26\x31\x3c\x47\x52\x5d" 4208 - "\x68\x73\x7e\x89\x94\x9f\xaa\xb5" 4209 - "\xc0\xcb\xd6\xe1\xec\xf7\x02\x0d" 4210 - "\x18\x23\x2e\x39\x44\x4f\x5a\x65" 4211 - "\x70\x7b\x86\x91\x9c\xa7\xb2\xbd" 4212 - "\xc8\xd3\xde\xe9\xf4\xff\x0a\x15" 4213 - "\x20\x2b\x36\x41\x4c\x57\x62\x6d" 4214 - "\x78\x83\x8e\x99\xa4\xaf\xba\xc5" 4215 - "\xd0\xdb\xe6\xf1\xfc\x07\x12\x1d" 4216 - "\x28\x33\x3e\x49\x54\x5f\x6a\x75" 4217 - "\x80\x8b\x96\xa1\xac\xb7\xc2\xcd" 4218 - "\xd8\xe3\xee\xf9\x04\x0f\x1a\x25" 4219 - "\x30\x3b\x46\x51\x5c\x67\x72\x7d" 4220 - "\x88\x93\x9e\xa9\xb4\xbf\xca\xd5" 4221 - "\xe0\xeb\xf6\x01\x0c\x17\x22\x2d" 4222 - "\x38\x43\x4e\x59\x64\x6f\x7a\x85" 4223 - "\x90\x9b\xa6\xb1\xbc\xc7\xd2\xdd" 4224 - "\xe8\xf3\xfe\x09\x14\x1f\x2a\x35" 4225 - "\x40\x4b\x56\x61\x6c\x77\x82\x8d" 4226 - "\x98\xa3\xae\xb9\xc4\xcf\xda\xe5" 4227 - "\xf0\xfb\x06\x11\x1c\x27\x32\x3d" 4228 - "\x48\x53\x5e\x69\x74\x7f\x8a\x95" 4229 - "\xa0\xab\xb6\xc1\xcc\xd7\xe2\xed" 4230 - "\xf8\x03\x0e\x19\x24\x2f\x3a\x45" 4231 - "\x50\x5b\x66\x71\x7c\x87\x92\x9d" 4232 - "\xa8\xb3\xbe\xc9\xd4\xdf\xea\xf5" 4233 - "\x00\x0d\x1a\x27\x34\x41\x4e\x5b" 4234 - "\x68\x75\x82\x8f\x9c\xa9\xb6\xc3" 4235 - "\xd0\xdd\xea\xf7\x04\x11\x1e\x2b" 4236 - "\x38\x45\x52\x5f\x6c\x79\x86\x93" 4237 - "\xa0\xad\xba\xc7\xd4\xe1\xee\xfb" 4238 - "\x08\x15\x22\x2f\x3c\x49\x56\x63" 4239 - "\x70\x7d\x8a\x97\xa4\xb1\xbe\xcb" 4240 - "\xd8\xe5\xf2\xff\x0c\x19\x26\x33" 4241 - "\x40\x4d\x5a\x67\x74\x81\x8e\x9b" 4242 - "\xa8\xb5\xc2\xcf\xdc\xe9\xf6\x03" 4243 - "\x10\x1d\x2a\x37\x44\x51\x5e\x6b" 4244 - "\x78\x85\x92\x9f\xac\xb9\xc6\xd3" 4245 - "\xe0\xed\xfa\x07\x14\x21\x2e\x3b" 4246 - "\x48\x55\x62\x6f\x7c\x89\x96\xa3" 4247 - "\xb0\xbd\xca\xd7\xe4\xf1\xfe\x0b" 4248 - "\x18\x25\x32\x3f\x4c\x59\x66\x73" 4249 - "\x80\x8d\x9a\xa7\xb4\xc1\xce\xdb" 4250 - "\xe8\xf5\x02\x0f\x1c\x29\x36\x43" 4251 - "\x50\x5d\x6a\x77\x84\x91\x9e\xab" 4252 - "\xb8\xc5\xd2\xdf\xec\xf9\x06\x13" 4253 - "\x20\x2d\x3a\x47\x54\x61\x6e\x7b" 4254 - "\x88\x95\xa2\xaf\xbc\xc9\xd6\xe3" 4255 - "\xf0\xfd\x0a\x17\x24\x31\x3e\x4b" 4256 - "\x58\x65\x72\x7f\x8c\x99\xa6\xb3" 4257 - "\xc0\xcd\xda\xe7\xf4\x01\x0e\x1b" 4258 - "\x28\x35\x42\x4f\x5c\x69\x76\x83" 4259 - "\x90\x9d\xaa\xb7\xc4\xd1\xde\xeb" 4260 - "\xf8\x05\x12\x1f\x2c\x39\x46\x53" 4261 - "\x60\x6d\x7a\x87\x94\xa1\xae\xbb" 4262 - "\xc8\xd5\xe2\xef\xfc\x09\x16\x23" 4263 - "\x30\x3d\x4a\x57\x64\x71\x7e\x8b" 4264 - "\x98\xa5\xb2\xbf\xcc\xd9\xe6\xf3" 4265 - "\x00\x0f\x1e\x2d\x3c\x4b\x5a\x69" 4266 - "\x78\x87\x96\xa5\xb4\xc3\xd2\xe1" 4267 - "\xf0\xff\x0e\x1d\x2c\x3b\x4a\x59" 4268 - "\x68\x77\x86\x95\xa4\xb3\xc2\xd1" 4269 - "\xe0\xef\xfe\x0d\x1c\x2b\x3a\x49" 4270 - "\x58\x67\x76\x85\x94\xa3\xb2\xc1" 4271 - "\xd0\xdf\xee\xfd\x0c\x1b\x2a\x39" 4272 - "\x48\x57\x66\x75\x84\x93\xa2\xb1" 4273 - "\xc0\xcf\xde\xed\xfc\x0b\x1a\x29" 4274 - "\x38\x47\x56\x65\x74\x83\x92\xa1" 4275 - "\xb0\xbf\xce\xdd\xec\xfb\x0a\x19" 4276 - "\x28\x37\x46\x55\x64\x73\x82\x91" 4277 - "\xa0\xaf\xbe\xcd\xdc\xeb\xfa\x09" 4278 - "\x18\x27\x36\x45\x54\x63\x72\x81" 4279 - "\x90\x9f\xae\xbd\xcc\xdb\xea\xf9" 4280 - "\x08\x17\x26\x35\x44\x53\x62\x71" 4281 - "\x80\x8f\x9e\xad\xbc\xcb\xda\xe9" 4282 - "\xf8\x07\x16\x25\x34\x43\x52\x61" 4283 - "\x70\x7f\x8e\x9d\xac\xbb\xca\xd9" 4284 - "\xe8\xf7\x06\x15\x24\x33\x42\x51" 4285 - "\x60\x6f\x7e\x8d\x9c\xab\xba\xc9" 4286 - "\xd8\xe7\xf6\x05\x14\x23\x32\x41" 4287 - "\x50\x5f\x6e\x7d\x8c\x9b\xaa\xb9" 4288 - "\xc8\xd7\xe6\xf5\x04\x13\x22\x31" 4289 - "\x40\x4f\x5e\x6d\x7c\x8b\x9a\xa9" 4290 - "\xb8\xc7\xd6\xe5\xf4\x03\x12\x21" 4291 - "\x30\x3f\x4e\x5d\x6c\x7b\x8a\x99" 4292 - "\xa8\xb7\xc6\xd5\xe4\xf3\x02\x11" 4293 - "\x20\x2f\x3e\x4d\x5c\x6b\x7a\x89" 4294 - "\x98\xa7\xb6\xc5\xd4\xe3\xf2\x01" 4295 - "\x10\x1f\x2e\x3d\x4c\x5b\x6a\x79" 4296 - "\x88\x97\xa6\xb5\xc4\xd3\xe2\xf1" 4297 - "\x00\x11\x22\x33\x44\x55\x66\x77" 4298 - "\x88\x99\xaa\xbb\xcc\xdd\xee\xff" 4299 - "\x10\x21\x32\x43\x54\x65\x76\x87" 4300 - "\x98\xa9\xba\xcb\xdc\xed\xfe\x0f" 4301 - "\x20\x31\x42\x53\x64\x75\x86\x97" 4302 - "\xa8\xb9\xca\xdb\xec\xfd\x0e\x1f" 4303 - "\x30\x41\x52\x63\x74\x85\x96\xa7" 4304 - "\xb8\xc9\xda\xeb\xfc\x0d\x1e\x2f" 4305 - "\x40\x51\x62\x73\x84\x95\xa6\xb7" 4306 - "\xc8\xd9\xea\xfb\x0c\x1d\x2e\x3f" 4307 - "\x50\x61\x72\x83\x94\xa5\xb6\xc7" 4308 - "\xd8\xe9\xfa\x0b\x1c\x2d\x3e\x4f" 4309 - "\x60\x71\x82\x93\xa4\xb5\xc6\xd7" 4310 - "\xe8\xf9\x0a\x1b\x2c\x3d\x4e\x5f" 4311 - "\x70\x81\x92\xa3\xb4\xc5\xd6\xe7" 4312 - "\xf8\x09\x1a\x2b\x3c\x4d\x5e\x6f" 4313 - "\x80\x91\xa2\xb3\xc4\xd5\xe6\xf7" 4314 - "\x08\x19\x2a\x3b\x4c\x5d\x6e\x7f" 4315 - "\x90\xa1\xb2\xc3\xd4\xe5\xf6\x07" 4316 - "\x18\x29\x3a\x4b\x5c\x6d\x7e\x8f" 4317 - "\xa0\xb1\xc2\xd3\xe4\xf5\x06\x17" 4318 - "\x28\x39\x4a\x5b\x6c\x7d\x8e\x9f" 4319 - "\xb0\xc1\xd2\xe3\xf4\x05\x16\x27" 4320 - "\x38\x49\x5a\x6b\x7c\x8d\x9e\xaf" 4321 - "\xc0\xd1\xe2\xf3\x04\x15\x26\x37" 4322 - "\x48\x59\x6a\x7b\x8c\x9d\xae\xbf" 4323 - "\xd0\xe1\xf2\x03\x14\x25\x36\x47" 4324 - "\x58\x69\x7a\x8b\x9c\xad\xbe\xcf" 4325 - "\xe0\xf1\x02\x13\x24\x35\x46\x57" 4326 - "\x68\x79\x8a\x9b\xac\xbd\xce\xdf" 4327 - "\xf0\x01\x12\x23\x34\x45\x56\x67" 4328 - "\x78\x89\x9a\xab\xbc\xcd\xde\xef" 4329 - "\x00\x13\x26\x39\x4c\x5f\x72\x85" 4330 - "\x98\xab\xbe\xd1\xe4\xf7\x0a\x1d" 4331 - "\x30\x43\x56\x69\x7c\x8f\xa2\xb5" 4332 - "\xc8\xdb\xee\x01\x14\x27\x3a\x4d" 4333 - "\x60\x73\x86\x99\xac\xbf\xd2\xe5" 4334 - "\xf8\x0b\x1e\x31\x44\x57\x6a\x7d" 4335 - "\x90\xa3\xb6\xc9\xdc\xef\x02\x15" 4336 - "\x28\x3b\x4e\x61\x74\x87\x9a\xad" 4337 - "\xc0\xd3\xe6\xf9\x0c\x1f\x32\x45" 4338 - "\x58\x6b\x7e\x91\xa4\xb7\xca\xdd" 4339 - "\xf0\x03\x16\x29\x3c\x4f\x62\x75" 4340 - "\x88\x9b\xae\xc1\xd4\xe7\xfa\x0d" 4341 - "\x20\x33\x46\x59\x6c\x7f\x92\xa5" 4342 - "\xb8\xcb\xde\xf1\x04\x17\x2a\x3d" 4343 - "\x50\x63\x76\x89\x9c\xaf\xc2\xd5" 4344 - "\xe8\xfb\x0e\x21\x34\x47\x5a\x6d" 4345 - "\x80\x93\xa6\xb9\xcc\xdf\xf2\x05" 4346 - "\x18\x2b\x3e\x51\x64\x77\x8a\x9d" 4347 - "\xb0\xc3\xd6\xe9\xfc\x0f\x22\x35" 4348 - "\x48\x5b\x6e\x81\x94\xa7\xba\xcd" 4349 - "\xe0\xf3\x06\x19\x2c\x3f\x52\x65" 4350 - "\x78\x8b\x9e\xb1\xc4\xd7\xea\xfd" 4351 - "\x10\x23\x36\x49\x5c\x6f\x82\x95" 4352 - "\xa8\xbb\xce\xe1\xf4\x07\x1a\x2d" 4353 - "\x40\x53\x66\x79\x8c\x9f\xb2\xc5" 4354 - "\xd8\xeb\xfe\x11\x24\x37\x4a\x5d" 4355 - "\x70\x83\x96\xa9\xbc\xcf\xe2\xf5" 4356 - "\x08\x1b\x2e\x41\x54\x67\x7a\x8d" 4357 - "\xa0\xb3\xc6\xd9\xec\xff\x12\x25" 4358 - "\x38\x4b\x5e\x71\x84\x97\xaa\xbd" 4359 - "\xd0\xe3\xf6\x09\x1c\x2f\x42\x55" 4360 - "\x68\x7b\x8e\xa1\xb4\xc7\xda\xed" 4361 - "\x00\x15\x2a\x3f\x54\x69\x7e\x93" 4362 - "\xa8\xbd\xd2\xe7\xfc\x11\x26\x3b" 4363 - "\x50\x65\x7a\x8f\xa4\xb9\xce\xe3" 4364 - "\xf8\x0d\x22\x37\x4c\x61\x76\x8b" 4365 - "\xa0\xb5\xca\xdf\xf4\x09\x1e\x33" 4366 - "\x48\x5d\x72\x87\x9c\xb1\xc6\xdb" 4367 - "\xf0\x05\x1a\x2f\x44\x59\x6e\x83" 4368 - "\x98\xad\xc2\xd7\xec\x01\x16\x2b" 4369 - "\x40\x55\x6a\x7f\x94\xa9\xbe\xd3" 4370 - "\xe8\xfd\x12\x27\x3c\x51\x66\x7b" 4371 - "\x90\xa5\xba\xcf\xe4\xf9\x0e\x23" 4372 - "\x38\x4d\x62\x77\x8c\xa1\xb6\xcb" 4373 - "\xe0\xf5\x0a\x1f\x34\x49\x5e\x73" 4374 - "\x88\x9d\xb2\xc7\xdc\xf1\x06\x1b" 4375 - "\x30\x45\x5a\x6f\x84\x99\xae\xc3" 4376 - "\xd8\xed\x02\x17\x2c\x41\x56\x6b" 4377 - "\x80\x95\xaa\xbf\xd4\xe9\xfe\x13" 4378 - "\x28\x3d\x52\x67\x7c\x91\xa6\xbb" 4379 - "\xd0\xe5\xfa\x0f\x24\x39\x4e\x63" 4380 - "\x78\x8d\xa2\xb7\xcc\xe1\xf6\x0b" 4381 - "\x20\x35\x4a\x5f\x74\x89\x9e\xb3" 4382 - "\xc8\xdd\xf2\x07\x1c\x31\x46\x5b" 4383 - "\x70\x85\x9a\xaf\xc4\xd9\xee\x03" 4384 - "\x18\x2d\x42\x57\x6c\x81\x96\xab" 4385 - "\xc0\xd5\xea\xff\x14\x29\x3e\x53" 4386 - "\x68\x7d\x92\xa7\xbc\xd1\xe6\xfb" 4387 - "\x10\x25\x3a\x4f\x64\x79\x8e\xa3" 4388 - "\xb8\xcd\xe2\xf7\x0c\x21\x36\x4b" 4389 - "\x60\x75\x8a\x9f\xb4\xc9\xde\xf3" 4390 - "\x08\x1d\x32\x47\x5c\x71\x86\x9b" 4391 - "\xb0\xc5\xda\xef\x04\x19\x2e\x43" 4392 - "\x58\x6d\x82\x97\xac\xc1\xd6\xeb" 4393 - "\x00\x17\x2e\x45\x5c\x73\x8a\xa1" 4394 - "\xb8\xcf\xe6\xfd\x14\x2b\x42\x59" 4395 - "\x70\x87\x9e\xb5\xcc\xe3\xfa\x11" 4396 - "\x28\x3f\x56\x6d\x84\x9b\xb2\xc9" 4397 - "\xe0\xf7\x0e\x25\x3c\x53\x6a\x81" 4398 - "\x98\xaf\xc6\xdd\xf4\x0b\x22\x39" 4399 - "\x50\x67\x7e\x95\xac\xc3\xda\xf1" 4400 - "\x08\x1f\x36\x4d\x64\x7b\x92\xa9" 4401 - "\xc0\xd7\xee\x05\x1c\x33\x4a\x61" 4402 - "\x78\x8f\xa6\xbd\xd4\xeb\x02\x19" 4403 - "\x30\x47\x5e\x75\x8c\xa3\xba\xd1" 4404 - "\xe8\xff\x16\x2d\x44\x5b\x72\x89" 4405 - "\xa0\xb7\xce\xe5\xfc\x13\x2a\x41" 4406 - "\x58\x6f\x86\x9d\xb4\xcb\xe2\xf9" 4407 - "\x10\x27\x3e\x55\x6c\x83\x9a\xb1" 4408 - "\xc8\xdf\xf6\x0d\x24\x3b\x52\x69" 4409 - "\x80\x97\xae\xc5\xdc\xf3\x0a\x21" 4410 - "\x38\x4f\x66\x7d\x94\xab\xc2\xd9" 4411 - "\xf0\x07\x1e\x35\x4c\x63\x7a\x91" 4412 - "\xa8\xbf\xd6\xed\x04\x1b\x32\x49" 4413 - "\x60\x77\x8e\xa5\xbc\xd3\xea\x01" 4414 - "\x18\x2f\x46\x5d\x74\x8b\xa2\xb9" 4415 - "\xd0\xe7\xfe\x15\x2c\x43\x5a\x71" 4416 - "\x88\x9f\xb6\xcd\xe4\xfb\x12\x29" 4417 - "\x40\x57\x6e\x85\x9c\xb3\xca\xe1" 4418 - "\xf8\x0f\x26\x3d\x54\x6b\x82\x99" 4419 - "\xb0\xc7\xde\xf5\x0c\x23\x3a\x51" 4420 - "\x68\x7f\x96\xad\xc4\xdb\xf2\x09" 4421 - "\x20\x37\x4e\x65\x7c\x93\xaa\xc1" 4422 - "\xd8\xef\x06\x1d\x34\x4b\x62\x79" 4423 - "\x90\xa7\xbe\xd5\xec\x03\x1a\x31" 4424 - "\x48\x5f\x76\x8d\xa4\xbb\xd2\xe9" 4425 - "\x00\x19\x32\x4b\x64\x7d\x96\xaf" 4426 - "\xc8\xe1\xfa\x13\x2c\x45\x5e\x77" 4427 - "\x90\xa9\xc2\xdb\xf4\x0d\x26\x3f" 4428 - "\x58\x71\x8a\xa3\xbc\xd5\xee\x07" 4429 - "\x20\x39\x52\x6b\x84\x9d\xb6\xcf" 4430 - "\xe8\x01\x1a\x33\x4c\x65\x7e\x97" 4431 - "\xb0\xc9\xe2\xfb\x14\x2d\x46\x5f" 4432 - "\x78\x91\xaa\xc3\xdc\xf5\x0e\x27" 4433 - "\x40\x59\x72\x8b\xa4\xbd\xd6\xef" 4434 - "\x08\x21\x3a\x53\x6c\x85\x9e\xb7" 4435 - "\xd0\xe9\x02\x1b\x34\x4d\x66\x7f" 4436 - "\x98\xb1\xca\xe3\xfc\x15\x2e\x47" 4437 - "\x60\x79\x92\xab\xc4\xdd\xf6\x0f" 4438 - "\x28\x41\x5a\x73\x8c\xa5\xbe\xd7" 4439 - "\xf0\x09\x22\x3b\x54\x6d\x86\x9f" 4440 - "\xb8\xd1\xea\x03\x1c\x35\x4e\x67" 4441 - "\x80\x99\xb2\xcb\xe4\xfd\x16\x2f" 4442 - "\x48\x61\x7a\x93\xac\xc5\xde\xf7" 4443 - "\x10\x29\x42\x5b\x74\x8d\xa6\xbf" 4444 - "\xd8\xf1\x0a\x23\x3c\x55\x6e\x87" 4445 - "\xa0\xb9\xd2\xeb\x04\x1d\x36\x4f" 4446 - "\x68\x81\x9a\xb3\xcc\xe5\xfe\x17" 4447 - "\x30\x49\x62\x7b\x94\xad\xc6\xdf" 4448 - "\xf8\x11\x2a\x43\x5c\x75\x8e\xa7" 4449 - "\xc0\xd9\xf2\x0b\x24\x3d\x56\x6f" 4450 - "\x88\xa1\xba\xd3\xec\x05\x1e\x37" 4451 - "\x50\x69\x82\x9b\xb4\xcd\xe6\xff" 4452 - "\x18\x31\x4a\x63\x7c\x95\xae\xc7" 4453 - "\xe0\xf9\x12\x2b\x44\x5d\x76\x8f" 4454 - "\xa8\xc1\xda\xf3\x0c\x25\x3e\x57" 4455 - "\x70\x89\xa2\xbb\xd4\xed\x06\x1f" 4456 - "\x38\x51\x6a\x83\x9c\xb5\xce\xe7" 4457 - "\x00\x1b\x36\x51\x6c\x87\xa2\xbd" 4458 - "\xd8\xf3\x0e\x29\x44\x5f\x7a\x95" 4459 - "\xb0\xcb\xe6\x01\x1c\x37\x52\x6d" 4460 - "\x88\xa3\xbe\xd9\xf4\x0f\x2a\x45" 4461 - "\x60\x7b\x96\xb1\xcc\xe7\x02\x1d" 4462 - "\x38\x53\x6e\x89\xa4\xbf\xda\xf5" 4463 - "\x10\x2b\x46\x61\x7c\x97\xb2\xcd" 4464 - "\xe8\x03\x1e\x39\x54\x6f\x8a\xa5" 4465 - "\xc0\xdb\xf6\x11\x2c\x47\x62\x7d" 4466 - "\x98\xb3\xce\xe9\x04\x1f\x3a\x55" 4467 - "\x70\x8b\xa6\xc1\xdc\xf7\x12\x2d" 4468 - "\x48\x63\x7e\x99\xb4\xcf\xea\x05" 4469 - "\x20\x3b\x56\x71\x8c\xa7\xc2\xdd" 4470 - "\xf8\x13\x2e\x49\x64\x7f\x9a\xb5" 4471 - "\xd0\xeb\x06\x21\x3c\x57\x72\x8d" 4472 - "\xa8\xc3\xde\xf9\x14\x2f\x4a\x65" 4473 - "\x80\x9b\xb6\xd1\xec\x07\x22\x3d" 4474 - "\x58\x73\x8e\xa9\xc4\xdf\xfa\x15" 4475 - "\x30\x4b\x66\x81\x9c\xb7\xd2\xed" 4476 - "\x08\x23\x3e\x59\x74\x8f\xaa\xc5" 4477 - "\xe0\xfb\x16\x31\x4c\x67\x82\x9d" 4478 - "\xb8\xd3\xee\x09\x24\x3f\x5a\x75" 4479 - "\x90\xab\xc6\xe1\xfc\x17\x32\x4d" 4480 - "\x68\x83\x9e\xb9\xd4\xef\x0a\x25" 4481 - "\x40\x5b\x76\x91\xac\xc7\xe2\xfd" 4482 - "\x18\x33\x4e\x69\x84\x9f\xba\xd5" 4483 - "\xf0\x0b\x26\x41\x5c\x77\x92\xad" 4484 - "\xc8\xe3\xfe\x19\x34\x4f\x6a\x85" 4485 - "\xa0\xbb\xd6\xf1\x0c\x27\x42\x5d" 4486 - "\x78\x93\xae\xc9\xe4\xff\x1a\x35" 4487 - "\x50\x6b\x86\xa1\xbc\xd7\xf2\x0d" 4488 - "\x28\x43\x5e\x79\x94\xaf\xca\xe5" 4489 - "\x00\x1d\x3a\x57\x74\x91\xae\xcb" 4490 - "\xe8\x05\x22\x3f\x5c\x79\x96\xb3" 4491 - "\xd0\xed\x0a\x27\x44\x61\x7e\x9b" 4492 - "\xb8\xd5\xf2\x0f\x2c\x49\x66\x83" 4493 - "\xa0\xbd\xda\xf7\x14\x31\x4e\x6b" 4494 - "\x88\xa5\xc2\xdf\xfc\x19\x36\x53" 4495 - "\x70\x8d\xaa\xc7\xe4\x01\x1e\x3b" 4496 - "\x58\x75\x92\xaf\xcc\xe9\x06\x23" 4497 - "\x40\x5d\x7a\x97\xb4\xd1\xee\x0b" 4498 - "\x28\x45\x62\x7f\x9c\xb9\xd6\xf3" 4499 - "\x10\x2d\x4a\x67\x84\xa1\xbe\xdb" 4500 - "\xf8\x15\x32\x4f\x6c\x89\xa6\xc3" 4501 - "\xe0\xfd\x1a\x37\x54\x71\x8e\xab" 4502 - "\xc8\xe5\x02\x1f\x3c\x59\x76\x93" 4503 - "\xb0\xcd\xea\x07\x24\x41\x5e\x7b" 4504 - "\x98\xb5\xd2\xef\x0c\x29\x46\x63" 4505 - "\x80\x9d\xba\xd7\xf4\x11\x2e\x4b" 4506 - "\x68\x85\xa2\xbf\xdc\xf9\x16\x33" 4507 - "\x50\x6d\x8a\xa7\xc4\xe1\xfe\x1b" 4508 - "\x38\x55\x72\x8f\xac\xc9\xe6\x03" 4509 - "\x20\x3d\x5a\x77\x94\xb1\xce\xeb" 4510 - "\x08\x25\x42\x5f\x7c\x99\xb6\xd3" 4511 - "\xf0\x0d\x2a\x47\x64\x81\x9e\xbb" 4512 - "\xd8\xf5\x12\x2f\x4c\x69\x86\xa3" 4513 - "\xc0\xdd\xfa\x17\x34\x51\x6e\x8b" 4514 - "\xa8\xc5\xe2\xff\x1c\x39\x56\x73" 4515 - "\x90\xad\xca\xe7\x04\x21\x3e\x5b" 4516 - "\x78\x95\xb2\xcf\xec\x09\x26\x43" 4517 - "\x60\x7d\x9a\xb7\xd4\xf1\x0e\x2b" 4518 - "\x48\x65\x82\x9f\xbc\xd9\xf6\x13" 4519 - "\x30\x4d\x6a\x87\xa4\xc1\xde\xfb" 4520 - "\x18\x35\x52\x6f\x8c\xa9\xc6\xe3" 4521 - "\x00\x1f\x3e\x5d\x7c\x9b\xba\xd9" 4522 - "\xf8\x17\x36\x55\x74\x93\xb2\xd1" 4523 - "\xf0\x0f\x2e\x4d\x6c\x8b\xaa\xc9" 4524 - "\xe8\x07\x26\x45\x64\x83\xa2\xc1" 4525 - "\xe0\xff\x1e\x3d\x5c\x7b\x9a\xb9" 4526 - "\xd8\xf7\x16\x35\x54\x73\x92\xb1" 4527 - "\xd0\xef\x0e\x2d\x4c\x6b\x8a\xa9" 4528 - "\xc8\xe7\x06\x25\x44\x63\x82\xa1" 4529 - "\xc0\xdf\xfe\x1d\x3c\x5b\x7a\x99" 4530 - "\xb8\xd7\xf6\x15\x34\x53\x72\x91" 4531 - "\xb0\xcf\xee\x0d\x2c\x4b\x6a\x89" 4532 - "\xa8\xc7\xe6\x05\x24\x43\x62\x81" 4533 - "\xa0\xbf\xde\xfd\x1c\x3b\x5a\x79" 4534 - "\x98\xb7\xd6\xf5\x14\x33\x52\x71" 4535 - "\x90\xaf\xce\xed\x0c\x2b\x4a\x69" 4536 - "\x88\xa7\xc6\xe5\x04\x23\x42\x61" 4537 - "\x80\x9f\xbe\xdd\xfc\x1b\x3a\x59" 4538 - "\x78\x97\xb6\xd5\xf4\x13\x32\x51" 4539 - "\x70\x8f\xae\xcd\xec\x0b\x2a\x49" 4540 - "\x68\x87\xa6\xc5\xe4\x03\x22\x41" 4541 - "\x60\x7f\x9e\xbd\xdc\xfb\x1a\x39" 4542 - "\x58\x77\x96\xb5\xd4\xf3\x12\x31" 4543 - "\x50\x6f\x8e\xad\xcc\xeb\x0a\x29" 4544 - "\x48\x67\x86\xa5\xc4\xe3\x02\x21" 4545 - "\x40\x5f\x7e\x9d\xbc\xdb\xfa\x19" 4546 - "\x38\x57\x76\x95\xb4\xd3\xf2\x11" 4547 - "\x30\x4f\x6e\x8d\xac\xcb\xea\x09" 4548 - "\x28\x47\x66\x85\xa4\xc3\xe2\x01" 4549 - "\x20\x3f\x5e\x7d\x9c\xbb\xda\xf9" 4550 - "\x18\x37\x56\x75\x94\xb3\xd2\xf1" 4551 - "\x10\x2f\x4e\x6d\x8c\xab\xca\xe9" 4552 - "\x08\x27\x46\x65\x84\xa3\xc2\xe1" 4553 - "\x00\x21\x42\x63", 4554 - .ilen = 4100, 4555 - .result = 4556 - "\xf0\x5c\x74\xad\x4e\xbc\x99\xe2" 4557 - "\xae\xff\x91\x3a\x44\xcf\x38\x32" 4558 - "\x1e\xad\xa7\xcd\xa1\x39\x95\xaa" 4559 - "\x10\xb1\xb3\x2e\x04\x31\x8f\x86" 4560 - "\xf2\x62\x74\x70\x0c\xa4\x46\x08" 4561 - "\xa8\xb7\x99\xa8\xe9\xd2\x73\x79" 4562 - "\x7e\x6e\xd4\x8f\x1e\xc7\x8e\x31" 4563 - "\x0b\xfa\x4b\xce\xfd\xf3\x57\x71" 4564 - "\xe9\x46\x03\xa5\x3d\x34\x00\xe2" 4565 - "\x18\xff\x75\x6d\x06\x2d\x00\xab" 4566 - "\xb9\x3e\x6c\x59\xc5\x84\x06\xb5" 4567 - "\x8b\xd0\x89\x9c\x4a\x79\x16\xc6" 4568 - "\x3d\x74\x54\xfa\x44\xcd\x23\x26" 4569 - "\x5c\xcf\x7e\x28\x92\x32\xbf\xdf" 4570 - "\xa7\x20\x3c\x74\x58\x2a\x9a\xde" 4571 - "\x61\x00\x1c\x4f\xff\x59\xc4\x22" 4572 - "\xac\x3c\xd0\xe8\x6c\xf9\x97\x1b" 4573 - "\x58\x9b\xad\x71\xe8\xa9\xb5\x0d" 4574 - "\xee\x2f\x04\x1f\x7f\xbc\x99\xee" 4575 - "\x84\xff\x42\x60\xdc\x3a\x18\xa5" 4576 - "\x81\xf9\xef\xdc\x7a\x0f\x65\x41" 4577 - "\x2f\xa3\xd3\xf9\xc2\xcb\xc0\x4d" 4578 - "\x8f\xd3\x76\x96\xad\x49\x6d\x38" 4579 - "\x3d\x39\x0b\x6c\x80\xb7\x54\x69" 4580 - "\xf0\x2c\x90\x02\x29\x0d\x1c\x12" 4581 - "\xad\x55\xc3\x8b\x68\xd9\xcc\xb3" 4582 - "\xb2\x64\x33\x90\x5e\xca\x4b\xe2" 4583 - "\xfb\x75\xdc\x63\xf7\x9f\x82\x74" 4584 - "\xf0\xc9\xaa\x7f\xe9\x2a\x9b\x33" 4585 - "\xbc\x88\x00\x7f\xca\xb2\x1f\x14" 4586 - "\xdb\xc5\x8e\x7b\x11\x3c\x3e\x08" 4587 - "\xf3\x83\xe8\xe0\x94\x86\x2e\x92" 4588 - "\x78\x6b\x01\xc9\xc7\x83\xba\x21" 4589 - "\x6a\x25\x15\x33\x4e\x45\x08\xec" 4590 - "\x35\xdb\xe0\x6e\x31\x51\x79\xa9" 4591 - "\x42\x44\x65\xc1\xa0\xf1\xf9\x2a" 4592 - "\x70\xd5\xb6\xc6\xc1\x8c\x39\xfc" 4593 - "\x25\xa6\x55\xd9\xdd\x2d\x4c\xec" 4594 - "\x49\xc6\xeb\x0e\xa8\x25\x2a\x16" 4595 - "\x1b\x66\x84\xda\xe2\x92\xe5\xc0" 4596 - "\xc8\x53\x07\xaf\x80\x84\xec\xfd" 4597 - "\xcd\xd1\x6e\xcd\x6f\x6a\xf5\x36" 4598 - "\xc5\x15\xe5\x25\x7d\x77\xd1\x1a" 4599 - "\x93\x36\xa9\xcf\x7c\xa4\x54\x4a" 4600 - "\x06\x51\x48\x4e\xf6\x59\x87\xd2" 4601 - "\x04\x02\xef\xd3\x44\xde\x76\x31" 4602 - "\xb3\x34\x17\x1b\x9d\x66\x11\x9f" 4603 - "\x1e\xcc\x17\xe9\xc7\x3c\x1b\xe7" 4604 - "\xcb\x50\x08\xfc\xdc\x2b\x24\xdb" 4605 - "\x65\x83\xd0\x3b\xe3\x30\xea\x94" 4606 - "\x6c\xe7\xe8\x35\x32\xc7\xdb\x64" 4607 - "\xb4\x01\xab\x36\x2c\x77\x13\xaf" 4608 - "\xf8\x2b\x88\x3f\x54\x39\xc4\x44" 4609 - "\xfe\xef\x6f\x68\x34\xbe\x0f\x05" 4610 - "\x16\x6d\xf6\x0a\x30\xe7\xe3\xed" 4611 - "\xc4\xde\x3c\x1b\x13\xd8\xdb\xfe" 4612 - "\x41\x62\xe5\x28\xd4\x8d\xa3\xc7" 4613 - "\x93\x97\xc6\x48\x45\x1d\x9f\x83" 4614 - "\xdf\x4b\x40\x3e\x42\x25\x87\x80" 4615 - "\x4c\x7d\xa8\xd4\x98\x23\x95\x75" 4616 - "\x41\x8c\xda\x41\x9b\xd4\xa7\x06" 4617 - "\xb5\xf1\x71\x09\x53\xbe\xca\xbf" 4618 - "\x32\x03\xed\xf0\x50\x1c\x56\x39" 4619 - "\x5b\xa4\x75\x18\xf7\x9b\x58\xef" 4620 - "\x53\xfc\x2a\x38\x23\x15\x75\xcd" 4621 - "\x45\xe5\x5a\x82\x55\xba\x21\xfa" 4622 - "\xd4\xbd\xc6\x94\x7c\xc5\x80\x12" 4623 - "\xf7\x4b\x32\xc4\x9a\x82\xd8\x28" 4624 - "\x8f\xd9\xc2\x0f\x60\x03\xbe\x5e" 4625 - "\x21\xd6\x5f\x58\xbf\x5c\xb1\x32" 4626 - "\x82\x8d\xa9\xe5\xf2\x66\x1a\xc0" 4627 - "\xa0\xbc\x58\x2f\x71\xf5\x2f\xed" 4628 - "\xd1\x26\xb9\xd8\x49\x5a\x07\x19" 4629 - "\x01\x7c\x59\xb0\xf8\xa4\xb7\xd3" 4630 - "\x7b\x1a\x8c\x38\xf4\x50\xa4\x59" 4631 - "\xb0\xcc\x41\x0b\x88\x7f\xe5\x31" 4632 - "\xb3\x42\xba\xa2\x7e\xd4\x32\x71" 4633 - "\x45\x87\x48\xa9\xc2\xf2\x89\xb3" 4634 - "\xe4\xa7\x7e\x52\x15\x61\xfa\xfe" 4635 - "\xc9\xdd\x81\xeb\x13\xab\xab\xc3" 4636 - "\x98\x59\xd8\x16\x3d\x14\x7a\x1c" 4637 - "\x3c\x41\x9a\x16\x16\x9b\xd2\xd2" 4638 - "\x69\x3a\x29\x23\xac\x86\x32\xa5" 4639 - "\x48\x9c\x9e\xf3\x47\x77\x81\x70" 4640 - "\x24\xe8\x85\xd2\xf5\xb5\xfa\xff" 4641 - "\x59\x6a\xd3\x50\x59\x43\x59\xde" 4642 - "\xd9\xf1\x55\xa5\x0c\xc3\x1a\x1a" 4643 - "\x18\x34\x0d\x1a\x63\x33\xed\x10" 4644 - "\xe0\x1d\x2a\x18\xd2\xc0\x54\xa8" 4645 - "\xca\xb5\x9a\xd3\xdd\xca\x45\x84" 4646 - "\x50\xe7\x0f\xfe\xa4\x99\x5a\xbe" 4647 - "\x43\x2d\x9a\xcb\x92\x3f\x5a\x1d" 4648 - "\x85\xd8\xc9\xdf\x68\xc9\x12\x80" 4649 - "\x56\x0c\xdc\x00\xdc\x3a\x7d\x9d" 4650 - "\xa3\xa2\xe8\x4d\xbf\xf9\x70\xa0" 4651 - "\xa4\x13\x4f\x6b\xaf\x0a\x89\x7f" 4652 - "\xda\xf0\xbf\x9b\xc8\x1d\xe5\xf8" 4653 - "\x2e\x8b\x07\xb5\x73\x1b\xcc\xa2" 4654 - "\xa6\xad\x30\xbc\x78\x3c\x5b\x10" 4655 - "\xfa\x5e\x62\x2d\x9e\x64\xb3\x33" 4656 - "\xce\xf9\x1f\x86\xe7\x8b\xa2\xb8" 4657 - "\xe8\x99\x57\x8c\x11\xed\x66\xd9" 4658 - "\x3c\x72\xb9\xc3\xe6\x4e\x17\x3a" 4659 - "\x6a\xcb\x42\x24\x06\xed\x3e\x4e" 4660 - "\xa3\xe8\x6a\x94\xda\x0d\x4e\xd5" 4661 - "\x14\x19\xcf\xb6\x26\xd8\x2e\xcc" 4662 - "\x64\x76\x38\x49\x4d\xfe\x30\x6d" 4663 - "\xe4\xc8\x8c\x7b\xc4\xe0\x35\xba" 4664 - "\x22\x6e\x76\xe1\x1a\xf2\x53\xc3" 4665 - "\x28\xa2\x82\x1f\x61\x69\xad\xc1" 4666 - "\x7b\x28\x4b\x1e\x6c\x85\x95\x9b" 4667 - "\x51\xb5\x17\x7f\x12\x69\x8c\x24" 4668 - "\xd5\xc7\x5a\x5a\x11\x54\xff\x5a" 4669 - "\xf7\x16\xc3\x91\xa6\xf0\xdc\x0a" 4670 - "\xb6\xa7\x4a\x0d\x7a\x58\xfe\xa5" 4671 - "\xf5\xcb\x8f\x7b\x0e\xea\x57\xe7" 4672 - "\xbd\x79\xd6\x1c\x88\x23\x6c\xf2" 4673 - "\x4d\x29\x77\x53\x35\x6a\x00\x8d" 4674 - "\xcd\xa3\x58\xbe\x77\x99\x18\xf8" 4675 - "\xe6\xe1\x8f\xe9\x37\x8f\xe3\xe2" 4676 - "\x5a\x8a\x93\x25\xaf\xf3\x78\x80" 4677 - "\xbe\xa6\x1b\xc6\xac\x8b\x1c\x91" 4678 - "\x58\xe1\x9f\x89\x35\x9d\x1d\x21" 4679 - "\x29\x9f\xf4\x99\x02\x27\x0f\xa8" 4680 - "\x4f\x79\x94\x2b\x33\x2c\xda\xa2" 4681 - "\x26\x39\x83\x94\xef\x27\xd8\x53" 4682 - "\x8f\x66\x0d\xe4\x41\x7d\x34\xcd" 4683 - "\x43\x7c\x95\x0a\x53\xef\x66\xda" 4684 - "\x7e\x9b\xf3\x93\xaf\xd0\x73\x71" 4685 - "\xba\x40\x9b\x74\xf8\xd7\xd7\x41" 4686 - "\x6d\xaf\x72\x9c\x8d\x21\x87\x3c" 4687 - "\xfd\x0a\x90\xa9\x47\x96\x9e\xd3" 4688 - "\x88\xee\x73\xcf\x66\x2f\x52\x56" 4689 - "\x6d\xa9\x80\x4c\xe2\x6f\x62\x88" 4690 - "\x3f\x0e\x54\x17\x48\x80\x5d\xd3" 4691 - "\xc3\xda\x25\x3d\xa1\xc8\xcb\x9f" 4692 - "\x9b\x70\xb3\xa1\xeb\x04\x52\xa1" 4693 - "\xf2\x22\x0f\xfc\xc8\x18\xfa\xf9" 4694 - "\x85\x9c\xf1\xac\xeb\x0c\x02\x46" 4695 - "\x75\xd2\xf5\x2c\xe3\xd2\x59\x94" 4696 - "\x12\xf3\x3c\xfc\xd7\x92\xfa\x36" 4697 - "\xba\x61\x34\x38\x7c\xda\x48\x3e" 4698 - "\x08\xc9\x39\x23\x5e\x02\x2c\x1a" 4699 - "\x18\x7e\xb4\xd9\xfd\x9e\x40\x02" 4700 - "\xb1\x33\x37\x32\xe7\xde\xd6\xd0" 4701 - "\x7c\x58\x65\x4b\xf8\x34\x27\x9c" 4702 - "\x44\xb4\xbd\xe9\xe9\x4c\x78\x7d" 4703 - "\x4b\x9f\xce\xb1\xcd\x47\xa5\x37" 4704 - "\xe5\x6d\xbd\xb9\x43\x94\x0a\xd4" 4705 - "\xd6\xf9\x04\x5f\xb5\x66\x6c\x1a" 4706 - "\x35\x12\xe3\x36\x28\x27\x36\x58" 4707 - "\x01\x2b\x79\xe4\xba\x6d\x10\x7d" 4708 - "\x65\xdf\x84\x95\xf4\xd5\xb6\x8f" 4709 - "\x2b\x9f\x96\x00\x86\x60\xf0\x21" 4710 - "\x76\xa8\x6a\x8c\x28\x1c\xb3\x6b" 4711 - "\x97\xd7\xb6\x53\x2a\xcc\xab\x40" 4712 - "\x9d\x62\x79\x58\x52\xe6\x65\xb7" 4713 - "\xab\x55\x67\x9c\x89\x7c\x03\xb0" 4714 - "\x73\x59\xc5\x81\xf5\x18\x17\x5c" 4715 - "\x89\xf3\x78\x35\x44\x62\x78\x72" 4716 - "\xd0\x96\xeb\x31\xe7\x87\x77\x14" 4717 - "\x99\x51\xf2\x59\x26\x9e\xb5\xa6" 4718 - "\x45\xfe\x6e\xbd\x07\x4c\x94\x5a" 4719 - "\xa5\x7d\xfc\xf1\x2b\x77\xe2\xfe" 4720 - "\x17\xd4\x84\xa0\xac\xb5\xc7\xda" 4721 - "\xa9\x1a\xb6\xf3\x74\x11\xb4\x9d" 4722 - "\xfb\x79\x2e\x04\x2d\x50\x28\x83" 4723 - "\xbf\xc6\x52\xd3\x34\xd6\xe8\x7a" 4724 - "\xb6\xea\xe7\xa8\x6c\x15\x1e\x2c" 4725 - "\x57\xbc\x48\x4e\x5f\x5c\xb6\x92" 4726 - "\xd2\x49\x77\x81\x6d\x90\x70\xae" 4727 - "\x98\xa1\x03\x0d\x6b\xb9\x77\x14" 4728 - "\xf1\x4e\x23\xd3\xf8\x68\xbd\xc2" 4729 - "\xfe\x04\xb7\x5c\xc5\x17\x60\x8f" 4730 - "\x65\x54\xa4\x7a\x42\xdc\x18\x0d" 4731 - "\xb5\xcf\x0f\xd3\xc7\x91\x66\x1b" 4732 - "\x45\x42\x27\x75\x50\xe5\xee\xb8" 4733 - "\x7f\x33\x2c\xba\x4a\x92\x4d\x2c" 4734 - "\x3c\xe3\x0d\x80\x01\xba\x0d\x29" 4735 - "\xd8\x3c\xe9\x13\x16\x57\xe6\xea" 4736 - "\x94\x52\xe7\x00\x4d\x30\xb0\x0f" 4737 - "\x35\xb8\xb8\xa7\xb1\xb5\x3b\x44" 4738 - "\xe1\x2f\xfd\x88\xed\x43\xe7\x52" 4739 - "\x10\x93\xb3\x8a\x30\x6b\x0a\xf7" 4740 - "\x23\xc6\x50\x9d\x4a\xb0\xde\xc3" 4741 - "\xdc\x9b\x2f\x01\x56\x36\x09\xc5" 4742 - "\x2f\x6b\xfe\xf1\xd8\x27\x45\x03" 4743 - "\x30\x5e\x5c\x5b\xb4\x62\x0e\x1a" 4744 - "\xa9\x21\x2b\x92\x94\x87\x62\x57" 4745 - "\x4c\x10\x74\x1a\xf1\x0a\xc5\x84" 4746 - "\x3b\x9e\x72\x02\xd7\xcc\x09\x56" 4747 - "\xbd\x54\xc1\xf0\xc3\xe3\xb3\xf8" 4748 - "\xd2\x0d\x61\xcb\xef\xce\x0d\x05" 4749 - "\xb0\x98\xd9\x8e\x4f\xf9\xbc\x93" 4750 - "\xa6\xea\xc8\xcf\x10\x53\x4b\xf1" 4751 - "\xec\xfc\x89\xf9\x64\xb0\x22\xbf" 4752 - "\x9e\x55\x46\x9f\x7c\x50\x8e\x84" 4753 - "\x54\x20\x98\xd7\x6c\x40\x1e\xdb" 4754 - "\x69\x34\x78\x61\x24\x21\x9c\x8a" 4755 - "\xb3\x62\x31\x8b\x6e\xf5\x2a\x35" 4756 - "\x86\x13\xb1\x6c\x64\x2e\x41\xa5" 4757 - "\x05\xf2\x42\xba\xd2\x3a\x0d\x8e" 4758 - "\x8a\x59\x94\x3c\xcf\x36\x27\x82" 4759 - "\xc2\x45\xee\x58\xcd\x88\xb4\xec" 4760 - "\xde\xb2\x96\x0a\xaf\x38\x6f\x88" 4761 - "\xd7\xd8\xe1\xdf\xb9\x96\xa9\x0a" 4762 - "\xb1\x95\x28\x86\x20\xe9\x17\x49" 4763 - "\xa2\x29\x38\xaa\xa5\xe9\x6e\xf1" 4764 - "\x19\x27\xc0\xd5\x2a\x22\xc3\x0b" 4765 - "\xdb\x7c\x73\x10\xb9\xba\x89\x76" 4766 - "\x54\xae\x7d\x71\xb3\x93\xf6\x32" 4767 - "\xe6\x47\x43\x55\xac\xa0\x0d\xc2" 4768 - "\x93\x27\x4a\x8e\x0e\x74\x15\xc7" 4769 - "\x0b\x85\xd9\x0c\xa9\x30\x7a\x3e" 4770 - "\xea\x8f\x85\x6d\x3a\x12\x4f\x72" 4771 - "\x69\x58\x7a\x80\xbb\xb5\x97\xf3" 4772 - "\xcf\x70\xd2\x5d\xdd\x4d\x21\x79" 4773 - "\x54\x4d\xe4\x05\xe8\xbd\xc2\x62" 4774 - "\xb1\x3b\x77\x1c\xd6\x5c\xf3\xa0" 4775 - "\x79\x00\xa8\x6c\x29\xd9\x18\x24" 4776 - "\x36\xa2\x46\xc0\x96\x65\x7f\xbd" 4777 - "\x2a\xed\x36\x16\x0c\xaa\x9f\xf4" 4778 - "\xc5\xb4\xe2\x12\xed\x69\xed\x4f" 4779 - "\x26\x2c\x39\x52\x89\x98\xe7\x2c" 4780 - "\x99\xa4\x9e\xa3\x9b\x99\x46\x7a" 4781 - "\x3a\xdc\xa8\x59\xa3\xdb\xc3\x3b" 4782 - "\x95\x0d\x3b\x09\x6e\xee\x83\x5d" 4783 - "\x32\x4d\xed\xab\xfa\x98\x14\x4e" 4784 - "\xc3\x15\x45\x53\x61\xc4\x93\xbd" 4785 - "\x90\xf4\x99\x95\x4c\xe6\x76\x92" 4786 - "\x29\x90\x46\x30\x92\x69\x7d\x13" 4787 - "\xf2\xa5\xcd\x69\x49\x44\xb2\x0f" 4788 - "\x63\x40\x36\x5f\x09\xe2\x78\xf8" 4789 - "\x91\xe3\xe2\xfa\x10\xf7\xc8\x24" 4790 - "\xa8\x89\x32\x5c\x37\x25\x1d\xb2" 4791 - "\xea\x17\x8a\x0a\xa9\x64\xc3\x7c" 4792 - "\x3c\x7c\xbd\xc6\x79\x34\xe7\xe2" 4793 - "\x85\x8e\xbf\xf8\xde\x92\xa0\xae" 4794 - "\x20\xc4\xf6\xbb\x1f\x38\x19\x0e" 4795 - "\xe8\x79\x9c\xa1\x23\xe9\x54\x7e" 4796 - "\x37\x2f\xe2\x94\x32\xaf\xa0\x23" 4797 - "\x49\xe4\xc0\xb3\xac\x00\x8f\x36" 4798 - "\x05\xc4\xa6\x96\xec\x05\x98\x4f" 4799 - "\x96\x67\x57\x1f\x20\x86\x1b\x2d" 4800 - "\x69\xe4\x29\x93\x66\x5f\xaf\x6b" 4801 - "\x88\x26\x2c\x67\x02\x4b\x52\xd0" 4802 - "\x83\x7a\x43\x1f\xc0\x71\x15\x25" 4803 - "\x77\x65\x08\x60\x11\x76\x4c\x8d" 4804 - "\xed\xa9\x27\xc6\xb1\x2a\x2c\x6a" 4805 - "\x4a\x97\xf5\xc6\xb7\x70\x42\xd3" 4806 - "\x03\xd1\x24\x95\xec\x6d\xab\x38" 4807 - "\x72\xce\xe2\x8b\x33\xd7\x51\x09" 4808 - "\xdc\x45\xe0\x09\x96\x32\xf3\xc4" 4809 - "\x84\xdc\x73\x73\x2d\x1b\x11\x98" 4810 - "\xc5\x0e\x69\x28\x94\xc7\xb5\x4d" 4811 - "\xc8\x8a\xd0\xaa\x13\x2e\x18\x74" 4812 - "\xdd\xd1\x1e\xf3\x90\xe8\xfc\x9a" 4813 - "\x72\x4a\x0e\xd1\xe4\xfb\x0d\x96" 4814 - "\xd1\x0c\x79\x85\x1b\x1c\xfe\xe1" 4815 - "\x62\x8f\x7a\x73\x32\xab\xc8\x18" 4816 - "\x69\xe3\x34\x30\xdf\x13\xa6\xe5" 4817 - "\xe8\x0e\x67\x7f\x81\x11\xb4\x60" 4818 - "\xc7\xbd\x79\x65\x50\xdc\xc4\x5b" 4819 - "\xde\x39\xa4\x01\x72\x63\xf3\xd1" 4820 - "\x64\x4e\xdf\xfc\x27\x92\x37\x0d" 4821 - "\x57\xcd\x11\x4f\x11\x04\x8e\x1d" 4822 - "\x16\xf7\xcd\x92\x9a\x99\x30\x14" 4823 - "\xf1\x7c\x67\x1b\x1f\x41\x0b\xe8" 4824 - "\x32\xe8\xb8\xc1\x4f\x54\x86\x4f" 4825 - "\xe5\x79\x81\x73\xcd\x43\x59\x68" 4826 - "\x73\x02\x3b\x78\x21\x72\x43\x00" 4827 - "\x49\x17\xf7\x00\xaf\x68\x24\x53" 4828 - "\x05\x0a\xc3\x33\xe0\x33\x3f\x69" 4829 - "\xd2\x84\x2f\x0b\xed\xde\x04\xf4" 4830 - "\x11\x94\x13\x69\x51\x09\x28\xde" 4831 - "\x57\x5c\xef\xdc\x9a\x49\x1c\x17" 4832 - "\x97\xf3\x96\xc1\x7f\x5d\x2e\x7d" 4833 - "\x55\xb8\xb3\x02\x09\xb3\x1f\xe7" 4834 - "\xc9\x8d\xa3\x36\x34\x8a\x77\x13" 4835 - "\x30\x63\x4c\xa5\xcd\xc3\xe0\x7e" 4836 - "\x05\xa1\x7b\x0c\xcb\x74\x47\x31" 4837 - "\x62\x03\x43\xf1\x87\xb4\xb0\x85" 4838 - "\x87\x8e\x4b\x25\xc7\xcf\xae\x4b" 4839 - "\x36\x46\x3e\x62\xbc\x6f\xeb\x5f" 4840 - "\x73\xac\xe6\x07\xee\xc1\xa1\xd6" 4841 - "\xc4\xab\xc9\xd6\x89\x45\xe1\xf1" 4842 - "\x04\x4e\x1a\x6f\xbb\x4f\x3a\xa3" 4843 - "\xa0\xcb\xa3\x0a\xd8\x71\x35\x55" 4844 - "\xe4\xbc\x2e\x04\x06\xe6\xff\x5b" 4845 - "\x1c\xc0\x11\x7c\xc5\x17\xf3\x38" 4846 - "\xcf\xe9\xba\x0f\x0e\xef\x02\xc2" 4847 - "\x8d\xc6\xbc\x4b\x67\x20\x95\xd7" 4848 - "\x2c\x45\x5b\x86\x44\x8c\x6f\x2e" 4849 - "\x7e\x9f\x1c\x77\xba\x6b\x0e\xa3" 4850 - "\x69\xdc\xab\x24\x57\x60\x47\xc1" 4851 - "\xd1\xa5\x9d\x23\xe6\xb1\x37\xfe" 4852 - "\x93\xd2\x4c\x46\xf9\x0c\xc6\xfb" 4853 - "\xd6\x9d\x99\x69\xab\x7a\x07\x0c" 4854 - "\x65\xe7\xc4\x08\x96\xe2\xa5\x01" 4855 - "\x3f\x46\x07\x05\x7e\xe8\x9a\x90" 4856 - "\x50\xdc\xe9\x7a\xea\xa1\x39\x6e" 4857 - "\x66\xe4\x6f\xa5\x5f\xb2\xd9\x5b" 4858 - "\xf5\xdb\x2a\x32\xf0\x11\x6f\x7c" 4859 - "\x26\x10\x8f\x3d\x80\xe9\x58\xf7" 4860 - "\xe0\xa8\x57\xf8\xdb\x0e\xce\x99" 4861 - "\x63\x19\x3d\xd5\xec\x1b\x77\x69" 4862 - "\x98\xf6\xe4\x5f\x67\x17\x4b\x09" 4863 - "\x85\x62\x82\x70\x18\xe2\x9a\x78" 4864 - "\xe2\x62\xbd\xb4\xf1\x42\xc6\xfb" 4865 - "\x08\xd0\xbd\xeb\x4e\x09\xf2\xc8" 4866 - "\x1e\xdc\x3d\x32\x21\x56\x9c\x4f" 4867 - "\x35\xf3\x61\x06\x72\x84\xc4\x32" 4868 - "\xf2\xf1\xfa\x0b\x2f\xc3\xdb\x02" 4869 - "\x04\xc2\xde\x57\x64\x60\x8d\xcf" 4870 - "\xcb\x86\x5d\x97\x3e\xb1\x9c\x01" 4871 - "\xd6\x28\x8f\x99\xbc\x46\xeb\x05" 4872 - "\xaf\x7e\xb8\x21\x2a\x56\x85\x1c" 4873 - "\xb3\x71\xa0\xde\xca\x96\xf1\x78" 4874 - "\x49\xa2\x99\x81\x80\x5c\x01\xf5" 4875 - "\xa0\xa2\x56\x63\xe2\x70\x07\xa5" 4876 - "\x95\xd6\x85\xeb\x36\x9e\xa9\x51" 4877 - "\x66\x56\x5f\x1d\x02\x19\xe2\xf6" 4878 - "\x4f\x73\x38\x09\x75\x64\x48\xe0" 4879 - "\xf1\x7e\x0e\xe8\x9d\xf9\xed\x94" 4880 - "\xfe\x16\x26\x62\x49\x74\xf4\xb0" 4881 - "\xd4\xa9\x6c\xb0\xfd\x53\xe9\x81" 4882 - "\xe0\x7a\xbf\xcf\xb5\xc4\x01\x81" 4883 - "\x79\x99\x77\x01\x3b\xe9\xa2\xb6" 4884 - "\xe6\x6a\x8a\x9e\x56\x1c\x8d\x1e" 4885 - "\x8f\x06\x55\x2c\x6c\xdc\x92\x87" 4886 - "\x64\x3b\x4b\x19\xa1\x13\x64\x1d" 4887 - "\x4a\xe9\xc0\x00\xb8\x95\xef\x6b" 4888 - "\x1a\x86\x6d\x37\x52\x02\xc2\xe0" 4889 - "\xc8\xbb\x42\x0c\x02\x21\x4a\xc9" 4890 - "\xef\xa0\x54\xe4\x5e\x16\x53\x81" 4891 - "\x70\x62\x10\xaf\xde\xb8\xb5\xd3" 4892 - "\xe8\x5e\x6c\xc3\x8a\x3e\x18\x07" 4893 - "\xf2\x2f\x7d\xa7\xe1\x3d\x4e\xb4" 4894 - "\x26\xa7\xa3\x93\x86\xb2\x04\x1e" 4895 - "\x53\x5d\x86\xd6\xde\x65\xca\xe3" 4896 - "\x4e\xc1\xcf\xef\xc8\x70\x1b\x83" 4897 - "\x13\xdd\x18\x8b\x0d\x76\xd2\xf6" 4898 - "\x37\x7a\x93\x7a\x50\x11\x9f\x96" 4899 - "\x86\x25\xfd\xac\xdc\xbe\x18\x93" 4900 - "\x19\x6b\xec\x58\x4f\xb9\x75\xa7" 4901 - "\xdd\x3f\x2f\xec\xc8\x5a\x84\xab" 4902 - "\xd5\xe4\x8a\x07\xf6\x4d\x23\xd6" 4903 - "\x03\xfb\x03\x6a\xea\x66\xbf\xd4" 4904 - "\xb1\x34\xfb\x78\xe9\x55\xdc\x7c" 4905 - "\x3d\x9c\xe5\x9a\xac\xc3\x7a\x80" 4906 - "\x24\x6d\xa0\xef\x25\x7c\xb7\xea" 4907 - "\xce\x4d\x5f\x18\x60\xce\x87\x22" 4908 - "\x66\x2f\xd5\xdd\xdd\x02\x21\x75" 4909 - "\x82\xa0\x1f\x58\xc6\xd3\x62\xf7" 4910 - "\x32\xd8\xaf\x1e\x07\x77\x51\x96" 4911 - "\xd5\x6b\x1e\x7e\x80\x02\xe8\x67" 4912 - "\xea\x17\x0b\x10\xd2\x3f\x28\x25" 4913 - "\x4f\x05\x77\x02\x14\x69\xf0\x2c" 4914 - "\xbe\x0c\xf1\x74\x30\xd1\xb9\x9b" 4915 - "\xfc\x8c\xbb\x04\x16\xd9\xba\xc3" 4916 - "\xbc\x91\x8a\xc4\x30\xa4\xb0\x12" 4917 - "\x4c\x21\x87\xcb\xc9\x1d\x16\x96" 4918 - "\x07\x6f\x23\x54\xb9\x6f\x79\xe5" 4919 - "\x64\xc0\x64\xda\xb1\xae\xdd\x60" 4920 - "\x6c\x1a\x9d\xd3\x04\x8e\x45\xb0" 4921 - "\x92\x61\xd0\x48\x81\xed\x5e\x1d" 4922 - "\xa0\xc9\xa4\x33\xc7\x13\x51\x5d" 4923 - "\x7f\x83\x73\xb6\x70\x18\x65\x3e" 4924 - "\x2f\x0e\x7a\x12\x39\x98\xab\xd8" 4925 - "\x7e\x6f\xa3\xd1\xba\x56\xad\xbd" 4926 - "\xf0\x03\x01\x1c\x85\x35\x9f\xeb" 4927 - "\x19\x63\xa1\xaf\xfe\x2d\x35\x50" 4928 - "\x39\xa0\x65\x7c\x95\x7e\x6b\xfe" 4929 - "\xc1\xac\x07\x7c\x98\x4f\xbe\x57" 4930 - "\xa7\x22\xec\xe2\x7e\x29\x09\x53" 4931 - "\xe8\xbf\xb4\x7e\x3f\x8f\xfc\x14" 4932 - "\xce\x54\xf9\x18\x58\xb5\xff\x44" 4933 - "\x05\x9d\xce\x1b\xb6\x82\x23\xc8" 4934 - "\x2e\xbc\x69\xbb\x4a\x29\x0f\x65" 4935 - "\x94\xf0\x63\x06\x0e\xef\x8c\xbd" 4936 - "\xff\xfd\xb0\x21\x6e\x57\x05\x75" 4937 - "\xda\xd5\xc4\xeb\x8d\x32\xf7\x50" 4938 - "\xd3\x6f\x22\xed\x5f\x8e\xa2\x5b" 4939 - "\x80\x8c\xc8\x78\x40\x24\x4b\x89" 4940 - "\x30\xce\x7a\x97\x0e\xc4\xaf\xef" 4941 - "\x9b\xb4\xcd\x66\x74\x14\x04\x2b" 4942 - "\xf7\xce\x0b\x1c\x6e\xc2\x78\x8c" 4943 - "\xca\xc5\xd0\x1c\x95\x4a\x91\x2d" 4944 - "\xa7\x20\xeb\x86\x52\xb7\x67\xd8" 4945 - "\x0c\xd6\x04\x14\xde\x51\x74\x75" 4946 - "\xe7\x11\xb4\x87\xa3\x3d\x2d\xad" 4947 - "\x4f\xef\xa0\x0f\x70\x00\x6d\x13" 4948 - "\x19\x1d\x41\x50\xe9\xd8\xf0\x32" 4949 - "\x71\xbc\xd3\x11\xf2\xac\xbe\xaf" 4950 - "\x75\x46\x65\x4e\x07\x34\x37\xa3" 4951 - "\x89\xfe\x75\xd4\x70\x4c\xc6\x3f" 4952 - "\x69\x24\x0e\x38\x67\x43\x8c\xde" 4953 - "\x06\xb5\xb8\xe7\xc4\xf0\x41\x8f" 4954 - "\xf0\xbd\x2f\x0b\xb9\x18\xf8\xde" 4955 - "\x64\xb1\xdb\xee\x00\x50\x77\xe1" 4956 - "\xc7\xff\xa6\xfa\xdd\x70\xf4\xe3" 4957 - "\x93\xe9\x77\x35\x3d\x4b\x2f\x2b" 4958 - "\x6d\x55\xf0\xfc\x88\x54\x4e\x89" 4959 - "\xc1\x8a\x23\x31\x2d\x14\x2a\xb8" 4960 - "\x1b\x15\xdd\x9e\x6e\x7b\xda\x05" 4961 - "\x91\x7d\x62\x64\x96\x72\xde\xfc" 4962 - "\xc1\xec\xf0\x23\x51\x6f\xdb\x5b" 4963 - "\x1d\x08\x57\xce\x09\xb8\xf6\xcd" 4964 - "\x8d\x95\xf2\x20\xbf\x0f\x20\x57" 4965 - "\x98\x81\x84\x4f\x15\x5c\x76\xe7" 4966 - "\x3e\x0a\x3a\x6c\xc4\x8a\xbe\x78" 4967 - "\x74\x77\xc3\x09\x4b\x5d\x48\xe4" 4968 - "\xc8\xcb\x0b\xea\x17\x28\xcf\xcf" 4969 - "\x31\x32\x44\xa4\xe5\x0e\x1a\x98" 4970 - "\x94\xc4\xf0\xff\xae\x3e\x44\xe8" 4971 - "\xa5\xb3\xb5\x37\x2f\xe8\xaf\x6f" 4972 - "\x28\xc1\x37\x5f\x31\xd2\xb9\x33" 4973 - "\xb1\xb2\x52\x94\x75\x2c\x29\x59" 4974 - "\x06\xc2\x25\xe8\x71\x65\x4e\xed" 4975 - "\xc0\x9c\xb1\xbb\x25\xdc\x6c\xe7" 4976 - "\x4b\xa5\x7a\x54\x7a\x60\xff\x7a" 4977 - "\xe0\x50\x40\x96\x35\x63\xe4\x0b" 4978 - "\x76\xbd\xa4\x65\x00\x1b\x57\x88" 4979 - "\xae\xed\x39\x88\x42\x11\x3c\xed" 4980 - "\x85\x67\x7d\xb9\x68\x82\xe9\x43" 4981 - "\x3c\x47\x53\xfa\xe8\xf8\x9f\x1f" 4982 - "\x9f\xef\x0f\xf7\x30\xd9\x30\x0e" 4983 - "\xb9\x9f\x69\x18\x2f\x7e\xf8\xf8" 4984 - "\xf8\x8c\x0f\xd4\x02\x4d\xea\xcd" 4985 - "\x0a\x9c\x6f\x71\x6d\x5a\x4c\x60" 4986 - "\xce\x20\x56\x32\xc6\xc5\x99\x1f" 4987 - "\x09\xe6\x4e\x18\x1a\x15\x13\xa8" 4988 - "\x7d\xb1\x6b\xc0\xb2\x6d\xf8\x26" 4989 - "\x66\xf8\x3d\x18\x74\x70\x66\x7a" 4990 - "\x34\x17\xde\xba\x47\xf1\x06\x18" 4991 - "\xcb\xaf\xeb\x4a\x1e\x8f\xa7\x77" 4992 - "\xe0\x3b\x78\x62\x66\xc9\x10\xea" 4993 - "\x1f\xb7\x29\x0a\x45\xa1\x1d\x1e" 4994 - "\x1d\xe2\x65\x61\x50\x9c\xd7\x05" 4995 - "\xf2\x0b\x5b\x12\x61\x02\xc8\xe5" 4996 - "\x63\x4f\x20\x0c\x07\x17\x33\x5e" 4997 - "\x03\x9a\x53\x0f\x2e\x55\xfe\x50" 4998 - "\x43\x7d\xd0\xb6\x7e\x5a\xda\xae" 4999 - "\x58\xef\x15\xa9\x83\xd9\x46\xb1" 5000 - "\x42\xaa\xf5\x02\x6c\xce\x92\x06" 5001 - "\x1b\xdb\x66\x45\x91\x79\xc2\x2d" 5002 - "\xe6\x53\xd3\x14\xfd\xbb\x44\x63" 5003 - "\xc6\xd7\x3d\x7a\x0c\x75\x78\x9d" 5004 - "\x5c\xa6\x39\xb3\xe5\x63\xca\x8b" 5005 - "\xfe\xd3\xef\x60\x83\xf6\x8e\x70" 5006 - "\xb6\x67\xc7\x77\xed\x23\xef\x4c" 5007 - "\xf0\xed\x2d\x07\x59\x6f\xc1\x01" 5008 - "\x34\x37\x08\xab\xd9\x1f\x09\xb1" 5009 - "\xce\x5b\x17\xff\x74\xf8\x9c\xd5" 5010 - "\x2c\x56\x39\x79\x0f\x69\x44\x75" 5011 - "\x58\x27\x01\xc4\xbf\xa7\xa1\x1d" 5012 - "\x90\x17\x77\x86\x5a\x3f\xd9\xd1" 5013 - "\x0e\xa0\x10\xf8\xec\x1e\xa5\x7f" 5014 - "\x5e\x36\xd1\xe3\x04\x2c\x70\xf7" 5015 - "\x8e\xc0\x98\x2f\x6c\x94\x2b\x41" 5016 - "\xb7\x60\x00\xb7\x2e\xb8\x02\x8d" 5017 - "\xb8\xb0\xd3\x86\xba\x1d\xd7\x90" 5018 - "\xd6\xb6\xe1\xfc\xd7\xd8\x28\x06" 5019 - "\x63\x9b\xce\x61\x24\x79\xc0\x70" 5020 - "\x52\xd0\xb6\xd4\x28\x95\x24\x87" 5021 - "\x03\x1f\xb7\x9a\xda\xa3\xfb\x52" 5022 - "\x5b\x68\xe7\x4c\x8c\x24\xe1\x42" 5023 - "\xf7\xd5\xfd\xad\x06\x32\x9f\xba" 5024 - "\xc1\xfc\xdd\xc6\xfc\xfc\xb3\x38" 5025 - "\x74\x56\x58\x40\x02\x37\x52\x2c" 5026 - "\x55\xcc\xb3\x9e\x7a\xe9\xd4\x38" 5027 - "\x41\x5e\x0c\x35\xe2\x11\xd1\x13" 5028 - "\xf8\xb7\x8d\x72\x6b\x22\x2a\xb0" 5029 - "\xdb\x08\xba\x35\xb9\x3f\xc8\xd3" 5030 - "\x24\x90\xec\x58\xd2\x09\xc7\x2d" 5031 - "\xed\x38\x80\x36\x72\x43\x27\x49" 5032 - "\x4a\x80\x8a\xa2\xe8\xd3\xda\x30" 5033 - "\x7d\xb6\x82\x37\x86\x92\x86\x3e" 5034 - "\x08\xb2\x28\x5a\x55\x44\x24\x7d" 5035 - "\x40\x48\x8a\xb6\x89\x58\x08\xa0" 5036 - "\xd6\x6d\x3a\x17\xbf\xf6\x54\xa2" 5037 - "\xf5\xd3\x8c\x0f\x78\x12\x57\x8b" 5038 - "\xd5\xc2\xfd\x58\x5b\x7f\x38\xe3" 5039 - "\xcc\xb7\x7c\x48\xb3\x20\xe8\x81" 5040 - "\x14\x32\x45\x05\xe0\xdb\x9f\x75" 5041 - "\x85\xb4\x6a\xfc\x95\xe3\x54\x22" 5042 - "\x12\xee\x30\xfe\xd8\x30\xef\x34" 5043 - "\x50\xab\x46\x30\x98\x2f\xb7\xc0" 5044 - "\x15\xa2\x83\xb6\xf2\x06\x21\xa2" 5045 - "\xc3\x26\x37\x14\xd1\x4d\xb5\x10" 5046 - "\x52\x76\x4d\x6a\xee\xb5\x2b\x15" 5047 - "\xb7\xf9\x51\xe8\x2a\xaf\xc7\xfa" 5048 - "\x77\xaf\xb0\x05\x4d\xd1\x68\x8e" 5049 - "\x74\x05\x9f\x9d\x93\xa5\x3e\x7f" 5050 - "\x4e\x5f\x9d\xcb\x09\xc7\x83\xe3" 5051 - "\x02\x9d\x27\x1f\xef\x85\x05\x8d" 5052 - "\xec\x55\x88\x0f\x0d\x7c\x4c\xe8" 5053 - "\xa1\x75\xa0\xd8\x06\x47\x14\xef" 5054 - "\xaa\x61\xcf\x26\x15\xad\xd8\xa3" 5055 - "\xaa\x75\xf2\x78\x4a\x5a\x61\xdf" 5056 - "\x8b\xc7\x04\xbc\xb2\x32\xd2\x7e" 5057 - "\x42\xee\xb4\x2f\x51\xff\x7b\x2e" 5058 - "\xd3\x02\xe8\xdc\x5d\x0d\x50\xdc" 5059 - "\xae\xb7\x46\xf9\xa8\xe6\xd0\x16" 5060 - "\xcc\xe6\x2c\x81\xc7\xad\xe9\xf0" 5061 - "\x05\x72\x6d\x3d\x0a\x7a\xa9\x02" 5062 - "\xac\x82\x93\x6e\xb6\x1c\x28\xfc" 5063 - "\x44\x12\xfb\x73\x77\xd4\x13\x39" 5064 - "\x29\x88\x8a\xf3\x5c\xa6\x36\xa0" 5065 - "\x2a\xed\x7e\xb1\x1d\xd6\x4c\x6b" 5066 - "\x41\x01\x18\x5d\x5d\x07\x97\xa6" 5067 - "\x4b\xef\x31\x18\xea\xac\xb1\x84" 5068 - "\x21\xed\xda\x86", 5069 - .rlen = 4100, 5070 - .np = 2, 5071 - .tap = { 4064, 36 }, 5072 - }, 5073 - }; 5074 - 5075 - static struct cipher_testvec aes_ctr_dec_tv_template[] = { 5076 - { /* From RFC 3686 */ 5077 - .key = "\xae\x68\x52\xf8\x12\x10\x67\xcc" 5078 - "\x4b\xf7\xa5\x76\x55\x77\xf3\x9e" 5079 - "\x00\x00\x00\x30", 5080 - .klen = 20, 5081 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00", 5082 - .input = "\xe4\x09\x5d\x4f\xb7\xa7\xb3\x79" 5083 - "\x2d\x61\x75\xa3\x26\x13\x11\xb8", 5084 - .ilen = 16, 5085 - .result = "Single block msg", 5086 - .rlen = 16, 5087 - }, { 5088 - .key = "\x7e\x24\x06\x78\x17\xfa\xe0\xd7" 5089 - "\x43\xd6\xce\x1f\x32\x53\x91\x63" 5090 - "\x00\x6c\xb6\xdb", 5091 - .klen = 20, 5092 - .iv = "\xc0\x54\x3b\x59\xda\x48\xd9\x0b", 5093 - .input = "\x51\x04\xa1\x06\x16\x8a\x72\xd9" 5094 - "\x79\x0d\x41\xee\x8e\xda\xd3\x88" 5095 - "\xeb\x2e\x1e\xfc\x46\xda\x57\xc8" 5096 - "\xfc\xe6\x30\xdf\x91\x41\xbe\x28", 5097 - .ilen = 32, 5098 - .result = "\x00\x01\x02\x03\x04\x05\x06\x07" 5099 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 5100 - "\x10\x11\x12\x13\x14\x15\x16\x17" 5101 - "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 5102 - .rlen = 32, 5103 - }, { 5104 - .key = "\x16\xaf\x5b\x14\x5f\xc9\xf5\x79" 5105 - "\xc1\x75\xf9\x3e\x3b\xfb\x0e\xed" 5106 - "\x86\x3d\x06\xcc\xfd\xb7\x85\x15" 5107 - "\x00\x00\x00\x48", 5108 - .klen = 28, 5109 - .iv = "\x36\x73\x3c\x14\x7d\x6d\x93\xcb", 5110 - .input = "\x4b\x55\x38\x4f\xe2\x59\xc9\xc8" 5111 - "\x4e\x79\x35\xa0\x03\xcb\xe9\x28", 5112 - .ilen = 16, 5113 - .result = "Single block msg", 5114 - .rlen = 16, 5115 - }, { 5116 - .key = "\x7c\x5c\xb2\x40\x1b\x3d\xc3\x3c" 5117 - "\x19\xe7\x34\x08\x19\xe0\xf6\x9c" 5118 - "\x67\x8c\x3d\xb8\xe6\xf6\xa9\x1a" 5119 - "\x00\x96\xb0\x3b", 5120 - .klen = 28, 5121 - .iv = "\x02\x0c\x6e\xad\xc2\xcb\x50\x0d", 5122 - .input = "\x45\x32\x43\xfc\x60\x9b\x23\x32" 5123 - "\x7e\xdf\xaa\xfa\x71\x31\xcd\x9f" 5124 - "\x84\x90\x70\x1c\x5a\xd4\xa7\x9c" 5125 - "\xfc\x1f\xe0\xff\x42\xf4\xfb\x00", 5126 - .ilen = 32, 5127 - .result = "\x00\x01\x02\x03\x04\x05\x06\x07" 5128 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 5129 - "\x10\x11\x12\x13\x14\x15\x16\x17" 5130 - "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 5131 - .rlen = 32, 5132 - }, { 5133 - .key = "\x77\x6b\xef\xf2\x85\x1d\xb0\x6f" 5134 - "\x4c\x8a\x05\x42\xc8\x69\x6f\x6c" 5135 - "\x6a\x81\xaf\x1e\xec\x96\xb4\xd3" 5136 - "\x7f\xc1\xd6\x89\xe6\xc1\xc1\x04" 5137 - "\x00\x00\x00\x60", 5138 - .klen = 36, 5139 - .iv = "\xdb\x56\x72\xc9\x7a\xa8\xf0\xb2", 5140 - .input = "\x14\x5a\xd0\x1d\xbf\x82\x4e\xc7" 5141 - "\x56\x08\x63\xdc\x71\xe3\xe0\xc0", 5142 - .ilen = 16, 5143 - .result = "Single block msg", 5144 - .rlen = 16, 5145 - }, { 5146 - .key = "\xf6\xd6\x6d\x6b\xd5\x2d\x59\xbb" 5147 - "\x07\x96\x36\x58\x79\xef\xf8\x86" 5148 - "\xc6\x6d\xd5\x1a\x5b\x6a\x99\x74" 5149 - "\x4b\x50\x59\x0c\x87\xa2\x38\x84" 5150 - "\x00\xfa\xac\x24", 5151 - .klen = 36, 5152 - .iv = "\xc1\x58\x5e\xf1\x5a\x43\xd8\x75", 5153 - .input = "\xf0\x5e\x23\x1b\x38\x94\x61\x2c" 5154 - "\x49\xee\x00\x0b\x80\x4e\xb2\xa9" 5155 - "\xb8\x30\x6b\x50\x8f\x83\x9d\x6a" 5156 - "\x55\x30\x83\x1d\x93\x44\xaf\x1c", 5157 - .ilen = 32, 5158 - .result = "\x00\x01\x02\x03\x04\x05\x06\x07" 5159 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 5160 - "\x10\x11\x12\x13\x14\x15\x16\x17" 5161 - "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 5162 - .rlen = 32, 5163 - }, 5164 - }; 5165 - 5166 - static struct aead_testvec aes_gcm_enc_tv_template[] = { 5167 - { /* From McGrew & Viega - http://citeseer.ist.psu.edu/656989.html */ 5168 - .key = zeroed_string, 5169 - .klen = 16, 5170 - .result = "\x58\xe2\xfc\xce\xfa\x7e\x30\x61" 5171 - "\x36\x7f\x1d\x57\xa4\xe7\x45\x5a", 5172 - .rlen = 16, 5173 - }, { 5174 - .key = zeroed_string, 5175 - .klen = 16, 5176 - .input = zeroed_string, 5177 - .ilen = 16, 5178 - .result = "\x03\x88\xda\xce\x60\xb6\xa3\x92" 5179 - "\xf3\x28\xc2\xb9\x71\xb2\xfe\x78" 5180 - "\xab\x6e\x47\xd4\x2c\xec\x13\xbd" 5181 - "\xf5\x3a\x67\xb2\x12\x57\xbd\xdf", 5182 - .rlen = 32, 5183 - }, { 5184 - .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 5185 - "\x6d\x6a\x8f\x94\x67\x30\x83\x08", 5186 - .klen = 16, 5187 - .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad" 5188 - "\xde\xca\xf8\x88", 5189 - .input = "\xd9\x31\x32\x25\xf8\x84\x06\xe5" 5190 - "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a" 5191 - "\x86\xa7\xa9\x53\x15\x34\xf7\xda" 5192 - "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72" 5193 - "\x1c\x3c\x0c\x95\x95\x68\x09\x53" 5194 - "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25" 5195 - "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57" 5196 - "\xba\x63\x7b\x39\x1a\xaf\xd2\x55", 5197 - .ilen = 64, 5198 - .result = "\x42\x83\x1e\xc2\x21\x77\x74\x24" 5199 - "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c" 5200 - "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0" 5201 - "\x35\xc1\x7e\x23\x29\xac\xa1\x2e" 5202 - "\x21\xd5\x14\xb2\x54\x66\x93\x1c" 5203 - "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05" 5204 - "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97" 5205 - "\x3d\x58\xe0\x91\x47\x3f\x59\x85" 5206 - "\x4d\x5c\x2a\xf3\x27\xcd\x64\xa6" 5207 - "\x2c\xf3\x5a\xbd\x2b\xa6\xfa\xb4", 5208 - .rlen = 80, 5209 - }, { 5210 - .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 5211 - "\x6d\x6a\x8f\x94\x67\x30\x83\x08", 5212 - .klen = 16, 5213 - .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad" 5214 - "\xde\xca\xf8\x88", 5215 - .input = "\xd9\x31\x32\x25\xf8\x84\x06\xe5" 5216 - "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a" 5217 - "\x86\xa7\xa9\x53\x15\x34\xf7\xda" 5218 - "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72" 5219 - "\x1c\x3c\x0c\x95\x95\x68\x09\x53" 5220 - "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25" 5221 - "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57" 5222 - "\xba\x63\x7b\x39", 5223 - .ilen = 60, 5224 - .assoc = "\xfe\xed\xfa\xce\xde\xad\xbe\xef" 5225 - "\xfe\xed\xfa\xce\xde\xad\xbe\xef" 5226 - "\xab\xad\xda\xd2", 5227 - .alen = 20, 5228 - .result = "\x42\x83\x1e\xc2\x21\x77\x74\x24" 5229 - "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c" 5230 - "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0" 5231 - "\x35\xc1\x7e\x23\x29\xac\xa1\x2e" 5232 - "\x21\xd5\x14\xb2\x54\x66\x93\x1c" 5233 - "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05" 5234 - "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97" 5235 - "\x3d\x58\xe0\x91" 5236 - "\x5b\xc9\x4f\xbc\x32\x21\xa5\xdb" 5237 - "\x94\xfa\xe9\x5a\xe7\x12\x1a\x47", 5238 - .rlen = 76, 5239 - }, { 5240 - .key = zeroed_string, 5241 - .klen = 24, 5242 - .result = "\xcd\x33\xb2\x8a\xc7\x73\xf7\x4b" 5243 - "\xa0\x0e\xd1\xf3\x12\x57\x24\x35", 5244 - .rlen = 16, 5245 - }, { 5246 - .key = zeroed_string, 5247 - .klen = 24, 5248 - .input = zeroed_string, 5249 - .ilen = 16, 5250 - .result = "\x98\xe7\x24\x7c\x07\xf0\xfe\x41" 5251 - "\x1c\x26\x7e\x43\x84\xb0\xf6\x00" 5252 - "\x2f\xf5\x8d\x80\x03\x39\x27\xab" 5253 - "\x8e\xf4\xd4\x58\x75\x14\xf0\xfb", 5254 - .rlen = 32, 5255 - }, { 5256 - .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 5257 - "\x6d\x6a\x8f\x94\x67\x30\x83\x08" 5258 - "\xfe\xff\xe9\x92\x86\x65\x73\x1c", 5259 - .klen = 24, 5260 - .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad" 5261 - "\xde\xca\xf8\x88", 5262 - .input = "\xd9\x31\x32\x25\xf8\x84\x06\xe5" 5263 - "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a" 5264 - "\x86\xa7\xa9\x53\x15\x34\xf7\xda" 5265 - "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72" 5266 - "\x1c\x3c\x0c\x95\x95\x68\x09\x53" 5267 - "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25" 5268 - "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57" 5269 - "\xba\x63\x7b\x39\x1a\xaf\xd2\x55", 5270 - .ilen = 64, 5271 - .result = "\x39\x80\xca\x0b\x3c\x00\xe8\x41" 5272 - "\xeb\x06\xfa\xc4\x87\x2a\x27\x57" 5273 - "\x85\x9e\x1c\xea\xa6\xef\xd9\x84" 5274 - "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c" 5275 - "\x7d\x77\x3d\x00\xc1\x44\xc5\x25" 5276 - "\xac\x61\x9d\x18\xc8\x4a\x3f\x47" 5277 - "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9" 5278 - "\xcc\xda\x27\x10\xac\xad\xe2\x56" 5279 - "\x99\x24\xa7\xc8\x58\x73\x36\xbf" 5280 - "\xb1\x18\x02\x4d\xb8\x67\x4a\x14", 5281 - .rlen = 80, 5282 - }, { 5283 - .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 5284 - "\x6d\x6a\x8f\x94\x67\x30\x83\x08" 5285 - "\xfe\xff\xe9\x92\x86\x65\x73\x1c", 5286 - .klen = 24, 5287 - .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad" 5288 - "\xde\xca\xf8\x88", 5289 - .input = "\xd9\x31\x32\x25\xf8\x84\x06\xe5" 5290 - "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a" 5291 - "\x86\xa7\xa9\x53\x15\x34\xf7\xda" 5292 - "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72" 5293 - "\x1c\x3c\x0c\x95\x95\x68\x09\x53" 5294 - "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25" 5295 - "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57" 5296 - "\xba\x63\x7b\x39", 5297 - .ilen = 60, 5298 - .assoc = "\xfe\xed\xfa\xce\xde\xad\xbe\xef" 5299 - "\xfe\xed\xfa\xce\xde\xad\xbe\xef" 5300 - "\xab\xad\xda\xd2", 5301 - .alen = 20, 5302 - .result = "\x39\x80\xca\x0b\x3c\x00\xe8\x41" 5303 - "\xeb\x06\xfa\xc4\x87\x2a\x27\x57" 5304 - "\x85\x9e\x1c\xea\xa6\xef\xd9\x84" 5305 - "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c" 5306 - "\x7d\x77\x3d\x00\xc1\x44\xc5\x25" 5307 - "\xac\x61\x9d\x18\xc8\x4a\x3f\x47" 5308 - "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9" 5309 - "\xcc\xda\x27\x10" 5310 - "\x25\x19\x49\x8e\x80\xf1\x47\x8f" 5311 - "\x37\xba\x55\xbd\x6d\x27\x61\x8c", 5312 - .rlen = 76, 5313 - .np = 2, 5314 - .tap = { 32, 28 }, 5315 - .anp = 2, 5316 - .atap = { 8, 12 } 5317 - }, { 5318 - .key = zeroed_string, 5319 - .klen = 32, 5320 - .result = "\x53\x0f\x8a\xfb\xc7\x45\x36\xb9" 5321 - "\xa9\x63\xb4\xf1\xc4\xcb\x73\x8b", 5322 - .rlen = 16, 5323 - } 5324 - }; 5325 - 5326 - static struct aead_testvec aes_gcm_dec_tv_template[] = { 5327 - { /* From McGrew & Viega - http://citeseer.ist.psu.edu/656989.html */ 5328 - .key = zeroed_string, 5329 - .klen = 32, 5330 - .input = "\xce\xa7\x40\x3d\x4d\x60\x6b\x6e" 5331 - "\x07\x4e\xc5\xd3\xba\xf3\x9d\x18" 5332 - "\xd0\xd1\xc8\xa7\x99\x99\x6b\xf0" 5333 - "\x26\x5b\x98\xb5\xd4\x8a\xb9\x19", 5334 - .ilen = 32, 5335 - .result = zeroed_string, 5336 - .rlen = 16, 5337 - }, { 5338 - .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 5339 - "\x6d\x6a\x8f\x94\x67\x30\x83\x08" 5340 - "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 5341 - "\x6d\x6a\x8f\x94\x67\x30\x83\x08", 5342 - .klen = 32, 5343 - .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad" 5344 - "\xde\xca\xf8\x88", 5345 - .input = "\x52\x2d\xc1\xf0\x99\x56\x7d\x07" 5346 - "\xf4\x7f\x37\xa3\x2a\x84\x42\x7d" 5347 - "\x64\x3a\x8c\xdc\xbf\xe5\xc0\xc9" 5348 - "\x75\x98\xa2\xbd\x25\x55\xd1\xaa" 5349 - "\x8c\xb0\x8e\x48\x59\x0d\xbb\x3d" 5350 - "\xa7\xb0\x8b\x10\x56\x82\x88\x38" 5351 - "\xc5\xf6\x1e\x63\x93\xba\x7a\x0a" 5352 - "\xbc\xc9\xf6\x62\x89\x80\x15\xad" 5353 - "\xb0\x94\xda\xc5\xd9\x34\x71\xbd" 5354 - "\xec\x1a\x50\x22\x70\xe3\xcc\x6c", 5355 - .ilen = 80, 5356 - .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5" 5357 - "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a" 5358 - "\x86\xa7\xa9\x53\x15\x34\xf7\xda" 5359 - "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72" 5360 - "\x1c\x3c\x0c\x95\x95\x68\x09\x53" 5361 - "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25" 5362 - "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57" 5363 - "\xba\x63\x7b\x39\x1a\xaf\xd2\x55", 5364 - .rlen = 64, 5365 - }, { 5366 - .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 5367 - "\x6d\x6a\x8f\x94\x67\x30\x83\x08" 5368 - "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 5369 - "\x6d\x6a\x8f\x94\x67\x30\x83\x08", 5370 - .klen = 32, 5371 - .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad" 5372 - "\xde\xca\xf8\x88", 5373 - .input = "\x52\x2d\xc1\xf0\x99\x56\x7d\x07" 5374 - "\xf4\x7f\x37\xa3\x2a\x84\x42\x7d" 5375 - "\x64\x3a\x8c\xdc\xbf\xe5\xc0\xc9" 5376 - "\x75\x98\xa2\xbd\x25\x55\xd1\xaa" 5377 - "\x8c\xb0\x8e\x48\x59\x0d\xbb\x3d" 5378 - "\xa7\xb0\x8b\x10\x56\x82\x88\x38" 5379 - "\xc5\xf6\x1e\x63\x93\xba\x7a\x0a" 5380 - "\xbc\xc9\xf6\x62" 5381 - "\x76\xfc\x6e\xce\x0f\x4e\x17\x68" 5382 - "\xcd\xdf\x88\x53\xbb\x2d\x55\x1b", 5383 - .ilen = 76, 5384 - .assoc = "\xfe\xed\xfa\xce\xde\xad\xbe\xef" 5385 - "\xfe\xed\xfa\xce\xde\xad\xbe\xef" 5386 - "\xab\xad\xda\xd2", 5387 - .alen = 20, 5388 - .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5" 5389 - "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a" 5390 - "\x86\xa7\xa9\x53\x15\x34\xf7\xda" 5391 - "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72" 5392 - "\x1c\x3c\x0c\x95\x95\x68\x09\x53" 5393 - "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25" 5394 - "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57" 5395 - "\xba\x63\x7b\x39", 5396 - .rlen = 60, 5397 - .np = 2, 5398 - .tap = { 48, 28 }, 5399 - .anp = 3, 5400 - .atap = { 8, 8, 4 } 5401 - }, { 5402 - .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 5403 - "\x6d\x6a\x8f\x94\x67\x30\x83\x08", 5404 - .klen = 16, 5405 - .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad" 5406 - "\xde\xca\xf8\x88", 5407 - .input = "\x42\x83\x1e\xc2\x21\x77\x74\x24" 5408 - "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c" 5409 - "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0" 5410 - "\x35\xc1\x7e\x23\x29\xac\xa1\x2e" 5411 - "\x21\xd5\x14\xb2\x54\x66\x93\x1c" 5412 - "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05" 5413 - "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97" 5414 - "\x3d\x58\xe0\x91\x47\x3f\x59\x85" 5415 - "\x4d\x5c\x2a\xf3\x27\xcd\x64\xa6" 5416 - "\x2c\xf3\x5a\xbd\x2b\xa6\xfa\xb4", 5417 - .ilen = 80, 5418 - .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5" 5419 - "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a" 5420 - "\x86\xa7\xa9\x53\x15\x34\xf7\xda" 5421 - "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72" 5422 - "\x1c\x3c\x0c\x95\x95\x68\x09\x53" 5423 - "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25" 5424 - "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57" 5425 - "\xba\x63\x7b\x39\x1a\xaf\xd2\x55", 5426 - .rlen = 64, 5427 - }, { 5428 - .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 5429 - "\x6d\x6a\x8f\x94\x67\x30\x83\x08", 5430 - .klen = 16, 5431 - .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad" 5432 - "\xde\xca\xf8\x88", 5433 - .input = "\x42\x83\x1e\xc2\x21\x77\x74\x24" 5434 - "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c" 5435 - "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0" 5436 - "\x35\xc1\x7e\x23\x29\xac\xa1\x2e" 5437 - "\x21\xd5\x14\xb2\x54\x66\x93\x1c" 5438 - "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05" 5439 - "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97" 5440 - "\x3d\x58\xe0\x91" 5441 - "\x5b\xc9\x4f\xbc\x32\x21\xa5\xdb" 5442 - "\x94\xfa\xe9\x5a\xe7\x12\x1a\x47", 5443 - .ilen = 76, 5444 - .assoc = "\xfe\xed\xfa\xce\xde\xad\xbe\xef" 5445 - "\xfe\xed\xfa\xce\xde\xad\xbe\xef" 5446 - "\xab\xad\xda\xd2", 5447 - .alen = 20, 5448 - .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5" 5449 - "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a" 5450 - "\x86\xa7\xa9\x53\x15\x34\xf7\xda" 5451 - "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72" 5452 - "\x1c\x3c\x0c\x95\x95\x68\x09\x53" 5453 - "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25" 5454 - "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57" 5455 - "\xba\x63\x7b\x39", 5456 - .rlen = 60, 5457 - }, { 5458 - .key = zeroed_string, 5459 - .klen = 24, 5460 - .input = "\x98\xe7\x24\x7c\x07\xf0\xfe\x41" 5461 - "\x1c\x26\x7e\x43\x84\xb0\xf6\x00" 5462 - "\x2f\xf5\x8d\x80\x03\x39\x27\xab" 5463 - "\x8e\xf4\xd4\x58\x75\x14\xf0\xfb", 5464 - .ilen = 32, 5465 - .result = zeroed_string, 5466 - .rlen = 16, 5467 - }, { 5468 - .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 5469 - "\x6d\x6a\x8f\x94\x67\x30\x83\x08" 5470 - "\xfe\xff\xe9\x92\x86\x65\x73\x1c", 5471 - .klen = 24, 5472 - .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad" 5473 - "\xde\xca\xf8\x88", 5474 - .input = "\x39\x80\xca\x0b\x3c\x00\xe8\x41" 5475 - "\xeb\x06\xfa\xc4\x87\x2a\x27\x57" 5476 - "\x85\x9e\x1c\xea\xa6\xef\xd9\x84" 5477 - "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c" 5478 - "\x7d\x77\x3d\x00\xc1\x44\xc5\x25" 5479 - "\xac\x61\x9d\x18\xc8\x4a\x3f\x47" 5480 - "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9" 5481 - "\xcc\xda\x27\x10\xac\xad\xe2\x56" 5482 - "\x99\x24\xa7\xc8\x58\x73\x36\xbf" 5483 - "\xb1\x18\x02\x4d\xb8\x67\x4a\x14", 5484 - .ilen = 80, 5485 - .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5" 5486 - "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a" 5487 - "\x86\xa7\xa9\x53\x15\x34\xf7\xda" 5488 - "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72" 5489 - "\x1c\x3c\x0c\x95\x95\x68\x09\x53" 5490 - "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25" 5491 - "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57" 5492 - "\xba\x63\x7b\x39\x1a\xaf\xd2\x55", 5493 - .rlen = 64, 5494 - }, { 5495 - .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 5496 - "\x6d\x6a\x8f\x94\x67\x30\x83\x08" 5497 - "\xfe\xff\xe9\x92\x86\x65\x73\x1c", 5498 - .klen = 24, 5499 - .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad" 5500 - "\xde\xca\xf8\x88", 5501 - .input = "\x39\x80\xca\x0b\x3c\x00\xe8\x41" 5502 - "\xeb\x06\xfa\xc4\x87\x2a\x27\x57" 5503 - "\x85\x9e\x1c\xea\xa6\xef\xd9\x84" 5504 - "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c" 5505 - "\x7d\x77\x3d\x00\xc1\x44\xc5\x25" 5506 - "\xac\x61\x9d\x18\xc8\x4a\x3f\x47" 5507 - "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9" 5508 - "\xcc\xda\x27\x10" 5509 - "\x25\x19\x49\x8e\x80\xf1\x47\x8f" 5510 - "\x37\xba\x55\xbd\x6d\x27\x61\x8c", 5511 - .ilen = 76, 5512 - .assoc = "\xfe\xed\xfa\xce\xde\xad\xbe\xef" 5513 - "\xfe\xed\xfa\xce\xde\xad\xbe\xef" 5514 - "\xab\xad\xda\xd2", 5515 - .alen = 20, 5516 - .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5" 5517 - "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a" 5518 - "\x86\xa7\xa9\x53\x15\x34\xf7\xda" 5519 - "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72" 5520 - "\x1c\x3c\x0c\x95\x95\x68\x09\x53" 5521 - "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25" 5522 - "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57" 5523 - "\xba\x63\x7b\x39", 5524 - .rlen = 60, 5525 - } 5526 - }; 5527 - 5528 - static struct aead_testvec aes_ccm_enc_tv_template[] = { 5529 - { /* From RFC 3610 */ 5530 - .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 5531 - "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf", 5532 - .klen = 16, 5533 - .iv = "\x01\x00\x00\x00\x03\x02\x01\x00" 5534 - "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00", 5535 - .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07", 5536 - .alen = 8, 5537 - .input = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 5538 - "\x10\x11\x12\x13\x14\x15\x16\x17" 5539 - "\x18\x19\x1a\x1b\x1c\x1d\x1e", 5540 - .ilen = 23, 5541 - .result = "\x58\x8c\x97\x9a\x61\xc6\x63\xd2" 5542 - "\xf0\x66\xd0\xc2\xc0\xf9\x89\x80" 5543 - "\x6d\x5f\x6b\x61\xda\xc3\x84\x17" 5544 - "\xe8\xd1\x2c\xfd\xf9\x26\xe0", 5545 - .rlen = 31, 5546 - }, { 5547 - .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 5548 - "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf", 5549 - .klen = 16, 5550 - .iv = "\x01\x00\x00\x00\x07\x06\x05\x04" 5551 - "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00", 5552 - .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07" 5553 - "\x08\x09\x0a\x0b", 5554 - .alen = 12, 5555 - .input = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13" 5556 - "\x14\x15\x16\x17\x18\x19\x1a\x1b" 5557 - "\x1c\x1d\x1e\x1f", 5558 - .ilen = 20, 5559 - .result = "\xdc\xf1\xfb\x7b\x5d\x9e\x23\xfb" 5560 - "\x9d\x4e\x13\x12\x53\x65\x8a\xd8" 5561 - "\x6e\xbd\xca\x3e\x51\xe8\x3f\x07" 5562 - "\x7d\x9c\x2d\x93", 5563 - .rlen = 28, 5564 - }, { 5565 - .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 5566 - "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf", 5567 - .klen = 16, 5568 - .iv = "\x01\x00\x00\x00\x0b\x0a\x09\x08" 5569 - "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00", 5570 - .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07", 5571 - .alen = 8, 5572 - .input = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 5573 - "\x10\x11\x12\x13\x14\x15\x16\x17" 5574 - "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 5575 - "\x20", 5576 - .ilen = 25, 5577 - .result = "\x82\x53\x1a\x60\xcc\x24\x94\x5a" 5578 - "\x4b\x82\x79\x18\x1a\xb5\xc8\x4d" 5579 - "\xf2\x1c\xe7\xf9\xb7\x3f\x42\xe1" 5580 - "\x97\xea\x9c\x07\xe5\x6b\x5e\xb1" 5581 - "\x7e\x5f\x4e", 5582 - .rlen = 35, 5583 - }, { 5584 - .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 5585 - "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf", 5586 - .klen = 16, 5587 - .iv = "\x01\x00\x00\x00\x0c\x0b\x0a\x09" 5588 - "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00", 5589 - .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07" 5590 - "\x08\x09\x0a\x0b", 5591 - .alen = 12, 5592 - .input = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13" 5593 - "\x14\x15\x16\x17\x18\x19\x1a\x1b" 5594 - "\x1c\x1d\x1e", 5595 - .ilen = 19, 5596 - .result = "\x07\x34\x25\x94\x15\x77\x85\x15" 5597 - "\x2b\x07\x40\x98\x33\x0a\xbb\x14" 5598 - "\x1b\x94\x7b\x56\x6a\xa9\x40\x6b" 5599 - "\x4d\x99\x99\x88\xdd", 5600 - .rlen = 29, 5601 - }, { 5602 - .key = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3" 5603 - "\x25\xa7\x62\x36\xdf\x93\xcc\x6b", 5604 - .klen = 16, 5605 - .iv = "\x01\x00\x33\x56\x8e\xf7\xb2\x63" 5606 - "\x3c\x96\x96\x76\x6c\xfa\x00\x00", 5607 - .assoc = "\x63\x01\x8f\x76\xdc\x8a\x1b\xcb", 5608 - .alen = 8, 5609 - .input = "\x90\x20\xea\x6f\x91\xbd\xd8\x5a" 5610 - "\xfa\x00\x39\xba\x4b\xaf\xf9\xbf" 5611 - "\xb7\x9c\x70\x28\x94\x9c\xd0\xec", 5612 - .ilen = 24, 5613 - .result = "\x4c\xcb\x1e\x7c\xa9\x81\xbe\xfa" 5614 - "\xa0\x72\x6c\x55\xd3\x78\x06\x12" 5615 - "\x98\xc8\x5c\x92\x81\x4a\xbc\x33" 5616 - "\xc5\x2e\xe8\x1d\x7d\x77\xc0\x8a", 5617 - .rlen = 32, 5618 - }, { 5619 - .key = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3" 5620 - "\x25\xa7\x62\x36\xdf\x93\xcc\x6b", 5621 - .klen = 16, 5622 - .iv = "\x01\x00\xd5\x60\x91\x2d\x3f\x70" 5623 - "\x3c\x96\x96\x76\x6c\xfa\x00\x00", 5624 - .assoc = "\xcd\x90\x44\xd2\xb7\x1f\xdb\x81" 5625 - "\x20\xea\x60\xc0", 5626 - .alen = 12, 5627 - .input = "\x64\x35\xac\xba\xfb\x11\xa8\x2e" 5628 - "\x2f\x07\x1d\x7c\xa4\xa5\xeb\xd9" 5629 - "\x3a\x80\x3b\xa8\x7f", 5630 - .ilen = 21, 5631 - .result = "\x00\x97\x69\xec\xab\xdf\x48\x62" 5632 - "\x55\x94\xc5\x92\x51\xe6\x03\x57" 5633 - "\x22\x67\x5e\x04\xc8\x47\x09\x9e" 5634 - "\x5a\xe0\x70\x45\x51", 5635 - .rlen = 29, 5636 - }, { 5637 - .key = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3" 5638 - "\x25\xa7\x62\x36\xdf\x93\xcc\x6b", 5639 - .klen = 16, 5640 - .iv = "\x01\x00\x42\xff\xf8\xf1\x95\x1c" 5641 - "\x3c\x96\x96\x76\x6c\xfa\x00\x00", 5642 - .assoc = "\xd8\x5b\xc7\xe6\x9f\x94\x4f\xb8", 5643 - .alen = 8, 5644 - .input = "\x8a\x19\xb9\x50\xbc\xf7\x1a\x01" 5645 - "\x8e\x5e\x67\x01\xc9\x17\x87\x65" 5646 - "\x98\x09\xd6\x7d\xbe\xdd\x18", 5647 - .ilen = 23, 5648 - .result = "\xbc\x21\x8d\xaa\x94\x74\x27\xb6" 5649 - "\xdb\x38\x6a\x99\xac\x1a\xef\x23" 5650 - "\xad\xe0\xb5\x29\x39\xcb\x6a\x63" 5651 - "\x7c\xf9\xbe\xc2\x40\x88\x97\xc6" 5652 - "\xba", 5653 - .rlen = 33, 5654 - }, 5655 - }; 5656 - 5657 - static struct aead_testvec aes_ccm_dec_tv_template[] = { 5658 - { /* From RFC 3610 */ 5659 - .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 5660 - "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf", 5661 - .klen = 16, 5662 - .iv = "\x01\x00\x00\x00\x03\x02\x01\x00" 5663 - "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00", 5664 - .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07", 5665 - .alen = 8, 5666 - .input = "\x58\x8c\x97\x9a\x61\xc6\x63\xd2" 5667 - "\xf0\x66\xd0\xc2\xc0\xf9\x89\x80" 5668 - "\x6d\x5f\x6b\x61\xda\xc3\x84\x17" 5669 - "\xe8\xd1\x2c\xfd\xf9\x26\xe0", 5670 - .ilen = 31, 5671 - .result = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 5672 - "\x10\x11\x12\x13\x14\x15\x16\x17" 5673 - "\x18\x19\x1a\x1b\x1c\x1d\x1e", 5674 - .rlen = 23, 5675 - }, { 5676 - .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 5677 - "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf", 5678 - .klen = 16, 5679 - .iv = "\x01\x00\x00\x00\x07\x06\x05\x04" 5680 - "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00", 5681 - .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07" 5682 - "\x08\x09\x0a\x0b", 5683 - .alen = 12, 5684 - .input = "\xdc\xf1\xfb\x7b\x5d\x9e\x23\xfb" 5685 - "\x9d\x4e\x13\x12\x53\x65\x8a\xd8" 5686 - "\x6e\xbd\xca\x3e\x51\xe8\x3f\x07" 5687 - "\x7d\x9c\x2d\x93", 5688 - .ilen = 28, 5689 - .result = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13" 5690 - "\x14\x15\x16\x17\x18\x19\x1a\x1b" 5691 - "\x1c\x1d\x1e\x1f", 5692 - .rlen = 20, 5693 - }, { 5694 - .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 5695 - "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf", 5696 - .klen = 16, 5697 - .iv = "\x01\x00\x00\x00\x0b\x0a\x09\x08" 5698 - "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00", 5699 - .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07", 5700 - .alen = 8, 5701 - .input = "\x82\x53\x1a\x60\xcc\x24\x94\x5a" 5702 - "\x4b\x82\x79\x18\x1a\xb5\xc8\x4d" 5703 - "\xf2\x1c\xe7\xf9\xb7\x3f\x42\xe1" 5704 - "\x97\xea\x9c\x07\xe5\x6b\x5e\xb1" 5705 - "\x7e\x5f\x4e", 5706 - .ilen = 35, 5707 - .result = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 5708 - "\x10\x11\x12\x13\x14\x15\x16\x17" 5709 - "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 5710 - "\x20", 5711 - .rlen = 25, 5712 - }, { 5713 - .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 5714 - "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf", 5715 - .klen = 16, 5716 - .iv = "\x01\x00\x00\x00\x0c\x0b\x0a\x09" 5717 - "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00", 5718 - .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07" 5719 - "\x08\x09\x0a\x0b", 5720 - .alen = 12, 5721 - .input = "\x07\x34\x25\x94\x15\x77\x85\x15" 5722 - "\x2b\x07\x40\x98\x33\x0a\xbb\x14" 5723 - "\x1b\x94\x7b\x56\x6a\xa9\x40\x6b" 5724 - "\x4d\x99\x99\x88\xdd", 5725 - .ilen = 29, 5726 - .result = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13" 5727 - "\x14\x15\x16\x17\x18\x19\x1a\x1b" 5728 - "\x1c\x1d\x1e", 5729 - .rlen = 19, 5730 - }, { 5731 - .key = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3" 5732 - "\x25\xa7\x62\x36\xdf\x93\xcc\x6b", 5733 - .klen = 16, 5734 - .iv = "\x01\x00\x33\x56\x8e\xf7\xb2\x63" 5735 - "\x3c\x96\x96\x76\x6c\xfa\x00\x00", 5736 - .assoc = "\x63\x01\x8f\x76\xdc\x8a\x1b\xcb", 5737 - .alen = 8, 5738 - .input = "\x4c\xcb\x1e\x7c\xa9\x81\xbe\xfa" 5739 - "\xa0\x72\x6c\x55\xd3\x78\x06\x12" 5740 - "\x98\xc8\x5c\x92\x81\x4a\xbc\x33" 5741 - "\xc5\x2e\xe8\x1d\x7d\x77\xc0\x8a", 5742 - .ilen = 32, 5743 - .result = "\x90\x20\xea\x6f\x91\xbd\xd8\x5a" 5744 - "\xfa\x00\x39\xba\x4b\xaf\xf9\xbf" 5745 - "\xb7\x9c\x70\x28\x94\x9c\xd0\xec", 5746 - .rlen = 24, 5747 - }, { 5748 - .key = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3" 5749 - "\x25\xa7\x62\x36\xdf\x93\xcc\x6b", 5750 - .klen = 16, 5751 - .iv = "\x01\x00\xd5\x60\x91\x2d\x3f\x70" 5752 - "\x3c\x96\x96\x76\x6c\xfa\x00\x00", 5753 - .assoc = "\xcd\x90\x44\xd2\xb7\x1f\xdb\x81" 5754 - "\x20\xea\x60\xc0", 5755 - .alen = 12, 5756 - .input = "\x00\x97\x69\xec\xab\xdf\x48\x62" 5757 - "\x55\x94\xc5\x92\x51\xe6\x03\x57" 5758 - "\x22\x67\x5e\x04\xc8\x47\x09\x9e" 5759 - "\x5a\xe0\x70\x45\x51", 5760 - .ilen = 29, 5761 - .result = "\x64\x35\xac\xba\xfb\x11\xa8\x2e" 5762 - "\x2f\x07\x1d\x7c\xa4\xa5\xeb\xd9" 5763 - "\x3a\x80\x3b\xa8\x7f", 5764 - .rlen = 21, 5765 - }, { 5766 - .key = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3" 5767 - "\x25\xa7\x62\x36\xdf\x93\xcc\x6b", 5768 - .klen = 16, 5769 - .iv = "\x01\x00\x42\xff\xf8\xf1\x95\x1c" 5770 - "\x3c\x96\x96\x76\x6c\xfa\x00\x00", 5771 - .assoc = "\xd8\x5b\xc7\xe6\x9f\x94\x4f\xb8", 5772 - .alen = 8, 5773 - .input = "\xbc\x21\x8d\xaa\x94\x74\x27\xb6" 5774 - "\xdb\x38\x6a\x99\xac\x1a\xef\x23" 5775 - "\xad\xe0\xb5\x29\x39\xcb\x6a\x63" 5776 - "\x7c\xf9\xbe\xc2\x40\x88\x97\xc6" 5777 - "\xba", 5778 - .ilen = 33, 5779 - .result = "\x8a\x19\xb9\x50\xbc\xf7\x1a\x01" 5780 - "\x8e\x5e\x67\x01\xc9\x17\x87\x65" 5781 - "\x98\x09\xd6\x7d\xbe\xdd\x18", 5782 - .rlen = 23, 5783 - }, 5784 - }; 5785 - 5786 - /* Cast5 test vectors from RFC 2144 */ 5787 - #define CAST5_ENC_TEST_VECTORS 3 5788 - #define CAST5_DEC_TEST_VECTORS 3 5789 - 5790 - static struct cipher_testvec cast5_enc_tv_template[] = { 5791 - { 5792 - .key = "\x01\x23\x45\x67\x12\x34\x56\x78" 5793 - "\x23\x45\x67\x89\x34\x56\x78\x9a", 5794 - .klen = 16, 5795 - .input = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5796 - .ilen = 8, 5797 - .result = "\x23\x8b\x4f\xe5\x84\x7e\x44\xb2", 5798 - .rlen = 8, 5799 - }, { 5800 - .key = "\x01\x23\x45\x67\x12\x34\x56\x78" 5801 - "\x23\x45", 5802 - .klen = 10, 5803 - .input = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5804 - .ilen = 8, 5805 - .result = "\xeb\x6a\x71\x1a\x2c\x02\x27\x1b", 5806 - .rlen = 8, 5807 - }, { 5808 - .key = "\x01\x23\x45\x67\x12", 5809 - .klen = 5, 5810 - .input = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5811 - .ilen = 8, 5812 - .result = "\x7a\xc8\x16\xd1\x6e\x9b\x30\x2e", 5813 - .rlen = 8, 5814 - }, 5815 - }; 5816 - 5817 - static struct cipher_testvec cast5_dec_tv_template[] = { 5818 - { 5819 - .key = "\x01\x23\x45\x67\x12\x34\x56\x78" 5820 - "\x23\x45\x67\x89\x34\x56\x78\x9a", 5821 - .klen = 16, 5822 - .input = "\x23\x8b\x4f\xe5\x84\x7e\x44\xb2", 5823 - .ilen = 8, 5824 - .result = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5825 - .rlen = 8, 5826 - }, { 5827 - .key = "\x01\x23\x45\x67\x12\x34\x56\x78" 5828 - "\x23\x45", 5829 - .klen = 10, 5830 - .input = "\xeb\x6a\x71\x1a\x2c\x02\x27\x1b", 5831 - .ilen = 8, 5832 - .result = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5833 - .rlen = 8, 5834 - }, { 5835 - .key = "\x01\x23\x45\x67\x12", 5836 - .klen = 5, 5837 - .input = "\x7a\xc8\x16\xd1\x6e\x9b\x30\x2e", 5838 - .ilen = 8, 5839 - .result = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5840 - .rlen = 8, 5841 - }, 5842 - }; 5843 - 5844 - /* 5845 - * ARC4 test vectors from OpenSSL 5846 - */ 5847 - #define ARC4_ENC_TEST_VECTORS 7 5848 - #define ARC4_DEC_TEST_VECTORS 7 5849 - 5850 - static struct cipher_testvec arc4_enc_tv_template[] = { 5851 - { 5852 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5853 - .klen = 8, 5854 - .input = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5855 - .ilen = 8, 5856 - .result = "\x75\xb7\x87\x80\x99\xe0\xc5\x96", 5857 - .rlen = 8, 5858 - }, { 5859 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5860 - .klen = 8, 5861 - .input = "\x00\x00\x00\x00\x00\x00\x00\x00", 5862 - .ilen = 8, 5863 - .result = "\x74\x94\xc2\xe7\x10\x4b\x08\x79", 5864 - .rlen = 8, 5865 - }, { 5866 - .key = "\x00\x00\x00\x00\x00\x00\x00\x00", 5867 - .klen = 8, 5868 - .input = "\x00\x00\x00\x00\x00\x00\x00\x00", 5869 - .ilen = 8, 5870 - .result = "\xde\x18\x89\x41\xa3\x37\x5d\x3a", 5871 - .rlen = 8, 5872 - }, { 5873 - .key = "\xef\x01\x23\x45", 5874 - .klen = 4, 5875 - .input = "\x00\x00\x00\x00\x00\x00\x00\x00" 5876 - "\x00\x00\x00\x00\x00\x00\x00\x00" 5877 - "\x00\x00\x00\x00", 5878 - .ilen = 20, 5879 - .result = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf" 5880 - "\xbd\x61\x5a\x11\x62\xe1\xc7\xba" 5881 - "\x36\xb6\x78\x58", 5882 - .rlen = 20, 5883 - }, { 5884 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5885 - .klen = 8, 5886 - .input = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0" 5887 - "\x12\x34\x56\x78\x9A\xBC\xDE\xF0" 5888 - "\x12\x34\x56\x78\x9A\xBC\xDE\xF0" 5889 - "\x12\x34\x56\x78", 5890 - .ilen = 28, 5891 - .result = "\x66\xa0\x94\x9f\x8a\xf7\xd6\x89" 5892 - "\x1f\x7f\x83\x2b\xa8\x33\xc0\x0c" 5893 - "\x89\x2e\xbe\x30\x14\x3c\xe2\x87" 5894 - "\x40\x01\x1e\xcf", 5895 - .rlen = 28, 5896 - }, { 5897 - .key = "\xef\x01\x23\x45", 5898 - .klen = 4, 5899 - .input = "\x00\x00\x00\x00\x00\x00\x00\x00" 5900 - "\x00\x00", 5901 - .ilen = 10, 5902 - .result = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf" 5903 - "\xbd\x61", 5904 - .rlen = 10, 5905 - }, { 5906 - .key = "\x01\x23\x45\x67\x89\xAB\xCD\xEF" 5907 - "\x00\x00\x00\x00\x00\x00\x00\x00", 5908 - .klen = 16, 5909 - .input = "\x01\x23\x45\x67\x89\xAB\xCD\xEF", 5910 - .ilen = 8, 5911 - .result = "\x69\x72\x36\x59\x1B\x52\x42\xB1", 5912 - .rlen = 8, 5913 - }, 5914 - }; 5915 - 5916 - static struct cipher_testvec arc4_dec_tv_template[] = { 5917 - { 5918 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5919 - .klen = 8, 5920 - .input = "\x75\xb7\x87\x80\x99\xe0\xc5\x96", 5921 - .ilen = 8, 5922 - .result = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5923 - .rlen = 8, 5924 - }, { 5925 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5926 - .klen = 8, 5927 - .input = "\x74\x94\xc2\xe7\x10\x4b\x08\x79", 5928 - .ilen = 8, 5929 - .result = "\x00\x00\x00\x00\x00\x00\x00\x00", 5930 - .rlen = 8, 5931 - }, { 5932 - .key = "\x00\x00\x00\x00\x00\x00\x00\x00", 5933 - .klen = 8, 5934 - .input = "\xde\x18\x89\x41\xa3\x37\x5d\x3a", 5935 - .ilen = 8, 5936 - .result = "\x00\x00\x00\x00\x00\x00\x00\x00", 5937 - .rlen = 8, 5938 - }, { 5939 - .key = "\xef\x01\x23\x45", 5940 - .klen = 4, 5941 - .input = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf" 5942 - "\xbd\x61\x5a\x11\x62\xe1\xc7\xba" 5943 - "\x36\xb6\x78\x58", 5944 - .ilen = 20, 5945 - .result = "\x00\x00\x00\x00\x00\x00\x00\x00" 5946 - "\x00\x00\x00\x00\x00\x00\x00\x00" 5947 - "\x00\x00\x00\x00", 5948 - .rlen = 20, 5949 - }, { 5950 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5951 - .klen = 8, 5952 - .input = "\x66\xa0\x94\x9f\x8a\xf7\xd6\x89" 5953 - "\x1f\x7f\x83\x2b\xa8\x33\xc0\x0c" 5954 - "\x89\x2e\xbe\x30\x14\x3c\xe2\x87" 5955 - "\x40\x01\x1e\xcf", 5956 - .ilen = 28, 5957 - .result = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0" 5958 - "\x12\x34\x56\x78\x9A\xBC\xDE\xF0" 5959 - "\x12\x34\x56\x78\x9A\xBC\xDE\xF0" 5960 - "\x12\x34\x56\x78", 5961 - .rlen = 28, 5962 - }, { 5963 - .key = "\xef\x01\x23\x45", 5964 - .klen = 4, 5965 - .input = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf" 5966 - "\xbd\x61", 5967 - .ilen = 10, 5968 - .result = "\x00\x00\x00\x00\x00\x00\x00\x00" 5969 - "\x00\x00", 5970 - .rlen = 10, 5971 - }, { 5972 - .key = "\x01\x23\x45\x67\x89\xAB\xCD\xEF" 5973 - "\x00\x00\x00\x00\x00\x00\x00\x00", 5974 - .klen = 16, 5975 - .input = "\x69\x72\x36\x59\x1B\x52\x42\xB1", 5976 - .ilen = 8, 5977 - .result = "\x01\x23\x45\x67\x89\xAB\xCD\xEF", 5978 - .rlen = 8, 5979 - }, 5980 - }; 5981 - 5982 - /* 5983 - * TEA test vectors 5984 - */ 5985 - #define TEA_ENC_TEST_VECTORS 4 5986 - #define TEA_DEC_TEST_VECTORS 4 5987 - 5988 - static struct cipher_testvec tea_enc_tv_template[] = { 5989 - { 5990 - .key = zeroed_string, 5991 - .klen = 16, 5992 - .input = zeroed_string, 5993 - .ilen = 8, 5994 - .result = "\x0a\x3a\xea\x41\x40\xa9\xba\x94", 5995 - .rlen = 8, 5996 - }, { 5997 - .key = "\x2b\x02\x05\x68\x06\x14\x49\x76" 5998 - "\x77\x5d\x0e\x26\x6c\x28\x78\x43", 5999 - .klen = 16, 6000 - .input = "\x74\x65\x73\x74\x20\x6d\x65\x2e", 6001 - .ilen = 8, 6002 - .result = "\x77\x5d\x2a\x6a\xf6\xce\x92\x09", 6003 - .rlen = 8, 6004 - }, { 6005 - .key = "\x09\x65\x43\x11\x66\x44\x39\x25" 6006 - "\x51\x3a\x16\x10\x0a\x08\x12\x6e", 6007 - .klen = 16, 6008 - .input = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74" 6009 - "\x65\x73\x74\x5f\x76\x65\x63\x74", 6010 - .ilen = 16, 6011 - .result = "\xbe\x7a\xbb\x81\x95\x2d\x1f\x1e" 6012 - "\xdd\x89\xa1\x25\x04\x21\xdf\x95", 6013 - .rlen = 16, 6014 - }, { 6015 - .key = "\x4d\x76\x32\x17\x05\x3f\x75\x2c" 6016 - "\x5d\x04\x16\x36\x15\x72\x63\x2f", 6017 - .klen = 16, 6018 - .input = "\x54\x65\x61\x20\x69\x73\x20\x67" 6019 - "\x6f\x6f\x64\x20\x66\x6f\x72\x20" 6020 - "\x79\x6f\x75\x21\x21\x21\x20\x72" 6021 - "\x65\x61\x6c\x6c\x79\x21\x21\x21", 6022 - .ilen = 32, 6023 - .result = "\xe0\x4d\x5d\x3c\xb7\x8c\x36\x47" 6024 - "\x94\x18\x95\x91\xa9\xfc\x49\xf8" 6025 - "\x44\xd1\x2d\xc2\x99\xb8\x08\x2a" 6026 - "\x07\x89\x73\xc2\x45\x92\xc6\x90", 6027 - .rlen = 32, 6028 - } 6029 - }; 6030 - 6031 - static struct cipher_testvec tea_dec_tv_template[] = { 6032 - { 6033 - .key = zeroed_string, 6034 - .klen = 16, 6035 - .input = "\x0a\x3a\xea\x41\x40\xa9\xba\x94", 6036 - .ilen = 8, 6037 - .result = zeroed_string, 6038 - .rlen = 8, 6039 - }, { 6040 - .key = "\x2b\x02\x05\x68\x06\x14\x49\x76" 6041 - "\x77\x5d\x0e\x26\x6c\x28\x78\x43", 6042 - .klen = 16, 6043 - .input = "\x77\x5d\x2a\x6a\xf6\xce\x92\x09", 6044 - .ilen = 8, 6045 - .result = "\x74\x65\x73\x74\x20\x6d\x65\x2e", 6046 - .rlen = 8, 6047 - }, { 6048 - .key = "\x09\x65\x43\x11\x66\x44\x39\x25" 6049 - "\x51\x3a\x16\x10\x0a\x08\x12\x6e", 6050 - .klen = 16, 6051 - .input = "\xbe\x7a\xbb\x81\x95\x2d\x1f\x1e" 6052 - "\xdd\x89\xa1\x25\x04\x21\xdf\x95", 6053 - .ilen = 16, 6054 - .result = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74" 6055 - "\x65\x73\x74\x5f\x76\x65\x63\x74", 6056 - .rlen = 16, 6057 - }, { 6058 - .key = "\x4d\x76\x32\x17\x05\x3f\x75\x2c" 6059 - "\x5d\x04\x16\x36\x15\x72\x63\x2f", 6060 - .klen = 16, 6061 - .input = "\xe0\x4d\x5d\x3c\xb7\x8c\x36\x47" 6062 - "\x94\x18\x95\x91\xa9\xfc\x49\xf8" 6063 - "\x44\xd1\x2d\xc2\x99\xb8\x08\x2a" 6064 - "\x07\x89\x73\xc2\x45\x92\xc6\x90", 6065 - .ilen = 32, 6066 - .result = "\x54\x65\x61\x20\x69\x73\x20\x67" 6067 - "\x6f\x6f\x64\x20\x66\x6f\x72\x20" 6068 - "\x79\x6f\x75\x21\x21\x21\x20\x72" 6069 - "\x65\x61\x6c\x6c\x79\x21\x21\x21", 6070 - .rlen = 32, 6071 - } 6072 - }; 6073 - 6074 - /* 6075 - * XTEA test vectors 6076 - */ 6077 - #define XTEA_ENC_TEST_VECTORS 4 6078 - #define XTEA_DEC_TEST_VECTORS 4 6079 - 6080 - static struct cipher_testvec xtea_enc_tv_template[] = { 6081 - { 6082 - .key = zeroed_string, 6083 - .klen = 16, 6084 - .input = zeroed_string, 6085 - .ilen = 8, 6086 - .result = "\xd8\xd4\xe9\xde\xd9\x1e\x13\xf7", 6087 - .rlen = 8, 6088 - }, { 6089 - .key = "\x2b\x02\x05\x68\x06\x14\x49\x76" 6090 - "\x77\x5d\x0e\x26\x6c\x28\x78\x43", 6091 - .klen = 16, 6092 - .input = "\x74\x65\x73\x74\x20\x6d\x65\x2e", 6093 - .ilen = 8, 6094 - .result = "\x94\xeb\xc8\x96\x84\x6a\x49\xa8", 6095 - .rlen = 8, 6096 - }, { 6097 - .key = "\x09\x65\x43\x11\x66\x44\x39\x25" 6098 - "\x51\x3a\x16\x10\x0a\x08\x12\x6e", 6099 - .klen = 16, 6100 - .input = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74" 6101 - "\x65\x73\x74\x5f\x76\x65\x63\x74", 6102 - .ilen = 16, 6103 - .result = "\x3e\xce\xae\x22\x60\x56\xa8\x9d" 6104 - "\x77\x4d\xd4\xb4\x87\x24\xe3\x9a", 6105 - .rlen = 16, 6106 - }, { 6107 - .key = "\x4d\x76\x32\x17\x05\x3f\x75\x2c" 6108 - "\x5d\x04\x16\x36\x15\x72\x63\x2f", 6109 - .klen = 16, 6110 - .input = "\x54\x65\x61\x20\x69\x73\x20\x67" 6111 - "\x6f\x6f\x64\x20\x66\x6f\x72\x20" 6112 - "\x79\x6f\x75\x21\x21\x21\x20\x72" 6113 - "\x65\x61\x6c\x6c\x79\x21\x21\x21", 6114 - .ilen = 32, 6115 - .result = "\x99\x81\x9f\x5d\x6f\x4b\x31\x3a" 6116 - "\x86\xff\x6f\xd0\xe3\x87\x70\x07" 6117 - "\x4d\xb8\xcf\xf3\x99\x50\xb3\xd4" 6118 - "\x73\xa2\xfa\xc9\x16\x59\x5d\x81", 6119 - .rlen = 32, 6120 - } 6121 - }; 6122 - 6123 - static struct cipher_testvec xtea_dec_tv_template[] = { 6124 - { 6125 - .key = zeroed_string, 6126 - .klen = 16, 6127 - .input = "\xd8\xd4\xe9\xde\xd9\x1e\x13\xf7", 6128 - .ilen = 8, 6129 - .result = zeroed_string, 6130 - .rlen = 8, 6131 - }, { 6132 - .key = "\x2b\x02\x05\x68\x06\x14\x49\x76" 6133 - "\x77\x5d\x0e\x26\x6c\x28\x78\x43", 6134 - .klen = 16, 6135 - .input = "\x94\xeb\xc8\x96\x84\x6a\x49\xa8", 6136 - .ilen = 8, 6137 - .result = "\x74\x65\x73\x74\x20\x6d\x65\x2e", 6138 - .rlen = 8, 6139 - }, { 6140 - .key = "\x09\x65\x43\x11\x66\x44\x39\x25" 6141 - "\x51\x3a\x16\x10\x0a\x08\x12\x6e", 6142 - .klen = 16, 6143 - .input = "\x3e\xce\xae\x22\x60\x56\xa8\x9d" 6144 - "\x77\x4d\xd4\xb4\x87\x24\xe3\x9a", 6145 - .ilen = 16, 6146 - .result = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74" 6147 - "\x65\x73\x74\x5f\x76\x65\x63\x74", 6148 - .rlen = 16, 6149 - }, { 6150 - .key = "\x4d\x76\x32\x17\x05\x3f\x75\x2c" 6151 - "\x5d\x04\x16\x36\x15\x72\x63\x2f", 6152 - .klen = 16, 6153 - .input = "\x99\x81\x9f\x5d\x6f\x4b\x31\x3a" 6154 - "\x86\xff\x6f\xd0\xe3\x87\x70\x07" 6155 - "\x4d\xb8\xcf\xf3\x99\x50\xb3\xd4" 6156 - "\x73\xa2\xfa\xc9\x16\x59\x5d\x81", 6157 - .ilen = 32, 6158 - .result = "\x54\x65\x61\x20\x69\x73\x20\x67" 6159 - "\x6f\x6f\x64\x20\x66\x6f\x72\x20" 6160 - "\x79\x6f\x75\x21\x21\x21\x20\x72" 6161 - "\x65\x61\x6c\x6c\x79\x21\x21\x21", 6162 - .rlen = 32, 6163 - } 6164 - }; 6165 - 6166 - /* 6167 - * KHAZAD test vectors. 6168 - */ 6169 - #define KHAZAD_ENC_TEST_VECTORS 5 6170 - #define KHAZAD_DEC_TEST_VECTORS 5 6171 - 6172 - static struct cipher_testvec khazad_enc_tv_template[] = { 6173 - { 6174 - .key = "\x80\x00\x00\x00\x00\x00\x00\x00" 6175 - "\x00\x00\x00\x00\x00\x00\x00\x00", 6176 - .klen = 16, 6177 - .input = "\x00\x00\x00\x00\x00\x00\x00\x00", 6178 - .ilen = 8, 6179 - .result = "\x49\xa4\xce\x32\xac\x19\x0e\x3f", 6180 - .rlen = 8, 6181 - }, { 6182 - .key = "\x38\x38\x38\x38\x38\x38\x38\x38" 6183 - "\x38\x38\x38\x38\x38\x38\x38\x38", 6184 - .klen = 16, 6185 - .input = "\x38\x38\x38\x38\x38\x38\x38\x38", 6186 - .ilen = 8, 6187 - .result = "\x7e\x82\x12\xa1\xd9\x5b\xe4\xf9", 6188 - .rlen = 8, 6189 - }, { 6190 - .key = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2" 6191 - "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2", 6192 - .klen = 16, 6193 - .input = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2", 6194 - .ilen = 8, 6195 - .result = "\xaa\xbe\xc1\x95\xc5\x94\x1a\x9c", 6196 - .rlen = 8, 6197 - }, { 6198 - .key = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f" 6199 - "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f", 6200 - .klen = 16, 6201 - .input = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f", 6202 - .ilen = 8, 6203 - .result = "\x04\x74\xf5\x70\x50\x16\xd3\xb8", 6204 - .rlen = 8, 6205 - }, { 6206 - .key = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f" 6207 - "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f", 6208 - .klen = 16, 6209 - .input = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f" 6210 - "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f", 6211 - .ilen = 16, 6212 - .result = "\x04\x74\xf5\x70\x50\x16\xd3\xb8" 6213 - "\x04\x74\xf5\x70\x50\x16\xd3\xb8", 6214 - .rlen = 16, 6215 - }, 6216 - }; 6217 - 6218 - static struct cipher_testvec khazad_dec_tv_template[] = { 6219 - { 6220 - .key = "\x80\x00\x00\x00\x00\x00\x00\x00" 6221 - "\x00\x00\x00\x00\x00\x00\x00\x00", 6222 - .klen = 16, 6223 - .input = "\x49\xa4\xce\x32\xac\x19\x0e\x3f", 6224 - .ilen = 8, 6225 - .result = "\x00\x00\x00\x00\x00\x00\x00\x00", 6226 - .rlen = 8, 6227 - }, { 6228 - .key = "\x38\x38\x38\x38\x38\x38\x38\x38" 6229 - "\x38\x38\x38\x38\x38\x38\x38\x38", 6230 - .klen = 16, 6231 - .input = "\x7e\x82\x12\xa1\xd9\x5b\xe4\xf9", 6232 - .ilen = 8, 6233 - .result = "\x38\x38\x38\x38\x38\x38\x38\x38", 6234 - .rlen = 8, 6235 - }, { 6236 - .key = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2" 6237 - "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2", 6238 - .klen = 16, 6239 - .input = "\xaa\xbe\xc1\x95\xc5\x94\x1a\x9c", 6240 - .ilen = 8, 6241 - .result = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2", 6242 - .rlen = 8, 6243 - }, { 6244 - .key = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f" 6245 - "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f", 6246 - .klen = 16, 6247 - .input = "\x04\x74\xf5\x70\x50\x16\xd3\xb8", 6248 - .ilen = 8, 6249 - .result = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f", 6250 - .rlen = 8, 6251 - }, { 6252 - .key = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f" 6253 - "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f", 6254 - .klen = 16, 6255 - .input = "\x04\x74\xf5\x70\x50\x16\xd3\xb8" 6256 - "\x04\x74\xf5\x70\x50\x16\xd3\xb8", 6257 - .ilen = 16, 6258 - .result = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f" 6259 - "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f", 6260 - .rlen = 16, 6261 - }, 6262 - }; 6263 - 6264 - /* 6265 - * Anubis test vectors. 6266 - */ 6267 - 6268 - #define ANUBIS_ENC_TEST_VECTORS 5 6269 - #define ANUBIS_DEC_TEST_VECTORS 5 6270 - #define ANUBIS_CBC_ENC_TEST_VECTORS 2 6271 - #define ANUBIS_CBC_DEC_TEST_VECTORS 2 6272 - 6273 - static struct cipher_testvec anubis_enc_tv_template[] = { 6274 - { 6275 - .key = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 6276 - "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe", 6277 - .klen = 16, 6278 - .input = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 6279 - "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe", 6280 - .ilen = 16, 6281 - .result = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f" 6282 - "\x08\xb7\x52\x8e\x6e\x6e\x86\x90", 6283 - .rlen = 16, 6284 - }, { 6285 - 6286 - .key = "\x03\x03\x03\x03\x03\x03\x03\x03" 6287 - "\x03\x03\x03\x03\x03\x03\x03\x03" 6288 - "\x03\x03\x03\x03", 6289 - .klen = 20, 6290 - .input = "\x03\x03\x03\x03\x03\x03\x03\x03" 6291 - "\x03\x03\x03\x03\x03\x03\x03\x03", 6292 - .ilen = 16, 6293 - .result = "\xdb\xf1\x42\xf4\xd1\x8a\xc7\x49" 6294 - "\x87\x41\x6f\x82\x0a\x98\x64\xae", 6295 - .rlen = 16, 6296 - }, { 6297 - .key = "\x24\x24\x24\x24\x24\x24\x24\x24" 6298 - "\x24\x24\x24\x24\x24\x24\x24\x24" 6299 - "\x24\x24\x24\x24\x24\x24\x24\x24" 6300 - "\x24\x24\x24\x24", 6301 - .klen = 28, 6302 - .input = "\x24\x24\x24\x24\x24\x24\x24\x24" 6303 - "\x24\x24\x24\x24\x24\x24\x24\x24", 6304 - .ilen = 16, 6305 - .result = "\xfd\x1b\x4a\xe3\xbf\xf0\xad\x3d" 6306 - "\x06\xd3\x61\x27\xfd\x13\x9e\xde", 6307 - .rlen = 16, 6308 - }, { 6309 - .key = "\x25\x25\x25\x25\x25\x25\x25\x25" 6310 - "\x25\x25\x25\x25\x25\x25\x25\x25" 6311 - "\x25\x25\x25\x25\x25\x25\x25\x25" 6312 - "\x25\x25\x25\x25\x25\x25\x25\x25", 6313 - .klen = 32, 6314 - .input = "\x25\x25\x25\x25\x25\x25\x25\x25" 6315 - "\x25\x25\x25\x25\x25\x25\x25\x25", 6316 - .ilen = 16, 6317 - .result = "\x1a\x91\xfb\x2b\xb7\x78\x6b\xc4" 6318 - "\x17\xd9\xff\x40\x3b\x0e\xe5\xfe", 6319 - .rlen = 16, 6320 - }, { 6321 - .key = "\x35\x35\x35\x35\x35\x35\x35\x35" 6322 - "\x35\x35\x35\x35\x35\x35\x35\x35" 6323 - "\x35\x35\x35\x35\x35\x35\x35\x35" 6324 - "\x35\x35\x35\x35\x35\x35\x35\x35" 6325 - "\x35\x35\x35\x35\x35\x35\x35\x35", 6326 - .klen = 40, 6327 - .input = "\x35\x35\x35\x35\x35\x35\x35\x35" 6328 - "\x35\x35\x35\x35\x35\x35\x35\x35", 6329 - .ilen = 16, 6330 - .result = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97" 6331 - "\x9e\xc6\x84\x0f\x17\x21\x07\xee", 6332 - .rlen = 16, 6333 - }, 6334 - }; 6335 - 6336 - static struct cipher_testvec anubis_dec_tv_template[] = { 6337 - { 6338 - .key = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 6339 - "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe", 6340 - .klen = 16, 6341 - .input = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f" 6342 - "\x08\xb7\x52\x8e\x6e\x6e\x86\x90", 6343 - .ilen = 16, 6344 - .result = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 6345 - "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe", 6346 - .rlen = 16, 6347 - }, { 6348 - 6349 - .key = "\x03\x03\x03\x03\x03\x03\x03\x03" 6350 - "\x03\x03\x03\x03\x03\x03\x03\x03" 6351 - "\x03\x03\x03\x03", 6352 - .klen = 20, 6353 - .input = "\xdb\xf1\x42\xf4\xd1\x8a\xc7\x49" 6354 - "\x87\x41\x6f\x82\x0a\x98\x64\xae", 6355 - .ilen = 16, 6356 - .result = "\x03\x03\x03\x03\x03\x03\x03\x03" 6357 - "\x03\x03\x03\x03\x03\x03\x03\x03", 6358 - .rlen = 16, 6359 - }, { 6360 - .key = "\x24\x24\x24\x24\x24\x24\x24\x24" 6361 - "\x24\x24\x24\x24\x24\x24\x24\x24" 6362 - "\x24\x24\x24\x24\x24\x24\x24\x24" 6363 - "\x24\x24\x24\x24", 6364 - .klen = 28, 6365 - .input = "\xfd\x1b\x4a\xe3\xbf\xf0\xad\x3d" 6366 - "\x06\xd3\x61\x27\xfd\x13\x9e\xde", 6367 - .ilen = 16, 6368 - .result = "\x24\x24\x24\x24\x24\x24\x24\x24" 6369 - "\x24\x24\x24\x24\x24\x24\x24\x24", 6370 - .rlen = 16, 6371 - }, { 6372 - .key = "\x25\x25\x25\x25\x25\x25\x25\x25" 6373 - "\x25\x25\x25\x25\x25\x25\x25\x25" 6374 - "\x25\x25\x25\x25\x25\x25\x25\x25" 6375 - "\x25\x25\x25\x25\x25\x25\x25\x25", 6376 - .klen = 32, 6377 - .input = "\x1a\x91\xfb\x2b\xb7\x78\x6b\xc4" 6378 - "\x17\xd9\xff\x40\x3b\x0e\xe5\xfe", 6379 - .ilen = 16, 6380 - .result = "\x25\x25\x25\x25\x25\x25\x25\x25" 6381 - "\x25\x25\x25\x25\x25\x25\x25\x25", 6382 - .rlen = 16, 6383 - }, { 6384 - .key = "\x35\x35\x35\x35\x35\x35\x35\x35" 6385 - "\x35\x35\x35\x35\x35\x35\x35\x35" 6386 - "\x35\x35\x35\x35\x35\x35\x35\x35" 6387 - "\x35\x35\x35\x35\x35\x35\x35\x35" 6388 - "\x35\x35\x35\x35\x35\x35\x35\x35", 6389 - .input = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97" 6390 - "\x9e\xc6\x84\x0f\x17\x21\x07\xee", 6391 - .klen = 40, 6392 - .ilen = 16, 6393 - .result = "\x35\x35\x35\x35\x35\x35\x35\x35" 6394 - "\x35\x35\x35\x35\x35\x35\x35\x35", 6395 - .rlen = 16, 6396 - }, 6397 - }; 6398 - 6399 - static struct cipher_testvec anubis_cbc_enc_tv_template[] = { 6400 - { 6401 - .key = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 6402 - "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe", 6403 - .klen = 16, 6404 - .input = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 6405 - "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 6406 - "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 6407 - "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe", 6408 - .ilen = 32, 6409 - .result = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f" 6410 - "\x08\xb7\x52\x8e\x6e\x6e\x86\x90" 6411 - "\x86\xd8\xb5\x6f\x98\x5e\x8a\x66" 6412 - "\x4f\x1f\x78\xa1\xbb\x37\xf1\xbe", 6413 - .rlen = 32, 6414 - }, { 6415 - .key = "\x35\x35\x35\x35\x35\x35\x35\x35" 6416 - "\x35\x35\x35\x35\x35\x35\x35\x35" 6417 - "\x35\x35\x35\x35\x35\x35\x35\x35" 6418 - "\x35\x35\x35\x35\x35\x35\x35\x35" 6419 - "\x35\x35\x35\x35\x35\x35\x35\x35", 6420 - .klen = 40, 6421 - .input = "\x35\x35\x35\x35\x35\x35\x35\x35" 6422 - "\x35\x35\x35\x35\x35\x35\x35\x35" 6423 - "\x35\x35\x35\x35\x35\x35\x35\x35" 6424 - "\x35\x35\x35\x35\x35\x35\x35\x35", 6425 - .ilen = 32, 6426 - .result = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97" 6427 - "\x9e\xc6\x84\x0f\x17\x21\x07\xee" 6428 - "\xa2\xbc\x06\x98\xc6\x4b\xda\x75" 6429 - "\x2e\xaa\xbe\x58\xce\x01\x5b\xc7", 6430 - .rlen = 32, 6431 - }, 6432 - }; 6433 - 6434 - static struct cipher_testvec anubis_cbc_dec_tv_template[] = { 6435 - { 6436 - .key = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 6437 - "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe", 6438 - .klen = 16, 6439 - .input = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f" 6440 - "\x08\xb7\x52\x8e\x6e\x6e\x86\x90" 6441 - "\x86\xd8\xb5\x6f\x98\x5e\x8a\x66" 6442 - "\x4f\x1f\x78\xa1\xbb\x37\xf1\xbe", 6443 - .ilen = 32, 6444 - .result = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 6445 - "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 6446 - "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 6447 - "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe", 6448 - .rlen = 32, 6449 - }, { 6450 - .key = "\x35\x35\x35\x35\x35\x35\x35\x35" 6451 - "\x35\x35\x35\x35\x35\x35\x35\x35" 6452 - "\x35\x35\x35\x35\x35\x35\x35\x35" 6453 - "\x35\x35\x35\x35\x35\x35\x35\x35" 6454 - "\x35\x35\x35\x35\x35\x35\x35\x35", 6455 - .klen = 40, 6456 - .input = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97" 6457 - "\x9e\xc6\x84\x0f\x17\x21\x07\xee" 6458 - "\xa2\xbc\x06\x98\xc6\x4b\xda\x75" 6459 - "\x2e\xaa\xbe\x58\xce\x01\x5b\xc7", 6460 - .ilen = 32, 6461 - .result = "\x35\x35\x35\x35\x35\x35\x35\x35" 6462 - "\x35\x35\x35\x35\x35\x35\x35\x35" 6463 - "\x35\x35\x35\x35\x35\x35\x35\x35" 6464 - "\x35\x35\x35\x35\x35\x35\x35\x35", 6465 - .rlen = 32, 6466 - }, 6467 - }; 6468 - 6469 - /* 6470 - * XETA test vectors 6471 - */ 6472 - #define XETA_ENC_TEST_VECTORS 4 6473 - #define XETA_DEC_TEST_VECTORS 4 6474 - 6475 - static struct cipher_testvec xeta_enc_tv_template[] = { 6476 - { 6477 - .key = zeroed_string, 6478 - .klen = 16, 6479 - .input = zeroed_string, 6480 - .ilen = 8, 6481 - .result = "\xaa\x22\x96\xe5\x6c\x61\xf3\x45", 6482 - .rlen = 8, 6483 - }, { 6484 - .key = "\x2b\x02\x05\x68\x06\x14\x49\x76" 6485 - "\x77\x5d\x0e\x26\x6c\x28\x78\x43", 6486 - .klen = 16, 6487 - .input = "\x74\x65\x73\x74\x20\x6d\x65\x2e", 6488 - .ilen = 8, 6489 - .result = "\x82\x3e\xeb\x35\xdc\xdd\xd9\xc3", 6490 - .rlen = 8, 6491 - }, { 6492 - .key = "\x09\x65\x43\x11\x66\x44\x39\x25" 6493 - "\x51\x3a\x16\x10\x0a\x08\x12\x6e", 6494 - .klen = 16, 6495 - .input = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74" 6496 - "\x65\x73\x74\x5f\x76\x65\x63\x74", 6497 - .ilen = 16, 6498 - .result = "\xe2\x04\xdb\xf2\x89\x85\x9e\xea" 6499 - "\x61\x35\xaa\xed\xb5\xcb\x71\x2c", 6500 - .rlen = 16, 6501 - }, { 6502 - .key = "\x4d\x76\x32\x17\x05\x3f\x75\x2c" 6503 - "\x5d\x04\x16\x36\x15\x72\x63\x2f", 6504 - .klen = 16, 6505 - .input = "\x54\x65\x61\x20\x69\x73\x20\x67" 6506 - "\x6f\x6f\x64\x20\x66\x6f\x72\x20" 6507 - "\x79\x6f\x75\x21\x21\x21\x20\x72" 6508 - "\x65\x61\x6c\x6c\x79\x21\x21\x21", 6509 - .ilen = 32, 6510 - .result = "\x0b\x03\xcd\x8a\xbe\x95\xfd\xb1" 6511 - "\xc1\x44\x91\x0b\xa5\xc9\x1b\xb4" 6512 - "\xa9\xda\x1e\x9e\xb1\x3e\x2a\x8f" 6513 - "\xea\xa5\x6a\x85\xd1\xf4\xa8\xa5", 6514 - .rlen = 32, 6515 - } 6516 - }; 6517 - 6518 - static struct cipher_testvec xeta_dec_tv_template[] = { 6519 - { 6520 - .key = zeroed_string, 6521 - .klen = 16, 6522 - .input = "\xaa\x22\x96\xe5\x6c\x61\xf3\x45", 6523 - .ilen = 8, 6524 - .result = zeroed_string, 6525 - .rlen = 8, 6526 - }, { 6527 - .key = "\x2b\x02\x05\x68\x06\x14\x49\x76" 6528 - "\x77\x5d\x0e\x26\x6c\x28\x78\x43", 6529 - .klen = 16, 6530 - .input = "\x82\x3e\xeb\x35\xdc\xdd\xd9\xc3", 6531 - .ilen = 8, 6532 - .result = "\x74\x65\x73\x74\x20\x6d\x65\x2e", 6533 - .rlen = 8, 6534 - }, { 6535 - .key = "\x09\x65\x43\x11\x66\x44\x39\x25" 6536 - "\x51\x3a\x16\x10\x0a\x08\x12\x6e", 6537 - .klen = 16, 6538 - .input = "\xe2\x04\xdb\xf2\x89\x85\x9e\xea" 6539 - "\x61\x35\xaa\xed\xb5\xcb\x71\x2c", 6540 - .ilen = 16, 6541 - .result = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74" 6542 - "\x65\x73\x74\x5f\x76\x65\x63\x74", 6543 - .rlen = 16, 6544 - }, { 6545 - .key = "\x4d\x76\x32\x17\x05\x3f\x75\x2c" 6546 - "\x5d\x04\x16\x36\x15\x72\x63\x2f", 6547 - .klen = 16, 6548 - .input = "\x0b\x03\xcd\x8a\xbe\x95\xfd\xb1" 6549 - "\xc1\x44\x91\x0b\xa5\xc9\x1b\xb4" 6550 - "\xa9\xda\x1e\x9e\xb1\x3e\x2a\x8f" 6551 - "\xea\xa5\x6a\x85\xd1\xf4\xa8\xa5", 6552 - .ilen = 32, 6553 - .result = "\x54\x65\x61\x20\x69\x73\x20\x67" 6554 - "\x6f\x6f\x64\x20\x66\x6f\x72\x20" 6555 - "\x79\x6f\x75\x21\x21\x21\x20\x72" 6556 - "\x65\x61\x6c\x6c\x79\x21\x21\x21", 6557 - .rlen = 32, 6558 - } 6559 - }; 6560 - 6561 - /* 6562 - * FCrypt test vectors 6563 - */ 6564 - #define FCRYPT_ENC_TEST_VECTORS ARRAY_SIZE(fcrypt_pcbc_enc_tv_template) 6565 - #define FCRYPT_DEC_TEST_VECTORS ARRAY_SIZE(fcrypt_pcbc_dec_tv_template) 6566 - 6567 - static struct cipher_testvec fcrypt_pcbc_enc_tv_template[] = { 6568 - { /* http://www.openafs.org/pipermail/openafs-devel/2000-December/005320.html */ 6569 - .key = "\x00\x00\x00\x00\x00\x00\x00\x00", 6570 - .klen = 8, 6571 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00", 6572 - .input = "\x00\x00\x00\x00\x00\x00\x00\x00", 6573 - .ilen = 8, 6574 - .result = "\x0E\x09\x00\xC7\x3E\xF7\xED\x41", 6575 - .rlen = 8, 6576 - }, { 6577 - .key = "\x11\x44\x77\xAA\xDD\x00\x33\x66", 6578 - .klen = 8, 6579 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00", 6580 - .input = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0", 6581 - .ilen = 8, 6582 - .result = "\xD8\xED\x78\x74\x77\xEC\x06\x80", 6583 - .rlen = 8, 6584 - }, { /* From Arla */ 6585 - .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87", 6586 - .klen = 8, 6587 - .iv = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6588 - .input = "The quick brown fox jumps over the lazy dogs.\0\0", 6589 - .ilen = 48, 6590 - .result = "\x00\xf0\x0e\x11\x75\xe6\x23\x82" 6591 - "\xee\xac\x98\x62\x44\x51\xe4\x84" 6592 - "\xc3\x59\xd8\xaa\x64\x60\xae\xf7" 6593 - "\xd2\xd9\x13\x79\x72\xa3\x45\x03" 6594 - "\x23\xb5\x62\xd7\x0c\xf5\x27\xd1" 6595 - "\xf8\x91\x3c\xac\x44\x22\x92\xef", 6596 - .rlen = 48, 6597 - }, { 6598 - .key = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6599 - .klen = 8, 6600 - .iv = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87", 6601 - .input = "The quick brown fox jumps over the lazy dogs.\0\0", 6602 - .ilen = 48, 6603 - .result = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c" 6604 - "\x01\x88\x7f\x3e\x31\x6e\x62\x9d" 6605 - "\xd8\xe0\x57\xa3\x06\x3a\x42\x58" 6606 - "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0" 6607 - "\x19\x89\x09\x1c\x2a\x8e\x8c\x94" 6608 - "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f", 6609 - .rlen = 48, 6610 - }, { /* split-page version */ 6611 - .key = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6612 - .klen = 8, 6613 - .iv = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87", 6614 - .input = "The quick brown fox jumps over the lazy dogs.\0\0", 6615 - .ilen = 48, 6616 - .result = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c" 6617 - "\x01\x88\x7f\x3e\x31\x6e\x62\x9d" 6618 - "\xd8\xe0\x57\xa3\x06\x3a\x42\x58" 6619 - "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0" 6620 - "\x19\x89\x09\x1c\x2a\x8e\x8c\x94" 6621 - "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f", 6622 - .rlen = 48, 6623 - .np = 2, 6624 - .tap = { 20, 28 }, 6625 - } 6626 - }; 6627 - 6628 - static struct cipher_testvec fcrypt_pcbc_dec_tv_template[] = { 6629 - { /* http://www.openafs.org/pipermail/openafs-devel/2000-December/005320.html */ 6630 - .key = "\x00\x00\x00\x00\x00\x00\x00\x00", 6631 - .klen = 8, 6632 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00", 6633 - .input = "\x0E\x09\x00\xC7\x3E\xF7\xED\x41", 6634 - .ilen = 8, 6635 - .result = "\x00\x00\x00\x00\x00\x00\x00\x00", 6636 - .rlen = 8, 6637 - }, { 6638 - .key = "\x11\x44\x77\xAA\xDD\x00\x33\x66", 6639 - .klen = 8, 6640 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00", 6641 - .input = "\xD8\xED\x78\x74\x77\xEC\x06\x80", 6642 - .ilen = 8, 6643 - .result = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0", 6644 - .rlen = 8, 6645 - }, { /* From Arla */ 6646 - .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87", 6647 - .klen = 8, 6648 - .iv = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6649 - .input = "\x00\xf0\x0e\x11\x75\xe6\x23\x82" 6650 - "\xee\xac\x98\x62\x44\x51\xe4\x84" 6651 - "\xc3\x59\xd8\xaa\x64\x60\xae\xf7" 6652 - "\xd2\xd9\x13\x79\x72\xa3\x45\x03" 6653 - "\x23\xb5\x62\xd7\x0c\xf5\x27\xd1" 6654 - "\xf8\x91\x3c\xac\x44\x22\x92\xef", 6655 - .ilen = 48, 6656 - .result = "The quick brown fox jumps over the lazy dogs.\0\0", 6657 - .rlen = 48, 6658 - }, { 6659 - .key = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6660 - .klen = 8, 6661 - .iv = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87", 6662 - .input = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c" 6663 - "\x01\x88\x7f\x3e\x31\x6e\x62\x9d" 6664 - "\xd8\xe0\x57\xa3\x06\x3a\x42\x58" 6665 - "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0" 6666 - "\x19\x89\x09\x1c\x2a\x8e\x8c\x94" 6667 - "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f", 6668 - .ilen = 48, 6669 - .result = "The quick brown fox jumps over the lazy dogs.\0\0", 6670 - .rlen = 48, 6671 - }, { /* split-page version */ 6672 - .key = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6673 - .klen = 8, 6674 - .iv = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87", 6675 - .input = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c" 6676 - "\x01\x88\x7f\x3e\x31\x6e\x62\x9d" 6677 - "\xd8\xe0\x57\xa3\x06\x3a\x42\x58" 6678 - "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0" 6679 - "\x19\x89\x09\x1c\x2a\x8e\x8c\x94" 6680 - "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f", 6681 - .ilen = 48, 6682 - .result = "The quick brown fox jumps over the lazy dogs.\0\0", 6683 - .rlen = 48, 6684 - .np = 2, 6685 - .tap = { 20, 28 }, 6686 - } 6687 - }; 6688 - 6689 - /* 6690 - * CAMELLIA test vectors. 6691 - */ 6692 - #define CAMELLIA_ENC_TEST_VECTORS 3 6693 - #define CAMELLIA_DEC_TEST_VECTORS 3 6694 - #define CAMELLIA_CBC_ENC_TEST_VECTORS 2 6695 - #define CAMELLIA_CBC_DEC_TEST_VECTORS 2 6696 - 6697 - static struct cipher_testvec camellia_enc_tv_template[] = { 6698 - { 6699 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 6700 - "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6701 - .klen = 16, 6702 - .input = "\x01\x23\x45\x67\x89\xab\xcd\xef" 6703 - "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6704 - .ilen = 16, 6705 - .result = "\x67\x67\x31\x38\x54\x96\x69\x73" 6706 - "\x08\x57\x06\x56\x48\xea\xbe\x43", 6707 - .rlen = 16, 6708 - }, { 6709 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 6710 - "\xfe\xdc\xba\x98\x76\x54\x32\x10" 6711 - "\x00\x11\x22\x33\x44\x55\x66\x77", 6712 - .klen = 24, 6713 - .input = "\x01\x23\x45\x67\x89\xab\xcd\xef" 6714 - "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6715 - .ilen = 16, 6716 - .result = "\xb4\x99\x34\x01\xb3\xe9\x96\xf8" 6717 - "\x4e\xe5\xce\xe7\xd7\x9b\x09\xb9", 6718 - .rlen = 16, 6719 - }, { 6720 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 6721 - "\xfe\xdc\xba\x98\x76\x54\x32\x10" 6722 - "\x00\x11\x22\x33\x44\x55\x66\x77" 6723 - "\x88\x99\xaa\xbb\xcc\xdd\xee\xff", 6724 - .klen = 32, 6725 - .input = "\x01\x23\x45\x67\x89\xab\xcd\xef" 6726 - "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6727 - .ilen = 16, 6728 - .result = "\x9a\xcc\x23\x7d\xff\x16\xd7\x6c" 6729 - "\x20\xef\x7c\x91\x9e\x3a\x75\x09", 6730 - .rlen = 16, 6731 - }, 6732 - }; 6733 - 6734 - static struct cipher_testvec camellia_dec_tv_template[] = { 6735 - { 6736 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 6737 - "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6738 - .klen = 16, 6739 - .input = "\x67\x67\x31\x38\x54\x96\x69\x73" 6740 - "\x08\x57\x06\x56\x48\xea\xbe\x43", 6741 - .ilen = 16, 6742 - .result = "\x01\x23\x45\x67\x89\xab\xcd\xef" 6743 - "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6744 - .rlen = 16, 6745 - }, { 6746 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 6747 - "\xfe\xdc\xba\x98\x76\x54\x32\x10" 6748 - "\x00\x11\x22\x33\x44\x55\x66\x77", 6749 - .klen = 24, 6750 - .input = "\xb4\x99\x34\x01\xb3\xe9\x96\xf8" 6751 - "\x4e\xe5\xce\xe7\xd7\x9b\x09\xb9", 6752 - .ilen = 16, 6753 - .result = "\x01\x23\x45\x67\x89\xab\xcd\xef" 6754 - "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6755 - .rlen = 16, 6756 - }, { 6757 - .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 6758 - "\xfe\xdc\xba\x98\x76\x54\x32\x10" 6759 - "\x00\x11\x22\x33\x44\x55\x66\x77" 6760 - "\x88\x99\xaa\xbb\xcc\xdd\xee\xff", 6761 - .klen = 32, 6762 - .input = "\x9a\xcc\x23\x7d\xff\x16\xd7\x6c" 6763 - "\x20\xef\x7c\x91\x9e\x3a\x75\x09", 6764 - .ilen = 16, 6765 - .result = "\x01\x23\x45\x67\x89\xab\xcd\xef" 6766 - "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6767 - .rlen = 16, 6768 - }, 6769 - }; 6770 - 6771 - static struct cipher_testvec camellia_cbc_enc_tv_template[] = { 6772 - { 6773 - .key = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b" 6774 - "\x51\x2e\x03\xd5\x34\x12\x00\x06", 6775 - .klen = 16, 6776 - .iv = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30" 6777 - "\xb4\x22\xda\x80\x2c\x9f\xac\x41", 6778 - .input = "Single block msg", 6779 - .ilen = 16, 6780 - .result = "\xea\x32\x12\x76\x3b\x50\x10\xe7" 6781 - "\x18\xf6\xfd\x5d\xf6\x8f\x13\x51", 6782 - .rlen = 16, 6783 - }, { 6784 - .key = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0" 6785 - "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a", 6786 - .klen = 16, 6787 - .iv = "\x56\x2e\x17\x99\x6d\x09\x3d\x28" 6788 - "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58", 6789 - .input = "\x00\x01\x02\x03\x04\x05\x06\x07" 6790 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 6791 - "\x10\x11\x12\x13\x14\x15\x16\x17" 6792 - "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 6793 - .ilen = 32, 6794 - .result = "\xa5\xdf\x6e\x50\xda\x70\x6c\x01" 6795 - "\x4a\xab\xf3\xf2\xd6\xfc\x6c\xfd" 6796 - "\x19\xb4\x3e\x57\x1c\x02\x5e\xa0" 6797 - "\x15\x78\xe0\x5e\xf2\xcb\x87\x16", 6798 - .rlen = 32, 6799 - }, 6800 - }; 6801 - 6802 - static struct cipher_testvec camellia_cbc_dec_tv_template[] = { 6803 - { 6804 - .key = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b" 6805 - "\x51\x2e\x03\xd5\x34\x12\x00\x06", 6806 - .klen = 16, 6807 - .iv = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30" 6808 - "\xb4\x22\xda\x80\x2c\x9f\xac\x41", 6809 - .input = "\xea\x32\x12\x76\x3b\x50\x10\xe7" 6810 - "\x18\xf6\xfd\x5d\xf6\x8f\x13\x51", 6811 - .ilen = 16, 6812 - .result = "Single block msg", 6813 - .rlen = 16, 6814 - }, { 6815 - .key = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0" 6816 - "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a", 6817 - .klen = 16, 6818 - .iv = "\x56\x2e\x17\x99\x6d\x09\x3d\x28" 6819 - "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58", 6820 - .input = "\xa5\xdf\x6e\x50\xda\x70\x6c\x01" 6821 - "\x4a\xab\xf3\xf2\xd6\xfc\x6c\xfd" 6822 - "\x19\xb4\x3e\x57\x1c\x02\x5e\xa0" 6823 - "\x15\x78\xe0\x5e\xf2\xcb\x87\x16", 6824 - .ilen = 32, 6825 - .result = "\x00\x01\x02\x03\x04\x05\x06\x07" 6826 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 6827 - "\x10\x11\x12\x13\x14\x15\x16\x17" 6828 - "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 6829 - .rlen = 32, 6830 - }, 6831 - }; 6832 - 6833 - /* 6834 - * SEED test vectors 6835 - */ 6836 - #define SEED_ENC_TEST_VECTORS 4 6837 - #define SEED_DEC_TEST_VECTORS 4 6838 - 6839 - static struct cipher_testvec seed_enc_tv_template[] = { 6840 - { 6841 - .key = zeroed_string, 6842 - .klen = 16, 6843 - .input = "\x00\x01\x02\x03\x04\x05\x06\x07" 6844 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 6845 - .ilen = 16, 6846 - .result = "\x5e\xba\xc6\xe0\x05\x4e\x16\x68" 6847 - "\x19\xaf\xf1\xcc\x6d\x34\x6c\xdb", 6848 - .rlen = 16, 6849 - }, { 6850 - .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 6851 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 6852 - .klen = 16, 6853 - .input = zeroed_string, 6854 - .ilen = 16, 6855 - .result = "\xc1\x1f\x22\xf2\x01\x40\x50\x50" 6856 - "\x84\x48\x35\x97\xe4\x37\x0f\x43", 6857 - .rlen = 16, 6858 - }, { 6859 - .key = "\x47\x06\x48\x08\x51\xe6\x1b\xe8" 6860 - "\x5d\x74\xbf\xb3\xfd\x95\x61\x85", 6861 - .klen = 16, 6862 - .input = "\x83\xa2\xf8\xa2\x88\x64\x1f\xb9" 6863 - "\xa4\xe9\xa5\xcc\x2f\x13\x1c\x7d", 6864 - .ilen = 16, 6865 - .result = "\xee\x54\xd1\x3e\xbc\xae\x70\x6d" 6866 - "\x22\x6b\xc3\x14\x2c\xd4\x0d\x4a", 6867 - .rlen = 16, 6868 - }, { 6869 - .key = "\x28\xdb\xc3\xbc\x49\xff\xd8\x7d" 6870 - "\xcf\xa5\x09\xb1\x1d\x42\x2b\xe7", 6871 - .klen = 16, 6872 - .input = "\xb4\x1e\x6b\xe2\xeb\xa8\x4a\x14" 6873 - "\x8e\x2e\xed\x84\x59\x3c\x5e\xc7", 6874 - .ilen = 16, 6875 - .result = "\x9b\x9b\x7b\xfc\xd1\x81\x3c\xb9" 6876 - "\x5d\x0b\x36\x18\xf4\x0f\x51\x22", 6877 - .rlen = 16, 6878 - } 6879 - }; 6880 - 6881 - static struct cipher_testvec seed_dec_tv_template[] = { 6882 - { 6883 - .key = zeroed_string, 6884 - .klen = 16, 6885 - .input = "\x5e\xba\xc6\xe0\x05\x4e\x16\x68" 6886 - "\x19\xaf\xf1\xcc\x6d\x34\x6c\xdb", 6887 - .ilen = 16, 6888 - .result = "\x00\x01\x02\x03\x04\x05\x06\x07" 6889 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 6890 - .rlen = 16, 6891 - }, { 6892 - .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 6893 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 6894 - .klen = 16, 6895 - .input = "\xc1\x1f\x22\xf2\x01\x40\x50\x50" 6896 - "\x84\x48\x35\x97\xe4\x37\x0f\x43", 6897 - .ilen = 16, 6898 - .result = zeroed_string, 6899 - .rlen = 16, 6900 - }, { 6901 - .key = "\x47\x06\x48\x08\x51\xe6\x1b\xe8" 6902 - "\x5d\x74\xbf\xb3\xfd\x95\x61\x85", 6903 - .klen = 16, 6904 - .input = "\xee\x54\xd1\x3e\xbc\xae\x70\x6d" 6905 - "\x22\x6b\xc3\x14\x2c\xd4\x0d\x4a", 6906 - .ilen = 16, 6907 - .result = "\x83\xa2\xf8\xa2\x88\x64\x1f\xb9" 6908 - "\xa4\xe9\xa5\xcc\x2f\x13\x1c\x7d", 6909 - .rlen = 16, 6910 - }, { 6911 - .key = "\x28\xdb\xc3\xbc\x49\xff\xd8\x7d" 6912 - "\xcf\xa5\x09\xb1\x1d\x42\x2b\xe7", 6913 - .klen = 16, 6914 - .input = "\x9b\x9b\x7b\xfc\xd1\x81\x3c\xb9" 6915 - "\x5d\x0b\x36\x18\xf4\x0f\x51\x22", 6916 - .ilen = 16, 6917 - .result = "\xb4\x1e\x6b\xe2\xeb\xa8\x4a\x14" 6918 - "\x8e\x2e\xed\x84\x59\x3c\x5e\xc7", 6919 - .rlen = 16, 6920 - } 6921 - }; 6922 - 6923 - #define SALSA20_STREAM_ENC_TEST_VECTORS 5 6924 - static struct cipher_testvec salsa20_stream_enc_tv_template[] = { 6925 - /* 6926 - * Testvectors from verified.test-vectors submitted to ECRYPT. 6927 - * They are truncated to size 39, 64, 111, 129 to test a variety 6928 - * of input length. 6929 - */ 6930 - { /* Set 3, vector 0 */ 6931 - .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 6932 - "\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F", 6933 - .klen = 16, 6934 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00", 6935 - .input = "\x00\x00\x00\x00\x00\x00\x00\x00" 6936 - "\x00\x00\x00\x00\x00\x00\x00\x00" 6937 - "\x00\x00\x00\x00\x00\x00\x00\x00" 6938 - "\x00\x00\x00\x00\x00\x00\x00\x00" 6939 - "\x00\x00\x00\x00\x00\x00\x00", 6940 - .ilen = 39, 6941 - .result = "\x2D\xD5\xC3\xF7\xBA\x2B\x20\xF7" 6942 - "\x68\x02\x41\x0C\x68\x86\x88\x89" 6943 - "\x5A\xD8\xC1\xBD\x4E\xA6\xC9\xB1" 6944 - "\x40\xFB\x9B\x90\xE2\x10\x49\xBF" 6945 - "\x58\x3F\x52\x79\x70\xEB\xC1", 6946 - .rlen = 39, 6947 - }, { /* Set 5, vector 0 */ 6948 - .key = "\x00\x00\x00\x00\x00\x00\x00\x00" 6949 - "\x00\x00\x00\x00\x00\x00\x00\x00", 6950 - .klen = 16, 6951 - .iv = "\x80\x00\x00\x00\x00\x00\x00\x00", 6952 - .input = "\x00\x00\x00\x00\x00\x00\x00\x00" 6953 - "\x00\x00\x00\x00\x00\x00\x00\x00" 6954 - "\x00\x00\x00\x00\x00\x00\x00\x00" 6955 - "\x00\x00\x00\x00\x00\x00\x00\x00" 6956 - "\x00\x00\x00\x00\x00\x00\x00\x00" 6957 - "\x00\x00\x00\x00\x00\x00\x00\x00" 6958 - "\x00\x00\x00\x00\x00\x00\x00\x00" 6959 - "\x00\x00\x00\x00\x00\x00\x00\x00", 6960 - .ilen = 64, 6961 - .result = "\xB6\x6C\x1E\x44\x46\xDD\x95\x57" 6962 - "\xE5\x78\xE2\x23\xB0\xB7\x68\x01" 6963 - "\x7B\x23\xB2\x67\xBB\x02\x34\xAE" 6964 - "\x46\x26\xBF\x44\x3F\x21\x97\x76" 6965 - "\x43\x6F\xB1\x9F\xD0\xE8\x86\x6F" 6966 - "\xCD\x0D\xE9\xA9\x53\x8F\x4A\x09" 6967 - "\xCA\x9A\xC0\x73\x2E\x30\xBC\xF9" 6968 - "\x8E\x4F\x13\xE4\xB9\xE2\x01\xD9", 6969 - .rlen = 64, 6970 - }, { /* Set 3, vector 27 */ 6971 - .key = "\x1B\x1C\x1D\x1E\x1F\x20\x21\x22" 6972 - "\x23\x24\x25\x26\x27\x28\x29\x2A" 6973 - "\x2B\x2C\x2D\x2E\x2F\x30\x31\x32" 6974 - "\x33\x34\x35\x36\x37\x38\x39\x3A", 6975 - .klen = 32, 6976 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00", 6977 - .input = "\x00\x00\x00\x00\x00\x00\x00\x00" 6978 - "\x00\x00\x00\x00\x00\x00\x00\x00" 6979 - "\x00\x00\x00\x00\x00\x00\x00\x00" 6980 - "\x00\x00\x00\x00\x00\x00\x00\x00" 6981 - "\x00\x00\x00\x00\x00\x00\x00\x00" 6982 - "\x00\x00\x00\x00\x00\x00\x00\x00" 6983 - "\x00\x00\x00\x00\x00\x00\x00\x00" 6984 - "\x00\x00\x00\x00\x00\x00\x00\x00" 6985 - "\x00\x00\x00\x00\x00\x00\x00\x00" 6986 - "\x00\x00\x00\x00\x00\x00\x00\x00" 6987 - "\x00\x00\x00\x00\x00\x00\x00\x00" 6988 - "\x00\x00\x00\x00\x00\x00\x00\x00" 6989 - "\x00\x00\x00\x00\x00\x00\x00\x00" 6990 - "\x00\x00\x00\x00\x00\x00\x00", 6991 - .ilen = 111, 6992 - .result = "\xAE\x39\x50\x8E\xAC\x9A\xEC\xE7" 6993 - "\xBF\x97\xBB\x20\xB9\xDE\xE4\x1F" 6994 - "\x87\xD9\x47\xF8\x28\x91\x35\x98" 6995 - "\xDB\x72\xCC\x23\x29\x48\x56\x5E" 6996 - "\x83\x7E\x0B\xF3\x7D\x5D\x38\x7B" 6997 - "\x2D\x71\x02\xB4\x3B\xB5\xD8\x23" 6998 - "\xB0\x4A\xDF\x3C\xEC\xB6\xD9\x3B" 6999 - "\x9B\xA7\x52\xBE\xC5\xD4\x50\x59" 7000 - "\x15\x14\xB4\x0E\x40\xE6\x53\xD1" 7001 - "\x83\x9C\x5B\xA0\x92\x29\x6B\x5E" 7002 - "\x96\x5B\x1E\x2F\xD3\xAC\xC1\x92" 7003 - "\xB1\x41\x3F\x19\x2F\xC4\x3B\xC6" 7004 - "\x95\x46\x45\x54\xE9\x75\x03\x08" 7005 - "\x44\xAF\xE5\x8A\x81\x12\x09", 7006 - .rlen = 111, 7007 - }, { /* Set 5, vector 27 */ 7008 - .key = "\x00\x00\x00\x00\x00\x00\x00\x00" 7009 - "\x00\x00\x00\x00\x00\x00\x00\x00" 7010 - "\x00\x00\x00\x00\x00\x00\x00\x00" 7011 - "\x00\x00\x00\x00\x00\x00\x00\x00", 7012 - .klen = 32, 7013 - .iv = "\x00\x00\x00\x10\x00\x00\x00\x00", 7014 - .input = "\x00\x00\x00\x00\x00\x00\x00\x00" 7015 - "\x00\x00\x00\x00\x00\x00\x00\x00" 7016 - "\x00\x00\x00\x00\x00\x00\x00\x00" 7017 - "\x00\x00\x00\x00\x00\x00\x00\x00" 7018 - "\x00\x00\x00\x00\x00\x00\x00\x00" 7019 - "\x00\x00\x00\x00\x00\x00\x00\x00" 7020 - "\x00\x00\x00\x00\x00\x00\x00\x00" 7021 - "\x00\x00\x00\x00\x00\x00\x00\x00" 7022 - "\x00\x00\x00\x00\x00\x00\x00\x00" 7023 - "\x00\x00\x00\x00\x00\x00\x00\x00" 7024 - "\x00\x00\x00\x00\x00\x00\x00\x00" 7025 - "\x00\x00\x00\x00\x00\x00\x00\x00" 7026 - "\x00\x00\x00\x00\x00\x00\x00\x00" 7027 - "\x00\x00\x00\x00\x00\x00\x00\x00" 7028 - "\x00\x00\x00\x00\x00\x00\x00\x00" 7029 - "\x00\x00\x00\x00\x00\x00\x00\x00" 7030 - "\x00", 7031 - .ilen = 129, 7032 - .result = "\xD2\xDB\x1A\x5C\xF1\xC1\xAC\xDB" 7033 - "\xE8\x1A\x7A\x43\x40\xEF\x53\x43" 7034 - "\x5E\x7F\x4B\x1A\x50\x52\x3F\x8D" 7035 - "\x28\x3D\xCF\x85\x1D\x69\x6E\x60" 7036 - "\xF2\xDE\x74\x56\x18\x1B\x84\x10" 7037 - "\xD4\x62\xBA\x60\x50\xF0\x61\xF2" 7038 - "\x1C\x78\x7F\xC1\x24\x34\xAF\x58" 7039 - "\xBF\x2C\x59\xCA\x90\x77\xF3\xB0" 7040 - "\x5B\x4A\xDF\x89\xCE\x2C\x2F\xFC" 7041 - "\x67\xF0\xE3\x45\xE8\xB3\xB3\x75" 7042 - "\xA0\x95\x71\xA1\x29\x39\x94\xCA" 7043 - "\x45\x2F\xBD\xCB\x10\xB6\xBE\x9F" 7044 - "\x8E\xF9\xB2\x01\x0A\x5A\x0A\xB7" 7045 - "\x6B\x9D\x70\x8E\x4B\xD6\x2F\xCD" 7046 - "\x2E\x40\x48\x75\xE9\xE2\x21\x45" 7047 - "\x0B\xC9\xB6\xB5\x66\xBC\x9A\x59" 7048 - "\x5A", 7049 - .rlen = 129, 7050 - }, { /* large test vector generated using Crypto++ */ 7051 - .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 7052 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 7053 - "\x10\x11\x12\x13\x14\x15\x16\x17" 7054 - "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 7055 - .klen = 32, 7056 - .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 7057 - "\x00\x00\x00\x00\x00\x00\x00\x00", 7058 - .input = 7059 - "\x00\x01\x02\x03\x04\x05\x06\x07" 7060 - "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 7061 - "\x10\x11\x12\x13\x14\x15\x16\x17" 7062 - "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 7063 - "\x20\x21\x22\x23\x24\x25\x26\x27" 7064 - "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 7065 - "\x30\x31\x32\x33\x34\x35\x36\x37" 7066 - "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 7067 - "\x40\x41\x42\x43\x44\x45\x46\x47" 7068 - "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 7069 - "\x50\x51\x52\x53\x54\x55\x56\x57" 7070 - "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 7071 - "\x60\x61\x62\x63\x64\x65\x66\x67" 7072 - "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 7073 - "\x70\x71\x72\x73\x74\x75\x76\x77" 7074 - "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 7075 - "\x80\x81\x82\x83\x84\x85\x86\x87" 7076 - "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 7077 - "\x90\x91\x92\x93\x94\x95\x96\x97" 7078 - "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 7079 - "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 7080 - "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 7081 - "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 7082 - "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 7083 - "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 7084 - "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 7085 - "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 7086 - "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 7087 - "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 7088 - "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 7089 - "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 7090 - "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff" 7091 - "\x00\x03\x06\x09\x0c\x0f\x12\x15" 7092 - "\x18\x1b\x1e\x21\x24\x27\x2a\x2d" 7093 - "\x30\x33\x36\x39\x3c\x3f\x42\x45" 7094 - "\x48\x4b\x4e\x51\x54\x57\x5a\x5d" 7095 - "\x60\x63\x66\x69\x6c\x6f\x72\x75" 7096 - "\x78\x7b\x7e\x81\x84\x87\x8a\x8d" 7097 - "\x90\x93\x96\x99\x9c\x9f\xa2\xa5" 7098 - "\xa8\xab\xae\xb1\xb4\xb7\xba\xbd" 7099 - "\xc0\xc3\xc6\xc9\xcc\xcf\xd2\xd5" 7100 - "\xd8\xdb\xde\xe1\xe4\xe7\xea\xed" 7101 - "\xf0\xf3\xf6\xf9\xfc\xff\x02\x05" 7102 - "\x08\x0b\x0e\x11\x14\x17\x1a\x1d" 7103 - "\x20\x23\x26\x29\x2c\x2f\x32\x35" 7104 - "\x38\x3b\x3e\x41\x44\x47\x4a\x4d" 7105 - "\x50\x53\x56\x59\x5c\x5f\x62\x65" 7106 - "\x68\x6b\x6e\x71\x74\x77\x7a\x7d" 7107 - "\x80\x83\x86\x89\x8c\x8f\x92\x95" 7108 - "\x98\x9b\x9e\xa1\xa4\xa7\xaa\xad" 7109 - "\xb0\xb3\xb6\xb9\xbc\xbf\xc2\xc5" 7110 - "\xc8\xcb\xce\xd1\xd4\xd7\xda\xdd" 7111 - "\xe0\xe3\xe6\xe9\xec\xef\xf2\xf5" 7112 - "\xf8\xfb\xfe\x01\x04\x07\x0a\x0d" 7113 - "\x10\x13\x16\x19\x1c\x1f\x22\x25" 7114 - "\x28\x2b\x2e\x31\x34\x37\x3a\x3d" 7115 - "\x40\x43\x46\x49\x4c\x4f\x52\x55" 7116 - "\x58\x5b\x5e\x61\x64\x67\x6a\x6d" 7117 - "\x70\x73\x76\x79\x7c\x7f\x82\x85" 7118 - "\x88\x8b\x8e\x91\x94\x97\x9a\x9d" 7119 - "\xa0\xa3\xa6\xa9\xac\xaf\xb2\xb5" 7120 - "\xb8\xbb\xbe\xc1\xc4\xc7\xca\xcd" 7121 - "\xd0\xd3\xd6\xd9\xdc\xdf\xe2\xe5" 7122 - "\xe8\xeb\xee\xf1\xf4\xf7\xfa\xfd" 7123 - "\x00\x05\x0a\x0f\x14\x19\x1e\x23" 7124 - "\x28\x2d\x32\x37\x3c\x41\x46\x4b" 7125 - "\x50\x55\x5a\x5f\x64\x69\x6e\x73" 7126 - "\x78\x7d\x82\x87\x8c\x91\x96\x9b" 7127 - "\xa0\xa5\xaa\xaf\xb4\xb9\xbe\xc3" 7128 - "\xc8\xcd\xd2\xd7\xdc\xe1\xe6\xeb" 7129 - "\xf0\xf5\xfa\xff\x04\x09\x0e\x13" 7130 - "\x18\x1d\x22\x27\x2c\x31\x36\x3b" 7131 - "\x40\x45\x4a\x4f\x54\x59\x5e\x63" 7132 - "\x68\x6d\x72\x77\x7c\x81\x86\x8b" 7133 - "\x90\x95\x9a\x9f\xa4\xa9\xae\xb3" 7134 - "\xb8\xbd\xc2\xc7\xcc\xd1\xd6\xdb" 7135 - "\xe0\xe5\xea\xef\xf4\xf9\xfe\x03" 7136 - "\x08\x0d\x12\x17\x1c\x21\x26\x2b" 7137 - "\x30\x35\x3a\x3f\x44\x49\x4e\x53" 7138 - "\x58\x5d\x62\x67\x6c\x71\x76\x7b" 7139 - "\x80\x85\x8a\x8f\x94\x99\x9e\xa3" 7140 - "\xa8\xad\xb2\xb7\xbc\xc1\xc6\xcb" 7141 - "\xd0\xd5\xda\xdf\xe4\xe9\xee\xf3" 7142 - "\xf8\xfd\x02\x07\x0c\x11\x16\x1b" 7143 - "\x20\x25\x2a\x2f\x34\x39\x3e\x43" 7144 - "\x48\x4d\x52\x57\x5c\x61\x66\x6b" 7145 - "\x70\x75\x7a\x7f\x84\x89\x8e\x93" 7146 - "\x98\x9d\xa2\xa7\xac\xb1\xb6\xbb" 7147 - "\xc0\xc5\xca\xcf\xd4\xd9\xde\xe3" 7148 - "\xe8\xed\xf2\xf7\xfc\x01\x06\x0b" 7149 - "\x10\x15\x1a\x1f\x24\x29\x2e\x33" 7150 - "\x38\x3d\x42\x47\x4c\x51\x56\x5b" 7151 - "\x60\x65\x6a\x6f\x74\x79\x7e\x83" 7152 - "\x88\x8d\x92\x97\x9c\xa1\xa6\xab" 7153 - "\xb0\xb5\xba\xbf\xc4\xc9\xce\xd3" 7154 - "\xd8\xdd\xe2\xe7\xec\xf1\xf6\xfb" 7155 - "\x00\x07\x0e\x15\x1c\x23\x2a\x31" 7156 - "\x38\x3f\x46\x4d\x54\x5b\x62\x69" 7157 - "\x70\x77\x7e\x85\x8c\x93\x9a\xa1" 7158 - "\xa8\xaf\xb6\xbd\xc4\xcb\xd2\xd9" 7159 - "\xe0\xe7\xee\xf5\xfc\x03\x0a\x11" 7160 - "\x18\x1f\x26\x2d\x34\x3b\x42\x49" 7161 - "\x50\x57\x5e\x65\x6c\x73\x7a\x81" 7162 - "\x88\x8f\x96\x9d\xa4\xab\xb2\xb9" 7163 - "\xc0\xc7\xce\xd5\xdc\xe3\xea\xf1" 7164 - "\xf8\xff\x06\x0d\x14\x1b\x22\x29" 7165 - "\x30\x37\x3e\x45\x4c\x53\x5a\x61" 7166 - "\x68\x6f\x76\x7d\x84\x8b\x92\x99" 7167 - "\xa0\xa7\xae\xb5\xbc\xc3\xca\xd1" 7168 - "\xd8\xdf\xe6\xed\xf4\xfb\x02\x09" 7169 - "\x10\x17\x1e\x25\x2c\x33\x3a\x41" 7170 - "\x48\x4f\x56\x5d\x64\x6b\x72\x79" 7171 - "\x80\x87\x8e\x95\x9c\xa3\xaa\xb1" 7172 - "\xb8\xbf\xc6\xcd\xd4\xdb\xe2\xe9" 7173 - "\xf0\xf7\xfe\x05\x0c\x13\x1a\x21" 7174 - "\x28\x2f\x36\x3d\x44\x4b\x52\x59" 7175 - "\x60\x67\x6e\x75\x7c\x83\x8a\x91" 7176 - "\x98\x9f\xa6\xad\xb4\xbb\xc2\xc9" 7177 - "\xd0\xd7\xde\xe5\xec\xf3\xfa\x01" 7178 - "\x08\x0f\x16\x1d\x24\x2b\x32\x39" 7179 - "\x40\x47\x4e\x55\x5c\x63\x6a\x71" 7180 - "\x78\x7f\x86\x8d\x94\x9b\xa2\xa9" 7181 - "\xb0\xb7\xbe\xc5\xcc\xd3\xda\xe1" 7182 - "\xe8\xef\xf6\xfd\x04\x0b\x12\x19" 7183 - "\x20\x27\x2e\x35\x3c\x43\x4a\x51" 7184 - "\x58\x5f\x66\x6d\x74\x7b\x82\x89" 7185 - "\x90\x97\x9e\xa5\xac\xb3\xba\xc1" 7186 - "\xc8\xcf\xd6\xdd\xe4\xeb\xf2\xf9" 7187 - "\x00\x09\x12\x1b\x24\x2d\x36\x3f" 7188 - "\x48\x51\x5a\x63\x6c\x75\x7e\x87" 7189 - "\x90\x99\xa2\xab\xb4\xbd\xc6\xcf" 7190 - "\xd8\xe1\xea\xf3\xfc\x05\x0e\x17" 7191 - "\x20\x29\x32\x3b\x44\x4d\x56\x5f" 7192 - "\x68\x71\x7a\x83\x8c\x95\x9e\xa7" 7193 - "\xb0\xb9\xc2\xcb\xd4\xdd\xe6\xef" 7194 - "\xf8\x01\x0a\x13\x1c\x25\x2e\x37" 7195 - "\x40\x49\x52\x5b\x64\x6d\x76\x7f" 7196 - "\x88\x91\x9a\xa3\xac\xb5\xbe\xc7" 7197 - "\xd0\xd9\xe2\xeb\xf4\xfd\x06\x0f" 7198 - "\x18\x21\x2a\x33\x3c\x45\x4e\x57" 7199 - "\x60\x69\x72\x7b\x84\x8d\x96\x9f" 7200 - "\xa8\xb1\xba\xc3\xcc\xd5\xde\xe7" 7201 - "\xf0\xf9\x02\x0b\x14\x1d\x26\x2f" 7202 - "\x38\x41\x4a\x53\x5c\x65\x6e\x77" 7203 - "\x80\x89\x92\x9b\xa4\xad\xb6\xbf" 7204 - "\xc8\xd1\xda\xe3\xec\xf5\xfe\x07" 7205 - "\x10\x19\x22\x2b\x34\x3d\x46\x4f" 7206 - "\x58\x61\x6a\x73\x7c\x85\x8e\x97" 7207 - "\xa0\xa9\xb2\xbb\xc4\xcd\xd6\xdf" 7208 - "\xe8\xf1\xfa\x03\x0c\x15\x1e\x27" 7209 - "\x30\x39\x42\x4b\x54\x5d\x66\x6f" 7210 - "\x78\x81\x8a\x93\x9c\xa5\xae\xb7" 7211 - "\xc0\xc9\xd2\xdb\xe4\xed\xf6\xff" 7212 - "\x08\x11\x1a\x23\x2c\x35\x3e\x47" 7213 - "\x50\x59\x62\x6b\x74\x7d\x86\x8f" 7214 - "\x98\xa1\xaa\xb3\xbc\xc5\xce\xd7" 7215 - "\xe0\xe9\xf2\xfb\x04\x0d\x16\x1f" 7216 - "\x28\x31\x3a\x43\x4c\x55\x5e\x67" 7217 - "\x70\x79\x82\x8b\x94\x9d\xa6\xaf" 7218 - "\xb8\xc1\xca\xd3\xdc\xe5\xee\xf7" 7219 - "\x00\x0b\x16\x21\x2c\x37\x42\x4d" 7220 - "\x58\x63\x6e\x79\x84\x8f\x9a\xa5" 7221 - "\xb0\xbb\xc6\xd1\xdc\xe7\xf2\xfd" 7222 - "\x08\x13\x1e\x29\x34\x3f\x4a\x55" 7223 - "\x60\x6b\x76\x81\x8c\x97\xa2\xad" 7224 - "\xb8\xc3\xce\xd9\xe4\xef\xfa\x05" 7225 - "\x10\x1b\x26\x31\x3c\x47\x52\x5d" 7226 - "\x68\x73\x7e\x89\x94\x9f\xaa\xb5" 7227 - "\xc0\xcb\xd6\xe1\xec\xf7\x02\x0d" 7228 - "\x18\x23\x2e\x39\x44\x4f\x5a\x65" 7229 - "\x70\x7b\x86\x91\x9c\xa7\xb2\xbd" 7230 - "\xc8\xd3\xde\xe9\xf4\xff\x0a\x15" 7231 - "\x20\x2b\x36\x41\x4c\x57\x62\x6d" 7232 - "\x78\x83\x8e\x99\xa4\xaf\xba\xc5" 7233 - "\xd0\xdb\xe6\xf1\xfc\x07\x12\x1d" 7234 - "\x28\x33\x3e\x49\x54\x5f\x6a\x75" 7235 - "\x80\x8b\x96\xa1\xac\xb7\xc2\xcd" 7236 - "\xd8\xe3\xee\xf9\x04\x0f\x1a\x25" 7237 - "\x30\x3b\x46\x51\x5c\x67\x72\x7d" 7238 - "\x88\x93\x9e\xa9\xb4\xbf\xca\xd5" 7239 - "\xe0\xeb\xf6\x01\x0c\x17\x22\x2d" 7240 - "\x38\x43\x4e\x59\x64\x6f\x7a\x85" 7241 - "\x90\x9b\xa6\xb1\xbc\xc7\xd2\xdd" 7242 - "\xe8\xf3\xfe\x09\x14\x1f\x2a\x35" 7243 - "\x40\x4b\x56\x61\x6c\x77\x82\x8d" 7244 - "\x98\xa3\xae\xb9\xc4\xcf\xda\xe5" 7245 - "\xf0\xfb\x06\x11\x1c\x27\x32\x3d" 7246 - "\x48\x53\x5e\x69\x74\x7f\x8a\x95" 7247 - "\xa0\xab\xb6\xc1\xcc\xd7\xe2\xed" 7248 - "\xf8\x03\x0e\x19\x24\x2f\x3a\x45" 7249 - "\x50\x5b\x66\x71\x7c\x87\x92\x9d" 7250 - "\xa8\xb3\xbe\xc9\xd4\xdf\xea\xf5" 7251 - "\x00\x0d\x1a\x27\x34\x41\x4e\x5b" 7252 - "\x68\x75\x82\x8f\x9c\xa9\xb6\xc3" 7253 - "\xd0\xdd\xea\xf7\x04\x11\x1e\x2b" 7254 - "\x38\x45\x52\x5f\x6c\x79\x86\x93" 7255 - "\xa0\xad\xba\xc7\xd4\xe1\xee\xfb" 7256 - "\x08\x15\x22\x2f\x3c\x49\x56\x63" 7257 - "\x70\x7d\x8a\x97\xa4\xb1\xbe\xcb" 7258 - "\xd8\xe5\xf2\xff\x0c\x19\x26\x33" 7259 - "\x40\x4d\x5a\x67\x74\x81\x8e\x9b" 7260 - "\xa8\xb5\xc2\xcf\xdc\xe9\xf6\x03" 7261 - "\x10\x1d\x2a\x37\x44\x51\x5e\x6b" 7262 - "\x78\x85\x92\x9f\xac\xb9\xc6\xd3" 7263 - "\xe0\xed\xfa\x07\x14\x21\x2e\x3b" 7264 - "\x48\x55\x62\x6f\x7c\x89\x96\xa3" 7265 - "\xb0\xbd\xca\xd7\xe4\xf1\xfe\x0b" 7266 - "\x18\x25\x32\x3f\x4c\x59\x66\x73" 7267 - "\x80\x8d\x9a\xa7\xb4\xc1\xce\xdb" 7268 - "\xe8\xf5\x02\x0f\x1c\x29\x36\x43" 7269 - "\x50\x5d\x6a\x77\x84\x91\x9e\xab" 7270 - "\xb8\xc5\xd2\xdf\xec\xf9\x06\x13" 7271 - "\x20\x2d\x3a\x47\x54\x61\x6e\x7b" 7272 - "\x88\x95\xa2\xaf\xbc\xc9\xd6\xe3" 7273 - "\xf0\xfd\x0a\x17\x24\x31\x3e\x4b" 7274 - "\x58\x65\x72\x7f\x8c\x99\xa6\xb3" 7275 - "\xc0\xcd\xda\xe7\xf4\x01\x0e\x1b" 7276 - "\x28\x35\x42\x4f\x5c\x69\x76\x83" 7277 - "\x90\x9d\xaa\xb7\xc4\xd1\xde\xeb" 7278 - "\xf8\x05\x12\x1f\x2c\x39\x46\x53" 7279 - "\x60\x6d\x7a\x87\x94\xa1\xae\xbb" 7280 - "\xc8\xd5\xe2\xef\xfc\x09\x16\x23" 7281 - "\x30\x3d\x4a\x57\x64\x71\x7e\x8b" 7282 - "\x98\xa5\xb2\xbf\xcc\xd9\xe6\xf3" 7283 - "\x00\x0f\x1e\x2d\x3c\x4b\x5a\x69" 7284 - "\x78\x87\x96\xa5\xb4\xc3\xd2\xe1" 7285 - "\xf0\xff\x0e\x1d\x2c\x3b\x4a\x59" 7286 - "\x68\x77\x86\x95\xa4\xb3\xc2\xd1" 7287 - "\xe0\xef\xfe\x0d\x1c\x2b\x3a\x49" 7288 - "\x58\x67\x76\x85\x94\xa3\xb2\xc1" 7289 - "\xd0\xdf\xee\xfd\x0c\x1b\x2a\x39" 7290 - "\x48\x57\x66\x75\x84\x93\xa2\xb1" 7291 - "\xc0\xcf\xde\xed\xfc\x0b\x1a\x29" 7292 - "\x38\x47\x56\x65\x74\x83\x92\xa1" 7293 - "\xb0\xbf\xce\xdd\xec\xfb\x0a\x19" 7294 - "\x28\x37\x46\x55\x64\x73\x82\x91" 7295 - "\xa0\xaf\xbe\xcd\xdc\xeb\xfa\x09" 7296 - "\x18\x27\x36\x45\x54\x63\x72\x81" 7297 - "\x90\x9f\xae\xbd\xcc\xdb\xea\xf9" 7298 - "\x08\x17\x26\x35\x44\x53\x62\x71" 7299 - "\x80\x8f\x9e\xad\xbc\xcb\xda\xe9" 7300 - "\xf8\x07\x16\x25\x34\x43\x52\x61" 7301 - "\x70\x7f\x8e\x9d\xac\xbb\xca\xd9" 7302 - "\xe8\xf7\x06\x15\x24\x33\x42\x51" 7303 - "\x60\x6f\x7e\x8d\x9c\xab\xba\xc9" 7304 - "\xd8\xe7\xf6\x05\x14\x23\x32\x41" 7305 - "\x50\x5f\x6e\x7d\x8c\x9b\xaa\xb9" 7306 - "\xc8\xd7\xe6\xf5\x04\x13\x22\x31" 7307 - "\x40\x4f\x5e\x6d\x7c\x8b\x9a\xa9" 7308 - "\xb8\xc7\xd6\xe5\xf4\x03\x12\x21" 7309 - "\x30\x3f\x4e\x5d\x6c\x7b\x8a\x99" 7310 - "\xa8\xb7\xc6\xd5\xe4\xf3\x02\x11" 7311 - "\x20\x2f\x3e\x4d\x5c\x6b\x7a\x89" 7312 - "\x98\xa7\xb6\xc5\xd4\xe3\xf2\x01" 7313 - "\x10\x1f\x2e\x3d\x4c\x5b\x6a\x79" 7314 - "\x88\x97\xa6\xb5\xc4\xd3\xe2\xf1" 7315 - "\x00\x11\x22\x33\x44\x55\x66\x77" 7316 - "\x88\x99\xaa\xbb\xcc\xdd\xee\xff" 7317 - "\x10\x21\x32\x43\x54\x65\x76\x87" 7318 - "\x98\xa9\xba\xcb\xdc\xed\xfe\x0f" 7319 - "\x20\x31\x42\x53\x64\x75\x86\x97" 7320 - "\xa8\xb9\xca\xdb\xec\xfd\x0e\x1f" 7321 - "\x30\x41\x52\x63\x74\x85\x96\xa7" 7322 - "\xb8\xc9\xda\xeb\xfc\x0d\x1e\x2f" 7323 - "\x40\x51\x62\x73\x84\x95\xa6\xb7" 7324 - "\xc8\xd9\xea\xfb\x0c\x1d\x2e\x3f" 7325 - "\x50\x61\x72\x83\x94\xa5\xb6\xc7" 7326 - "\xd8\xe9\xfa\x0b\x1c\x2d\x3e\x4f" 7327 - "\x60\x71\x82\x93\xa4\xb5\xc6\xd7" 7328 - "\xe8\xf9\x0a\x1b\x2c\x3d\x4e\x5f" 7329 - "\x70\x81\x92\xa3\xb4\xc5\xd6\xe7" 7330 - "\xf8\x09\x1a\x2b\x3c\x4d\x5e\x6f" 7331 - "\x80\x91\xa2\xb3\xc4\xd5\xe6\xf7" 7332 - "\x08\x19\x2a\x3b\x4c\x5d\x6e\x7f" 7333 - "\x90\xa1\xb2\xc3\xd4\xe5\xf6\x07" 7334 - "\x18\x29\x3a\x4b\x5c\x6d\x7e\x8f" 7335 - "\xa0\xb1\xc2\xd3\xe4\xf5\x06\x17" 7336 - "\x28\x39\x4a\x5b\x6c\x7d\x8e\x9f" 7337 - "\xb0\xc1\xd2\xe3\xf4\x05\x16\x27" 7338 - "\x38\x49\x5a\x6b\x7c\x8d\x9e\xaf" 7339 - "\xc0\xd1\xe2\xf3\x04\x15\x26\x37" 7340 - "\x48\x59\x6a\x7b\x8c\x9d\xae\xbf" 7341 - "\xd0\xe1\xf2\x03\x14\x25\x36\x47" 7342 - "\x58\x69\x7a\x8b\x9c\xad\xbe\xcf" 7343 - "\xe0\xf1\x02\x13\x24\x35\x46\x57" 7344 - "\x68\x79\x8a\x9b\xac\xbd\xce\xdf" 7345 - "\xf0\x01\x12\x23\x34\x45\x56\x67" 7346 - "\x78\x89\x9a\xab\xbc\xcd\xde\xef" 7347 - "\x00\x13\x26\x39\x4c\x5f\x72\x85" 7348 - "\x98\xab\xbe\xd1\xe4\xf7\x0a\x1d" 7349 - "\x30\x43\x56\x69\x7c\x8f\xa2\xb5" 7350 - "\xc8\xdb\xee\x01\x14\x27\x3a\x4d" 7351 - "\x60\x73\x86\x99\xac\xbf\xd2\xe5" 7352 - "\xf8\x0b\x1e\x31\x44\x57\x6a\x7d" 7353 - "\x90\xa3\xb6\xc9\xdc\xef\x02\x15" 7354 - "\x28\x3b\x4e\x61\x74\x87\x9a\xad" 7355 - "\xc0\xd3\xe6\xf9\x0c\x1f\x32\x45" 7356 - "\x58\x6b\x7e\x91\xa4\xb7\xca\xdd" 7357 - "\xf0\x03\x16\x29\x3c\x4f\x62\x75" 7358 - "\x88\x9b\xae\xc1\xd4\xe7\xfa\x0d" 7359 - "\x20\x33\x46\x59\x6c\x7f\x92\xa5" 7360 - "\xb8\xcb\xde\xf1\x04\x17\x2a\x3d" 7361 - "\x50\x63\x76\x89\x9c\xaf\xc2\xd5" 7362 - "\xe8\xfb\x0e\x21\x34\x47\x5a\x6d" 7363 - "\x80\x93\xa6\xb9\xcc\xdf\xf2\x05" 7364 - "\x18\x2b\x3e\x51\x64\x77\x8a\x9d" 7365 - "\xb0\xc3\xd6\xe9\xfc\x0f\x22\x35" 7366 - "\x48\x5b\x6e\x81\x94\xa7\xba\xcd" 7367 - "\xe0\xf3\x06\x19\x2c\x3f\x52\x65" 7368 - "\x78\x8b\x9e\xb1\xc4\xd7\xea\xfd" 7369 - "\x10\x23\x36\x49\x5c\x6f\x82\x95" 7370 - "\xa8\xbb\xce\xe1\xf4\x07\x1a\x2d" 7371 - "\x40\x53\x66\x79\x8c\x9f\xb2\xc5" 7372 - "\xd8\xeb\xfe\x11\x24\x37\x4a\x5d" 7373 - "\x70\x83\x96\xa9\xbc\xcf\xe2\xf5" 7374 - "\x08\x1b\x2e\x41\x54\x67\x7a\x8d" 7375 - "\xa0\xb3\xc6\xd9\xec\xff\x12\x25" 7376 - "\x38\x4b\x5e\x71\x84\x97\xaa\xbd" 7377 - "\xd0\xe3\xf6\x09\x1c\x2f\x42\x55" 7378 - "\x68\x7b\x8e\xa1\xb4\xc7\xda\xed" 7379 - "\x00\x15\x2a\x3f\x54\x69\x7e\x93" 7380 - "\xa8\xbd\xd2\xe7\xfc\x11\x26\x3b" 7381 - "\x50\x65\x7a\x8f\xa4\xb9\xce\xe3" 7382 - "\xf8\x0d\x22\x37\x4c\x61\x76\x8b" 7383 - "\xa0\xb5\xca\xdf\xf4\x09\x1e\x33" 7384 - "\x48\x5d\x72\x87\x9c\xb1\xc6\xdb" 7385 - "\xf0\x05\x1a\x2f\x44\x59\x6e\x83" 7386 - "\x98\xad\xc2\xd7\xec\x01\x16\x2b" 7387 - "\x40\x55\x6a\x7f\x94\xa9\xbe\xd3" 7388 - "\xe8\xfd\x12\x27\x3c\x51\x66\x7b" 7389 - "\x90\xa5\xba\xcf\xe4\xf9\x0e\x23" 7390 - "\x38\x4d\x62\x77\x8c\xa1\xb6\xcb" 7391 - "\xe0\xf5\x0a\x1f\x34\x49\x5e\x73" 7392 - "\x88\x9d\xb2\xc7\xdc\xf1\x06\x1b" 7393 - "\x30\x45\x5a\x6f\x84\x99\xae\xc3" 7394 - "\xd8\xed\x02\x17\x2c\x41\x56\x6b" 7395 - "\x80\x95\xaa\xbf\xd4\xe9\xfe\x13" 7396 - "\x28\x3d\x52\x67\x7c\x91\xa6\xbb" 7397 - "\xd0\xe5\xfa\x0f\x24\x39\x4e\x63" 7398 - "\x78\x8d\xa2\xb7\xcc\xe1\xf6\x0b" 7399 - "\x20\x35\x4a\x5f\x74\x89\x9e\xb3" 7400 - "\xc8\xdd\xf2\x07\x1c\x31\x46\x5b" 7401 - "\x70\x85\x9a\xaf\xc4\xd9\xee\x03" 7402 - "\x18\x2d\x42\x57\x6c\x81\x96\xab" 7403 - "\xc0\xd5\xea\xff\x14\x29\x3e\x53" 7404 - "\x68\x7d\x92\xa7\xbc\xd1\xe6\xfb" 7405 - "\x10\x25\x3a\x4f\x64\x79\x8e\xa3" 7406 - "\xb8\xcd\xe2\xf7\x0c\x21\x36\x4b" 7407 - "\x60\x75\x8a\x9f\xb4\xc9\xde\xf3" 7408 - "\x08\x1d\x32\x47\x5c\x71\x86\x9b" 7409 - "\xb0\xc5\xda\xef\x04\x19\x2e\x43" 7410 - "\x58\x6d\x82\x97\xac\xc1\xd6\xeb" 7411 - "\x00\x17\x2e\x45\x5c\x73\x8a\xa1" 7412 - "\xb8\xcf\xe6\xfd\x14\x2b\x42\x59" 7413 - "\x70\x87\x9e\xb5\xcc\xe3\xfa\x11" 7414 - "\x28\x3f\x56\x6d\x84\x9b\xb2\xc9" 7415 - "\xe0\xf7\x0e\x25\x3c\x53\x6a\x81" 7416 - "\x98\xaf\xc6\xdd\xf4\x0b\x22\x39" 7417 - "\x50\x67\x7e\x95\xac\xc3\xda\xf1" 7418 - "\x08\x1f\x36\x4d\x64\x7b\x92\xa9" 7419 - "\xc0\xd7\xee\x05\x1c\x33\x4a\x61" 7420 - "\x78\x8f\xa6\xbd\xd4\xeb\x02\x19" 7421 - "\x30\x47\x5e\x75\x8c\xa3\xba\xd1" 7422 - "\xe8\xff\x16\x2d\x44\x5b\x72\x89" 7423 - "\xa0\xb7\xce\xe5\xfc\x13\x2a\x41" 7424 - "\x58\x6f\x86\x9d\xb4\xcb\xe2\xf9" 7425 - "\x10\x27\x3e\x55\x6c\x83\x9a\xb1" 7426 - "\xc8\xdf\xf6\x0d\x24\x3b\x52\x69" 7427 - "\x80\x97\xae\xc5\xdc\xf3\x0a\x21" 7428 - "\x38\x4f\x66\x7d\x94\xab\xc2\xd9" 7429 - "\xf0\x07\x1e\x35\x4c\x63\x7a\x91" 7430 - "\xa8\xbf\xd6\xed\x04\x1b\x32\x49" 7431 - "\x60\x77\x8e\xa5\xbc\xd3\xea\x01" 7432 - "\x18\x2f\x46\x5d\x74\x8b\xa2\xb9" 7433 - "\xd0\xe7\xfe\x15\x2c\x43\x5a\x71" 7434 - "\x88\x9f\xb6\xcd\xe4\xfb\x12\x29" 7435 - "\x40\x57\x6e\x85\x9c\xb3\xca\xe1" 7436 - "\xf8\x0f\x26\x3d\x54\x6b\x82\x99" 7437 - "\xb0\xc7\xde\xf5\x0c\x23\x3a\x51" 7438 - "\x68\x7f\x96\xad\xc4\xdb\xf2\x09" 7439 - "\x20\x37\x4e\x65\x7c\x93\xaa\xc1" 7440 - "\xd8\xef\x06\x1d\x34\x4b\x62\x79" 7441 - "\x90\xa7\xbe\xd5\xec\x03\x1a\x31" 7442 - "\x48\x5f\x76\x8d\xa4\xbb\xd2\xe9" 7443 - "\x00\x19\x32\x4b\x64\x7d\x96\xaf" 7444 - "\xc8\xe1\xfa\x13\x2c\x45\x5e\x77" 7445 - "\x90\xa9\xc2\xdb\xf4\x0d\x26\x3f" 7446 - "\x58\x71\x8a\xa3\xbc\xd5\xee\x07" 7447 - "\x20\x39\x52\x6b\x84\x9d\xb6\xcf" 7448 - "\xe8\x01\x1a\x33\x4c\x65\x7e\x97" 7449 - "\xb0\xc9\xe2\xfb\x14\x2d\x46\x5f" 7450 - "\x78\x91\xaa\xc3\xdc\xf5\x0e\x27" 7451 - "\x40\x59\x72\x8b\xa4\xbd\xd6\xef" 7452 - "\x08\x21\x3a\x53\x6c\x85\x9e\xb7" 7453 - "\xd0\xe9\x02\x1b\x34\x4d\x66\x7f" 7454 - "\x98\xb1\xca\xe3\xfc\x15\x2e\x47" 7455 - "\x60\x79\x92\xab\xc4\xdd\xf6\x0f" 7456 - "\x28\x41\x5a\x73\x8c\xa5\xbe\xd7" 7457 - "\xf0\x09\x22\x3b\x54\x6d\x86\x9f" 7458 - "\xb8\xd1\xea\x03\x1c\x35\x4e\x67" 7459 - "\x80\x99\xb2\xcb\xe4\xfd\x16\x2f" 7460 - "\x48\x61\x7a\x93\xac\xc5\xde\xf7" 7461 - "\x10\x29\x42\x5b\x74\x8d\xa6\xbf" 7462 - "\xd8\xf1\x0a\x23\x3c\x55\x6e\x87" 7463 - "\xa0\xb9\xd2\xeb\x04\x1d\x36\x4f" 7464 - "\x68\x81\x9a\xb3\xcc\xe5\xfe\x17" 7465 - "\x30\x49\x62\x7b\x94\xad\xc6\xdf" 7466 - "\xf8\x11\x2a\x43\x5c\x75\x8e\xa7" 7467 - "\xc0\xd9\xf2\x0b\x24\x3d\x56\x6f" 7468 - "\x88\xa1\xba\xd3\xec\x05\x1e\x37" 7469 - "\x50\x69\x82\x9b\xb4\xcd\xe6\xff" 7470 - "\x18\x31\x4a\x63\x7c\x95\xae\xc7" 7471 - "\xe0\xf9\x12\x2b\x44\x5d\x76\x8f" 7472 - "\xa8\xc1\xda\xf3\x0c\x25\x3e\x57" 7473 - "\x70\x89\xa2\xbb\xd4\xed\x06\x1f" 7474 - "\x38\x51\x6a\x83\x9c\xb5\xce\xe7" 7475 - "\x00\x1b\x36\x51\x6c\x87\xa2\xbd" 7476 - "\xd8\xf3\x0e\x29\x44\x5f\x7a\x95" 7477 - "\xb0\xcb\xe6\x01\x1c\x37\x52\x6d" 7478 - "\x88\xa3\xbe\xd9\xf4\x0f\x2a\x45" 7479 - "\x60\x7b\x96\xb1\xcc\xe7\x02\x1d" 7480 - "\x38\x53\x6e\x89\xa4\xbf\xda\xf5" 7481 - "\x10\x2b\x46\x61\x7c\x97\xb2\xcd" 7482 - "\xe8\x03\x1e\x39\x54\x6f\x8a\xa5" 7483 - "\xc0\xdb\xf6\x11\x2c\x47\x62\x7d" 7484 - "\x98\xb3\xce\xe9\x04\x1f\x3a\x55" 7485 - "\x70\x8b\xa6\xc1\xdc\xf7\x12\x2d" 7486 - "\x48\x63\x7e\x99\xb4\xcf\xea\x05" 7487 - "\x20\x3b\x56\x71\x8c\xa7\xc2\xdd" 7488 - "\xf8\x13\x2e\x49\x64\x7f\x9a\xb5" 7489 - "\xd0\xeb\x06\x21\x3c\x57\x72\x8d" 7490 - "\xa8\xc3\xde\xf9\x14\x2f\x4a\x65" 7491 - "\x80\x9b\xb6\xd1\xec\x07\x22\x3d" 7492 - "\x58\x73\x8e\xa9\xc4\xdf\xfa\x15" 7493 - "\x30\x4b\x66\x81\x9c\xb7\xd2\xed" 7494 - "\x08\x23\x3e\x59\x74\x8f\xaa\xc5" 7495 - "\xe0\xfb\x16\x31\x4c\x67\x82\x9d" 7496 - "\xb8\xd3\xee\x09\x24\x3f\x5a\x75" 7497 - "\x90\xab\xc6\xe1\xfc\x17\x32\x4d" 7498 - "\x68\x83\x9e\xb9\xd4\xef\x0a\x25" 7499 - "\x40\x5b\x76\x91\xac\xc7\xe2\xfd" 7500 - "\x18\x33\x4e\x69\x84\x9f\xba\xd5" 7501 - "\xf0\x0b\x26\x41\x5c\x77\x92\xad" 7502 - "\xc8\xe3\xfe\x19\x34\x4f\x6a\x85" 7503 - "\xa0\xbb\xd6\xf1\x0c\x27\x42\x5d" 7504 - "\x78\x93\xae\xc9\xe4\xff\x1a\x35" 7505 - "\x50\x6b\x86\xa1\xbc\xd7\xf2\x0d" 7506 - "\x28\x43\x5e\x79\x94\xaf\xca\xe5" 7507 - "\x00\x1d\x3a\x57\x74\x91\xae\xcb" 7508 - "\xe8\x05\x22\x3f\x5c\x79\x96\xb3" 7509 - "\xd0\xed\x0a\x27\x44\x61\x7e\x9b" 7510 - "\xb8\xd5\xf2\x0f\x2c\x49\x66\x83" 7511 - "\xa0\xbd\xda\xf7\x14\x31\x4e\x6b" 7512 - "\x88\xa5\xc2\xdf\xfc\x19\x36\x53" 7513 - "\x70\x8d\xaa\xc7\xe4\x01\x1e\x3b" 7514 - "\x58\x75\x92\xaf\xcc\xe9\x06\x23" 7515 - "\x40\x5d\x7a\x97\xb4\xd1\xee\x0b" 7516 - "\x28\x45\x62\x7f\x9c\xb9\xd6\xf3" 7517 - "\x10\x2d\x4a\x67\x84\xa1\xbe\xdb" 7518 - "\xf8\x15\x32\x4f\x6c\x89\xa6\xc3" 7519 - "\xe0\xfd\x1a\x37\x54\x71\x8e\xab" 7520 - "\xc8\xe5\x02\x1f\x3c\x59\x76\x93" 7521 - "\xb0\xcd\xea\x07\x24\x41\x5e\x7b" 7522 - "\x98\xb5\xd2\xef\x0c\x29\x46\x63" 7523 - "\x80\x9d\xba\xd7\xf4\x11\x2e\x4b" 7524 - "\x68\x85\xa2\xbf\xdc\xf9\x16\x33" 7525 - "\x50\x6d\x8a\xa7\xc4\xe1\xfe\x1b" 7526 - "\x38\x55\x72\x8f\xac\xc9\xe6\x03" 7527 - "\x20\x3d\x5a\x77\x94\xb1\xce\xeb" 7528 - "\x08\x25\x42\x5f\x7c\x99\xb6\xd3" 7529 - "\xf0\x0d\x2a\x47\x64\x81\x9e\xbb" 7530 - "\xd8\xf5\x12\x2f\x4c\x69\x86\xa3" 7531 - "\xc0\xdd\xfa\x17\x34\x51\x6e\x8b" 7532 - "\xa8\xc5\xe2\xff\x1c\x39\x56\x73" 7533 - "\x90\xad\xca\xe7\x04\x21\x3e\x5b" 7534 - "\x78\x95\xb2\xcf\xec\x09\x26\x43" 7535 - "\x60\x7d\x9a\xb7\xd4\xf1\x0e\x2b" 7536 - "\x48\x65\x82\x9f\xbc\xd9\xf6\x13" 7537 - "\x30\x4d\x6a\x87\xa4\xc1\xde\xfb" 7538 - "\x18\x35\x52\x6f\x8c\xa9\xc6\xe3" 7539 - "\x00\x1f\x3e\x5d\x7c\x9b\xba\xd9" 7540 - "\xf8\x17\x36\x55\x74\x93\xb2\xd1" 7541 - "\xf0\x0f\x2e\x4d\x6c\x8b\xaa\xc9" 7542 - "\xe8\x07\x26\x45\x64\x83\xa2\xc1" 7543 - "\xe0\xff\x1e\x3d\x5c\x7b\x9a\xb9" 7544 - "\xd8\xf7\x16\x35\x54\x73\x92\xb1" 7545 - "\xd0\xef\x0e\x2d\x4c\x6b\x8a\xa9" 7546 - "\xc8\xe7\x06\x25\x44\x63\x82\xa1" 7547 - "\xc0\xdf\xfe\x1d\x3c\x5b\x7a\x99" 7548 - "\xb8\xd7\xf6\x15\x34\x53\x72\x91" 7549 - "\xb0\xcf\xee\x0d\x2c\x4b\x6a\x89" 7550 - "\xa8\xc7\xe6\x05\x24\x43\x62\x81" 7551 - "\xa0\xbf\xde\xfd\x1c\x3b\x5a\x79" 7552 - "\x98\xb7\xd6\xf5\x14\x33\x52\x71" 7553 - "\x90\xaf\xce\xed\x0c\x2b\x4a\x69" 7554 - "\x88\xa7\xc6\xe5\x04\x23\x42\x61" 7555 - "\x80\x9f\xbe\xdd\xfc\x1b\x3a\x59" 7556 - "\x78\x97\xb6\xd5\xf4\x13\x32\x51" 7557 - "\x70\x8f\xae\xcd\xec\x0b\x2a\x49" 7558 - "\x68\x87\xa6\xc5\xe4\x03\x22\x41" 7559 - "\x60\x7f\x9e\xbd\xdc\xfb\x1a\x39" 7560 - "\x58\x77\x96\xb5\xd4\xf3\x12\x31" 7561 - "\x50\x6f\x8e\xad\xcc\xeb\x0a\x29" 7562 - "\x48\x67\x86\xa5\xc4\xe3\x02\x21" 7563 - "\x40\x5f\x7e\x9d\xbc\xdb\xfa\x19" 7564 - "\x38\x57\x76\x95\xb4\xd3\xf2\x11" 7565 - "\x30\x4f\x6e\x8d\xac\xcb\xea\x09" 7566 - "\x28\x47\x66\x85\xa4\xc3\xe2\x01" 7567 - "\x20\x3f\x5e\x7d\x9c\xbb\xda\xf9" 7568 - "\x18\x37\x56\x75\x94\xb3\xd2\xf1" 7569 - "\x10\x2f\x4e\x6d\x8c\xab\xca\xe9" 7570 - "\x08\x27\x46\x65\x84\xa3\xc2\xe1" 7571 - "\x00\x21\x42\x63", 7572 - .ilen = 4100, 7573 - .result = 7574 - "\xb5\x81\xf5\x64\x18\x73\xe3\xf0" 7575 - "\x4c\x13\xf2\x77\x18\x60\x65\x5e" 7576 - "\x29\x01\xce\x98\x55\x53\xf9\x0c" 7577 - "\x2a\x08\xd5\x09\xb3\x57\x55\x56" 7578 - "\xc5\xe9\x56\x90\xcb\x6a\xa3\xc0" 7579 - "\xff\xc4\x79\xb4\xd2\x97\x5d\xc4" 7580 - "\x43\xd1\xfe\x94\x7b\x88\x06\x5a" 7581 - "\xb2\x9e\x2c\xfc\x44\x03\xb7\x90" 7582 - "\xa0\xc1\xba\x6a\x33\xb8\xc7\xb2" 7583 - "\x9d\xe1\x12\x4f\xc0\x64\xd4\x01" 7584 - "\xfe\x8c\x7a\x66\xf7\xe6\x5a\x91" 7585 - "\xbb\xde\x56\x86\xab\x65\x21\x30" 7586 - "\x00\x84\x65\x24\xa5\x7d\x85\xb4" 7587 - "\xe3\x17\xed\x3a\xb7\x6f\xb4\x0b" 7588 - "\x0b\xaf\x15\xae\x5a\x8f\xf2\x0c" 7589 - "\x2f\x27\xf4\x09\xd8\xd2\x96\xb7" 7590 - "\x71\xf2\xc5\x99\x4d\x7e\x7f\x75" 7591 - "\x77\x89\x30\x8b\x59\xdb\xa2\xb2" 7592 - "\xa0\xf3\x19\x39\x2b\xc5\x7e\x3f" 7593 - "\x4f\xd9\xd3\x56\x28\x97\x44\xdc" 7594 - "\xc0\x8b\x77\x24\xd9\x52\xe7\xc5" 7595 - "\xaf\xf6\x7d\x59\xb2\x44\x05\x1d" 7596 - "\xb1\xb0\x11\xa5\x0f\xec\x33\xe1" 7597 - "\x6d\x1b\x4e\x1f\xff\x57\x91\xb4" 7598 - "\x5b\x9a\x96\xc5\x53\xbc\xae\x20" 7599 - "\x3c\xbb\x14\xe2\xe8\x22\x33\xc1" 7600 - "\x5e\x76\x9e\x46\x99\xf6\x2a\x15" 7601 - "\xc6\x97\x02\xa0\x66\x43\xd1\xa6" 7602 - "\x31\xa6\x9f\xfb\xf4\xd3\x69\xe5" 7603 - "\xcd\x76\x95\xb8\x7a\x82\x7f\x21" 7604 - "\x45\xff\x3f\xce\x55\xf6\x95\x10" 7605 - "\x08\x77\x10\x43\xc6\xf3\x09\xe5" 7606 - "\x68\xe7\x3c\xad\x00\x52\x45\x0d" 7607 - "\xfe\x2d\xc6\xc2\x94\x8c\x12\x1d" 7608 - "\xe6\x25\xae\x98\x12\x8e\x19\x9c" 7609 - "\x81\x68\xb1\x11\xf6\x69\xda\xe3" 7610 - "\x62\x08\x18\x7a\x25\x49\x28\xac" 7611 - "\xba\x71\x12\x0b\xe4\xa2\xe5\xc7" 7612 - "\x5d\x8e\xec\x49\x40\x21\xbf\x5a" 7613 - "\x98\xf3\x02\x68\x55\x03\x7f\x8a" 7614 - "\xe5\x94\x0c\x32\x5c\x07\x82\x63" 7615 - "\xaf\x6f\x91\x40\x84\x8e\x52\x25" 7616 - "\xd0\xb0\x29\x53\x05\xe2\x50\x7a" 7617 - "\x34\xeb\xc9\x46\x20\xa8\x3d\xde" 7618 - "\x7f\x16\x5f\x36\xc5\x2e\xdc\xd1" 7619 - "\x15\x47\xc7\x50\x40\x6d\x91\xc5" 7620 - "\xe7\x93\x95\x1a\xd3\x57\xbc\x52" 7621 - "\x33\xee\x14\x19\x22\x52\x89\xa7" 7622 - "\x4a\x25\x56\x77\x4b\xca\xcf\x0a" 7623 - "\xe1\xf5\x35\x85\x30\x7e\x59\x4a" 7624 - "\xbd\x14\x5b\xdf\xe3\x46\xcb\xac" 7625 - "\x1f\x6c\x96\x0e\xf4\x81\xd1\x99" 7626 - "\xca\x88\x63\x3d\x02\x58\x6b\xa9" 7627 - "\xe5\x9f\xb3\x00\xb2\x54\xc6\x74" 7628 - "\x1c\xbf\x46\xab\x97\xcc\xf8\x54" 7629 - "\x04\x07\x08\x52\xe6\xc0\xda\x93" 7630 - "\x74\x7d\x93\x99\x5d\x78\x68\xa6" 7631 - "\x2e\x6b\xd3\x6a\x69\xcc\x12\x6b" 7632 - "\xd4\xc7\xa5\xc6\xe7\xf6\x03\x04" 7633 - "\x5d\xcd\x61\x5e\x17\x40\xdc\xd1" 7634 - "\x5c\xf5\x08\xdf\x5c\x90\x85\xa4" 7635 - "\xaf\xf6\x78\xbb\x0d\xf1\xf4\xa4" 7636 - "\x54\x26\x72\x9e\x61\xfa\x86\xcf" 7637 - "\xe8\x9e\xa1\xe0\xc7\x48\x23\xae" 7638 - "\x5a\x90\xae\x75\x0a\x74\x18\x89" 7639 - "\x05\xb1\x92\xb2\x7f\xd0\x1b\xa6" 7640 - "\x62\x07\x25\x01\xc7\xc2\x4f\xf9" 7641 - "\xe8\xfe\x63\x95\x80\x07\xb4\x26" 7642 - "\xcc\xd1\x26\xb6\xc4\x3f\x9e\xcb" 7643 - "\x8e\x3b\x2e\x44\x16\xd3\x10\x9a" 7644 - "\x95\x08\xeb\xc8\xcb\xeb\xbf\x6f" 7645 - "\x0b\xcd\x1f\xc8\xca\x86\xaa\xec" 7646 - "\x33\xe6\x69\xf4\x45\x25\x86\x3a" 7647 - "\x22\x94\x4f\x00\x23\x6a\x44\xc2" 7648 - "\x49\x97\x33\xab\x36\x14\x0a\x70" 7649 - "\x24\xc3\xbe\x04\x3b\x79\xa0\xf9" 7650 - "\xb8\xe7\x76\x29\x22\x83\xd7\xf2" 7651 - "\x94\xf4\x41\x49\xba\x5f\x7b\x07" 7652 - "\xb5\xfb\xdb\x03\x1a\x9f\xb6\x4c" 7653 - "\xc2\x2e\x37\x40\x49\xc3\x38\x16" 7654 - "\xe2\x4f\x77\x82\xb0\x68\x4c\x71" 7655 - "\x1d\x57\x61\x9c\xd9\x4e\x54\x99" 7656 - "\x47\x13\x28\x73\x3c\xbb\x00\x90" 7657 - "\xf3\x4d\xc9\x0e\xfd\xe7\xb1\x71" 7658 - "\xd3\x15\x79\xbf\xcc\x26\x2f\xbd" 7659 - "\xad\x6c\x50\x69\x6c\x3e\x6d\x80" 7660 - "\x9a\xea\x78\xaf\x19\xb2\x0d\x4d" 7661 - "\xad\x04\x07\xae\x22\x90\x4a\x93" 7662 - "\x32\x0e\x36\x9b\x1b\x46\xba\x3b" 7663 - "\xb4\xac\xc6\xd1\xa2\x31\x53\x3b" 7664 - "\x2a\x3d\x45\xfe\x03\x61\x10\x85" 7665 - "\x17\x69\xa6\x78\xcc\x6c\x87\x49" 7666 - "\x53\xf9\x80\x10\xde\x80\xa2\x41" 7667 - "\x6a\xc3\x32\x02\xad\x6d\x3c\x56" 7668 - "\x00\x71\x51\x06\xa7\xbd\xfb\xef" 7669 - "\x3c\xb5\x9f\xfc\x48\x7d\x53\x7c" 7670 - "\x66\xb0\x49\x23\xc4\x47\x10\x0e" 7671 - "\xe5\x6c\x74\x13\xe6\xc5\x3f\xaa" 7672 - "\xde\xff\x07\x44\xdd\x56\x1b\xad" 7673 - "\x09\x77\xfb\x5b\x12\xb8\x0d\x38" 7674 - "\x17\x37\x35\x7b\x9b\xbc\xfe\xd4" 7675 - "\x7e\x8b\xda\x7e\x5b\x04\xa7\x22" 7676 - "\xa7\x31\xa1\x20\x86\xc7\x1b\x99" 7677 - "\xdb\xd1\x89\xf4\x94\xa3\x53\x69" 7678 - "\x8d\xe7\xe8\x74\x11\x8d\x74\xd6" 7679 - "\x07\x37\x91\x9f\xfd\x67\x50\x3a" 7680 - "\xc9\xe1\xf4\x36\xd5\xa0\x47\xd1" 7681 - "\xf9\xe5\x39\xa3\x31\xac\x07\x36" 7682 - "\x23\xf8\x66\x18\x14\x28\x34\x0f" 7683 - "\xb8\xd0\xe7\x29\xb3\x04\x4b\x55" 7684 - "\x01\x41\xb2\x75\x8d\xcb\x96\x85" 7685 - "\x3a\xfb\xab\x2b\x9e\xfa\x58\x20" 7686 - "\x44\x1f\xc0\x14\x22\x75\x61\xe8" 7687 - "\xaa\x19\xcf\xf1\x82\x56\xf4\xd7" 7688 - "\x78\x7b\x3d\x5f\xb3\x9e\x0b\x8a" 7689 - "\x57\x50\xdb\x17\x41\x65\x4d\xa3" 7690 - "\x02\xc9\x9c\x9c\x53\xfb\x39\x39" 7691 - "\x9b\x1d\x72\x24\xda\xb7\x39\xbe" 7692 - "\x13\x3b\xfa\x29\xda\x9e\x54\x64" 7693 - "\x6e\xba\xd8\xa1\xcb\xb3\x36\xfa" 7694 - "\xcb\x47\x85\xe9\x61\x38\xbc\xbe" 7695 - "\xc5\x00\x38\x2a\x54\xf7\xc4\xb9" 7696 - "\xb3\xd3\x7b\xa0\xa0\xf8\x72\x7f" 7697 - "\x8c\x8e\x82\x0e\xc6\x1c\x75\x9d" 7698 - "\xca\x8e\x61\x87\xde\xad\x80\xd2" 7699 - "\xf5\xf9\x80\xef\x15\x75\xaf\xf5" 7700 - "\x80\xfb\xff\x6d\x1e\x25\xb7\x40" 7701 - "\x61\x6a\x39\x5a\x6a\xb5\x31\xab" 7702 - "\x97\x8a\x19\x89\x44\x40\xc0\xa6" 7703 - "\xb4\x4e\x30\x32\x7b\x13\xe7\x67" 7704 - "\xa9\x8b\x57\x04\xc2\x01\xa6\xf4" 7705 - "\x28\x99\xad\x2c\x76\xa3\x78\xc2" 7706 - "\x4a\xe6\xca\x5c\x50\x6a\xc1\xb0" 7707 - "\x62\x4b\x10\x8e\x7c\x17\x43\xb3" 7708 - "\x17\x66\x1c\x3e\x8d\x69\xf0\x5a" 7709 - "\x71\xf5\x97\xdc\xd1\x45\xdd\x28" 7710 - "\xf3\x5d\xdf\x53\x7b\x11\xe5\xbc" 7711 - "\x4c\xdb\x1b\x51\x6b\xe9\xfb\x3d" 7712 - "\xc1\xc3\x2c\xb9\x71\xf5\xb6\xb2" 7713 - "\x13\x36\x79\x80\x53\xe8\xd3\xa6" 7714 - "\x0a\xaf\xfd\x56\x97\xf7\x40\x8e" 7715 - "\x45\xce\xf8\xb0\x9e\x5c\x33\x82" 7716 - "\xb0\x44\x56\xfc\x05\x09\xe9\x2a" 7717 - "\xac\x26\x80\x14\x1d\xc8\x3a\x35" 7718 - "\x4c\x82\x97\xfd\x76\xb7\xa9\x0a" 7719 - "\x35\x58\x79\x8e\x0f\x66\xea\xaf" 7720 - "\x51\x6c\x09\xa9\x6e\x9b\xcb\x9a" 7721 - "\x31\x47\xa0\x2f\x7c\x71\xb4\x4a" 7722 - "\x11\xaa\x8c\x66\xc5\x64\xe6\x3a" 7723 - "\x54\xda\x24\x6a\xc4\x41\x65\x46" 7724 - "\x82\xa0\x0a\x0f\x5f\xfb\x25\xd0" 7725 - "\x2c\x91\xa7\xee\xc4\x81\x07\x86" 7726 - "\x75\x5e\x33\x69\x97\xe4\x2c\xa8" 7727 - "\x9d\x9f\x0b\x6a\xbe\xad\x98\xda" 7728 - "\x6d\x94\x41\xda\x2c\x1e\x89\xc4" 7729 - "\xc2\xaf\x1e\x00\x05\x0b\x83\x60" 7730 - "\xbd\x43\xea\x15\x23\x7f\xb9\xac" 7731 - "\xee\x4f\x2c\xaf\x2a\xf3\xdf\xd0" 7732 - "\xf3\x19\x31\xbb\x4a\x74\x84\x17" 7733 - "\x52\x32\x2c\x7d\x61\xe4\xcb\xeb" 7734 - "\x80\x38\x15\x52\xcb\x6f\xea\xe5" 7735 - "\x73\x9c\xd9\x24\x69\xc6\x95\x32" 7736 - "\x21\xc8\x11\xe4\xdc\x36\xd7\x93" 7737 - "\x38\x66\xfb\xb2\x7f\x3a\xb9\xaf" 7738 - "\x31\xdd\x93\x75\x78\x8a\x2c\x94" 7739 - "\x87\x1a\x58\xec\x9e\x7d\x4d\xba" 7740 - "\xe1\xe5\x4d\xfc\xbc\xa4\x2a\x14" 7741 - "\xef\xcc\xa7\xec\xab\x43\x09\x18" 7742 - "\xd3\xab\x68\xd1\x07\x99\x44\x47" 7743 - "\xd6\x83\x85\x3b\x30\xea\xa9\x6b" 7744 - "\x63\xea\xc4\x07\xfb\x43\x2f\xa4" 7745 - "\xaa\xb0\xab\x03\x89\xce\x3f\x8c" 7746 - "\x02\x7c\x86\x54\xbc\x88\xaf\x75" 7747 - "\xd2\xdc\x63\x17\xd3\x26\xf6\x96" 7748 - "\xa9\x3c\xf1\x61\x8c\x11\x18\xcc" 7749 - "\xd6\xea\x5b\xe2\xcd\xf0\xf1\xb2" 7750 - "\xe5\x35\x90\x1f\x85\x4c\x76\x5b" 7751 - "\x66\xce\x44\xa4\x32\x9f\xe6\x7b" 7752 - "\x71\x6e\x9f\x58\x15\x67\x72\x87" 7753 - "\x64\x8e\x3a\x44\x45\xd4\x76\xfa" 7754 - "\xc2\xf6\xef\x85\x05\x18\x7a\x9b" 7755 - "\xba\x41\x54\xac\xf0\xfc\x59\x12" 7756 - "\x3f\xdf\xa0\xe5\x8a\x65\xfd\x3a" 7757 - "\x62\x8d\x83\x2c\x03\xbe\x05\x76" 7758 - "\x2e\x53\x49\x97\x94\x33\xae\x40" 7759 - "\x81\x15\xdb\x6e\xad\xaa\xf5\x4b" 7760 - "\xe3\x98\x70\xdf\xe0\x7c\xcd\xdb" 7761 - "\x02\xd4\x7d\x2f\xc1\xe6\xb4\xf3" 7762 - "\xd7\x0d\x7a\xd9\x23\x9e\x87\x2d" 7763 - "\xce\x87\xad\xcc\x72\x05\x00\x29" 7764 - "\xdc\x73\x7f\x64\xc1\x15\x0e\xc2" 7765 - "\xdf\xa7\x5f\xeb\x41\xa1\xcd\xef" 7766 - "\x5c\x50\x79\x2a\x56\x56\x71\x8c" 7767 - "\xac\xc0\x79\x50\x69\xca\x59\x32" 7768 - "\x65\xf2\x54\xe4\x52\x38\x76\xd1" 7769 - "\x5e\xde\x26\x9e\xfb\x75\x2e\x11" 7770 - "\xb5\x10\xf4\x17\x73\xf5\x89\xc7" 7771 - "\x4f\x43\x5c\x8e\x7c\xb9\x05\x52" 7772 - "\x24\x40\x99\xfe\x9b\x85\x0b\x6c" 7773 - "\x22\x3e\x8b\xae\x86\xa1\xd2\x79" 7774 - "\x05\x68\x6b\xab\xe3\x41\x49\xed" 7775 - "\x15\xa1\x8d\x40\x2d\x61\xdf\x1a" 7776 - "\x59\xc9\x26\x8b\xef\x30\x4c\x88" 7777 - "\x4b\x10\xf8\x8d\xa6\x92\x9f\x4b" 7778 - "\xf3\xc4\x53\x0b\x89\x5d\x28\x92" 7779 - "\xcf\x78\xb2\xc0\x5d\xed\x7e\xfc" 7780 - "\xc0\x12\x23\x5f\x5a\x78\x86\x43" 7781 - "\x6e\x27\xf7\x5a\xa7\x6a\xed\x19" 7782 - "\x04\xf0\xb3\x12\xd1\xbd\x0e\x89" 7783 - "\x6e\xbc\x96\xa8\xd8\x49\x39\x9f" 7784 - "\x7e\x67\xf0\x2e\x3e\x01\xa9\xba" 7785 - "\xec\x8b\x62\x8e\xcb\x4a\x70\x43" 7786 - "\xc7\xc2\xc4\xca\x82\x03\x73\xe9" 7787 - "\x11\xdf\xcf\x54\xea\xc9\xb0\x95" 7788 - "\x51\xc0\x13\x3d\x92\x05\xfa\xf4" 7789 - "\xa9\x34\xc8\xce\x6c\x3d\x54\xcc" 7790 - "\xc4\xaf\xf1\xdc\x11\x44\x26\xa2" 7791 - "\xaf\xf1\x85\x75\x7d\x03\x61\x68" 7792 - "\x4e\x78\xc6\x92\x7d\x86\x7d\x77" 7793 - "\xdc\x71\x72\xdb\xc6\xae\xa1\xcb" 7794 - "\x70\x9a\x0b\x19\xbe\x4a\x6c\x2a" 7795 - "\xe2\xba\x6c\x64\x9a\x13\x28\xdf" 7796 - "\x85\x75\xe6\x43\xf6\x87\x08\x68" 7797 - "\x6e\xba\x6e\x79\x9f\x04\xbc\x23" 7798 - "\x50\xf6\x33\x5c\x1f\x24\x25\xbe" 7799 - "\x33\x47\x80\x45\x56\xa3\xa7\xd7" 7800 - "\x7a\xb1\x34\x0b\x90\x3c\x9c\xad" 7801 - "\x44\x5f\x9e\x0e\x9d\xd4\xbd\x93" 7802 - "\x5e\xfa\x3c\xe0\xb0\xd9\xed\xf3" 7803 - "\xd6\x2e\xff\x24\xd8\x71\x6c\xed" 7804 - "\xaf\x55\xeb\x22\xac\x93\x68\x32" 7805 - "\x05\x5b\x47\xdd\xc6\x4a\xcb\xc7" 7806 - "\x10\xe1\x3c\x92\x1a\xf3\x23\x78" 7807 - "\x2b\xa1\xd2\x80\xf4\x12\xb1\x20" 7808 - "\x8f\xff\x26\x35\xdd\xfb\xc7\x4e" 7809 - "\x78\xf1\x2d\x50\x12\x77\xa8\x60" 7810 - "\x7c\x0f\xf5\x16\x2f\x63\x70\x2a" 7811 - "\xc0\x96\x80\x4e\x0a\xb4\x93\x35" 7812 - "\x5d\x1d\x3f\x56\xf7\x2f\xbb\x90" 7813 - "\x11\x16\x8f\xa2\xec\x47\xbe\xac" 7814 - "\x56\x01\x26\x56\xb1\x8c\xb2\x10" 7815 - "\xf9\x1a\xca\xf5\xd1\xb7\x39\x20" 7816 - "\x63\xf1\x69\x20\x4f\x13\x12\x1f" 7817 - "\x5b\x65\xfc\x98\xf7\xc4\x7a\xbe" 7818 - "\xf7\x26\x4d\x2b\x84\x7b\x42\xad" 7819 - "\xd8\x7a\x0a\xb4\xd8\x74\xbf\xc1" 7820 - "\xf0\x6e\xb4\x29\xa3\xbb\xca\x46" 7821 - "\x67\x70\x6a\x2d\xce\x0e\xa2\x8a" 7822 - "\xa9\x87\xbf\x05\xc4\xc1\x04\xa3" 7823 - "\xab\xd4\x45\x43\x8c\xb6\x02\xb0" 7824 - "\x41\xc8\xfc\x44\x3d\x59\xaa\x2e" 7825 - "\x44\x21\x2a\x8d\x88\x9d\x57\xf4" 7826 - "\xa0\x02\x77\xb8\xa6\xa0\xe6\x75" 7827 - "\x5c\x82\x65\x3e\x03\x5c\x29\x8f" 7828 - "\x38\x55\xab\x33\x26\xef\x9f\x43" 7829 - "\x52\xfd\x68\xaf\x36\xb4\xbb\x9a" 7830 - "\x58\x09\x09\x1b\xc3\x65\x46\x46" 7831 - "\x1d\xa7\x94\x18\x23\x50\x2c\xca" 7832 - "\x2c\x55\x19\x97\x01\x9d\x93\x3b" 7833 - "\x63\x86\xf2\x03\x67\x45\xd2\x72" 7834 - "\x28\x52\x6c\xf4\xe3\x1c\xb5\x11" 7835 - "\x13\xf1\xeb\x21\xc7\xd9\x56\x82" 7836 - "\x2b\x82\x39\xbd\x69\x54\xed\x62" 7837 - "\xc3\xe2\xde\x73\xd4\x6a\x12\xae" 7838 - "\x13\x21\x7f\x4b\x5b\xfc\xbf\xe8" 7839 - "\x2b\xbe\x56\xba\x68\x8b\x9a\xb1" 7840 - "\x6e\xfa\xbf\x7e\x5a\x4b\xf1\xac" 7841 - "\x98\x65\x85\xd1\x93\x53\xd3\x7b" 7842 - "\x09\xdd\x4b\x10\x6d\x84\xb0\x13" 7843 - "\x65\xbd\xcf\x52\x09\xc4\x85\xe2" 7844 - "\x84\x74\x15\x65\xb7\xf7\x51\xaf" 7845 - "\x55\xad\xa4\xd1\x22\x54\x70\x94" 7846 - "\xa0\x1c\x90\x41\xfd\x99\xd7\x5a" 7847 - "\x31\xef\xaa\x25\xd0\x7f\x4f\xea" 7848 - "\x1d\x55\x42\xe5\x49\xb0\xd0\x46" 7849 - "\x62\x36\x43\xb2\x82\x15\x75\x50" 7850 - "\xa4\x72\xeb\x54\x27\x1f\x8a\xe4" 7851 - "\x7d\xe9\x66\xc5\xf1\x53\xa4\xd1" 7852 - "\x0c\xeb\xb8\xf8\xbc\xd4\xe2\xe7" 7853 - "\xe1\xf8\x4b\xcb\xa9\xa1\xaf\x15" 7854 - "\x83\xcb\x72\xd0\x33\x79\x00\x2d" 7855 - "\x9f\xd7\xf1\x2e\x1e\x10\xe4\x45" 7856 - "\xc0\x75\x3a\x39\xea\x68\xf7\x5d" 7857 - "\x1b\x73\x8f\xe9\x8e\x0f\x72\x47" 7858 - "\xae\x35\x0a\x31\x7a\x14\x4d\x4a" 7859 - "\x6f\x47\xf7\x7e\x91\x6e\x74\x8b" 7860 - "\x26\x47\xf9\xc3\xf9\xde\x70\xf5" 7861 - "\x61\xab\xa9\x27\x9f\x82\xe4\x9c" 7862 - "\x89\x91\x3f\x2e\x6a\xfd\xb5\x49" 7863 - "\xe9\xfd\x59\x14\x36\x49\x40\x6d" 7864 - "\x32\xd8\x85\x42\xf3\xa5\xdf\x0c" 7865 - "\xa8\x27\xd7\x54\xe2\x63\x2f\xf2" 7866 - "\x7e\x8b\x8b\xe7\xf1\x9a\x95\x35" 7867 - "\x43\xdc\x3a\xe4\xb6\xf4\xd0\xdf" 7868 - "\x9c\xcb\x94\xf3\x21\xa0\x77\x50" 7869 - "\xe2\xc6\xc4\xc6\x5f\x09\x64\x5b" 7870 - "\x92\x90\xd8\xe1\xd1\xed\x4b\x42" 7871 - "\xd7\x37\xaf\x65\x3d\x11\x39\xb6" 7872 - "\x24\x8a\x60\xae\xd6\x1e\xbf\x0e" 7873 - "\x0d\xd7\xdc\x96\x0e\x65\x75\x4e" 7874 - "\x29\x06\x9d\xa4\x51\x3a\x10\x63" 7875 - "\x8f\x17\x07\xd5\x8e\x3c\xf4\x28" 7876 - "\x00\x5a\x5b\x05\x19\xd8\xc0\x6c" 7877 - "\xe5\x15\xe4\x9c\x9d\x71\x9d\x5e" 7878 - "\x94\x29\x1a\xa7\x80\xfa\x0e\x33" 7879 - "\x03\xdd\xb7\x3e\x9a\xa9\x26\x18" 7880 - "\x37\xa9\x64\x08\x4d\x94\x5a\x88" 7881 - "\xca\x35\xce\x81\x02\xe3\x1f\x1b" 7882 - "\x89\x1a\x77\x85\xe3\x41\x6d\x32" 7883 - "\x42\x19\x23\x7d\xc8\x73\xee\x25" 7884 - "\x85\x0d\xf8\x31\x25\x79\x1b\x6f" 7885 - "\x79\x25\xd2\xd8\xd4\x23\xfd\xf7" 7886 - "\x82\x36\x6a\x0c\x46\x22\x15\xe9" 7887 - "\xff\x72\x41\x91\x91\x7d\x3a\xb7" 7888 - "\xdd\x65\x99\x70\xf6\x8d\x84\xf8" 7889 - "\x67\x15\x20\x11\xd6\xb2\x55\x7b" 7890 - "\xdb\x87\xee\xef\x55\x89\x2a\x59" 7891 - "\x2b\x07\x8f\x43\x8a\x59\x3c\x01" 7892 - "\x8b\x65\x54\xa1\x66\xd5\x38\xbd" 7893 - "\xc6\x30\xa9\xcc\x49\xb6\xa8\x1b" 7894 - "\xb8\xc0\x0e\xe3\x45\x28\xe2\xff" 7895 - "\x41\x9f\x7e\x7c\xd1\xae\x9e\x25" 7896 - "\x3f\x4c\x7c\x7c\xf4\xa8\x26\x4d" 7897 - "\x5c\xfd\x4b\x27\x18\xf9\x61\x76" 7898 - "\x48\xba\x0c\x6b\xa9\x4d\xfc\xf5" 7899 - "\x3b\x35\x7e\x2f\x4a\xa9\xc2\x9a" 7900 - "\xae\xab\x86\x09\x89\xc9\xc2\x40" 7901 - "\x39\x2c\x81\xb3\xb8\x17\x67\xc2" 7902 - "\x0d\x32\x4a\x3a\x67\x81\xd7\x1a" 7903 - "\x34\x52\xc5\xdb\x0a\xf5\x63\x39" 7904 - "\xea\x1f\xe1\x7c\xa1\x9e\xc1\x35" 7905 - "\xe3\xb1\x18\x45\x67\xf9\x22\x38" 7906 - "\x95\xd9\x34\x34\x86\xc6\x41\x94" 7907 - "\x15\xf9\x5b\x41\xa6\x87\x8b\xf8" 7908 - "\xd5\xe1\x1b\xe2\x5b\xf3\x86\x10" 7909 - "\xff\xe6\xae\x69\x76\xbc\x0d\xb4" 7910 - "\x09\x90\x0c\xa2\x65\x0c\xad\x74" 7911 - "\xf5\xd7\xff\xda\xc1\xce\x85\xbe" 7912 - "\x00\xa7\xff\x4d\x2f\x65\xd3\x8c" 7913 - "\x86\x2d\x05\xe8\xed\x3e\x6b\x8b" 7914 - "\x0f\x3d\x83\x8c\xf1\x1d\x5b\x96" 7915 - "\x2e\xb1\x9c\xc2\x98\xe1\x70\xb9" 7916 - "\xba\x5c\x8a\x43\xd6\x34\xa7\x2d" 7917 - "\xc9\x92\xae\xf2\xa5\x7b\x05\x49" 7918 - "\xa7\x33\x34\x86\xca\xe4\x96\x23" 7919 - "\x76\x5b\xf2\xc6\xf1\x51\x28\x42" 7920 - "\x7b\xcc\x76\x8f\xfa\xa2\xad\x31" 7921 - "\xd4\xd6\x7a\x6d\x25\x25\x54\xe4" 7922 - "\x3f\x50\x59\xe1\x5c\x05\xb7\x27" 7923 - "\x48\xbf\x07\xec\x1b\x13\xbe\x2b" 7924 - "\xa1\x57\x2b\xd5\xab\xd7\xd0\x4c" 7925 - "\x1e\xcb\x71\x9b\xc5\x90\x85\xd3" 7926 - "\xde\x59\xec\x71\xeb\x89\xbb\xd0" 7927 - "\x09\x50\xe1\x16\x3f\xfd\x1c\x34" 7928 - "\xc3\x1c\xa1\x10\x77\x53\x98\xef" 7929 - "\xf2\xfd\xa5\x01\x59\xc2\x9b\x26" 7930 - "\xc7\x42\xd9\x49\xda\x58\x2b\x6e" 7931 - "\x9f\x53\x19\x76\x7e\xd9\xc9\x0e" 7932 - "\x68\xc8\x7f\x51\x22\x42\xef\x49" 7933 - "\xa4\x55\xb6\x36\xac\x09\xc7\x31" 7934 - "\x88\x15\x4b\x2e\x8f\x3a\x08\xf7" 7935 - "\xd8\xf7\xa8\xc5\xa9\x33\xa6\x45" 7936 - "\xe4\xc4\x94\x76\xf3\x0d\x8f\x7e" 7937 - "\xc8\xf6\xbc\x23\x0a\xb6\x4c\xd3" 7938 - "\x6a\xcd\x36\xc2\x90\x5c\x5c\x3c" 7939 - "\x65\x7b\xc2\xd6\xcc\xe6\x0d\x87" 7940 - "\x73\x2e\x71\x79\x16\x06\x63\x28" 7941 - "\x09\x15\xd8\x89\x38\x38\x3d\xb5" 7942 - "\x42\x1c\x08\x24\xf7\x2a\xd2\x9d" 7943 - "\xc8\xca\xef\xf9\x27\xd8\x07\x86" 7944 - "\xf7\x43\x0b\x55\x15\x3f\x9f\x83" 7945 - "\xef\xdc\x49\x9d\x2a\xc1\x54\x62" 7946 - "\xbd\x9b\x66\x55\x9f\xb7\x12\xf3" 7947 - "\x1b\x4d\x9d\x2a\x5c\xed\x87\x75" 7948 - "\x87\x26\xec\x61\x2c\xb4\x0f\x89" 7949 - "\xb0\xfb\x2e\x68\x5d\x15\xc7\x8d" 7950 - "\x2e\xc0\xd9\xec\xaf\x4f\xd2\x25" 7951 - "\x29\xe8\xd2\x26\x2b\x67\xe9\xfc" 7952 - "\x2b\xa8\x67\x96\x12\x1f\x5b\x96" 7953 - "\xc6\x14\x53\xaf\x44\xea\xd6\xe2" 7954 - "\x94\x98\xe4\x12\x93\x4c\x92\xe0" 7955 - "\x18\xa5\x8d\x2d\xe4\x71\x3c\x47" 7956 - "\x4c\xf7\xe6\x47\x9e\xc0\x68\xdf" 7957 - "\xd4\xf5\x5a\x74\xb1\x2b\x29\x03" 7958 - "\x19\x07\xaf\x90\x62\x5c\x68\x98" 7959 - "\x48\x16\x11\x02\x9d\xee\xb4\x9b" 7960 - "\xe5\x42\x7f\x08\xfd\x16\x32\x0b" 7961 - "\xd0\xb3\xfa\x2b\xb7\x99\xf9\x29" 7962 - "\xcd\x20\x45\x9f\xb3\x1a\x5d\xa2" 7963 - "\xaf\x4d\xe0\xbd\x42\x0d\xbc\x74" 7964 - "\x99\x9c\x8e\x53\x1a\xb4\x3e\xbd" 7965 - "\xa2\x9a\x2d\xf7\xf8\x39\x0f\x67" 7966 - "\x63\xfc\x6b\xc0\xaf\xb3\x4b\x4f" 7967 - "\x55\xc4\xcf\xa7\xc8\x04\x11\x3e" 7968 - "\x14\x32\xbb\x1b\x38\x77\xd6\x7f" 7969 - "\x54\x4c\xdf\x75\xf3\x07\x2d\x33" 7970 - "\x9b\xa8\x20\xe1\x7b\x12\xb5\xf3" 7971 - "\xef\x2f\xce\x72\xe5\x24\x60\xc1" 7972 - "\x30\xe2\xab\xa1\x8e\x11\x09\xa8" 7973 - "\x21\x33\x44\xfe\x7f\x35\x32\x93" 7974 - "\x39\xa7\xad\x8b\x79\x06\xb2\xcb" 7975 - "\x4e\xa9\x5f\xc7\xba\x74\x29\xec" 7976 - "\x93\xa0\x4e\x54\x93\xc0\xbc\x55" 7977 - "\x64\xf0\x48\xe5\x57\x99\xee\x75" 7978 - "\xd6\x79\x0f\x66\xb7\xc6\x57\x76" 7979 - "\xf7\xb7\xf3\x9c\xc5\x60\xe8\x7f" 7980 - "\x83\x76\xd6\x0e\xaa\xe6\x90\x39" 7981 - "\x1d\xa6\x32\x6a\x34\xe3\x55\xf8" 7982 - "\x58\xa0\x58\x7d\x33\xe0\x22\x39" 7983 - "\x44\x64\x87\x86\x5a\x2f\xa7\x7e" 7984 - "\x0f\x38\xea\xb0\x30\xcc\x61\xa5" 7985 - "\x6a\x32\xae\x1e\xf7\xe9\xd0\xa9" 7986 - "\x0c\x32\x4b\xb5\x49\x28\xab\x85" 7987 - "\x2f\x8e\x01\x36\x38\x52\xd0\xba" 7988 - "\xd6\x02\x78\xf8\x0e\x3e\x9c\x8b" 7989 - "\x6b\x45\x99\x3f\x5c\xfe\x58\xf1" 7990 - "\x5c\x94\x04\xe1\xf5\x18\x6d\x51" 7991 - "\xb2\x5d\x18\x20\xb6\xc2\x9a\x42" 7992 - "\x1d\xb3\xab\x3c\xb6\x3a\x13\x03" 7993 - "\xb2\x46\x82\x4f\xfc\x64\xbc\x4f" 7994 - "\xca\xfa\x9c\xc0\xd5\xa7\xbd\x11" 7995 - "\xb7\xe4\x5a\xf6\x6f\x4d\x4d\x54" 7996 - "\xea\xa4\x98\x66\xd4\x22\x3b\xd3" 7997 - "\x8f\x34\x47\xd9\x7c\xf4\x72\x3b" 7998 - "\x4d\x02\x77\xf6\xd6\xdd\x08\x0a" 7999 - "\x81\xe1\x86\x89\x3e\x56\x10\x3c" 8000 - "\xba\xd7\x81\x8c\x08\xbc\x8b\xe2" 8001 - "\x53\xec\xa7\x89\xee\xc8\x56\xb5" 8002 - "\x36\x2c\xb2\x03\xba\x99\xdd\x7c" 8003 - "\x48\xa0\xb0\xbc\x91\x33\xe9\xa8" 8004 - "\xcb\xcd\xcf\x59\x5f\x1f\x15\xe2" 8005 - "\x56\xf5\x4e\x01\x35\x27\x45\x77" 8006 - "\x47\xc8\xbc\xcb\x7e\x39\xc1\x97" 8007 - "\x28\xd3\x84\xfc\x2c\x3e\xc8\xad" 8008 - "\x9c\xf8\x8a\x61\x9c\x28\xaa\xc5" 8009 - "\x99\x20\x43\x85\x9d\xa5\xe2\x8b" 8010 - "\xb8\xae\xeb\xd0\x32\x0d\x52\x78" 8011 - "\x09\x56\x3f\xc7\xd8\x7e\x26\xfc" 8012 - "\x37\xfb\x6f\x04\xfc\xfa\x92\x10" 8013 - "\xac\xf8\x3e\x21\xdc\x8c\x21\x16" 8014 - "\x7d\x67\x6e\xf6\xcd\xda\xb6\x98" 8015 - "\x23\xab\x23\x3c\xb2\x10\xa0\x53" 8016 - "\x5a\x56\x9f\xc5\xd0\xff\xbb\xe4" 8017 - "\x98\x3c\x69\x1e\xdb\x38\x8f\x7e" 8018 - "\x0f\xd2\x98\x88\x81\x8b\x45\x67" 8019 - "\xea\x33\xf1\xeb\xe9\x97\x55\x2e" 8020 - "\xd9\xaa\xeb\x5a\xec\xda\xe1\x68" 8021 - "\xa8\x9d\x3c\x84\x7c\x05\x3d\x62" 8022 - "\x87\x8f\x03\x21\x28\x95\x0c\x89" 8023 - "\x25\x22\x4a\xb0\x93\xa9\x50\xa2" 8024 - "\x2f\x57\x6e\x18\x42\x19\x54\x0c" 8025 - "\x55\x67\xc6\x11\x49\xf4\x5c\xd2" 8026 - "\xe9\x3d\xdd\x8b\x48\x71\x21\x00" 8027 - "\xc3\x9a\x6c\x85\x74\x28\x83\x4a" 8028 - "\x1b\x31\x05\xe1\x06\x92\xe7\xda" 8029 - "\x85\x73\x78\x45\x20\x7f\xae\x13" 8030 - "\x7c\x33\x06\x22\xf4\x83\xf9\x35" 8031 - "\x3f\x6c\x71\xa8\x4e\x48\xbe\x9b" 8032 - "\xce\x8a\xba\xda\xbe\x28\x08\xf7" 8033 - "\xe2\x14\x8c\x71\xea\x72\xf9\x33" 8034 - "\xf2\x88\x3f\xd7\xbb\x69\x6c\x29" 8035 - "\x19\xdc\x84\xce\x1f\x12\x4f\xc8" 8036 - "\xaf\xa5\x04\xba\x5a\xab\xb0\xd9" 8037 - "\x14\x1f\x6c\x68\x98\x39\x89\x7a" 8038 - "\xd9\xd8\x2f\xdf\xa8\x47\x4a\x25" 8039 - "\xe2\xfb\x33\xf4\x59\x78\xe1\x68" 8040 - "\x85\xcf\xfe\x59\x20\xd4\x05\x1d" 8041 - "\x80\x99\xae\xbc\xca\xae\x0f\x2f" 8042 - "\x65\x43\x34\x8e\x7e\xac\xd3\x93" 8043 - "\x2f\xac\x6d\x14\x3d\x02\x07\x70" 8044 - "\x9d\xa4\xf3\x1b\x5c\x36\xfc\x01" 8045 - "\x73\x34\x85\x0c\x6c\xd6\xf1\xbd" 8046 - "\x3f\xdf\xee\xf5\xd9\xba\x56\xef" 8047 - "\xf4\x9b\x6b\xee\x9f\x5a\x78\x6d" 8048 - "\x32\x19\xf4\xf7\xf8\x4c\x69\x0b" 8049 - "\x4b\xbc\xbb\xb7\xf2\x85\xaf\x70" 8050 - "\x75\x24\x6c\x54\xa7\x0e\x4d\x1d" 8051 - "\x01\xbf\x08\xac\xcf\x7f\x2c\xe3" 8052 - "\x14\x89\x5e\x70\x5a\x99\x92\xcd" 8053 - "\x01\x84\xc8\xd2\xab\xe5\x4f\x58" 8054 - "\xe7\x0f\x2f\x0e\xff\x68\xea\xfd" 8055 - "\x15\xb3\x17\xe6\xb0\xe7\x85\xd8" 8056 - "\x23\x2e\x05\xc7\xc9\xc4\x46\x1f" 8057 - "\xe1\x9e\x49\x20\x23\x24\x4d\x7e" 8058 - "\x29\x65\xff\xf4\xb6\xfd\x1a\x85" 8059 - "\xc4\x16\xec\xfc\xea\x7b\xd6\x2c" 8060 - "\x43\xf8\xb7\xbf\x79\xc0\x85\xcd" 8061 - "\xef\xe1\x98\xd3\xa5\xf7\x90\x8c" 8062 - "\xe9\x7f\x80\x6b\xd2\xac\x4c\x30" 8063 - "\xa7\xc6\x61\x6c\xd2\xf9\x2c\xff" 8064 - "\x30\xbc\x22\x81\x7d\x93\x12\xe4" 8065 - "\x0a\xcd\xaf\xdd\xe8\xab\x0a\x1e" 8066 - "\x13\xa4\x27\xc3\x5f\xf7\x4b\xbb" 8067 - "\x37\x09\x4b\x91\x6f\x92\x4f\xaf" 8068 - "\x52\xee\xdf\xef\x09\x6f\xf7\x5c" 8069 - "\x6e\x12\x17\x72\x63\x57\xc7\xba" 8070 - "\x3b\x6b\x38\x32\x73\x1b\x9c\x80" 8071 - "\xc1\x7a\xc6\xcf\xcd\x35\xc0\x6b" 8072 - "\x31\x1a\x6b\xe9\xd8\x2c\x29\x3f" 8073 - "\x96\xfb\xb6\xcd\x13\x91\x3b\xc2" 8074 - "\xd2\xa3\x31\x8d\xa4\xcd\x57\xcd" 8075 - "\x13\x3d\x64\xfd\x06\xce\xe6\xdc" 8076 - "\x0c\x24\x43\x31\x40\x57\xf1\x72" 8077 - "\x17\xe3\x3a\x63\x6d\x35\xcf\x5d" 8078 - "\x97\x40\x59\xdd\xf7\x3c\x02\xf7" 8079 - "\x1c\x7e\x05\xbb\xa9\x0d\x01\xb1" 8080 - "\x8e\xc0\x30\xa9\x53\x24\xc9\x89" 8081 - "\x84\x6d\xaa\xd0\xcd\x91\xc2\x4d" 8082 - "\x91\xb0\x89\xe2\xbf\x83\x44\xaa" 8083 - "\x28\x72\x23\xa0\xc2\xad\xad\x1c" 8084 - "\xfc\x3f\x09\x7a\x0b\xdc\xc5\x1b" 8085 - "\x87\x13\xc6\x5b\x59\x8d\xf2\xc8" 8086 - "\xaf\xdf\x11\x95", 8087 - .rlen = 4100, 8088 - .np = 2, 8089 - .tap = { 4064, 36 }, 8090 - }, 8091 - }; 8092 - 8093 - /* 8094 - * CTS (Cipher Text Stealing) mode tests 8095 - */ 8096 - #define CTS_MODE_ENC_TEST_VECTORS 6 8097 - #define CTS_MODE_DEC_TEST_VECTORS 6 8098 - static struct cipher_testvec cts_mode_enc_tv_template[] = { 8099 - { /* from rfc3962 */ 8100 - .klen = 16, 8101 - .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 8102 - "\x74\x65\x72\x69\x79\x61\x6b\x69", 8103 - .ilen = 17, 8104 - .input = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 8105 - "\x6c\x69\x6b\x65\x20\x74\x68\x65" 8106 - "\x20", 8107 - .rlen = 17, 8108 - .result = "\xc6\x35\x35\x68\xf2\xbf\x8c\xb4" 8109 - "\xd8\xa5\x80\x36\x2d\xa7\xff\x7f" 8110 - "\x97", 8111 - }, { 8112 - .klen = 16, 8113 - .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 8114 - "\x74\x65\x72\x69\x79\x61\x6b\x69", 8115 - .ilen = 31, 8116 - .input = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 8117 - "\x6c\x69\x6b\x65\x20\x74\x68\x65" 8118 - "\x20\x47\x65\x6e\x65\x72\x61\x6c" 8119 - "\x20\x47\x61\x75\x27\x73\x20", 8120 - .rlen = 31, 8121 - .result = "\xfc\x00\x78\x3e\x0e\xfd\xb2\xc1" 8122 - "\xd4\x45\xd4\xc8\xef\xf7\xed\x22" 8123 - "\x97\x68\x72\x68\xd6\xec\xcc\xc0" 8124 - "\xc0\x7b\x25\xe2\x5e\xcf\xe5", 8125 - }, { 8126 - .klen = 16, 8127 - .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 8128 - "\x74\x65\x72\x69\x79\x61\x6b\x69", 8129 - .ilen = 32, 8130 - .input = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 8131 - "\x6c\x69\x6b\x65\x20\x74\x68\x65" 8132 - "\x20\x47\x65\x6e\x65\x72\x61\x6c" 8133 - "\x20\x47\x61\x75\x27\x73\x20\x43", 8134 - .rlen = 32, 8135 - .result = "\x39\x31\x25\x23\xa7\x86\x62\xd5" 8136 - "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8" 8137 - "\x97\x68\x72\x68\xd6\xec\xcc\xc0" 8138 - "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84", 8139 - }, { 8140 - .klen = 16, 8141 - .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 8142 - "\x74\x65\x72\x69\x79\x61\x6b\x69", 8143 - .ilen = 47, 8144 - .input = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 8145 - "\x6c\x69\x6b\x65\x20\x74\x68\x65" 8146 - "\x20\x47\x65\x6e\x65\x72\x61\x6c" 8147 - "\x20\x47\x61\x75\x27\x73\x20\x43" 8148 - "\x68\x69\x63\x6b\x65\x6e\x2c\x20" 8149 - "\x70\x6c\x65\x61\x73\x65\x2c", 8150 - .rlen = 47, 8151 - .result = "\x97\x68\x72\x68\xd6\xec\xcc\xc0" 8152 - "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84" 8153 - "\xb3\xff\xfd\x94\x0c\x16\xa1\x8c" 8154 - "\x1b\x55\x49\xd2\xf8\x38\x02\x9e" 8155 - "\x39\x31\x25\x23\xa7\x86\x62\xd5" 8156 - "\xbe\x7f\xcb\xcc\x98\xeb\xf5", 8157 - }, { 8158 - .klen = 16, 8159 - .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 8160 - "\x74\x65\x72\x69\x79\x61\x6b\x69", 8161 - .ilen = 48, 8162 - .input = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 8163 - "\x6c\x69\x6b\x65\x20\x74\x68\x65" 8164 - "\x20\x47\x65\x6e\x65\x72\x61\x6c" 8165 - "\x20\x47\x61\x75\x27\x73\x20\x43" 8166 - "\x68\x69\x63\x6b\x65\x6e\x2c\x20" 8167 - "\x70\x6c\x65\x61\x73\x65\x2c\x20", 8168 - .rlen = 48, 8169 - .result = "\x97\x68\x72\x68\xd6\xec\xcc\xc0" 8170 - "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84" 8171 - "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0" 8172 - "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8" 8173 - "\x39\x31\x25\x23\xa7\x86\x62\xd5" 8174 - "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8", 8175 - }, { 8176 - .klen = 16, 8177 - .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 8178 - "\x74\x65\x72\x69\x79\x61\x6b\x69", 8179 - .ilen = 64, 8180 - .input = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 8181 - "\x6c\x69\x6b\x65\x20\x74\x68\x65" 8182 - "\x20\x47\x65\x6e\x65\x72\x61\x6c" 8183 - "\x20\x47\x61\x75\x27\x73\x20\x43" 8184 - "\x68\x69\x63\x6b\x65\x6e\x2c\x20" 8185 - "\x70\x6c\x65\x61\x73\x65\x2c\x20" 8186 - "\x61\x6e\x64\x20\x77\x6f\x6e\x74" 8187 - "\x6f\x6e\x20\x73\x6f\x75\x70\x2e", 8188 - .rlen = 64, 8189 - .result = "\x97\x68\x72\x68\xd6\xec\xcc\xc0" 8190 - "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84" 8191 - "\x39\x31\x25\x23\xa7\x86\x62\xd5" 8192 - "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8" 8193 - "\x48\x07\xef\xe8\x36\xee\x89\xa5" 8194 - "\x26\x73\x0d\xbc\x2f\x7b\xc8\x40" 8195 - "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0" 8196 - "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8", 8197 - } 8198 - }; 8199 - 8200 - static struct cipher_testvec cts_mode_dec_tv_template[] = { 8201 - { /* from rfc3962 */ 8202 - .klen = 16, 8203 - .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 8204 - "\x74\x65\x72\x69\x79\x61\x6b\x69", 8205 - .rlen = 17, 8206 - .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 8207 - "\x6c\x69\x6b\x65\x20\x74\x68\x65" 8208 - "\x20", 8209 - .ilen = 17, 8210 - .input = "\xc6\x35\x35\x68\xf2\xbf\x8c\xb4" 8211 - "\xd8\xa5\x80\x36\x2d\xa7\xff\x7f" 8212 - "\x97", 8213 - }, { 8214 - .klen = 16, 8215 - .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 8216 - "\x74\x65\x72\x69\x79\x61\x6b\x69", 8217 - .rlen = 31, 8218 - .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 8219 - "\x6c\x69\x6b\x65\x20\x74\x68\x65" 8220 - "\x20\x47\x65\x6e\x65\x72\x61\x6c" 8221 - "\x20\x47\x61\x75\x27\x73\x20", 8222 - .ilen = 31, 8223 - .input = "\xfc\x00\x78\x3e\x0e\xfd\xb2\xc1" 8224 - "\xd4\x45\xd4\xc8\xef\xf7\xed\x22" 8225 - "\x97\x68\x72\x68\xd6\xec\xcc\xc0" 8226 - "\xc0\x7b\x25\xe2\x5e\xcf\xe5", 8227 - }, { 8228 - .klen = 16, 8229 - .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 8230 - "\x74\x65\x72\x69\x79\x61\x6b\x69", 8231 - .rlen = 32, 8232 - .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 8233 - "\x6c\x69\x6b\x65\x20\x74\x68\x65" 8234 - "\x20\x47\x65\x6e\x65\x72\x61\x6c" 8235 - "\x20\x47\x61\x75\x27\x73\x20\x43", 8236 - .ilen = 32, 8237 - .input = "\x39\x31\x25\x23\xa7\x86\x62\xd5" 8238 - "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8" 8239 - "\x97\x68\x72\x68\xd6\xec\xcc\xc0" 8240 - "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84", 8241 - }, { 8242 - .klen = 16, 8243 - .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 8244 - "\x74\x65\x72\x69\x79\x61\x6b\x69", 8245 - .rlen = 47, 8246 - .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 8247 - "\x6c\x69\x6b\x65\x20\x74\x68\x65" 8248 - "\x20\x47\x65\x6e\x65\x72\x61\x6c" 8249 - "\x20\x47\x61\x75\x27\x73\x20\x43" 8250 - "\x68\x69\x63\x6b\x65\x6e\x2c\x20" 8251 - "\x70\x6c\x65\x61\x73\x65\x2c", 8252 - .ilen = 47, 8253 - .input = "\x97\x68\x72\x68\xd6\xec\xcc\xc0" 8254 - "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84" 8255 - "\xb3\xff\xfd\x94\x0c\x16\xa1\x8c" 8256 - "\x1b\x55\x49\xd2\xf8\x38\x02\x9e" 8257 - "\x39\x31\x25\x23\xa7\x86\x62\xd5" 8258 - "\xbe\x7f\xcb\xcc\x98\xeb\xf5", 8259 - }, { 8260 - .klen = 16, 8261 - .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 8262 - "\x74\x65\x72\x69\x79\x61\x6b\x69", 8263 - .rlen = 48, 8264 - .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 8265 - "\x6c\x69\x6b\x65\x20\x74\x68\x65" 8266 - "\x20\x47\x65\x6e\x65\x72\x61\x6c" 8267 - "\x20\x47\x61\x75\x27\x73\x20\x43" 8268 - "\x68\x69\x63\x6b\x65\x6e\x2c\x20" 8269 - "\x70\x6c\x65\x61\x73\x65\x2c\x20", 8270 - .ilen = 48, 8271 - .input = "\x97\x68\x72\x68\xd6\xec\xcc\xc0" 8272 - "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84" 8273 - "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0" 8274 - "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8" 8275 - "\x39\x31\x25\x23\xa7\x86\x62\xd5" 8276 - "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8", 8277 - }, { 8278 - .klen = 16, 8279 - .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 8280 - "\x74\x65\x72\x69\x79\x61\x6b\x69", 8281 - .rlen = 64, 8282 - .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 8283 - "\x6c\x69\x6b\x65\x20\x74\x68\x65" 8284 - "\x20\x47\x65\x6e\x65\x72\x61\x6c" 8285 - "\x20\x47\x61\x75\x27\x73\x20\x43" 8286 - "\x68\x69\x63\x6b\x65\x6e\x2c\x20" 8287 - "\x70\x6c\x65\x61\x73\x65\x2c\x20" 8288 - "\x61\x6e\x64\x20\x77\x6f\x6e\x74" 8289 - "\x6f\x6e\x20\x73\x6f\x75\x70\x2e", 8290 - .ilen = 64, 8291 - .input = "\x97\x68\x72\x68\xd6\xec\xcc\xc0" 8292 - "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84" 8293 - "\x39\x31\x25\x23\xa7\x86\x62\xd5" 8294 - "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8" 8295 - "\x48\x07\xef\xe8\x36\xee\x89\xa5" 8296 - "\x26\x73\x0d\xbc\x2f\x7b\xc8\x40" 8297 - "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0" 8298 - "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8", 8299 - } 8300 - }; 8301 - 8302 - /* 8303 - * Compression stuff. 8304 - */ 8305 - #define COMP_BUF_SIZE 512 8306 - 8307 - struct comp_testvec { 8308 - int inlen, outlen; 8309 - char input[COMP_BUF_SIZE]; 8310 - char output[COMP_BUF_SIZE]; 8311 - }; 8312 - 8313 - /* 8314 - * Deflate test vectors (null-terminated strings). 8315 - * Params: winbits=11, Z_DEFAULT_COMPRESSION, MAX_MEM_LEVEL. 8316 - */ 8317 - #define DEFLATE_COMP_TEST_VECTORS 2 8318 - #define DEFLATE_DECOMP_TEST_VECTORS 2 8319 - 8320 - static struct comp_testvec deflate_comp_tv_template[] = { 8321 - { 8322 - .inlen = 70, 8323 - .outlen = 38, 8324 - .input = "Join us now and share the software " 8325 - "Join us now and share the software ", 8326 - .output = "\xf3\xca\xcf\xcc\x53\x28\x2d\x56" 8327 - "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51" 8328 - "\x28\xce\x48\x2c\x4a\x55\x28\xc9" 8329 - "\x48\x55\x28\xce\x4f\x2b\x29\x07" 8330 - "\x71\xbc\x08\x2b\x01\x00", 8331 - }, { 8332 - .inlen = 191, 8333 - .outlen = 122, 8334 - .input = "This document describes a compression method based on the DEFLATE" 8335 - "compression algorithm. This document defines the application of " 8336 - "the DEFLATE algorithm to the IP Payload Compression Protocol.", 8337 - .output = "\x5d\x8d\x31\x0e\xc2\x30\x10\x04" 8338 - "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09" 8339 - "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8" 8340 - "\x24\xdb\x67\xd9\x47\xc1\xef\x49" 8341 - "\x68\x12\x51\xae\x76\x67\xd6\x27" 8342 - "\x19\x88\x1a\xde\x85\xab\x21\xf2" 8343 - "\x08\x5d\x16\x1e\x20\x04\x2d\xad" 8344 - "\xf3\x18\xa2\x15\x85\x2d\x69\xc4" 8345 - "\x42\x83\x23\xb6\x6c\x89\x71\x9b" 8346 - "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f" 8347 - "\xed\x62\xa9\x4c\x80\xff\x13\xaf" 8348 - "\x52\x37\xed\x0e\x52\x6b\x59\x02" 8349 - "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98" 8350 - "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a" 8351 - "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79" 8352 - "\xfa\x02", 8353 - }, 8354 - }; 8355 - 8356 - static struct comp_testvec deflate_decomp_tv_template[] = { 8357 - { 8358 - .inlen = 122, 8359 - .outlen = 191, 8360 - .input = "\x5d\x8d\x31\x0e\xc2\x30\x10\x04" 8361 - "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09" 8362 - "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8" 8363 - "\x24\xdb\x67\xd9\x47\xc1\xef\x49" 8364 - "\x68\x12\x51\xae\x76\x67\xd6\x27" 8365 - "\x19\x88\x1a\xde\x85\xab\x21\xf2" 8366 - "\x08\x5d\x16\x1e\x20\x04\x2d\xad" 8367 - "\xf3\x18\xa2\x15\x85\x2d\x69\xc4" 8368 - "\x42\x83\x23\xb6\x6c\x89\x71\x9b" 8369 - "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f" 8370 - "\xed\x62\xa9\x4c\x80\xff\x13\xaf" 8371 - "\x52\x37\xed\x0e\x52\x6b\x59\x02" 8372 - "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98" 8373 - "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a" 8374 - "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79" 8375 - "\xfa\x02", 8376 - .output = "This document describes a compression method based on the DEFLATE" 8377 - "compression algorithm. This document defines the application of " 8378 - "the DEFLATE algorithm to the IP Payload Compression Protocol.", 8379 - }, { 8380 - .inlen = 38, 8381 - .outlen = 70, 8382 - .input = "\xf3\xca\xcf\xcc\x53\x28\x2d\x56" 8383 - "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51" 8384 - "\x28\xce\x48\x2c\x4a\x55\x28\xc9" 8385 - "\x48\x55\x28\xce\x4f\x2b\x29\x07" 8386 - "\x71\xbc\x08\x2b\x01\x00", 8387 - .output = "Join us now and share the software " 8388 - "Join us now and share the software ", 8389 - }, 8390 - }; 8391 - 8392 - /* 8393 - * LZO test vectors (null-terminated strings). 8394 - */ 8395 - #define LZO_COMP_TEST_VECTORS 2 8396 - #define LZO_DECOMP_TEST_VECTORS 2 8397 - 8398 - static struct comp_testvec lzo_comp_tv_template[] = { 8399 - { 8400 - .inlen = 70, 8401 - .outlen = 46, 8402 - .input = "Join us now and share the software " 8403 - "Join us now and share the software ", 8404 - .output = "\x00\x0d\x4a\x6f\x69\x6e\x20\x75" 8405 - "\x73\x20\x6e\x6f\x77\x20\x61\x6e" 8406 - "\x64\x20\x73\x68\x61\x72\x65\x20" 8407 - "\x74\x68\x65\x20\x73\x6f\x66\x74" 8408 - "\x77\x70\x01\x01\x4a\x6f\x69\x6e" 8409 - "\x3d\x88\x00\x11\x00\x00", 8410 - }, { 8411 - .inlen = 159, 8412 - .outlen = 133, 8413 - .input = "This document describes a compression method based on the LZO " 8414 - "compression algorithm. This document defines the application of " 8415 - "the LZO algorithm used in UBIFS.", 8416 - .output = "\x00\x2b\x54\x68\x69\x73\x20\x64" 8417 - "\x6f\x63\x75\x6d\x65\x6e\x74\x20" 8418 - "\x64\x65\x73\x63\x72\x69\x62\x65" 8419 - "\x73\x20\x61\x20\x63\x6f\x6d\x70" 8420 - "\x72\x65\x73\x73\x69\x6f\x6e\x20" 8421 - "\x6d\x65\x74\x68\x6f\x64\x20\x62" 8422 - "\x61\x73\x65\x64\x20\x6f\x6e\x20" 8423 - "\x74\x68\x65\x20\x4c\x5a\x4f\x2b" 8424 - "\x8c\x00\x0d\x61\x6c\x67\x6f\x72" 8425 - "\x69\x74\x68\x6d\x2e\x20\x20\x54" 8426 - "\x68\x69\x73\x2a\x54\x01\x02\x66" 8427 - "\x69\x6e\x65\x73\x94\x06\x05\x61" 8428 - "\x70\x70\x6c\x69\x63\x61\x74\x76" 8429 - "\x0a\x6f\x66\x88\x02\x60\x09\x27" 8430 - "\xf0\x00\x0c\x20\x75\x73\x65\x64" 8431 - "\x20\x69\x6e\x20\x55\x42\x49\x46" 8432 - "\x53\x2e\x11\x00\x00", 8433 - }, 8434 - }; 8435 - 8436 - static struct comp_testvec lzo_decomp_tv_template[] = { 8437 - { 8438 - .inlen = 133, 8439 - .outlen = 159, 8440 - .input = "\x00\x2b\x54\x68\x69\x73\x20\x64" 8441 - "\x6f\x63\x75\x6d\x65\x6e\x74\x20" 8442 - "\x64\x65\x73\x63\x72\x69\x62\x65" 8443 - "\x73\x20\x61\x20\x63\x6f\x6d\x70" 8444 - "\x72\x65\x73\x73\x69\x6f\x6e\x20" 8445 - "\x6d\x65\x74\x68\x6f\x64\x20\x62" 8446 - "\x61\x73\x65\x64\x20\x6f\x6e\x20" 8447 - "\x74\x68\x65\x20\x4c\x5a\x4f\x2b" 8448 - "\x8c\x00\x0d\x61\x6c\x67\x6f\x72" 8449 - "\x69\x74\x68\x6d\x2e\x20\x20\x54" 8450 - "\x68\x69\x73\x2a\x54\x01\x02\x66" 8451 - "\x69\x6e\x65\x73\x94\x06\x05\x61" 8452 - "\x70\x70\x6c\x69\x63\x61\x74\x76" 8453 - "\x0a\x6f\x66\x88\x02\x60\x09\x27" 8454 - "\xf0\x00\x0c\x20\x75\x73\x65\x64" 8455 - "\x20\x69\x6e\x20\x55\x42\x49\x46" 8456 - "\x53\x2e\x11\x00\x00", 8457 - .output = "This document describes a compression method based on the LZO " 8458 - "compression algorithm. This document defines the application of " 8459 - "the LZO algorithm used in UBIFS.", 8460 - }, { 8461 - .inlen = 46, 8462 - .outlen = 70, 8463 - .input = "\x00\x0d\x4a\x6f\x69\x6e\x20\x75" 8464 - "\x73\x20\x6e\x6f\x77\x20\x61\x6e" 8465 - "\x64\x20\x73\x68\x61\x72\x65\x20" 8466 - "\x74\x68\x65\x20\x73\x6f\x66\x74" 8467 - "\x77\x70\x01\x01\x4a\x6f\x69\x6e" 8468 - "\x3d\x88\x00\x11\x00\x00", 8469 - .output = "Join us now and share the software " 8470 - "Join us now and share the software ", 8471 - }, 8472 - }; 8473 - 8474 - /* 8475 - * Michael MIC test vectors from IEEE 802.11i 8476 - */ 8477 - #define MICHAEL_MIC_TEST_VECTORS 6 8478 - 8479 - static struct hash_testvec michael_mic_tv_template[] = { 8480 - { 8481 - .key = "\x00\x00\x00\x00\x00\x00\x00\x00", 8482 - .ksize = 8, 8483 - .plaintext = zeroed_string, 8484 - .psize = 0, 8485 - .digest = "\x82\x92\x5c\x1c\xa1\xd1\x30\xb8", 8486 - }, 8487 - { 8488 - .key = "\x82\x92\x5c\x1c\xa1\xd1\x30\xb8", 8489 - .ksize = 8, 8490 - .plaintext = "M", 8491 - .psize = 1, 8492 - .digest = "\x43\x47\x21\xca\x40\x63\x9b\x3f", 8493 - }, 8494 - { 8495 - .key = "\x43\x47\x21\xca\x40\x63\x9b\x3f", 8496 - .ksize = 8, 8497 - .plaintext = "Mi", 8498 - .psize = 2, 8499 - .digest = "\xe8\xf9\xbe\xca\xe9\x7e\x5d\x29", 8500 - }, 8501 - { 8502 - .key = "\xe8\xf9\xbe\xca\xe9\x7e\x5d\x29", 8503 - .ksize = 8, 8504 - .plaintext = "Mic", 8505 - .psize = 3, 8506 - .digest = "\x90\x03\x8f\xc6\xcf\x13\xc1\xdb", 8507 - }, 8508 - { 8509 - .key = "\x90\x03\x8f\xc6\xcf\x13\xc1\xdb", 8510 - .ksize = 8, 8511 - .plaintext = "Mich", 8512 - .psize = 4, 8513 - .digest = "\xd5\x5e\x10\x05\x10\x12\x89\x86", 8514 - }, 8515 - { 8516 - .key = "\xd5\x5e\x10\x05\x10\x12\x89\x86", 8517 - .ksize = 8, 8518 - .plaintext = "Michael", 8519 - .psize = 7, 8520 - .digest = "\x0a\x94\x2b\x12\x4e\xca\xa5\x46", 8521 - } 8522 - }; 8523 - 8524 - /* 8525 - * CRC32C test vectors 8526 - */ 8527 - #define CRC32C_TEST_VECTORS 14 8528 - 8529 - static struct hash_testvec crc32c_tv_template[] = { 8530 - { 8531 - .psize = 0, 8532 - .digest = "\x00\x00\x00\x00", 8533 - }, 8534 - { 8535 - .key = "\x87\xa9\xcb\xed", 8536 - .ksize = 4, 8537 - .psize = 0, 8538 - .digest = "\x78\x56\x34\x12", 8539 - }, 8540 - { 8541 - .key = "\xff\xff\xff\xff", 8542 - .ksize = 4, 8543 - .plaintext = "\x01\x02\x03\x04\x05\x06\x07\x08" 8544 - "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 8545 - "\x11\x12\x13\x14\x15\x16\x17\x18" 8546 - "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20" 8547 - "\x21\x22\x23\x24\x25\x26\x27\x28", 8548 - .psize = 40, 8549 - .digest = "\x7f\x15\x2c\x0e", 8550 - }, 8551 - { 8552 - .key = "\xff\xff\xff\xff", 8553 - .ksize = 4, 8554 - .plaintext = "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30" 8555 - "\x31\x32\x33\x34\x35\x36\x37\x38" 8556 - "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40" 8557 - "\x41\x42\x43\x44\x45\x46\x47\x48" 8558 - "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50", 8559 - .psize = 40, 8560 - .digest = "\xf6\xeb\x80\xe9", 8561 - }, 8562 - { 8563 - .key = "\xff\xff\xff\xff", 8564 - .ksize = 4, 8565 - .plaintext = "\x51\x52\x53\x54\x55\x56\x57\x58" 8566 - "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60" 8567 - "\x61\x62\x63\x64\x65\x66\x67\x68" 8568 - "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70" 8569 - "\x71\x72\x73\x74\x75\x76\x77\x78", 8570 - .psize = 40, 8571 - .digest = "\xed\xbd\x74\xde", 8572 - }, 8573 - { 8574 - .key = "\xff\xff\xff\xff", 8575 - .ksize = 4, 8576 - .plaintext = "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80" 8577 - "\x81\x82\x83\x84\x85\x86\x87\x88" 8578 - "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90" 8579 - "\x91\x92\x93\x94\x95\x96\x97\x98" 8580 - "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0", 8581 - .psize = 40, 8582 - .digest = "\x62\xc8\x79\xd5", 8583 - }, 8584 - { 8585 - .key = "\xff\xff\xff\xff", 8586 - .ksize = 4, 8587 - .plaintext = "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8" 8588 - "\xa9\xaa\xab\xac\xad\xae\xaf\xb0" 8589 - "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8" 8590 - "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0" 8591 - "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8", 8592 - .psize = 40, 8593 - .digest = "\xd0\x9a\x97\xba", 8594 - }, 8595 - { 8596 - .key = "\xff\xff\xff\xff", 8597 - .ksize = 4, 8598 - .plaintext = "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0" 8599 - "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8" 8600 - "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0" 8601 - "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8" 8602 - "\xe9\xea\xeb\xec\xed\xee\xef\xf0", 8603 - .psize = 40, 8604 - .digest = "\x13\xd9\x29\x2b", 8605 - }, 8606 - { 8607 - .key = "\x80\xea\xd3\xf1", 8608 - .ksize = 4, 8609 - .plaintext = "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30" 8610 - "\x31\x32\x33\x34\x35\x36\x37\x38" 8611 - "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40" 8612 - "\x41\x42\x43\x44\x45\x46\x47\x48" 8613 - "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50", 8614 - .psize = 40, 8615 - .digest = "\x0c\xb5\xe2\xa2", 8616 - }, 8617 - { 8618 - .key = "\xf3\x4a\x1d\x5d", 8619 - .ksize = 4, 8620 - .plaintext = "\x51\x52\x53\x54\x55\x56\x57\x58" 8621 - "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60" 8622 - "\x61\x62\x63\x64\x65\x66\x67\x68" 8623 - "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70" 8624 - "\x71\x72\x73\x74\x75\x76\x77\x78", 8625 - .psize = 40, 8626 - .digest = "\xd1\x7f\xfb\xa6", 8627 - }, 8628 - { 8629 - .key = "\x2e\x80\x04\x59", 8630 - .ksize = 4, 8631 - .plaintext = "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80" 8632 - "\x81\x82\x83\x84\x85\x86\x87\x88" 8633 - "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90" 8634 - "\x91\x92\x93\x94\x95\x96\x97\x98" 8635 - "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0", 8636 - .psize = 40, 8637 - .digest = "\x59\x33\xe6\x7a", 8638 - }, 8639 - { 8640 - .key = "\xa6\xcc\x19\x85", 8641 - .ksize = 4, 8642 - .plaintext = "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8" 8643 - "\xa9\xaa\xab\xac\xad\xae\xaf\xb0" 8644 - "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8" 8645 - "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0" 8646 - "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8", 8647 - .psize = 40, 8648 - .digest = "\xbe\x03\x01\xd2", 8649 - }, 8650 - { 8651 - .key = "\x41\xfc\xfe\x2d", 8652 - .ksize = 4, 8653 - .plaintext = "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0" 8654 - "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8" 8655 - "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0" 8656 - "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8" 8657 - "\xe9\xea\xeb\xec\xed\xee\xef\xf0", 8658 - .psize = 40, 8659 - .digest = "\x75\xd3\xc5\x24", 8660 - }, 8661 - { 8662 - .key = "\xff\xff\xff\xff", 8663 - .ksize = 4, 8664 - .plaintext = "\x01\x02\x03\x04\x05\x06\x07\x08" 8665 - "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 8666 - "\x11\x12\x13\x14\x15\x16\x17\x18" 8667 - "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20" 8668 - "\x21\x22\x23\x24\x25\x26\x27\x28" 8669 - "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30" 8670 - "\x31\x32\x33\x34\x35\x36\x37\x38" 8671 - "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40" 8672 - "\x41\x42\x43\x44\x45\x46\x47\x48" 8673 - "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50" 8674 - "\x51\x52\x53\x54\x55\x56\x57\x58" 8675 - "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60" 8676 - "\x61\x62\x63\x64\x65\x66\x67\x68" 8677 - "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70" 8678 - "\x71\x72\x73\x74\x75\x76\x77\x78" 8679 - "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80" 8680 - "\x81\x82\x83\x84\x85\x86\x87\x88" 8681 - "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90" 8682 - "\x91\x92\x93\x94\x95\x96\x97\x98" 8683 - "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0" 8684 - "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8" 8685 - "\xa9\xaa\xab\xac\xad\xae\xaf\xb0" 8686 - "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8" 8687 - "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0" 8688 - "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8" 8689 - "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0" 8690 - "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8" 8691 - "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0" 8692 - "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8" 8693 - "\xe9\xea\xeb\xec\xed\xee\xef\xf0", 8694 - .psize = 240, 8695 - .digest = "\x75\xd3\xc5\x24", 8696 - .np = 2, 8697 - .tap = { 31, 209 } 8698 - }, 8699 86 }; 8700 87 8701 88 /*
+1746
crypto/testmgr.c
··· 1 + /* 2 + * Algorithm testing framework and tests. 3 + * 4 + * Copyright (c) 2002 James Morris <jmorris@intercode.com.au> 5 + * Copyright (c) 2002 Jean-Francois Dive <jef@linuxbe.org> 6 + * Copyright (c) 2007 Nokia Siemens Networks 7 + * Copyright (c) 2008 Herbert Xu <herbert@gondor.apana.org.au> 8 + * 9 + * This program is free software; you can redistribute it and/or modify it 10 + * under the terms of the GNU General Public License as published by the Free 11 + * Software Foundation; either version 2 of the License, or (at your option) 12 + * any later version. 13 + * 14 + */ 15 + 16 + #include <crypto/hash.h> 17 + #include <linux/err.h> 18 + #include <linux/module.h> 19 + #include <linux/scatterlist.h> 20 + #include <linux/slab.h> 21 + #include <linux/string.h> 22 + 23 + #include "internal.h" 24 + #include "testmgr.h" 25 + 26 + /* 27 + * Need slab memory for testing (size in number of pages). 28 + */ 29 + #define XBUFSIZE 8 30 + 31 + /* 32 + * Indexes into the xbuf to simulate cross-page access. 33 + */ 34 + #define IDX1 32 35 + #define IDX2 32400 36 + #define IDX3 1 37 + #define IDX4 8193 38 + #define IDX5 22222 39 + #define IDX6 17101 40 + #define IDX7 27333 41 + #define IDX8 3000 42 + 43 + /* 44 + * Used by test_cipher() 45 + */ 46 + #define ENCRYPT 1 47 + #define DECRYPT 0 48 + 49 + struct tcrypt_result { 50 + struct completion completion; 51 + int err; 52 + }; 53 + 54 + struct aead_test_suite { 55 + struct { 56 + struct aead_testvec *vecs; 57 + unsigned int count; 58 + } enc, dec; 59 + }; 60 + 61 + struct cipher_test_suite { 62 + struct { 63 + struct cipher_testvec *vecs; 64 + unsigned int count; 65 + } enc, dec; 66 + }; 67 + 68 + struct comp_test_suite { 69 + struct { 70 + struct comp_testvec *vecs; 71 + unsigned int count; 72 + } comp, decomp; 73 + }; 74 + 75 + struct hash_test_suite { 76 + struct hash_testvec *vecs; 77 + unsigned int count; 78 + }; 79 + 80 + struct alg_test_desc { 81 + const char *alg; 82 + int (*test)(const struct alg_test_desc *desc, const char *driver, 83 + u32 type, u32 mask); 84 + 85 + union { 86 + struct aead_test_suite aead; 87 + struct cipher_test_suite cipher; 88 + struct comp_test_suite comp; 89 + struct hash_test_suite hash; 90 + } suite; 91 + }; 92 + 93 + static unsigned int IDX[8] = { IDX1, IDX2, IDX3, IDX4, IDX5, IDX6, IDX7, IDX8 }; 94 + 95 + static char *xbuf[XBUFSIZE]; 96 + static char *axbuf[XBUFSIZE]; 97 + 98 + static void hexdump(unsigned char *buf, unsigned int len) 99 + { 100 + print_hex_dump(KERN_CONT, "", DUMP_PREFIX_OFFSET, 101 + 16, 1, 102 + buf, len, false); 103 + } 104 + 105 + static void tcrypt_complete(struct crypto_async_request *req, int err) 106 + { 107 + struct tcrypt_result *res = req->data; 108 + 109 + if (err == -EINPROGRESS) 110 + return; 111 + 112 + res->err = err; 113 + complete(&res->completion); 114 + } 115 + 116 + static int test_hash(struct crypto_ahash *tfm, struct hash_testvec *template, 117 + unsigned int tcount) 118 + { 119 + const char *algo = crypto_tfm_alg_driver_name(crypto_ahash_tfm(tfm)); 120 + unsigned int i, j, k, temp; 121 + struct scatterlist sg[8]; 122 + char result[64]; 123 + struct ahash_request *req; 124 + struct tcrypt_result tresult; 125 + int ret; 126 + void *hash_buff; 127 + 128 + init_completion(&tresult.completion); 129 + 130 + req = ahash_request_alloc(tfm, GFP_KERNEL); 131 + if (!req) { 132 + printk(KERN_ERR "alg: hash: Failed to allocate request for " 133 + "%s\n", algo); 134 + ret = -ENOMEM; 135 + goto out_noreq; 136 + } 137 + ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG, 138 + tcrypt_complete, &tresult); 139 + 140 + for (i = 0; i < tcount; i++) { 141 + memset(result, 0, 64); 142 + 143 + hash_buff = xbuf[0]; 144 + 145 + memcpy(hash_buff, template[i].plaintext, template[i].psize); 146 + sg_init_one(&sg[0], hash_buff, template[i].psize); 147 + 148 + if (template[i].ksize) { 149 + crypto_ahash_clear_flags(tfm, ~0); 150 + ret = crypto_ahash_setkey(tfm, template[i].key, 151 + template[i].ksize); 152 + if (ret) { 153 + printk(KERN_ERR "alg: hash: setkey failed on " 154 + "test %d for %s: ret=%d\n", i + 1, algo, 155 + -ret); 156 + goto out; 157 + } 158 + } 159 + 160 + ahash_request_set_crypt(req, sg, result, template[i].psize); 161 + ret = crypto_ahash_digest(req); 162 + switch (ret) { 163 + case 0: 164 + break; 165 + case -EINPROGRESS: 166 + case -EBUSY: 167 + ret = wait_for_completion_interruptible( 168 + &tresult.completion); 169 + if (!ret && !(ret = tresult.err)) { 170 + INIT_COMPLETION(tresult.completion); 171 + break; 172 + } 173 + /* fall through */ 174 + default: 175 + printk(KERN_ERR "alg: hash: digest failed on test %d " 176 + "for %s: ret=%d\n", i + 1, algo, -ret); 177 + goto out; 178 + } 179 + 180 + if (memcmp(result, template[i].digest, 181 + crypto_ahash_digestsize(tfm))) { 182 + printk(KERN_ERR "alg: hash: Test %d failed for %s\n", 183 + i + 1, algo); 184 + hexdump(result, crypto_ahash_digestsize(tfm)); 185 + ret = -EINVAL; 186 + goto out; 187 + } 188 + } 189 + 190 + j = 0; 191 + for (i = 0; i < tcount; i++) { 192 + if (template[i].np) { 193 + j++; 194 + memset(result, 0, 64); 195 + 196 + temp = 0; 197 + sg_init_table(sg, template[i].np); 198 + for (k = 0; k < template[i].np; k++) { 199 + sg_set_buf(&sg[k], 200 + memcpy(xbuf[IDX[k] >> PAGE_SHIFT] + 201 + offset_in_page(IDX[k]), 202 + template[i].plaintext + temp, 203 + template[i].tap[k]), 204 + template[i].tap[k]); 205 + temp += template[i].tap[k]; 206 + } 207 + 208 + if (template[i].ksize) { 209 + crypto_ahash_clear_flags(tfm, ~0); 210 + ret = crypto_ahash_setkey(tfm, template[i].key, 211 + template[i].ksize); 212 + 213 + if (ret) { 214 + printk(KERN_ERR "alg: hash: setkey " 215 + "failed on chunking test %d " 216 + "for %s: ret=%d\n", j, algo, 217 + -ret); 218 + goto out; 219 + } 220 + } 221 + 222 + ahash_request_set_crypt(req, sg, result, 223 + template[i].psize); 224 + ret = crypto_ahash_digest(req); 225 + switch (ret) { 226 + case 0: 227 + break; 228 + case -EINPROGRESS: 229 + case -EBUSY: 230 + ret = wait_for_completion_interruptible( 231 + &tresult.completion); 232 + if (!ret && !(ret = tresult.err)) { 233 + INIT_COMPLETION(tresult.completion); 234 + break; 235 + } 236 + /* fall through */ 237 + default: 238 + printk(KERN_ERR "alg: hash: digest failed " 239 + "on chunking test %d for %s: " 240 + "ret=%d\n", j, algo, -ret); 241 + goto out; 242 + } 243 + 244 + if (memcmp(result, template[i].digest, 245 + crypto_ahash_digestsize(tfm))) { 246 + printk(KERN_ERR "alg: hash: Chunking test %d " 247 + "failed for %s\n", j, algo); 248 + hexdump(result, crypto_ahash_digestsize(tfm)); 249 + ret = -EINVAL; 250 + goto out; 251 + } 252 + } 253 + } 254 + 255 + ret = 0; 256 + 257 + out: 258 + ahash_request_free(req); 259 + out_noreq: 260 + return ret; 261 + } 262 + 263 + static int test_aead(struct crypto_aead *tfm, int enc, 264 + struct aead_testvec *template, unsigned int tcount) 265 + { 266 + const char *algo = crypto_tfm_alg_driver_name(crypto_aead_tfm(tfm)); 267 + unsigned int i, j, k, n, temp; 268 + int ret = 0; 269 + char *q; 270 + char *key; 271 + struct aead_request *req; 272 + struct scatterlist sg[8]; 273 + struct scatterlist asg[8]; 274 + const char *e; 275 + struct tcrypt_result result; 276 + unsigned int authsize; 277 + void *input; 278 + void *assoc; 279 + char iv[MAX_IVLEN]; 280 + 281 + if (enc == ENCRYPT) 282 + e = "encryption"; 283 + else 284 + e = "decryption"; 285 + 286 + init_completion(&result.completion); 287 + 288 + req = aead_request_alloc(tfm, GFP_KERNEL); 289 + if (!req) { 290 + printk(KERN_ERR "alg: aead: Failed to allocate request for " 291 + "%s\n", algo); 292 + ret = -ENOMEM; 293 + goto out; 294 + } 295 + 296 + aead_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG, 297 + tcrypt_complete, &result); 298 + 299 + for (i = 0, j = 0; i < tcount; i++) { 300 + if (!template[i].np) { 301 + j++; 302 + 303 + /* some tepmplates have no input data but they will 304 + * touch input 305 + */ 306 + input = xbuf[0]; 307 + assoc = axbuf[0]; 308 + 309 + memcpy(input, template[i].input, template[i].ilen); 310 + memcpy(assoc, template[i].assoc, template[i].alen); 311 + if (template[i].iv) 312 + memcpy(iv, template[i].iv, MAX_IVLEN); 313 + else 314 + memset(iv, 0, MAX_IVLEN); 315 + 316 + crypto_aead_clear_flags(tfm, ~0); 317 + if (template[i].wk) 318 + crypto_aead_set_flags( 319 + tfm, CRYPTO_TFM_REQ_WEAK_KEY); 320 + 321 + key = template[i].key; 322 + 323 + ret = crypto_aead_setkey(tfm, key, 324 + template[i].klen); 325 + if (!ret == template[i].fail) { 326 + printk(KERN_ERR "alg: aead: setkey failed on " 327 + "test %d for %s: flags=%x\n", j, algo, 328 + crypto_aead_get_flags(tfm)); 329 + goto out; 330 + } else if (ret) 331 + continue; 332 + 333 + authsize = abs(template[i].rlen - template[i].ilen); 334 + ret = crypto_aead_setauthsize(tfm, authsize); 335 + if (ret) { 336 + printk(KERN_ERR "alg: aead: Failed to set " 337 + "authsize to %u on test %d for %s\n", 338 + authsize, j, algo); 339 + goto out; 340 + } 341 + 342 + sg_init_one(&sg[0], input, 343 + template[i].ilen + (enc ? authsize : 0)); 344 + 345 + sg_init_one(&asg[0], assoc, template[i].alen); 346 + 347 + aead_request_set_crypt(req, sg, sg, 348 + template[i].ilen, iv); 349 + 350 + aead_request_set_assoc(req, asg, template[i].alen); 351 + 352 + ret = enc ? 353 + crypto_aead_encrypt(req) : 354 + crypto_aead_decrypt(req); 355 + 356 + switch (ret) { 357 + case 0: 358 + break; 359 + case -EINPROGRESS: 360 + case -EBUSY: 361 + ret = wait_for_completion_interruptible( 362 + &result.completion); 363 + if (!ret && !(ret = result.err)) { 364 + INIT_COMPLETION(result.completion); 365 + break; 366 + } 367 + /* fall through */ 368 + default: 369 + printk(KERN_ERR "alg: aead: %s failed on test " 370 + "%d for %s: ret=%d\n", e, j, algo, -ret); 371 + goto out; 372 + } 373 + 374 + q = input; 375 + if (memcmp(q, template[i].result, template[i].rlen)) { 376 + printk(KERN_ERR "alg: aead: Test %d failed on " 377 + "%s for %s\n", j, e, algo); 378 + hexdump(q, template[i].rlen); 379 + ret = -EINVAL; 380 + goto out; 381 + } 382 + } 383 + } 384 + 385 + for (i = 0, j = 0; i < tcount; i++) { 386 + if (template[i].np) { 387 + j++; 388 + 389 + if (template[i].iv) 390 + memcpy(iv, template[i].iv, MAX_IVLEN); 391 + else 392 + memset(iv, 0, MAX_IVLEN); 393 + 394 + crypto_aead_clear_flags(tfm, ~0); 395 + if (template[i].wk) 396 + crypto_aead_set_flags( 397 + tfm, CRYPTO_TFM_REQ_WEAK_KEY); 398 + key = template[i].key; 399 + 400 + ret = crypto_aead_setkey(tfm, key, template[i].klen); 401 + if (!ret == template[i].fail) { 402 + printk(KERN_ERR "alg: aead: setkey failed on " 403 + "chunk test %d for %s: flags=%x\n", j, 404 + algo, crypto_aead_get_flags(tfm)); 405 + goto out; 406 + } else if (ret) 407 + continue; 408 + 409 + authsize = abs(template[i].rlen - template[i].ilen); 410 + 411 + ret = -EINVAL; 412 + sg_init_table(sg, template[i].np); 413 + for (k = 0, temp = 0; k < template[i].np; k++) { 414 + if (WARN_ON(offset_in_page(IDX[k]) + 415 + template[i].tap[k] > PAGE_SIZE)) 416 + goto out; 417 + 418 + q = xbuf[IDX[k] >> PAGE_SHIFT] + 419 + offset_in_page(IDX[k]); 420 + 421 + memcpy(q, template[i].input + temp, 422 + template[i].tap[k]); 423 + 424 + n = template[i].tap[k]; 425 + if (k == template[i].np - 1 && enc) 426 + n += authsize; 427 + if (offset_in_page(q) + n < PAGE_SIZE) 428 + q[n] = 0; 429 + 430 + sg_set_buf(&sg[k], q, template[i].tap[k]); 431 + temp += template[i].tap[k]; 432 + } 433 + 434 + ret = crypto_aead_setauthsize(tfm, authsize); 435 + if (ret) { 436 + printk(KERN_ERR "alg: aead: Failed to set " 437 + "authsize to %u on chunk test %d for " 438 + "%s\n", authsize, j, algo); 439 + goto out; 440 + } 441 + 442 + if (enc) { 443 + if (WARN_ON(sg[k - 1].offset + 444 + sg[k - 1].length + authsize > 445 + PAGE_SIZE)) { 446 + ret = -EINVAL; 447 + goto out; 448 + } 449 + 450 + sg[k - 1].length += authsize; 451 + } 452 + 453 + sg_init_table(asg, template[i].anp); 454 + for (k = 0, temp = 0; k < template[i].anp; k++) { 455 + sg_set_buf(&asg[k], 456 + memcpy(axbuf[IDX[k] >> PAGE_SHIFT] + 457 + offset_in_page(IDX[k]), 458 + template[i].assoc + temp, 459 + template[i].atap[k]), 460 + template[i].atap[k]); 461 + temp += template[i].atap[k]; 462 + } 463 + 464 + aead_request_set_crypt(req, sg, sg, 465 + template[i].ilen, 466 + iv); 467 + 468 + aead_request_set_assoc(req, asg, template[i].alen); 469 + 470 + ret = enc ? 471 + crypto_aead_encrypt(req) : 472 + crypto_aead_decrypt(req); 473 + 474 + switch (ret) { 475 + case 0: 476 + break; 477 + case -EINPROGRESS: 478 + case -EBUSY: 479 + ret = wait_for_completion_interruptible( 480 + &result.completion); 481 + if (!ret && !(ret = result.err)) { 482 + INIT_COMPLETION(result.completion); 483 + break; 484 + } 485 + /* fall through */ 486 + default: 487 + printk(KERN_ERR "alg: aead: %s failed on " 488 + "chunk test %d for %s: ret=%d\n", e, j, 489 + algo, -ret); 490 + goto out; 491 + } 492 + 493 + ret = -EINVAL; 494 + for (k = 0, temp = 0; k < template[i].np; k++) { 495 + q = xbuf[IDX[k] >> PAGE_SHIFT] + 496 + offset_in_page(IDX[k]); 497 + 498 + n = template[i].tap[k]; 499 + if (k == template[i].np - 1) 500 + n += enc ? authsize : -authsize; 501 + 502 + if (memcmp(q, template[i].result + temp, n)) { 503 + printk(KERN_ERR "alg: aead: Chunk " 504 + "test %d failed on %s at page " 505 + "%u for %s\n", j, e, k, algo); 506 + hexdump(q, n); 507 + goto out; 508 + } 509 + 510 + q += n; 511 + if (k == template[i].np - 1 && !enc) { 512 + if (memcmp(q, template[i].input + 513 + temp + n, authsize)) 514 + n = authsize; 515 + else 516 + n = 0; 517 + } else { 518 + for (n = 0; offset_in_page(q + n) && 519 + q[n]; n++) 520 + ; 521 + } 522 + if (n) { 523 + printk(KERN_ERR "alg: aead: Result " 524 + "buffer corruption in chunk " 525 + "test %d on %s at page %u for " 526 + "%s: %u bytes:\n", j, e, k, 527 + algo, n); 528 + hexdump(q, n); 529 + goto out; 530 + } 531 + 532 + temp += template[i].tap[k]; 533 + } 534 + } 535 + } 536 + 537 + ret = 0; 538 + 539 + out: 540 + aead_request_free(req); 541 + return ret; 542 + } 543 + 544 + static int test_cipher(struct crypto_ablkcipher *tfm, int enc, 545 + struct cipher_testvec *template, unsigned int tcount) 546 + { 547 + const char *algo = 548 + crypto_tfm_alg_driver_name(crypto_ablkcipher_tfm(tfm)); 549 + unsigned int i, j, k, n, temp; 550 + int ret; 551 + char *q; 552 + struct ablkcipher_request *req; 553 + struct scatterlist sg[8]; 554 + const char *e; 555 + struct tcrypt_result result; 556 + void *data; 557 + char iv[MAX_IVLEN]; 558 + 559 + if (enc == ENCRYPT) 560 + e = "encryption"; 561 + else 562 + e = "decryption"; 563 + 564 + init_completion(&result.completion); 565 + 566 + req = ablkcipher_request_alloc(tfm, GFP_KERNEL); 567 + if (!req) { 568 + printk(KERN_ERR "alg: cipher: Failed to allocate request for " 569 + "%s\n", algo); 570 + ret = -ENOMEM; 571 + goto out; 572 + } 573 + 574 + ablkcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG, 575 + tcrypt_complete, &result); 576 + 577 + j = 0; 578 + for (i = 0; i < tcount; i++) { 579 + if (template[i].iv) 580 + memcpy(iv, template[i].iv, MAX_IVLEN); 581 + else 582 + memset(iv, 0, MAX_IVLEN); 583 + 584 + if (!(template[i].np)) { 585 + j++; 586 + 587 + data = xbuf[0]; 588 + memcpy(data, template[i].input, template[i].ilen); 589 + 590 + crypto_ablkcipher_clear_flags(tfm, ~0); 591 + if (template[i].wk) 592 + crypto_ablkcipher_set_flags( 593 + tfm, CRYPTO_TFM_REQ_WEAK_KEY); 594 + 595 + ret = crypto_ablkcipher_setkey(tfm, template[i].key, 596 + template[i].klen); 597 + if (!ret == template[i].fail) { 598 + printk(KERN_ERR "alg: cipher: setkey failed " 599 + "on test %d for %s: flags=%x\n", j, 600 + algo, crypto_ablkcipher_get_flags(tfm)); 601 + goto out; 602 + } else if (ret) 603 + continue; 604 + 605 + sg_init_one(&sg[0], data, template[i].ilen); 606 + 607 + ablkcipher_request_set_crypt(req, sg, sg, 608 + template[i].ilen, iv); 609 + ret = enc ? 610 + crypto_ablkcipher_encrypt(req) : 611 + crypto_ablkcipher_decrypt(req); 612 + 613 + switch (ret) { 614 + case 0: 615 + break; 616 + case -EINPROGRESS: 617 + case -EBUSY: 618 + ret = wait_for_completion_interruptible( 619 + &result.completion); 620 + if (!ret && !((ret = result.err))) { 621 + INIT_COMPLETION(result.completion); 622 + break; 623 + } 624 + /* fall through */ 625 + default: 626 + printk(KERN_ERR "alg: cipher: %s failed on " 627 + "test %d for %s: ret=%d\n", e, j, algo, 628 + -ret); 629 + goto out; 630 + } 631 + 632 + q = data; 633 + if (memcmp(q, template[i].result, template[i].rlen)) { 634 + printk(KERN_ERR "alg: cipher: Test %d failed " 635 + "on %s for %s\n", j, e, algo); 636 + hexdump(q, template[i].rlen); 637 + ret = -EINVAL; 638 + goto out; 639 + } 640 + } 641 + } 642 + 643 + j = 0; 644 + for (i = 0; i < tcount; i++) { 645 + 646 + if (template[i].iv) 647 + memcpy(iv, template[i].iv, MAX_IVLEN); 648 + else 649 + memset(iv, 0, MAX_IVLEN); 650 + 651 + if (template[i].np) { 652 + j++; 653 + 654 + crypto_ablkcipher_clear_flags(tfm, ~0); 655 + if (template[i].wk) 656 + crypto_ablkcipher_set_flags( 657 + tfm, CRYPTO_TFM_REQ_WEAK_KEY); 658 + 659 + ret = crypto_ablkcipher_setkey(tfm, template[i].key, 660 + template[i].klen); 661 + if (!ret == template[i].fail) { 662 + printk(KERN_ERR "alg: cipher: setkey failed " 663 + "on chunk test %d for %s: flags=%x\n", 664 + j, algo, 665 + crypto_ablkcipher_get_flags(tfm)); 666 + goto out; 667 + } else if (ret) 668 + continue; 669 + 670 + temp = 0; 671 + ret = -EINVAL; 672 + sg_init_table(sg, template[i].np); 673 + for (k = 0; k < template[i].np; k++) { 674 + if (WARN_ON(offset_in_page(IDX[k]) + 675 + template[i].tap[k] > PAGE_SIZE)) 676 + goto out; 677 + 678 + q = xbuf[IDX[k] >> PAGE_SHIFT] + 679 + offset_in_page(IDX[k]); 680 + 681 + memcpy(q, template[i].input + temp, 682 + template[i].tap[k]); 683 + 684 + if (offset_in_page(q) + template[i].tap[k] < 685 + PAGE_SIZE) 686 + q[template[i].tap[k]] = 0; 687 + 688 + sg_set_buf(&sg[k], q, template[i].tap[k]); 689 + 690 + temp += template[i].tap[k]; 691 + } 692 + 693 + ablkcipher_request_set_crypt(req, sg, sg, 694 + template[i].ilen, iv); 695 + 696 + ret = enc ? 697 + crypto_ablkcipher_encrypt(req) : 698 + crypto_ablkcipher_decrypt(req); 699 + 700 + switch (ret) { 701 + case 0: 702 + break; 703 + case -EINPROGRESS: 704 + case -EBUSY: 705 + ret = wait_for_completion_interruptible( 706 + &result.completion); 707 + if (!ret && !((ret = result.err))) { 708 + INIT_COMPLETION(result.completion); 709 + break; 710 + } 711 + /* fall through */ 712 + default: 713 + printk(KERN_ERR "alg: cipher: %s failed on " 714 + "chunk test %d for %s: ret=%d\n", e, j, 715 + algo, -ret); 716 + goto out; 717 + } 718 + 719 + temp = 0; 720 + ret = -EINVAL; 721 + for (k = 0; k < template[i].np; k++) { 722 + q = xbuf[IDX[k] >> PAGE_SHIFT] + 723 + offset_in_page(IDX[k]); 724 + 725 + if (memcmp(q, template[i].result + temp, 726 + template[i].tap[k])) { 727 + printk(KERN_ERR "alg: cipher: Chunk " 728 + "test %d failed on %s at page " 729 + "%u for %s\n", j, e, k, algo); 730 + hexdump(q, template[i].tap[k]); 731 + goto out; 732 + } 733 + 734 + q += template[i].tap[k]; 735 + for (n = 0; offset_in_page(q + n) && q[n]; n++) 736 + ; 737 + if (n) { 738 + printk(KERN_ERR "alg: cipher: " 739 + "Result buffer corruption in " 740 + "chunk test %d on %s at page " 741 + "%u for %s: %u bytes:\n", j, e, 742 + k, algo, n); 743 + hexdump(q, n); 744 + goto out; 745 + } 746 + temp += template[i].tap[k]; 747 + } 748 + } 749 + } 750 + 751 + ret = 0; 752 + 753 + out: 754 + ablkcipher_request_free(req); 755 + return ret; 756 + } 757 + 758 + static int test_comp(struct crypto_comp *tfm, struct comp_testvec *ctemplate, 759 + struct comp_testvec *dtemplate, int ctcount, int dtcount) 760 + { 761 + const char *algo = crypto_tfm_alg_driver_name(crypto_comp_tfm(tfm)); 762 + unsigned int i; 763 + char result[COMP_BUF_SIZE]; 764 + int ret; 765 + 766 + for (i = 0; i < ctcount; i++) { 767 + int ilen, dlen = COMP_BUF_SIZE; 768 + 769 + memset(result, 0, sizeof (result)); 770 + 771 + ilen = ctemplate[i].inlen; 772 + ret = crypto_comp_compress(tfm, ctemplate[i].input, 773 + ilen, result, &dlen); 774 + if (ret) { 775 + printk(KERN_ERR "alg: comp: compression failed " 776 + "on test %d for %s: ret=%d\n", i + 1, algo, 777 + -ret); 778 + goto out; 779 + } 780 + 781 + if (memcmp(result, ctemplate[i].output, dlen)) { 782 + printk(KERN_ERR "alg: comp: Compression test %d " 783 + "failed for %s\n", i + 1, algo); 784 + hexdump(result, dlen); 785 + ret = -EINVAL; 786 + goto out; 787 + } 788 + } 789 + 790 + for (i = 0; i < dtcount; i++) { 791 + int ilen, ret, dlen = COMP_BUF_SIZE; 792 + 793 + memset(result, 0, sizeof (result)); 794 + 795 + ilen = dtemplate[i].inlen; 796 + ret = crypto_comp_decompress(tfm, dtemplate[i].input, 797 + ilen, result, &dlen); 798 + if (ret) { 799 + printk(KERN_ERR "alg: comp: decompression failed " 800 + "on test %d for %s: ret=%d\n", i + 1, algo, 801 + -ret); 802 + goto out; 803 + } 804 + 805 + if (memcmp(result, dtemplate[i].output, dlen)) { 806 + printk(KERN_ERR "alg: comp: Decompression test %d " 807 + "failed for %s\n", i + 1, algo); 808 + hexdump(result, dlen); 809 + ret = -EINVAL; 810 + goto out; 811 + } 812 + } 813 + 814 + ret = 0; 815 + 816 + out: 817 + return ret; 818 + } 819 + 820 + static int alg_test_aead(const struct alg_test_desc *desc, const char *driver, 821 + u32 type, u32 mask) 822 + { 823 + struct crypto_aead *tfm; 824 + int err = 0; 825 + 826 + tfm = crypto_alloc_aead(driver, type, mask); 827 + if (IS_ERR(tfm)) { 828 + printk(KERN_ERR "alg: aead: Failed to load transform for %s: " 829 + "%ld\n", driver, PTR_ERR(tfm)); 830 + return PTR_ERR(tfm); 831 + } 832 + 833 + if (desc->suite.aead.enc.vecs) { 834 + err = test_aead(tfm, ENCRYPT, desc->suite.aead.enc.vecs, 835 + desc->suite.aead.enc.count); 836 + if (err) 837 + goto out; 838 + } 839 + 840 + if (!err && desc->suite.aead.dec.vecs) 841 + err = test_aead(tfm, DECRYPT, desc->suite.aead.dec.vecs, 842 + desc->suite.aead.dec.count); 843 + 844 + out: 845 + crypto_free_aead(tfm); 846 + return err; 847 + } 848 + 849 + static int alg_test_cipher(const struct alg_test_desc *desc, 850 + const char *driver, u32 type, u32 mask) 851 + { 852 + struct crypto_ablkcipher *tfm; 853 + int err = 0; 854 + 855 + tfm = crypto_alloc_ablkcipher(driver, type, mask); 856 + if (IS_ERR(tfm)) { 857 + printk(KERN_ERR "alg: cipher: Failed to load transform for " 858 + "%s: %ld\n", driver, PTR_ERR(tfm)); 859 + return PTR_ERR(tfm); 860 + } 861 + 862 + if (desc->suite.cipher.enc.vecs) { 863 + err = test_cipher(tfm, ENCRYPT, desc->suite.cipher.enc.vecs, 864 + desc->suite.cipher.enc.count); 865 + if (err) 866 + goto out; 867 + } 868 + 869 + if (desc->suite.cipher.dec.vecs) 870 + err = test_cipher(tfm, DECRYPT, desc->suite.cipher.dec.vecs, 871 + desc->suite.cipher.dec.count); 872 + 873 + out: 874 + crypto_free_ablkcipher(tfm); 875 + return err; 876 + } 877 + 878 + static int alg_test_comp(const struct alg_test_desc *desc, const char *driver, 879 + u32 type, u32 mask) 880 + { 881 + struct crypto_comp *tfm; 882 + int err; 883 + 884 + tfm = crypto_alloc_comp(driver, type, mask); 885 + if (IS_ERR(tfm)) { 886 + printk(KERN_ERR "alg: comp: Failed to load transform for %s: " 887 + "%ld\n", driver, PTR_ERR(tfm)); 888 + return PTR_ERR(tfm); 889 + } 890 + 891 + err = test_comp(tfm, desc->suite.comp.comp.vecs, 892 + desc->suite.comp.decomp.vecs, 893 + desc->suite.comp.comp.count, 894 + desc->suite.comp.decomp.count); 895 + 896 + crypto_free_comp(tfm); 897 + return err; 898 + } 899 + 900 + static int alg_test_hash(const struct alg_test_desc *desc, const char *driver, 901 + u32 type, u32 mask) 902 + { 903 + struct crypto_ahash *tfm; 904 + int err; 905 + 906 + tfm = crypto_alloc_ahash(driver, type, mask); 907 + if (IS_ERR(tfm)) { 908 + printk(KERN_ERR "alg: hash: Failed to load transform for %s: " 909 + "%ld\n", driver, PTR_ERR(tfm)); 910 + return PTR_ERR(tfm); 911 + } 912 + 913 + err = test_hash(tfm, desc->suite.hash.vecs, desc->suite.hash.count); 914 + 915 + crypto_free_ahash(tfm); 916 + return err; 917 + } 918 + 919 + /* Please keep this list sorted by algorithm name. */ 920 + static const struct alg_test_desc alg_test_descs[] = { 921 + { 922 + .alg = "cbc(aes)", 923 + .test = alg_test_cipher, 924 + .suite = { 925 + .cipher = { 926 + .enc = { 927 + .vecs = aes_cbc_enc_tv_template, 928 + .count = AES_CBC_ENC_TEST_VECTORS 929 + }, 930 + .dec = { 931 + .vecs = aes_cbc_dec_tv_template, 932 + .count = AES_CBC_DEC_TEST_VECTORS 933 + } 934 + } 935 + } 936 + }, { 937 + .alg = "cbc(anubis)", 938 + .test = alg_test_cipher, 939 + .suite = { 940 + .cipher = { 941 + .enc = { 942 + .vecs = anubis_cbc_enc_tv_template, 943 + .count = ANUBIS_CBC_ENC_TEST_VECTORS 944 + }, 945 + .dec = { 946 + .vecs = anubis_cbc_dec_tv_template, 947 + .count = ANUBIS_CBC_DEC_TEST_VECTORS 948 + } 949 + } 950 + } 951 + }, { 952 + .alg = "cbc(blowfish)", 953 + .test = alg_test_cipher, 954 + .suite = { 955 + .cipher = { 956 + .enc = { 957 + .vecs = bf_cbc_enc_tv_template, 958 + .count = BF_CBC_ENC_TEST_VECTORS 959 + }, 960 + .dec = { 961 + .vecs = bf_cbc_dec_tv_template, 962 + .count = BF_CBC_DEC_TEST_VECTORS 963 + } 964 + } 965 + } 966 + }, { 967 + .alg = "cbc(camellia)", 968 + .test = alg_test_cipher, 969 + .suite = { 970 + .cipher = { 971 + .enc = { 972 + .vecs = camellia_cbc_enc_tv_template, 973 + .count = CAMELLIA_CBC_ENC_TEST_VECTORS 974 + }, 975 + .dec = { 976 + .vecs = camellia_cbc_dec_tv_template, 977 + .count = CAMELLIA_CBC_DEC_TEST_VECTORS 978 + } 979 + } 980 + } 981 + }, { 982 + .alg = "cbc(des)", 983 + .test = alg_test_cipher, 984 + .suite = { 985 + .cipher = { 986 + .enc = { 987 + .vecs = des_cbc_enc_tv_template, 988 + .count = DES_CBC_ENC_TEST_VECTORS 989 + }, 990 + .dec = { 991 + .vecs = des_cbc_dec_tv_template, 992 + .count = DES_CBC_DEC_TEST_VECTORS 993 + } 994 + } 995 + } 996 + }, { 997 + .alg = "cbc(des3_ede)", 998 + .test = alg_test_cipher, 999 + .suite = { 1000 + .cipher = { 1001 + .enc = { 1002 + .vecs = des3_ede_cbc_enc_tv_template, 1003 + .count = DES3_EDE_CBC_ENC_TEST_VECTORS 1004 + }, 1005 + .dec = { 1006 + .vecs = des3_ede_cbc_dec_tv_template, 1007 + .count = DES3_EDE_CBC_DEC_TEST_VECTORS 1008 + } 1009 + } 1010 + } 1011 + }, { 1012 + .alg = "cbc(twofish)", 1013 + .test = alg_test_cipher, 1014 + .suite = { 1015 + .cipher = { 1016 + .enc = { 1017 + .vecs = tf_cbc_enc_tv_template, 1018 + .count = TF_CBC_ENC_TEST_VECTORS 1019 + }, 1020 + .dec = { 1021 + .vecs = tf_cbc_dec_tv_template, 1022 + .count = TF_CBC_DEC_TEST_VECTORS 1023 + } 1024 + } 1025 + } 1026 + }, { 1027 + .alg = "ccm(aes)", 1028 + .test = alg_test_aead, 1029 + .suite = { 1030 + .aead = { 1031 + .enc = { 1032 + .vecs = aes_ccm_enc_tv_template, 1033 + .count = AES_CCM_ENC_TEST_VECTORS 1034 + }, 1035 + .dec = { 1036 + .vecs = aes_ccm_dec_tv_template, 1037 + .count = AES_CCM_DEC_TEST_VECTORS 1038 + } 1039 + } 1040 + } 1041 + }, { 1042 + .alg = "crc32c", 1043 + .test = alg_test_hash, 1044 + .suite = { 1045 + .hash = { 1046 + .vecs = crc32c_tv_template, 1047 + .count = CRC32C_TEST_VECTORS 1048 + } 1049 + } 1050 + }, { 1051 + .alg = "cts(cbc(aes))", 1052 + .test = alg_test_cipher, 1053 + .suite = { 1054 + .cipher = { 1055 + .enc = { 1056 + .vecs = cts_mode_enc_tv_template, 1057 + .count = CTS_MODE_ENC_TEST_VECTORS 1058 + }, 1059 + .dec = { 1060 + .vecs = cts_mode_dec_tv_template, 1061 + .count = CTS_MODE_DEC_TEST_VECTORS 1062 + } 1063 + } 1064 + } 1065 + }, { 1066 + .alg = "deflate", 1067 + .test = alg_test_comp, 1068 + .suite = { 1069 + .comp = { 1070 + .comp = { 1071 + .vecs = deflate_comp_tv_template, 1072 + .count = DEFLATE_COMP_TEST_VECTORS 1073 + }, 1074 + .decomp = { 1075 + .vecs = deflate_decomp_tv_template, 1076 + .count = DEFLATE_DECOMP_TEST_VECTORS 1077 + } 1078 + } 1079 + } 1080 + }, { 1081 + .alg = "ecb(aes)", 1082 + .test = alg_test_cipher, 1083 + .suite = { 1084 + .cipher = { 1085 + .enc = { 1086 + .vecs = aes_enc_tv_template, 1087 + .count = AES_ENC_TEST_VECTORS 1088 + }, 1089 + .dec = { 1090 + .vecs = aes_dec_tv_template, 1091 + .count = AES_DEC_TEST_VECTORS 1092 + } 1093 + } 1094 + } 1095 + }, { 1096 + .alg = "ecb(anubis)", 1097 + .test = alg_test_cipher, 1098 + .suite = { 1099 + .cipher = { 1100 + .enc = { 1101 + .vecs = anubis_enc_tv_template, 1102 + .count = ANUBIS_ENC_TEST_VECTORS 1103 + }, 1104 + .dec = { 1105 + .vecs = anubis_dec_tv_template, 1106 + .count = ANUBIS_DEC_TEST_VECTORS 1107 + } 1108 + } 1109 + } 1110 + }, { 1111 + .alg = "ecb(arc4)", 1112 + .test = alg_test_cipher, 1113 + .suite = { 1114 + .cipher = { 1115 + .enc = { 1116 + .vecs = arc4_enc_tv_template, 1117 + .count = ARC4_ENC_TEST_VECTORS 1118 + }, 1119 + .dec = { 1120 + .vecs = arc4_dec_tv_template, 1121 + .count = ARC4_DEC_TEST_VECTORS 1122 + } 1123 + } 1124 + } 1125 + }, { 1126 + .alg = "ecb(blowfish)", 1127 + .test = alg_test_cipher, 1128 + .suite = { 1129 + .cipher = { 1130 + .enc = { 1131 + .vecs = bf_enc_tv_template, 1132 + .count = BF_ENC_TEST_VECTORS 1133 + }, 1134 + .dec = { 1135 + .vecs = bf_dec_tv_template, 1136 + .count = BF_DEC_TEST_VECTORS 1137 + } 1138 + } 1139 + } 1140 + }, { 1141 + .alg = "ecb(camellia)", 1142 + .test = alg_test_cipher, 1143 + .suite = { 1144 + .cipher = { 1145 + .enc = { 1146 + .vecs = camellia_enc_tv_template, 1147 + .count = CAMELLIA_ENC_TEST_VECTORS 1148 + }, 1149 + .dec = { 1150 + .vecs = camellia_dec_tv_template, 1151 + .count = CAMELLIA_DEC_TEST_VECTORS 1152 + } 1153 + } 1154 + } 1155 + }, { 1156 + .alg = "ecb(cast5)", 1157 + .test = alg_test_cipher, 1158 + .suite = { 1159 + .cipher = { 1160 + .enc = { 1161 + .vecs = cast5_enc_tv_template, 1162 + .count = CAST5_ENC_TEST_VECTORS 1163 + }, 1164 + .dec = { 1165 + .vecs = cast5_dec_tv_template, 1166 + .count = CAST5_DEC_TEST_VECTORS 1167 + } 1168 + } 1169 + } 1170 + }, { 1171 + .alg = "ecb(cast6)", 1172 + .test = alg_test_cipher, 1173 + .suite = { 1174 + .cipher = { 1175 + .enc = { 1176 + .vecs = cast6_enc_tv_template, 1177 + .count = CAST6_ENC_TEST_VECTORS 1178 + }, 1179 + .dec = { 1180 + .vecs = cast6_dec_tv_template, 1181 + .count = CAST6_DEC_TEST_VECTORS 1182 + } 1183 + } 1184 + } 1185 + }, { 1186 + .alg = "ecb(des)", 1187 + .test = alg_test_cipher, 1188 + .suite = { 1189 + .cipher = { 1190 + .enc = { 1191 + .vecs = des_enc_tv_template, 1192 + .count = DES_ENC_TEST_VECTORS 1193 + }, 1194 + .dec = { 1195 + .vecs = des_dec_tv_template, 1196 + .count = DES_DEC_TEST_VECTORS 1197 + } 1198 + } 1199 + } 1200 + }, { 1201 + .alg = "ecb(des3_ede)", 1202 + .test = alg_test_cipher, 1203 + .suite = { 1204 + .cipher = { 1205 + .enc = { 1206 + .vecs = des3_ede_enc_tv_template, 1207 + .count = DES3_EDE_ENC_TEST_VECTORS 1208 + }, 1209 + .dec = { 1210 + .vecs = des3_ede_dec_tv_template, 1211 + .count = DES3_EDE_DEC_TEST_VECTORS 1212 + } 1213 + } 1214 + } 1215 + }, { 1216 + .alg = "ecb(khazad)", 1217 + .test = alg_test_cipher, 1218 + .suite = { 1219 + .cipher = { 1220 + .enc = { 1221 + .vecs = khazad_enc_tv_template, 1222 + .count = KHAZAD_ENC_TEST_VECTORS 1223 + }, 1224 + .dec = { 1225 + .vecs = khazad_dec_tv_template, 1226 + .count = KHAZAD_DEC_TEST_VECTORS 1227 + } 1228 + } 1229 + } 1230 + }, { 1231 + .alg = "ecb(seed)", 1232 + .test = alg_test_cipher, 1233 + .suite = { 1234 + .cipher = { 1235 + .enc = { 1236 + .vecs = seed_enc_tv_template, 1237 + .count = SEED_ENC_TEST_VECTORS 1238 + }, 1239 + .dec = { 1240 + .vecs = seed_dec_tv_template, 1241 + .count = SEED_DEC_TEST_VECTORS 1242 + } 1243 + } 1244 + } 1245 + }, { 1246 + .alg = "ecb(serpent)", 1247 + .test = alg_test_cipher, 1248 + .suite = { 1249 + .cipher = { 1250 + .enc = { 1251 + .vecs = serpent_enc_tv_template, 1252 + .count = SERPENT_ENC_TEST_VECTORS 1253 + }, 1254 + .dec = { 1255 + .vecs = serpent_dec_tv_template, 1256 + .count = SERPENT_DEC_TEST_VECTORS 1257 + } 1258 + } 1259 + } 1260 + }, { 1261 + .alg = "ecb(tea)", 1262 + .test = alg_test_cipher, 1263 + .suite = { 1264 + .cipher = { 1265 + .enc = { 1266 + .vecs = tea_enc_tv_template, 1267 + .count = TEA_ENC_TEST_VECTORS 1268 + }, 1269 + .dec = { 1270 + .vecs = tea_dec_tv_template, 1271 + .count = TEA_DEC_TEST_VECTORS 1272 + } 1273 + } 1274 + } 1275 + }, { 1276 + .alg = "ecb(tnepres)", 1277 + .test = alg_test_cipher, 1278 + .suite = { 1279 + .cipher = { 1280 + .enc = { 1281 + .vecs = tnepres_enc_tv_template, 1282 + .count = TNEPRES_ENC_TEST_VECTORS 1283 + }, 1284 + .dec = { 1285 + .vecs = tnepres_dec_tv_template, 1286 + .count = TNEPRES_DEC_TEST_VECTORS 1287 + } 1288 + } 1289 + } 1290 + }, { 1291 + .alg = "ecb(twofish)", 1292 + .test = alg_test_cipher, 1293 + .suite = { 1294 + .cipher = { 1295 + .enc = { 1296 + .vecs = tf_enc_tv_template, 1297 + .count = TF_ENC_TEST_VECTORS 1298 + }, 1299 + .dec = { 1300 + .vecs = tf_dec_tv_template, 1301 + .count = TF_DEC_TEST_VECTORS 1302 + } 1303 + } 1304 + } 1305 + }, { 1306 + .alg = "ecb(xeta)", 1307 + .test = alg_test_cipher, 1308 + .suite = { 1309 + .cipher = { 1310 + .enc = { 1311 + .vecs = xeta_enc_tv_template, 1312 + .count = XETA_ENC_TEST_VECTORS 1313 + }, 1314 + .dec = { 1315 + .vecs = xeta_dec_tv_template, 1316 + .count = XETA_DEC_TEST_VECTORS 1317 + } 1318 + } 1319 + } 1320 + }, { 1321 + .alg = "ecb(xtea)", 1322 + .test = alg_test_cipher, 1323 + .suite = { 1324 + .cipher = { 1325 + .enc = { 1326 + .vecs = xtea_enc_tv_template, 1327 + .count = XTEA_ENC_TEST_VECTORS 1328 + }, 1329 + .dec = { 1330 + .vecs = xtea_dec_tv_template, 1331 + .count = XTEA_DEC_TEST_VECTORS 1332 + } 1333 + } 1334 + } 1335 + }, { 1336 + .alg = "gcm(aes)", 1337 + .test = alg_test_aead, 1338 + .suite = { 1339 + .aead = { 1340 + .enc = { 1341 + .vecs = aes_gcm_enc_tv_template, 1342 + .count = AES_GCM_ENC_TEST_VECTORS 1343 + }, 1344 + .dec = { 1345 + .vecs = aes_gcm_dec_tv_template, 1346 + .count = AES_GCM_DEC_TEST_VECTORS 1347 + } 1348 + } 1349 + } 1350 + }, { 1351 + .alg = "hmac(md5)", 1352 + .test = alg_test_hash, 1353 + .suite = { 1354 + .hash = { 1355 + .vecs = hmac_md5_tv_template, 1356 + .count = HMAC_MD5_TEST_VECTORS 1357 + } 1358 + } 1359 + }, { 1360 + .alg = "hmac(rmd128)", 1361 + .test = alg_test_hash, 1362 + .suite = { 1363 + .hash = { 1364 + .vecs = hmac_rmd128_tv_template, 1365 + .count = HMAC_RMD128_TEST_VECTORS 1366 + } 1367 + } 1368 + }, { 1369 + .alg = "hmac(rmd160)", 1370 + .test = alg_test_hash, 1371 + .suite = { 1372 + .hash = { 1373 + .vecs = hmac_rmd160_tv_template, 1374 + .count = HMAC_RMD160_TEST_VECTORS 1375 + } 1376 + } 1377 + }, { 1378 + .alg = "hmac(sha1)", 1379 + .test = alg_test_hash, 1380 + .suite = { 1381 + .hash = { 1382 + .vecs = hmac_sha1_tv_template, 1383 + .count = HMAC_SHA1_TEST_VECTORS 1384 + } 1385 + } 1386 + }, { 1387 + .alg = "hmac(sha224)", 1388 + .test = alg_test_hash, 1389 + .suite = { 1390 + .hash = { 1391 + .vecs = hmac_sha224_tv_template, 1392 + .count = HMAC_SHA224_TEST_VECTORS 1393 + } 1394 + } 1395 + }, { 1396 + .alg = "hmac(sha256)", 1397 + .test = alg_test_hash, 1398 + .suite = { 1399 + .hash = { 1400 + .vecs = hmac_sha256_tv_template, 1401 + .count = HMAC_SHA256_TEST_VECTORS 1402 + } 1403 + } 1404 + }, { 1405 + .alg = "hmac(sha384)", 1406 + .test = alg_test_hash, 1407 + .suite = { 1408 + .hash = { 1409 + .vecs = hmac_sha384_tv_template, 1410 + .count = HMAC_SHA384_TEST_VECTORS 1411 + } 1412 + } 1413 + }, { 1414 + .alg = "hmac(sha512)", 1415 + .test = alg_test_hash, 1416 + .suite = { 1417 + .hash = { 1418 + .vecs = hmac_sha512_tv_template, 1419 + .count = HMAC_SHA512_TEST_VECTORS 1420 + } 1421 + } 1422 + }, { 1423 + .alg = "lrw(aes)", 1424 + .test = alg_test_cipher, 1425 + .suite = { 1426 + .cipher = { 1427 + .enc = { 1428 + .vecs = aes_lrw_enc_tv_template, 1429 + .count = AES_LRW_ENC_TEST_VECTORS 1430 + }, 1431 + .dec = { 1432 + .vecs = aes_lrw_dec_tv_template, 1433 + .count = AES_LRW_DEC_TEST_VECTORS 1434 + } 1435 + } 1436 + } 1437 + }, { 1438 + .alg = "lzo", 1439 + .test = alg_test_comp, 1440 + .suite = { 1441 + .comp = { 1442 + .comp = { 1443 + .vecs = lzo_comp_tv_template, 1444 + .count = LZO_COMP_TEST_VECTORS 1445 + }, 1446 + .decomp = { 1447 + .vecs = lzo_decomp_tv_template, 1448 + .count = LZO_DECOMP_TEST_VECTORS 1449 + } 1450 + } 1451 + } 1452 + }, { 1453 + .alg = "md4", 1454 + .test = alg_test_hash, 1455 + .suite = { 1456 + .hash = { 1457 + .vecs = md4_tv_template, 1458 + .count = MD4_TEST_VECTORS 1459 + } 1460 + } 1461 + }, { 1462 + .alg = "md5", 1463 + .test = alg_test_hash, 1464 + .suite = { 1465 + .hash = { 1466 + .vecs = md5_tv_template, 1467 + .count = MD5_TEST_VECTORS 1468 + } 1469 + } 1470 + }, { 1471 + .alg = "michael_mic", 1472 + .test = alg_test_hash, 1473 + .suite = { 1474 + .hash = { 1475 + .vecs = michael_mic_tv_template, 1476 + .count = MICHAEL_MIC_TEST_VECTORS 1477 + } 1478 + } 1479 + }, { 1480 + .alg = "pcbc(fcrypt)", 1481 + .test = alg_test_cipher, 1482 + .suite = { 1483 + .cipher = { 1484 + .enc = { 1485 + .vecs = fcrypt_pcbc_enc_tv_template, 1486 + .count = FCRYPT_ENC_TEST_VECTORS 1487 + }, 1488 + .dec = { 1489 + .vecs = fcrypt_pcbc_dec_tv_template, 1490 + .count = FCRYPT_DEC_TEST_VECTORS 1491 + } 1492 + } 1493 + } 1494 + }, { 1495 + .alg = "rfc3686(ctr(aes))", 1496 + .test = alg_test_cipher, 1497 + .suite = { 1498 + .cipher = { 1499 + .enc = { 1500 + .vecs = aes_ctr_enc_tv_template, 1501 + .count = AES_CTR_ENC_TEST_VECTORS 1502 + }, 1503 + .dec = { 1504 + .vecs = aes_ctr_dec_tv_template, 1505 + .count = AES_CTR_DEC_TEST_VECTORS 1506 + } 1507 + } 1508 + } 1509 + }, { 1510 + .alg = "rmd128", 1511 + .test = alg_test_hash, 1512 + .suite = { 1513 + .hash = { 1514 + .vecs = rmd128_tv_template, 1515 + .count = RMD128_TEST_VECTORS 1516 + } 1517 + } 1518 + }, { 1519 + .alg = "rmd160", 1520 + .test = alg_test_hash, 1521 + .suite = { 1522 + .hash = { 1523 + .vecs = rmd160_tv_template, 1524 + .count = RMD160_TEST_VECTORS 1525 + } 1526 + } 1527 + }, { 1528 + .alg = "rmd256", 1529 + .test = alg_test_hash, 1530 + .suite = { 1531 + .hash = { 1532 + .vecs = rmd256_tv_template, 1533 + .count = RMD256_TEST_VECTORS 1534 + } 1535 + } 1536 + }, { 1537 + .alg = "rmd320", 1538 + .test = alg_test_hash, 1539 + .suite = { 1540 + .hash = { 1541 + .vecs = rmd320_tv_template, 1542 + .count = RMD320_TEST_VECTORS 1543 + } 1544 + } 1545 + }, { 1546 + .alg = "salsa20", 1547 + .test = alg_test_cipher, 1548 + .suite = { 1549 + .cipher = { 1550 + .enc = { 1551 + .vecs = salsa20_stream_enc_tv_template, 1552 + .count = SALSA20_STREAM_ENC_TEST_VECTORS 1553 + } 1554 + } 1555 + } 1556 + }, { 1557 + .alg = "sha1", 1558 + .test = alg_test_hash, 1559 + .suite = { 1560 + .hash = { 1561 + .vecs = sha1_tv_template, 1562 + .count = SHA1_TEST_VECTORS 1563 + } 1564 + } 1565 + }, { 1566 + .alg = "sha224", 1567 + .test = alg_test_hash, 1568 + .suite = { 1569 + .hash = { 1570 + .vecs = sha224_tv_template, 1571 + .count = SHA224_TEST_VECTORS 1572 + } 1573 + } 1574 + }, { 1575 + .alg = "sha256", 1576 + .test = alg_test_hash, 1577 + .suite = { 1578 + .hash = { 1579 + .vecs = sha256_tv_template, 1580 + .count = SHA256_TEST_VECTORS 1581 + } 1582 + } 1583 + }, { 1584 + .alg = "sha384", 1585 + .test = alg_test_hash, 1586 + .suite = { 1587 + .hash = { 1588 + .vecs = sha384_tv_template, 1589 + .count = SHA384_TEST_VECTORS 1590 + } 1591 + } 1592 + }, { 1593 + .alg = "sha512", 1594 + .test = alg_test_hash, 1595 + .suite = { 1596 + .hash = { 1597 + .vecs = sha512_tv_template, 1598 + .count = SHA512_TEST_VECTORS 1599 + } 1600 + } 1601 + }, { 1602 + .alg = "tgr128", 1603 + .test = alg_test_hash, 1604 + .suite = { 1605 + .hash = { 1606 + .vecs = tgr128_tv_template, 1607 + .count = TGR128_TEST_VECTORS 1608 + } 1609 + } 1610 + }, { 1611 + .alg = "tgr160", 1612 + .test = alg_test_hash, 1613 + .suite = { 1614 + .hash = { 1615 + .vecs = tgr160_tv_template, 1616 + .count = TGR160_TEST_VECTORS 1617 + } 1618 + } 1619 + }, { 1620 + .alg = "tgr192", 1621 + .test = alg_test_hash, 1622 + .suite = { 1623 + .hash = { 1624 + .vecs = tgr192_tv_template, 1625 + .count = TGR192_TEST_VECTORS 1626 + } 1627 + } 1628 + }, { 1629 + .alg = "wp256", 1630 + .test = alg_test_hash, 1631 + .suite = { 1632 + .hash = { 1633 + .vecs = wp256_tv_template, 1634 + .count = WP256_TEST_VECTORS 1635 + } 1636 + } 1637 + }, { 1638 + .alg = "wp384", 1639 + .test = alg_test_hash, 1640 + .suite = { 1641 + .hash = { 1642 + .vecs = wp384_tv_template, 1643 + .count = WP384_TEST_VECTORS 1644 + } 1645 + } 1646 + }, { 1647 + .alg = "wp512", 1648 + .test = alg_test_hash, 1649 + .suite = { 1650 + .hash = { 1651 + .vecs = wp512_tv_template, 1652 + .count = WP512_TEST_VECTORS 1653 + } 1654 + } 1655 + }, { 1656 + .alg = "xcbc(aes)", 1657 + .test = alg_test_hash, 1658 + .suite = { 1659 + .hash = { 1660 + .vecs = aes_xcbc128_tv_template, 1661 + .count = XCBC_AES_TEST_VECTORS 1662 + } 1663 + } 1664 + }, { 1665 + .alg = "xts(aes)", 1666 + .test = alg_test_cipher, 1667 + .suite = { 1668 + .cipher = { 1669 + .enc = { 1670 + .vecs = aes_xts_enc_tv_template, 1671 + .count = AES_XTS_ENC_TEST_VECTORS 1672 + }, 1673 + .dec = { 1674 + .vecs = aes_xts_dec_tv_template, 1675 + .count = AES_XTS_DEC_TEST_VECTORS 1676 + } 1677 + } 1678 + } 1679 + } 1680 + }; 1681 + 1682 + int alg_test(const char *driver, const char *alg, u32 type, u32 mask) 1683 + { 1684 + int start = 0; 1685 + int end = ARRAY_SIZE(alg_test_descs); 1686 + 1687 + while (start < end) { 1688 + int i = (start + end) / 2; 1689 + int diff = strcmp(alg_test_descs[i].alg, alg); 1690 + 1691 + if (diff > 0) { 1692 + end = i; 1693 + continue; 1694 + } 1695 + 1696 + if (diff < 0) { 1697 + start = i + 1; 1698 + continue; 1699 + } 1700 + 1701 + return alg_test_descs[i].test(alg_test_descs + i, driver, 1702 + type, mask); 1703 + } 1704 + 1705 + printk(KERN_INFO "alg: No test for %s (%s)\n", alg, driver); 1706 + return 0; 1707 + } 1708 + EXPORT_SYMBOL_GPL(alg_test); 1709 + 1710 + int __init testmgr_init(void) 1711 + { 1712 + int i; 1713 + 1714 + for (i = 0; i < XBUFSIZE; i++) { 1715 + xbuf[i] = (void *)__get_free_page(GFP_KERNEL); 1716 + if (!xbuf[i]) 1717 + goto err_free_xbuf; 1718 + } 1719 + 1720 + for (i = 0; i < XBUFSIZE; i++) { 1721 + axbuf[i] = (void *)__get_free_page(GFP_KERNEL); 1722 + if (!axbuf[i]) 1723 + goto err_free_axbuf; 1724 + } 1725 + 1726 + return 0; 1727 + 1728 + err_free_axbuf: 1729 + for (i = 0; i < XBUFSIZE && axbuf[i]; i++) 1730 + free_page((unsigned long)axbuf[i]); 1731 + err_free_xbuf: 1732 + for (i = 0; i < XBUFSIZE && xbuf[i]; i++) 1733 + free_page((unsigned long)xbuf[i]); 1734 + 1735 + return -ENOMEM; 1736 + } 1737 + 1738 + void testmgr_exit(void) 1739 + { 1740 + int i; 1741 + 1742 + for (i = 0; i < XBUFSIZE; i++) 1743 + free_page((unsigned long)axbuf[i]); 1744 + for (i = 0; i < XBUFSIZE; i++) 1745 + free_page((unsigned long)xbuf[i]); 1746 + }
+8738
crypto/testmgr.h
··· 1 + /* 2 + * Algorithm testing framework and tests. 3 + * 4 + * Copyright (c) 2002 James Morris <jmorris@intercode.com.au> 5 + * Copyright (c) 2002 Jean-Francois Dive <jef@linuxbe.org> 6 + * Copyright (c) 2007 Nokia Siemens Networks 7 + * Copyright (c) 2008 Herbert Xu <herbert@gondor.apana.org.au> 8 + * 9 + * This program is free software; you can redistribute it and/or modify it 10 + * under the terms of the GNU General Public License as published by the Free 11 + * Software Foundation; either version 2 of the License, or (at your option) 12 + * any later version. 13 + * 14 + */ 15 + #ifndef _CRYPTO_TESTMGR_H 16 + #define _CRYPTO_TESTMGR_H 17 + 18 + #define MAX_DIGEST_SIZE 64 19 + #define MAX_TAP 8 20 + 21 + #define MAX_KEYLEN 56 22 + #define MAX_IVLEN 32 23 + 24 + struct hash_testvec { 25 + /* only used with keyed hash algorithms */ 26 + char *key; 27 + char *plaintext; 28 + char *digest; 29 + unsigned char tap[MAX_TAP]; 30 + unsigned char psize; 31 + unsigned char np; 32 + unsigned char ksize; 33 + }; 34 + 35 + struct cipher_testvec { 36 + char *key; 37 + char *iv; 38 + char *input; 39 + char *result; 40 + unsigned short tap[MAX_TAP]; 41 + int np; 42 + unsigned char fail; 43 + unsigned char wk; /* weak key flag */ 44 + unsigned char klen; 45 + unsigned short ilen; 46 + unsigned short rlen; 47 + }; 48 + 49 + struct aead_testvec { 50 + char *key; 51 + char *iv; 52 + char *input; 53 + char *assoc; 54 + char *result; 55 + unsigned char tap[MAX_TAP]; 56 + unsigned char atap[MAX_TAP]; 57 + int np; 58 + int anp; 59 + unsigned char fail; 60 + unsigned char wk; /* weak key flag */ 61 + unsigned char klen; 62 + unsigned short ilen; 63 + unsigned short alen; 64 + unsigned short rlen; 65 + }; 66 + 67 + static char zeroed_string[48]; 68 + 69 + /* 70 + * MD4 test vectors from RFC1320 71 + */ 72 + #define MD4_TEST_VECTORS 7 73 + 74 + static struct hash_testvec md4_tv_template [] = { 75 + { 76 + .plaintext = "", 77 + .digest = "\x31\xd6\xcf\xe0\xd1\x6a\xe9\x31" 78 + "\xb7\x3c\x59\xd7\xe0\xc0\x89\xc0", 79 + }, { 80 + .plaintext = "a", 81 + .psize = 1, 82 + .digest = "\xbd\xe5\x2c\xb3\x1d\xe3\x3e\x46" 83 + "\x24\x5e\x05\xfb\xdb\xd6\xfb\x24", 84 + }, { 85 + .plaintext = "abc", 86 + .psize = 3, 87 + .digest = "\xa4\x48\x01\x7a\xaf\x21\xd8\x52" 88 + "\x5f\xc1\x0a\xe8\x7a\xa6\x72\x9d", 89 + }, { 90 + .plaintext = "message digest", 91 + .psize = 14, 92 + .digest = "\xd9\x13\x0a\x81\x64\x54\x9f\xe8" 93 + "\x18\x87\x48\x06\xe1\xc7\x01\x4b", 94 + }, { 95 + .plaintext = "abcdefghijklmnopqrstuvwxyz", 96 + .psize = 26, 97 + .digest = "\xd7\x9e\x1c\x30\x8a\xa5\xbb\xcd" 98 + "\xee\xa8\xed\x63\xdf\x41\x2d\xa9", 99 + .np = 2, 100 + .tap = { 13, 13 }, 101 + }, { 102 + .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", 103 + .psize = 62, 104 + .digest = "\x04\x3f\x85\x82\xf2\x41\xdb\x35" 105 + "\x1c\xe6\x27\xe1\x53\xe7\xf0\xe4", 106 + }, { 107 + .plaintext = "123456789012345678901234567890123456789012345678901234567890123" 108 + "45678901234567890", 109 + .psize = 80, 110 + .digest = "\xe3\x3b\x4d\xdc\x9c\x38\xf2\x19" 111 + "\x9c\x3e\x7b\x16\x4f\xcc\x05\x36", 112 + }, 113 + }; 114 + 115 + /* 116 + * MD5 test vectors from RFC1321 117 + */ 118 + #define MD5_TEST_VECTORS 7 119 + 120 + static struct hash_testvec md5_tv_template[] = { 121 + { 122 + .digest = "\xd4\x1d\x8c\xd9\x8f\x00\xb2\x04" 123 + "\xe9\x80\x09\x98\xec\xf8\x42\x7e", 124 + }, { 125 + .plaintext = "a", 126 + .psize = 1, 127 + .digest = "\x0c\xc1\x75\xb9\xc0\xf1\xb6\xa8" 128 + "\x31\xc3\x99\xe2\x69\x77\x26\x61", 129 + }, { 130 + .plaintext = "abc", 131 + .psize = 3, 132 + .digest = "\x90\x01\x50\x98\x3c\xd2\x4f\xb0" 133 + "\xd6\x96\x3f\x7d\x28\xe1\x7f\x72", 134 + }, { 135 + .plaintext = "message digest", 136 + .psize = 14, 137 + .digest = "\xf9\x6b\x69\x7d\x7c\xb7\x93\x8d" 138 + "\x52\x5a\x2f\x31\xaa\xf1\x61\xd0", 139 + }, { 140 + .plaintext = "abcdefghijklmnopqrstuvwxyz", 141 + .psize = 26, 142 + .digest = "\xc3\xfc\xd3\xd7\x61\x92\xe4\x00" 143 + "\x7d\xfb\x49\x6c\xca\x67\xe1\x3b", 144 + .np = 2, 145 + .tap = {13, 13} 146 + }, { 147 + .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", 148 + .psize = 62, 149 + .digest = "\xd1\x74\xab\x98\xd2\x77\xd9\xf5" 150 + "\xa5\x61\x1c\x2c\x9f\x41\x9d\x9f", 151 + }, { 152 + .plaintext = "12345678901234567890123456789012345678901234567890123456789012" 153 + "345678901234567890", 154 + .psize = 80, 155 + .digest = "\x57\xed\xf4\xa2\x2b\xe3\xc9\x55" 156 + "\xac\x49\xda\x2e\x21\x07\xb6\x7a", 157 + } 158 + 159 + }; 160 + 161 + /* 162 + * RIPEMD-128 test vectors from ISO/IEC 10118-3:2004(E) 163 + */ 164 + #define RMD128_TEST_VECTORS 10 165 + 166 + static struct hash_testvec rmd128_tv_template[] = { 167 + { 168 + .digest = "\xcd\xf2\x62\x13\xa1\x50\xdc\x3e" 169 + "\xcb\x61\x0f\x18\xf6\xb3\x8b\x46", 170 + }, { 171 + .plaintext = "a", 172 + .psize = 1, 173 + .digest = "\x86\xbe\x7a\xfa\x33\x9d\x0f\xc7" 174 + "\xcf\xc7\x85\xe7\x2f\x57\x8d\x33", 175 + }, { 176 + .plaintext = "abc", 177 + .psize = 3, 178 + .digest = "\xc1\x4a\x12\x19\x9c\x66\xe4\xba" 179 + "\x84\x63\x6b\x0f\x69\x14\x4c\x77", 180 + }, { 181 + .plaintext = "message digest", 182 + .psize = 14, 183 + .digest = "\x9e\x32\x7b\x3d\x6e\x52\x30\x62" 184 + "\xaf\xc1\x13\x2d\x7d\xf9\xd1\xb8", 185 + }, { 186 + .plaintext = "abcdefghijklmnopqrstuvwxyz", 187 + .psize = 26, 188 + .digest = "\xfd\x2a\xa6\x07\xf7\x1d\xc8\xf5" 189 + "\x10\x71\x49\x22\xb3\x71\x83\x4e", 190 + }, { 191 + .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde" 192 + "fghijklmnopqrstuvwxyz0123456789", 193 + .psize = 62, 194 + .digest = "\xd1\xe9\x59\xeb\x17\x9c\x91\x1f" 195 + "\xae\xa4\x62\x4c\x60\xc5\xc7\x02", 196 + }, { 197 + .plaintext = "1234567890123456789012345678901234567890" 198 + "1234567890123456789012345678901234567890", 199 + .psize = 80, 200 + .digest = "\x3f\x45\xef\x19\x47\x32\xc2\xdb" 201 + "\xb2\xc4\xa2\xc7\x69\x79\x5f\xa3", 202 + }, { 203 + .plaintext = "abcdbcdecdefdefgefghfghighij" 204 + "hijkijkljklmklmnlmnomnopnopq", 205 + .psize = 56, 206 + .digest = "\xa1\xaa\x06\x89\xd0\xfa\xfa\x2d" 207 + "\xdc\x22\xe8\x8b\x49\x13\x3a\x06", 208 + .np = 2, 209 + .tap = { 28, 28 }, 210 + }, { 211 + .plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghi" 212 + "jklmghijklmnhijklmnoijklmnopjklmnopqklmnopqr" 213 + "lmnopqrsmnopqrstnopqrstu", 214 + .psize = 112, 215 + .digest = "\xd4\xec\xc9\x13\xe1\xdf\x77\x6b" 216 + "\xf4\x8d\xe9\xd5\x5b\x1f\x25\x46", 217 + }, { 218 + .plaintext = "abcdbcdecdefdefgefghfghighijhijk", 219 + .psize = 32, 220 + .digest = "\x13\xfc\x13\xe8\xef\xff\x34\x7d" 221 + "\xe1\x93\xff\x46\xdb\xac\xcf\xd4", 222 + } 223 + }; 224 + 225 + /* 226 + * RIPEMD-160 test vectors from ISO/IEC 10118-3:2004(E) 227 + */ 228 + #define RMD160_TEST_VECTORS 10 229 + 230 + static struct hash_testvec rmd160_tv_template[] = { 231 + { 232 + .digest = "\x9c\x11\x85\xa5\xc5\xe9\xfc\x54\x61\x28" 233 + "\x08\x97\x7e\xe8\xf5\x48\xb2\x25\x8d\x31", 234 + }, { 235 + .plaintext = "a", 236 + .psize = 1, 237 + .digest = "\x0b\xdc\x9d\x2d\x25\x6b\x3e\xe9\xda\xae" 238 + "\x34\x7b\xe6\xf4\xdc\x83\x5a\x46\x7f\xfe", 239 + }, { 240 + .plaintext = "abc", 241 + .psize = 3, 242 + .digest = "\x8e\xb2\x08\xf7\xe0\x5d\x98\x7a\x9b\x04" 243 + "\x4a\x8e\x98\xc6\xb0\x87\xf1\x5a\x0b\xfc", 244 + }, { 245 + .plaintext = "message digest", 246 + .psize = 14, 247 + .digest = "\x5d\x06\x89\xef\x49\xd2\xfa\xe5\x72\xb8" 248 + "\x81\xb1\x23\xa8\x5f\xfa\x21\x59\x5f\x36", 249 + }, { 250 + .plaintext = "abcdefghijklmnopqrstuvwxyz", 251 + .psize = 26, 252 + .digest = "\xf7\x1c\x27\x10\x9c\x69\x2c\x1b\x56\xbb" 253 + "\xdc\xeb\x5b\x9d\x28\x65\xb3\x70\x8d\xbc", 254 + }, { 255 + .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde" 256 + "fghijklmnopqrstuvwxyz0123456789", 257 + .psize = 62, 258 + .digest = "\xb0\xe2\x0b\x6e\x31\x16\x64\x02\x86\xed" 259 + "\x3a\x87\xa5\x71\x30\x79\xb2\x1f\x51\x89", 260 + }, { 261 + .plaintext = "1234567890123456789012345678901234567890" 262 + "1234567890123456789012345678901234567890", 263 + .psize = 80, 264 + .digest = "\x9b\x75\x2e\x45\x57\x3d\x4b\x39\xf4\xdb" 265 + "\xd3\x32\x3c\xab\x82\xbf\x63\x32\x6b\xfb", 266 + }, { 267 + .plaintext = "abcdbcdecdefdefgefghfghighij" 268 + "hijkijkljklmklmnlmnomnopnopq", 269 + .psize = 56, 270 + .digest = "\x12\xa0\x53\x38\x4a\x9c\x0c\x88\xe4\x05" 271 + "\xa0\x6c\x27\xdc\xf4\x9a\xda\x62\xeb\x2b", 272 + .np = 2, 273 + .tap = { 28, 28 }, 274 + }, { 275 + .plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghi" 276 + "jklmghijklmnhijklmnoijklmnopjklmnopqklmnopqr" 277 + "lmnopqrsmnopqrstnopqrstu", 278 + .psize = 112, 279 + .digest = "\x6f\x3f\xa3\x9b\x6b\x50\x3c\x38\x4f\x91" 280 + "\x9a\x49\xa7\xaa\x5c\x2c\x08\xbd\xfb\x45", 281 + }, { 282 + .plaintext = "abcdbcdecdefdefgefghfghighijhijk", 283 + .psize = 32, 284 + .digest = "\x94\xc2\x64\x11\x54\x04\xe6\x33\x79\x0d" 285 + "\xfc\xc8\x7b\x58\x7d\x36\x77\x06\x7d\x9f", 286 + } 287 + }; 288 + 289 + /* 290 + * RIPEMD-256 test vectors 291 + */ 292 + #define RMD256_TEST_VECTORS 8 293 + 294 + static struct hash_testvec rmd256_tv_template[] = { 295 + { 296 + .digest = "\x02\xba\x4c\x4e\x5f\x8e\xcd\x18" 297 + "\x77\xfc\x52\xd6\x4d\x30\xe3\x7a" 298 + "\x2d\x97\x74\xfb\x1e\x5d\x02\x63" 299 + "\x80\xae\x01\x68\xe3\xc5\x52\x2d", 300 + }, { 301 + .plaintext = "a", 302 + .psize = 1, 303 + .digest = "\xf9\x33\x3e\x45\xd8\x57\xf5\xd9" 304 + "\x0a\x91\xba\xb7\x0a\x1e\xba\x0c" 305 + "\xfb\x1b\xe4\xb0\x78\x3c\x9a\xcf" 306 + "\xcd\x88\x3a\x91\x34\x69\x29\x25", 307 + }, { 308 + .plaintext = "abc", 309 + .psize = 3, 310 + .digest = "\xaf\xbd\x6e\x22\x8b\x9d\x8c\xbb" 311 + "\xce\xf5\xca\x2d\x03\xe6\xdb\xa1" 312 + "\x0a\xc0\xbc\x7d\xcb\xe4\x68\x0e" 313 + "\x1e\x42\xd2\xe9\x75\x45\x9b\x65", 314 + }, { 315 + .plaintext = "message digest", 316 + .psize = 14, 317 + .digest = "\x87\xe9\x71\x75\x9a\x1c\xe4\x7a" 318 + "\x51\x4d\x5c\x91\x4c\x39\x2c\x90" 319 + "\x18\xc7\xc4\x6b\xc1\x44\x65\x55" 320 + "\x4a\xfc\xdf\x54\xa5\x07\x0c\x0e", 321 + }, { 322 + .plaintext = "abcdefghijklmnopqrstuvwxyz", 323 + .psize = 26, 324 + .digest = "\x64\x9d\x30\x34\x75\x1e\xa2\x16" 325 + "\x77\x6b\xf9\xa1\x8a\xcc\x81\xbc" 326 + "\x78\x96\x11\x8a\x51\x97\x96\x87" 327 + "\x82\xdd\x1f\xd9\x7d\x8d\x51\x33", 328 + }, { 329 + .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde" 330 + "fghijklmnopqrstuvwxyz0123456789", 331 + .psize = 62, 332 + .digest = "\x57\x40\xa4\x08\xac\x16\xb7\x20" 333 + "\xb8\x44\x24\xae\x93\x1c\xbb\x1f" 334 + "\xe3\x63\xd1\xd0\xbf\x40\x17\xf1" 335 + "\xa8\x9f\x7e\xa6\xde\x77\xa0\xb8", 336 + }, { 337 + .plaintext = "1234567890123456789012345678901234567890" 338 + "1234567890123456789012345678901234567890", 339 + .psize = 80, 340 + .digest = "\x06\xfd\xcc\x7a\x40\x95\x48\xaa" 341 + "\xf9\x13\x68\xc0\x6a\x62\x75\xb5" 342 + "\x53\xe3\xf0\x99\xbf\x0e\xa4\xed" 343 + "\xfd\x67\x78\xdf\x89\xa8\x90\xdd", 344 + }, { 345 + .plaintext = "abcdbcdecdefdefgefghfghighij" 346 + "hijkijkljklmklmnlmnomnopnopq", 347 + .psize = 56, 348 + .digest = "\x38\x43\x04\x55\x83\xaa\xc6\xc8" 349 + "\xc8\xd9\x12\x85\x73\xe7\xa9\x80" 350 + "\x9a\xfb\x2a\x0f\x34\xcc\xc3\x6e" 351 + "\xa9\xe7\x2f\x16\xf6\x36\x8e\x3f", 352 + .np = 2, 353 + .tap = { 28, 28 }, 354 + } 355 + }; 356 + 357 + /* 358 + * RIPEMD-320 test vectors 359 + */ 360 + #define RMD320_TEST_VECTORS 8 361 + 362 + static struct hash_testvec rmd320_tv_template[] = { 363 + { 364 + .digest = "\x22\xd6\x5d\x56\x61\x53\x6c\xdc\x75\xc1" 365 + "\xfd\xf5\xc6\xde\x7b\x41\xb9\xf2\x73\x25" 366 + "\xeb\xc6\x1e\x85\x57\x17\x7d\x70\x5a\x0e" 367 + "\xc8\x80\x15\x1c\x3a\x32\xa0\x08\x99\xb8", 368 + }, { 369 + .plaintext = "a", 370 + .psize = 1, 371 + .digest = "\xce\x78\x85\x06\x38\xf9\x26\x58\xa5\xa5" 372 + "\x85\x09\x75\x79\x92\x6d\xda\x66\x7a\x57" 373 + "\x16\x56\x2c\xfc\xf6\xfb\xe7\x7f\x63\x54" 374 + "\x2f\x99\xb0\x47\x05\xd6\x97\x0d\xff\x5d", 375 + }, { 376 + .plaintext = "abc", 377 + .psize = 3, 378 + .digest = "\xde\x4c\x01\xb3\x05\x4f\x89\x30\xa7\x9d" 379 + "\x09\xae\x73\x8e\x92\x30\x1e\x5a\x17\x08" 380 + "\x5b\xef\xfd\xc1\xb8\xd1\x16\x71\x3e\x74" 381 + "\xf8\x2f\xa9\x42\xd6\x4c\xdb\xc4\x68\x2d", 382 + }, { 383 + .plaintext = "message digest", 384 + .psize = 14, 385 + .digest = "\x3a\x8e\x28\x50\x2e\xd4\x5d\x42\x2f\x68" 386 + "\x84\x4f\x9d\xd3\x16\xe7\xb9\x85\x33\xfa" 387 + "\x3f\x2a\x91\xd2\x9f\x84\xd4\x25\xc8\x8d" 388 + "\x6b\x4e\xff\x72\x7d\xf6\x6a\x7c\x01\x97", 389 + }, { 390 + .plaintext = "abcdefghijklmnopqrstuvwxyz", 391 + .psize = 26, 392 + .digest = "\xca\xbd\xb1\x81\x0b\x92\x47\x0a\x20\x93" 393 + "\xaa\x6b\xce\x05\x95\x2c\x28\x34\x8c\xf4" 394 + "\x3f\xf6\x08\x41\x97\x51\x66\xbb\x40\xed" 395 + "\x23\x40\x04\xb8\x82\x44\x63\xe6\xb0\x09", 396 + }, { 397 + .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde" 398 + "fghijklmnopqrstuvwxyz0123456789", 399 + .psize = 62, 400 + .digest = "\xed\x54\x49\x40\xc8\x6d\x67\xf2\x50\xd2" 401 + "\x32\xc3\x0b\x7b\x3e\x57\x70\xe0\xc6\x0c" 402 + "\x8c\xb9\xa4\xca\xfe\x3b\x11\x38\x8a\xf9" 403 + "\x92\x0e\x1b\x99\x23\x0b\x84\x3c\x86\xa4", 404 + }, { 405 + .plaintext = "1234567890123456789012345678901234567890" 406 + "1234567890123456789012345678901234567890", 407 + .psize = 80, 408 + .digest = "\x55\x78\x88\xaf\x5f\x6d\x8e\xd6\x2a\xb6" 409 + "\x69\x45\xc6\xd2\xa0\xa4\x7e\xcd\x53\x41" 410 + "\xe9\x15\xeb\x8f\xea\x1d\x05\x24\x95\x5f" 411 + "\x82\x5d\xc7\x17\xe4\xa0\x08\xab\x2d\x42", 412 + }, { 413 + .plaintext = "abcdbcdecdefdefgefghfghighij" 414 + "hijkijkljklmklmnlmnomnopnopq", 415 + .psize = 56, 416 + .digest = "\xd0\x34\xa7\x95\x0c\xf7\x22\x02\x1b\xa4" 417 + "\xb8\x4d\xf7\x69\xa5\xde\x20\x60\xe2\x59" 418 + "\xdf\x4c\x9b\xb4\xa4\x26\x8c\x0e\x93\x5b" 419 + "\xbc\x74\x70\xa9\x69\xc9\xd0\x72\xa1\xac", 420 + .np = 2, 421 + .tap = { 28, 28 }, 422 + } 423 + }; 424 + 425 + /* 426 + * SHA1 test vectors from from FIPS PUB 180-1 427 + */ 428 + #define SHA1_TEST_VECTORS 2 429 + 430 + static struct hash_testvec sha1_tv_template[] = { 431 + { 432 + .plaintext = "abc", 433 + .psize = 3, 434 + .digest = "\xa9\x99\x3e\x36\x47\x06\x81\x6a\xba\x3e" 435 + "\x25\x71\x78\x50\xc2\x6c\x9c\xd0\xd8\x9d", 436 + }, { 437 + .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 438 + .psize = 56, 439 + .digest = "\x84\x98\x3e\x44\x1c\x3b\xd2\x6e\xba\xae" 440 + "\x4a\xa1\xf9\x51\x29\xe5\xe5\x46\x70\xf1", 441 + .np = 2, 442 + .tap = { 28, 28 } 443 + } 444 + }; 445 + 446 + 447 + /* 448 + * SHA224 test vectors from from FIPS PUB 180-2 449 + */ 450 + #define SHA224_TEST_VECTORS 2 451 + 452 + static struct hash_testvec sha224_tv_template[] = { 453 + { 454 + .plaintext = "abc", 455 + .psize = 3, 456 + .digest = "\x23\x09\x7D\x22\x34\x05\xD8\x22" 457 + "\x86\x42\xA4\x77\xBD\xA2\x55\xB3" 458 + "\x2A\xAD\xBC\xE4\xBD\xA0\xB3\xF7" 459 + "\xE3\x6C\x9D\xA7", 460 + }, { 461 + .plaintext = 462 + "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 463 + .psize = 56, 464 + .digest = "\x75\x38\x8B\x16\x51\x27\x76\xCC" 465 + "\x5D\xBA\x5D\xA1\xFD\x89\x01\x50" 466 + "\xB0\xC6\x45\x5C\xB4\xF5\x8B\x19" 467 + "\x52\x52\x25\x25", 468 + .np = 2, 469 + .tap = { 28, 28 } 470 + } 471 + }; 472 + 473 + /* 474 + * SHA256 test vectors from from NIST 475 + */ 476 + #define SHA256_TEST_VECTORS 2 477 + 478 + static struct hash_testvec sha256_tv_template[] = { 479 + { 480 + .plaintext = "abc", 481 + .psize = 3, 482 + .digest = "\xba\x78\x16\xbf\x8f\x01\xcf\xea" 483 + "\x41\x41\x40\xde\x5d\xae\x22\x23" 484 + "\xb0\x03\x61\xa3\x96\x17\x7a\x9c" 485 + "\xb4\x10\xff\x61\xf2\x00\x15\xad", 486 + }, { 487 + .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 488 + .psize = 56, 489 + .digest = "\x24\x8d\x6a\x61\xd2\x06\x38\xb8" 490 + "\xe5\xc0\x26\x93\x0c\x3e\x60\x39" 491 + "\xa3\x3c\xe4\x59\x64\xff\x21\x67" 492 + "\xf6\xec\xed\xd4\x19\xdb\x06\xc1", 493 + .np = 2, 494 + .tap = { 28, 28 } 495 + }, 496 + }; 497 + 498 + /* 499 + * SHA384 test vectors from from NIST and kerneli 500 + */ 501 + #define SHA384_TEST_VECTORS 4 502 + 503 + static struct hash_testvec sha384_tv_template[] = { 504 + { 505 + .plaintext= "abc", 506 + .psize = 3, 507 + .digest = "\xcb\x00\x75\x3f\x45\xa3\x5e\x8b" 508 + "\xb5\xa0\x3d\x69\x9a\xc6\x50\x07" 509 + "\x27\x2c\x32\xab\x0e\xde\xd1\x63" 510 + "\x1a\x8b\x60\x5a\x43\xff\x5b\xed" 511 + "\x80\x86\x07\x2b\xa1\xe7\xcc\x23" 512 + "\x58\xba\xec\xa1\x34\xc8\x25\xa7", 513 + }, { 514 + .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 515 + .psize = 56, 516 + .digest = "\x33\x91\xfd\xdd\xfc\x8d\xc7\x39" 517 + "\x37\x07\xa6\x5b\x1b\x47\x09\x39" 518 + "\x7c\xf8\xb1\xd1\x62\xaf\x05\xab" 519 + "\xfe\x8f\x45\x0d\xe5\xf3\x6b\xc6" 520 + "\xb0\x45\x5a\x85\x20\xbc\x4e\x6f" 521 + "\x5f\xe9\x5b\x1f\xe3\xc8\x45\x2b", 522 + }, { 523 + .plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmn" 524 + "hijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu", 525 + .psize = 112, 526 + .digest = "\x09\x33\x0c\x33\xf7\x11\x47\xe8" 527 + "\x3d\x19\x2f\xc7\x82\xcd\x1b\x47" 528 + "\x53\x11\x1b\x17\x3b\x3b\x05\xd2" 529 + "\x2f\xa0\x80\x86\xe3\xb0\xf7\x12" 530 + "\xfc\xc7\xc7\x1a\x55\x7e\x2d\xb9" 531 + "\x66\xc3\xe9\xfa\x91\x74\x60\x39", 532 + }, { 533 + .plaintext = "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd" 534 + "efghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz", 535 + .psize = 104, 536 + .digest = "\x3d\x20\x89\x73\xab\x35\x08\xdb" 537 + "\xbd\x7e\x2c\x28\x62\xba\x29\x0a" 538 + "\xd3\x01\x0e\x49\x78\xc1\x98\xdc" 539 + "\x4d\x8f\xd0\x14\xe5\x82\x82\x3a" 540 + "\x89\xe1\x6f\x9b\x2a\x7b\xbc\x1a" 541 + "\xc9\x38\xe2\xd1\x99\xe8\xbe\xa4", 542 + .np = 4, 543 + .tap = { 26, 26, 26, 26 } 544 + }, 545 + }; 546 + 547 + /* 548 + * SHA512 test vectors from from NIST and kerneli 549 + */ 550 + #define SHA512_TEST_VECTORS 4 551 + 552 + static struct hash_testvec sha512_tv_template[] = { 553 + { 554 + .plaintext = "abc", 555 + .psize = 3, 556 + .digest = "\xdd\xaf\x35\xa1\x93\x61\x7a\xba" 557 + "\xcc\x41\x73\x49\xae\x20\x41\x31" 558 + "\x12\xe6\xfa\x4e\x89\xa9\x7e\xa2" 559 + "\x0a\x9e\xee\xe6\x4b\x55\xd3\x9a" 560 + "\x21\x92\x99\x2a\x27\x4f\xc1\xa8" 561 + "\x36\xba\x3c\x23\xa3\xfe\xeb\xbd" 562 + "\x45\x4d\x44\x23\x64\x3c\xe8\x0e" 563 + "\x2a\x9a\xc9\x4f\xa5\x4c\xa4\x9f", 564 + }, { 565 + .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 566 + .psize = 56, 567 + .digest = "\x20\x4a\x8f\xc6\xdd\xa8\x2f\x0a" 568 + "\x0c\xed\x7b\xeb\x8e\x08\xa4\x16" 569 + "\x57\xc1\x6e\xf4\x68\xb2\x28\xa8" 570 + "\x27\x9b\xe3\x31\xa7\x03\xc3\x35" 571 + "\x96\xfd\x15\xc1\x3b\x1b\x07\xf9" 572 + "\xaa\x1d\x3b\xea\x57\x78\x9c\xa0" 573 + "\x31\xad\x85\xc7\xa7\x1d\xd7\x03" 574 + "\x54\xec\x63\x12\x38\xca\x34\x45", 575 + }, { 576 + .plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmn" 577 + "hijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu", 578 + .psize = 112, 579 + .digest = "\x8e\x95\x9b\x75\xda\xe3\x13\xda" 580 + "\x8c\xf4\xf7\x28\x14\xfc\x14\x3f" 581 + "\x8f\x77\x79\xc6\xeb\x9f\x7f\xa1" 582 + "\x72\x99\xae\xad\xb6\x88\x90\x18" 583 + "\x50\x1d\x28\x9e\x49\x00\xf7\xe4" 584 + "\x33\x1b\x99\xde\xc4\xb5\x43\x3a" 585 + "\xc7\xd3\x29\xee\xb6\xdd\x26\x54" 586 + "\x5e\x96\xe5\x5b\x87\x4b\xe9\x09", 587 + }, { 588 + .plaintext = "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd" 589 + "efghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz", 590 + .psize = 104, 591 + .digest = "\x93\x0d\x0c\xef\xcb\x30\xff\x11" 592 + "\x33\xb6\x89\x81\x21\xf1\xcf\x3d" 593 + "\x27\x57\x8a\xfc\xaf\xe8\x67\x7c" 594 + "\x52\x57\xcf\x06\x99\x11\xf7\x5d" 595 + "\x8f\x58\x31\xb5\x6e\xbf\xda\x67" 596 + "\xb2\x78\xe6\x6d\xff\x8b\x84\xfe" 597 + "\x2b\x28\x70\xf7\x42\xa5\x80\xd8" 598 + "\xed\xb4\x19\x87\x23\x28\x50\xc9", 599 + .np = 4, 600 + .tap = { 26, 26, 26, 26 } 601 + }, 602 + }; 603 + 604 + 605 + /* 606 + * WHIRLPOOL test vectors from Whirlpool package 607 + * by Vincent Rijmen and Paulo S. L. M. Barreto as part of the NESSIE 608 + * submission 609 + */ 610 + #define WP512_TEST_VECTORS 8 611 + 612 + static struct hash_testvec wp512_tv_template[] = { 613 + { 614 + .plaintext = "", 615 + .psize = 0, 616 + .digest = "\x19\xFA\x61\xD7\x55\x22\xA4\x66" 617 + "\x9B\x44\xE3\x9C\x1D\x2E\x17\x26" 618 + "\xC5\x30\x23\x21\x30\xD4\x07\xF8" 619 + "\x9A\xFE\xE0\x96\x49\x97\xF7\xA7" 620 + "\x3E\x83\xBE\x69\x8B\x28\x8F\xEB" 621 + "\xCF\x88\xE3\xE0\x3C\x4F\x07\x57" 622 + "\xEA\x89\x64\xE5\x9B\x63\xD9\x37" 623 + "\x08\xB1\x38\xCC\x42\xA6\x6E\xB3", 624 + 625 + 626 + }, { 627 + .plaintext = "a", 628 + .psize = 1, 629 + .digest = "\x8A\xCA\x26\x02\x79\x2A\xEC\x6F" 630 + "\x11\xA6\x72\x06\x53\x1F\xB7\xD7" 631 + "\xF0\xDF\xF5\x94\x13\x14\x5E\x69" 632 + "\x73\xC4\x50\x01\xD0\x08\x7B\x42" 633 + "\xD1\x1B\xC6\x45\x41\x3A\xEF\xF6" 634 + "\x3A\x42\x39\x1A\x39\x14\x5A\x59" 635 + "\x1A\x92\x20\x0D\x56\x01\x95\xE5" 636 + "\x3B\x47\x85\x84\xFD\xAE\x23\x1A", 637 + }, { 638 + .plaintext = "abc", 639 + .psize = 3, 640 + .digest = "\x4E\x24\x48\xA4\xC6\xF4\x86\xBB" 641 + "\x16\xB6\x56\x2C\x73\xB4\x02\x0B" 642 + "\xF3\x04\x3E\x3A\x73\x1B\xCE\x72" 643 + "\x1A\xE1\xB3\x03\xD9\x7E\x6D\x4C" 644 + "\x71\x81\xEE\xBD\xB6\xC5\x7E\x27" 645 + "\x7D\x0E\x34\x95\x71\x14\xCB\xD6" 646 + "\xC7\x97\xFC\x9D\x95\xD8\xB5\x82" 647 + "\xD2\x25\x29\x20\x76\xD4\xEE\xF5", 648 + }, { 649 + .plaintext = "message digest", 650 + .psize = 14, 651 + .digest = "\x37\x8C\x84\xA4\x12\x6E\x2D\xC6" 652 + "\xE5\x6D\xCC\x74\x58\x37\x7A\xAC" 653 + "\x83\x8D\x00\x03\x22\x30\xF5\x3C" 654 + "\xE1\xF5\x70\x0C\x0F\xFB\x4D\x3B" 655 + "\x84\x21\x55\x76\x59\xEF\x55\xC1" 656 + "\x06\xB4\xB5\x2A\xC5\xA4\xAA\xA6" 657 + "\x92\xED\x92\x00\x52\x83\x8F\x33" 658 + "\x62\xE8\x6D\xBD\x37\xA8\x90\x3E", 659 + }, { 660 + .plaintext = "abcdefghijklmnopqrstuvwxyz", 661 + .psize = 26, 662 + .digest = "\xF1\xD7\x54\x66\x26\x36\xFF\xE9" 663 + "\x2C\x82\xEB\xB9\x21\x2A\x48\x4A" 664 + "\x8D\x38\x63\x1E\xAD\x42\x38\xF5" 665 + "\x44\x2E\xE1\x3B\x80\x54\xE4\x1B" 666 + "\x08\xBF\x2A\x92\x51\xC3\x0B\x6A" 667 + "\x0B\x8A\xAE\x86\x17\x7A\xB4\xA6" 668 + "\xF6\x8F\x67\x3E\x72\x07\x86\x5D" 669 + "\x5D\x98\x19\xA3\xDB\xA4\xEB\x3B", 670 + }, { 671 + .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" 672 + "abcdefghijklmnopqrstuvwxyz0123456789", 673 + .psize = 62, 674 + .digest = "\xDC\x37\xE0\x08\xCF\x9E\xE6\x9B" 675 + "\xF1\x1F\x00\xED\x9A\xBA\x26\x90" 676 + "\x1D\xD7\xC2\x8C\xDE\xC0\x66\xCC" 677 + "\x6A\xF4\x2E\x40\xF8\x2F\x3A\x1E" 678 + "\x08\xEB\xA2\x66\x29\x12\x9D\x8F" 679 + "\xB7\xCB\x57\x21\x1B\x92\x81\xA6" 680 + "\x55\x17\xCC\x87\x9D\x7B\x96\x21" 681 + "\x42\xC6\x5F\x5A\x7A\xF0\x14\x67", 682 + }, { 683 + .plaintext = "1234567890123456789012345678901234567890" 684 + "1234567890123456789012345678901234567890", 685 + .psize = 80, 686 + .digest = "\x46\x6E\xF1\x8B\xAB\xB0\x15\x4D" 687 + "\x25\xB9\xD3\x8A\x64\x14\xF5\xC0" 688 + "\x87\x84\x37\x2B\xCC\xB2\x04\xD6" 689 + "\x54\x9C\x4A\xFA\xDB\x60\x14\x29" 690 + "\x4D\x5B\xD8\xDF\x2A\x6C\x44\xE5" 691 + "\x38\xCD\x04\x7B\x26\x81\xA5\x1A" 692 + "\x2C\x60\x48\x1E\x88\xC5\xA2\x0B" 693 + "\x2C\x2A\x80\xCF\x3A\x9A\x08\x3B", 694 + }, { 695 + .plaintext = "abcdbcdecdefdefgefghfghighijhijk", 696 + .psize = 32, 697 + .digest = "\x2A\x98\x7E\xA4\x0F\x91\x70\x61" 698 + "\xF5\xD6\xF0\xA0\xE4\x64\x4F\x48" 699 + "\x8A\x7A\x5A\x52\xDE\xEE\x65\x62" 700 + "\x07\xC5\x62\xF9\x88\xE9\x5C\x69" 701 + "\x16\xBD\xC8\x03\x1B\xC5\xBE\x1B" 702 + "\x7B\x94\x76\x39\xFE\x05\x0B\x56" 703 + "\x93\x9B\xAA\xA0\xAD\xFF\x9A\xE6" 704 + "\x74\x5B\x7B\x18\x1C\x3B\xE3\xFD", 705 + }, 706 + }; 707 + 708 + #define WP384_TEST_VECTORS 8 709 + 710 + static struct hash_testvec wp384_tv_template[] = { 711 + { 712 + .plaintext = "", 713 + .psize = 0, 714 + .digest = "\x19\xFA\x61\xD7\x55\x22\xA4\x66" 715 + "\x9B\x44\xE3\x9C\x1D\x2E\x17\x26" 716 + "\xC5\x30\x23\x21\x30\xD4\x07\xF8" 717 + "\x9A\xFE\xE0\x96\x49\x97\xF7\xA7" 718 + "\x3E\x83\xBE\x69\x8B\x28\x8F\xEB" 719 + "\xCF\x88\xE3\xE0\x3C\x4F\x07\x57", 720 + 721 + 722 + }, { 723 + .plaintext = "a", 724 + .psize = 1, 725 + .digest = "\x8A\xCA\x26\x02\x79\x2A\xEC\x6F" 726 + "\x11\xA6\x72\x06\x53\x1F\xB7\xD7" 727 + "\xF0\xDF\xF5\x94\x13\x14\x5E\x69" 728 + "\x73\xC4\x50\x01\xD0\x08\x7B\x42" 729 + "\xD1\x1B\xC6\x45\x41\x3A\xEF\xF6" 730 + "\x3A\x42\x39\x1A\x39\x14\x5A\x59", 731 + }, { 732 + .plaintext = "abc", 733 + .psize = 3, 734 + .digest = "\x4E\x24\x48\xA4\xC6\xF4\x86\xBB" 735 + "\x16\xB6\x56\x2C\x73\xB4\x02\x0B" 736 + "\xF3\x04\x3E\x3A\x73\x1B\xCE\x72" 737 + "\x1A\xE1\xB3\x03\xD9\x7E\x6D\x4C" 738 + "\x71\x81\xEE\xBD\xB6\xC5\x7E\x27" 739 + "\x7D\x0E\x34\x95\x71\x14\xCB\xD6", 740 + }, { 741 + .plaintext = "message digest", 742 + .psize = 14, 743 + .digest = "\x37\x8C\x84\xA4\x12\x6E\x2D\xC6" 744 + "\xE5\x6D\xCC\x74\x58\x37\x7A\xAC" 745 + "\x83\x8D\x00\x03\x22\x30\xF5\x3C" 746 + "\xE1\xF5\x70\x0C\x0F\xFB\x4D\x3B" 747 + "\x84\x21\x55\x76\x59\xEF\x55\xC1" 748 + "\x06\xB4\xB5\x2A\xC5\xA4\xAA\xA6", 749 + }, { 750 + .plaintext = "abcdefghijklmnopqrstuvwxyz", 751 + .psize = 26, 752 + .digest = "\xF1\xD7\x54\x66\x26\x36\xFF\xE9" 753 + "\x2C\x82\xEB\xB9\x21\x2A\x48\x4A" 754 + "\x8D\x38\x63\x1E\xAD\x42\x38\xF5" 755 + "\x44\x2E\xE1\x3B\x80\x54\xE4\x1B" 756 + "\x08\xBF\x2A\x92\x51\xC3\x0B\x6A" 757 + "\x0B\x8A\xAE\x86\x17\x7A\xB4\xA6", 758 + }, { 759 + .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" 760 + "abcdefghijklmnopqrstuvwxyz0123456789", 761 + .psize = 62, 762 + .digest = "\xDC\x37\xE0\x08\xCF\x9E\xE6\x9B" 763 + "\xF1\x1F\x00\xED\x9A\xBA\x26\x90" 764 + "\x1D\xD7\xC2\x8C\xDE\xC0\x66\xCC" 765 + "\x6A\xF4\x2E\x40\xF8\x2F\x3A\x1E" 766 + "\x08\xEB\xA2\x66\x29\x12\x9D\x8F" 767 + "\xB7\xCB\x57\x21\x1B\x92\x81\xA6", 768 + }, { 769 + .plaintext = "1234567890123456789012345678901234567890" 770 + "1234567890123456789012345678901234567890", 771 + .psize = 80, 772 + .digest = "\x46\x6E\xF1\x8B\xAB\xB0\x15\x4D" 773 + "\x25\xB9\xD3\x8A\x64\x14\xF5\xC0" 774 + "\x87\x84\x37\x2B\xCC\xB2\x04\xD6" 775 + "\x54\x9C\x4A\xFA\xDB\x60\x14\x29" 776 + "\x4D\x5B\xD8\xDF\x2A\x6C\x44\xE5" 777 + "\x38\xCD\x04\x7B\x26\x81\xA5\x1A", 778 + }, { 779 + .plaintext = "abcdbcdecdefdefgefghfghighijhijk", 780 + .psize = 32, 781 + .digest = "\x2A\x98\x7E\xA4\x0F\x91\x70\x61" 782 + "\xF5\xD6\xF0\xA0\xE4\x64\x4F\x48" 783 + "\x8A\x7A\x5A\x52\xDE\xEE\x65\x62" 784 + "\x07\xC5\x62\xF9\x88\xE9\x5C\x69" 785 + "\x16\xBD\xC8\x03\x1B\xC5\xBE\x1B" 786 + "\x7B\x94\x76\x39\xFE\x05\x0B\x56", 787 + }, 788 + }; 789 + 790 + #define WP256_TEST_VECTORS 8 791 + 792 + static struct hash_testvec wp256_tv_template[] = { 793 + { 794 + .plaintext = "", 795 + .psize = 0, 796 + .digest = "\x19\xFA\x61\xD7\x55\x22\xA4\x66" 797 + "\x9B\x44\xE3\x9C\x1D\x2E\x17\x26" 798 + "\xC5\x30\x23\x21\x30\xD4\x07\xF8" 799 + "\x9A\xFE\xE0\x96\x49\x97\xF7\xA7", 800 + 801 + 802 + }, { 803 + .plaintext = "a", 804 + .psize = 1, 805 + .digest = "\x8A\xCA\x26\x02\x79\x2A\xEC\x6F" 806 + "\x11\xA6\x72\x06\x53\x1F\xB7\xD7" 807 + "\xF0\xDF\xF5\x94\x13\x14\x5E\x69" 808 + "\x73\xC4\x50\x01\xD0\x08\x7B\x42", 809 + }, { 810 + .plaintext = "abc", 811 + .psize = 3, 812 + .digest = "\x4E\x24\x48\xA4\xC6\xF4\x86\xBB" 813 + "\x16\xB6\x56\x2C\x73\xB4\x02\x0B" 814 + "\xF3\x04\x3E\x3A\x73\x1B\xCE\x72" 815 + "\x1A\xE1\xB3\x03\xD9\x7E\x6D\x4C", 816 + }, { 817 + .plaintext = "message digest", 818 + .psize = 14, 819 + .digest = "\x37\x8C\x84\xA4\x12\x6E\x2D\xC6" 820 + "\xE5\x6D\xCC\x74\x58\x37\x7A\xAC" 821 + "\x83\x8D\x00\x03\x22\x30\xF5\x3C" 822 + "\xE1\xF5\x70\x0C\x0F\xFB\x4D\x3B", 823 + }, { 824 + .plaintext = "abcdefghijklmnopqrstuvwxyz", 825 + .psize = 26, 826 + .digest = "\xF1\xD7\x54\x66\x26\x36\xFF\xE9" 827 + "\x2C\x82\xEB\xB9\x21\x2A\x48\x4A" 828 + "\x8D\x38\x63\x1E\xAD\x42\x38\xF5" 829 + "\x44\x2E\xE1\x3B\x80\x54\xE4\x1B", 830 + }, { 831 + .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" 832 + "abcdefghijklmnopqrstuvwxyz0123456789", 833 + .psize = 62, 834 + .digest = "\xDC\x37\xE0\x08\xCF\x9E\xE6\x9B" 835 + "\xF1\x1F\x00\xED\x9A\xBA\x26\x90" 836 + "\x1D\xD7\xC2\x8C\xDE\xC0\x66\xCC" 837 + "\x6A\xF4\x2E\x40\xF8\x2F\x3A\x1E", 838 + }, { 839 + .plaintext = "1234567890123456789012345678901234567890" 840 + "1234567890123456789012345678901234567890", 841 + .psize = 80, 842 + .digest = "\x46\x6E\xF1\x8B\xAB\xB0\x15\x4D" 843 + "\x25\xB9\xD3\x8A\x64\x14\xF5\xC0" 844 + "\x87\x84\x37\x2B\xCC\xB2\x04\xD6" 845 + "\x54\x9C\x4A\xFA\xDB\x60\x14\x29", 846 + }, { 847 + .plaintext = "abcdbcdecdefdefgefghfghighijhijk", 848 + .psize = 32, 849 + .digest = "\x2A\x98\x7E\xA4\x0F\x91\x70\x61" 850 + "\xF5\xD6\xF0\xA0\xE4\x64\x4F\x48" 851 + "\x8A\x7A\x5A\x52\xDE\xEE\x65\x62" 852 + "\x07\xC5\x62\xF9\x88\xE9\x5C\x69", 853 + }, 854 + }; 855 + 856 + /* 857 + * TIGER test vectors from Tiger website 858 + */ 859 + #define TGR192_TEST_VECTORS 6 860 + 861 + static struct hash_testvec tgr192_tv_template[] = { 862 + { 863 + .plaintext = "", 864 + .psize = 0, 865 + .digest = "\x24\xf0\x13\x0c\x63\xac\x93\x32" 866 + "\x16\x16\x6e\x76\xb1\xbb\x92\x5f" 867 + "\xf3\x73\xde\x2d\x49\x58\x4e\x7a", 868 + }, { 869 + .plaintext = "abc", 870 + .psize = 3, 871 + .digest = "\xf2\x58\xc1\xe8\x84\x14\xab\x2a" 872 + "\x52\x7a\xb5\x41\xff\xc5\xb8\xbf" 873 + "\x93\x5f\x7b\x95\x1c\x13\x29\x51", 874 + }, { 875 + .plaintext = "Tiger", 876 + .psize = 5, 877 + .digest = "\x9f\x00\xf5\x99\x07\x23\x00\xdd" 878 + "\x27\x6a\xbb\x38\xc8\xeb\x6d\xec" 879 + "\x37\x79\x0c\x11\x6f\x9d\x2b\xdf", 880 + }, { 881 + .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-", 882 + .psize = 64, 883 + .digest = "\x87\xfb\x2a\x90\x83\x85\x1c\xf7" 884 + "\x47\x0d\x2c\xf8\x10\xe6\xdf\x9e" 885 + "\xb5\x86\x44\x50\x34\xa5\xa3\x86", 886 + }, { 887 + .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ=abcdefghijklmnopqrstuvwxyz+0123456789", 888 + .psize = 64, 889 + .digest = "\x46\x7d\xb8\x08\x63\xeb\xce\x48" 890 + "\x8d\xf1\xcd\x12\x61\x65\x5d\xe9" 891 + "\x57\x89\x65\x65\x97\x5f\x91\x97", 892 + }, { 893 + .plaintext = "Tiger - A Fast New Hash Function, " 894 + "by Ross Anderson and Eli Biham, " 895 + "proceedings of Fast Software Encryption 3, " 896 + "Cambridge, 1996.", 897 + .psize = 125, 898 + .digest = "\x3d\x9a\xeb\x03\xd1\xbd\x1a\x63" 899 + "\x57\xb2\x77\x4d\xfd\x6d\x5b\x24" 900 + "\xdd\x68\x15\x1d\x50\x39\x74\xfc", 901 + }, 902 + }; 903 + 904 + #define TGR160_TEST_VECTORS 6 905 + 906 + static struct hash_testvec tgr160_tv_template[] = { 907 + { 908 + .plaintext = "", 909 + .psize = 0, 910 + .digest = "\x24\xf0\x13\x0c\x63\xac\x93\x32" 911 + "\x16\x16\x6e\x76\xb1\xbb\x92\x5f" 912 + "\xf3\x73\xde\x2d", 913 + }, { 914 + .plaintext = "abc", 915 + .psize = 3, 916 + .digest = "\xf2\x58\xc1\xe8\x84\x14\xab\x2a" 917 + "\x52\x7a\xb5\x41\xff\xc5\xb8\xbf" 918 + "\x93\x5f\x7b\x95", 919 + }, { 920 + .plaintext = "Tiger", 921 + .psize = 5, 922 + .digest = "\x9f\x00\xf5\x99\x07\x23\x00\xdd" 923 + "\x27\x6a\xbb\x38\xc8\xeb\x6d\xec" 924 + "\x37\x79\x0c\x11", 925 + }, { 926 + .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-", 927 + .psize = 64, 928 + .digest = "\x87\xfb\x2a\x90\x83\x85\x1c\xf7" 929 + "\x47\x0d\x2c\xf8\x10\xe6\xdf\x9e" 930 + "\xb5\x86\x44\x50", 931 + }, { 932 + .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ=abcdefghijklmnopqrstuvwxyz+0123456789", 933 + .psize = 64, 934 + .digest = "\x46\x7d\xb8\x08\x63\xeb\xce\x48" 935 + "\x8d\xf1\xcd\x12\x61\x65\x5d\xe9" 936 + "\x57\x89\x65\x65", 937 + }, { 938 + .plaintext = "Tiger - A Fast New Hash Function, " 939 + "by Ross Anderson and Eli Biham, " 940 + "proceedings of Fast Software Encryption 3, " 941 + "Cambridge, 1996.", 942 + .psize = 125, 943 + .digest = "\x3d\x9a\xeb\x03\xd1\xbd\x1a\x63" 944 + "\x57\xb2\x77\x4d\xfd\x6d\x5b\x24" 945 + "\xdd\x68\x15\x1d", 946 + }, 947 + }; 948 + 949 + #define TGR128_TEST_VECTORS 6 950 + 951 + static struct hash_testvec tgr128_tv_template[] = { 952 + { 953 + .plaintext = "", 954 + .psize = 0, 955 + .digest = "\x24\xf0\x13\x0c\x63\xac\x93\x32" 956 + "\x16\x16\x6e\x76\xb1\xbb\x92\x5f", 957 + }, { 958 + .plaintext = "abc", 959 + .psize = 3, 960 + .digest = "\xf2\x58\xc1\xe8\x84\x14\xab\x2a" 961 + "\x52\x7a\xb5\x41\xff\xc5\xb8\xbf", 962 + }, { 963 + .plaintext = "Tiger", 964 + .psize = 5, 965 + .digest = "\x9f\x00\xf5\x99\x07\x23\x00\xdd" 966 + "\x27\x6a\xbb\x38\xc8\xeb\x6d\xec", 967 + }, { 968 + .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-", 969 + .psize = 64, 970 + .digest = "\x87\xfb\x2a\x90\x83\x85\x1c\xf7" 971 + "\x47\x0d\x2c\xf8\x10\xe6\xdf\x9e", 972 + }, { 973 + .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ=abcdefghijklmnopqrstuvwxyz+0123456789", 974 + .psize = 64, 975 + .digest = "\x46\x7d\xb8\x08\x63\xeb\xce\x48" 976 + "\x8d\xf1\xcd\x12\x61\x65\x5d\xe9", 977 + }, { 978 + .plaintext = "Tiger - A Fast New Hash Function, " 979 + "by Ross Anderson and Eli Biham, " 980 + "proceedings of Fast Software Encryption 3, " 981 + "Cambridge, 1996.", 982 + .psize = 125, 983 + .digest = "\x3d\x9a\xeb\x03\xd1\xbd\x1a\x63" 984 + "\x57\xb2\x77\x4d\xfd\x6d\x5b\x24", 985 + }, 986 + }; 987 + 988 + /* 989 + * HMAC-MD5 test vectors from RFC2202 990 + * (These need to be fixed to not use strlen). 991 + */ 992 + #define HMAC_MD5_TEST_VECTORS 7 993 + 994 + static struct hash_testvec hmac_md5_tv_template[] = 995 + { 996 + { 997 + .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b", 998 + .ksize = 16, 999 + .plaintext = "Hi There", 1000 + .psize = 8, 1001 + .digest = "\x92\x94\x72\x7a\x36\x38\xbb\x1c" 1002 + "\x13\xf4\x8e\xf8\x15\x8b\xfc\x9d", 1003 + }, { 1004 + .key = "Jefe", 1005 + .ksize = 4, 1006 + .plaintext = "what do ya want for nothing?", 1007 + .psize = 28, 1008 + .digest = "\x75\x0c\x78\x3e\x6a\xb0\xb5\x03" 1009 + "\xea\xa8\x6e\x31\x0a\x5d\xb7\x38", 1010 + .np = 2, 1011 + .tap = {14, 14} 1012 + }, { 1013 + .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa", 1014 + .ksize = 16, 1015 + .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 1016 + "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 1017 + "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 1018 + "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd", 1019 + .psize = 50, 1020 + .digest = "\x56\xbe\x34\x52\x1d\x14\x4c\x88" 1021 + "\xdb\xb8\xc7\x33\xf0\xe8\xb3\xf6", 1022 + }, { 1023 + .key = "\x01\x02\x03\x04\x05\x06\x07\x08" 1024 + "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 1025 + "\x11\x12\x13\x14\x15\x16\x17\x18\x19", 1026 + .ksize = 25, 1027 + .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 1028 + "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 1029 + "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 1030 + "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd", 1031 + .psize = 50, 1032 + .digest = "\x69\x7e\xaf\x0a\xca\x3a\x3a\xea" 1033 + "\x3a\x75\x16\x47\x46\xff\xaa\x79", 1034 + }, { 1035 + .key = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c", 1036 + .ksize = 16, 1037 + .plaintext = "Test With Truncation", 1038 + .psize = 20, 1039 + .digest = "\x56\x46\x1e\xf2\x34\x2e\xdc\x00" 1040 + "\xf9\xba\xb9\x95\x69\x0e\xfd\x4c", 1041 + }, { 1042 + .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1043 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1044 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1045 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1046 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1047 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1048 + "\xaa\xaa", 1049 + .ksize = 80, 1050 + .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First", 1051 + .psize = 54, 1052 + .digest = "\x6b\x1a\xb7\xfe\x4b\xd7\xbf\x8f" 1053 + "\x0b\x62\xe6\xce\x61\xb9\xd0\xcd", 1054 + }, { 1055 + .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1056 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1057 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1058 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1059 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1060 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1061 + "\xaa\xaa", 1062 + .ksize = 80, 1063 + .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One " 1064 + "Block-Size Data", 1065 + .psize = 73, 1066 + .digest = "\x6f\x63\x0f\xad\x67\xcd\xa0\xee" 1067 + "\x1f\xb1\xf5\x62\xdb\x3a\xa5\x3e", 1068 + }, 1069 + }; 1070 + 1071 + /* 1072 + * HMAC-RIPEMD128 test vectors from RFC2286 1073 + */ 1074 + #define HMAC_RMD128_TEST_VECTORS 7 1075 + 1076 + static struct hash_testvec hmac_rmd128_tv_template[] = { 1077 + { 1078 + .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b", 1079 + .ksize = 16, 1080 + .plaintext = "Hi There", 1081 + .psize = 8, 1082 + .digest = "\xfb\xf6\x1f\x94\x92\xaa\x4b\xbf" 1083 + "\x81\xc1\x72\xe8\x4e\x07\x34\xdb", 1084 + }, { 1085 + .key = "Jefe", 1086 + .ksize = 4, 1087 + .plaintext = "what do ya want for nothing?", 1088 + .psize = 28, 1089 + .digest = "\x87\x5f\x82\x88\x62\xb6\xb3\x34" 1090 + "\xb4\x27\xc5\x5f\x9f\x7f\xf0\x9b", 1091 + .np = 2, 1092 + .tap = { 14, 14 }, 1093 + }, { 1094 + .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa", 1095 + .ksize = 16, 1096 + .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 1097 + "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 1098 + "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 1099 + "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd", 1100 + .psize = 50, 1101 + .digest = "\x09\xf0\xb2\x84\x6d\x2f\x54\x3d" 1102 + "\xa3\x63\xcb\xec\x8d\x62\xa3\x8d", 1103 + }, { 1104 + .key = "\x01\x02\x03\x04\x05\x06\x07\x08" 1105 + "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 1106 + "\x11\x12\x13\x14\x15\x16\x17\x18\x19", 1107 + .ksize = 25, 1108 + .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 1109 + "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 1110 + "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 1111 + "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd", 1112 + .psize = 50, 1113 + .digest = "\xbd\xbb\xd7\xcf\x03\xe4\x4b\x5a" 1114 + "\xa6\x0a\xf8\x15\xbe\x4d\x22\x94", 1115 + }, { 1116 + .key = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c", 1117 + .ksize = 16, 1118 + .plaintext = "Test With Truncation", 1119 + .psize = 20, 1120 + .digest = "\xe7\x98\x08\xf2\x4b\x25\xfd\x03" 1121 + "\x1c\x15\x5f\x0d\x55\x1d\x9a\x3a", 1122 + }, { 1123 + .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1124 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1125 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1126 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1127 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1128 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1129 + "\xaa\xaa", 1130 + .ksize = 80, 1131 + .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First", 1132 + .psize = 54, 1133 + .digest = "\xdc\x73\x29\x28\xde\x98\x10\x4a" 1134 + "\x1f\x59\xd3\x73\xc1\x50\xac\xbb", 1135 + }, { 1136 + .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1137 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1138 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1139 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1140 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1141 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1142 + "\xaa\xaa", 1143 + .ksize = 80, 1144 + .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One " 1145 + "Block-Size Data", 1146 + .psize = 73, 1147 + .digest = "\x5c\x6b\xec\x96\x79\x3e\x16\xd4" 1148 + "\x06\x90\xc2\x37\x63\x5f\x30\xc5", 1149 + }, 1150 + }; 1151 + 1152 + /* 1153 + * HMAC-RIPEMD160 test vectors from RFC2286 1154 + */ 1155 + #define HMAC_RMD160_TEST_VECTORS 7 1156 + 1157 + static struct hash_testvec hmac_rmd160_tv_template[] = { 1158 + { 1159 + .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b", 1160 + .ksize = 20, 1161 + .plaintext = "Hi There", 1162 + .psize = 8, 1163 + .digest = "\x24\xcb\x4b\xd6\x7d\x20\xfc\x1a\x5d\x2e" 1164 + "\xd7\x73\x2d\xcc\x39\x37\x7f\x0a\x56\x68", 1165 + }, { 1166 + .key = "Jefe", 1167 + .ksize = 4, 1168 + .plaintext = "what do ya want for nothing?", 1169 + .psize = 28, 1170 + .digest = "\xdd\xa6\xc0\x21\x3a\x48\x5a\x9e\x24\xf4" 1171 + "\x74\x20\x64\xa7\xf0\x33\xb4\x3c\x40\x69", 1172 + .np = 2, 1173 + .tap = { 14, 14 }, 1174 + }, { 1175 + .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa", 1176 + .ksize = 20, 1177 + .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 1178 + "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 1179 + "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 1180 + "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd", 1181 + .psize = 50, 1182 + .digest = "\xb0\xb1\x05\x36\x0d\xe7\x59\x96\x0a\xb4" 1183 + "\xf3\x52\x98\xe1\x16\xe2\x95\xd8\xe7\xc1", 1184 + }, { 1185 + .key = "\x01\x02\x03\x04\x05\x06\x07\x08" 1186 + "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 1187 + "\x11\x12\x13\x14\x15\x16\x17\x18\x19", 1188 + .ksize = 25, 1189 + .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 1190 + "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 1191 + "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 1192 + "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd", 1193 + .psize = 50, 1194 + .digest = "\xd5\xca\x86\x2f\x4d\x21\xd5\xe6\x10\xe1" 1195 + "\x8b\x4c\xf1\xbe\xb9\x7a\x43\x65\xec\xf4", 1196 + }, { 1197 + .key = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c", 1198 + .ksize = 20, 1199 + .plaintext = "Test With Truncation", 1200 + .psize = 20, 1201 + .digest = "\x76\x19\x69\x39\x78\xf9\x1d\x90\x53\x9a" 1202 + "\xe7\x86\x50\x0f\xf3\xd8\xe0\x51\x8e\x39", 1203 + }, { 1204 + .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1205 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1206 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1207 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1208 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1209 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1210 + "\xaa\xaa", 1211 + .ksize = 80, 1212 + .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First", 1213 + .psize = 54, 1214 + .digest = "\x64\x66\xca\x07\xac\x5e\xac\x29\xe1\xbd" 1215 + "\x52\x3e\x5a\xda\x76\x05\xb7\x91\xfd\x8b", 1216 + }, { 1217 + .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1218 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1219 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1220 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1221 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1222 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1223 + "\xaa\xaa", 1224 + .ksize = 80, 1225 + .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One " 1226 + "Block-Size Data", 1227 + .psize = 73, 1228 + .digest = "\x69\xea\x60\x79\x8d\x71\x61\x6c\xce\x5f" 1229 + "\xd0\x87\x1e\x23\x75\x4c\xd7\x5d\x5a\x0a", 1230 + }, 1231 + }; 1232 + 1233 + /* 1234 + * HMAC-SHA1 test vectors from RFC2202 1235 + */ 1236 + #define HMAC_SHA1_TEST_VECTORS 7 1237 + 1238 + static struct hash_testvec hmac_sha1_tv_template[] = { 1239 + { 1240 + .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b", 1241 + .ksize = 20, 1242 + .plaintext = "Hi There", 1243 + .psize = 8, 1244 + .digest = "\xb6\x17\x31\x86\x55\x05\x72\x64" 1245 + "\xe2\x8b\xc0\xb6\xfb\x37\x8c\x8e\xf1" 1246 + "\x46\xbe", 1247 + }, { 1248 + .key = "Jefe", 1249 + .ksize = 4, 1250 + .plaintext = "what do ya want for nothing?", 1251 + .psize = 28, 1252 + .digest = "\xef\xfc\xdf\x6a\xe5\xeb\x2f\xa2\xd2\x74" 1253 + "\x16\xd5\xf1\x84\xdf\x9c\x25\x9a\x7c\x79", 1254 + .np = 2, 1255 + .tap = { 14, 14 } 1256 + }, { 1257 + .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa", 1258 + .ksize = 20, 1259 + .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 1260 + "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 1261 + "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 1262 + "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd", 1263 + .psize = 50, 1264 + .digest = "\x12\x5d\x73\x42\xb9\xac\x11\xcd\x91\xa3" 1265 + "\x9a\xf4\x8a\xa1\x7b\x4f\x63\xf1\x75\xd3", 1266 + }, { 1267 + .key = "\x01\x02\x03\x04\x05\x06\x07\x08" 1268 + "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 1269 + "\x11\x12\x13\x14\x15\x16\x17\x18\x19", 1270 + .ksize = 25, 1271 + .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 1272 + "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 1273 + "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 1274 + "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd", 1275 + .psize = 50, 1276 + .digest = "\x4c\x90\x07\xf4\x02\x62\x50\xc6\xbc\x84" 1277 + "\x14\xf9\xbf\x50\xc8\x6c\x2d\x72\x35\xda", 1278 + }, { 1279 + .key = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c", 1280 + .ksize = 20, 1281 + .plaintext = "Test With Truncation", 1282 + .psize = 20, 1283 + .digest = "\x4c\x1a\x03\x42\x4b\x55\xe0\x7f\xe7\xf2" 1284 + "\x7b\xe1\xd5\x8b\xb9\x32\x4a\x9a\x5a\x04", 1285 + }, { 1286 + .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1287 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1288 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1289 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1290 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1291 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1292 + "\xaa\xaa", 1293 + .ksize = 80, 1294 + .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First", 1295 + .psize = 54, 1296 + .digest = "\xaa\x4a\xe5\xe1\x52\x72\xd0\x0e\x95\x70" 1297 + "\x56\x37\xce\x8a\x3b\x55\xed\x40\x21\x12", 1298 + }, { 1299 + .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1300 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1301 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1302 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1303 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1304 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1305 + "\xaa\xaa", 1306 + .ksize = 80, 1307 + .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One " 1308 + "Block-Size Data", 1309 + .psize = 73, 1310 + .digest = "\xe8\xe9\x9d\x0f\x45\x23\x7d\x78\x6d\x6b" 1311 + "\xba\xa7\x96\x5c\x78\x08\xbb\xff\x1a\x91", 1312 + }, 1313 + }; 1314 + 1315 + 1316 + /* 1317 + * SHA224 HMAC test vectors from RFC4231 1318 + */ 1319 + #define HMAC_SHA224_TEST_VECTORS 4 1320 + 1321 + static struct hash_testvec hmac_sha224_tv_template[] = { 1322 + { 1323 + .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 1324 + "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 1325 + "\x0b\x0b\x0b\x0b", 1326 + .ksize = 20, 1327 + /* ("Hi There") */ 1328 + .plaintext = "\x48\x69\x20\x54\x68\x65\x72\x65", 1329 + .psize = 8, 1330 + .digest = "\x89\x6f\xb1\x12\x8a\xbb\xdf\x19" 1331 + "\x68\x32\x10\x7c\xd4\x9d\xf3\x3f" 1332 + "\x47\xb4\xb1\x16\x99\x12\xba\x4f" 1333 + "\x53\x68\x4b\x22", 1334 + }, { 1335 + .key = "Jefe", 1336 + .ksize = 4, 1337 + /* ("what do ya want for nothing?") */ 1338 + .plaintext = "\x77\x68\x61\x74\x20\x64\x6f\x20" 1339 + "\x79\x61\x20\x77\x61\x6e\x74\x20" 1340 + "\x66\x6f\x72\x20\x6e\x6f\x74\x68" 1341 + "\x69\x6e\x67\x3f", 1342 + .psize = 28, 1343 + .digest = "\xa3\x0e\x01\x09\x8b\xc6\xdb\xbf" 1344 + "\x45\x69\x0f\x3a\x7e\x9e\x6d\x0f" 1345 + "\x8b\xbe\xa2\xa3\x9e\x61\x48\x00" 1346 + "\x8f\xd0\x5e\x44", 1347 + .np = 4, 1348 + .tap = { 7, 7, 7, 7 } 1349 + }, { 1350 + .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1351 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1352 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1353 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1354 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1355 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1356 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1357 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1358 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1359 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1360 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1361 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1362 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1363 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1364 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1365 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1366 + "\xaa\xaa\xaa", 1367 + .ksize = 131, 1368 + /* ("Test Using Larger Than Block-Size Key - Hash Key First") */ 1369 + .plaintext = "\x54\x65\x73\x74\x20\x55\x73\x69" 1370 + "\x6e\x67\x20\x4c\x61\x72\x67\x65" 1371 + "\x72\x20\x54\x68\x61\x6e\x20\x42" 1372 + "\x6c\x6f\x63\x6b\x2d\x53\x69\x7a" 1373 + "\x65\x20\x4b\x65\x79\x20\x2d\x20" 1374 + "\x48\x61\x73\x68\x20\x4b\x65\x79" 1375 + "\x20\x46\x69\x72\x73\x74", 1376 + .psize = 54, 1377 + .digest = "\x95\xe9\xa0\xdb\x96\x20\x95\xad" 1378 + "\xae\xbe\x9b\x2d\x6f\x0d\xbc\xe2" 1379 + "\xd4\x99\xf1\x12\xf2\xd2\xb7\x27" 1380 + "\x3f\xa6\x87\x0e", 1381 + }, { 1382 + .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1383 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1384 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1385 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1386 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1387 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1388 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1389 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1390 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1391 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1392 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1393 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1394 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1395 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1396 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1397 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1398 + "\xaa\xaa\xaa", 1399 + .ksize = 131, 1400 + /* ("This is a test using a larger than block-size key and a") 1401 + (" larger than block-size data. The key needs to be") 1402 + (" hashed before being used by the HMAC algorithm.") */ 1403 + .plaintext = "\x54\x68\x69\x73\x20\x69\x73\x20" 1404 + "\x61\x20\x74\x65\x73\x74\x20\x75" 1405 + "\x73\x69\x6e\x67\x20\x61\x20\x6c" 1406 + "\x61\x72\x67\x65\x72\x20\x74\x68" 1407 + "\x61\x6e\x20\x62\x6c\x6f\x63\x6b" 1408 + "\x2d\x73\x69\x7a\x65\x20\x6b\x65" 1409 + "\x79\x20\x61\x6e\x64\x20\x61\x20" 1410 + "\x6c\x61\x72\x67\x65\x72\x20\x74" 1411 + "\x68\x61\x6e\x20\x62\x6c\x6f\x63" 1412 + "\x6b\x2d\x73\x69\x7a\x65\x20\x64" 1413 + "\x61\x74\x61\x2e\x20\x54\x68\x65" 1414 + "\x20\x6b\x65\x79\x20\x6e\x65\x65" 1415 + "\x64\x73\x20\x74\x6f\x20\x62\x65" 1416 + "\x20\x68\x61\x73\x68\x65\x64\x20" 1417 + "\x62\x65\x66\x6f\x72\x65\x20\x62" 1418 + "\x65\x69\x6e\x67\x20\x75\x73\x65" 1419 + "\x64\x20\x62\x79\x20\x74\x68\x65" 1420 + "\x20\x48\x4d\x41\x43\x20\x61\x6c" 1421 + "\x67\x6f\x72\x69\x74\x68\x6d\x2e", 1422 + .psize = 152, 1423 + .digest = "\x3a\x85\x41\x66\xac\x5d\x9f\x02" 1424 + "\x3f\x54\xd5\x17\xd0\xb3\x9d\xbd" 1425 + "\x94\x67\x70\xdb\x9c\x2b\x95\xc9" 1426 + "\xf6\xf5\x65\xd1", 1427 + }, 1428 + }; 1429 + 1430 + /* 1431 + * HMAC-SHA256 test vectors from 1432 + * draft-ietf-ipsec-ciph-sha-256-01.txt 1433 + */ 1434 + #define HMAC_SHA256_TEST_VECTORS 10 1435 + 1436 + static struct hash_testvec hmac_sha256_tv_template[] = { 1437 + { 1438 + .key = "\x01\x02\x03\x04\x05\x06\x07\x08" 1439 + "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 1440 + "\x11\x12\x13\x14\x15\x16\x17\x18" 1441 + "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20", 1442 + .ksize = 32, 1443 + .plaintext = "abc", 1444 + .psize = 3, 1445 + .digest = "\xa2\x1b\x1f\x5d\x4c\xf4\xf7\x3a" 1446 + "\x4d\xd9\x39\x75\x0f\x7a\x06\x6a" 1447 + "\x7f\x98\xcc\x13\x1c\xb1\x6a\x66" 1448 + "\x92\x75\x90\x21\xcf\xab\x81\x81", 1449 + }, { 1450 + .key = "\x01\x02\x03\x04\x05\x06\x07\x08" 1451 + "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 1452 + "\x11\x12\x13\x14\x15\x16\x17\x18" 1453 + "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20", 1454 + .ksize = 32, 1455 + .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 1456 + .psize = 56, 1457 + .digest = "\x10\x4f\xdc\x12\x57\x32\x8f\x08" 1458 + "\x18\x4b\xa7\x31\x31\xc5\x3c\xae" 1459 + "\xe6\x98\xe3\x61\x19\x42\x11\x49" 1460 + "\xea\x8c\x71\x24\x56\x69\x7d\x30", 1461 + }, { 1462 + .key = "\x01\x02\x03\x04\x05\x06\x07\x08" 1463 + "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 1464 + "\x11\x12\x13\x14\x15\x16\x17\x18" 1465 + "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20", 1466 + .ksize = 32, 1467 + .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq" 1468 + "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 1469 + .psize = 112, 1470 + .digest = "\x47\x03\x05\xfc\x7e\x40\xfe\x34" 1471 + "\xd3\xee\xb3\xe7\x73\xd9\x5a\xab" 1472 + "\x73\xac\xf0\xfd\x06\x04\x47\xa5" 1473 + "\xeb\x45\x95\xbf\x33\xa9\xd1\xa3", 1474 + }, { 1475 + .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 1476 + "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 1477 + "\x0b\x0b\x0b\x0b\x0b\x0b", 1478 + .ksize = 32, 1479 + .plaintext = "Hi There", 1480 + .psize = 8, 1481 + .digest = "\x19\x8a\x60\x7e\xb4\x4b\xfb\xc6" 1482 + "\x99\x03\xa0\xf1\xcf\x2b\xbd\xc5" 1483 + "\xba\x0a\xa3\xf3\xd9\xae\x3c\x1c" 1484 + "\x7a\x3b\x16\x96\xa0\xb6\x8c\xf7", 1485 + }, { 1486 + .key = "Jefe", 1487 + .ksize = 4, 1488 + .plaintext = "what do ya want for nothing?", 1489 + .psize = 28, 1490 + .digest = "\x5b\xdc\xc1\x46\xbf\x60\x75\x4e" 1491 + "\x6a\x04\x24\x26\x08\x95\x75\xc7" 1492 + "\x5a\x00\x3f\x08\x9d\x27\x39\x83" 1493 + "\x9d\xec\x58\xb9\x64\xec\x38\x43", 1494 + .np = 2, 1495 + .tap = { 14, 14 } 1496 + }, { 1497 + .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1498 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1499 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa", 1500 + .ksize = 32, 1501 + .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 1502 + "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 1503 + "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd" 1504 + "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd", 1505 + .psize = 50, 1506 + .digest = "\xcd\xcb\x12\x20\xd1\xec\xcc\xea" 1507 + "\x91\xe5\x3a\xba\x30\x92\xf9\x62" 1508 + "\xe5\x49\xfe\x6c\xe9\xed\x7f\xdc" 1509 + "\x43\x19\x1f\xbd\xe4\x5c\x30\xb0", 1510 + }, { 1511 + .key = "\x01\x02\x03\x04\x05\x06\x07\x08" 1512 + "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 1513 + "\x11\x12\x13\x14\x15\x16\x17\x18" 1514 + "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20" 1515 + "\x21\x22\x23\x24\x25", 1516 + .ksize = 37, 1517 + .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 1518 + "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 1519 + "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd" 1520 + "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd", 1521 + .psize = 50, 1522 + .digest = "\xd4\x63\x3c\x17\xf6\xfb\x8d\x74" 1523 + "\x4c\x66\xde\xe0\xf8\xf0\x74\x55" 1524 + "\x6e\xc4\xaf\x55\xef\x07\x99\x85" 1525 + "\x41\x46\x8e\xb4\x9b\xd2\xe9\x17", 1526 + }, { 1527 + .key = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c" 1528 + "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c" 1529 + "\x0c\x0c\x0c\x0c\x0c\x0c", 1530 + .ksize = 32, 1531 + .plaintext = "Test With Truncation", 1532 + .psize = 20, 1533 + .digest = "\x75\x46\xaf\x01\x84\x1f\xc0\x9b" 1534 + "\x1a\xb9\xc3\x74\x9a\x5f\x1c\x17" 1535 + "\xd4\xf5\x89\x66\x8a\x58\x7b\x27" 1536 + "\x00\xa9\xc9\x7c\x11\x93\xcf\x42", 1537 + }, { 1538 + .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1539 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1540 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1541 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1542 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1543 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1544 + "\xaa\xaa", 1545 + .ksize = 80, 1546 + .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First", 1547 + .psize = 54, 1548 + .digest = "\x69\x53\x02\x5e\xd9\x6f\x0c\x09" 1549 + "\xf8\x0a\x96\xf7\x8e\x65\x38\xdb" 1550 + "\xe2\xe7\xb8\x20\xe3\xdd\x97\x0e" 1551 + "\x7d\xdd\x39\x09\x1b\x32\x35\x2f", 1552 + }, { 1553 + .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1554 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1555 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1556 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1557 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1558 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1559 + "\xaa\xaa", 1560 + .ksize = 80, 1561 + .plaintext = "Test Using Larger Than Block-Size Key and Larger Than " 1562 + "One Block-Size Data", 1563 + .psize = 73, 1564 + .digest = "\x63\x55\xac\x22\xe8\x90\xd0\xa3" 1565 + "\xc8\x48\x1a\x5c\xa4\x82\x5b\xc8" 1566 + "\x84\xd3\xe7\xa1\xff\x98\xa2\xfc" 1567 + "\x2a\xc7\xd8\xe0\x64\xc3\xb2\xe6", 1568 + }, 1569 + }; 1570 + 1571 + #define XCBC_AES_TEST_VECTORS 6 1572 + 1573 + static struct hash_testvec aes_xcbc128_tv_template[] = { 1574 + { 1575 + .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 1576 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 1577 + .plaintext = zeroed_string, 1578 + .digest = "\x75\xf0\x25\x1d\x52\x8a\xc0\x1c" 1579 + "\x45\x73\xdf\xd5\x84\xd7\x9f\x29", 1580 + .psize = 0, 1581 + .ksize = 16, 1582 + }, { 1583 + .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 1584 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 1585 + .plaintext = "\x00\x01\x02", 1586 + .digest = "\x5b\x37\x65\x80\xae\x2f\x19\xaf" 1587 + "\xe7\x21\x9c\xee\xf1\x72\x75\x6f", 1588 + .psize = 3, 1589 + .ksize = 16, 1590 + } , { 1591 + .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 1592 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 1593 + .plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07" 1594 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 1595 + .digest = "\xd2\xa2\x46\xfa\x34\x9b\x68\xa7" 1596 + "\x99\x98\xa4\x39\x4f\xf7\xa2\x63", 1597 + .psize = 16, 1598 + .ksize = 16, 1599 + }, { 1600 + .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 1601 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 1602 + .plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07" 1603 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 1604 + "\x10\x11\x12\x13", 1605 + .digest = "\x47\xf5\x1b\x45\x64\x96\x62\x15" 1606 + "\xb8\x98\x5c\x63\x05\x5e\xd3\x08", 1607 + .tap = { 10, 10 }, 1608 + .psize = 20, 1609 + .np = 2, 1610 + .ksize = 16, 1611 + }, { 1612 + .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 1613 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 1614 + .plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07" 1615 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 1616 + "\x10\x11\x12\x13\x14\x15\x16\x17" 1617 + "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 1618 + .digest = "\xf5\x4f\x0e\xc8\xd2\xb9\xf3\xd3" 1619 + "\x68\x07\x73\x4b\xd5\x28\x3f\xd4", 1620 + .psize = 32, 1621 + .ksize = 16, 1622 + }, { 1623 + .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 1624 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 1625 + .plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07" 1626 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 1627 + "\x10\x11\x12\x13\x14\x15\x16\x17" 1628 + "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 1629 + "\x20\x21", 1630 + .digest = "\xbe\xcb\xb3\xbc\xcd\xb5\x18\xa3" 1631 + "\x06\x77\xd5\x48\x1f\xb6\xb4\xd8", 1632 + .tap = { 17, 17 }, 1633 + .psize = 34, 1634 + .np = 2, 1635 + .ksize = 16, 1636 + } 1637 + }; 1638 + 1639 + /* 1640 + * SHA384 HMAC test vectors from RFC4231 1641 + */ 1642 + 1643 + #define HMAC_SHA384_TEST_VECTORS 4 1644 + 1645 + static struct hash_testvec hmac_sha384_tv_template[] = { 1646 + { 1647 + .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 1648 + "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 1649 + "\x0b\x0b\x0b\x0b", 1650 + .ksize = 20, 1651 + .plaintext = "Hi There", 1652 + .psize = 8, 1653 + .digest = "\xaf\xd0\x39\x44\xd8\x48\x95\x62" 1654 + "\x6b\x08\x25\xf4\xab\x46\x90\x7f" 1655 + "\x15\xf9\xda\xdb\xe4\x10\x1e\xc6" 1656 + "\x82\xaa\x03\x4c\x7c\xeb\xc5\x9c" 1657 + "\xfa\xea\x9e\xa9\x07\x6e\xde\x7f" 1658 + "\x4a\xf1\x52\xe8\xb2\xfa\x9c\xb6", 1659 + }, { 1660 + .key = "Jefe", 1661 + .ksize = 4, 1662 + .plaintext = "what do ya want for nothing?", 1663 + .psize = 28, 1664 + .digest = "\xaf\x45\xd2\xe3\x76\x48\x40\x31" 1665 + "\x61\x7f\x78\xd2\xb5\x8a\x6b\x1b" 1666 + "\x9c\x7e\xf4\x64\xf5\xa0\x1b\x47" 1667 + "\xe4\x2e\xc3\x73\x63\x22\x44\x5e" 1668 + "\x8e\x22\x40\xca\x5e\x69\xe2\xc7" 1669 + "\x8b\x32\x39\xec\xfa\xb2\x16\x49", 1670 + .np = 4, 1671 + .tap = { 7, 7, 7, 7 } 1672 + }, { 1673 + .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1674 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1675 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1676 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1677 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1678 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1679 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1680 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1681 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1682 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1683 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1684 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1685 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1686 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1687 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1688 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1689 + "\xaa\xaa\xaa", 1690 + .ksize = 131, 1691 + .plaintext = "Test Using Larger Than Block-Siz" 1692 + "e Key - Hash Key First", 1693 + .psize = 54, 1694 + .digest = "\x4e\xce\x08\x44\x85\x81\x3e\x90" 1695 + "\x88\xd2\xc6\x3a\x04\x1b\xc5\xb4" 1696 + "\x4f\x9e\xf1\x01\x2a\x2b\x58\x8f" 1697 + "\x3c\xd1\x1f\x05\x03\x3a\xc4\xc6" 1698 + "\x0c\x2e\xf6\xab\x40\x30\xfe\x82" 1699 + "\x96\x24\x8d\xf1\x63\xf4\x49\x52", 1700 + }, { 1701 + .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1702 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1703 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1704 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1705 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1706 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1707 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1708 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1709 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1710 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1711 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1712 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1713 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1714 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1715 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1716 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1717 + "\xaa\xaa\xaa", 1718 + .ksize = 131, 1719 + .plaintext = "This is a test u" 1720 + "sing a larger th" 1721 + "an block-size ke" 1722 + "y and a larger t" 1723 + "han block-size d" 1724 + "ata. The key nee" 1725 + "ds to be hashed " 1726 + "before being use" 1727 + "d by the HMAC al" 1728 + "gorithm.", 1729 + .psize = 152, 1730 + .digest = "\x66\x17\x17\x8e\x94\x1f\x02\x0d" 1731 + "\x35\x1e\x2f\x25\x4e\x8f\xd3\x2c" 1732 + "\x60\x24\x20\xfe\xb0\xb8\xfb\x9a" 1733 + "\xdc\xce\xbb\x82\x46\x1e\x99\xc5" 1734 + "\xa6\x78\xcc\x31\xe7\x99\x17\x6d" 1735 + "\x38\x60\xe6\x11\x0c\x46\x52\x3e", 1736 + }, 1737 + }; 1738 + 1739 + /* 1740 + * SHA512 HMAC test vectors from RFC4231 1741 + */ 1742 + 1743 + #define HMAC_SHA512_TEST_VECTORS 4 1744 + 1745 + static struct hash_testvec hmac_sha512_tv_template[] = { 1746 + { 1747 + .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 1748 + "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b" 1749 + "\x0b\x0b\x0b\x0b", 1750 + .ksize = 20, 1751 + .plaintext = "Hi There", 1752 + .psize = 8, 1753 + .digest = "\x87\xaa\x7c\xde\xa5\xef\x61\x9d" 1754 + "\x4f\xf0\xb4\x24\x1a\x1d\x6c\xb0" 1755 + "\x23\x79\xf4\xe2\xce\x4e\xc2\x78" 1756 + "\x7a\xd0\xb3\x05\x45\xe1\x7c\xde" 1757 + "\xda\xa8\x33\xb7\xd6\xb8\xa7\x02" 1758 + "\x03\x8b\x27\x4e\xae\xa3\xf4\xe4" 1759 + "\xbe\x9d\x91\x4e\xeb\x61\xf1\x70" 1760 + "\x2e\x69\x6c\x20\x3a\x12\x68\x54", 1761 + }, { 1762 + .key = "Jefe", 1763 + .ksize = 4, 1764 + .plaintext = "what do ya want for nothing?", 1765 + .psize = 28, 1766 + .digest = "\x16\x4b\x7a\x7b\xfc\xf8\x19\xe2" 1767 + "\xe3\x95\xfb\xe7\x3b\x56\xe0\xa3" 1768 + "\x87\xbd\x64\x22\x2e\x83\x1f\xd6" 1769 + "\x10\x27\x0c\xd7\xea\x25\x05\x54" 1770 + "\x97\x58\xbf\x75\xc0\x5a\x99\x4a" 1771 + "\x6d\x03\x4f\x65\xf8\xf0\xe6\xfd" 1772 + "\xca\xea\xb1\xa3\x4d\x4a\x6b\x4b" 1773 + "\x63\x6e\x07\x0a\x38\xbc\xe7\x37", 1774 + .np = 4, 1775 + .tap = { 7, 7, 7, 7 } 1776 + }, { 1777 + .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1778 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1779 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1780 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1781 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1782 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1783 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1784 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1785 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1786 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1787 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1788 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1789 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1790 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1791 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1792 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1793 + "\xaa\xaa\xaa", 1794 + .ksize = 131, 1795 + .plaintext = "Test Using Large" 1796 + "r Than Block-Siz" 1797 + "e Key - Hash Key" 1798 + " First", 1799 + .psize = 54, 1800 + .digest = "\x80\xb2\x42\x63\xc7\xc1\xa3\xeb" 1801 + "\xb7\x14\x93\xc1\xdd\x7b\xe8\xb4" 1802 + "\x9b\x46\xd1\xf4\x1b\x4a\xee\xc1" 1803 + "\x12\x1b\x01\x37\x83\xf8\xf3\x52" 1804 + "\x6b\x56\xd0\x37\xe0\x5f\x25\x98" 1805 + "\xbd\x0f\xd2\x21\x5d\x6a\x1e\x52" 1806 + "\x95\xe6\x4f\x73\xf6\x3f\x0a\xec" 1807 + "\x8b\x91\x5a\x98\x5d\x78\x65\x98", 1808 + }, { 1809 + .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1810 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1811 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1812 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1813 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1814 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1815 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1816 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1817 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1818 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1819 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1820 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1821 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1822 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1823 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1824 + "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" 1825 + "\xaa\xaa\xaa", 1826 + .ksize = 131, 1827 + .plaintext = 1828 + "This is a test u" 1829 + "sing a larger th" 1830 + "an block-size ke" 1831 + "y and a larger t" 1832 + "han block-size d" 1833 + "ata. The key nee" 1834 + "ds to be hashed " 1835 + "before being use" 1836 + "d by the HMAC al" 1837 + "gorithm.", 1838 + .psize = 152, 1839 + .digest = "\xe3\x7b\x6a\x77\x5d\xc8\x7d\xba" 1840 + "\xa4\xdf\xa9\xf9\x6e\x5e\x3f\xfd" 1841 + "\xde\xbd\x71\xf8\x86\x72\x89\x86" 1842 + "\x5d\xf5\xa3\x2d\x20\xcd\xc9\x44" 1843 + "\xb6\x02\x2c\xac\x3c\x49\x82\xb1" 1844 + "\x0d\x5e\xeb\x55\xc3\xe4\xde\x15" 1845 + "\x13\x46\x76\xfb\x6d\xe0\x44\x60" 1846 + "\x65\xc9\x74\x40\xfa\x8c\x6a\x58", 1847 + }, 1848 + }; 1849 + 1850 + /* 1851 + * DES test vectors. 1852 + */ 1853 + #define DES_ENC_TEST_VECTORS 10 1854 + #define DES_DEC_TEST_VECTORS 4 1855 + #define DES_CBC_ENC_TEST_VECTORS 5 1856 + #define DES_CBC_DEC_TEST_VECTORS 4 1857 + #define DES3_EDE_ENC_TEST_VECTORS 3 1858 + #define DES3_EDE_DEC_TEST_VECTORS 3 1859 + #define DES3_EDE_CBC_ENC_TEST_VECTORS 1 1860 + #define DES3_EDE_CBC_DEC_TEST_VECTORS 1 1861 + 1862 + static struct cipher_testvec des_enc_tv_template[] = { 1863 + { /* From Applied Cryptography */ 1864 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 1865 + .klen = 8, 1866 + .input = "\x01\x23\x45\x67\x89\xab\xcd\xe7", 1867 + .ilen = 8, 1868 + .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d", 1869 + .rlen = 8, 1870 + }, { /* Same key, different plaintext block */ 1871 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 1872 + .klen = 8, 1873 + .input = "\x22\x33\x44\x55\x66\x77\x88\x99", 1874 + .ilen = 8, 1875 + .result = "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b", 1876 + .rlen = 8, 1877 + }, { /* Sbox test from NBS */ 1878 + .key = "\x7c\xa1\x10\x45\x4a\x1a\x6e\x57", 1879 + .klen = 8, 1880 + .input = "\x01\xa1\xd6\xd0\x39\x77\x67\x42", 1881 + .ilen = 8, 1882 + .result = "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b", 1883 + .rlen = 8, 1884 + }, { /* Three blocks */ 1885 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 1886 + .klen = 8, 1887 + .input = "\x01\x23\x45\x67\x89\xab\xcd\xe7" 1888 + "\x22\x33\x44\x55\x66\x77\x88\x99" 1889 + "\xca\xfe\xba\xbe\xfe\xed\xbe\xef", 1890 + .ilen = 24, 1891 + .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d" 1892 + "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b" 1893 + "\xb4\x99\x26\xf7\x1f\xe1\xd4\x90", 1894 + .rlen = 24, 1895 + }, { /* Weak key */ 1896 + .fail = 1, 1897 + .wk = 1, 1898 + .key = "\x01\x01\x01\x01\x01\x01\x01\x01", 1899 + .klen = 8, 1900 + .input = "\x01\x23\x45\x67\x89\xab\xcd\xe7", 1901 + .ilen = 8, 1902 + .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d", 1903 + .rlen = 8, 1904 + }, { /* Two blocks -- for testing encryption across pages */ 1905 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 1906 + .klen = 8, 1907 + .input = "\x01\x23\x45\x67\x89\xab\xcd\xe7" 1908 + "\x22\x33\x44\x55\x66\x77\x88\x99", 1909 + .ilen = 16, 1910 + .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d" 1911 + "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b", 1912 + .rlen = 16, 1913 + .np = 2, 1914 + .tap = { 8, 8 } 1915 + }, { /* Four blocks -- for testing encryption with chunking */ 1916 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 1917 + .klen = 8, 1918 + .input = "\x01\x23\x45\x67\x89\xab\xcd\xe7" 1919 + "\x22\x33\x44\x55\x66\x77\x88\x99" 1920 + "\xca\xfe\xba\xbe\xfe\xed\xbe\xef" 1921 + "\x22\x33\x44\x55\x66\x77\x88\x99", 1922 + .ilen = 32, 1923 + .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d" 1924 + "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b" 1925 + "\xb4\x99\x26\xf7\x1f\xe1\xd4\x90" 1926 + "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b", 1927 + .rlen = 32, 1928 + .np = 3, 1929 + .tap = { 14, 10, 8 } 1930 + }, { 1931 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 1932 + .klen = 8, 1933 + .input = "\x01\x23\x45\x67\x89\xab\xcd\xe7" 1934 + "\x22\x33\x44\x55\x66\x77\x88\x99" 1935 + "\xca\xfe\xba\xbe\xfe\xed\xbe\xef", 1936 + .ilen = 24, 1937 + .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d" 1938 + "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b" 1939 + "\xb4\x99\x26\xf7\x1f\xe1\xd4\x90", 1940 + .rlen = 24, 1941 + .np = 4, 1942 + .tap = { 2, 1, 3, 18 } 1943 + }, { 1944 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 1945 + .klen = 8, 1946 + .input = "\x01\x23\x45\x67\x89\xab\xcd\xe7" 1947 + "\x22\x33\x44\x55\x66\x77\x88\x99", 1948 + .ilen = 16, 1949 + .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d" 1950 + "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b", 1951 + .rlen = 16, 1952 + .np = 5, 1953 + .tap = { 2, 2, 2, 2, 8 } 1954 + }, { 1955 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 1956 + .klen = 8, 1957 + .input = "\x01\x23\x45\x67\x89\xab\xcd\xe7", 1958 + .ilen = 8, 1959 + .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d", 1960 + .rlen = 8, 1961 + .np = 8, 1962 + .tap = { 1, 1, 1, 1, 1, 1, 1, 1 } 1963 + }, 1964 + }; 1965 + 1966 + static struct cipher_testvec des_dec_tv_template[] = { 1967 + { /* From Applied Cryptography */ 1968 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 1969 + .klen = 8, 1970 + .input = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d", 1971 + .ilen = 8, 1972 + .result = "\x01\x23\x45\x67\x89\xab\xcd\xe7", 1973 + .rlen = 8, 1974 + }, { /* Sbox test from NBS */ 1975 + .key = "\x7c\xa1\x10\x45\x4a\x1a\x6e\x57", 1976 + .klen = 8, 1977 + .input = "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b", 1978 + .ilen = 8, 1979 + .result = "\x01\xa1\xd6\xd0\x39\x77\x67\x42", 1980 + .rlen = 8, 1981 + }, { /* Two blocks, for chunking test */ 1982 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 1983 + .klen = 8, 1984 + .input = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d" 1985 + "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b", 1986 + .ilen = 16, 1987 + .result = "\x01\x23\x45\x67\x89\xab\xcd\xe7" 1988 + "\xa3\x99\x7b\xca\xaf\x69\xa0\xf5", 1989 + .rlen = 16, 1990 + .np = 2, 1991 + .tap = { 8, 8 } 1992 + }, { 1993 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 1994 + .klen = 8, 1995 + .input = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d" 1996 + "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b", 1997 + .ilen = 16, 1998 + .result = "\x01\x23\x45\x67\x89\xab\xcd\xe7" 1999 + "\xa3\x99\x7b\xca\xaf\x69\xa0\xf5", 2000 + .rlen = 16, 2001 + .np = 3, 2002 + .tap = { 3, 12, 1 } 2003 + }, 2004 + }; 2005 + 2006 + static struct cipher_testvec des_cbc_enc_tv_template[] = { 2007 + { /* From OpenSSL */ 2008 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 2009 + .klen = 8, 2010 + .iv = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 2011 + .input = "\x37\x36\x35\x34\x33\x32\x31\x20" 2012 + "\x4e\x6f\x77\x20\x69\x73\x20\x74" 2013 + "\x68\x65\x20\x74\x69\x6d\x65\x20", 2014 + .ilen = 24, 2015 + .result = "\xcc\xd1\x73\xff\xab\x20\x39\xf4" 2016 + "\xac\xd8\xae\xfd\xdf\xd8\xa1\xeb" 2017 + "\x46\x8e\x91\x15\x78\x88\xba\x68", 2018 + .rlen = 24, 2019 + }, { /* FIPS Pub 81 */ 2020 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 2021 + .klen = 8, 2022 + .iv = "\x12\x34\x56\x78\x90\xab\xcd\xef", 2023 + .input = "\x4e\x6f\x77\x20\x69\x73\x20\x74", 2024 + .ilen = 8, 2025 + .result = "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c", 2026 + .rlen = 8, 2027 + }, { 2028 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 2029 + .klen = 8, 2030 + .iv = "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c", 2031 + .input = "\x68\x65\x20\x74\x69\x6d\x65\x20", 2032 + .ilen = 8, 2033 + .result = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f", 2034 + .rlen = 8, 2035 + }, { 2036 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 2037 + .klen = 8, 2038 + .iv = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f", 2039 + .input = "\x66\x6f\x72\x20\x61\x6c\x6c\x20", 2040 + .ilen = 8, 2041 + .result = "\x68\x37\x88\x49\x9a\x7c\x05\xf6", 2042 + .rlen = 8, 2043 + }, { /* Copy of openssl vector for chunk testing */ 2044 + /* From OpenSSL */ 2045 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 2046 + .klen = 8, 2047 + .iv = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 2048 + .input = "\x37\x36\x35\x34\x33\x32\x31\x20" 2049 + "\x4e\x6f\x77\x20\x69\x73\x20\x74" 2050 + "\x68\x65\x20\x74\x69\x6d\x65\x20", 2051 + .ilen = 24, 2052 + .result = "\xcc\xd1\x73\xff\xab\x20\x39\xf4" 2053 + "\xac\xd8\xae\xfd\xdf\xd8\xa1\xeb" 2054 + "\x46\x8e\x91\x15\x78\x88\xba\x68", 2055 + .rlen = 24, 2056 + .np = 2, 2057 + .tap = { 13, 11 } 2058 + }, 2059 + }; 2060 + 2061 + static struct cipher_testvec des_cbc_dec_tv_template[] = { 2062 + { /* FIPS Pub 81 */ 2063 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 2064 + .klen = 8, 2065 + .iv = "\x12\x34\x56\x78\x90\xab\xcd\xef", 2066 + .input = "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c", 2067 + .ilen = 8, 2068 + .result = "\x4e\x6f\x77\x20\x69\x73\x20\x74", 2069 + .rlen = 8, 2070 + }, { 2071 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 2072 + .klen = 8, 2073 + .iv = "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c", 2074 + .input = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f", 2075 + .ilen = 8, 2076 + .result = "\x68\x65\x20\x74\x69\x6d\x65\x20", 2077 + .rlen = 8, 2078 + }, { 2079 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 2080 + .klen = 8, 2081 + .iv = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f", 2082 + .input = "\x68\x37\x88\x49\x9a\x7c\x05\xf6", 2083 + .ilen = 8, 2084 + .result = "\x66\x6f\x72\x20\x61\x6c\x6c\x20", 2085 + .rlen = 8, 2086 + }, { /* Copy of above, for chunk testing */ 2087 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 2088 + .klen = 8, 2089 + .iv = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f", 2090 + .input = "\x68\x37\x88\x49\x9a\x7c\x05\xf6", 2091 + .ilen = 8, 2092 + .result = "\x66\x6f\x72\x20\x61\x6c\x6c\x20", 2093 + .rlen = 8, 2094 + .np = 2, 2095 + .tap = { 4, 4 } 2096 + }, 2097 + }; 2098 + 2099 + static struct cipher_testvec des3_ede_enc_tv_template[] = { 2100 + { /* These are from openssl */ 2101 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 2102 + "\x55\x55\x55\x55\x55\x55\x55\x55" 2103 + "\xfe\xdc\xba\x98\x76\x54\x32\x10", 2104 + .klen = 24, 2105 + .input = "\x73\x6f\x6d\x65\x64\x61\x74\x61", 2106 + .ilen = 8, 2107 + .result = "\x18\xd7\x48\xe5\x63\x62\x05\x72", 2108 + .rlen = 8, 2109 + }, { 2110 + .key = "\x03\x52\x02\x07\x67\x20\x82\x17" 2111 + "\x86\x02\x87\x66\x59\x08\x21\x98" 2112 + "\x64\x05\x6a\xbd\xfe\xa9\x34\x57", 2113 + .klen = 24, 2114 + .input = "\x73\x71\x75\x69\x67\x67\x6c\x65", 2115 + .ilen = 8, 2116 + .result = "\xc0\x7d\x2a\x0f\xa5\x66\xfa\x30", 2117 + .rlen = 8, 2118 + }, { 2119 + .key = "\x10\x46\x10\x34\x89\x98\x80\x20" 2120 + "\x91\x07\xd0\x15\x89\x19\x01\x01" 2121 + "\x19\x07\x92\x10\x98\x1a\x01\x01", 2122 + .klen = 24, 2123 + .input = "\x00\x00\x00\x00\x00\x00\x00\x00", 2124 + .ilen = 8, 2125 + .result = "\xe1\xef\x62\xc3\x32\xfe\x82\x5b", 2126 + .rlen = 8, 2127 + }, 2128 + }; 2129 + 2130 + static struct cipher_testvec des3_ede_dec_tv_template[] = { 2131 + { /* These are from openssl */ 2132 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 2133 + "\x55\x55\x55\x55\x55\x55\x55\x55" 2134 + "\xfe\xdc\xba\x98\x76\x54\x32\x10", 2135 + .klen = 24, 2136 + .input = "\x18\xd7\x48\xe5\x63\x62\x05\x72", 2137 + .ilen = 8, 2138 + .result = "\x73\x6f\x6d\x65\x64\x61\x74\x61", 2139 + .rlen = 8, 2140 + }, { 2141 + .key = "\x03\x52\x02\x07\x67\x20\x82\x17" 2142 + "\x86\x02\x87\x66\x59\x08\x21\x98" 2143 + "\x64\x05\x6a\xbd\xfe\xa9\x34\x57", 2144 + .klen = 24, 2145 + .input = "\xc0\x7d\x2a\x0f\xa5\x66\xfa\x30", 2146 + .ilen = 8, 2147 + .result = "\x73\x71\x75\x69\x67\x67\x6c\x65", 2148 + .rlen = 8, 2149 + }, { 2150 + .key = "\x10\x46\x10\x34\x89\x98\x80\x20" 2151 + "\x91\x07\xd0\x15\x89\x19\x01\x01" 2152 + "\x19\x07\x92\x10\x98\x1a\x01\x01", 2153 + .klen = 24, 2154 + .input = "\xe1\xef\x62\xc3\x32\xfe\x82\x5b", 2155 + .ilen = 8, 2156 + .result = "\x00\x00\x00\x00\x00\x00\x00\x00", 2157 + .rlen = 8, 2158 + }, 2159 + }; 2160 + 2161 + static struct cipher_testvec des3_ede_cbc_enc_tv_template[] = { 2162 + { /* Generated from openssl */ 2163 + .key = "\xE9\xC0\xFF\x2E\x76\x0B\x64\x24" 2164 + "\x44\x4D\x99\x5A\x12\xD6\x40\xC0" 2165 + "\xEA\xC2\x84\xE8\x14\x95\xDB\xE8", 2166 + .klen = 24, 2167 + .iv = "\x7D\x33\x88\x93\x0F\x93\xB2\x42", 2168 + .input = "\x6f\x54\x20\x6f\x61\x4d\x79\x6e" 2169 + "\x53\x20\x63\x65\x65\x72\x73\x74" 2170 + "\x54\x20\x6f\x6f\x4d\x20\x6e\x61" 2171 + "\x20\x79\x65\x53\x72\x63\x74\x65" 2172 + "\x20\x73\x6f\x54\x20\x6f\x61\x4d" 2173 + "\x79\x6e\x53\x20\x63\x65\x65\x72" 2174 + "\x73\x74\x54\x20\x6f\x6f\x4d\x20" 2175 + "\x6e\x61\x20\x79\x65\x53\x72\x63" 2176 + "\x74\x65\x20\x73\x6f\x54\x20\x6f" 2177 + "\x61\x4d\x79\x6e\x53\x20\x63\x65" 2178 + "\x65\x72\x73\x74\x54\x20\x6f\x6f" 2179 + "\x4d\x20\x6e\x61\x20\x79\x65\x53" 2180 + "\x72\x63\x74\x65\x20\x73\x6f\x54" 2181 + "\x20\x6f\x61\x4d\x79\x6e\x53\x20" 2182 + "\x63\x65\x65\x72\x73\x74\x54\x20" 2183 + "\x6f\x6f\x4d\x20\x6e\x61\x0a\x79", 2184 + .ilen = 128, 2185 + .result = "\x0e\x2d\xb6\x97\x3c\x56\x33\xf4" 2186 + "\x67\x17\x21\xc7\x6e\x8a\xd5\x49" 2187 + "\x74\xb3\x49\x05\xc5\x1c\xd0\xed" 2188 + "\x12\x56\x5c\x53\x96\xb6\x00\x7d" 2189 + "\x90\x48\xfc\xf5\x8d\x29\x39\xcc" 2190 + "\x8a\xd5\x35\x18\x36\x23\x4e\xd7" 2191 + "\x76\xd1\xda\x0c\x94\x67\xbb\x04" 2192 + "\x8b\xf2\x03\x6c\xa8\xcf\xb6\xea" 2193 + "\x22\x64\x47\xaa\x8f\x75\x13\xbf" 2194 + "\x9f\xc2\xc3\xf0\xc9\x56\xc5\x7a" 2195 + "\x71\x63\x2e\x89\x7b\x1e\x12\xca" 2196 + "\xe2\x5f\xaf\xd8\xa4\xf8\xc9\x7a" 2197 + "\xd6\xf9\x21\x31\x62\x44\x45\xa6" 2198 + "\xd6\xbc\x5a\xd3\x2d\x54\x43\xcc" 2199 + "\x9d\xde\xa5\x70\xe9\x42\x45\x8a" 2200 + "\x6b\xfa\xb1\x91\x13\xb0\xd9\x19", 2201 + .rlen = 128, 2202 + }, 2203 + }; 2204 + 2205 + static struct cipher_testvec des3_ede_cbc_dec_tv_template[] = { 2206 + { /* Generated from openssl */ 2207 + .key = "\xE9\xC0\xFF\x2E\x76\x0B\x64\x24" 2208 + "\x44\x4D\x99\x5A\x12\xD6\x40\xC0" 2209 + "\xEA\xC2\x84\xE8\x14\x95\xDB\xE8", 2210 + .klen = 24, 2211 + .iv = "\x7D\x33\x88\x93\x0F\x93\xB2\x42", 2212 + .input = "\x0e\x2d\xb6\x97\x3c\x56\x33\xf4" 2213 + "\x67\x17\x21\xc7\x6e\x8a\xd5\x49" 2214 + "\x74\xb3\x49\x05\xc5\x1c\xd0\xed" 2215 + "\x12\x56\x5c\x53\x96\xb6\x00\x7d" 2216 + "\x90\x48\xfc\xf5\x8d\x29\x39\xcc" 2217 + "\x8a\xd5\x35\x18\x36\x23\x4e\xd7" 2218 + "\x76\xd1\xda\x0c\x94\x67\xbb\x04" 2219 + "\x8b\xf2\x03\x6c\xa8\xcf\xb6\xea" 2220 + "\x22\x64\x47\xaa\x8f\x75\x13\xbf" 2221 + "\x9f\xc2\xc3\xf0\xc9\x56\xc5\x7a" 2222 + "\x71\x63\x2e\x89\x7b\x1e\x12\xca" 2223 + "\xe2\x5f\xaf\xd8\xa4\xf8\xc9\x7a" 2224 + "\xd6\xf9\x21\x31\x62\x44\x45\xa6" 2225 + "\xd6\xbc\x5a\xd3\x2d\x54\x43\xcc" 2226 + "\x9d\xde\xa5\x70\xe9\x42\x45\x8a" 2227 + "\x6b\xfa\xb1\x91\x13\xb0\xd9\x19", 2228 + .ilen = 128, 2229 + .result = "\x6f\x54\x20\x6f\x61\x4d\x79\x6e" 2230 + "\x53\x20\x63\x65\x65\x72\x73\x74" 2231 + "\x54\x20\x6f\x6f\x4d\x20\x6e\x61" 2232 + "\x20\x79\x65\x53\x72\x63\x74\x65" 2233 + "\x20\x73\x6f\x54\x20\x6f\x61\x4d" 2234 + "\x79\x6e\x53\x20\x63\x65\x65\x72" 2235 + "\x73\x74\x54\x20\x6f\x6f\x4d\x20" 2236 + "\x6e\x61\x20\x79\x65\x53\x72\x63" 2237 + "\x74\x65\x20\x73\x6f\x54\x20\x6f" 2238 + "\x61\x4d\x79\x6e\x53\x20\x63\x65" 2239 + "\x65\x72\x73\x74\x54\x20\x6f\x6f" 2240 + "\x4d\x20\x6e\x61\x20\x79\x65\x53" 2241 + "\x72\x63\x74\x65\x20\x73\x6f\x54" 2242 + "\x20\x6f\x61\x4d\x79\x6e\x53\x20" 2243 + "\x63\x65\x65\x72\x73\x74\x54\x20" 2244 + "\x6f\x6f\x4d\x20\x6e\x61\x0a\x79", 2245 + .rlen = 128, 2246 + }, 2247 + }; 2248 + 2249 + /* 2250 + * Blowfish test vectors. 2251 + */ 2252 + #define BF_ENC_TEST_VECTORS 6 2253 + #define BF_DEC_TEST_VECTORS 6 2254 + #define BF_CBC_ENC_TEST_VECTORS 1 2255 + #define BF_CBC_DEC_TEST_VECTORS 1 2256 + 2257 + static struct cipher_testvec bf_enc_tv_template[] = { 2258 + { /* DES test vectors from OpenSSL */ 2259 + .key = "\x00\x00\x00\x00\x00\x00\x00\x00", 2260 + .klen = 8, 2261 + .input = "\x00\x00\x00\x00\x00\x00\x00\x00", 2262 + .ilen = 8, 2263 + .result = "\x4e\xf9\x97\x45\x61\x98\xdd\x78", 2264 + .rlen = 8, 2265 + }, { 2266 + .key = "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e", 2267 + .klen = 8, 2268 + .input = "\x01\x23\x45\x67\x89\xab\xcd\xef", 2269 + .ilen = 8, 2270 + .result = "\xa7\x90\x79\x51\x08\xea\x3c\xae", 2271 + .rlen = 8, 2272 + }, { 2273 + .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87", 2274 + .klen = 8, 2275 + .input = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 2276 + .ilen = 8, 2277 + .result = "\xe8\x7a\x24\x4e\x2c\xc8\x5e\x82", 2278 + .rlen = 8, 2279 + }, { /* Vary the keylength... */ 2280 + .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87" 2281 + "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f", 2282 + .klen = 16, 2283 + .input = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 2284 + .ilen = 8, 2285 + .result = "\x93\x14\x28\x87\xee\x3b\xe1\x5c", 2286 + .rlen = 8, 2287 + }, { 2288 + .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87" 2289 + "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f" 2290 + "\x00\x11\x22\x33\x44", 2291 + .klen = 21, 2292 + .input = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 2293 + .ilen = 8, 2294 + .result = "\xe6\xf5\x1e\xd7\x9b\x9d\xb2\x1f", 2295 + .rlen = 8, 2296 + }, { /* Generated with bf488 */ 2297 + .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87" 2298 + "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f" 2299 + "\x00\x11\x22\x33\x44\x55\x66\x77" 2300 + "\x04\x68\x91\x04\xc2\xfd\x3b\x2f" 2301 + "\x58\x40\x23\x64\x1a\xba\x61\x76" 2302 + "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e" 2303 + "\xff\xff\xff\xff\xff\xff\xff\xff", 2304 + .klen = 56, 2305 + .input = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 2306 + .ilen = 8, 2307 + .result = "\xc0\x45\x04\x01\x2e\x4e\x1f\x53", 2308 + .rlen = 8, 2309 + }, 2310 + }; 2311 + 2312 + static struct cipher_testvec bf_dec_tv_template[] = { 2313 + { /* DES test vectors from OpenSSL */ 2314 + .key = "\x00\x00\x00\x00\x00\x00\x00\x00", 2315 + .klen = 8, 2316 + .input = "\x4e\xf9\x97\x45\x61\x98\xdd\x78", 2317 + .ilen = 8, 2318 + .result = "\x00\x00\x00\x00\x00\x00\x00\x00", 2319 + .rlen = 8, 2320 + }, { 2321 + .key = "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e", 2322 + .klen = 8, 2323 + .input = "\xa7\x90\x79\x51\x08\xea\x3c\xae", 2324 + .ilen = 8, 2325 + .result = "\x01\x23\x45\x67\x89\xab\xcd\xef", 2326 + .rlen = 8, 2327 + }, { 2328 + .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87", 2329 + .klen = 8, 2330 + .input = "\xe8\x7a\x24\x4e\x2c\xc8\x5e\x82", 2331 + .ilen = 8, 2332 + .result = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 2333 + .rlen = 8, 2334 + }, { /* Vary the keylength... */ 2335 + .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87" 2336 + "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f", 2337 + .klen = 16, 2338 + .input = "\x93\x14\x28\x87\xee\x3b\xe1\x5c", 2339 + .ilen = 8, 2340 + .result = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 2341 + .rlen = 8, 2342 + }, { 2343 + .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87" 2344 + "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f" 2345 + "\x00\x11\x22\x33\x44", 2346 + .klen = 21, 2347 + .input = "\xe6\xf5\x1e\xd7\x9b\x9d\xb2\x1f", 2348 + .ilen = 8, 2349 + .result = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 2350 + .rlen = 8, 2351 + }, { /* Generated with bf488, using OpenSSL, Libgcrypt and Nettle */ 2352 + .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87" 2353 + "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f" 2354 + "\x00\x11\x22\x33\x44\x55\x66\x77" 2355 + "\x04\x68\x91\x04\xc2\xfd\x3b\x2f" 2356 + "\x58\x40\x23\x64\x1a\xba\x61\x76" 2357 + "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e" 2358 + "\xff\xff\xff\xff\xff\xff\xff\xff", 2359 + .klen = 56, 2360 + .input = "\xc0\x45\x04\x01\x2e\x4e\x1f\x53", 2361 + .ilen = 8, 2362 + .result = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 2363 + .rlen = 8, 2364 + }, 2365 + }; 2366 + 2367 + static struct cipher_testvec bf_cbc_enc_tv_template[] = { 2368 + { /* From OpenSSL */ 2369 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 2370 + "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87", 2371 + .klen = 16, 2372 + .iv = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 2373 + .input = "\x37\x36\x35\x34\x33\x32\x31\x20" 2374 + "\x4e\x6f\x77\x20\x69\x73\x20\x74" 2375 + "\x68\x65\x20\x74\x69\x6d\x65\x20" 2376 + "\x66\x6f\x72\x20\x00\x00\x00\x00", 2377 + .ilen = 32, 2378 + .result = "\x6b\x77\xb4\xd6\x30\x06\xde\xe6" 2379 + "\x05\xb1\x56\xe2\x74\x03\x97\x93" 2380 + "\x58\xde\xb9\xe7\x15\x46\x16\xd9" 2381 + "\x59\xf1\x65\x2b\xd5\xff\x92\xcc", 2382 + .rlen = 32, 2383 + }, 2384 + }; 2385 + 2386 + static struct cipher_testvec bf_cbc_dec_tv_template[] = { 2387 + { /* From OpenSSL */ 2388 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 2389 + "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87", 2390 + .klen = 16, 2391 + .iv = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 2392 + .input = "\x6b\x77\xb4\xd6\x30\x06\xde\xe6" 2393 + "\x05\xb1\x56\xe2\x74\x03\x97\x93" 2394 + "\x58\xde\xb9\xe7\x15\x46\x16\xd9" 2395 + "\x59\xf1\x65\x2b\xd5\xff\x92\xcc", 2396 + .ilen = 32, 2397 + .result = "\x37\x36\x35\x34\x33\x32\x31\x20" 2398 + "\x4e\x6f\x77\x20\x69\x73\x20\x74" 2399 + "\x68\x65\x20\x74\x69\x6d\x65\x20" 2400 + "\x66\x6f\x72\x20\x00\x00\x00\x00", 2401 + .rlen = 32, 2402 + }, 2403 + }; 2404 + 2405 + /* 2406 + * Twofish test vectors. 2407 + */ 2408 + #define TF_ENC_TEST_VECTORS 3 2409 + #define TF_DEC_TEST_VECTORS 3 2410 + #define TF_CBC_ENC_TEST_VECTORS 4 2411 + #define TF_CBC_DEC_TEST_VECTORS 4 2412 + 2413 + static struct cipher_testvec tf_enc_tv_template[] = { 2414 + { 2415 + .key = zeroed_string, 2416 + .klen = 16, 2417 + .input = zeroed_string, 2418 + .ilen = 16, 2419 + .result = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32" 2420 + "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a", 2421 + .rlen = 16, 2422 + }, { 2423 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 2424 + "\xfe\xdc\xba\x98\x76\x54\x32\x10" 2425 + "\x00\x11\x22\x33\x44\x55\x66\x77", 2426 + .klen = 24, 2427 + .input = zeroed_string, 2428 + .ilen = 16, 2429 + .result = "\xcf\xd1\xd2\xe5\xa9\xbe\x9c\xdf" 2430 + "\x50\x1f\x13\xb8\x92\xbd\x22\x48", 2431 + .rlen = 16, 2432 + }, { 2433 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 2434 + "\xfe\xdc\xba\x98\x76\x54\x32\x10" 2435 + "\x00\x11\x22\x33\x44\x55\x66\x77" 2436 + "\x88\x99\xaa\xbb\xcc\xdd\xee\xff", 2437 + .klen = 32, 2438 + .input = zeroed_string, 2439 + .ilen = 16, 2440 + .result = "\x37\x52\x7b\xe0\x05\x23\x34\xb8" 2441 + "\x9f\x0c\xfc\xca\xe8\x7c\xfa\x20", 2442 + .rlen = 16, 2443 + }, 2444 + }; 2445 + 2446 + static struct cipher_testvec tf_dec_tv_template[] = { 2447 + { 2448 + .key = zeroed_string, 2449 + .klen = 16, 2450 + .input = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32" 2451 + "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a", 2452 + .ilen = 16, 2453 + .result = zeroed_string, 2454 + .rlen = 16, 2455 + }, { 2456 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 2457 + "\xfe\xdc\xba\x98\x76\x54\x32\x10" 2458 + "\x00\x11\x22\x33\x44\x55\x66\x77", 2459 + .klen = 24, 2460 + .input = "\xcf\xd1\xd2\xe5\xa9\xbe\x9c\xdf" 2461 + "\x50\x1f\x13\xb8\x92\xbd\x22\x48", 2462 + .ilen = 16, 2463 + .result = zeroed_string, 2464 + .rlen = 16, 2465 + }, { 2466 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 2467 + "\xfe\xdc\xba\x98\x76\x54\x32\x10" 2468 + "\x00\x11\x22\x33\x44\x55\x66\x77" 2469 + "\x88\x99\xaa\xbb\xcc\xdd\xee\xff", 2470 + .klen = 32, 2471 + .input = "\x37\x52\x7b\xe0\x05\x23\x34\xb8" 2472 + "\x9f\x0c\xfc\xca\xe8\x7c\xfa\x20", 2473 + .ilen = 16, 2474 + .result = zeroed_string, 2475 + .rlen = 16, 2476 + }, 2477 + }; 2478 + 2479 + static struct cipher_testvec tf_cbc_enc_tv_template[] = { 2480 + { /* Generated with Nettle */ 2481 + .key = zeroed_string, 2482 + .klen = 16, 2483 + .iv = zeroed_string, 2484 + .input = zeroed_string, 2485 + .ilen = 16, 2486 + .result = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32" 2487 + "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a", 2488 + .rlen = 16, 2489 + }, { 2490 + .key = zeroed_string, 2491 + .klen = 16, 2492 + .iv = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32" 2493 + "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a", 2494 + .input = zeroed_string, 2495 + .ilen = 16, 2496 + .result = "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e" 2497 + "\x86\xcb\x08\x6b\x78\x9f\x54\x19", 2498 + .rlen = 16, 2499 + }, { 2500 + .key = zeroed_string, 2501 + .klen = 16, 2502 + .iv = "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e" 2503 + "\x86\xcb\x08\x6b\x78\x9f\x54\x19", 2504 + .input = zeroed_string, 2505 + .ilen = 16, 2506 + .result = "\x05\xef\x8c\x61\xa8\x11\x58\x26" 2507 + "\x34\xba\x5c\xb7\x10\x6a\xa6\x41", 2508 + .rlen = 16, 2509 + }, { 2510 + .key = zeroed_string, 2511 + .klen = 16, 2512 + .iv = zeroed_string, 2513 + .input = zeroed_string, 2514 + .ilen = 48, 2515 + .result = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32" 2516 + "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a" 2517 + "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e" 2518 + "\x86\xcb\x08\x6b\x78\x9f\x54\x19" 2519 + "\x05\xef\x8c\x61\xa8\x11\x58\x26" 2520 + "\x34\xba\x5c\xb7\x10\x6a\xa6\x41", 2521 + .rlen = 48, 2522 + }, 2523 + }; 2524 + 2525 + static struct cipher_testvec tf_cbc_dec_tv_template[] = { 2526 + { /* Reverse of the first four above */ 2527 + .key = zeroed_string, 2528 + .klen = 16, 2529 + .iv = zeroed_string, 2530 + .input = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32" 2531 + "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a", 2532 + .ilen = 16, 2533 + .result = zeroed_string, 2534 + .rlen = 16, 2535 + }, { 2536 + .key = zeroed_string, 2537 + .klen = 16, 2538 + .iv = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32" 2539 + "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a", 2540 + .input = "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e" 2541 + "\x86\xcb\x08\x6b\x78\x9f\x54\x19", 2542 + .ilen = 16, 2543 + .result = zeroed_string, 2544 + .rlen = 16, 2545 + }, { 2546 + .key = zeroed_string, 2547 + .klen = 16, 2548 + .iv = "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e" 2549 + "\x86\xcb\x08\x6b\x78\x9f\x54\x19", 2550 + .input = "\x05\xef\x8c\x61\xa8\x11\x58\x26" 2551 + "\x34\xba\x5c\xb7\x10\x6a\xa6\x41", 2552 + .ilen = 16, 2553 + .result = zeroed_string, 2554 + .rlen = 16, 2555 + }, { 2556 + .key = zeroed_string, 2557 + .klen = 16, 2558 + .iv = zeroed_string, 2559 + .input = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32" 2560 + "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a" 2561 + "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e" 2562 + "\x86\xcb\x08\x6b\x78\x9f\x54\x19" 2563 + "\x05\xef\x8c\x61\xa8\x11\x58\x26" 2564 + "\x34\xba\x5c\xb7\x10\x6a\xa6\x41", 2565 + .ilen = 48, 2566 + .result = zeroed_string, 2567 + .rlen = 48, 2568 + }, 2569 + }; 2570 + 2571 + /* 2572 + * Serpent test vectors. These are backwards because Serpent writes 2573 + * octet sequences in right-to-left mode. 2574 + */ 2575 + #define SERPENT_ENC_TEST_VECTORS 4 2576 + #define SERPENT_DEC_TEST_VECTORS 4 2577 + 2578 + #define TNEPRES_ENC_TEST_VECTORS 4 2579 + #define TNEPRES_DEC_TEST_VECTORS 4 2580 + 2581 + static struct cipher_testvec serpent_enc_tv_template[] = { 2582 + { 2583 + .input = "\x00\x01\x02\x03\x04\x05\x06\x07" 2584 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2585 + .ilen = 16, 2586 + .result = "\x12\x07\xfc\xce\x9b\xd0\xd6\x47" 2587 + "\x6a\xe9\x8f\xbe\xd1\x43\xa0\xe2", 2588 + .rlen = 16, 2589 + }, { 2590 + .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 2591 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2592 + .klen = 16, 2593 + .input = "\x00\x01\x02\x03\x04\x05\x06\x07" 2594 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2595 + .ilen = 16, 2596 + .result = "\x4c\x7d\x8a\x32\x80\x72\xa2\x2c" 2597 + "\x82\x3e\x4a\x1f\x3a\xcd\xa1\x6d", 2598 + .rlen = 16, 2599 + }, { 2600 + .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 2601 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 2602 + "\x10\x11\x12\x13\x14\x15\x16\x17" 2603 + "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 2604 + .klen = 32, 2605 + .input = "\x00\x01\x02\x03\x04\x05\x06\x07" 2606 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2607 + .ilen = 16, 2608 + .result = "\xde\x26\x9f\xf8\x33\xe4\x32\xb8" 2609 + "\x5b\x2e\x88\xd2\x70\x1c\xe7\x5c", 2610 + .rlen = 16, 2611 + }, { 2612 + .key = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80", 2613 + .klen = 16, 2614 + .input = zeroed_string, 2615 + .ilen = 16, 2616 + .result = "\xdd\xd2\x6b\x98\xa5\xff\xd8\x2c" 2617 + "\x05\x34\x5a\x9d\xad\xbf\xaf\x49", 2618 + .rlen = 16, 2619 + }, 2620 + }; 2621 + 2622 + static struct cipher_testvec tnepres_enc_tv_template[] = { 2623 + { /* KeySize=128, PT=0, I=1 */ 2624 + .input = "\x00\x00\x00\x00\x00\x00\x00\x00" 2625 + "\x00\x00\x00\x00\x00\x00\x00\x00", 2626 + .key = "\x80\x00\x00\x00\x00\x00\x00\x00" 2627 + "\x00\x00\x00\x00\x00\x00\x00\x00", 2628 + .klen = 16, 2629 + .ilen = 16, 2630 + .result = "\x49\xaf\xbf\xad\x9d\x5a\x34\x05" 2631 + "\x2c\xd8\xff\xa5\x98\x6b\xd2\xdd", 2632 + .rlen = 16, 2633 + }, { /* KeySize=192, PT=0, I=1 */ 2634 + .key = "\x80\x00\x00\x00\x00\x00\x00\x00" 2635 + "\x00\x00\x00\x00\x00\x00\x00\x00" 2636 + "\x00\x00\x00\x00\x00\x00\x00\x00", 2637 + .klen = 24, 2638 + .input = "\x00\x00\x00\x00\x00\x00\x00\x00" 2639 + "\x00\x00\x00\x00\x00\x00\x00\x00", 2640 + .ilen = 16, 2641 + .result = "\xe7\x8e\x54\x02\xc7\x19\x55\x68" 2642 + "\xac\x36\x78\xf7\xa3\xf6\x0c\x66", 2643 + .rlen = 16, 2644 + }, { /* KeySize=256, PT=0, I=1 */ 2645 + .key = "\x80\x00\x00\x00\x00\x00\x00\x00" 2646 + "\x00\x00\x00\x00\x00\x00\x00\x00" 2647 + "\x00\x00\x00\x00\x00\x00\x00\x00" 2648 + "\x00\x00\x00\x00\x00\x00\x00\x00", 2649 + .klen = 32, 2650 + .input = "\x00\x00\x00\x00\x00\x00\x00\x00" 2651 + "\x00\x00\x00\x00\x00\x00\x00\x00", 2652 + .ilen = 16, 2653 + .result = "\xab\xed\x96\xe7\x66\xbf\x28\xcb" 2654 + "\xc0\xeb\xd2\x1a\x82\xef\x08\x19", 2655 + .rlen = 16, 2656 + }, { /* KeySize=256, I=257 */ 2657 + .key = "\x1f\x1e\x1d\x1c\x1b\x1a\x19\x18" 2658 + "\x17\x16\x15\x14\x13\x12\x11\x10" 2659 + "\x0f\x0e\x0d\x0c\x0b\x0a\x09\x08" 2660 + "\x07\x06\x05\x04\x03\x02\x01\x00", 2661 + .klen = 32, 2662 + .input = "\x0f\x0e\x0d\x0c\x0b\x0a\x09\x08" 2663 + "\x07\x06\x05\x04\x03\x02\x01\x00", 2664 + .ilen = 16, 2665 + .result = "\x5c\xe7\x1c\x70\xd2\x88\x2e\x5b" 2666 + "\xb8\x32\xe4\x33\xf8\x9f\x26\xde", 2667 + .rlen = 16, 2668 + }, 2669 + }; 2670 + 2671 + 2672 + static struct cipher_testvec serpent_dec_tv_template[] = { 2673 + { 2674 + .input = "\x12\x07\xfc\xce\x9b\xd0\xd6\x47" 2675 + "\x6a\xe9\x8f\xbe\xd1\x43\xa0\xe2", 2676 + .ilen = 16, 2677 + .result = "\x00\x01\x02\x03\x04\x05\x06\x07" 2678 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2679 + .rlen = 16, 2680 + }, { 2681 + .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 2682 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2683 + .klen = 16, 2684 + .input = "\x4c\x7d\x8a\x32\x80\x72\xa2\x2c" 2685 + "\x82\x3e\x4a\x1f\x3a\xcd\xa1\x6d", 2686 + .ilen = 16, 2687 + .result = "\x00\x01\x02\x03\x04\x05\x06\x07" 2688 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2689 + .rlen = 16, 2690 + }, { 2691 + .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 2692 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 2693 + "\x10\x11\x12\x13\x14\x15\x16\x17" 2694 + "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 2695 + .klen = 32, 2696 + .input = "\xde\x26\x9f\xf8\x33\xe4\x32\xb8" 2697 + "\x5b\x2e\x88\xd2\x70\x1c\xe7\x5c", 2698 + .ilen = 16, 2699 + .result = "\x00\x01\x02\x03\x04\x05\x06\x07" 2700 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2701 + .rlen = 16, 2702 + }, { 2703 + .key = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80", 2704 + .klen = 16, 2705 + .input = "\xdd\xd2\x6b\x98\xa5\xff\xd8\x2c" 2706 + "\x05\x34\x5a\x9d\xad\xbf\xaf\x49", 2707 + .ilen = 16, 2708 + .result = zeroed_string, 2709 + .rlen = 16, 2710 + }, 2711 + }; 2712 + 2713 + static struct cipher_testvec tnepres_dec_tv_template[] = { 2714 + { 2715 + .input = "\x41\xcc\x6b\x31\x59\x31\x45\x97" 2716 + "\x6d\x6f\xbb\x38\x4b\x37\x21\x28", 2717 + .ilen = 16, 2718 + .result = "\x00\x01\x02\x03\x04\x05\x06\x07" 2719 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2720 + .rlen = 16, 2721 + }, { 2722 + .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 2723 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2724 + .klen = 16, 2725 + .input = "\xea\xf4\xd7\xfc\xd8\x01\x34\x47" 2726 + "\x81\x45\x0b\xfa\x0c\xd6\xad\x6e", 2727 + .ilen = 16, 2728 + .result = "\x00\x01\x02\x03\x04\x05\x06\x07" 2729 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2730 + .rlen = 16, 2731 + }, { 2732 + .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 2733 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 2734 + "\x10\x11\x12\x13\x14\x15\x16\x17" 2735 + "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 2736 + .klen = 32, 2737 + .input = "\x64\xa9\x1a\x37\xed\x9f\xe7\x49" 2738 + "\xa8\x4e\x76\xd6\xf5\x0d\x78\xee", 2739 + .ilen = 16, 2740 + .result = "\x00\x01\x02\x03\x04\x05\x06\x07" 2741 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2742 + .rlen = 16, 2743 + }, { /* KeySize=128, I=121 */ 2744 + .key = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80", 2745 + .klen = 16, 2746 + .input = "\x3d\xda\xbf\xc0\x06\xda\xab\x06" 2747 + "\x46\x2a\xf4\xef\x81\x54\x4e\x26", 2748 + .ilen = 16, 2749 + .result = zeroed_string, 2750 + .rlen = 16, 2751 + }, 2752 + }; 2753 + 2754 + 2755 + /* Cast6 test vectors from RFC 2612 */ 2756 + #define CAST6_ENC_TEST_VECTORS 3 2757 + #define CAST6_DEC_TEST_VECTORS 3 2758 + 2759 + static struct cipher_testvec cast6_enc_tv_template[] = { 2760 + { 2761 + .key = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c" 2762 + "\x0a\xf7\x56\x47\xf2\x9f\x61\x5d", 2763 + .klen = 16, 2764 + .input = zeroed_string, 2765 + .ilen = 16, 2766 + .result = "\xc8\x42\xa0\x89\x72\xb4\x3d\x20" 2767 + "\x83\x6c\x91\xd1\xb7\x53\x0f\x6b", 2768 + .rlen = 16, 2769 + }, { 2770 + .key = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c" 2771 + "\xbe\xd0\xac\x83\x94\x0a\xc2\x98" 2772 + "\xba\xc7\x7a\x77\x17\x94\x28\x63", 2773 + .klen = 24, 2774 + .input = zeroed_string, 2775 + .ilen = 16, 2776 + .result = "\x1b\x38\x6c\x02\x10\xdc\xad\xcb" 2777 + "\xdd\x0e\x41\xaa\x08\xa7\xa7\xe8", 2778 + .rlen = 16, 2779 + }, { 2780 + .key = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c" 2781 + "\xbe\xd0\xac\x83\x94\x0a\xc2\x98" 2782 + "\x8d\x7c\x47\xce\x26\x49\x08\x46" 2783 + "\x1c\xc1\xb5\x13\x7a\xe6\xb6\x04", 2784 + .klen = 32, 2785 + .input = zeroed_string, 2786 + .ilen = 16, 2787 + .result = "\x4f\x6a\x20\x38\x28\x68\x97\xb9" 2788 + "\xc9\x87\x01\x36\x55\x33\x17\xfa", 2789 + .rlen = 16, 2790 + }, 2791 + }; 2792 + 2793 + static struct cipher_testvec cast6_dec_tv_template[] = { 2794 + { 2795 + .key = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c" 2796 + "\x0a\xf7\x56\x47\xf2\x9f\x61\x5d", 2797 + .klen = 16, 2798 + .input = "\xc8\x42\xa0\x89\x72\xb4\x3d\x20" 2799 + "\x83\x6c\x91\xd1\xb7\x53\x0f\x6b", 2800 + .ilen = 16, 2801 + .result = zeroed_string, 2802 + .rlen = 16, 2803 + }, { 2804 + .key = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c" 2805 + "\xbe\xd0\xac\x83\x94\x0a\xc2\x98" 2806 + "\xba\xc7\x7a\x77\x17\x94\x28\x63", 2807 + .klen = 24, 2808 + .input = "\x1b\x38\x6c\x02\x10\xdc\xad\xcb" 2809 + "\xdd\x0e\x41\xaa\x08\xa7\xa7\xe8", 2810 + .ilen = 16, 2811 + .result = zeroed_string, 2812 + .rlen = 16, 2813 + }, { 2814 + .key = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c" 2815 + "\xbe\xd0\xac\x83\x94\x0a\xc2\x98" 2816 + "\x8d\x7c\x47\xce\x26\x49\x08\x46" 2817 + "\x1c\xc1\xb5\x13\x7a\xe6\xb6\x04", 2818 + .klen = 32, 2819 + .input = "\x4f\x6a\x20\x38\x28\x68\x97\xb9" 2820 + "\xc9\x87\x01\x36\x55\x33\x17\xfa", 2821 + .ilen = 16, 2822 + .result = zeroed_string, 2823 + .rlen = 16, 2824 + }, 2825 + }; 2826 + 2827 + 2828 + /* 2829 + * AES test vectors. 2830 + */ 2831 + #define AES_ENC_TEST_VECTORS 3 2832 + #define AES_DEC_TEST_VECTORS 3 2833 + #define AES_CBC_ENC_TEST_VECTORS 4 2834 + #define AES_CBC_DEC_TEST_VECTORS 4 2835 + #define AES_LRW_ENC_TEST_VECTORS 8 2836 + #define AES_LRW_DEC_TEST_VECTORS 8 2837 + #define AES_XTS_ENC_TEST_VECTORS 4 2838 + #define AES_XTS_DEC_TEST_VECTORS 4 2839 + #define AES_CTR_ENC_TEST_VECTORS 7 2840 + #define AES_CTR_DEC_TEST_VECTORS 6 2841 + #define AES_GCM_ENC_TEST_VECTORS 9 2842 + #define AES_GCM_DEC_TEST_VECTORS 8 2843 + #define AES_CCM_ENC_TEST_VECTORS 7 2844 + #define AES_CCM_DEC_TEST_VECTORS 7 2845 + 2846 + static struct cipher_testvec aes_enc_tv_template[] = { 2847 + { /* From FIPS-197 */ 2848 + .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 2849 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2850 + .klen = 16, 2851 + .input = "\x00\x11\x22\x33\x44\x55\x66\x77" 2852 + "\x88\x99\xaa\xbb\xcc\xdd\xee\xff", 2853 + .ilen = 16, 2854 + .result = "\x69\xc4\xe0\xd8\x6a\x7b\x04\x30" 2855 + "\xd8\xcd\xb7\x80\x70\xb4\xc5\x5a", 2856 + .rlen = 16, 2857 + }, { 2858 + .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 2859 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 2860 + "\x10\x11\x12\x13\x14\x15\x16\x17", 2861 + .klen = 24, 2862 + .input = "\x00\x11\x22\x33\x44\x55\x66\x77" 2863 + "\x88\x99\xaa\xbb\xcc\xdd\xee\xff", 2864 + .ilen = 16, 2865 + .result = "\xdd\xa9\x7c\xa4\x86\x4c\xdf\xe0" 2866 + "\x6e\xaf\x70\xa0\xec\x0d\x71\x91", 2867 + .rlen = 16, 2868 + }, { 2869 + .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 2870 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 2871 + "\x10\x11\x12\x13\x14\x15\x16\x17" 2872 + "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 2873 + .klen = 32, 2874 + .input = "\x00\x11\x22\x33\x44\x55\x66\x77" 2875 + "\x88\x99\xaa\xbb\xcc\xdd\xee\xff", 2876 + .ilen = 16, 2877 + .result = "\x8e\xa2\xb7\xca\x51\x67\x45\xbf" 2878 + "\xea\xfc\x49\x90\x4b\x49\x60\x89", 2879 + .rlen = 16, 2880 + }, 2881 + }; 2882 + 2883 + static struct cipher_testvec aes_dec_tv_template[] = { 2884 + { /* From FIPS-197 */ 2885 + .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 2886 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2887 + .klen = 16, 2888 + .input = "\x69\xc4\xe0\xd8\x6a\x7b\x04\x30" 2889 + "\xd8\xcd\xb7\x80\x70\xb4\xc5\x5a", 2890 + .ilen = 16, 2891 + .result = "\x00\x11\x22\x33\x44\x55\x66\x77" 2892 + "\x88\x99\xaa\xbb\xcc\xdd\xee\xff", 2893 + .rlen = 16, 2894 + }, { 2895 + .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 2896 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 2897 + "\x10\x11\x12\x13\x14\x15\x16\x17", 2898 + .klen = 24, 2899 + .input = "\xdd\xa9\x7c\xa4\x86\x4c\xdf\xe0" 2900 + "\x6e\xaf\x70\xa0\xec\x0d\x71\x91", 2901 + .ilen = 16, 2902 + .result = "\x00\x11\x22\x33\x44\x55\x66\x77" 2903 + "\x88\x99\xaa\xbb\xcc\xdd\xee\xff", 2904 + .rlen = 16, 2905 + }, { 2906 + .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 2907 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 2908 + "\x10\x11\x12\x13\x14\x15\x16\x17" 2909 + "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 2910 + .klen = 32, 2911 + .input = "\x8e\xa2\xb7\xca\x51\x67\x45\xbf" 2912 + "\xea\xfc\x49\x90\x4b\x49\x60\x89", 2913 + .ilen = 16, 2914 + .result = "\x00\x11\x22\x33\x44\x55\x66\x77" 2915 + "\x88\x99\xaa\xbb\xcc\xdd\xee\xff", 2916 + .rlen = 16, 2917 + }, 2918 + }; 2919 + 2920 + static struct cipher_testvec aes_cbc_enc_tv_template[] = { 2921 + { /* From RFC 3602 */ 2922 + .key = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b" 2923 + "\x51\x2e\x03\xd5\x34\x12\x00\x06", 2924 + .klen = 16, 2925 + .iv = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30" 2926 + "\xb4\x22\xda\x80\x2c\x9f\xac\x41", 2927 + .input = "Single block msg", 2928 + .ilen = 16, 2929 + .result = "\xe3\x53\x77\x9c\x10\x79\xae\xb8" 2930 + "\x27\x08\x94\x2d\xbe\x77\x18\x1a", 2931 + .rlen = 16, 2932 + }, { 2933 + .key = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0" 2934 + "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a", 2935 + .klen = 16, 2936 + .iv = "\x56\x2e\x17\x99\x6d\x09\x3d\x28" 2937 + "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58", 2938 + .input = "\x00\x01\x02\x03\x04\x05\x06\x07" 2939 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 2940 + "\x10\x11\x12\x13\x14\x15\x16\x17" 2941 + "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 2942 + .ilen = 32, 2943 + .result = "\xd2\x96\xcd\x94\xc2\xcc\xcf\x8a" 2944 + "\x3a\x86\x30\x28\xb5\xe1\xdc\x0a" 2945 + "\x75\x86\x60\x2d\x25\x3c\xff\xf9" 2946 + "\x1b\x82\x66\xbe\xa6\xd6\x1a\xb1", 2947 + .rlen = 32, 2948 + }, { /* From NIST SP800-38A */ 2949 + .key = "\x8e\x73\xb0\xf7\xda\x0e\x64\x52" 2950 + "\xc8\x10\xf3\x2b\x80\x90\x79\xe5" 2951 + "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b", 2952 + .klen = 24, 2953 + .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 2954 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2955 + .input = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 2956 + "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 2957 + "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 2958 + "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 2959 + "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 2960 + "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 2961 + "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 2962 + "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 2963 + .ilen = 64, 2964 + .result = "\x4f\x02\x1d\xb2\x43\xbc\x63\x3d" 2965 + "\x71\x78\x18\x3a\x9f\xa0\x71\xe8" 2966 + "\xb4\xd9\xad\xa9\xad\x7d\xed\xf4" 2967 + "\xe5\xe7\x38\x76\x3f\x69\x14\x5a" 2968 + "\x57\x1b\x24\x20\x12\xfb\x7a\xe0" 2969 + "\x7f\xa9\xba\xac\x3d\xf1\x02\xe0" 2970 + "\x08\xb0\xe2\x79\x88\x59\x88\x81" 2971 + "\xd9\x20\xa9\xe6\x4f\x56\x15\xcd", 2972 + .rlen = 64, 2973 + }, { 2974 + .key = "\x60\x3d\xeb\x10\x15\xca\x71\xbe" 2975 + "\x2b\x73\xae\xf0\x85\x7d\x77\x81" 2976 + "\x1f\x35\x2c\x07\x3b\x61\x08\xd7" 2977 + "\x2d\x98\x10\xa3\x09\x14\xdf\xf4", 2978 + .klen = 32, 2979 + .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 2980 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 2981 + .input = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 2982 + "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 2983 + "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 2984 + "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 2985 + "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 2986 + "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 2987 + "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 2988 + "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 2989 + .ilen = 64, 2990 + .result = "\xf5\x8c\x4c\x04\xd6\xe5\xf1\xba" 2991 + "\x77\x9e\xab\xfb\x5f\x7b\xfb\xd6" 2992 + "\x9c\xfc\x4e\x96\x7e\xdb\x80\x8d" 2993 + "\x67\x9f\x77\x7b\xc6\x70\x2c\x7d" 2994 + "\x39\xf2\x33\x69\xa9\xd9\xba\xcf" 2995 + "\xa5\x30\xe2\x63\x04\x23\x14\x61" 2996 + "\xb2\xeb\x05\xe2\xc3\x9b\xe9\xfc" 2997 + "\xda\x6c\x19\x07\x8c\x6a\x9d\x1b", 2998 + .rlen = 64, 2999 + }, 3000 + }; 3001 + 3002 + static struct cipher_testvec aes_cbc_dec_tv_template[] = { 3003 + { /* From RFC 3602 */ 3004 + .key = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b" 3005 + "\x51\x2e\x03\xd5\x34\x12\x00\x06", 3006 + .klen = 16, 3007 + .iv = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30" 3008 + "\xb4\x22\xda\x80\x2c\x9f\xac\x41", 3009 + .input = "\xe3\x53\x77\x9c\x10\x79\xae\xb8" 3010 + "\x27\x08\x94\x2d\xbe\x77\x18\x1a", 3011 + .ilen = 16, 3012 + .result = "Single block msg", 3013 + .rlen = 16, 3014 + }, { 3015 + .key = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0" 3016 + "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a", 3017 + .klen = 16, 3018 + .iv = "\x56\x2e\x17\x99\x6d\x09\x3d\x28" 3019 + "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58", 3020 + .input = "\xd2\x96\xcd\x94\xc2\xcc\xcf\x8a" 3021 + "\x3a\x86\x30\x28\xb5\xe1\xdc\x0a" 3022 + "\x75\x86\x60\x2d\x25\x3c\xff\xf9" 3023 + "\x1b\x82\x66\xbe\xa6\xd6\x1a\xb1", 3024 + .ilen = 32, 3025 + .result = "\x00\x01\x02\x03\x04\x05\x06\x07" 3026 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 3027 + "\x10\x11\x12\x13\x14\x15\x16\x17" 3028 + "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 3029 + .rlen = 32, 3030 + }, { /* From NIST SP800-38A */ 3031 + .key = "\x8e\x73\xb0\xf7\xda\x0e\x64\x52" 3032 + "\xc8\x10\xf3\x2b\x80\x90\x79\xe5" 3033 + "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b", 3034 + .klen = 24, 3035 + .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 3036 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 3037 + .input = "\x4f\x02\x1d\xb2\x43\xbc\x63\x3d" 3038 + "\x71\x78\x18\x3a\x9f\xa0\x71\xe8" 3039 + "\xb4\xd9\xad\xa9\xad\x7d\xed\xf4" 3040 + "\xe5\xe7\x38\x76\x3f\x69\x14\x5a" 3041 + "\x57\x1b\x24\x20\x12\xfb\x7a\xe0" 3042 + "\x7f\xa9\xba\xac\x3d\xf1\x02\xe0" 3043 + "\x08\xb0\xe2\x79\x88\x59\x88\x81" 3044 + "\xd9\x20\xa9\xe6\x4f\x56\x15\xcd", 3045 + .ilen = 64, 3046 + .result = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 3047 + "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 3048 + "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 3049 + "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 3050 + "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 3051 + "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 3052 + "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 3053 + "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 3054 + .rlen = 64, 3055 + }, { 3056 + .key = "\x60\x3d\xeb\x10\x15\xca\x71\xbe" 3057 + "\x2b\x73\xae\xf0\x85\x7d\x77\x81" 3058 + "\x1f\x35\x2c\x07\x3b\x61\x08\xd7" 3059 + "\x2d\x98\x10\xa3\x09\x14\xdf\xf4", 3060 + .klen = 32, 3061 + .iv = "\x00\x01\x02\x03\x04\x05\x06\x07" 3062 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 3063 + .input = "\xf5\x8c\x4c\x04\xd6\xe5\xf1\xba" 3064 + "\x77\x9e\xab\xfb\x5f\x7b\xfb\xd6" 3065 + "\x9c\xfc\x4e\x96\x7e\xdb\x80\x8d" 3066 + "\x67\x9f\x77\x7b\xc6\x70\x2c\x7d" 3067 + "\x39\xf2\x33\x69\xa9\xd9\xba\xcf" 3068 + "\xa5\x30\xe2\x63\x04\x23\x14\x61" 3069 + "\xb2\xeb\x05\xe2\xc3\x9b\xe9\xfc" 3070 + "\xda\x6c\x19\x07\x8c\x6a\x9d\x1b", 3071 + .ilen = 64, 3072 + .result = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96" 3073 + "\xe9\x3d\x7e\x11\x73\x93\x17\x2a" 3074 + "\xae\x2d\x8a\x57\x1e\x03\xac\x9c" 3075 + "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51" 3076 + "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11" 3077 + "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef" 3078 + "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17" 3079 + "\xad\x2b\x41\x7b\xe6\x6c\x37\x10", 3080 + .rlen = 64, 3081 + }, 3082 + }; 3083 + 3084 + static struct cipher_testvec aes_lrw_enc_tv_template[] = { 3085 + /* from http://grouper.ieee.org/groups/1619/email/pdf00017.pdf */ 3086 + { /* LRW-32-AES 1 */ 3087 + .key = "\x45\x62\xac\x25\xf8\x28\x17\x6d" 3088 + "\x4c\x26\x84\x14\xb5\x68\x01\x85" 3089 + "\x25\x8e\x2a\x05\xe7\x3e\x9d\x03" 3090 + "\xee\x5a\x83\x0c\xcc\x09\x4c\x87", 3091 + .klen = 32, 3092 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3093 + "\x00\x00\x00\x00\x00\x00\x00\x01", 3094 + .input = "\x30\x31\x32\x33\x34\x35\x36\x37" 3095 + "\x38\x39\x41\x42\x43\x44\x45\x46", 3096 + .ilen = 16, 3097 + .result = "\xf1\xb2\x73\xcd\x65\xa3\xdf\x5f" 3098 + "\xe9\x5d\x48\x92\x54\x63\x4e\xb8", 3099 + .rlen = 16, 3100 + }, { /* LRW-32-AES 2 */ 3101 + .key = "\x59\x70\x47\x14\xf5\x57\x47\x8c" 3102 + "\xd7\x79\xe8\x0f\x54\x88\x79\x44" 3103 + "\x0d\x48\xf0\xb7\xb1\x5a\x53\xea" 3104 + "\x1c\xaa\x6b\x29\xc2\xca\xfb\xaf", 3105 + .klen = 32, 3106 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3107 + "\x00\x00\x00\x00\x00\x00\x00\x02", 3108 + .input = "\x30\x31\x32\x33\x34\x35\x36\x37" 3109 + "\x38\x39\x41\x42\x43\x44\x45\x46", 3110 + .ilen = 16, 3111 + .result = "\x00\xc8\x2b\xae\x95\xbb\xcd\xe5" 3112 + "\x27\x4f\x07\x69\xb2\x60\xe1\x36", 3113 + .rlen = 16, 3114 + }, { /* LRW-32-AES 3 */ 3115 + .key = "\xd8\x2a\x91\x34\xb2\x6a\x56\x50" 3116 + "\x30\xfe\x69\xe2\x37\x7f\x98\x47" 3117 + "\xcd\xf9\x0b\x16\x0c\x64\x8f\xb6" 3118 + "\xb0\x0d\x0d\x1b\xae\x85\x87\x1f", 3119 + .klen = 32, 3120 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3121 + "\x00\x00\x00\x02\x00\x00\x00\x00", 3122 + .input = "\x30\x31\x32\x33\x34\x35\x36\x37" 3123 + "\x38\x39\x41\x42\x43\x44\x45\x46", 3124 + .ilen = 16, 3125 + .result = "\x76\x32\x21\x83\xed\x8f\xf1\x82" 3126 + "\xf9\x59\x62\x03\x69\x0e\x5e\x01", 3127 + .rlen = 16, 3128 + }, { /* LRW-32-AES 4 */ 3129 + .key = "\x0f\x6a\xef\xf8\xd3\xd2\xbb\x15" 3130 + "\x25\x83\xf7\x3c\x1f\x01\x28\x74" 3131 + "\xca\xc6\xbc\x35\x4d\x4a\x65\x54" 3132 + "\x90\xae\x61\xcf\x7b\xae\xbd\xcc" 3133 + "\xad\xe4\x94\xc5\x4a\x29\xae\x70", 3134 + .klen = 40, 3135 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3136 + "\x00\x00\x00\x00\x00\x00\x00\x01", 3137 + .input = "\x30\x31\x32\x33\x34\x35\x36\x37" 3138 + "\x38\x39\x41\x42\x43\x44\x45\x46", 3139 + .ilen = 16, 3140 + .result = "\x9c\x0f\x15\x2f\x55\xa2\xd8\xf0" 3141 + "\xd6\x7b\x8f\x9e\x28\x22\xbc\x41", 3142 + .rlen = 16, 3143 + }, { /* LRW-32-AES 5 */ 3144 + .key = "\x8a\xd4\xee\x10\x2f\xbd\x81\xff" 3145 + "\xf8\x86\xce\xac\x93\xc5\xad\xc6" 3146 + "\xa0\x19\x07\xc0\x9d\xf7\xbb\xdd" 3147 + "\x52\x13\xb2\xb7\xf0\xff\x11\xd8" 3148 + "\xd6\x08\xd0\xcd\x2e\xb1\x17\x6f", 3149 + .klen = 40, 3150 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3151 + "\x00\x00\x00\x02\x00\x00\x00\x00", 3152 + .input = "\x30\x31\x32\x33\x34\x35\x36\x37" 3153 + "\x38\x39\x41\x42\x43\x44\x45\x46", 3154 + .ilen = 16, 3155 + .result = "\xd4\x27\x6a\x7f\x14\x91\x3d\x65" 3156 + "\xc8\x60\x48\x02\x87\xe3\x34\x06", 3157 + .rlen = 16, 3158 + }, { /* LRW-32-AES 6 */ 3159 + .key = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c" 3160 + "\x23\x84\xcb\x1c\x77\xd6\x19\x5d" 3161 + "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21" 3162 + "\xa7\x9c\x21\xf8\xcb\x90\x02\x89" 3163 + "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1" 3164 + "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e", 3165 + .klen = 48, 3166 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3167 + "\x00\x00\x00\x00\x00\x00\x00\x01", 3168 + .input = "\x30\x31\x32\x33\x34\x35\x36\x37" 3169 + "\x38\x39\x41\x42\x43\x44\x45\x46", 3170 + .ilen = 16, 3171 + .result = "\xbd\x06\xb8\xe1\xdb\x98\x89\x9e" 3172 + "\xc4\x98\xe4\x91\xcf\x1c\x70\x2b", 3173 + .rlen = 16, 3174 + }, { /* LRW-32-AES 7 */ 3175 + .key = "\xfb\x76\x15\xb2\x3d\x80\x89\x1d" 3176 + "\xd4\x70\x98\x0b\xc7\x95\x84\xc8" 3177 + "\xb2\xfb\x64\xce\x60\x97\x87\x8d" 3178 + "\x17\xfc\xe4\x5a\x49\xe8\x30\xb7" 3179 + "\x6e\x78\x17\xe7\x2d\x5e\x12\xd4" 3180 + "\x60\x64\x04\x7a\xf1\x2f\x9e\x0c", 3181 + .klen = 48, 3182 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3183 + "\x00\x00\x00\x02\x00\x00\x00\x00", 3184 + .input = "\x30\x31\x32\x33\x34\x35\x36\x37" 3185 + "\x38\x39\x41\x42\x43\x44\x45\x46", 3186 + .ilen = 16, 3187 + .result = "\x5b\x90\x8e\xc1\xab\xdd\x67\x5f" 3188 + "\x3d\x69\x8a\x95\x53\xc8\x9c\xe5", 3189 + .rlen = 16, 3190 + }, { 3191 + /* http://www.mail-archive.com/stds-p1619@listserv.ieee.org/msg00173.html */ 3192 + .key = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c" 3193 + "\x23\x84\xcb\x1c\x77\xd6\x19\x5d" 3194 + "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21" 3195 + "\xa7\x9c\x21\xf8\xcb\x90\x02\x89" 3196 + "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1" 3197 + "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e", 3198 + .klen = 48, 3199 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3200 + "\x00\x00\x00\x00\x00\x00\x00\x01", 3201 + .input = "\x05\x11\xb7\x18\xab\xc6\x2d\xac" 3202 + "\x70\x5d\xf6\x22\x94\xcd\xe5\x6c" 3203 + "\x17\x6b\xf6\x1c\xf0\xf3\x6e\xf8" 3204 + "\x50\x38\x1f\x71\x49\xb6\x57\xd6" 3205 + "\x8f\xcb\x8d\x6b\xe3\xa6\x29\x90" 3206 + "\xfe\x2a\x62\x82\xae\x6d\x8b\xf6" 3207 + "\xad\x1e\x9e\x20\x5f\x38\xbe\x04" 3208 + "\xda\x10\x8e\xed\xa2\xa4\x87\xab" 3209 + "\xda\x6b\xb4\x0c\x75\xba\xd3\x7c" 3210 + "\xc9\xac\x42\x31\x95\x7c\xc9\x04" 3211 + "\xeb\xd5\x6e\x32\x69\x8a\xdb\xa6" 3212 + "\x15\xd7\x3f\x4f\x2f\x66\x69\x03" 3213 + "\x9c\x1f\x54\x0f\xde\x1f\xf3\x65" 3214 + "\x4c\x96\x12\xed\x7c\x92\x03\x01" 3215 + "\x6f\xbc\x35\x93\xac\xf1\x27\xf1" 3216 + "\xb4\x96\x82\x5a\x5f\xb0\xa0\x50" 3217 + "\x89\xa4\x8e\x66\x44\x85\xcc\xfd" 3218 + "\x33\x14\x70\xe3\x96\xb2\xc3\xd3" 3219 + "\xbb\x54\x5a\x1a\xf9\x74\xa2\xc5" 3220 + "\x2d\x64\x75\xdd\xb4\x54\xe6\x74" 3221 + "\x8c\xd3\x9d\x9e\x86\xab\x51\x53" 3222 + "\xb7\x93\x3e\x6f\xd0\x4e\x2c\x40" 3223 + "\xf6\xa8\x2e\x3e\x9d\xf4\x66\xa5" 3224 + "\x76\x12\x73\x44\x1a\x56\xd7\x72" 3225 + "\x88\xcd\x21\x8c\x4c\x0f\xfe\xda" 3226 + "\x95\xe0\x3a\xa6\xa5\x84\x46\xcd" 3227 + "\xd5\x3e\x9d\x3a\xe2\x67\xe6\x60" 3228 + "\x1a\xe2\x70\x85\x58\xc2\x1b\x09" 3229 + "\xe1\xd7\x2c\xca\xad\xa8\x8f\xf9" 3230 + "\xac\xb3\x0e\xdb\xca\x2e\xe2\xb8" 3231 + "\x51\x71\xd9\x3c\x6c\xf1\x56\xf8" 3232 + "\xea\x9c\xf1\xfb\x0c\xe6\xb7\x10" 3233 + "\x1c\xf8\xa9\x7c\xe8\x53\x35\xc1" 3234 + "\x90\x3e\x76\x4a\x74\xa4\x21\x2c" 3235 + "\xf6\x2c\x4e\x0f\x94\x3a\x88\x2e" 3236 + "\x41\x09\x6a\x33\x7d\xf6\xdd\x3f" 3237 + "\x8d\x23\x31\x74\x84\xeb\x88\x6e" 3238 + "\xcc\xb9\xbc\x22\x83\x19\x07\x22" 3239 + "\xa5\x2d\xdf\xa5\xf3\x80\x85\x78" 3240 + "\x84\x39\x6a\x6d\x6a\x99\x4f\xa5" 3241 + "\x15\xfe\x46\xb0\xe4\x6c\xa5\x41" 3242 + "\x3c\xce\x8f\x42\x60\x71\xa7\x75" 3243 + "\x08\x40\x65\x8a\x82\xbf\xf5\x43" 3244 + "\x71\x96\xa9\x4d\x44\x8a\x20\xbe" 3245 + "\xfa\x4d\xbb\xc0\x7d\x31\x96\x65" 3246 + "\xe7\x75\xe5\x3e\xfd\x92\x3b\xc9" 3247 + "\x55\xbb\x16\x7e\xf7\xc2\x8c\xa4" 3248 + "\x40\x1d\xe5\xef\x0e\xdf\xe4\x9a" 3249 + "\x62\x73\x65\xfd\x46\x63\x25\x3d" 3250 + "\x2b\xaf\xe5\x64\xfe\xa5\x5c\xcf" 3251 + "\x24\xf3\xb4\xac\x64\xba\xdf\x4b" 3252 + "\xc6\x96\x7d\x81\x2d\x8d\x97\xf7" 3253 + "\xc5\x68\x77\x84\x32\x2b\xcc\x85" 3254 + "\x74\x96\xf0\x12\x77\x61\xb9\xeb" 3255 + "\x71\xaa\x82\xcb\x1c\xdb\x89\xc8" 3256 + "\xc6\xb5\xe3\x5c\x7d\x39\x07\x24" 3257 + "\xda\x39\x87\x45\xc0\x2b\xbb\x01" 3258 + "\xac\xbc\x2a\x5c\x7f\xfc\xe8\xce" 3259 + "\x6d\x9c\x6f\xed\xd3\xc1\xa1\xd6" 3260 + "\xc5\x55\xa9\x66\x2f\xe1\xc8\x32" 3261 + "\xa6\x5d\xa4\x3a\x98\x73\xe8\x45" 3262 + "\xa4\xc7\xa8\xb4\xf6\x13\x03\xf6" 3263 + "\xe9\x2e\xc4\x29\x0f\x84\xdb\xc4" 3264 + "\x21\xc4\xc2\x75\x67\x89\x37\x0a", 3265 + .ilen = 512, 3266 + .result = "\x1a\x1d\xa9\x30\xad\xf9\x2f\x9b" 3267 + "\xb6\x1d\xae\xef\xf0\x2f\xf8\x5a" 3268 + "\x39\x3c\xbf\x2a\xb2\x45\xb2\x23" 3269 + "\x1b\x63\x3c\xcf\xaa\xbe\xcf\x4e" 3270 + "\xfa\xe8\x29\xc2\x20\x68\x2b\x3c" 3271 + "\x2e\x8b\xf7\x6e\x25\xbd\xe3\x3d" 3272 + "\x66\x27\xd6\xaf\xd6\x64\x3e\xe3" 3273 + "\xe8\x58\x46\x97\x39\x51\x07\xde" 3274 + "\xcb\x37\xbc\xa9\xc0\x5f\x75\xc3" 3275 + "\x0e\x84\x23\x1d\x16\xd4\x1c\x59" 3276 + "\x9c\x1a\x02\x55\xab\x3a\x97\x1d" 3277 + "\xdf\xdd\xc7\x06\x51\xd7\x70\xae" 3278 + "\x23\xc6\x8c\xf5\x1e\xa0\xe5\x82" 3279 + "\xb8\xb2\xbf\x04\xa0\x32\x8e\x68" 3280 + "\xeb\xaf\x6e\x2d\x94\x22\x2f\xce" 3281 + "\x4c\xb5\x59\xe2\xa2\x2f\xa0\x98" 3282 + "\x1a\x97\xc6\xd4\xb5\x00\x59\xf2" 3283 + "\x84\x14\x72\xb1\x9a\x6e\xa3\x7f" 3284 + "\xea\x20\xe7\xcb\x65\x77\x3a\xdf" 3285 + "\xc8\x97\x67\x15\xc2\x2a\x27\xcc" 3286 + "\x18\x55\xa1\x24\x0b\x24\x24\xaf" 3287 + "\x5b\xec\x68\xb8\xc8\xf5\xba\x63" 3288 + "\xff\xed\x89\xce\xd5\x3d\x88\xf3" 3289 + "\x25\xef\x05\x7c\x3a\xef\xeb\xd8" 3290 + "\x7a\x32\x0d\xd1\x1e\x58\x59\x99" 3291 + "\x90\x25\xb5\x26\xb0\xe3\x2b\x6c" 3292 + "\x4c\xa9\x8b\x84\x4f\x5e\x01\x50" 3293 + "\x41\x30\x58\xc5\x62\x74\x52\x1d" 3294 + "\x45\x24\x6a\x42\x64\x4f\x97\x1c" 3295 + "\xa8\x66\xb5\x6d\x79\xd4\x0d\x48" 3296 + "\xc5\x5f\xf3\x90\x32\xdd\xdd\xe1" 3297 + "\xe4\xa9\x9f\xfc\xc3\x52\x5a\x46" 3298 + "\xe4\x81\x84\x95\x36\x59\x7a\x6b" 3299 + "\xaa\xb3\x60\xad\xce\x9f\x9f\x28" 3300 + "\xe0\x01\x75\x22\xc4\x4e\xa9\x62" 3301 + "\x5c\x62\x0d\x00\xcb\x13\xe8\x43" 3302 + "\x72\xd4\x2d\x53\x46\xb5\xd1\x16" 3303 + "\x22\x18\xdf\x34\x33\xf5\xd6\x1c" 3304 + "\xb8\x79\x78\x97\x94\xff\x72\x13" 3305 + "\x4c\x27\xfc\xcb\xbf\x01\x53\xa6" 3306 + "\xb4\x50\x6e\xde\xdf\xb5\x43\xa4" 3307 + "\x59\xdf\x52\xf9\x7c\xe0\x11\x6f" 3308 + "\x2d\x14\x8e\x24\x61\x2c\xe1\x17" 3309 + "\xcc\xce\x51\x0c\x19\x8a\x82\x30" 3310 + "\x94\xd5\x3d\x6a\x53\x06\x5e\xbd" 3311 + "\xb7\xeb\xfa\xfd\x27\x51\xde\x85" 3312 + "\x1e\x86\x53\x11\x53\x94\x00\xee" 3313 + "\x2b\x8c\x08\x2a\xbf\xdd\xae\x11" 3314 + "\xcb\x1e\xa2\x07\x9a\x80\xcf\x62" 3315 + "\x9b\x09\xdc\x95\x3c\x96\x8e\xb1" 3316 + "\x09\xbd\xe4\xeb\xdb\xca\x70\x7a" 3317 + "\x9e\xfa\x31\x18\x45\x3c\x21\x33" 3318 + "\xb0\xb3\x2b\xea\xf3\x71\x2d\xe1" 3319 + "\x03\xad\x1b\x48\xd4\x67\x27\xf0" 3320 + "\x62\xe4\x3d\xfb\x9b\x08\x76\xe7" 3321 + "\xdd\x2b\x01\x39\x04\x5a\x58\x7a" 3322 + "\xf7\x11\x90\xec\xbd\x51\x5c\x32" 3323 + "\x6b\xd7\x35\x39\x02\x6b\xf2\xa6" 3324 + "\xd0\x0d\x07\xe1\x06\xc4\x5b\x7d" 3325 + "\xe4\x6a\xd7\xee\x15\x1f\x83\xb4" 3326 + "\xa3\xa7\x5e\xc3\x90\xb7\xef\xd3" 3327 + "\xb7\x4f\xf8\x92\x4c\xb7\x3c\x29" 3328 + "\xcd\x7e\x2b\x5d\x43\xea\x42\xe7" 3329 + "\x74\x3f\x7d\x58\x88\x75\xde\x3e", 3330 + .rlen = 512, 3331 + } 3332 + }; 3333 + 3334 + static struct cipher_testvec aes_lrw_dec_tv_template[] = { 3335 + /* from http://grouper.ieee.org/groups/1619/email/pdf00017.pdf */ 3336 + /* same as enc vectors with input and result reversed */ 3337 + { /* LRW-32-AES 1 */ 3338 + .key = "\x45\x62\xac\x25\xf8\x28\x17\x6d" 3339 + "\x4c\x26\x84\x14\xb5\x68\x01\x85" 3340 + "\x25\x8e\x2a\x05\xe7\x3e\x9d\x03" 3341 + "\xee\x5a\x83\x0c\xcc\x09\x4c\x87", 3342 + .klen = 32, 3343 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3344 + "\x00\x00\x00\x00\x00\x00\x00\x01", 3345 + .input = "\xf1\xb2\x73\xcd\x65\xa3\xdf\x5f" 3346 + "\xe9\x5d\x48\x92\x54\x63\x4e\xb8", 3347 + .ilen = 16, 3348 + .result = "\x30\x31\x32\x33\x34\x35\x36\x37" 3349 + "\x38\x39\x41\x42\x43\x44\x45\x46", 3350 + .rlen = 16, 3351 + }, { /* LRW-32-AES 2 */ 3352 + .key = "\x59\x70\x47\x14\xf5\x57\x47\x8c" 3353 + "\xd7\x79\xe8\x0f\x54\x88\x79\x44" 3354 + "\x0d\x48\xf0\xb7\xb1\x5a\x53\xea" 3355 + "\x1c\xaa\x6b\x29\xc2\xca\xfb\xaf", 3356 + .klen = 32, 3357 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3358 + "\x00\x00\x00\x00\x00\x00\x00\x02", 3359 + .input = "\x00\xc8\x2b\xae\x95\xbb\xcd\xe5" 3360 + "\x27\x4f\x07\x69\xb2\x60\xe1\x36", 3361 + .ilen = 16, 3362 + .result = "\x30\x31\x32\x33\x34\x35\x36\x37" 3363 + "\x38\x39\x41\x42\x43\x44\x45\x46", 3364 + .rlen = 16, 3365 + }, { /* LRW-32-AES 3 */ 3366 + .key = "\xd8\x2a\x91\x34\xb2\x6a\x56\x50" 3367 + "\x30\xfe\x69\xe2\x37\x7f\x98\x47" 3368 + "\xcd\xf9\x0b\x16\x0c\x64\x8f\xb6" 3369 + "\xb0\x0d\x0d\x1b\xae\x85\x87\x1f", 3370 + .klen = 32, 3371 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3372 + "\x00\x00\x00\x02\x00\x00\x00\x00", 3373 + .input = "\x76\x32\x21\x83\xed\x8f\xf1\x82" 3374 + "\xf9\x59\x62\x03\x69\x0e\x5e\x01", 3375 + .ilen = 16, 3376 + .result = "\x30\x31\x32\x33\x34\x35\x36\x37" 3377 + "\x38\x39\x41\x42\x43\x44\x45\x46", 3378 + .rlen = 16, 3379 + }, { /* LRW-32-AES 4 */ 3380 + .key = "\x0f\x6a\xef\xf8\xd3\xd2\xbb\x15" 3381 + "\x25\x83\xf7\x3c\x1f\x01\x28\x74" 3382 + "\xca\xc6\xbc\x35\x4d\x4a\x65\x54" 3383 + "\x90\xae\x61\xcf\x7b\xae\xbd\xcc" 3384 + "\xad\xe4\x94\xc5\x4a\x29\xae\x70", 3385 + .klen = 40, 3386 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3387 + "\x00\x00\x00\x00\x00\x00\x00\x01", 3388 + .input = "\x9c\x0f\x15\x2f\x55\xa2\xd8\xf0" 3389 + "\xd6\x7b\x8f\x9e\x28\x22\xbc\x41", 3390 + .ilen = 16, 3391 + .result = "\x30\x31\x32\x33\x34\x35\x36\x37" 3392 + "\x38\x39\x41\x42\x43\x44\x45\x46", 3393 + .rlen = 16, 3394 + }, { /* LRW-32-AES 5 */ 3395 + .key = "\x8a\xd4\xee\x10\x2f\xbd\x81\xff" 3396 + "\xf8\x86\xce\xac\x93\xc5\xad\xc6" 3397 + "\xa0\x19\x07\xc0\x9d\xf7\xbb\xdd" 3398 + "\x52\x13\xb2\xb7\xf0\xff\x11\xd8" 3399 + "\xd6\x08\xd0\xcd\x2e\xb1\x17\x6f", 3400 + .klen = 40, 3401 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3402 + "\x00\x00\x00\x02\x00\x00\x00\x00", 3403 + .input = "\xd4\x27\x6a\x7f\x14\x91\x3d\x65" 3404 + "\xc8\x60\x48\x02\x87\xe3\x34\x06", 3405 + .ilen = 16, 3406 + .result = "\x30\x31\x32\x33\x34\x35\x36\x37" 3407 + "\x38\x39\x41\x42\x43\x44\x45\x46", 3408 + .rlen = 16, 3409 + }, { /* LRW-32-AES 6 */ 3410 + .key = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c" 3411 + "\x23\x84\xcb\x1c\x77\xd6\x19\x5d" 3412 + "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21" 3413 + "\xa7\x9c\x21\xf8\xcb\x90\x02\x89" 3414 + "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1" 3415 + "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e", 3416 + .klen = 48, 3417 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3418 + "\x00\x00\x00\x00\x00\x00\x00\x01", 3419 + .input = "\xbd\x06\xb8\xe1\xdb\x98\x89\x9e" 3420 + "\xc4\x98\xe4\x91\xcf\x1c\x70\x2b", 3421 + .ilen = 16, 3422 + .result = "\x30\x31\x32\x33\x34\x35\x36\x37" 3423 + "\x38\x39\x41\x42\x43\x44\x45\x46", 3424 + .rlen = 16, 3425 + }, { /* LRW-32-AES 7 */ 3426 + .key = "\xfb\x76\x15\xb2\x3d\x80\x89\x1d" 3427 + "\xd4\x70\x98\x0b\xc7\x95\x84\xc8" 3428 + "\xb2\xfb\x64\xce\x60\x97\x87\x8d" 3429 + "\x17\xfc\xe4\x5a\x49\xe8\x30\xb7" 3430 + "\x6e\x78\x17\xe7\x2d\x5e\x12\xd4" 3431 + "\x60\x64\x04\x7a\xf1\x2f\x9e\x0c", 3432 + .klen = 48, 3433 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3434 + "\x00\x00\x00\x02\x00\x00\x00\x00", 3435 + .input = "\x5b\x90\x8e\xc1\xab\xdd\x67\x5f" 3436 + "\x3d\x69\x8a\x95\x53\xc8\x9c\xe5", 3437 + .ilen = 16, 3438 + .result = "\x30\x31\x32\x33\x34\x35\x36\x37" 3439 + "\x38\x39\x41\x42\x43\x44\x45\x46", 3440 + .rlen = 16, 3441 + }, { 3442 + /* http://www.mail-archive.com/stds-p1619@listserv.ieee.org/msg00173.html */ 3443 + .key = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c" 3444 + "\x23\x84\xcb\x1c\x77\xd6\x19\x5d" 3445 + "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21" 3446 + "\xa7\x9c\x21\xf8\xcb\x90\x02\x89" 3447 + "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1" 3448 + "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e", 3449 + .klen = 48, 3450 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3451 + "\x00\x00\x00\x00\x00\x00\x00\x01", 3452 + .input = "\x1a\x1d\xa9\x30\xad\xf9\x2f\x9b" 3453 + "\xb6\x1d\xae\xef\xf0\x2f\xf8\x5a" 3454 + "\x39\x3c\xbf\x2a\xb2\x45\xb2\x23" 3455 + "\x1b\x63\x3c\xcf\xaa\xbe\xcf\x4e" 3456 + "\xfa\xe8\x29\xc2\x20\x68\x2b\x3c" 3457 + "\x2e\x8b\xf7\x6e\x25\xbd\xe3\x3d" 3458 + "\x66\x27\xd6\xaf\xd6\x64\x3e\xe3" 3459 + "\xe8\x58\x46\x97\x39\x51\x07\xde" 3460 + "\xcb\x37\xbc\xa9\xc0\x5f\x75\xc3" 3461 + "\x0e\x84\x23\x1d\x16\xd4\x1c\x59" 3462 + "\x9c\x1a\x02\x55\xab\x3a\x97\x1d" 3463 + "\xdf\xdd\xc7\x06\x51\xd7\x70\xae" 3464 + "\x23\xc6\x8c\xf5\x1e\xa0\xe5\x82" 3465 + "\xb8\xb2\xbf\x04\xa0\x32\x8e\x68" 3466 + "\xeb\xaf\x6e\x2d\x94\x22\x2f\xce" 3467 + "\x4c\xb5\x59\xe2\xa2\x2f\xa0\x98" 3468 + "\x1a\x97\xc6\xd4\xb5\x00\x59\xf2" 3469 + "\x84\x14\x72\xb1\x9a\x6e\xa3\x7f" 3470 + "\xea\x20\xe7\xcb\x65\x77\x3a\xdf" 3471 + "\xc8\x97\x67\x15\xc2\x2a\x27\xcc" 3472 + "\x18\x55\xa1\x24\x0b\x24\x24\xaf" 3473 + "\x5b\xec\x68\xb8\xc8\xf5\xba\x63" 3474 + "\xff\xed\x89\xce\xd5\x3d\x88\xf3" 3475 + "\x25\xef\x05\x7c\x3a\xef\xeb\xd8" 3476 + "\x7a\x32\x0d\xd1\x1e\x58\x59\x99" 3477 + "\x90\x25\xb5\x26\xb0\xe3\x2b\x6c" 3478 + "\x4c\xa9\x8b\x84\x4f\x5e\x01\x50" 3479 + "\x41\x30\x58\xc5\x62\x74\x52\x1d" 3480 + "\x45\x24\x6a\x42\x64\x4f\x97\x1c" 3481 + "\xa8\x66\xb5\x6d\x79\xd4\x0d\x48" 3482 + "\xc5\x5f\xf3\x90\x32\xdd\xdd\xe1" 3483 + "\xe4\xa9\x9f\xfc\xc3\x52\x5a\x46" 3484 + "\xe4\x81\x84\x95\x36\x59\x7a\x6b" 3485 + "\xaa\xb3\x60\xad\xce\x9f\x9f\x28" 3486 + "\xe0\x01\x75\x22\xc4\x4e\xa9\x62" 3487 + "\x5c\x62\x0d\x00\xcb\x13\xe8\x43" 3488 + "\x72\xd4\x2d\x53\x46\xb5\xd1\x16" 3489 + "\x22\x18\xdf\x34\x33\xf5\xd6\x1c" 3490 + "\xb8\x79\x78\x97\x94\xff\x72\x13" 3491 + "\x4c\x27\xfc\xcb\xbf\x01\x53\xa6" 3492 + "\xb4\x50\x6e\xde\xdf\xb5\x43\xa4" 3493 + "\x59\xdf\x52\xf9\x7c\xe0\x11\x6f" 3494 + "\x2d\x14\x8e\x24\x61\x2c\xe1\x17" 3495 + "\xcc\xce\x51\x0c\x19\x8a\x82\x30" 3496 + "\x94\xd5\x3d\x6a\x53\x06\x5e\xbd" 3497 + "\xb7\xeb\xfa\xfd\x27\x51\xde\x85" 3498 + "\x1e\x86\x53\x11\x53\x94\x00\xee" 3499 + "\x2b\x8c\x08\x2a\xbf\xdd\xae\x11" 3500 + "\xcb\x1e\xa2\x07\x9a\x80\xcf\x62" 3501 + "\x9b\x09\xdc\x95\x3c\x96\x8e\xb1" 3502 + "\x09\xbd\xe4\xeb\xdb\xca\x70\x7a" 3503 + "\x9e\xfa\x31\x18\x45\x3c\x21\x33" 3504 + "\xb0\xb3\x2b\xea\xf3\x71\x2d\xe1" 3505 + "\x03\xad\x1b\x48\xd4\x67\x27\xf0" 3506 + "\x62\xe4\x3d\xfb\x9b\x08\x76\xe7" 3507 + "\xdd\x2b\x01\x39\x04\x5a\x58\x7a" 3508 + "\xf7\x11\x90\xec\xbd\x51\x5c\x32" 3509 + "\x6b\xd7\x35\x39\x02\x6b\xf2\xa6" 3510 + "\xd0\x0d\x07\xe1\x06\xc4\x5b\x7d" 3511 + "\xe4\x6a\xd7\xee\x15\x1f\x83\xb4" 3512 + "\xa3\xa7\x5e\xc3\x90\xb7\xef\xd3" 3513 + "\xb7\x4f\xf8\x92\x4c\xb7\x3c\x29" 3514 + "\xcd\x7e\x2b\x5d\x43\xea\x42\xe7" 3515 + "\x74\x3f\x7d\x58\x88\x75\xde\x3e", 3516 + .ilen = 512, 3517 + .result = "\x05\x11\xb7\x18\xab\xc6\x2d\xac" 3518 + "\x70\x5d\xf6\x22\x94\xcd\xe5\x6c" 3519 + "\x17\x6b\xf6\x1c\xf0\xf3\x6e\xf8" 3520 + "\x50\x38\x1f\x71\x49\xb6\x57\xd6" 3521 + "\x8f\xcb\x8d\x6b\xe3\xa6\x29\x90" 3522 + "\xfe\x2a\x62\x82\xae\x6d\x8b\xf6" 3523 + "\xad\x1e\x9e\x20\x5f\x38\xbe\x04" 3524 + "\xda\x10\x8e\xed\xa2\xa4\x87\xab" 3525 + "\xda\x6b\xb4\x0c\x75\xba\xd3\x7c" 3526 + "\xc9\xac\x42\x31\x95\x7c\xc9\x04" 3527 + "\xeb\xd5\x6e\x32\x69\x8a\xdb\xa6" 3528 + "\x15\xd7\x3f\x4f\x2f\x66\x69\x03" 3529 + "\x9c\x1f\x54\x0f\xde\x1f\xf3\x65" 3530 + "\x4c\x96\x12\xed\x7c\x92\x03\x01" 3531 + "\x6f\xbc\x35\x93\xac\xf1\x27\xf1" 3532 + "\xb4\x96\x82\x5a\x5f\xb0\xa0\x50" 3533 + "\x89\xa4\x8e\x66\x44\x85\xcc\xfd" 3534 + "\x33\x14\x70\xe3\x96\xb2\xc3\xd3" 3535 + "\xbb\x54\x5a\x1a\xf9\x74\xa2\xc5" 3536 + "\x2d\x64\x75\xdd\xb4\x54\xe6\x74" 3537 + "\x8c\xd3\x9d\x9e\x86\xab\x51\x53" 3538 + "\xb7\x93\x3e\x6f\xd0\x4e\x2c\x40" 3539 + "\xf6\xa8\x2e\x3e\x9d\xf4\x66\xa5" 3540 + "\x76\x12\x73\x44\x1a\x56\xd7\x72" 3541 + "\x88\xcd\x21\x8c\x4c\x0f\xfe\xda" 3542 + "\x95\xe0\x3a\xa6\xa5\x84\x46\xcd" 3543 + "\xd5\x3e\x9d\x3a\xe2\x67\xe6\x60" 3544 + "\x1a\xe2\x70\x85\x58\xc2\x1b\x09" 3545 + "\xe1\xd7\x2c\xca\xad\xa8\x8f\xf9" 3546 + "\xac\xb3\x0e\xdb\xca\x2e\xe2\xb8" 3547 + "\x51\x71\xd9\x3c\x6c\xf1\x56\xf8" 3548 + "\xea\x9c\xf1\xfb\x0c\xe6\xb7\x10" 3549 + "\x1c\xf8\xa9\x7c\xe8\x53\x35\xc1" 3550 + "\x90\x3e\x76\x4a\x74\xa4\x21\x2c" 3551 + "\xf6\x2c\x4e\x0f\x94\x3a\x88\x2e" 3552 + "\x41\x09\x6a\x33\x7d\xf6\xdd\x3f" 3553 + "\x8d\x23\x31\x74\x84\xeb\x88\x6e" 3554 + "\xcc\xb9\xbc\x22\x83\x19\x07\x22" 3555 + "\xa5\x2d\xdf\xa5\xf3\x80\x85\x78" 3556 + "\x84\x39\x6a\x6d\x6a\x99\x4f\xa5" 3557 + "\x15\xfe\x46\xb0\xe4\x6c\xa5\x41" 3558 + "\x3c\xce\x8f\x42\x60\x71\xa7\x75" 3559 + "\x08\x40\x65\x8a\x82\xbf\xf5\x43" 3560 + "\x71\x96\xa9\x4d\x44\x8a\x20\xbe" 3561 + "\xfa\x4d\xbb\xc0\x7d\x31\x96\x65" 3562 + "\xe7\x75\xe5\x3e\xfd\x92\x3b\xc9" 3563 + "\x55\xbb\x16\x7e\xf7\xc2\x8c\xa4" 3564 + "\x40\x1d\xe5\xef\x0e\xdf\xe4\x9a" 3565 + "\x62\x73\x65\xfd\x46\x63\x25\x3d" 3566 + "\x2b\xaf\xe5\x64\xfe\xa5\x5c\xcf" 3567 + "\x24\xf3\xb4\xac\x64\xba\xdf\x4b" 3568 + "\xc6\x96\x7d\x81\x2d\x8d\x97\xf7" 3569 + "\xc5\x68\x77\x84\x32\x2b\xcc\x85" 3570 + "\x74\x96\xf0\x12\x77\x61\xb9\xeb" 3571 + "\x71\xaa\x82\xcb\x1c\xdb\x89\xc8" 3572 + "\xc6\xb5\xe3\x5c\x7d\x39\x07\x24" 3573 + "\xda\x39\x87\x45\xc0\x2b\xbb\x01" 3574 + "\xac\xbc\x2a\x5c\x7f\xfc\xe8\xce" 3575 + "\x6d\x9c\x6f\xed\xd3\xc1\xa1\xd6" 3576 + "\xc5\x55\xa9\x66\x2f\xe1\xc8\x32" 3577 + "\xa6\x5d\xa4\x3a\x98\x73\xe8\x45" 3578 + "\xa4\xc7\xa8\xb4\xf6\x13\x03\xf6" 3579 + "\xe9\x2e\xc4\x29\x0f\x84\xdb\xc4" 3580 + "\x21\xc4\xc2\x75\x67\x89\x37\x0a", 3581 + .rlen = 512, 3582 + } 3583 + }; 3584 + 3585 + static struct cipher_testvec aes_xts_enc_tv_template[] = { 3586 + /* http://grouper.ieee.org/groups/1619/email/pdf00086.pdf */ 3587 + { /* XTS-AES 1 */ 3588 + .key = "\x00\x00\x00\x00\x00\x00\x00\x00" 3589 + "\x00\x00\x00\x00\x00\x00\x00\x00" 3590 + "\x00\x00\x00\x00\x00\x00\x00\x00" 3591 + "\x00\x00\x00\x00\x00\x00\x00\x00", 3592 + .klen = 32, 3593 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3594 + "\x00\x00\x00\x00\x00\x00\x00\x00", 3595 + .input = "\x00\x00\x00\x00\x00\x00\x00\x00" 3596 + "\x00\x00\x00\x00\x00\x00\x00\x00" 3597 + "\x00\x00\x00\x00\x00\x00\x00\x00" 3598 + "\x00\x00\x00\x00\x00\x00\x00\x00", 3599 + .ilen = 32, 3600 + .result = "\x91\x7c\xf6\x9e\xbd\x68\xb2\xec" 3601 + "\x9b\x9f\xe9\xa3\xea\xdd\xa6\x92" 3602 + "\xcd\x43\xd2\xf5\x95\x98\xed\x85" 3603 + "\x8c\x02\xc2\x65\x2f\xbf\x92\x2e", 3604 + .rlen = 32, 3605 + }, { /* XTS-AES 2 */ 3606 + .key = "\x11\x11\x11\x11\x11\x11\x11\x11" 3607 + "\x11\x11\x11\x11\x11\x11\x11\x11" 3608 + "\x22\x22\x22\x22\x22\x22\x22\x22" 3609 + "\x22\x22\x22\x22\x22\x22\x22\x22", 3610 + .klen = 32, 3611 + .iv = "\x33\x33\x33\x33\x33\x00\x00\x00" 3612 + "\x00\x00\x00\x00\x00\x00\x00\x00", 3613 + .input = "\x44\x44\x44\x44\x44\x44\x44\x44" 3614 + "\x44\x44\x44\x44\x44\x44\x44\x44" 3615 + "\x44\x44\x44\x44\x44\x44\x44\x44" 3616 + "\x44\x44\x44\x44\x44\x44\x44\x44", 3617 + .ilen = 32, 3618 + .result = "\xc4\x54\x18\x5e\x6a\x16\x93\x6e" 3619 + "\x39\x33\x40\x38\xac\xef\x83\x8b" 3620 + "\xfb\x18\x6f\xff\x74\x80\xad\xc4" 3621 + "\x28\x93\x82\xec\xd6\xd3\x94\xf0", 3622 + .rlen = 32, 3623 + }, { /* XTS-AES 3 */ 3624 + .key = "\xff\xfe\xfd\xfc\xfb\xfa\xf9\xf8" 3625 + "\xf7\xf6\xf5\xf4\xf3\xf2\xf1\xf0" 3626 + "\x22\x22\x22\x22\x22\x22\x22\x22" 3627 + "\x22\x22\x22\x22\x22\x22\x22\x22", 3628 + .klen = 32, 3629 + .iv = "\x33\x33\x33\x33\x33\x00\x00\x00" 3630 + "\x00\x00\x00\x00\x00\x00\x00\x00", 3631 + .input = "\x44\x44\x44\x44\x44\x44\x44\x44" 3632 + "\x44\x44\x44\x44\x44\x44\x44\x44" 3633 + "\x44\x44\x44\x44\x44\x44\x44\x44" 3634 + "\x44\x44\x44\x44\x44\x44\x44\x44", 3635 + .ilen = 32, 3636 + .result = "\xaf\x85\x33\x6b\x59\x7a\xfc\x1a" 3637 + "\x90\x0b\x2e\xb2\x1e\xc9\x49\xd2" 3638 + "\x92\xdf\x4c\x04\x7e\x0b\x21\x53" 3639 + "\x21\x86\xa5\x97\x1a\x22\x7a\x89", 3640 + .rlen = 32, 3641 + }, { /* XTS-AES 4 */ 3642 + .key = "\x27\x18\x28\x18\x28\x45\x90\x45" 3643 + "\x23\x53\x60\x28\x74\x71\x35\x26" 3644 + "\x31\x41\x59\x26\x53\x58\x97\x93" 3645 + "\x23\x84\x62\x64\x33\x83\x27\x95", 3646 + .klen = 32, 3647 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3648 + "\x00\x00\x00\x00\x00\x00\x00\x00", 3649 + .input = "\x00\x01\x02\x03\x04\x05\x06\x07" 3650 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 3651 + "\x10\x11\x12\x13\x14\x15\x16\x17" 3652 + "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 3653 + "\x20\x21\x22\x23\x24\x25\x26\x27" 3654 + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 3655 + "\x30\x31\x32\x33\x34\x35\x36\x37" 3656 + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 3657 + "\x40\x41\x42\x43\x44\x45\x46\x47" 3658 + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 3659 + "\x50\x51\x52\x53\x54\x55\x56\x57" 3660 + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 3661 + "\x60\x61\x62\x63\x64\x65\x66\x67" 3662 + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 3663 + "\x70\x71\x72\x73\x74\x75\x76\x77" 3664 + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 3665 + "\x80\x81\x82\x83\x84\x85\x86\x87" 3666 + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 3667 + "\x90\x91\x92\x93\x94\x95\x96\x97" 3668 + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 3669 + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 3670 + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 3671 + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 3672 + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 3673 + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 3674 + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 3675 + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 3676 + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 3677 + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 3678 + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 3679 + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 3680 + "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff" 3681 + "\x00\x01\x02\x03\x04\x05\x06\x07" 3682 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 3683 + "\x10\x11\x12\x13\x14\x15\x16\x17" 3684 + "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 3685 + "\x20\x21\x22\x23\x24\x25\x26\x27" 3686 + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 3687 + "\x30\x31\x32\x33\x34\x35\x36\x37" 3688 + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 3689 + "\x40\x41\x42\x43\x44\x45\x46\x47" 3690 + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 3691 + "\x50\x51\x52\x53\x54\x55\x56\x57" 3692 + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 3693 + "\x60\x61\x62\x63\x64\x65\x66\x67" 3694 + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 3695 + "\x70\x71\x72\x73\x74\x75\x76\x77" 3696 + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 3697 + "\x80\x81\x82\x83\x84\x85\x86\x87" 3698 + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 3699 + "\x90\x91\x92\x93\x94\x95\x96\x97" 3700 + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 3701 + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 3702 + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 3703 + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 3704 + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 3705 + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 3706 + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 3707 + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 3708 + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 3709 + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 3710 + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 3711 + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 3712 + "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff", 3713 + .ilen = 512, 3714 + .result = "\x27\xa7\x47\x9b\xef\xa1\xd4\x76" 3715 + "\x48\x9f\x30\x8c\xd4\xcf\xa6\xe2" 3716 + "\xa9\x6e\x4b\xbe\x32\x08\xff\x25" 3717 + "\x28\x7d\xd3\x81\x96\x16\xe8\x9c" 3718 + "\xc7\x8c\xf7\xf5\xe5\x43\x44\x5f" 3719 + "\x83\x33\xd8\xfa\x7f\x56\x00\x00" 3720 + "\x05\x27\x9f\xa5\xd8\xb5\xe4\xad" 3721 + "\x40\xe7\x36\xdd\xb4\xd3\x54\x12" 3722 + "\x32\x80\x63\xfd\x2a\xab\x53\xe5" 3723 + "\xea\x1e\x0a\x9f\x33\x25\x00\xa5" 3724 + "\xdf\x94\x87\xd0\x7a\x5c\x92\xcc" 3725 + "\x51\x2c\x88\x66\xc7\xe8\x60\xce" 3726 + "\x93\xfd\xf1\x66\xa2\x49\x12\xb4" 3727 + "\x22\x97\x61\x46\xae\x20\xce\x84" 3728 + "\x6b\xb7\xdc\x9b\xa9\x4a\x76\x7a" 3729 + "\xae\xf2\x0c\x0d\x61\xad\x02\x65" 3730 + "\x5e\xa9\x2d\xc4\xc4\xe4\x1a\x89" 3731 + "\x52\xc6\x51\xd3\x31\x74\xbe\x51" 3732 + "\xa1\x0c\x42\x11\x10\xe6\xd8\x15" 3733 + "\x88\xed\xe8\x21\x03\xa2\x52\xd8" 3734 + "\xa7\x50\xe8\x76\x8d\xef\xff\xed" 3735 + "\x91\x22\x81\x0a\xae\xb9\x9f\x91" 3736 + "\x72\xaf\x82\xb6\x04\xdc\x4b\x8e" 3737 + "\x51\xbc\xb0\x82\x35\xa6\xf4\x34" 3738 + "\x13\x32\xe4\xca\x60\x48\x2a\x4b" 3739 + "\xa1\xa0\x3b\x3e\x65\x00\x8f\xc5" 3740 + "\xda\x76\xb7\x0b\xf1\x69\x0d\xb4" 3741 + "\xea\xe2\x9c\x5f\x1b\xad\xd0\x3c" 3742 + "\x5c\xcf\x2a\x55\xd7\x05\xdd\xcd" 3743 + "\x86\xd4\x49\x51\x1c\xeb\x7e\xc3" 3744 + "\x0b\xf1\x2b\x1f\xa3\x5b\x91\x3f" 3745 + "\x9f\x74\x7a\x8a\xfd\x1b\x13\x0e" 3746 + "\x94\xbf\xf9\x4e\xff\xd0\x1a\x91" 3747 + "\x73\x5c\xa1\x72\x6a\xcd\x0b\x19" 3748 + "\x7c\x4e\x5b\x03\x39\x36\x97\xe1" 3749 + "\x26\x82\x6f\xb6\xbb\xde\x8e\xcc" 3750 + "\x1e\x08\x29\x85\x16\xe2\xc9\xed" 3751 + "\x03\xff\x3c\x1b\x78\x60\xf6\xde" 3752 + "\x76\xd4\xce\xcd\x94\xc8\x11\x98" 3753 + "\x55\xef\x52\x97\xca\x67\xe9\xf3" 3754 + "\xe7\xff\x72\xb1\xe9\x97\x85\xca" 3755 + "\x0a\x7e\x77\x20\xc5\xb3\x6d\xc6" 3756 + "\xd7\x2c\xac\x95\x74\xc8\xcb\xbc" 3757 + "\x2f\x80\x1e\x23\xe5\x6f\xd3\x44" 3758 + "\xb0\x7f\x22\x15\x4b\xeb\xa0\xf0" 3759 + "\x8c\xe8\x89\x1e\x64\x3e\xd9\x95" 3760 + "\xc9\x4d\x9a\x69\xc9\xf1\xb5\xf4" 3761 + "\x99\x02\x7a\x78\x57\x2a\xee\xbd" 3762 + "\x74\xd2\x0c\xc3\x98\x81\xc2\x13" 3763 + "\xee\x77\x0b\x10\x10\xe4\xbe\xa7" 3764 + "\x18\x84\x69\x77\xae\x11\x9f\x7a" 3765 + "\x02\x3a\xb5\x8c\xca\x0a\xd7\x52" 3766 + "\xaf\xe6\x56\xbb\x3c\x17\x25\x6a" 3767 + "\x9f\x6e\x9b\xf1\x9f\xdd\x5a\x38" 3768 + "\xfc\x82\xbb\xe8\x72\xc5\x53\x9e" 3769 + "\xdb\x60\x9e\xf4\xf7\x9c\x20\x3e" 3770 + "\xbb\x14\x0f\x2e\x58\x3c\xb2\xad" 3771 + "\x15\xb4\xaa\x5b\x65\x50\x16\xa8" 3772 + "\x44\x92\x77\xdb\xd4\x77\xef\x2c" 3773 + "\x8d\x6c\x01\x7d\xb7\x38\xb1\x8d" 3774 + "\xeb\x4a\x42\x7d\x19\x23\xce\x3f" 3775 + "\xf2\x62\x73\x57\x79\xa4\x18\xf2" 3776 + "\x0a\x28\x2d\xf9\x20\x14\x7b\xea" 3777 + "\xbe\x42\x1e\xe5\x31\x9d\x05\x68", 3778 + .rlen = 512, 3779 + } 3780 + }; 3781 + 3782 + static struct cipher_testvec aes_xts_dec_tv_template[] = { 3783 + /* http://grouper.ieee.org/groups/1619/email/pdf00086.pdf */ 3784 + { /* XTS-AES 1 */ 3785 + .key = "\x00\x00\x00\x00\x00\x00\x00\x00" 3786 + "\x00\x00\x00\x00\x00\x00\x00\x00" 3787 + "\x00\x00\x00\x00\x00\x00\x00\x00" 3788 + "\x00\x00\x00\x00\x00\x00\x00\x00", 3789 + .klen = 32, 3790 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3791 + "\x00\x00\x00\x00\x00\x00\x00\x00", 3792 + .input = "\x91\x7c\xf6\x9e\xbd\x68\xb2\xec" 3793 + "\x9b\x9f\xe9\xa3\xea\xdd\xa6\x92" 3794 + "\xcd\x43\xd2\xf5\x95\x98\xed\x85" 3795 + "\x8c\x02\xc2\x65\x2f\xbf\x92\x2e", 3796 + .ilen = 32, 3797 + .result = "\x00\x00\x00\x00\x00\x00\x00\x00" 3798 + "\x00\x00\x00\x00\x00\x00\x00\x00" 3799 + "\x00\x00\x00\x00\x00\x00\x00\x00" 3800 + "\x00\x00\x00\x00\x00\x00\x00\x00", 3801 + .rlen = 32, 3802 + }, { /* XTS-AES 2 */ 3803 + .key = "\x11\x11\x11\x11\x11\x11\x11\x11" 3804 + "\x11\x11\x11\x11\x11\x11\x11\x11" 3805 + "\x22\x22\x22\x22\x22\x22\x22\x22" 3806 + "\x22\x22\x22\x22\x22\x22\x22\x22", 3807 + .klen = 32, 3808 + .iv = "\x33\x33\x33\x33\x33\x00\x00\x00" 3809 + "\x00\x00\x00\x00\x00\x00\x00\x00", 3810 + .input = "\xc4\x54\x18\x5e\x6a\x16\x93\x6e" 3811 + "\x39\x33\x40\x38\xac\xef\x83\x8b" 3812 + "\xfb\x18\x6f\xff\x74\x80\xad\xc4" 3813 + "\x28\x93\x82\xec\xd6\xd3\x94\xf0", 3814 + .ilen = 32, 3815 + .result = "\x44\x44\x44\x44\x44\x44\x44\x44" 3816 + "\x44\x44\x44\x44\x44\x44\x44\x44" 3817 + "\x44\x44\x44\x44\x44\x44\x44\x44" 3818 + "\x44\x44\x44\x44\x44\x44\x44\x44", 3819 + .rlen = 32, 3820 + }, { /* XTS-AES 3 */ 3821 + .key = "\xff\xfe\xfd\xfc\xfb\xfa\xf9\xf8" 3822 + "\xf7\xf6\xf5\xf4\xf3\xf2\xf1\xf0" 3823 + "\x22\x22\x22\x22\x22\x22\x22\x22" 3824 + "\x22\x22\x22\x22\x22\x22\x22\x22", 3825 + .klen = 32, 3826 + .iv = "\x33\x33\x33\x33\x33\x00\x00\x00" 3827 + "\x00\x00\x00\x00\x00\x00\x00\x00", 3828 + .input = "\xaf\x85\x33\x6b\x59\x7a\xfc\x1a" 3829 + "\x90\x0b\x2e\xb2\x1e\xc9\x49\xd2" 3830 + "\x92\xdf\x4c\x04\x7e\x0b\x21\x53" 3831 + "\x21\x86\xa5\x97\x1a\x22\x7a\x89", 3832 + .ilen = 32, 3833 + .result = "\x44\x44\x44\x44\x44\x44\x44\x44" 3834 + "\x44\x44\x44\x44\x44\x44\x44\x44" 3835 + "\x44\x44\x44\x44\x44\x44\x44\x44" 3836 + "\x44\x44\x44\x44\x44\x44\x44\x44", 3837 + .rlen = 32, 3838 + }, { /* XTS-AES 4 */ 3839 + .key = "\x27\x18\x28\x18\x28\x45\x90\x45" 3840 + "\x23\x53\x60\x28\x74\x71\x35\x26" 3841 + "\x31\x41\x59\x26\x53\x58\x97\x93" 3842 + "\x23\x84\x62\x64\x33\x83\x27\x95", 3843 + .klen = 32, 3844 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 3845 + "\x00\x00\x00\x00\x00\x00\x00\x00", 3846 + .input = "\x27\xa7\x47\x9b\xef\xa1\xd4\x76" 3847 + "\x48\x9f\x30\x8c\xd4\xcf\xa6\xe2" 3848 + "\xa9\x6e\x4b\xbe\x32\x08\xff\x25" 3849 + "\x28\x7d\xd3\x81\x96\x16\xe8\x9c" 3850 + "\xc7\x8c\xf7\xf5\xe5\x43\x44\x5f" 3851 + "\x83\x33\xd8\xfa\x7f\x56\x00\x00" 3852 + "\x05\x27\x9f\xa5\xd8\xb5\xe4\xad" 3853 + "\x40\xe7\x36\xdd\xb4\xd3\x54\x12" 3854 + "\x32\x80\x63\xfd\x2a\xab\x53\xe5" 3855 + "\xea\x1e\x0a\x9f\x33\x25\x00\xa5" 3856 + "\xdf\x94\x87\xd0\x7a\x5c\x92\xcc" 3857 + "\x51\x2c\x88\x66\xc7\xe8\x60\xce" 3858 + "\x93\xfd\xf1\x66\xa2\x49\x12\xb4" 3859 + "\x22\x97\x61\x46\xae\x20\xce\x84" 3860 + "\x6b\xb7\xdc\x9b\xa9\x4a\x76\x7a" 3861 + "\xae\xf2\x0c\x0d\x61\xad\x02\x65" 3862 + "\x5e\xa9\x2d\xc4\xc4\xe4\x1a\x89" 3863 + "\x52\xc6\x51\xd3\x31\x74\xbe\x51" 3864 + "\xa1\x0c\x42\x11\x10\xe6\xd8\x15" 3865 + "\x88\xed\xe8\x21\x03\xa2\x52\xd8" 3866 + "\xa7\x50\xe8\x76\x8d\xef\xff\xed" 3867 + "\x91\x22\x81\x0a\xae\xb9\x9f\x91" 3868 + "\x72\xaf\x82\xb6\x04\xdc\x4b\x8e" 3869 + "\x51\xbc\xb0\x82\x35\xa6\xf4\x34" 3870 + "\x13\x32\xe4\xca\x60\x48\x2a\x4b" 3871 + "\xa1\xa0\x3b\x3e\x65\x00\x8f\xc5" 3872 + "\xda\x76\xb7\x0b\xf1\x69\x0d\xb4" 3873 + "\xea\xe2\x9c\x5f\x1b\xad\xd0\x3c" 3874 + "\x5c\xcf\x2a\x55\xd7\x05\xdd\xcd" 3875 + "\x86\xd4\x49\x51\x1c\xeb\x7e\xc3" 3876 + "\x0b\xf1\x2b\x1f\xa3\x5b\x91\x3f" 3877 + "\x9f\x74\x7a\x8a\xfd\x1b\x13\x0e" 3878 + "\x94\xbf\xf9\x4e\xff\xd0\x1a\x91" 3879 + "\x73\x5c\xa1\x72\x6a\xcd\x0b\x19" 3880 + "\x7c\x4e\x5b\x03\x39\x36\x97\xe1" 3881 + "\x26\x82\x6f\xb6\xbb\xde\x8e\xcc" 3882 + "\x1e\x08\x29\x85\x16\xe2\xc9\xed" 3883 + "\x03\xff\x3c\x1b\x78\x60\xf6\xde" 3884 + "\x76\xd4\xce\xcd\x94\xc8\x11\x98" 3885 + "\x55\xef\x52\x97\xca\x67\xe9\xf3" 3886 + "\xe7\xff\x72\xb1\xe9\x97\x85\xca" 3887 + "\x0a\x7e\x77\x20\xc5\xb3\x6d\xc6" 3888 + "\xd7\x2c\xac\x95\x74\xc8\xcb\xbc" 3889 + "\x2f\x80\x1e\x23\xe5\x6f\xd3\x44" 3890 + "\xb0\x7f\x22\x15\x4b\xeb\xa0\xf0" 3891 + "\x8c\xe8\x89\x1e\x64\x3e\xd9\x95" 3892 + "\xc9\x4d\x9a\x69\xc9\xf1\xb5\xf4" 3893 + "\x99\x02\x7a\x78\x57\x2a\xee\xbd" 3894 + "\x74\xd2\x0c\xc3\x98\x81\xc2\x13" 3895 + "\xee\x77\x0b\x10\x10\xe4\xbe\xa7" 3896 + "\x18\x84\x69\x77\xae\x11\x9f\x7a" 3897 + "\x02\x3a\xb5\x8c\xca\x0a\xd7\x52" 3898 + "\xaf\xe6\x56\xbb\x3c\x17\x25\x6a" 3899 + "\x9f\x6e\x9b\xf1\x9f\xdd\x5a\x38" 3900 + "\xfc\x82\xbb\xe8\x72\xc5\x53\x9e" 3901 + "\xdb\x60\x9e\xf4\xf7\x9c\x20\x3e" 3902 + "\xbb\x14\x0f\x2e\x58\x3c\xb2\xad" 3903 + "\x15\xb4\xaa\x5b\x65\x50\x16\xa8" 3904 + "\x44\x92\x77\xdb\xd4\x77\xef\x2c" 3905 + "\x8d\x6c\x01\x7d\xb7\x38\xb1\x8d" 3906 + "\xeb\x4a\x42\x7d\x19\x23\xce\x3f" 3907 + "\xf2\x62\x73\x57\x79\xa4\x18\xf2" 3908 + "\x0a\x28\x2d\xf9\x20\x14\x7b\xea" 3909 + "\xbe\x42\x1e\xe5\x31\x9d\x05\x68", 3910 + .ilen = 512, 3911 + .result = "\x00\x01\x02\x03\x04\x05\x06\x07" 3912 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 3913 + "\x10\x11\x12\x13\x14\x15\x16\x17" 3914 + "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 3915 + "\x20\x21\x22\x23\x24\x25\x26\x27" 3916 + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 3917 + "\x30\x31\x32\x33\x34\x35\x36\x37" 3918 + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 3919 + "\x40\x41\x42\x43\x44\x45\x46\x47" 3920 + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 3921 + "\x50\x51\x52\x53\x54\x55\x56\x57" 3922 + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 3923 + "\x60\x61\x62\x63\x64\x65\x66\x67" 3924 + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 3925 + "\x70\x71\x72\x73\x74\x75\x76\x77" 3926 + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 3927 + "\x80\x81\x82\x83\x84\x85\x86\x87" 3928 + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 3929 + "\x90\x91\x92\x93\x94\x95\x96\x97" 3930 + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 3931 + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 3932 + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 3933 + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 3934 + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 3935 + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 3936 + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 3937 + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 3938 + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 3939 + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 3940 + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 3941 + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 3942 + "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff" 3943 + "\x00\x01\x02\x03\x04\x05\x06\x07" 3944 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 3945 + "\x10\x11\x12\x13\x14\x15\x16\x17" 3946 + "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 3947 + "\x20\x21\x22\x23\x24\x25\x26\x27" 3948 + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 3949 + "\x30\x31\x32\x33\x34\x35\x36\x37" 3950 + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 3951 + "\x40\x41\x42\x43\x44\x45\x46\x47" 3952 + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 3953 + "\x50\x51\x52\x53\x54\x55\x56\x57" 3954 + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 3955 + "\x60\x61\x62\x63\x64\x65\x66\x67" 3956 + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 3957 + "\x70\x71\x72\x73\x74\x75\x76\x77" 3958 + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 3959 + "\x80\x81\x82\x83\x84\x85\x86\x87" 3960 + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 3961 + "\x90\x91\x92\x93\x94\x95\x96\x97" 3962 + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 3963 + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 3964 + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 3965 + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 3966 + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 3967 + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 3968 + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 3969 + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 3970 + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 3971 + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 3972 + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 3973 + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 3974 + "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff", 3975 + .rlen = 512, 3976 + } 3977 + }; 3978 + 3979 + 3980 + static struct cipher_testvec aes_ctr_enc_tv_template[] = { 3981 + { /* From RFC 3686 */ 3982 + .key = "\xae\x68\x52\xf8\x12\x10\x67\xcc" 3983 + "\x4b\xf7\xa5\x76\x55\x77\xf3\x9e" 3984 + "\x00\x00\x00\x30", 3985 + .klen = 20, 3986 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00", 3987 + .input = "Single block msg", 3988 + .ilen = 16, 3989 + .result = "\xe4\x09\x5d\x4f\xb7\xa7\xb3\x79" 3990 + "\x2d\x61\x75\xa3\x26\x13\x11\xb8", 3991 + .rlen = 16, 3992 + }, { 3993 + .key = "\x7e\x24\x06\x78\x17\xfa\xe0\xd7" 3994 + "\x43\xd6\xce\x1f\x32\x53\x91\x63" 3995 + "\x00\x6c\xb6\xdb", 3996 + .klen = 20, 3997 + .iv = "\xc0\x54\x3b\x59\xda\x48\xd9\x0b", 3998 + .input = "\x00\x01\x02\x03\x04\x05\x06\x07" 3999 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 4000 + "\x10\x11\x12\x13\x14\x15\x16\x17" 4001 + "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 4002 + .ilen = 32, 4003 + .result = "\x51\x04\xa1\x06\x16\x8a\x72\xd9" 4004 + "\x79\x0d\x41\xee\x8e\xda\xd3\x88" 4005 + "\xeb\x2e\x1e\xfc\x46\xda\x57\xc8" 4006 + "\xfc\xe6\x30\xdf\x91\x41\xbe\x28", 4007 + .rlen = 32, 4008 + }, { 4009 + .key = "\x16\xaf\x5b\x14\x5f\xc9\xf5\x79" 4010 + "\xc1\x75\xf9\x3e\x3b\xfb\x0e\xed" 4011 + "\x86\x3d\x06\xcc\xfd\xb7\x85\x15" 4012 + "\x00\x00\x00\x48", 4013 + .klen = 28, 4014 + .iv = "\x36\x73\x3c\x14\x7d\x6d\x93\xcb", 4015 + .input = "Single block msg", 4016 + .ilen = 16, 4017 + .result = "\x4b\x55\x38\x4f\xe2\x59\xc9\xc8" 4018 + "\x4e\x79\x35\xa0\x03\xcb\xe9\x28", 4019 + .rlen = 16, 4020 + }, { 4021 + .key = "\x7c\x5c\xb2\x40\x1b\x3d\xc3\x3c" 4022 + "\x19\xe7\x34\x08\x19\xe0\xf6\x9c" 4023 + "\x67\x8c\x3d\xb8\xe6\xf6\xa9\x1a" 4024 + "\x00\x96\xb0\x3b", 4025 + .klen = 28, 4026 + .iv = "\x02\x0c\x6e\xad\xc2\xcb\x50\x0d", 4027 + .input = "\x00\x01\x02\x03\x04\x05\x06\x07" 4028 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 4029 + "\x10\x11\x12\x13\x14\x15\x16\x17" 4030 + "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 4031 + .ilen = 32, 4032 + .result = "\x45\x32\x43\xfc\x60\x9b\x23\x32" 4033 + "\x7e\xdf\xaa\xfa\x71\x31\xcd\x9f" 4034 + "\x84\x90\x70\x1c\x5a\xd4\xa7\x9c" 4035 + "\xfc\x1f\xe0\xff\x42\xf4\xfb\x00", 4036 + .rlen = 32, 4037 + }, { 4038 + .key = "\x77\x6b\xef\xf2\x85\x1d\xb0\x6f" 4039 + "\x4c\x8a\x05\x42\xc8\x69\x6f\x6c" 4040 + "\x6a\x81\xaf\x1e\xec\x96\xb4\xd3" 4041 + "\x7f\xc1\xd6\x89\xe6\xc1\xc1\x04" 4042 + "\x00\x00\x00\x60", 4043 + .klen = 36, 4044 + .iv = "\xdb\x56\x72\xc9\x7a\xa8\xf0\xb2", 4045 + .input = "Single block msg", 4046 + .ilen = 16, 4047 + .result = "\x14\x5a\xd0\x1d\xbf\x82\x4e\xc7" 4048 + "\x56\x08\x63\xdc\x71\xe3\xe0\xc0", 4049 + .rlen = 16, 4050 + }, { 4051 + .key = "\xf6\xd6\x6d\x6b\xd5\x2d\x59\xbb" 4052 + "\x07\x96\x36\x58\x79\xef\xf8\x86" 4053 + "\xc6\x6d\xd5\x1a\x5b\x6a\x99\x74" 4054 + "\x4b\x50\x59\x0c\x87\xa2\x38\x84" 4055 + "\x00\xfa\xac\x24", 4056 + .klen = 36, 4057 + .iv = "\xc1\x58\x5e\xf1\x5a\x43\xd8\x75", 4058 + .input = "\x00\x01\x02\x03\x04\x05\x06\x07" 4059 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 4060 + "\x10\x11\x12\x13\x14\x15\x16\x17" 4061 + "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 4062 + .ilen = 32, 4063 + .result = "\xf0\x5e\x23\x1b\x38\x94\x61\x2c" 4064 + "\x49\xee\x00\x0b\x80\x4e\xb2\xa9" 4065 + "\xb8\x30\x6b\x50\x8f\x83\x9d\x6a" 4066 + "\x55\x30\x83\x1d\x93\x44\xaf\x1c", 4067 + .rlen = 32, 4068 + }, { 4069 + // generated using Crypto++ 4070 + .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 4071 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 4072 + "\x10\x11\x12\x13\x14\x15\x16\x17" 4073 + "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 4074 + "\x00\x00\x00\x00", 4075 + .klen = 32 + 4, 4076 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00", 4077 + .input = 4078 + "\x00\x01\x02\x03\x04\x05\x06\x07" 4079 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 4080 + "\x10\x11\x12\x13\x14\x15\x16\x17" 4081 + "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 4082 + "\x20\x21\x22\x23\x24\x25\x26\x27" 4083 + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 4084 + "\x30\x31\x32\x33\x34\x35\x36\x37" 4085 + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 4086 + "\x40\x41\x42\x43\x44\x45\x46\x47" 4087 + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 4088 + "\x50\x51\x52\x53\x54\x55\x56\x57" 4089 + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 4090 + "\x60\x61\x62\x63\x64\x65\x66\x67" 4091 + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 4092 + "\x70\x71\x72\x73\x74\x75\x76\x77" 4093 + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 4094 + "\x80\x81\x82\x83\x84\x85\x86\x87" 4095 + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 4096 + "\x90\x91\x92\x93\x94\x95\x96\x97" 4097 + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 4098 + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 4099 + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 4100 + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 4101 + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 4102 + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 4103 + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 4104 + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 4105 + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 4106 + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 4107 + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 4108 + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 4109 + "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff" 4110 + "\x00\x03\x06\x09\x0c\x0f\x12\x15" 4111 + "\x18\x1b\x1e\x21\x24\x27\x2a\x2d" 4112 + "\x30\x33\x36\x39\x3c\x3f\x42\x45" 4113 + "\x48\x4b\x4e\x51\x54\x57\x5a\x5d" 4114 + "\x60\x63\x66\x69\x6c\x6f\x72\x75" 4115 + "\x78\x7b\x7e\x81\x84\x87\x8a\x8d" 4116 + "\x90\x93\x96\x99\x9c\x9f\xa2\xa5" 4117 + "\xa8\xab\xae\xb1\xb4\xb7\xba\xbd" 4118 + "\xc0\xc3\xc6\xc9\xcc\xcf\xd2\xd5" 4119 + "\xd8\xdb\xde\xe1\xe4\xe7\xea\xed" 4120 + "\xf0\xf3\xf6\xf9\xfc\xff\x02\x05" 4121 + "\x08\x0b\x0e\x11\x14\x17\x1a\x1d" 4122 + "\x20\x23\x26\x29\x2c\x2f\x32\x35" 4123 + "\x38\x3b\x3e\x41\x44\x47\x4a\x4d" 4124 + "\x50\x53\x56\x59\x5c\x5f\x62\x65" 4125 + "\x68\x6b\x6e\x71\x74\x77\x7a\x7d" 4126 + "\x80\x83\x86\x89\x8c\x8f\x92\x95" 4127 + "\x98\x9b\x9e\xa1\xa4\xa7\xaa\xad" 4128 + "\xb0\xb3\xb6\xb9\xbc\xbf\xc2\xc5" 4129 + "\xc8\xcb\xce\xd1\xd4\xd7\xda\xdd" 4130 + "\xe0\xe3\xe6\xe9\xec\xef\xf2\xf5" 4131 + "\xf8\xfb\xfe\x01\x04\x07\x0a\x0d" 4132 + "\x10\x13\x16\x19\x1c\x1f\x22\x25" 4133 + "\x28\x2b\x2e\x31\x34\x37\x3a\x3d" 4134 + "\x40\x43\x46\x49\x4c\x4f\x52\x55" 4135 + "\x58\x5b\x5e\x61\x64\x67\x6a\x6d" 4136 + "\x70\x73\x76\x79\x7c\x7f\x82\x85" 4137 + "\x88\x8b\x8e\x91\x94\x97\x9a\x9d" 4138 + "\xa0\xa3\xa6\xa9\xac\xaf\xb2\xb5" 4139 + "\xb8\xbb\xbe\xc1\xc4\xc7\xca\xcd" 4140 + "\xd0\xd3\xd6\xd9\xdc\xdf\xe2\xe5" 4141 + "\xe8\xeb\xee\xf1\xf4\xf7\xfa\xfd" 4142 + "\x00\x05\x0a\x0f\x14\x19\x1e\x23" 4143 + "\x28\x2d\x32\x37\x3c\x41\x46\x4b" 4144 + "\x50\x55\x5a\x5f\x64\x69\x6e\x73" 4145 + "\x78\x7d\x82\x87\x8c\x91\x96\x9b" 4146 + "\xa0\xa5\xaa\xaf\xb4\xb9\xbe\xc3" 4147 + "\xc8\xcd\xd2\xd7\xdc\xe1\xe6\xeb" 4148 + "\xf0\xf5\xfa\xff\x04\x09\x0e\x13" 4149 + "\x18\x1d\x22\x27\x2c\x31\x36\x3b" 4150 + "\x40\x45\x4a\x4f\x54\x59\x5e\x63" 4151 + "\x68\x6d\x72\x77\x7c\x81\x86\x8b" 4152 + "\x90\x95\x9a\x9f\xa4\xa9\xae\xb3" 4153 + "\xb8\xbd\xc2\xc7\xcc\xd1\xd6\xdb" 4154 + "\xe0\xe5\xea\xef\xf4\xf9\xfe\x03" 4155 + "\x08\x0d\x12\x17\x1c\x21\x26\x2b" 4156 + "\x30\x35\x3a\x3f\x44\x49\x4e\x53" 4157 + "\x58\x5d\x62\x67\x6c\x71\x76\x7b" 4158 + "\x80\x85\x8a\x8f\x94\x99\x9e\xa3" 4159 + "\xa8\xad\xb2\xb7\xbc\xc1\xc6\xcb" 4160 + "\xd0\xd5\xda\xdf\xe4\xe9\xee\xf3" 4161 + "\xf8\xfd\x02\x07\x0c\x11\x16\x1b" 4162 + "\x20\x25\x2a\x2f\x34\x39\x3e\x43" 4163 + "\x48\x4d\x52\x57\x5c\x61\x66\x6b" 4164 + "\x70\x75\x7a\x7f\x84\x89\x8e\x93" 4165 + "\x98\x9d\xa2\xa7\xac\xb1\xb6\xbb" 4166 + "\xc0\xc5\xca\xcf\xd4\xd9\xde\xe3" 4167 + "\xe8\xed\xf2\xf7\xfc\x01\x06\x0b" 4168 + "\x10\x15\x1a\x1f\x24\x29\x2e\x33" 4169 + "\x38\x3d\x42\x47\x4c\x51\x56\x5b" 4170 + "\x60\x65\x6a\x6f\x74\x79\x7e\x83" 4171 + "\x88\x8d\x92\x97\x9c\xa1\xa6\xab" 4172 + "\xb0\xb5\xba\xbf\xc4\xc9\xce\xd3" 4173 + "\xd8\xdd\xe2\xe7\xec\xf1\xf6\xfb" 4174 + "\x00\x07\x0e\x15\x1c\x23\x2a\x31" 4175 + "\x38\x3f\x46\x4d\x54\x5b\x62\x69" 4176 + "\x70\x77\x7e\x85\x8c\x93\x9a\xa1" 4177 + "\xa8\xaf\xb6\xbd\xc4\xcb\xd2\xd9" 4178 + "\xe0\xe7\xee\xf5\xfc\x03\x0a\x11" 4179 + "\x18\x1f\x26\x2d\x34\x3b\x42\x49" 4180 + "\x50\x57\x5e\x65\x6c\x73\x7a\x81" 4181 + "\x88\x8f\x96\x9d\xa4\xab\xb2\xb9" 4182 + "\xc0\xc7\xce\xd5\xdc\xe3\xea\xf1" 4183 + "\xf8\xff\x06\x0d\x14\x1b\x22\x29" 4184 + "\x30\x37\x3e\x45\x4c\x53\x5a\x61" 4185 + "\x68\x6f\x76\x7d\x84\x8b\x92\x99" 4186 + "\xa0\xa7\xae\xb5\xbc\xc3\xca\xd1" 4187 + "\xd8\xdf\xe6\xed\xf4\xfb\x02\x09" 4188 + "\x10\x17\x1e\x25\x2c\x33\x3a\x41" 4189 + "\x48\x4f\x56\x5d\x64\x6b\x72\x79" 4190 + "\x80\x87\x8e\x95\x9c\xa3\xaa\xb1" 4191 + "\xb8\xbf\xc6\xcd\xd4\xdb\xe2\xe9" 4192 + "\xf0\xf7\xfe\x05\x0c\x13\x1a\x21" 4193 + "\x28\x2f\x36\x3d\x44\x4b\x52\x59" 4194 + "\x60\x67\x6e\x75\x7c\x83\x8a\x91" 4195 + "\x98\x9f\xa6\xad\xb4\xbb\xc2\xc9" 4196 + "\xd0\xd7\xde\xe5\xec\xf3\xfa\x01" 4197 + "\x08\x0f\x16\x1d\x24\x2b\x32\x39" 4198 + "\x40\x47\x4e\x55\x5c\x63\x6a\x71" 4199 + "\x78\x7f\x86\x8d\x94\x9b\xa2\xa9" 4200 + "\xb0\xb7\xbe\xc5\xcc\xd3\xda\xe1" 4201 + "\xe8\xef\xf6\xfd\x04\x0b\x12\x19" 4202 + "\x20\x27\x2e\x35\x3c\x43\x4a\x51" 4203 + "\x58\x5f\x66\x6d\x74\x7b\x82\x89" 4204 + "\x90\x97\x9e\xa5\xac\xb3\xba\xc1" 4205 + "\xc8\xcf\xd6\xdd\xe4\xeb\xf2\xf9" 4206 + "\x00\x09\x12\x1b\x24\x2d\x36\x3f" 4207 + "\x48\x51\x5a\x63\x6c\x75\x7e\x87" 4208 + "\x90\x99\xa2\xab\xb4\xbd\xc6\xcf" 4209 + "\xd8\xe1\xea\xf3\xfc\x05\x0e\x17" 4210 + "\x20\x29\x32\x3b\x44\x4d\x56\x5f" 4211 + "\x68\x71\x7a\x83\x8c\x95\x9e\xa7" 4212 + "\xb0\xb9\xc2\xcb\xd4\xdd\xe6\xef" 4213 + "\xf8\x01\x0a\x13\x1c\x25\x2e\x37" 4214 + "\x40\x49\x52\x5b\x64\x6d\x76\x7f" 4215 + "\x88\x91\x9a\xa3\xac\xb5\xbe\xc7" 4216 + "\xd0\xd9\xe2\xeb\xf4\xfd\x06\x0f" 4217 + "\x18\x21\x2a\x33\x3c\x45\x4e\x57" 4218 + "\x60\x69\x72\x7b\x84\x8d\x96\x9f" 4219 + "\xa8\xb1\xba\xc3\xcc\xd5\xde\xe7" 4220 + "\xf0\xf9\x02\x0b\x14\x1d\x26\x2f" 4221 + "\x38\x41\x4a\x53\x5c\x65\x6e\x77" 4222 + "\x80\x89\x92\x9b\xa4\xad\xb6\xbf" 4223 + "\xc8\xd1\xda\xe3\xec\xf5\xfe\x07" 4224 + "\x10\x19\x22\x2b\x34\x3d\x46\x4f" 4225 + "\x58\x61\x6a\x73\x7c\x85\x8e\x97" 4226 + "\xa0\xa9\xb2\xbb\xc4\xcd\xd6\xdf" 4227 + "\xe8\xf1\xfa\x03\x0c\x15\x1e\x27" 4228 + "\x30\x39\x42\x4b\x54\x5d\x66\x6f" 4229 + "\x78\x81\x8a\x93\x9c\xa5\xae\xb7" 4230 + "\xc0\xc9\xd2\xdb\xe4\xed\xf6\xff" 4231 + "\x08\x11\x1a\x23\x2c\x35\x3e\x47" 4232 + "\x50\x59\x62\x6b\x74\x7d\x86\x8f" 4233 + "\x98\xa1\xaa\xb3\xbc\xc5\xce\xd7" 4234 + "\xe0\xe9\xf2\xfb\x04\x0d\x16\x1f" 4235 + "\x28\x31\x3a\x43\x4c\x55\x5e\x67" 4236 + "\x70\x79\x82\x8b\x94\x9d\xa6\xaf" 4237 + "\xb8\xc1\xca\xd3\xdc\xe5\xee\xf7" 4238 + "\x00\x0b\x16\x21\x2c\x37\x42\x4d" 4239 + "\x58\x63\x6e\x79\x84\x8f\x9a\xa5" 4240 + "\xb0\xbb\xc6\xd1\xdc\xe7\xf2\xfd" 4241 + "\x08\x13\x1e\x29\x34\x3f\x4a\x55" 4242 + "\x60\x6b\x76\x81\x8c\x97\xa2\xad" 4243 + "\xb8\xc3\xce\xd9\xe4\xef\xfa\x05" 4244 + "\x10\x1b\x26\x31\x3c\x47\x52\x5d" 4245 + "\x68\x73\x7e\x89\x94\x9f\xaa\xb5" 4246 + "\xc0\xcb\xd6\xe1\xec\xf7\x02\x0d" 4247 + "\x18\x23\x2e\x39\x44\x4f\x5a\x65" 4248 + "\x70\x7b\x86\x91\x9c\xa7\xb2\xbd" 4249 + "\xc8\xd3\xde\xe9\xf4\xff\x0a\x15" 4250 + "\x20\x2b\x36\x41\x4c\x57\x62\x6d" 4251 + "\x78\x83\x8e\x99\xa4\xaf\xba\xc5" 4252 + "\xd0\xdb\xe6\xf1\xfc\x07\x12\x1d" 4253 + "\x28\x33\x3e\x49\x54\x5f\x6a\x75" 4254 + "\x80\x8b\x96\xa1\xac\xb7\xc2\xcd" 4255 + "\xd8\xe3\xee\xf9\x04\x0f\x1a\x25" 4256 + "\x30\x3b\x46\x51\x5c\x67\x72\x7d" 4257 + "\x88\x93\x9e\xa9\xb4\xbf\xca\xd5" 4258 + "\xe0\xeb\xf6\x01\x0c\x17\x22\x2d" 4259 + "\x38\x43\x4e\x59\x64\x6f\x7a\x85" 4260 + "\x90\x9b\xa6\xb1\xbc\xc7\xd2\xdd" 4261 + "\xe8\xf3\xfe\x09\x14\x1f\x2a\x35" 4262 + "\x40\x4b\x56\x61\x6c\x77\x82\x8d" 4263 + "\x98\xa3\xae\xb9\xc4\xcf\xda\xe5" 4264 + "\xf0\xfb\x06\x11\x1c\x27\x32\x3d" 4265 + "\x48\x53\x5e\x69\x74\x7f\x8a\x95" 4266 + "\xa0\xab\xb6\xc1\xcc\xd7\xe2\xed" 4267 + "\xf8\x03\x0e\x19\x24\x2f\x3a\x45" 4268 + "\x50\x5b\x66\x71\x7c\x87\x92\x9d" 4269 + "\xa8\xb3\xbe\xc9\xd4\xdf\xea\xf5" 4270 + "\x00\x0d\x1a\x27\x34\x41\x4e\x5b" 4271 + "\x68\x75\x82\x8f\x9c\xa9\xb6\xc3" 4272 + "\xd0\xdd\xea\xf7\x04\x11\x1e\x2b" 4273 + "\x38\x45\x52\x5f\x6c\x79\x86\x93" 4274 + "\xa0\xad\xba\xc7\xd4\xe1\xee\xfb" 4275 + "\x08\x15\x22\x2f\x3c\x49\x56\x63" 4276 + "\x70\x7d\x8a\x97\xa4\xb1\xbe\xcb" 4277 + "\xd8\xe5\xf2\xff\x0c\x19\x26\x33" 4278 + "\x40\x4d\x5a\x67\x74\x81\x8e\x9b" 4279 + "\xa8\xb5\xc2\xcf\xdc\xe9\xf6\x03" 4280 + "\x10\x1d\x2a\x37\x44\x51\x5e\x6b" 4281 + "\x78\x85\x92\x9f\xac\xb9\xc6\xd3" 4282 + "\xe0\xed\xfa\x07\x14\x21\x2e\x3b" 4283 + "\x48\x55\x62\x6f\x7c\x89\x96\xa3" 4284 + "\xb0\xbd\xca\xd7\xe4\xf1\xfe\x0b" 4285 + "\x18\x25\x32\x3f\x4c\x59\x66\x73" 4286 + "\x80\x8d\x9a\xa7\xb4\xc1\xce\xdb" 4287 + "\xe8\xf5\x02\x0f\x1c\x29\x36\x43" 4288 + "\x50\x5d\x6a\x77\x84\x91\x9e\xab" 4289 + "\xb8\xc5\xd2\xdf\xec\xf9\x06\x13" 4290 + "\x20\x2d\x3a\x47\x54\x61\x6e\x7b" 4291 + "\x88\x95\xa2\xaf\xbc\xc9\xd6\xe3" 4292 + "\xf0\xfd\x0a\x17\x24\x31\x3e\x4b" 4293 + "\x58\x65\x72\x7f\x8c\x99\xa6\xb3" 4294 + "\xc0\xcd\xda\xe7\xf4\x01\x0e\x1b" 4295 + "\x28\x35\x42\x4f\x5c\x69\x76\x83" 4296 + "\x90\x9d\xaa\xb7\xc4\xd1\xde\xeb" 4297 + "\xf8\x05\x12\x1f\x2c\x39\x46\x53" 4298 + "\x60\x6d\x7a\x87\x94\xa1\xae\xbb" 4299 + "\xc8\xd5\xe2\xef\xfc\x09\x16\x23" 4300 + "\x30\x3d\x4a\x57\x64\x71\x7e\x8b" 4301 + "\x98\xa5\xb2\xbf\xcc\xd9\xe6\xf3" 4302 + "\x00\x0f\x1e\x2d\x3c\x4b\x5a\x69" 4303 + "\x78\x87\x96\xa5\xb4\xc3\xd2\xe1" 4304 + "\xf0\xff\x0e\x1d\x2c\x3b\x4a\x59" 4305 + "\x68\x77\x86\x95\xa4\xb3\xc2\xd1" 4306 + "\xe0\xef\xfe\x0d\x1c\x2b\x3a\x49" 4307 + "\x58\x67\x76\x85\x94\xa3\xb2\xc1" 4308 + "\xd0\xdf\xee\xfd\x0c\x1b\x2a\x39" 4309 + "\x48\x57\x66\x75\x84\x93\xa2\xb1" 4310 + "\xc0\xcf\xde\xed\xfc\x0b\x1a\x29" 4311 + "\x38\x47\x56\x65\x74\x83\x92\xa1" 4312 + "\xb0\xbf\xce\xdd\xec\xfb\x0a\x19" 4313 + "\x28\x37\x46\x55\x64\x73\x82\x91" 4314 + "\xa0\xaf\xbe\xcd\xdc\xeb\xfa\x09" 4315 + "\x18\x27\x36\x45\x54\x63\x72\x81" 4316 + "\x90\x9f\xae\xbd\xcc\xdb\xea\xf9" 4317 + "\x08\x17\x26\x35\x44\x53\x62\x71" 4318 + "\x80\x8f\x9e\xad\xbc\xcb\xda\xe9" 4319 + "\xf8\x07\x16\x25\x34\x43\x52\x61" 4320 + "\x70\x7f\x8e\x9d\xac\xbb\xca\xd9" 4321 + "\xe8\xf7\x06\x15\x24\x33\x42\x51" 4322 + "\x60\x6f\x7e\x8d\x9c\xab\xba\xc9" 4323 + "\xd8\xe7\xf6\x05\x14\x23\x32\x41" 4324 + "\x50\x5f\x6e\x7d\x8c\x9b\xaa\xb9" 4325 + "\xc8\xd7\xe6\xf5\x04\x13\x22\x31" 4326 + "\x40\x4f\x5e\x6d\x7c\x8b\x9a\xa9" 4327 + "\xb8\xc7\xd6\xe5\xf4\x03\x12\x21" 4328 + "\x30\x3f\x4e\x5d\x6c\x7b\x8a\x99" 4329 + "\xa8\xb7\xc6\xd5\xe4\xf3\x02\x11" 4330 + "\x20\x2f\x3e\x4d\x5c\x6b\x7a\x89" 4331 + "\x98\xa7\xb6\xc5\xd4\xe3\xf2\x01" 4332 + "\x10\x1f\x2e\x3d\x4c\x5b\x6a\x79" 4333 + "\x88\x97\xa6\xb5\xc4\xd3\xe2\xf1" 4334 + "\x00\x11\x22\x33\x44\x55\x66\x77" 4335 + "\x88\x99\xaa\xbb\xcc\xdd\xee\xff" 4336 + "\x10\x21\x32\x43\x54\x65\x76\x87" 4337 + "\x98\xa9\xba\xcb\xdc\xed\xfe\x0f" 4338 + "\x20\x31\x42\x53\x64\x75\x86\x97" 4339 + "\xa8\xb9\xca\xdb\xec\xfd\x0e\x1f" 4340 + "\x30\x41\x52\x63\x74\x85\x96\xa7" 4341 + "\xb8\xc9\xda\xeb\xfc\x0d\x1e\x2f" 4342 + "\x40\x51\x62\x73\x84\x95\xa6\xb7" 4343 + "\xc8\xd9\xea\xfb\x0c\x1d\x2e\x3f" 4344 + "\x50\x61\x72\x83\x94\xa5\xb6\xc7" 4345 + "\xd8\xe9\xfa\x0b\x1c\x2d\x3e\x4f" 4346 + "\x60\x71\x82\x93\xa4\xb5\xc6\xd7" 4347 + "\xe8\xf9\x0a\x1b\x2c\x3d\x4e\x5f" 4348 + "\x70\x81\x92\xa3\xb4\xc5\xd6\xe7" 4349 + "\xf8\x09\x1a\x2b\x3c\x4d\x5e\x6f" 4350 + "\x80\x91\xa2\xb3\xc4\xd5\xe6\xf7" 4351 + "\x08\x19\x2a\x3b\x4c\x5d\x6e\x7f" 4352 + "\x90\xa1\xb2\xc3\xd4\xe5\xf6\x07" 4353 + "\x18\x29\x3a\x4b\x5c\x6d\x7e\x8f" 4354 + "\xa0\xb1\xc2\xd3\xe4\xf5\x06\x17" 4355 + "\x28\x39\x4a\x5b\x6c\x7d\x8e\x9f" 4356 + "\xb0\xc1\xd2\xe3\xf4\x05\x16\x27" 4357 + "\x38\x49\x5a\x6b\x7c\x8d\x9e\xaf" 4358 + "\xc0\xd1\xe2\xf3\x04\x15\x26\x37" 4359 + "\x48\x59\x6a\x7b\x8c\x9d\xae\xbf" 4360 + "\xd0\xe1\xf2\x03\x14\x25\x36\x47" 4361 + "\x58\x69\x7a\x8b\x9c\xad\xbe\xcf" 4362 + "\xe0\xf1\x02\x13\x24\x35\x46\x57" 4363 + "\x68\x79\x8a\x9b\xac\xbd\xce\xdf" 4364 + "\xf0\x01\x12\x23\x34\x45\x56\x67" 4365 + "\x78\x89\x9a\xab\xbc\xcd\xde\xef" 4366 + "\x00\x13\x26\x39\x4c\x5f\x72\x85" 4367 + "\x98\xab\xbe\xd1\xe4\xf7\x0a\x1d" 4368 + "\x30\x43\x56\x69\x7c\x8f\xa2\xb5" 4369 + "\xc8\xdb\xee\x01\x14\x27\x3a\x4d" 4370 + "\x60\x73\x86\x99\xac\xbf\xd2\xe5" 4371 + "\xf8\x0b\x1e\x31\x44\x57\x6a\x7d" 4372 + "\x90\xa3\xb6\xc9\xdc\xef\x02\x15" 4373 + "\x28\x3b\x4e\x61\x74\x87\x9a\xad" 4374 + "\xc0\xd3\xe6\xf9\x0c\x1f\x32\x45" 4375 + "\x58\x6b\x7e\x91\xa4\xb7\xca\xdd" 4376 + "\xf0\x03\x16\x29\x3c\x4f\x62\x75" 4377 + "\x88\x9b\xae\xc1\xd4\xe7\xfa\x0d" 4378 + "\x20\x33\x46\x59\x6c\x7f\x92\xa5" 4379 + "\xb8\xcb\xde\xf1\x04\x17\x2a\x3d" 4380 + "\x50\x63\x76\x89\x9c\xaf\xc2\xd5" 4381 + "\xe8\xfb\x0e\x21\x34\x47\x5a\x6d" 4382 + "\x80\x93\xa6\xb9\xcc\xdf\xf2\x05" 4383 + "\x18\x2b\x3e\x51\x64\x77\x8a\x9d" 4384 + "\xb0\xc3\xd6\xe9\xfc\x0f\x22\x35" 4385 + "\x48\x5b\x6e\x81\x94\xa7\xba\xcd" 4386 + "\xe0\xf3\x06\x19\x2c\x3f\x52\x65" 4387 + "\x78\x8b\x9e\xb1\xc4\xd7\xea\xfd" 4388 + "\x10\x23\x36\x49\x5c\x6f\x82\x95" 4389 + "\xa8\xbb\xce\xe1\xf4\x07\x1a\x2d" 4390 + "\x40\x53\x66\x79\x8c\x9f\xb2\xc5" 4391 + "\xd8\xeb\xfe\x11\x24\x37\x4a\x5d" 4392 + "\x70\x83\x96\xa9\xbc\xcf\xe2\xf5" 4393 + "\x08\x1b\x2e\x41\x54\x67\x7a\x8d" 4394 + "\xa0\xb3\xc6\xd9\xec\xff\x12\x25" 4395 + "\x38\x4b\x5e\x71\x84\x97\xaa\xbd" 4396 + "\xd0\xe3\xf6\x09\x1c\x2f\x42\x55" 4397 + "\x68\x7b\x8e\xa1\xb4\xc7\xda\xed" 4398 + "\x00\x15\x2a\x3f\x54\x69\x7e\x93" 4399 + "\xa8\xbd\xd2\xe7\xfc\x11\x26\x3b" 4400 + "\x50\x65\x7a\x8f\xa4\xb9\xce\xe3" 4401 + "\xf8\x0d\x22\x37\x4c\x61\x76\x8b" 4402 + "\xa0\xb5\xca\xdf\xf4\x09\x1e\x33" 4403 + "\x48\x5d\x72\x87\x9c\xb1\xc6\xdb" 4404 + "\xf0\x05\x1a\x2f\x44\x59\x6e\x83" 4405 + "\x98\xad\xc2\xd7\xec\x01\x16\x2b" 4406 + "\x40\x55\x6a\x7f\x94\xa9\xbe\xd3" 4407 + "\xe8\xfd\x12\x27\x3c\x51\x66\x7b" 4408 + "\x90\xa5\xba\xcf\xe4\xf9\x0e\x23" 4409 + "\x38\x4d\x62\x77\x8c\xa1\xb6\xcb" 4410 + "\xe0\xf5\x0a\x1f\x34\x49\x5e\x73" 4411 + "\x88\x9d\xb2\xc7\xdc\xf1\x06\x1b" 4412 + "\x30\x45\x5a\x6f\x84\x99\xae\xc3" 4413 + "\xd8\xed\x02\x17\x2c\x41\x56\x6b" 4414 + "\x80\x95\xaa\xbf\xd4\xe9\xfe\x13" 4415 + "\x28\x3d\x52\x67\x7c\x91\xa6\xbb" 4416 + "\xd0\xe5\xfa\x0f\x24\x39\x4e\x63" 4417 + "\x78\x8d\xa2\xb7\xcc\xe1\xf6\x0b" 4418 + "\x20\x35\x4a\x5f\x74\x89\x9e\xb3" 4419 + "\xc8\xdd\xf2\x07\x1c\x31\x46\x5b" 4420 + "\x70\x85\x9a\xaf\xc4\xd9\xee\x03" 4421 + "\x18\x2d\x42\x57\x6c\x81\x96\xab" 4422 + "\xc0\xd5\xea\xff\x14\x29\x3e\x53" 4423 + "\x68\x7d\x92\xa7\xbc\xd1\xe6\xfb" 4424 + "\x10\x25\x3a\x4f\x64\x79\x8e\xa3" 4425 + "\xb8\xcd\xe2\xf7\x0c\x21\x36\x4b" 4426 + "\x60\x75\x8a\x9f\xb4\xc9\xde\xf3" 4427 + "\x08\x1d\x32\x47\x5c\x71\x86\x9b" 4428 + "\xb0\xc5\xda\xef\x04\x19\x2e\x43" 4429 + "\x58\x6d\x82\x97\xac\xc1\xd6\xeb" 4430 + "\x00\x17\x2e\x45\x5c\x73\x8a\xa1" 4431 + "\xb8\xcf\xe6\xfd\x14\x2b\x42\x59" 4432 + "\x70\x87\x9e\xb5\xcc\xe3\xfa\x11" 4433 + "\x28\x3f\x56\x6d\x84\x9b\xb2\xc9" 4434 + "\xe0\xf7\x0e\x25\x3c\x53\x6a\x81" 4435 + "\x98\xaf\xc6\xdd\xf4\x0b\x22\x39" 4436 + "\x50\x67\x7e\x95\xac\xc3\xda\xf1" 4437 + "\x08\x1f\x36\x4d\x64\x7b\x92\xa9" 4438 + "\xc0\xd7\xee\x05\x1c\x33\x4a\x61" 4439 + "\x78\x8f\xa6\xbd\xd4\xeb\x02\x19" 4440 + "\x30\x47\x5e\x75\x8c\xa3\xba\xd1" 4441 + "\xe8\xff\x16\x2d\x44\x5b\x72\x89" 4442 + "\xa0\xb7\xce\xe5\xfc\x13\x2a\x41" 4443 + "\x58\x6f\x86\x9d\xb4\xcb\xe2\xf9" 4444 + "\x10\x27\x3e\x55\x6c\x83\x9a\xb1" 4445 + "\xc8\xdf\xf6\x0d\x24\x3b\x52\x69" 4446 + "\x80\x97\xae\xc5\xdc\xf3\x0a\x21" 4447 + "\x38\x4f\x66\x7d\x94\xab\xc2\xd9" 4448 + "\xf0\x07\x1e\x35\x4c\x63\x7a\x91" 4449 + "\xa8\xbf\xd6\xed\x04\x1b\x32\x49" 4450 + "\x60\x77\x8e\xa5\xbc\xd3\xea\x01" 4451 + "\x18\x2f\x46\x5d\x74\x8b\xa2\xb9" 4452 + "\xd0\xe7\xfe\x15\x2c\x43\x5a\x71" 4453 + "\x88\x9f\xb6\xcd\xe4\xfb\x12\x29" 4454 + "\x40\x57\x6e\x85\x9c\xb3\xca\xe1" 4455 + "\xf8\x0f\x26\x3d\x54\x6b\x82\x99" 4456 + "\xb0\xc7\xde\xf5\x0c\x23\x3a\x51" 4457 + "\x68\x7f\x96\xad\xc4\xdb\xf2\x09" 4458 + "\x20\x37\x4e\x65\x7c\x93\xaa\xc1" 4459 + "\xd8\xef\x06\x1d\x34\x4b\x62\x79" 4460 + "\x90\xa7\xbe\xd5\xec\x03\x1a\x31" 4461 + "\x48\x5f\x76\x8d\xa4\xbb\xd2\xe9" 4462 + "\x00\x19\x32\x4b\x64\x7d\x96\xaf" 4463 + "\xc8\xe1\xfa\x13\x2c\x45\x5e\x77" 4464 + "\x90\xa9\xc2\xdb\xf4\x0d\x26\x3f" 4465 + "\x58\x71\x8a\xa3\xbc\xd5\xee\x07" 4466 + "\x20\x39\x52\x6b\x84\x9d\xb6\xcf" 4467 + "\xe8\x01\x1a\x33\x4c\x65\x7e\x97" 4468 + "\xb0\xc9\xe2\xfb\x14\x2d\x46\x5f" 4469 + "\x78\x91\xaa\xc3\xdc\xf5\x0e\x27" 4470 + "\x40\x59\x72\x8b\xa4\xbd\xd6\xef" 4471 + "\x08\x21\x3a\x53\x6c\x85\x9e\xb7" 4472 + "\xd0\xe9\x02\x1b\x34\x4d\x66\x7f" 4473 + "\x98\xb1\xca\xe3\xfc\x15\x2e\x47" 4474 + "\x60\x79\x92\xab\xc4\xdd\xf6\x0f" 4475 + "\x28\x41\x5a\x73\x8c\xa5\xbe\xd7" 4476 + "\xf0\x09\x22\x3b\x54\x6d\x86\x9f" 4477 + "\xb8\xd1\xea\x03\x1c\x35\x4e\x67" 4478 + "\x80\x99\xb2\xcb\xe4\xfd\x16\x2f" 4479 + "\x48\x61\x7a\x93\xac\xc5\xde\xf7" 4480 + "\x10\x29\x42\x5b\x74\x8d\xa6\xbf" 4481 + "\xd8\xf1\x0a\x23\x3c\x55\x6e\x87" 4482 + "\xa0\xb9\xd2\xeb\x04\x1d\x36\x4f" 4483 + "\x68\x81\x9a\xb3\xcc\xe5\xfe\x17" 4484 + "\x30\x49\x62\x7b\x94\xad\xc6\xdf" 4485 + "\xf8\x11\x2a\x43\x5c\x75\x8e\xa7" 4486 + "\xc0\xd9\xf2\x0b\x24\x3d\x56\x6f" 4487 + "\x88\xa1\xba\xd3\xec\x05\x1e\x37" 4488 + "\x50\x69\x82\x9b\xb4\xcd\xe6\xff" 4489 + "\x18\x31\x4a\x63\x7c\x95\xae\xc7" 4490 + "\xe0\xf9\x12\x2b\x44\x5d\x76\x8f" 4491 + "\xa8\xc1\xda\xf3\x0c\x25\x3e\x57" 4492 + "\x70\x89\xa2\xbb\xd4\xed\x06\x1f" 4493 + "\x38\x51\x6a\x83\x9c\xb5\xce\xe7" 4494 + "\x00\x1b\x36\x51\x6c\x87\xa2\xbd" 4495 + "\xd8\xf3\x0e\x29\x44\x5f\x7a\x95" 4496 + "\xb0\xcb\xe6\x01\x1c\x37\x52\x6d" 4497 + "\x88\xa3\xbe\xd9\xf4\x0f\x2a\x45" 4498 + "\x60\x7b\x96\xb1\xcc\xe7\x02\x1d" 4499 + "\x38\x53\x6e\x89\xa4\xbf\xda\xf5" 4500 + "\x10\x2b\x46\x61\x7c\x97\xb2\xcd" 4501 + "\xe8\x03\x1e\x39\x54\x6f\x8a\xa5" 4502 + "\xc0\xdb\xf6\x11\x2c\x47\x62\x7d" 4503 + "\x98\xb3\xce\xe9\x04\x1f\x3a\x55" 4504 + "\x70\x8b\xa6\xc1\xdc\xf7\x12\x2d" 4505 + "\x48\x63\x7e\x99\xb4\xcf\xea\x05" 4506 + "\x20\x3b\x56\x71\x8c\xa7\xc2\xdd" 4507 + "\xf8\x13\x2e\x49\x64\x7f\x9a\xb5" 4508 + "\xd0\xeb\x06\x21\x3c\x57\x72\x8d" 4509 + "\xa8\xc3\xde\xf9\x14\x2f\x4a\x65" 4510 + "\x80\x9b\xb6\xd1\xec\x07\x22\x3d" 4511 + "\x58\x73\x8e\xa9\xc4\xdf\xfa\x15" 4512 + "\x30\x4b\x66\x81\x9c\xb7\xd2\xed" 4513 + "\x08\x23\x3e\x59\x74\x8f\xaa\xc5" 4514 + "\xe0\xfb\x16\x31\x4c\x67\x82\x9d" 4515 + "\xb8\xd3\xee\x09\x24\x3f\x5a\x75" 4516 + "\x90\xab\xc6\xe1\xfc\x17\x32\x4d" 4517 + "\x68\x83\x9e\xb9\xd4\xef\x0a\x25" 4518 + "\x40\x5b\x76\x91\xac\xc7\xe2\xfd" 4519 + "\x18\x33\x4e\x69\x84\x9f\xba\xd5" 4520 + "\xf0\x0b\x26\x41\x5c\x77\x92\xad" 4521 + "\xc8\xe3\xfe\x19\x34\x4f\x6a\x85" 4522 + "\xa0\xbb\xd6\xf1\x0c\x27\x42\x5d" 4523 + "\x78\x93\xae\xc9\xe4\xff\x1a\x35" 4524 + "\x50\x6b\x86\xa1\xbc\xd7\xf2\x0d" 4525 + "\x28\x43\x5e\x79\x94\xaf\xca\xe5" 4526 + "\x00\x1d\x3a\x57\x74\x91\xae\xcb" 4527 + "\xe8\x05\x22\x3f\x5c\x79\x96\xb3" 4528 + "\xd0\xed\x0a\x27\x44\x61\x7e\x9b" 4529 + "\xb8\xd5\xf2\x0f\x2c\x49\x66\x83" 4530 + "\xa0\xbd\xda\xf7\x14\x31\x4e\x6b" 4531 + "\x88\xa5\xc2\xdf\xfc\x19\x36\x53" 4532 + "\x70\x8d\xaa\xc7\xe4\x01\x1e\x3b" 4533 + "\x58\x75\x92\xaf\xcc\xe9\x06\x23" 4534 + "\x40\x5d\x7a\x97\xb4\xd1\xee\x0b" 4535 + "\x28\x45\x62\x7f\x9c\xb9\xd6\xf3" 4536 + "\x10\x2d\x4a\x67\x84\xa1\xbe\xdb" 4537 + "\xf8\x15\x32\x4f\x6c\x89\xa6\xc3" 4538 + "\xe0\xfd\x1a\x37\x54\x71\x8e\xab" 4539 + "\xc8\xe5\x02\x1f\x3c\x59\x76\x93" 4540 + "\xb0\xcd\xea\x07\x24\x41\x5e\x7b" 4541 + "\x98\xb5\xd2\xef\x0c\x29\x46\x63" 4542 + "\x80\x9d\xba\xd7\xf4\x11\x2e\x4b" 4543 + "\x68\x85\xa2\xbf\xdc\xf9\x16\x33" 4544 + "\x50\x6d\x8a\xa7\xc4\xe1\xfe\x1b" 4545 + "\x38\x55\x72\x8f\xac\xc9\xe6\x03" 4546 + "\x20\x3d\x5a\x77\x94\xb1\xce\xeb" 4547 + "\x08\x25\x42\x5f\x7c\x99\xb6\xd3" 4548 + "\xf0\x0d\x2a\x47\x64\x81\x9e\xbb" 4549 + "\xd8\xf5\x12\x2f\x4c\x69\x86\xa3" 4550 + "\xc0\xdd\xfa\x17\x34\x51\x6e\x8b" 4551 + "\xa8\xc5\xe2\xff\x1c\x39\x56\x73" 4552 + "\x90\xad\xca\xe7\x04\x21\x3e\x5b" 4553 + "\x78\x95\xb2\xcf\xec\x09\x26\x43" 4554 + "\x60\x7d\x9a\xb7\xd4\xf1\x0e\x2b" 4555 + "\x48\x65\x82\x9f\xbc\xd9\xf6\x13" 4556 + "\x30\x4d\x6a\x87\xa4\xc1\xde\xfb" 4557 + "\x18\x35\x52\x6f\x8c\xa9\xc6\xe3" 4558 + "\x00\x1f\x3e\x5d\x7c\x9b\xba\xd9" 4559 + "\xf8\x17\x36\x55\x74\x93\xb2\xd1" 4560 + "\xf0\x0f\x2e\x4d\x6c\x8b\xaa\xc9" 4561 + "\xe8\x07\x26\x45\x64\x83\xa2\xc1" 4562 + "\xe0\xff\x1e\x3d\x5c\x7b\x9a\xb9" 4563 + "\xd8\xf7\x16\x35\x54\x73\x92\xb1" 4564 + "\xd0\xef\x0e\x2d\x4c\x6b\x8a\xa9" 4565 + "\xc8\xe7\x06\x25\x44\x63\x82\xa1" 4566 + "\xc0\xdf\xfe\x1d\x3c\x5b\x7a\x99" 4567 + "\xb8\xd7\xf6\x15\x34\x53\x72\x91" 4568 + "\xb0\xcf\xee\x0d\x2c\x4b\x6a\x89" 4569 + "\xa8\xc7\xe6\x05\x24\x43\x62\x81" 4570 + "\xa0\xbf\xde\xfd\x1c\x3b\x5a\x79" 4571 + "\x98\xb7\xd6\xf5\x14\x33\x52\x71" 4572 + "\x90\xaf\xce\xed\x0c\x2b\x4a\x69" 4573 + "\x88\xa7\xc6\xe5\x04\x23\x42\x61" 4574 + "\x80\x9f\xbe\xdd\xfc\x1b\x3a\x59" 4575 + "\x78\x97\xb6\xd5\xf4\x13\x32\x51" 4576 + "\x70\x8f\xae\xcd\xec\x0b\x2a\x49" 4577 + "\x68\x87\xa6\xc5\xe4\x03\x22\x41" 4578 + "\x60\x7f\x9e\xbd\xdc\xfb\x1a\x39" 4579 + "\x58\x77\x96\xb5\xd4\xf3\x12\x31" 4580 + "\x50\x6f\x8e\xad\xcc\xeb\x0a\x29" 4581 + "\x48\x67\x86\xa5\xc4\xe3\x02\x21" 4582 + "\x40\x5f\x7e\x9d\xbc\xdb\xfa\x19" 4583 + "\x38\x57\x76\x95\xb4\xd3\xf2\x11" 4584 + "\x30\x4f\x6e\x8d\xac\xcb\xea\x09" 4585 + "\x28\x47\x66\x85\xa4\xc3\xe2\x01" 4586 + "\x20\x3f\x5e\x7d\x9c\xbb\xda\xf9" 4587 + "\x18\x37\x56\x75\x94\xb3\xd2\xf1" 4588 + "\x10\x2f\x4e\x6d\x8c\xab\xca\xe9" 4589 + "\x08\x27\x46\x65\x84\xa3\xc2\xe1" 4590 + "\x00\x21\x42\x63", 4591 + .ilen = 4100, 4592 + .result = 4593 + "\xf0\x5c\x74\xad\x4e\xbc\x99\xe2" 4594 + "\xae\xff\x91\x3a\x44\xcf\x38\x32" 4595 + "\x1e\xad\xa7\xcd\xa1\x39\x95\xaa" 4596 + "\x10\xb1\xb3\x2e\x04\x31\x8f\x86" 4597 + "\xf2\x62\x74\x70\x0c\xa4\x46\x08" 4598 + "\xa8\xb7\x99\xa8\xe9\xd2\x73\x79" 4599 + "\x7e\x6e\xd4\x8f\x1e\xc7\x8e\x31" 4600 + "\x0b\xfa\x4b\xce\xfd\xf3\x57\x71" 4601 + "\xe9\x46\x03\xa5\x3d\x34\x00\xe2" 4602 + "\x18\xff\x75\x6d\x06\x2d\x00\xab" 4603 + "\xb9\x3e\x6c\x59\xc5\x84\x06\xb5" 4604 + "\x8b\xd0\x89\x9c\x4a\x79\x16\xc6" 4605 + "\x3d\x74\x54\xfa\x44\xcd\x23\x26" 4606 + "\x5c\xcf\x7e\x28\x92\x32\xbf\xdf" 4607 + "\xa7\x20\x3c\x74\x58\x2a\x9a\xde" 4608 + "\x61\x00\x1c\x4f\xff\x59\xc4\x22" 4609 + "\xac\x3c\xd0\xe8\x6c\xf9\x97\x1b" 4610 + "\x58\x9b\xad\x71\xe8\xa9\xb5\x0d" 4611 + "\xee\x2f\x04\x1f\x7f\xbc\x99\xee" 4612 + "\x84\xff\x42\x60\xdc\x3a\x18\xa5" 4613 + "\x81\xf9\xef\xdc\x7a\x0f\x65\x41" 4614 + "\x2f\xa3\xd3\xf9\xc2\xcb\xc0\x4d" 4615 + "\x8f\xd3\x76\x96\xad\x49\x6d\x38" 4616 + "\x3d\x39\x0b\x6c\x80\xb7\x54\x69" 4617 + "\xf0\x2c\x90\x02\x29\x0d\x1c\x12" 4618 + "\xad\x55\xc3\x8b\x68\xd9\xcc\xb3" 4619 + "\xb2\x64\x33\x90\x5e\xca\x4b\xe2" 4620 + "\xfb\x75\xdc\x63\xf7\x9f\x82\x74" 4621 + "\xf0\xc9\xaa\x7f\xe9\x2a\x9b\x33" 4622 + "\xbc\x88\x00\x7f\xca\xb2\x1f\x14" 4623 + "\xdb\xc5\x8e\x7b\x11\x3c\x3e\x08" 4624 + "\xf3\x83\xe8\xe0\x94\x86\x2e\x92" 4625 + "\x78\x6b\x01\xc9\xc7\x83\xba\x21" 4626 + "\x6a\x25\x15\x33\x4e\x45\x08\xec" 4627 + "\x35\xdb\xe0\x6e\x31\x51\x79\xa9" 4628 + "\x42\x44\x65\xc1\xa0\xf1\xf9\x2a" 4629 + "\x70\xd5\xb6\xc6\xc1\x8c\x39\xfc" 4630 + "\x25\xa6\x55\xd9\xdd\x2d\x4c\xec" 4631 + "\x49\xc6\xeb\x0e\xa8\x25\x2a\x16" 4632 + "\x1b\x66\x84\xda\xe2\x92\xe5\xc0" 4633 + "\xc8\x53\x07\xaf\x80\x84\xec\xfd" 4634 + "\xcd\xd1\x6e\xcd\x6f\x6a\xf5\x36" 4635 + "\xc5\x15\xe5\x25\x7d\x77\xd1\x1a" 4636 + "\x93\x36\xa9\xcf\x7c\xa4\x54\x4a" 4637 + "\x06\x51\x48\x4e\xf6\x59\x87\xd2" 4638 + "\x04\x02\xef\xd3\x44\xde\x76\x31" 4639 + "\xb3\x34\x17\x1b\x9d\x66\x11\x9f" 4640 + "\x1e\xcc\x17\xe9\xc7\x3c\x1b\xe7" 4641 + "\xcb\x50\x08\xfc\xdc\x2b\x24\xdb" 4642 + "\x65\x83\xd0\x3b\xe3\x30\xea\x94" 4643 + "\x6c\xe7\xe8\x35\x32\xc7\xdb\x64" 4644 + "\xb4\x01\xab\x36\x2c\x77\x13\xaf" 4645 + "\xf8\x2b\x88\x3f\x54\x39\xc4\x44" 4646 + "\xfe\xef\x6f\x68\x34\xbe\x0f\x05" 4647 + "\x16\x6d\xf6\x0a\x30\xe7\xe3\xed" 4648 + "\xc4\xde\x3c\x1b\x13\xd8\xdb\xfe" 4649 + "\x41\x62\xe5\x28\xd4\x8d\xa3\xc7" 4650 + "\x93\x97\xc6\x48\x45\x1d\x9f\x83" 4651 + "\xdf\x4b\x40\x3e\x42\x25\x87\x80" 4652 + "\x4c\x7d\xa8\xd4\x98\x23\x95\x75" 4653 + "\x41\x8c\xda\x41\x9b\xd4\xa7\x06" 4654 + "\xb5\xf1\x71\x09\x53\xbe\xca\xbf" 4655 + "\x32\x03\xed\xf0\x50\x1c\x56\x39" 4656 + "\x5b\xa4\x75\x18\xf7\x9b\x58\xef" 4657 + "\x53\xfc\x2a\x38\x23\x15\x75\xcd" 4658 + "\x45\xe5\x5a\x82\x55\xba\x21\xfa" 4659 + "\xd4\xbd\xc6\x94\x7c\xc5\x80\x12" 4660 + "\xf7\x4b\x32\xc4\x9a\x82\xd8\x28" 4661 + "\x8f\xd9\xc2\x0f\x60\x03\xbe\x5e" 4662 + "\x21\xd6\x5f\x58\xbf\x5c\xb1\x32" 4663 + "\x82\x8d\xa9\xe5\xf2\x66\x1a\xc0" 4664 + "\xa0\xbc\x58\x2f\x71\xf5\x2f\xed" 4665 + "\xd1\x26\xb9\xd8\x49\x5a\x07\x19" 4666 + "\x01\x7c\x59\xb0\xf8\xa4\xb7\xd3" 4667 + "\x7b\x1a\x8c\x38\xf4\x50\xa4\x59" 4668 + "\xb0\xcc\x41\x0b\x88\x7f\xe5\x31" 4669 + "\xb3\x42\xba\xa2\x7e\xd4\x32\x71" 4670 + "\x45\x87\x48\xa9\xc2\xf2\x89\xb3" 4671 + "\xe4\xa7\x7e\x52\x15\x61\xfa\xfe" 4672 + "\xc9\xdd\x81\xeb\x13\xab\xab\xc3" 4673 + "\x98\x59\xd8\x16\x3d\x14\x7a\x1c" 4674 + "\x3c\x41\x9a\x16\x16\x9b\xd2\xd2" 4675 + "\x69\x3a\x29\x23\xac\x86\x32\xa5" 4676 + "\x48\x9c\x9e\xf3\x47\x77\x81\x70" 4677 + "\x24\xe8\x85\xd2\xf5\xb5\xfa\xff" 4678 + "\x59\x6a\xd3\x50\x59\x43\x59\xde" 4679 + "\xd9\xf1\x55\xa5\x0c\xc3\x1a\x1a" 4680 + "\x18\x34\x0d\x1a\x63\x33\xed\x10" 4681 + "\xe0\x1d\x2a\x18\xd2\xc0\x54\xa8" 4682 + "\xca\xb5\x9a\xd3\xdd\xca\x45\x84" 4683 + "\x50\xe7\x0f\xfe\xa4\x99\x5a\xbe" 4684 + "\x43\x2d\x9a\xcb\x92\x3f\x5a\x1d" 4685 + "\x85\xd8\xc9\xdf\x68\xc9\x12\x80" 4686 + "\x56\x0c\xdc\x00\xdc\x3a\x7d\x9d" 4687 + "\xa3\xa2\xe8\x4d\xbf\xf9\x70\xa0" 4688 + "\xa4\x13\x4f\x6b\xaf\x0a\x89\x7f" 4689 + "\xda\xf0\xbf\x9b\xc8\x1d\xe5\xf8" 4690 + "\x2e\x8b\x07\xb5\x73\x1b\xcc\xa2" 4691 + "\xa6\xad\x30\xbc\x78\x3c\x5b\x10" 4692 + "\xfa\x5e\x62\x2d\x9e\x64\xb3\x33" 4693 + "\xce\xf9\x1f\x86\xe7\x8b\xa2\xb8" 4694 + "\xe8\x99\x57\x8c\x11\xed\x66\xd9" 4695 + "\x3c\x72\xb9\xc3\xe6\x4e\x17\x3a" 4696 + "\x6a\xcb\x42\x24\x06\xed\x3e\x4e" 4697 + "\xa3\xe8\x6a\x94\xda\x0d\x4e\xd5" 4698 + "\x14\x19\xcf\xb6\x26\xd8\x2e\xcc" 4699 + "\x64\x76\x38\x49\x4d\xfe\x30\x6d" 4700 + "\xe4\xc8\x8c\x7b\xc4\xe0\x35\xba" 4701 + "\x22\x6e\x76\xe1\x1a\xf2\x53\xc3" 4702 + "\x28\xa2\x82\x1f\x61\x69\xad\xc1" 4703 + "\x7b\x28\x4b\x1e\x6c\x85\x95\x9b" 4704 + "\x51\xb5\x17\x7f\x12\x69\x8c\x24" 4705 + "\xd5\xc7\x5a\x5a\x11\x54\xff\x5a" 4706 + "\xf7\x16\xc3\x91\xa6\xf0\xdc\x0a" 4707 + "\xb6\xa7\x4a\x0d\x7a\x58\xfe\xa5" 4708 + "\xf5\xcb\x8f\x7b\x0e\xea\x57\xe7" 4709 + "\xbd\x79\xd6\x1c\x88\x23\x6c\xf2" 4710 + "\x4d\x29\x77\x53\x35\x6a\x00\x8d" 4711 + "\xcd\xa3\x58\xbe\x77\x99\x18\xf8" 4712 + "\xe6\xe1\x8f\xe9\x37\x8f\xe3\xe2" 4713 + "\x5a\x8a\x93\x25\xaf\xf3\x78\x80" 4714 + "\xbe\xa6\x1b\xc6\xac\x8b\x1c\x91" 4715 + "\x58\xe1\x9f\x89\x35\x9d\x1d\x21" 4716 + "\x29\x9f\xf4\x99\x02\x27\x0f\xa8" 4717 + "\x4f\x79\x94\x2b\x33\x2c\xda\xa2" 4718 + "\x26\x39\x83\x94\xef\x27\xd8\x53" 4719 + "\x8f\x66\x0d\xe4\x41\x7d\x34\xcd" 4720 + "\x43\x7c\x95\x0a\x53\xef\x66\xda" 4721 + "\x7e\x9b\xf3\x93\xaf\xd0\x73\x71" 4722 + "\xba\x40\x9b\x74\xf8\xd7\xd7\x41" 4723 + "\x6d\xaf\x72\x9c\x8d\x21\x87\x3c" 4724 + "\xfd\x0a\x90\xa9\x47\x96\x9e\xd3" 4725 + "\x88\xee\x73\xcf\x66\x2f\x52\x56" 4726 + "\x6d\xa9\x80\x4c\xe2\x6f\x62\x88" 4727 + "\x3f\x0e\x54\x17\x48\x80\x5d\xd3" 4728 + "\xc3\xda\x25\x3d\xa1\xc8\xcb\x9f" 4729 + "\x9b\x70\xb3\xa1\xeb\x04\x52\xa1" 4730 + "\xf2\x22\x0f\xfc\xc8\x18\xfa\xf9" 4731 + "\x85\x9c\xf1\xac\xeb\x0c\x02\x46" 4732 + "\x75\xd2\xf5\x2c\xe3\xd2\x59\x94" 4733 + "\x12\xf3\x3c\xfc\xd7\x92\xfa\x36" 4734 + "\xba\x61\x34\x38\x7c\xda\x48\x3e" 4735 + "\x08\xc9\x39\x23\x5e\x02\x2c\x1a" 4736 + "\x18\x7e\xb4\xd9\xfd\x9e\x40\x02" 4737 + "\xb1\x33\x37\x32\xe7\xde\xd6\xd0" 4738 + "\x7c\x58\x65\x4b\xf8\x34\x27\x9c" 4739 + "\x44\xb4\xbd\xe9\xe9\x4c\x78\x7d" 4740 + "\x4b\x9f\xce\xb1\xcd\x47\xa5\x37" 4741 + "\xe5\x6d\xbd\xb9\x43\x94\x0a\xd4" 4742 + "\xd6\xf9\x04\x5f\xb5\x66\x6c\x1a" 4743 + "\x35\x12\xe3\x36\x28\x27\x36\x58" 4744 + "\x01\x2b\x79\xe4\xba\x6d\x10\x7d" 4745 + "\x65\xdf\x84\x95\xf4\xd5\xb6\x8f" 4746 + "\x2b\x9f\x96\x00\x86\x60\xf0\x21" 4747 + "\x76\xa8\x6a\x8c\x28\x1c\xb3\x6b" 4748 + "\x97\xd7\xb6\x53\x2a\xcc\xab\x40" 4749 + "\x9d\x62\x79\x58\x52\xe6\x65\xb7" 4750 + "\xab\x55\x67\x9c\x89\x7c\x03\xb0" 4751 + "\x73\x59\xc5\x81\xf5\x18\x17\x5c" 4752 + "\x89\xf3\x78\x35\x44\x62\x78\x72" 4753 + "\xd0\x96\xeb\x31\xe7\x87\x77\x14" 4754 + "\x99\x51\xf2\x59\x26\x9e\xb5\xa6" 4755 + "\x45\xfe\x6e\xbd\x07\x4c\x94\x5a" 4756 + "\xa5\x7d\xfc\xf1\x2b\x77\xe2\xfe" 4757 + "\x17\xd4\x84\xa0\xac\xb5\xc7\xda" 4758 + "\xa9\x1a\xb6\xf3\x74\x11\xb4\x9d" 4759 + "\xfb\x79\x2e\x04\x2d\x50\x28\x83" 4760 + "\xbf\xc6\x52\xd3\x34\xd6\xe8\x7a" 4761 + "\xb6\xea\xe7\xa8\x6c\x15\x1e\x2c" 4762 + "\x57\xbc\x48\x4e\x5f\x5c\xb6\x92" 4763 + "\xd2\x49\x77\x81\x6d\x90\x70\xae" 4764 + "\x98\xa1\x03\x0d\x6b\xb9\x77\x14" 4765 + "\xf1\x4e\x23\xd3\xf8\x68\xbd\xc2" 4766 + "\xfe\x04\xb7\x5c\xc5\x17\x60\x8f" 4767 + "\x65\x54\xa4\x7a\x42\xdc\x18\x0d" 4768 + "\xb5\xcf\x0f\xd3\xc7\x91\x66\x1b" 4769 + "\x45\x42\x27\x75\x50\xe5\xee\xb8" 4770 + "\x7f\x33\x2c\xba\x4a\x92\x4d\x2c" 4771 + "\x3c\xe3\x0d\x80\x01\xba\x0d\x29" 4772 + "\xd8\x3c\xe9\x13\x16\x57\xe6\xea" 4773 + "\x94\x52\xe7\x00\x4d\x30\xb0\x0f" 4774 + "\x35\xb8\xb8\xa7\xb1\xb5\x3b\x44" 4775 + "\xe1\x2f\xfd\x88\xed\x43\xe7\x52" 4776 + "\x10\x93\xb3\x8a\x30\x6b\x0a\xf7" 4777 + "\x23\xc6\x50\x9d\x4a\xb0\xde\xc3" 4778 + "\xdc\x9b\x2f\x01\x56\x36\x09\xc5" 4779 + "\x2f\x6b\xfe\xf1\xd8\x27\x45\x03" 4780 + "\x30\x5e\x5c\x5b\xb4\x62\x0e\x1a" 4781 + "\xa9\x21\x2b\x92\x94\x87\x62\x57" 4782 + "\x4c\x10\x74\x1a\xf1\x0a\xc5\x84" 4783 + "\x3b\x9e\x72\x02\xd7\xcc\x09\x56" 4784 + "\xbd\x54\xc1\xf0\xc3\xe3\xb3\xf8" 4785 + "\xd2\x0d\x61\xcb\xef\xce\x0d\x05" 4786 + "\xb0\x98\xd9\x8e\x4f\xf9\xbc\x93" 4787 + "\xa6\xea\xc8\xcf\x10\x53\x4b\xf1" 4788 + "\xec\xfc\x89\xf9\x64\xb0\x22\xbf" 4789 + "\x9e\x55\x46\x9f\x7c\x50\x8e\x84" 4790 + "\x54\x20\x98\xd7\x6c\x40\x1e\xdb" 4791 + "\x69\x34\x78\x61\x24\x21\x9c\x8a" 4792 + "\xb3\x62\x31\x8b\x6e\xf5\x2a\x35" 4793 + "\x86\x13\xb1\x6c\x64\x2e\x41\xa5" 4794 + "\x05\xf2\x42\xba\xd2\x3a\x0d\x8e" 4795 + "\x8a\x59\x94\x3c\xcf\x36\x27\x82" 4796 + "\xc2\x45\xee\x58\xcd\x88\xb4\xec" 4797 + "\xde\xb2\x96\x0a\xaf\x38\x6f\x88" 4798 + "\xd7\xd8\xe1\xdf\xb9\x96\xa9\x0a" 4799 + "\xb1\x95\x28\x86\x20\xe9\x17\x49" 4800 + "\xa2\x29\x38\xaa\xa5\xe9\x6e\xf1" 4801 + "\x19\x27\xc0\xd5\x2a\x22\xc3\x0b" 4802 + "\xdb\x7c\x73\x10\xb9\xba\x89\x76" 4803 + "\x54\xae\x7d\x71\xb3\x93\xf6\x32" 4804 + "\xe6\x47\x43\x55\xac\xa0\x0d\xc2" 4805 + "\x93\x27\x4a\x8e\x0e\x74\x15\xc7" 4806 + "\x0b\x85\xd9\x0c\xa9\x30\x7a\x3e" 4807 + "\xea\x8f\x85\x6d\x3a\x12\x4f\x72" 4808 + "\x69\x58\x7a\x80\xbb\xb5\x97\xf3" 4809 + "\xcf\x70\xd2\x5d\xdd\x4d\x21\x79" 4810 + "\x54\x4d\xe4\x05\xe8\xbd\xc2\x62" 4811 + "\xb1\x3b\x77\x1c\xd6\x5c\xf3\xa0" 4812 + "\x79\x00\xa8\x6c\x29\xd9\x18\x24" 4813 + "\x36\xa2\x46\xc0\x96\x65\x7f\xbd" 4814 + "\x2a\xed\x36\x16\x0c\xaa\x9f\xf4" 4815 + "\xc5\xb4\xe2\x12\xed\x69\xed\x4f" 4816 + "\x26\x2c\x39\x52\x89\x98\xe7\x2c" 4817 + "\x99\xa4\x9e\xa3\x9b\x99\x46\x7a" 4818 + "\x3a\xdc\xa8\x59\xa3\xdb\xc3\x3b" 4819 + "\x95\x0d\x3b\x09\x6e\xee\x83\x5d" 4820 + "\x32\x4d\xed\xab\xfa\x98\x14\x4e" 4821 + "\xc3\x15\x45\x53\x61\xc4\x93\xbd" 4822 + "\x90\xf4\x99\x95\x4c\xe6\x76\x92" 4823 + "\x29\x90\x46\x30\x92\x69\x7d\x13" 4824 + "\xf2\xa5\xcd\x69\x49\x44\xb2\x0f" 4825 + "\x63\x40\x36\x5f\x09\xe2\x78\xf8" 4826 + "\x91\xe3\xe2\xfa\x10\xf7\xc8\x24" 4827 + "\xa8\x89\x32\x5c\x37\x25\x1d\xb2" 4828 + "\xea\x17\x8a\x0a\xa9\x64\xc3\x7c" 4829 + "\x3c\x7c\xbd\xc6\x79\x34\xe7\xe2" 4830 + "\x85\x8e\xbf\xf8\xde\x92\xa0\xae" 4831 + "\x20\xc4\xf6\xbb\x1f\x38\x19\x0e" 4832 + "\xe8\x79\x9c\xa1\x23\xe9\x54\x7e" 4833 + "\x37\x2f\xe2\x94\x32\xaf\xa0\x23" 4834 + "\x49\xe4\xc0\xb3\xac\x00\x8f\x36" 4835 + "\x05\xc4\xa6\x96\xec\x05\x98\x4f" 4836 + "\x96\x67\x57\x1f\x20\x86\x1b\x2d" 4837 + "\x69\xe4\x29\x93\x66\x5f\xaf\x6b" 4838 + "\x88\x26\x2c\x67\x02\x4b\x52\xd0" 4839 + "\x83\x7a\x43\x1f\xc0\x71\x15\x25" 4840 + "\x77\x65\x08\x60\x11\x76\x4c\x8d" 4841 + "\xed\xa9\x27\xc6\xb1\x2a\x2c\x6a" 4842 + "\x4a\x97\xf5\xc6\xb7\x70\x42\xd3" 4843 + "\x03\xd1\x24\x95\xec\x6d\xab\x38" 4844 + "\x72\xce\xe2\x8b\x33\xd7\x51\x09" 4845 + "\xdc\x45\xe0\x09\x96\x32\xf3\xc4" 4846 + "\x84\xdc\x73\x73\x2d\x1b\x11\x98" 4847 + "\xc5\x0e\x69\x28\x94\xc7\xb5\x4d" 4848 + "\xc8\x8a\xd0\xaa\x13\x2e\x18\x74" 4849 + "\xdd\xd1\x1e\xf3\x90\xe8\xfc\x9a" 4850 + "\x72\x4a\x0e\xd1\xe4\xfb\x0d\x96" 4851 + "\xd1\x0c\x79\x85\x1b\x1c\xfe\xe1" 4852 + "\x62\x8f\x7a\x73\x32\xab\xc8\x18" 4853 + "\x69\xe3\x34\x30\xdf\x13\xa6\xe5" 4854 + "\xe8\x0e\x67\x7f\x81\x11\xb4\x60" 4855 + "\xc7\xbd\x79\x65\x50\xdc\xc4\x5b" 4856 + "\xde\x39\xa4\x01\x72\x63\xf3\xd1" 4857 + "\x64\x4e\xdf\xfc\x27\x92\x37\x0d" 4858 + "\x57\xcd\x11\x4f\x11\x04\x8e\x1d" 4859 + "\x16\xf7\xcd\x92\x9a\x99\x30\x14" 4860 + "\xf1\x7c\x67\x1b\x1f\x41\x0b\xe8" 4861 + "\x32\xe8\xb8\xc1\x4f\x54\x86\x4f" 4862 + "\xe5\x79\x81\x73\xcd\x43\x59\x68" 4863 + "\x73\x02\x3b\x78\x21\x72\x43\x00" 4864 + "\x49\x17\xf7\x00\xaf\x68\x24\x53" 4865 + "\x05\x0a\xc3\x33\xe0\x33\x3f\x69" 4866 + "\xd2\x84\x2f\x0b\xed\xde\x04\xf4" 4867 + "\x11\x94\x13\x69\x51\x09\x28\xde" 4868 + "\x57\x5c\xef\xdc\x9a\x49\x1c\x17" 4869 + "\x97\xf3\x96\xc1\x7f\x5d\x2e\x7d" 4870 + "\x55\xb8\xb3\x02\x09\xb3\x1f\xe7" 4871 + "\xc9\x8d\xa3\x36\x34\x8a\x77\x13" 4872 + "\x30\x63\x4c\xa5\xcd\xc3\xe0\x7e" 4873 + "\x05\xa1\x7b\x0c\xcb\x74\x47\x31" 4874 + "\x62\x03\x43\xf1\x87\xb4\xb0\x85" 4875 + "\x87\x8e\x4b\x25\xc7\xcf\xae\x4b" 4876 + "\x36\x46\x3e\x62\xbc\x6f\xeb\x5f" 4877 + "\x73\xac\xe6\x07\xee\xc1\xa1\xd6" 4878 + "\xc4\xab\xc9\xd6\x89\x45\xe1\xf1" 4879 + "\x04\x4e\x1a\x6f\xbb\x4f\x3a\xa3" 4880 + "\xa0\xcb\xa3\x0a\xd8\x71\x35\x55" 4881 + "\xe4\xbc\x2e\x04\x06\xe6\xff\x5b" 4882 + "\x1c\xc0\x11\x7c\xc5\x17\xf3\x38" 4883 + "\xcf\xe9\xba\x0f\x0e\xef\x02\xc2" 4884 + "\x8d\xc6\xbc\x4b\x67\x20\x95\xd7" 4885 + "\x2c\x45\x5b\x86\x44\x8c\x6f\x2e" 4886 + "\x7e\x9f\x1c\x77\xba\x6b\x0e\xa3" 4887 + "\x69\xdc\xab\x24\x57\x60\x47\xc1" 4888 + "\xd1\xa5\x9d\x23\xe6\xb1\x37\xfe" 4889 + "\x93\xd2\x4c\x46\xf9\x0c\xc6\xfb" 4890 + "\xd6\x9d\x99\x69\xab\x7a\x07\x0c" 4891 + "\x65\xe7\xc4\x08\x96\xe2\xa5\x01" 4892 + "\x3f\x46\x07\x05\x7e\xe8\x9a\x90" 4893 + "\x50\xdc\xe9\x7a\xea\xa1\x39\x6e" 4894 + "\x66\xe4\x6f\xa5\x5f\xb2\xd9\x5b" 4895 + "\xf5\xdb\x2a\x32\xf0\x11\x6f\x7c" 4896 + "\x26\x10\x8f\x3d\x80\xe9\x58\xf7" 4897 + "\xe0\xa8\x57\xf8\xdb\x0e\xce\x99" 4898 + "\x63\x19\x3d\xd5\xec\x1b\x77\x69" 4899 + "\x98\xf6\xe4\x5f\x67\x17\x4b\x09" 4900 + "\x85\x62\x82\x70\x18\xe2\x9a\x78" 4901 + "\xe2\x62\xbd\xb4\xf1\x42\xc6\xfb" 4902 + "\x08\xd0\xbd\xeb\x4e\x09\xf2\xc8" 4903 + "\x1e\xdc\x3d\x32\x21\x56\x9c\x4f" 4904 + "\x35\xf3\x61\x06\x72\x84\xc4\x32" 4905 + "\xf2\xf1\xfa\x0b\x2f\xc3\xdb\x02" 4906 + "\x04\xc2\xde\x57\x64\x60\x8d\xcf" 4907 + "\xcb\x86\x5d\x97\x3e\xb1\x9c\x01" 4908 + "\xd6\x28\x8f\x99\xbc\x46\xeb\x05" 4909 + "\xaf\x7e\xb8\x21\x2a\x56\x85\x1c" 4910 + "\xb3\x71\xa0\xde\xca\x96\xf1\x78" 4911 + "\x49\xa2\x99\x81\x80\x5c\x01\xf5" 4912 + "\xa0\xa2\x56\x63\xe2\x70\x07\xa5" 4913 + "\x95\xd6\x85\xeb\x36\x9e\xa9\x51" 4914 + "\x66\x56\x5f\x1d\x02\x19\xe2\xf6" 4915 + "\x4f\x73\x38\x09\x75\x64\x48\xe0" 4916 + "\xf1\x7e\x0e\xe8\x9d\xf9\xed\x94" 4917 + "\xfe\x16\x26\x62\x49\x74\xf4\xb0" 4918 + "\xd4\xa9\x6c\xb0\xfd\x53\xe9\x81" 4919 + "\xe0\x7a\xbf\xcf\xb5\xc4\x01\x81" 4920 + "\x79\x99\x77\x01\x3b\xe9\xa2\xb6" 4921 + "\xe6\x6a\x8a\x9e\x56\x1c\x8d\x1e" 4922 + "\x8f\x06\x55\x2c\x6c\xdc\x92\x87" 4923 + "\x64\x3b\x4b\x19\xa1\x13\x64\x1d" 4924 + "\x4a\xe9\xc0\x00\xb8\x95\xef\x6b" 4925 + "\x1a\x86\x6d\x37\x52\x02\xc2\xe0" 4926 + "\xc8\xbb\x42\x0c\x02\x21\x4a\xc9" 4927 + "\xef\xa0\x54\xe4\x5e\x16\x53\x81" 4928 + "\x70\x62\x10\xaf\xde\xb8\xb5\xd3" 4929 + "\xe8\x5e\x6c\xc3\x8a\x3e\x18\x07" 4930 + "\xf2\x2f\x7d\xa7\xe1\x3d\x4e\xb4" 4931 + "\x26\xa7\xa3\x93\x86\xb2\x04\x1e" 4932 + "\x53\x5d\x86\xd6\xde\x65\xca\xe3" 4933 + "\x4e\xc1\xcf\xef\xc8\x70\x1b\x83" 4934 + "\x13\xdd\x18\x8b\x0d\x76\xd2\xf6" 4935 + "\x37\x7a\x93\x7a\x50\x11\x9f\x96" 4936 + "\x86\x25\xfd\xac\xdc\xbe\x18\x93" 4937 + "\x19\x6b\xec\x58\x4f\xb9\x75\xa7" 4938 + "\xdd\x3f\x2f\xec\xc8\x5a\x84\xab" 4939 + "\xd5\xe4\x8a\x07\xf6\x4d\x23\xd6" 4940 + "\x03\xfb\x03\x6a\xea\x66\xbf\xd4" 4941 + "\xb1\x34\xfb\x78\xe9\x55\xdc\x7c" 4942 + "\x3d\x9c\xe5\x9a\xac\xc3\x7a\x80" 4943 + "\x24\x6d\xa0\xef\x25\x7c\xb7\xea" 4944 + "\xce\x4d\x5f\x18\x60\xce\x87\x22" 4945 + "\x66\x2f\xd5\xdd\xdd\x02\x21\x75" 4946 + "\x82\xa0\x1f\x58\xc6\xd3\x62\xf7" 4947 + "\x32\xd8\xaf\x1e\x07\x77\x51\x96" 4948 + "\xd5\x6b\x1e\x7e\x80\x02\xe8\x67" 4949 + "\xea\x17\x0b\x10\xd2\x3f\x28\x25" 4950 + "\x4f\x05\x77\x02\x14\x69\xf0\x2c" 4951 + "\xbe\x0c\xf1\x74\x30\xd1\xb9\x9b" 4952 + "\xfc\x8c\xbb\x04\x16\xd9\xba\xc3" 4953 + "\xbc\x91\x8a\xc4\x30\xa4\xb0\x12" 4954 + "\x4c\x21\x87\xcb\xc9\x1d\x16\x96" 4955 + "\x07\x6f\x23\x54\xb9\x6f\x79\xe5" 4956 + "\x64\xc0\x64\xda\xb1\xae\xdd\x60" 4957 + "\x6c\x1a\x9d\xd3\x04\x8e\x45\xb0" 4958 + "\x92\x61\xd0\x48\x81\xed\x5e\x1d" 4959 + "\xa0\xc9\xa4\x33\xc7\x13\x51\x5d" 4960 + "\x7f\x83\x73\xb6\x70\x18\x65\x3e" 4961 + "\x2f\x0e\x7a\x12\x39\x98\xab\xd8" 4962 + "\x7e\x6f\xa3\xd1\xba\x56\xad\xbd" 4963 + "\xf0\x03\x01\x1c\x85\x35\x9f\xeb" 4964 + "\x19\x63\xa1\xaf\xfe\x2d\x35\x50" 4965 + "\x39\xa0\x65\x7c\x95\x7e\x6b\xfe" 4966 + "\xc1\xac\x07\x7c\x98\x4f\xbe\x57" 4967 + "\xa7\x22\xec\xe2\x7e\x29\x09\x53" 4968 + "\xe8\xbf\xb4\x7e\x3f\x8f\xfc\x14" 4969 + "\xce\x54\xf9\x18\x58\xb5\xff\x44" 4970 + "\x05\x9d\xce\x1b\xb6\x82\x23\xc8" 4971 + "\x2e\xbc\x69\xbb\x4a\x29\x0f\x65" 4972 + "\x94\xf0\x63\x06\x0e\xef\x8c\xbd" 4973 + "\xff\xfd\xb0\x21\x6e\x57\x05\x75" 4974 + "\xda\xd5\xc4\xeb\x8d\x32\xf7\x50" 4975 + "\xd3\x6f\x22\xed\x5f\x8e\xa2\x5b" 4976 + "\x80\x8c\xc8\x78\x40\x24\x4b\x89" 4977 + "\x30\xce\x7a\x97\x0e\xc4\xaf\xef" 4978 + "\x9b\xb4\xcd\x66\x74\x14\x04\x2b" 4979 + "\xf7\xce\x0b\x1c\x6e\xc2\x78\x8c" 4980 + "\xca\xc5\xd0\x1c\x95\x4a\x91\x2d" 4981 + "\xa7\x20\xeb\x86\x52\xb7\x67\xd8" 4982 + "\x0c\xd6\x04\x14\xde\x51\x74\x75" 4983 + "\xe7\x11\xb4\x87\xa3\x3d\x2d\xad" 4984 + "\x4f\xef\xa0\x0f\x70\x00\x6d\x13" 4985 + "\x19\x1d\x41\x50\xe9\xd8\xf0\x32" 4986 + "\x71\xbc\xd3\x11\xf2\xac\xbe\xaf" 4987 + "\x75\x46\x65\x4e\x07\x34\x37\xa3" 4988 + "\x89\xfe\x75\xd4\x70\x4c\xc6\x3f" 4989 + "\x69\x24\x0e\x38\x67\x43\x8c\xde" 4990 + "\x06\xb5\xb8\xe7\xc4\xf0\x41\x8f" 4991 + "\xf0\xbd\x2f\x0b\xb9\x18\xf8\xde" 4992 + "\x64\xb1\xdb\xee\x00\x50\x77\xe1" 4993 + "\xc7\xff\xa6\xfa\xdd\x70\xf4\xe3" 4994 + "\x93\xe9\x77\x35\x3d\x4b\x2f\x2b" 4995 + "\x6d\x55\xf0\xfc\x88\x54\x4e\x89" 4996 + "\xc1\x8a\x23\x31\x2d\x14\x2a\xb8" 4997 + "\x1b\x15\xdd\x9e\x6e\x7b\xda\x05" 4998 + "\x91\x7d\x62\x64\x96\x72\xde\xfc" 4999 + "\xc1\xec\xf0\x23\x51\x6f\xdb\x5b" 5000 + "\x1d\x08\x57\xce\x09\xb8\xf6\xcd" 5001 + "\x8d\x95\xf2\x20\xbf\x0f\x20\x57" 5002 + "\x98\x81\x84\x4f\x15\x5c\x76\xe7" 5003 + "\x3e\x0a\x3a\x6c\xc4\x8a\xbe\x78" 5004 + "\x74\x77\xc3\x09\x4b\x5d\x48\xe4" 5005 + "\xc8\xcb\x0b\xea\x17\x28\xcf\xcf" 5006 + "\x31\x32\x44\xa4\xe5\x0e\x1a\x98" 5007 + "\x94\xc4\xf0\xff\xae\x3e\x44\xe8" 5008 + "\xa5\xb3\xb5\x37\x2f\xe8\xaf\x6f" 5009 + "\x28\xc1\x37\x5f\x31\xd2\xb9\x33" 5010 + "\xb1\xb2\x52\x94\x75\x2c\x29\x59" 5011 + "\x06\xc2\x25\xe8\x71\x65\x4e\xed" 5012 + "\xc0\x9c\xb1\xbb\x25\xdc\x6c\xe7" 5013 + "\x4b\xa5\x7a\x54\x7a\x60\xff\x7a" 5014 + "\xe0\x50\x40\x96\x35\x63\xe4\x0b" 5015 + "\x76\xbd\xa4\x65\x00\x1b\x57\x88" 5016 + "\xae\xed\x39\x88\x42\x11\x3c\xed" 5017 + "\x85\x67\x7d\xb9\x68\x82\xe9\x43" 5018 + "\x3c\x47\x53\xfa\xe8\xf8\x9f\x1f" 5019 + "\x9f\xef\x0f\xf7\x30\xd9\x30\x0e" 5020 + "\xb9\x9f\x69\x18\x2f\x7e\xf8\xf8" 5021 + "\xf8\x8c\x0f\xd4\x02\x4d\xea\xcd" 5022 + "\x0a\x9c\x6f\x71\x6d\x5a\x4c\x60" 5023 + "\xce\x20\x56\x32\xc6\xc5\x99\x1f" 5024 + "\x09\xe6\x4e\x18\x1a\x15\x13\xa8" 5025 + "\x7d\xb1\x6b\xc0\xb2\x6d\xf8\x26" 5026 + "\x66\xf8\x3d\x18\x74\x70\x66\x7a" 5027 + "\x34\x17\xde\xba\x47\xf1\x06\x18" 5028 + "\xcb\xaf\xeb\x4a\x1e\x8f\xa7\x77" 5029 + "\xe0\x3b\x78\x62\x66\xc9\x10\xea" 5030 + "\x1f\xb7\x29\x0a\x45\xa1\x1d\x1e" 5031 + "\x1d\xe2\x65\x61\x50\x9c\xd7\x05" 5032 + "\xf2\x0b\x5b\x12\x61\x02\xc8\xe5" 5033 + "\x63\x4f\x20\x0c\x07\x17\x33\x5e" 5034 + "\x03\x9a\x53\x0f\x2e\x55\xfe\x50" 5035 + "\x43\x7d\xd0\xb6\x7e\x5a\xda\xae" 5036 + "\x58\xef\x15\xa9\x83\xd9\x46\xb1" 5037 + "\x42\xaa\xf5\x02\x6c\xce\x92\x06" 5038 + "\x1b\xdb\x66\x45\x91\x79\xc2\x2d" 5039 + "\xe6\x53\xd3\x14\xfd\xbb\x44\x63" 5040 + "\xc6\xd7\x3d\x7a\x0c\x75\x78\x9d" 5041 + "\x5c\xa6\x39\xb3\xe5\x63\xca\x8b" 5042 + "\xfe\xd3\xef\x60\x83\xf6\x8e\x70" 5043 + "\xb6\x67\xc7\x77\xed\x23\xef\x4c" 5044 + "\xf0\xed\x2d\x07\x59\x6f\xc1\x01" 5045 + "\x34\x37\x08\xab\xd9\x1f\x09\xb1" 5046 + "\xce\x5b\x17\xff\x74\xf8\x9c\xd5" 5047 + "\x2c\x56\x39\x79\x0f\x69\x44\x75" 5048 + "\x58\x27\x01\xc4\xbf\xa7\xa1\x1d" 5049 + "\x90\x17\x77\x86\x5a\x3f\xd9\xd1" 5050 + "\x0e\xa0\x10\xf8\xec\x1e\xa5\x7f" 5051 + "\x5e\x36\xd1\xe3\x04\x2c\x70\xf7" 5052 + "\x8e\xc0\x98\x2f\x6c\x94\x2b\x41" 5053 + "\xb7\x60\x00\xb7\x2e\xb8\x02\x8d" 5054 + "\xb8\xb0\xd3\x86\xba\x1d\xd7\x90" 5055 + "\xd6\xb6\xe1\xfc\xd7\xd8\x28\x06" 5056 + "\x63\x9b\xce\x61\x24\x79\xc0\x70" 5057 + "\x52\xd0\xb6\xd4\x28\x95\x24\x87" 5058 + "\x03\x1f\xb7\x9a\xda\xa3\xfb\x52" 5059 + "\x5b\x68\xe7\x4c\x8c\x24\xe1\x42" 5060 + "\xf7\xd5\xfd\xad\x06\x32\x9f\xba" 5061 + "\xc1\xfc\xdd\xc6\xfc\xfc\xb3\x38" 5062 + "\x74\x56\x58\x40\x02\x37\x52\x2c" 5063 + "\x55\xcc\xb3\x9e\x7a\xe9\xd4\x38" 5064 + "\x41\x5e\x0c\x35\xe2\x11\xd1\x13" 5065 + "\xf8\xb7\x8d\x72\x6b\x22\x2a\xb0" 5066 + "\xdb\x08\xba\x35\xb9\x3f\xc8\xd3" 5067 + "\x24\x90\xec\x58\xd2\x09\xc7\x2d" 5068 + "\xed\x38\x80\x36\x72\x43\x27\x49" 5069 + "\x4a\x80\x8a\xa2\xe8\xd3\xda\x30" 5070 + "\x7d\xb6\x82\x37\x86\x92\x86\x3e" 5071 + "\x08\xb2\x28\x5a\x55\x44\x24\x7d" 5072 + "\x40\x48\x8a\xb6\x89\x58\x08\xa0" 5073 + "\xd6\x6d\x3a\x17\xbf\xf6\x54\xa2" 5074 + "\xf5\xd3\x8c\x0f\x78\x12\x57\x8b" 5075 + "\xd5\xc2\xfd\x58\x5b\x7f\x38\xe3" 5076 + "\xcc\xb7\x7c\x48\xb3\x20\xe8\x81" 5077 + "\x14\x32\x45\x05\xe0\xdb\x9f\x75" 5078 + "\x85\xb4\x6a\xfc\x95\xe3\x54\x22" 5079 + "\x12\xee\x30\xfe\xd8\x30\xef\x34" 5080 + "\x50\xab\x46\x30\x98\x2f\xb7\xc0" 5081 + "\x15\xa2\x83\xb6\xf2\x06\x21\xa2" 5082 + "\xc3\x26\x37\x14\xd1\x4d\xb5\x10" 5083 + "\x52\x76\x4d\x6a\xee\xb5\x2b\x15" 5084 + "\xb7\xf9\x51\xe8\x2a\xaf\xc7\xfa" 5085 + "\x77\xaf\xb0\x05\x4d\xd1\x68\x8e" 5086 + "\x74\x05\x9f\x9d\x93\xa5\x3e\x7f" 5087 + "\x4e\x5f\x9d\xcb\x09\xc7\x83\xe3" 5088 + "\x02\x9d\x27\x1f\xef\x85\x05\x8d" 5089 + "\xec\x55\x88\x0f\x0d\x7c\x4c\xe8" 5090 + "\xa1\x75\xa0\xd8\x06\x47\x14\xef" 5091 + "\xaa\x61\xcf\x26\x15\xad\xd8\xa3" 5092 + "\xaa\x75\xf2\x78\x4a\x5a\x61\xdf" 5093 + "\x8b\xc7\x04\xbc\xb2\x32\xd2\x7e" 5094 + "\x42\xee\xb4\x2f\x51\xff\x7b\x2e" 5095 + "\xd3\x02\xe8\xdc\x5d\x0d\x50\xdc" 5096 + "\xae\xb7\x46\xf9\xa8\xe6\xd0\x16" 5097 + "\xcc\xe6\x2c\x81\xc7\xad\xe9\xf0" 5098 + "\x05\x72\x6d\x3d\x0a\x7a\xa9\x02" 5099 + "\xac\x82\x93\x6e\xb6\x1c\x28\xfc" 5100 + "\x44\x12\xfb\x73\x77\xd4\x13\x39" 5101 + "\x29\x88\x8a\xf3\x5c\xa6\x36\xa0" 5102 + "\x2a\xed\x7e\xb1\x1d\xd6\x4c\x6b" 5103 + "\x41\x01\x18\x5d\x5d\x07\x97\xa6" 5104 + "\x4b\xef\x31\x18\xea\xac\xb1\x84" 5105 + "\x21\xed\xda\x86", 5106 + .rlen = 4100, 5107 + .np = 2, 5108 + .tap = { 4064, 36 }, 5109 + }, 5110 + }; 5111 + 5112 + static struct cipher_testvec aes_ctr_dec_tv_template[] = { 5113 + { /* From RFC 3686 */ 5114 + .key = "\xae\x68\x52\xf8\x12\x10\x67\xcc" 5115 + "\x4b\xf7\xa5\x76\x55\x77\xf3\x9e" 5116 + "\x00\x00\x00\x30", 5117 + .klen = 20, 5118 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00", 5119 + .input = "\xe4\x09\x5d\x4f\xb7\xa7\xb3\x79" 5120 + "\x2d\x61\x75\xa3\x26\x13\x11\xb8", 5121 + .ilen = 16, 5122 + .result = "Single block msg", 5123 + .rlen = 16, 5124 + }, { 5125 + .key = "\x7e\x24\x06\x78\x17\xfa\xe0\xd7" 5126 + "\x43\xd6\xce\x1f\x32\x53\x91\x63" 5127 + "\x00\x6c\xb6\xdb", 5128 + .klen = 20, 5129 + .iv = "\xc0\x54\x3b\x59\xda\x48\xd9\x0b", 5130 + .input = "\x51\x04\xa1\x06\x16\x8a\x72\xd9" 5131 + "\x79\x0d\x41\xee\x8e\xda\xd3\x88" 5132 + "\xeb\x2e\x1e\xfc\x46\xda\x57\xc8" 5133 + "\xfc\xe6\x30\xdf\x91\x41\xbe\x28", 5134 + .ilen = 32, 5135 + .result = "\x00\x01\x02\x03\x04\x05\x06\x07" 5136 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 5137 + "\x10\x11\x12\x13\x14\x15\x16\x17" 5138 + "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 5139 + .rlen = 32, 5140 + }, { 5141 + .key = "\x16\xaf\x5b\x14\x5f\xc9\xf5\x79" 5142 + "\xc1\x75\xf9\x3e\x3b\xfb\x0e\xed" 5143 + "\x86\x3d\x06\xcc\xfd\xb7\x85\x15" 5144 + "\x00\x00\x00\x48", 5145 + .klen = 28, 5146 + .iv = "\x36\x73\x3c\x14\x7d\x6d\x93\xcb", 5147 + .input = "\x4b\x55\x38\x4f\xe2\x59\xc9\xc8" 5148 + "\x4e\x79\x35\xa0\x03\xcb\xe9\x28", 5149 + .ilen = 16, 5150 + .result = "Single block msg", 5151 + .rlen = 16, 5152 + }, { 5153 + .key = "\x7c\x5c\xb2\x40\x1b\x3d\xc3\x3c" 5154 + "\x19\xe7\x34\x08\x19\xe0\xf6\x9c" 5155 + "\x67\x8c\x3d\xb8\xe6\xf6\xa9\x1a" 5156 + "\x00\x96\xb0\x3b", 5157 + .klen = 28, 5158 + .iv = "\x02\x0c\x6e\xad\xc2\xcb\x50\x0d", 5159 + .input = "\x45\x32\x43\xfc\x60\x9b\x23\x32" 5160 + "\x7e\xdf\xaa\xfa\x71\x31\xcd\x9f" 5161 + "\x84\x90\x70\x1c\x5a\xd4\xa7\x9c" 5162 + "\xfc\x1f\xe0\xff\x42\xf4\xfb\x00", 5163 + .ilen = 32, 5164 + .result = "\x00\x01\x02\x03\x04\x05\x06\x07" 5165 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 5166 + "\x10\x11\x12\x13\x14\x15\x16\x17" 5167 + "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 5168 + .rlen = 32, 5169 + }, { 5170 + .key = "\x77\x6b\xef\xf2\x85\x1d\xb0\x6f" 5171 + "\x4c\x8a\x05\x42\xc8\x69\x6f\x6c" 5172 + "\x6a\x81\xaf\x1e\xec\x96\xb4\xd3" 5173 + "\x7f\xc1\xd6\x89\xe6\xc1\xc1\x04" 5174 + "\x00\x00\x00\x60", 5175 + .klen = 36, 5176 + .iv = "\xdb\x56\x72\xc9\x7a\xa8\xf0\xb2", 5177 + .input = "\x14\x5a\xd0\x1d\xbf\x82\x4e\xc7" 5178 + "\x56\x08\x63\xdc\x71\xe3\xe0\xc0", 5179 + .ilen = 16, 5180 + .result = "Single block msg", 5181 + .rlen = 16, 5182 + }, { 5183 + .key = "\xf6\xd6\x6d\x6b\xd5\x2d\x59\xbb" 5184 + "\x07\x96\x36\x58\x79\xef\xf8\x86" 5185 + "\xc6\x6d\xd5\x1a\x5b\x6a\x99\x74" 5186 + "\x4b\x50\x59\x0c\x87\xa2\x38\x84" 5187 + "\x00\xfa\xac\x24", 5188 + .klen = 36, 5189 + .iv = "\xc1\x58\x5e\xf1\x5a\x43\xd8\x75", 5190 + .input = "\xf0\x5e\x23\x1b\x38\x94\x61\x2c" 5191 + "\x49\xee\x00\x0b\x80\x4e\xb2\xa9" 5192 + "\xb8\x30\x6b\x50\x8f\x83\x9d\x6a" 5193 + "\x55\x30\x83\x1d\x93\x44\xaf\x1c", 5194 + .ilen = 32, 5195 + .result = "\x00\x01\x02\x03\x04\x05\x06\x07" 5196 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 5197 + "\x10\x11\x12\x13\x14\x15\x16\x17" 5198 + "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 5199 + .rlen = 32, 5200 + }, 5201 + }; 5202 + 5203 + static struct aead_testvec aes_gcm_enc_tv_template[] = { 5204 + { /* From McGrew & Viega - http://citeseer.ist.psu.edu/656989.html */ 5205 + .key = zeroed_string, 5206 + .klen = 16, 5207 + .result = "\x58\xe2\xfc\xce\xfa\x7e\x30\x61" 5208 + "\x36\x7f\x1d\x57\xa4\xe7\x45\x5a", 5209 + .rlen = 16, 5210 + }, { 5211 + .key = zeroed_string, 5212 + .klen = 16, 5213 + .input = zeroed_string, 5214 + .ilen = 16, 5215 + .result = "\x03\x88\xda\xce\x60\xb6\xa3\x92" 5216 + "\xf3\x28\xc2\xb9\x71\xb2\xfe\x78" 5217 + "\xab\x6e\x47\xd4\x2c\xec\x13\xbd" 5218 + "\xf5\x3a\x67\xb2\x12\x57\xbd\xdf", 5219 + .rlen = 32, 5220 + }, { 5221 + .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 5222 + "\x6d\x6a\x8f\x94\x67\x30\x83\x08", 5223 + .klen = 16, 5224 + .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad" 5225 + "\xde\xca\xf8\x88", 5226 + .input = "\xd9\x31\x32\x25\xf8\x84\x06\xe5" 5227 + "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a" 5228 + "\x86\xa7\xa9\x53\x15\x34\xf7\xda" 5229 + "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72" 5230 + "\x1c\x3c\x0c\x95\x95\x68\x09\x53" 5231 + "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25" 5232 + "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57" 5233 + "\xba\x63\x7b\x39\x1a\xaf\xd2\x55", 5234 + .ilen = 64, 5235 + .result = "\x42\x83\x1e\xc2\x21\x77\x74\x24" 5236 + "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c" 5237 + "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0" 5238 + "\x35\xc1\x7e\x23\x29\xac\xa1\x2e" 5239 + "\x21\xd5\x14\xb2\x54\x66\x93\x1c" 5240 + "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05" 5241 + "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97" 5242 + "\x3d\x58\xe0\x91\x47\x3f\x59\x85" 5243 + "\x4d\x5c\x2a\xf3\x27\xcd\x64\xa6" 5244 + "\x2c\xf3\x5a\xbd\x2b\xa6\xfa\xb4", 5245 + .rlen = 80, 5246 + }, { 5247 + .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 5248 + "\x6d\x6a\x8f\x94\x67\x30\x83\x08", 5249 + .klen = 16, 5250 + .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad" 5251 + "\xde\xca\xf8\x88", 5252 + .input = "\xd9\x31\x32\x25\xf8\x84\x06\xe5" 5253 + "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a" 5254 + "\x86\xa7\xa9\x53\x15\x34\xf7\xda" 5255 + "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72" 5256 + "\x1c\x3c\x0c\x95\x95\x68\x09\x53" 5257 + "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25" 5258 + "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57" 5259 + "\xba\x63\x7b\x39", 5260 + .ilen = 60, 5261 + .assoc = "\xfe\xed\xfa\xce\xde\xad\xbe\xef" 5262 + "\xfe\xed\xfa\xce\xde\xad\xbe\xef" 5263 + "\xab\xad\xda\xd2", 5264 + .alen = 20, 5265 + .result = "\x42\x83\x1e\xc2\x21\x77\x74\x24" 5266 + "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c" 5267 + "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0" 5268 + "\x35\xc1\x7e\x23\x29\xac\xa1\x2e" 5269 + "\x21\xd5\x14\xb2\x54\x66\x93\x1c" 5270 + "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05" 5271 + "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97" 5272 + "\x3d\x58\xe0\x91" 5273 + "\x5b\xc9\x4f\xbc\x32\x21\xa5\xdb" 5274 + "\x94\xfa\xe9\x5a\xe7\x12\x1a\x47", 5275 + .rlen = 76, 5276 + }, { 5277 + .key = zeroed_string, 5278 + .klen = 24, 5279 + .result = "\xcd\x33\xb2\x8a\xc7\x73\xf7\x4b" 5280 + "\xa0\x0e\xd1\xf3\x12\x57\x24\x35", 5281 + .rlen = 16, 5282 + }, { 5283 + .key = zeroed_string, 5284 + .klen = 24, 5285 + .input = zeroed_string, 5286 + .ilen = 16, 5287 + .result = "\x98\xe7\x24\x7c\x07\xf0\xfe\x41" 5288 + "\x1c\x26\x7e\x43\x84\xb0\xf6\x00" 5289 + "\x2f\xf5\x8d\x80\x03\x39\x27\xab" 5290 + "\x8e\xf4\xd4\x58\x75\x14\xf0\xfb", 5291 + .rlen = 32, 5292 + }, { 5293 + .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 5294 + "\x6d\x6a\x8f\x94\x67\x30\x83\x08" 5295 + "\xfe\xff\xe9\x92\x86\x65\x73\x1c", 5296 + .klen = 24, 5297 + .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad" 5298 + "\xde\xca\xf8\x88", 5299 + .input = "\xd9\x31\x32\x25\xf8\x84\x06\xe5" 5300 + "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a" 5301 + "\x86\xa7\xa9\x53\x15\x34\xf7\xda" 5302 + "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72" 5303 + "\x1c\x3c\x0c\x95\x95\x68\x09\x53" 5304 + "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25" 5305 + "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57" 5306 + "\xba\x63\x7b\x39\x1a\xaf\xd2\x55", 5307 + .ilen = 64, 5308 + .result = "\x39\x80\xca\x0b\x3c\x00\xe8\x41" 5309 + "\xeb\x06\xfa\xc4\x87\x2a\x27\x57" 5310 + "\x85\x9e\x1c\xea\xa6\xef\xd9\x84" 5311 + "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c" 5312 + "\x7d\x77\x3d\x00\xc1\x44\xc5\x25" 5313 + "\xac\x61\x9d\x18\xc8\x4a\x3f\x47" 5314 + "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9" 5315 + "\xcc\xda\x27\x10\xac\xad\xe2\x56" 5316 + "\x99\x24\xa7\xc8\x58\x73\x36\xbf" 5317 + "\xb1\x18\x02\x4d\xb8\x67\x4a\x14", 5318 + .rlen = 80, 5319 + }, { 5320 + .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 5321 + "\x6d\x6a\x8f\x94\x67\x30\x83\x08" 5322 + "\xfe\xff\xe9\x92\x86\x65\x73\x1c", 5323 + .klen = 24, 5324 + .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad" 5325 + "\xde\xca\xf8\x88", 5326 + .input = "\xd9\x31\x32\x25\xf8\x84\x06\xe5" 5327 + "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a" 5328 + "\x86\xa7\xa9\x53\x15\x34\xf7\xda" 5329 + "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72" 5330 + "\x1c\x3c\x0c\x95\x95\x68\x09\x53" 5331 + "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25" 5332 + "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57" 5333 + "\xba\x63\x7b\x39", 5334 + .ilen = 60, 5335 + .assoc = "\xfe\xed\xfa\xce\xde\xad\xbe\xef" 5336 + "\xfe\xed\xfa\xce\xde\xad\xbe\xef" 5337 + "\xab\xad\xda\xd2", 5338 + .alen = 20, 5339 + .result = "\x39\x80\xca\x0b\x3c\x00\xe8\x41" 5340 + "\xeb\x06\xfa\xc4\x87\x2a\x27\x57" 5341 + "\x85\x9e\x1c\xea\xa6\xef\xd9\x84" 5342 + "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c" 5343 + "\x7d\x77\x3d\x00\xc1\x44\xc5\x25" 5344 + "\xac\x61\x9d\x18\xc8\x4a\x3f\x47" 5345 + "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9" 5346 + "\xcc\xda\x27\x10" 5347 + "\x25\x19\x49\x8e\x80\xf1\x47\x8f" 5348 + "\x37\xba\x55\xbd\x6d\x27\x61\x8c", 5349 + .rlen = 76, 5350 + .np = 2, 5351 + .tap = { 32, 28 }, 5352 + .anp = 2, 5353 + .atap = { 8, 12 } 5354 + }, { 5355 + .key = zeroed_string, 5356 + .klen = 32, 5357 + .result = "\x53\x0f\x8a\xfb\xc7\x45\x36\xb9" 5358 + "\xa9\x63\xb4\xf1\xc4\xcb\x73\x8b", 5359 + .rlen = 16, 5360 + } 5361 + }; 5362 + 5363 + static struct aead_testvec aes_gcm_dec_tv_template[] = { 5364 + { /* From McGrew & Viega - http://citeseer.ist.psu.edu/656989.html */ 5365 + .key = zeroed_string, 5366 + .klen = 32, 5367 + .input = "\xce\xa7\x40\x3d\x4d\x60\x6b\x6e" 5368 + "\x07\x4e\xc5\xd3\xba\xf3\x9d\x18" 5369 + "\xd0\xd1\xc8\xa7\x99\x99\x6b\xf0" 5370 + "\x26\x5b\x98\xb5\xd4\x8a\xb9\x19", 5371 + .ilen = 32, 5372 + .result = zeroed_string, 5373 + .rlen = 16, 5374 + }, { 5375 + .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 5376 + "\x6d\x6a\x8f\x94\x67\x30\x83\x08" 5377 + "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 5378 + "\x6d\x6a\x8f\x94\x67\x30\x83\x08", 5379 + .klen = 32, 5380 + .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad" 5381 + "\xde\xca\xf8\x88", 5382 + .input = "\x52\x2d\xc1\xf0\x99\x56\x7d\x07" 5383 + "\xf4\x7f\x37\xa3\x2a\x84\x42\x7d" 5384 + "\x64\x3a\x8c\xdc\xbf\xe5\xc0\xc9" 5385 + "\x75\x98\xa2\xbd\x25\x55\xd1\xaa" 5386 + "\x8c\xb0\x8e\x48\x59\x0d\xbb\x3d" 5387 + "\xa7\xb0\x8b\x10\x56\x82\x88\x38" 5388 + "\xc5\xf6\x1e\x63\x93\xba\x7a\x0a" 5389 + "\xbc\xc9\xf6\x62\x89\x80\x15\xad" 5390 + "\xb0\x94\xda\xc5\xd9\x34\x71\xbd" 5391 + "\xec\x1a\x50\x22\x70\xe3\xcc\x6c", 5392 + .ilen = 80, 5393 + .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5" 5394 + "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a" 5395 + "\x86\xa7\xa9\x53\x15\x34\xf7\xda" 5396 + "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72" 5397 + "\x1c\x3c\x0c\x95\x95\x68\x09\x53" 5398 + "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25" 5399 + "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57" 5400 + "\xba\x63\x7b\x39\x1a\xaf\xd2\x55", 5401 + .rlen = 64, 5402 + }, { 5403 + .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 5404 + "\x6d\x6a\x8f\x94\x67\x30\x83\x08" 5405 + "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 5406 + "\x6d\x6a\x8f\x94\x67\x30\x83\x08", 5407 + .klen = 32, 5408 + .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad" 5409 + "\xde\xca\xf8\x88", 5410 + .input = "\x52\x2d\xc1\xf0\x99\x56\x7d\x07" 5411 + "\xf4\x7f\x37\xa3\x2a\x84\x42\x7d" 5412 + "\x64\x3a\x8c\xdc\xbf\xe5\xc0\xc9" 5413 + "\x75\x98\xa2\xbd\x25\x55\xd1\xaa" 5414 + "\x8c\xb0\x8e\x48\x59\x0d\xbb\x3d" 5415 + "\xa7\xb0\x8b\x10\x56\x82\x88\x38" 5416 + "\xc5\xf6\x1e\x63\x93\xba\x7a\x0a" 5417 + "\xbc\xc9\xf6\x62" 5418 + "\x76\xfc\x6e\xce\x0f\x4e\x17\x68" 5419 + "\xcd\xdf\x88\x53\xbb\x2d\x55\x1b", 5420 + .ilen = 76, 5421 + .assoc = "\xfe\xed\xfa\xce\xde\xad\xbe\xef" 5422 + "\xfe\xed\xfa\xce\xde\xad\xbe\xef" 5423 + "\xab\xad\xda\xd2", 5424 + .alen = 20, 5425 + .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5" 5426 + "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a" 5427 + "\x86\xa7\xa9\x53\x15\x34\xf7\xda" 5428 + "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72" 5429 + "\x1c\x3c\x0c\x95\x95\x68\x09\x53" 5430 + "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25" 5431 + "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57" 5432 + "\xba\x63\x7b\x39", 5433 + .rlen = 60, 5434 + .np = 2, 5435 + .tap = { 48, 28 }, 5436 + .anp = 3, 5437 + .atap = { 8, 8, 4 } 5438 + }, { 5439 + .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 5440 + "\x6d\x6a\x8f\x94\x67\x30\x83\x08", 5441 + .klen = 16, 5442 + .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad" 5443 + "\xde\xca\xf8\x88", 5444 + .input = "\x42\x83\x1e\xc2\x21\x77\x74\x24" 5445 + "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c" 5446 + "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0" 5447 + "\x35\xc1\x7e\x23\x29\xac\xa1\x2e" 5448 + "\x21\xd5\x14\xb2\x54\x66\x93\x1c" 5449 + "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05" 5450 + "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97" 5451 + "\x3d\x58\xe0\x91\x47\x3f\x59\x85" 5452 + "\x4d\x5c\x2a\xf3\x27\xcd\x64\xa6" 5453 + "\x2c\xf3\x5a\xbd\x2b\xa6\xfa\xb4", 5454 + .ilen = 80, 5455 + .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5" 5456 + "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a" 5457 + "\x86\xa7\xa9\x53\x15\x34\xf7\xda" 5458 + "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72" 5459 + "\x1c\x3c\x0c\x95\x95\x68\x09\x53" 5460 + "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25" 5461 + "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57" 5462 + "\xba\x63\x7b\x39\x1a\xaf\xd2\x55", 5463 + .rlen = 64, 5464 + }, { 5465 + .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 5466 + "\x6d\x6a\x8f\x94\x67\x30\x83\x08", 5467 + .klen = 16, 5468 + .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad" 5469 + "\xde\xca\xf8\x88", 5470 + .input = "\x42\x83\x1e\xc2\x21\x77\x74\x24" 5471 + "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c" 5472 + "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0" 5473 + "\x35\xc1\x7e\x23\x29\xac\xa1\x2e" 5474 + "\x21\xd5\x14\xb2\x54\x66\x93\x1c" 5475 + "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05" 5476 + "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97" 5477 + "\x3d\x58\xe0\x91" 5478 + "\x5b\xc9\x4f\xbc\x32\x21\xa5\xdb" 5479 + "\x94\xfa\xe9\x5a\xe7\x12\x1a\x47", 5480 + .ilen = 76, 5481 + .assoc = "\xfe\xed\xfa\xce\xde\xad\xbe\xef" 5482 + "\xfe\xed\xfa\xce\xde\xad\xbe\xef" 5483 + "\xab\xad\xda\xd2", 5484 + .alen = 20, 5485 + .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5" 5486 + "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a" 5487 + "\x86\xa7\xa9\x53\x15\x34\xf7\xda" 5488 + "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72" 5489 + "\x1c\x3c\x0c\x95\x95\x68\x09\x53" 5490 + "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25" 5491 + "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57" 5492 + "\xba\x63\x7b\x39", 5493 + .rlen = 60, 5494 + }, { 5495 + .key = zeroed_string, 5496 + .klen = 24, 5497 + .input = "\x98\xe7\x24\x7c\x07\xf0\xfe\x41" 5498 + "\x1c\x26\x7e\x43\x84\xb0\xf6\x00" 5499 + "\x2f\xf5\x8d\x80\x03\x39\x27\xab" 5500 + "\x8e\xf4\xd4\x58\x75\x14\xf0\xfb", 5501 + .ilen = 32, 5502 + .result = zeroed_string, 5503 + .rlen = 16, 5504 + }, { 5505 + .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 5506 + "\x6d\x6a\x8f\x94\x67\x30\x83\x08" 5507 + "\xfe\xff\xe9\x92\x86\x65\x73\x1c", 5508 + .klen = 24, 5509 + .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad" 5510 + "\xde\xca\xf8\x88", 5511 + .input = "\x39\x80\xca\x0b\x3c\x00\xe8\x41" 5512 + "\xeb\x06\xfa\xc4\x87\x2a\x27\x57" 5513 + "\x85\x9e\x1c\xea\xa6\xef\xd9\x84" 5514 + "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c" 5515 + "\x7d\x77\x3d\x00\xc1\x44\xc5\x25" 5516 + "\xac\x61\x9d\x18\xc8\x4a\x3f\x47" 5517 + "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9" 5518 + "\xcc\xda\x27\x10\xac\xad\xe2\x56" 5519 + "\x99\x24\xa7\xc8\x58\x73\x36\xbf" 5520 + "\xb1\x18\x02\x4d\xb8\x67\x4a\x14", 5521 + .ilen = 80, 5522 + .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5" 5523 + "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a" 5524 + "\x86\xa7\xa9\x53\x15\x34\xf7\xda" 5525 + "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72" 5526 + "\x1c\x3c\x0c\x95\x95\x68\x09\x53" 5527 + "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25" 5528 + "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57" 5529 + "\xba\x63\x7b\x39\x1a\xaf\xd2\x55", 5530 + .rlen = 64, 5531 + }, { 5532 + .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c" 5533 + "\x6d\x6a\x8f\x94\x67\x30\x83\x08" 5534 + "\xfe\xff\xe9\x92\x86\x65\x73\x1c", 5535 + .klen = 24, 5536 + .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad" 5537 + "\xde\xca\xf8\x88", 5538 + .input = "\x39\x80\xca\x0b\x3c\x00\xe8\x41" 5539 + "\xeb\x06\xfa\xc4\x87\x2a\x27\x57" 5540 + "\x85\x9e\x1c\xea\xa6\xef\xd9\x84" 5541 + "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c" 5542 + "\x7d\x77\x3d\x00\xc1\x44\xc5\x25" 5543 + "\xac\x61\x9d\x18\xc8\x4a\x3f\x47" 5544 + "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9" 5545 + "\xcc\xda\x27\x10" 5546 + "\x25\x19\x49\x8e\x80\xf1\x47\x8f" 5547 + "\x37\xba\x55\xbd\x6d\x27\x61\x8c", 5548 + .ilen = 76, 5549 + .assoc = "\xfe\xed\xfa\xce\xde\xad\xbe\xef" 5550 + "\xfe\xed\xfa\xce\xde\xad\xbe\xef" 5551 + "\xab\xad\xda\xd2", 5552 + .alen = 20, 5553 + .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5" 5554 + "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a" 5555 + "\x86\xa7\xa9\x53\x15\x34\xf7\xda" 5556 + "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72" 5557 + "\x1c\x3c\x0c\x95\x95\x68\x09\x53" 5558 + "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25" 5559 + "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57" 5560 + "\xba\x63\x7b\x39", 5561 + .rlen = 60, 5562 + } 5563 + }; 5564 + 5565 + static struct aead_testvec aes_ccm_enc_tv_template[] = { 5566 + { /* From RFC 3610 */ 5567 + .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 5568 + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf", 5569 + .klen = 16, 5570 + .iv = "\x01\x00\x00\x00\x03\x02\x01\x00" 5571 + "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00", 5572 + .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07", 5573 + .alen = 8, 5574 + .input = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 5575 + "\x10\x11\x12\x13\x14\x15\x16\x17" 5576 + "\x18\x19\x1a\x1b\x1c\x1d\x1e", 5577 + .ilen = 23, 5578 + .result = "\x58\x8c\x97\x9a\x61\xc6\x63\xd2" 5579 + "\xf0\x66\xd0\xc2\xc0\xf9\x89\x80" 5580 + "\x6d\x5f\x6b\x61\xda\xc3\x84\x17" 5581 + "\xe8\xd1\x2c\xfd\xf9\x26\xe0", 5582 + .rlen = 31, 5583 + }, { 5584 + .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 5585 + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf", 5586 + .klen = 16, 5587 + .iv = "\x01\x00\x00\x00\x07\x06\x05\x04" 5588 + "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00", 5589 + .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07" 5590 + "\x08\x09\x0a\x0b", 5591 + .alen = 12, 5592 + .input = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13" 5593 + "\x14\x15\x16\x17\x18\x19\x1a\x1b" 5594 + "\x1c\x1d\x1e\x1f", 5595 + .ilen = 20, 5596 + .result = "\xdc\xf1\xfb\x7b\x5d\x9e\x23\xfb" 5597 + "\x9d\x4e\x13\x12\x53\x65\x8a\xd8" 5598 + "\x6e\xbd\xca\x3e\x51\xe8\x3f\x07" 5599 + "\x7d\x9c\x2d\x93", 5600 + .rlen = 28, 5601 + }, { 5602 + .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 5603 + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf", 5604 + .klen = 16, 5605 + .iv = "\x01\x00\x00\x00\x0b\x0a\x09\x08" 5606 + "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00", 5607 + .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07", 5608 + .alen = 8, 5609 + .input = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 5610 + "\x10\x11\x12\x13\x14\x15\x16\x17" 5611 + "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 5612 + "\x20", 5613 + .ilen = 25, 5614 + .result = "\x82\x53\x1a\x60\xcc\x24\x94\x5a" 5615 + "\x4b\x82\x79\x18\x1a\xb5\xc8\x4d" 5616 + "\xf2\x1c\xe7\xf9\xb7\x3f\x42\xe1" 5617 + "\x97\xea\x9c\x07\xe5\x6b\x5e\xb1" 5618 + "\x7e\x5f\x4e", 5619 + .rlen = 35, 5620 + }, { 5621 + .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 5622 + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf", 5623 + .klen = 16, 5624 + .iv = "\x01\x00\x00\x00\x0c\x0b\x0a\x09" 5625 + "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00", 5626 + .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07" 5627 + "\x08\x09\x0a\x0b", 5628 + .alen = 12, 5629 + .input = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13" 5630 + "\x14\x15\x16\x17\x18\x19\x1a\x1b" 5631 + "\x1c\x1d\x1e", 5632 + .ilen = 19, 5633 + .result = "\x07\x34\x25\x94\x15\x77\x85\x15" 5634 + "\x2b\x07\x40\x98\x33\x0a\xbb\x14" 5635 + "\x1b\x94\x7b\x56\x6a\xa9\x40\x6b" 5636 + "\x4d\x99\x99\x88\xdd", 5637 + .rlen = 29, 5638 + }, { 5639 + .key = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3" 5640 + "\x25\xa7\x62\x36\xdf\x93\xcc\x6b", 5641 + .klen = 16, 5642 + .iv = "\x01\x00\x33\x56\x8e\xf7\xb2\x63" 5643 + "\x3c\x96\x96\x76\x6c\xfa\x00\x00", 5644 + .assoc = "\x63\x01\x8f\x76\xdc\x8a\x1b\xcb", 5645 + .alen = 8, 5646 + .input = "\x90\x20\xea\x6f\x91\xbd\xd8\x5a" 5647 + "\xfa\x00\x39\xba\x4b\xaf\xf9\xbf" 5648 + "\xb7\x9c\x70\x28\x94\x9c\xd0\xec", 5649 + .ilen = 24, 5650 + .result = "\x4c\xcb\x1e\x7c\xa9\x81\xbe\xfa" 5651 + "\xa0\x72\x6c\x55\xd3\x78\x06\x12" 5652 + "\x98\xc8\x5c\x92\x81\x4a\xbc\x33" 5653 + "\xc5\x2e\xe8\x1d\x7d\x77\xc0\x8a", 5654 + .rlen = 32, 5655 + }, { 5656 + .key = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3" 5657 + "\x25\xa7\x62\x36\xdf\x93\xcc\x6b", 5658 + .klen = 16, 5659 + .iv = "\x01\x00\xd5\x60\x91\x2d\x3f\x70" 5660 + "\x3c\x96\x96\x76\x6c\xfa\x00\x00", 5661 + .assoc = "\xcd\x90\x44\xd2\xb7\x1f\xdb\x81" 5662 + "\x20\xea\x60\xc0", 5663 + .alen = 12, 5664 + .input = "\x64\x35\xac\xba\xfb\x11\xa8\x2e" 5665 + "\x2f\x07\x1d\x7c\xa4\xa5\xeb\xd9" 5666 + "\x3a\x80\x3b\xa8\x7f", 5667 + .ilen = 21, 5668 + .result = "\x00\x97\x69\xec\xab\xdf\x48\x62" 5669 + "\x55\x94\xc5\x92\x51\xe6\x03\x57" 5670 + "\x22\x67\x5e\x04\xc8\x47\x09\x9e" 5671 + "\x5a\xe0\x70\x45\x51", 5672 + .rlen = 29, 5673 + }, { 5674 + .key = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3" 5675 + "\x25\xa7\x62\x36\xdf\x93\xcc\x6b", 5676 + .klen = 16, 5677 + .iv = "\x01\x00\x42\xff\xf8\xf1\x95\x1c" 5678 + "\x3c\x96\x96\x76\x6c\xfa\x00\x00", 5679 + .assoc = "\xd8\x5b\xc7\xe6\x9f\x94\x4f\xb8", 5680 + .alen = 8, 5681 + .input = "\x8a\x19\xb9\x50\xbc\xf7\x1a\x01" 5682 + "\x8e\x5e\x67\x01\xc9\x17\x87\x65" 5683 + "\x98\x09\xd6\x7d\xbe\xdd\x18", 5684 + .ilen = 23, 5685 + .result = "\xbc\x21\x8d\xaa\x94\x74\x27\xb6" 5686 + "\xdb\x38\x6a\x99\xac\x1a\xef\x23" 5687 + "\xad\xe0\xb5\x29\x39\xcb\x6a\x63" 5688 + "\x7c\xf9\xbe\xc2\x40\x88\x97\xc6" 5689 + "\xba", 5690 + .rlen = 33, 5691 + }, 5692 + }; 5693 + 5694 + static struct aead_testvec aes_ccm_dec_tv_template[] = { 5695 + { /* From RFC 3610 */ 5696 + .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 5697 + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf", 5698 + .klen = 16, 5699 + .iv = "\x01\x00\x00\x00\x03\x02\x01\x00" 5700 + "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00", 5701 + .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07", 5702 + .alen = 8, 5703 + .input = "\x58\x8c\x97\x9a\x61\xc6\x63\xd2" 5704 + "\xf0\x66\xd0\xc2\xc0\xf9\x89\x80" 5705 + "\x6d\x5f\x6b\x61\xda\xc3\x84\x17" 5706 + "\xe8\xd1\x2c\xfd\xf9\x26\xe0", 5707 + .ilen = 31, 5708 + .result = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 5709 + "\x10\x11\x12\x13\x14\x15\x16\x17" 5710 + "\x18\x19\x1a\x1b\x1c\x1d\x1e", 5711 + .rlen = 23, 5712 + }, { 5713 + .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 5714 + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf", 5715 + .klen = 16, 5716 + .iv = "\x01\x00\x00\x00\x07\x06\x05\x04" 5717 + "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00", 5718 + .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07" 5719 + "\x08\x09\x0a\x0b", 5720 + .alen = 12, 5721 + .input = "\xdc\xf1\xfb\x7b\x5d\x9e\x23\xfb" 5722 + "\x9d\x4e\x13\x12\x53\x65\x8a\xd8" 5723 + "\x6e\xbd\xca\x3e\x51\xe8\x3f\x07" 5724 + "\x7d\x9c\x2d\x93", 5725 + .ilen = 28, 5726 + .result = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13" 5727 + "\x14\x15\x16\x17\x18\x19\x1a\x1b" 5728 + "\x1c\x1d\x1e\x1f", 5729 + .rlen = 20, 5730 + }, { 5731 + .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 5732 + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf", 5733 + .klen = 16, 5734 + .iv = "\x01\x00\x00\x00\x0b\x0a\x09\x08" 5735 + "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00", 5736 + .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07", 5737 + .alen = 8, 5738 + .input = "\x82\x53\x1a\x60\xcc\x24\x94\x5a" 5739 + "\x4b\x82\x79\x18\x1a\xb5\xc8\x4d" 5740 + "\xf2\x1c\xe7\xf9\xb7\x3f\x42\xe1" 5741 + "\x97\xea\x9c\x07\xe5\x6b\x5e\xb1" 5742 + "\x7e\x5f\x4e", 5743 + .ilen = 35, 5744 + .result = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 5745 + "\x10\x11\x12\x13\x14\x15\x16\x17" 5746 + "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 5747 + "\x20", 5748 + .rlen = 25, 5749 + }, { 5750 + .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 5751 + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf", 5752 + .klen = 16, 5753 + .iv = "\x01\x00\x00\x00\x0c\x0b\x0a\x09" 5754 + "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00", 5755 + .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07" 5756 + "\x08\x09\x0a\x0b", 5757 + .alen = 12, 5758 + .input = "\x07\x34\x25\x94\x15\x77\x85\x15" 5759 + "\x2b\x07\x40\x98\x33\x0a\xbb\x14" 5760 + "\x1b\x94\x7b\x56\x6a\xa9\x40\x6b" 5761 + "\x4d\x99\x99\x88\xdd", 5762 + .ilen = 29, 5763 + .result = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13" 5764 + "\x14\x15\x16\x17\x18\x19\x1a\x1b" 5765 + "\x1c\x1d\x1e", 5766 + .rlen = 19, 5767 + }, { 5768 + .key = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3" 5769 + "\x25\xa7\x62\x36\xdf\x93\xcc\x6b", 5770 + .klen = 16, 5771 + .iv = "\x01\x00\x33\x56\x8e\xf7\xb2\x63" 5772 + "\x3c\x96\x96\x76\x6c\xfa\x00\x00", 5773 + .assoc = "\x63\x01\x8f\x76\xdc\x8a\x1b\xcb", 5774 + .alen = 8, 5775 + .input = "\x4c\xcb\x1e\x7c\xa9\x81\xbe\xfa" 5776 + "\xa0\x72\x6c\x55\xd3\x78\x06\x12" 5777 + "\x98\xc8\x5c\x92\x81\x4a\xbc\x33" 5778 + "\xc5\x2e\xe8\x1d\x7d\x77\xc0\x8a", 5779 + .ilen = 32, 5780 + .result = "\x90\x20\xea\x6f\x91\xbd\xd8\x5a" 5781 + "\xfa\x00\x39\xba\x4b\xaf\xf9\xbf" 5782 + "\xb7\x9c\x70\x28\x94\x9c\xd0\xec", 5783 + .rlen = 24, 5784 + }, { 5785 + .key = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3" 5786 + "\x25\xa7\x62\x36\xdf\x93\xcc\x6b", 5787 + .klen = 16, 5788 + .iv = "\x01\x00\xd5\x60\x91\x2d\x3f\x70" 5789 + "\x3c\x96\x96\x76\x6c\xfa\x00\x00", 5790 + .assoc = "\xcd\x90\x44\xd2\xb7\x1f\xdb\x81" 5791 + "\x20\xea\x60\xc0", 5792 + .alen = 12, 5793 + .input = "\x00\x97\x69\xec\xab\xdf\x48\x62" 5794 + "\x55\x94\xc5\x92\x51\xe6\x03\x57" 5795 + "\x22\x67\x5e\x04\xc8\x47\x09\x9e" 5796 + "\x5a\xe0\x70\x45\x51", 5797 + .ilen = 29, 5798 + .result = "\x64\x35\xac\xba\xfb\x11\xa8\x2e" 5799 + "\x2f\x07\x1d\x7c\xa4\xa5\xeb\xd9" 5800 + "\x3a\x80\x3b\xa8\x7f", 5801 + .rlen = 21, 5802 + }, { 5803 + .key = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3" 5804 + "\x25\xa7\x62\x36\xdf\x93\xcc\x6b", 5805 + .klen = 16, 5806 + .iv = "\x01\x00\x42\xff\xf8\xf1\x95\x1c" 5807 + "\x3c\x96\x96\x76\x6c\xfa\x00\x00", 5808 + .assoc = "\xd8\x5b\xc7\xe6\x9f\x94\x4f\xb8", 5809 + .alen = 8, 5810 + .input = "\xbc\x21\x8d\xaa\x94\x74\x27\xb6" 5811 + "\xdb\x38\x6a\x99\xac\x1a\xef\x23" 5812 + "\xad\xe0\xb5\x29\x39\xcb\x6a\x63" 5813 + "\x7c\xf9\xbe\xc2\x40\x88\x97\xc6" 5814 + "\xba", 5815 + .ilen = 33, 5816 + .result = "\x8a\x19\xb9\x50\xbc\xf7\x1a\x01" 5817 + "\x8e\x5e\x67\x01\xc9\x17\x87\x65" 5818 + "\x98\x09\xd6\x7d\xbe\xdd\x18", 5819 + .rlen = 23, 5820 + }, 5821 + }; 5822 + 5823 + /* Cast5 test vectors from RFC 2144 */ 5824 + #define CAST5_ENC_TEST_VECTORS 3 5825 + #define CAST5_DEC_TEST_VECTORS 3 5826 + 5827 + static struct cipher_testvec cast5_enc_tv_template[] = { 5828 + { 5829 + .key = "\x01\x23\x45\x67\x12\x34\x56\x78" 5830 + "\x23\x45\x67\x89\x34\x56\x78\x9a", 5831 + .klen = 16, 5832 + .input = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5833 + .ilen = 8, 5834 + .result = "\x23\x8b\x4f\xe5\x84\x7e\x44\xb2", 5835 + .rlen = 8, 5836 + }, { 5837 + .key = "\x01\x23\x45\x67\x12\x34\x56\x78" 5838 + "\x23\x45", 5839 + .klen = 10, 5840 + .input = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5841 + .ilen = 8, 5842 + .result = "\xeb\x6a\x71\x1a\x2c\x02\x27\x1b", 5843 + .rlen = 8, 5844 + }, { 5845 + .key = "\x01\x23\x45\x67\x12", 5846 + .klen = 5, 5847 + .input = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5848 + .ilen = 8, 5849 + .result = "\x7a\xc8\x16\xd1\x6e\x9b\x30\x2e", 5850 + .rlen = 8, 5851 + }, 5852 + }; 5853 + 5854 + static struct cipher_testvec cast5_dec_tv_template[] = { 5855 + { 5856 + .key = "\x01\x23\x45\x67\x12\x34\x56\x78" 5857 + "\x23\x45\x67\x89\x34\x56\x78\x9a", 5858 + .klen = 16, 5859 + .input = "\x23\x8b\x4f\xe5\x84\x7e\x44\xb2", 5860 + .ilen = 8, 5861 + .result = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5862 + .rlen = 8, 5863 + }, { 5864 + .key = "\x01\x23\x45\x67\x12\x34\x56\x78" 5865 + "\x23\x45", 5866 + .klen = 10, 5867 + .input = "\xeb\x6a\x71\x1a\x2c\x02\x27\x1b", 5868 + .ilen = 8, 5869 + .result = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5870 + .rlen = 8, 5871 + }, { 5872 + .key = "\x01\x23\x45\x67\x12", 5873 + .klen = 5, 5874 + .input = "\x7a\xc8\x16\xd1\x6e\x9b\x30\x2e", 5875 + .ilen = 8, 5876 + .result = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5877 + .rlen = 8, 5878 + }, 5879 + }; 5880 + 5881 + /* 5882 + * ARC4 test vectors from OpenSSL 5883 + */ 5884 + #define ARC4_ENC_TEST_VECTORS 7 5885 + #define ARC4_DEC_TEST_VECTORS 7 5886 + 5887 + static struct cipher_testvec arc4_enc_tv_template[] = { 5888 + { 5889 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5890 + .klen = 8, 5891 + .input = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5892 + .ilen = 8, 5893 + .result = "\x75\xb7\x87\x80\x99\xe0\xc5\x96", 5894 + .rlen = 8, 5895 + }, { 5896 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5897 + .klen = 8, 5898 + .input = "\x00\x00\x00\x00\x00\x00\x00\x00", 5899 + .ilen = 8, 5900 + .result = "\x74\x94\xc2\xe7\x10\x4b\x08\x79", 5901 + .rlen = 8, 5902 + }, { 5903 + .key = "\x00\x00\x00\x00\x00\x00\x00\x00", 5904 + .klen = 8, 5905 + .input = "\x00\x00\x00\x00\x00\x00\x00\x00", 5906 + .ilen = 8, 5907 + .result = "\xde\x18\x89\x41\xa3\x37\x5d\x3a", 5908 + .rlen = 8, 5909 + }, { 5910 + .key = "\xef\x01\x23\x45", 5911 + .klen = 4, 5912 + .input = "\x00\x00\x00\x00\x00\x00\x00\x00" 5913 + "\x00\x00\x00\x00\x00\x00\x00\x00" 5914 + "\x00\x00\x00\x00", 5915 + .ilen = 20, 5916 + .result = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf" 5917 + "\xbd\x61\x5a\x11\x62\xe1\xc7\xba" 5918 + "\x36\xb6\x78\x58", 5919 + .rlen = 20, 5920 + }, { 5921 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5922 + .klen = 8, 5923 + .input = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0" 5924 + "\x12\x34\x56\x78\x9A\xBC\xDE\xF0" 5925 + "\x12\x34\x56\x78\x9A\xBC\xDE\xF0" 5926 + "\x12\x34\x56\x78", 5927 + .ilen = 28, 5928 + .result = "\x66\xa0\x94\x9f\x8a\xf7\xd6\x89" 5929 + "\x1f\x7f\x83\x2b\xa8\x33\xc0\x0c" 5930 + "\x89\x2e\xbe\x30\x14\x3c\xe2\x87" 5931 + "\x40\x01\x1e\xcf", 5932 + .rlen = 28, 5933 + }, { 5934 + .key = "\xef\x01\x23\x45", 5935 + .klen = 4, 5936 + .input = "\x00\x00\x00\x00\x00\x00\x00\x00" 5937 + "\x00\x00", 5938 + .ilen = 10, 5939 + .result = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf" 5940 + "\xbd\x61", 5941 + .rlen = 10, 5942 + }, { 5943 + .key = "\x01\x23\x45\x67\x89\xAB\xCD\xEF" 5944 + "\x00\x00\x00\x00\x00\x00\x00\x00", 5945 + .klen = 16, 5946 + .input = "\x01\x23\x45\x67\x89\xAB\xCD\xEF", 5947 + .ilen = 8, 5948 + .result = "\x69\x72\x36\x59\x1B\x52\x42\xB1", 5949 + .rlen = 8, 5950 + }, 5951 + }; 5952 + 5953 + static struct cipher_testvec arc4_dec_tv_template[] = { 5954 + { 5955 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5956 + .klen = 8, 5957 + .input = "\x75\xb7\x87\x80\x99\xe0\xc5\x96", 5958 + .ilen = 8, 5959 + .result = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5960 + .rlen = 8, 5961 + }, { 5962 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5963 + .klen = 8, 5964 + .input = "\x74\x94\xc2\xe7\x10\x4b\x08\x79", 5965 + .ilen = 8, 5966 + .result = "\x00\x00\x00\x00\x00\x00\x00\x00", 5967 + .rlen = 8, 5968 + }, { 5969 + .key = "\x00\x00\x00\x00\x00\x00\x00\x00", 5970 + .klen = 8, 5971 + .input = "\xde\x18\x89\x41\xa3\x37\x5d\x3a", 5972 + .ilen = 8, 5973 + .result = "\x00\x00\x00\x00\x00\x00\x00\x00", 5974 + .rlen = 8, 5975 + }, { 5976 + .key = "\xef\x01\x23\x45", 5977 + .klen = 4, 5978 + .input = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf" 5979 + "\xbd\x61\x5a\x11\x62\xe1\xc7\xba" 5980 + "\x36\xb6\x78\x58", 5981 + .ilen = 20, 5982 + .result = "\x00\x00\x00\x00\x00\x00\x00\x00" 5983 + "\x00\x00\x00\x00\x00\x00\x00\x00" 5984 + "\x00\x00\x00\x00", 5985 + .rlen = 20, 5986 + }, { 5987 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef", 5988 + .klen = 8, 5989 + .input = "\x66\xa0\x94\x9f\x8a\xf7\xd6\x89" 5990 + "\x1f\x7f\x83\x2b\xa8\x33\xc0\x0c" 5991 + "\x89\x2e\xbe\x30\x14\x3c\xe2\x87" 5992 + "\x40\x01\x1e\xcf", 5993 + .ilen = 28, 5994 + .result = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0" 5995 + "\x12\x34\x56\x78\x9A\xBC\xDE\xF0" 5996 + "\x12\x34\x56\x78\x9A\xBC\xDE\xF0" 5997 + "\x12\x34\x56\x78", 5998 + .rlen = 28, 5999 + }, { 6000 + .key = "\xef\x01\x23\x45", 6001 + .klen = 4, 6002 + .input = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf" 6003 + "\xbd\x61", 6004 + .ilen = 10, 6005 + .result = "\x00\x00\x00\x00\x00\x00\x00\x00" 6006 + "\x00\x00", 6007 + .rlen = 10, 6008 + }, { 6009 + .key = "\x01\x23\x45\x67\x89\xAB\xCD\xEF" 6010 + "\x00\x00\x00\x00\x00\x00\x00\x00", 6011 + .klen = 16, 6012 + .input = "\x69\x72\x36\x59\x1B\x52\x42\xB1", 6013 + .ilen = 8, 6014 + .result = "\x01\x23\x45\x67\x89\xAB\xCD\xEF", 6015 + .rlen = 8, 6016 + }, 6017 + }; 6018 + 6019 + /* 6020 + * TEA test vectors 6021 + */ 6022 + #define TEA_ENC_TEST_VECTORS 4 6023 + #define TEA_DEC_TEST_VECTORS 4 6024 + 6025 + static struct cipher_testvec tea_enc_tv_template[] = { 6026 + { 6027 + .key = zeroed_string, 6028 + .klen = 16, 6029 + .input = zeroed_string, 6030 + .ilen = 8, 6031 + .result = "\x0a\x3a\xea\x41\x40\xa9\xba\x94", 6032 + .rlen = 8, 6033 + }, { 6034 + .key = "\x2b\x02\x05\x68\x06\x14\x49\x76" 6035 + "\x77\x5d\x0e\x26\x6c\x28\x78\x43", 6036 + .klen = 16, 6037 + .input = "\x74\x65\x73\x74\x20\x6d\x65\x2e", 6038 + .ilen = 8, 6039 + .result = "\x77\x5d\x2a\x6a\xf6\xce\x92\x09", 6040 + .rlen = 8, 6041 + }, { 6042 + .key = "\x09\x65\x43\x11\x66\x44\x39\x25" 6043 + "\x51\x3a\x16\x10\x0a\x08\x12\x6e", 6044 + .klen = 16, 6045 + .input = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74" 6046 + "\x65\x73\x74\x5f\x76\x65\x63\x74", 6047 + .ilen = 16, 6048 + .result = "\xbe\x7a\xbb\x81\x95\x2d\x1f\x1e" 6049 + "\xdd\x89\xa1\x25\x04\x21\xdf\x95", 6050 + .rlen = 16, 6051 + }, { 6052 + .key = "\x4d\x76\x32\x17\x05\x3f\x75\x2c" 6053 + "\x5d\x04\x16\x36\x15\x72\x63\x2f", 6054 + .klen = 16, 6055 + .input = "\x54\x65\x61\x20\x69\x73\x20\x67" 6056 + "\x6f\x6f\x64\x20\x66\x6f\x72\x20" 6057 + "\x79\x6f\x75\x21\x21\x21\x20\x72" 6058 + "\x65\x61\x6c\x6c\x79\x21\x21\x21", 6059 + .ilen = 32, 6060 + .result = "\xe0\x4d\x5d\x3c\xb7\x8c\x36\x47" 6061 + "\x94\x18\x95\x91\xa9\xfc\x49\xf8" 6062 + "\x44\xd1\x2d\xc2\x99\xb8\x08\x2a" 6063 + "\x07\x89\x73\xc2\x45\x92\xc6\x90", 6064 + .rlen = 32, 6065 + } 6066 + }; 6067 + 6068 + static struct cipher_testvec tea_dec_tv_template[] = { 6069 + { 6070 + .key = zeroed_string, 6071 + .klen = 16, 6072 + .input = "\x0a\x3a\xea\x41\x40\xa9\xba\x94", 6073 + .ilen = 8, 6074 + .result = zeroed_string, 6075 + .rlen = 8, 6076 + }, { 6077 + .key = "\x2b\x02\x05\x68\x06\x14\x49\x76" 6078 + "\x77\x5d\x0e\x26\x6c\x28\x78\x43", 6079 + .klen = 16, 6080 + .input = "\x77\x5d\x2a\x6a\xf6\xce\x92\x09", 6081 + .ilen = 8, 6082 + .result = "\x74\x65\x73\x74\x20\x6d\x65\x2e", 6083 + .rlen = 8, 6084 + }, { 6085 + .key = "\x09\x65\x43\x11\x66\x44\x39\x25" 6086 + "\x51\x3a\x16\x10\x0a\x08\x12\x6e", 6087 + .klen = 16, 6088 + .input = "\xbe\x7a\xbb\x81\x95\x2d\x1f\x1e" 6089 + "\xdd\x89\xa1\x25\x04\x21\xdf\x95", 6090 + .ilen = 16, 6091 + .result = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74" 6092 + "\x65\x73\x74\x5f\x76\x65\x63\x74", 6093 + .rlen = 16, 6094 + }, { 6095 + .key = "\x4d\x76\x32\x17\x05\x3f\x75\x2c" 6096 + "\x5d\x04\x16\x36\x15\x72\x63\x2f", 6097 + .klen = 16, 6098 + .input = "\xe0\x4d\x5d\x3c\xb7\x8c\x36\x47" 6099 + "\x94\x18\x95\x91\xa9\xfc\x49\xf8" 6100 + "\x44\xd1\x2d\xc2\x99\xb8\x08\x2a" 6101 + "\x07\x89\x73\xc2\x45\x92\xc6\x90", 6102 + .ilen = 32, 6103 + .result = "\x54\x65\x61\x20\x69\x73\x20\x67" 6104 + "\x6f\x6f\x64\x20\x66\x6f\x72\x20" 6105 + "\x79\x6f\x75\x21\x21\x21\x20\x72" 6106 + "\x65\x61\x6c\x6c\x79\x21\x21\x21", 6107 + .rlen = 32, 6108 + } 6109 + }; 6110 + 6111 + /* 6112 + * XTEA test vectors 6113 + */ 6114 + #define XTEA_ENC_TEST_VECTORS 4 6115 + #define XTEA_DEC_TEST_VECTORS 4 6116 + 6117 + static struct cipher_testvec xtea_enc_tv_template[] = { 6118 + { 6119 + .key = zeroed_string, 6120 + .klen = 16, 6121 + .input = zeroed_string, 6122 + .ilen = 8, 6123 + .result = "\xd8\xd4\xe9\xde\xd9\x1e\x13\xf7", 6124 + .rlen = 8, 6125 + }, { 6126 + .key = "\x2b\x02\x05\x68\x06\x14\x49\x76" 6127 + "\x77\x5d\x0e\x26\x6c\x28\x78\x43", 6128 + .klen = 16, 6129 + .input = "\x74\x65\x73\x74\x20\x6d\x65\x2e", 6130 + .ilen = 8, 6131 + .result = "\x94\xeb\xc8\x96\x84\x6a\x49\xa8", 6132 + .rlen = 8, 6133 + }, { 6134 + .key = "\x09\x65\x43\x11\x66\x44\x39\x25" 6135 + "\x51\x3a\x16\x10\x0a\x08\x12\x6e", 6136 + .klen = 16, 6137 + .input = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74" 6138 + "\x65\x73\x74\x5f\x76\x65\x63\x74", 6139 + .ilen = 16, 6140 + .result = "\x3e\xce\xae\x22\x60\x56\xa8\x9d" 6141 + "\x77\x4d\xd4\xb4\x87\x24\xe3\x9a", 6142 + .rlen = 16, 6143 + }, { 6144 + .key = "\x4d\x76\x32\x17\x05\x3f\x75\x2c" 6145 + "\x5d\x04\x16\x36\x15\x72\x63\x2f", 6146 + .klen = 16, 6147 + .input = "\x54\x65\x61\x20\x69\x73\x20\x67" 6148 + "\x6f\x6f\x64\x20\x66\x6f\x72\x20" 6149 + "\x79\x6f\x75\x21\x21\x21\x20\x72" 6150 + "\x65\x61\x6c\x6c\x79\x21\x21\x21", 6151 + .ilen = 32, 6152 + .result = "\x99\x81\x9f\x5d\x6f\x4b\x31\x3a" 6153 + "\x86\xff\x6f\xd0\xe3\x87\x70\x07" 6154 + "\x4d\xb8\xcf\xf3\x99\x50\xb3\xd4" 6155 + "\x73\xa2\xfa\xc9\x16\x59\x5d\x81", 6156 + .rlen = 32, 6157 + } 6158 + }; 6159 + 6160 + static struct cipher_testvec xtea_dec_tv_template[] = { 6161 + { 6162 + .key = zeroed_string, 6163 + .klen = 16, 6164 + .input = "\xd8\xd4\xe9\xde\xd9\x1e\x13\xf7", 6165 + .ilen = 8, 6166 + .result = zeroed_string, 6167 + .rlen = 8, 6168 + }, { 6169 + .key = "\x2b\x02\x05\x68\x06\x14\x49\x76" 6170 + "\x77\x5d\x0e\x26\x6c\x28\x78\x43", 6171 + .klen = 16, 6172 + .input = "\x94\xeb\xc8\x96\x84\x6a\x49\xa8", 6173 + .ilen = 8, 6174 + .result = "\x74\x65\x73\x74\x20\x6d\x65\x2e", 6175 + .rlen = 8, 6176 + }, { 6177 + .key = "\x09\x65\x43\x11\x66\x44\x39\x25" 6178 + "\x51\x3a\x16\x10\x0a\x08\x12\x6e", 6179 + .klen = 16, 6180 + .input = "\x3e\xce\xae\x22\x60\x56\xa8\x9d" 6181 + "\x77\x4d\xd4\xb4\x87\x24\xe3\x9a", 6182 + .ilen = 16, 6183 + .result = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74" 6184 + "\x65\x73\x74\x5f\x76\x65\x63\x74", 6185 + .rlen = 16, 6186 + }, { 6187 + .key = "\x4d\x76\x32\x17\x05\x3f\x75\x2c" 6188 + "\x5d\x04\x16\x36\x15\x72\x63\x2f", 6189 + .klen = 16, 6190 + .input = "\x99\x81\x9f\x5d\x6f\x4b\x31\x3a" 6191 + "\x86\xff\x6f\xd0\xe3\x87\x70\x07" 6192 + "\x4d\xb8\xcf\xf3\x99\x50\xb3\xd4" 6193 + "\x73\xa2\xfa\xc9\x16\x59\x5d\x81", 6194 + .ilen = 32, 6195 + .result = "\x54\x65\x61\x20\x69\x73\x20\x67" 6196 + "\x6f\x6f\x64\x20\x66\x6f\x72\x20" 6197 + "\x79\x6f\x75\x21\x21\x21\x20\x72" 6198 + "\x65\x61\x6c\x6c\x79\x21\x21\x21", 6199 + .rlen = 32, 6200 + } 6201 + }; 6202 + 6203 + /* 6204 + * KHAZAD test vectors. 6205 + */ 6206 + #define KHAZAD_ENC_TEST_VECTORS 5 6207 + #define KHAZAD_DEC_TEST_VECTORS 5 6208 + 6209 + static struct cipher_testvec khazad_enc_tv_template[] = { 6210 + { 6211 + .key = "\x80\x00\x00\x00\x00\x00\x00\x00" 6212 + "\x00\x00\x00\x00\x00\x00\x00\x00", 6213 + .klen = 16, 6214 + .input = "\x00\x00\x00\x00\x00\x00\x00\x00", 6215 + .ilen = 8, 6216 + .result = "\x49\xa4\xce\x32\xac\x19\x0e\x3f", 6217 + .rlen = 8, 6218 + }, { 6219 + .key = "\x38\x38\x38\x38\x38\x38\x38\x38" 6220 + "\x38\x38\x38\x38\x38\x38\x38\x38", 6221 + .klen = 16, 6222 + .input = "\x38\x38\x38\x38\x38\x38\x38\x38", 6223 + .ilen = 8, 6224 + .result = "\x7e\x82\x12\xa1\xd9\x5b\xe4\xf9", 6225 + .rlen = 8, 6226 + }, { 6227 + .key = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2" 6228 + "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2", 6229 + .klen = 16, 6230 + .input = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2", 6231 + .ilen = 8, 6232 + .result = "\xaa\xbe\xc1\x95\xc5\x94\x1a\x9c", 6233 + .rlen = 8, 6234 + }, { 6235 + .key = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f" 6236 + "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f", 6237 + .klen = 16, 6238 + .input = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f", 6239 + .ilen = 8, 6240 + .result = "\x04\x74\xf5\x70\x50\x16\xd3\xb8", 6241 + .rlen = 8, 6242 + }, { 6243 + .key = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f" 6244 + "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f", 6245 + .klen = 16, 6246 + .input = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f" 6247 + "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f", 6248 + .ilen = 16, 6249 + .result = "\x04\x74\xf5\x70\x50\x16\xd3\xb8" 6250 + "\x04\x74\xf5\x70\x50\x16\xd3\xb8", 6251 + .rlen = 16, 6252 + }, 6253 + }; 6254 + 6255 + static struct cipher_testvec khazad_dec_tv_template[] = { 6256 + { 6257 + .key = "\x80\x00\x00\x00\x00\x00\x00\x00" 6258 + "\x00\x00\x00\x00\x00\x00\x00\x00", 6259 + .klen = 16, 6260 + .input = "\x49\xa4\xce\x32\xac\x19\x0e\x3f", 6261 + .ilen = 8, 6262 + .result = "\x00\x00\x00\x00\x00\x00\x00\x00", 6263 + .rlen = 8, 6264 + }, { 6265 + .key = "\x38\x38\x38\x38\x38\x38\x38\x38" 6266 + "\x38\x38\x38\x38\x38\x38\x38\x38", 6267 + .klen = 16, 6268 + .input = "\x7e\x82\x12\xa1\xd9\x5b\xe4\xf9", 6269 + .ilen = 8, 6270 + .result = "\x38\x38\x38\x38\x38\x38\x38\x38", 6271 + .rlen = 8, 6272 + }, { 6273 + .key = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2" 6274 + "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2", 6275 + .klen = 16, 6276 + .input = "\xaa\xbe\xc1\x95\xc5\x94\x1a\x9c", 6277 + .ilen = 8, 6278 + .result = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2", 6279 + .rlen = 8, 6280 + }, { 6281 + .key = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f" 6282 + "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f", 6283 + .klen = 16, 6284 + .input = "\x04\x74\xf5\x70\x50\x16\xd3\xb8", 6285 + .ilen = 8, 6286 + .result = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f", 6287 + .rlen = 8, 6288 + }, { 6289 + .key = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f" 6290 + "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f", 6291 + .klen = 16, 6292 + .input = "\x04\x74\xf5\x70\x50\x16\xd3\xb8" 6293 + "\x04\x74\xf5\x70\x50\x16\xd3\xb8", 6294 + .ilen = 16, 6295 + .result = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f" 6296 + "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f", 6297 + .rlen = 16, 6298 + }, 6299 + }; 6300 + 6301 + /* 6302 + * Anubis test vectors. 6303 + */ 6304 + 6305 + #define ANUBIS_ENC_TEST_VECTORS 5 6306 + #define ANUBIS_DEC_TEST_VECTORS 5 6307 + #define ANUBIS_CBC_ENC_TEST_VECTORS 2 6308 + #define ANUBIS_CBC_DEC_TEST_VECTORS 2 6309 + 6310 + static struct cipher_testvec anubis_enc_tv_template[] = { 6311 + { 6312 + .key = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 6313 + "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe", 6314 + .klen = 16, 6315 + .input = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 6316 + "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe", 6317 + .ilen = 16, 6318 + .result = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f" 6319 + "\x08\xb7\x52\x8e\x6e\x6e\x86\x90", 6320 + .rlen = 16, 6321 + }, { 6322 + 6323 + .key = "\x03\x03\x03\x03\x03\x03\x03\x03" 6324 + "\x03\x03\x03\x03\x03\x03\x03\x03" 6325 + "\x03\x03\x03\x03", 6326 + .klen = 20, 6327 + .input = "\x03\x03\x03\x03\x03\x03\x03\x03" 6328 + "\x03\x03\x03\x03\x03\x03\x03\x03", 6329 + .ilen = 16, 6330 + .result = "\xdb\xf1\x42\xf4\xd1\x8a\xc7\x49" 6331 + "\x87\x41\x6f\x82\x0a\x98\x64\xae", 6332 + .rlen = 16, 6333 + }, { 6334 + .key = "\x24\x24\x24\x24\x24\x24\x24\x24" 6335 + "\x24\x24\x24\x24\x24\x24\x24\x24" 6336 + "\x24\x24\x24\x24\x24\x24\x24\x24" 6337 + "\x24\x24\x24\x24", 6338 + .klen = 28, 6339 + .input = "\x24\x24\x24\x24\x24\x24\x24\x24" 6340 + "\x24\x24\x24\x24\x24\x24\x24\x24", 6341 + .ilen = 16, 6342 + .result = "\xfd\x1b\x4a\xe3\xbf\xf0\xad\x3d" 6343 + "\x06\xd3\x61\x27\xfd\x13\x9e\xde", 6344 + .rlen = 16, 6345 + }, { 6346 + .key = "\x25\x25\x25\x25\x25\x25\x25\x25" 6347 + "\x25\x25\x25\x25\x25\x25\x25\x25" 6348 + "\x25\x25\x25\x25\x25\x25\x25\x25" 6349 + "\x25\x25\x25\x25\x25\x25\x25\x25", 6350 + .klen = 32, 6351 + .input = "\x25\x25\x25\x25\x25\x25\x25\x25" 6352 + "\x25\x25\x25\x25\x25\x25\x25\x25", 6353 + .ilen = 16, 6354 + .result = "\x1a\x91\xfb\x2b\xb7\x78\x6b\xc4" 6355 + "\x17\xd9\xff\x40\x3b\x0e\xe5\xfe", 6356 + .rlen = 16, 6357 + }, { 6358 + .key = "\x35\x35\x35\x35\x35\x35\x35\x35" 6359 + "\x35\x35\x35\x35\x35\x35\x35\x35" 6360 + "\x35\x35\x35\x35\x35\x35\x35\x35" 6361 + "\x35\x35\x35\x35\x35\x35\x35\x35" 6362 + "\x35\x35\x35\x35\x35\x35\x35\x35", 6363 + .klen = 40, 6364 + .input = "\x35\x35\x35\x35\x35\x35\x35\x35" 6365 + "\x35\x35\x35\x35\x35\x35\x35\x35", 6366 + .ilen = 16, 6367 + .result = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97" 6368 + "\x9e\xc6\x84\x0f\x17\x21\x07\xee", 6369 + .rlen = 16, 6370 + }, 6371 + }; 6372 + 6373 + static struct cipher_testvec anubis_dec_tv_template[] = { 6374 + { 6375 + .key = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 6376 + "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe", 6377 + .klen = 16, 6378 + .input = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f" 6379 + "\x08\xb7\x52\x8e\x6e\x6e\x86\x90", 6380 + .ilen = 16, 6381 + .result = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 6382 + "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe", 6383 + .rlen = 16, 6384 + }, { 6385 + 6386 + .key = "\x03\x03\x03\x03\x03\x03\x03\x03" 6387 + "\x03\x03\x03\x03\x03\x03\x03\x03" 6388 + "\x03\x03\x03\x03", 6389 + .klen = 20, 6390 + .input = "\xdb\xf1\x42\xf4\xd1\x8a\xc7\x49" 6391 + "\x87\x41\x6f\x82\x0a\x98\x64\xae", 6392 + .ilen = 16, 6393 + .result = "\x03\x03\x03\x03\x03\x03\x03\x03" 6394 + "\x03\x03\x03\x03\x03\x03\x03\x03", 6395 + .rlen = 16, 6396 + }, { 6397 + .key = "\x24\x24\x24\x24\x24\x24\x24\x24" 6398 + "\x24\x24\x24\x24\x24\x24\x24\x24" 6399 + "\x24\x24\x24\x24\x24\x24\x24\x24" 6400 + "\x24\x24\x24\x24", 6401 + .klen = 28, 6402 + .input = "\xfd\x1b\x4a\xe3\xbf\xf0\xad\x3d" 6403 + "\x06\xd3\x61\x27\xfd\x13\x9e\xde", 6404 + .ilen = 16, 6405 + .result = "\x24\x24\x24\x24\x24\x24\x24\x24" 6406 + "\x24\x24\x24\x24\x24\x24\x24\x24", 6407 + .rlen = 16, 6408 + }, { 6409 + .key = "\x25\x25\x25\x25\x25\x25\x25\x25" 6410 + "\x25\x25\x25\x25\x25\x25\x25\x25" 6411 + "\x25\x25\x25\x25\x25\x25\x25\x25" 6412 + "\x25\x25\x25\x25\x25\x25\x25\x25", 6413 + .klen = 32, 6414 + .input = "\x1a\x91\xfb\x2b\xb7\x78\x6b\xc4" 6415 + "\x17\xd9\xff\x40\x3b\x0e\xe5\xfe", 6416 + .ilen = 16, 6417 + .result = "\x25\x25\x25\x25\x25\x25\x25\x25" 6418 + "\x25\x25\x25\x25\x25\x25\x25\x25", 6419 + .rlen = 16, 6420 + }, { 6421 + .key = "\x35\x35\x35\x35\x35\x35\x35\x35" 6422 + "\x35\x35\x35\x35\x35\x35\x35\x35" 6423 + "\x35\x35\x35\x35\x35\x35\x35\x35" 6424 + "\x35\x35\x35\x35\x35\x35\x35\x35" 6425 + "\x35\x35\x35\x35\x35\x35\x35\x35", 6426 + .input = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97" 6427 + "\x9e\xc6\x84\x0f\x17\x21\x07\xee", 6428 + .klen = 40, 6429 + .ilen = 16, 6430 + .result = "\x35\x35\x35\x35\x35\x35\x35\x35" 6431 + "\x35\x35\x35\x35\x35\x35\x35\x35", 6432 + .rlen = 16, 6433 + }, 6434 + }; 6435 + 6436 + static struct cipher_testvec anubis_cbc_enc_tv_template[] = { 6437 + { 6438 + .key = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 6439 + "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe", 6440 + .klen = 16, 6441 + .input = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 6442 + "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 6443 + "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 6444 + "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe", 6445 + .ilen = 32, 6446 + .result = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f" 6447 + "\x08\xb7\x52\x8e\x6e\x6e\x86\x90" 6448 + "\x86\xd8\xb5\x6f\x98\x5e\x8a\x66" 6449 + "\x4f\x1f\x78\xa1\xbb\x37\xf1\xbe", 6450 + .rlen = 32, 6451 + }, { 6452 + .key = "\x35\x35\x35\x35\x35\x35\x35\x35" 6453 + "\x35\x35\x35\x35\x35\x35\x35\x35" 6454 + "\x35\x35\x35\x35\x35\x35\x35\x35" 6455 + "\x35\x35\x35\x35\x35\x35\x35\x35" 6456 + "\x35\x35\x35\x35\x35\x35\x35\x35", 6457 + .klen = 40, 6458 + .input = "\x35\x35\x35\x35\x35\x35\x35\x35" 6459 + "\x35\x35\x35\x35\x35\x35\x35\x35" 6460 + "\x35\x35\x35\x35\x35\x35\x35\x35" 6461 + "\x35\x35\x35\x35\x35\x35\x35\x35", 6462 + .ilen = 32, 6463 + .result = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97" 6464 + "\x9e\xc6\x84\x0f\x17\x21\x07\xee" 6465 + "\xa2\xbc\x06\x98\xc6\x4b\xda\x75" 6466 + "\x2e\xaa\xbe\x58\xce\x01\x5b\xc7", 6467 + .rlen = 32, 6468 + }, 6469 + }; 6470 + 6471 + static struct cipher_testvec anubis_cbc_dec_tv_template[] = { 6472 + { 6473 + .key = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 6474 + "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe", 6475 + .klen = 16, 6476 + .input = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f" 6477 + "\x08\xb7\x52\x8e\x6e\x6e\x86\x90" 6478 + "\x86\xd8\xb5\x6f\x98\x5e\x8a\x66" 6479 + "\x4f\x1f\x78\xa1\xbb\x37\xf1\xbe", 6480 + .ilen = 32, 6481 + .result = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 6482 + "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 6483 + "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe" 6484 + "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe", 6485 + .rlen = 32, 6486 + }, { 6487 + .key = "\x35\x35\x35\x35\x35\x35\x35\x35" 6488 + "\x35\x35\x35\x35\x35\x35\x35\x35" 6489 + "\x35\x35\x35\x35\x35\x35\x35\x35" 6490 + "\x35\x35\x35\x35\x35\x35\x35\x35" 6491 + "\x35\x35\x35\x35\x35\x35\x35\x35", 6492 + .klen = 40, 6493 + .input = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97" 6494 + "\x9e\xc6\x84\x0f\x17\x21\x07\xee" 6495 + "\xa2\xbc\x06\x98\xc6\x4b\xda\x75" 6496 + "\x2e\xaa\xbe\x58\xce\x01\x5b\xc7", 6497 + .ilen = 32, 6498 + .result = "\x35\x35\x35\x35\x35\x35\x35\x35" 6499 + "\x35\x35\x35\x35\x35\x35\x35\x35" 6500 + "\x35\x35\x35\x35\x35\x35\x35\x35" 6501 + "\x35\x35\x35\x35\x35\x35\x35\x35", 6502 + .rlen = 32, 6503 + }, 6504 + }; 6505 + 6506 + /* 6507 + * XETA test vectors 6508 + */ 6509 + #define XETA_ENC_TEST_VECTORS 4 6510 + #define XETA_DEC_TEST_VECTORS 4 6511 + 6512 + static struct cipher_testvec xeta_enc_tv_template[] = { 6513 + { 6514 + .key = zeroed_string, 6515 + .klen = 16, 6516 + .input = zeroed_string, 6517 + .ilen = 8, 6518 + .result = "\xaa\x22\x96\xe5\x6c\x61\xf3\x45", 6519 + .rlen = 8, 6520 + }, { 6521 + .key = "\x2b\x02\x05\x68\x06\x14\x49\x76" 6522 + "\x77\x5d\x0e\x26\x6c\x28\x78\x43", 6523 + .klen = 16, 6524 + .input = "\x74\x65\x73\x74\x20\x6d\x65\x2e", 6525 + .ilen = 8, 6526 + .result = "\x82\x3e\xeb\x35\xdc\xdd\xd9\xc3", 6527 + .rlen = 8, 6528 + }, { 6529 + .key = "\x09\x65\x43\x11\x66\x44\x39\x25" 6530 + "\x51\x3a\x16\x10\x0a\x08\x12\x6e", 6531 + .klen = 16, 6532 + .input = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74" 6533 + "\x65\x73\x74\x5f\x76\x65\x63\x74", 6534 + .ilen = 16, 6535 + .result = "\xe2\x04\xdb\xf2\x89\x85\x9e\xea" 6536 + "\x61\x35\xaa\xed\xb5\xcb\x71\x2c", 6537 + .rlen = 16, 6538 + }, { 6539 + .key = "\x4d\x76\x32\x17\x05\x3f\x75\x2c" 6540 + "\x5d\x04\x16\x36\x15\x72\x63\x2f", 6541 + .klen = 16, 6542 + .input = "\x54\x65\x61\x20\x69\x73\x20\x67" 6543 + "\x6f\x6f\x64\x20\x66\x6f\x72\x20" 6544 + "\x79\x6f\x75\x21\x21\x21\x20\x72" 6545 + "\x65\x61\x6c\x6c\x79\x21\x21\x21", 6546 + .ilen = 32, 6547 + .result = "\x0b\x03\xcd\x8a\xbe\x95\xfd\xb1" 6548 + "\xc1\x44\x91\x0b\xa5\xc9\x1b\xb4" 6549 + "\xa9\xda\x1e\x9e\xb1\x3e\x2a\x8f" 6550 + "\xea\xa5\x6a\x85\xd1\xf4\xa8\xa5", 6551 + .rlen = 32, 6552 + } 6553 + }; 6554 + 6555 + static struct cipher_testvec xeta_dec_tv_template[] = { 6556 + { 6557 + .key = zeroed_string, 6558 + .klen = 16, 6559 + .input = "\xaa\x22\x96\xe5\x6c\x61\xf3\x45", 6560 + .ilen = 8, 6561 + .result = zeroed_string, 6562 + .rlen = 8, 6563 + }, { 6564 + .key = "\x2b\x02\x05\x68\x06\x14\x49\x76" 6565 + "\x77\x5d\x0e\x26\x6c\x28\x78\x43", 6566 + .klen = 16, 6567 + .input = "\x82\x3e\xeb\x35\xdc\xdd\xd9\xc3", 6568 + .ilen = 8, 6569 + .result = "\x74\x65\x73\x74\x20\x6d\x65\x2e", 6570 + .rlen = 8, 6571 + }, { 6572 + .key = "\x09\x65\x43\x11\x66\x44\x39\x25" 6573 + "\x51\x3a\x16\x10\x0a\x08\x12\x6e", 6574 + .klen = 16, 6575 + .input = "\xe2\x04\xdb\xf2\x89\x85\x9e\xea" 6576 + "\x61\x35\xaa\xed\xb5\xcb\x71\x2c", 6577 + .ilen = 16, 6578 + .result = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74" 6579 + "\x65\x73\x74\x5f\x76\x65\x63\x74", 6580 + .rlen = 16, 6581 + }, { 6582 + .key = "\x4d\x76\x32\x17\x05\x3f\x75\x2c" 6583 + "\x5d\x04\x16\x36\x15\x72\x63\x2f", 6584 + .klen = 16, 6585 + .input = "\x0b\x03\xcd\x8a\xbe\x95\xfd\xb1" 6586 + "\xc1\x44\x91\x0b\xa5\xc9\x1b\xb4" 6587 + "\xa9\xda\x1e\x9e\xb1\x3e\x2a\x8f" 6588 + "\xea\xa5\x6a\x85\xd1\xf4\xa8\xa5", 6589 + .ilen = 32, 6590 + .result = "\x54\x65\x61\x20\x69\x73\x20\x67" 6591 + "\x6f\x6f\x64\x20\x66\x6f\x72\x20" 6592 + "\x79\x6f\x75\x21\x21\x21\x20\x72" 6593 + "\x65\x61\x6c\x6c\x79\x21\x21\x21", 6594 + .rlen = 32, 6595 + } 6596 + }; 6597 + 6598 + /* 6599 + * FCrypt test vectors 6600 + */ 6601 + #define FCRYPT_ENC_TEST_VECTORS ARRAY_SIZE(fcrypt_pcbc_enc_tv_template) 6602 + #define FCRYPT_DEC_TEST_VECTORS ARRAY_SIZE(fcrypt_pcbc_dec_tv_template) 6603 + 6604 + static struct cipher_testvec fcrypt_pcbc_enc_tv_template[] = { 6605 + { /* http://www.openafs.org/pipermail/openafs-devel/2000-December/005320.html */ 6606 + .key = "\x00\x00\x00\x00\x00\x00\x00\x00", 6607 + .klen = 8, 6608 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00", 6609 + .input = "\x00\x00\x00\x00\x00\x00\x00\x00", 6610 + .ilen = 8, 6611 + .result = "\x0E\x09\x00\xC7\x3E\xF7\xED\x41", 6612 + .rlen = 8, 6613 + }, { 6614 + .key = "\x11\x44\x77\xAA\xDD\x00\x33\x66", 6615 + .klen = 8, 6616 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00", 6617 + .input = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0", 6618 + .ilen = 8, 6619 + .result = "\xD8\xED\x78\x74\x77\xEC\x06\x80", 6620 + .rlen = 8, 6621 + }, { /* From Arla */ 6622 + .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87", 6623 + .klen = 8, 6624 + .iv = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6625 + .input = "The quick brown fox jumps over the lazy dogs.\0\0", 6626 + .ilen = 48, 6627 + .result = "\x00\xf0\x0e\x11\x75\xe6\x23\x82" 6628 + "\xee\xac\x98\x62\x44\x51\xe4\x84" 6629 + "\xc3\x59\xd8\xaa\x64\x60\xae\xf7" 6630 + "\xd2\xd9\x13\x79\x72\xa3\x45\x03" 6631 + "\x23\xb5\x62\xd7\x0c\xf5\x27\xd1" 6632 + "\xf8\x91\x3c\xac\x44\x22\x92\xef", 6633 + .rlen = 48, 6634 + }, { 6635 + .key = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6636 + .klen = 8, 6637 + .iv = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87", 6638 + .input = "The quick brown fox jumps over the lazy dogs.\0\0", 6639 + .ilen = 48, 6640 + .result = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c" 6641 + "\x01\x88\x7f\x3e\x31\x6e\x62\x9d" 6642 + "\xd8\xe0\x57\xa3\x06\x3a\x42\x58" 6643 + "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0" 6644 + "\x19\x89\x09\x1c\x2a\x8e\x8c\x94" 6645 + "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f", 6646 + .rlen = 48, 6647 + }, { /* split-page version */ 6648 + .key = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6649 + .klen = 8, 6650 + .iv = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87", 6651 + .input = "The quick brown fox jumps over the lazy dogs.\0\0", 6652 + .ilen = 48, 6653 + .result = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c" 6654 + "\x01\x88\x7f\x3e\x31\x6e\x62\x9d" 6655 + "\xd8\xe0\x57\xa3\x06\x3a\x42\x58" 6656 + "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0" 6657 + "\x19\x89\x09\x1c\x2a\x8e\x8c\x94" 6658 + "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f", 6659 + .rlen = 48, 6660 + .np = 2, 6661 + .tap = { 20, 28 }, 6662 + } 6663 + }; 6664 + 6665 + static struct cipher_testvec fcrypt_pcbc_dec_tv_template[] = { 6666 + { /* http://www.openafs.org/pipermail/openafs-devel/2000-December/005320.html */ 6667 + .key = "\x00\x00\x00\x00\x00\x00\x00\x00", 6668 + .klen = 8, 6669 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00", 6670 + .input = "\x0E\x09\x00\xC7\x3E\xF7\xED\x41", 6671 + .ilen = 8, 6672 + .result = "\x00\x00\x00\x00\x00\x00\x00\x00", 6673 + .rlen = 8, 6674 + }, { 6675 + .key = "\x11\x44\x77\xAA\xDD\x00\x33\x66", 6676 + .klen = 8, 6677 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00", 6678 + .input = "\xD8\xED\x78\x74\x77\xEC\x06\x80", 6679 + .ilen = 8, 6680 + .result = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0", 6681 + .rlen = 8, 6682 + }, { /* From Arla */ 6683 + .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87", 6684 + .klen = 8, 6685 + .iv = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6686 + .input = "\x00\xf0\x0e\x11\x75\xe6\x23\x82" 6687 + "\xee\xac\x98\x62\x44\x51\xe4\x84" 6688 + "\xc3\x59\xd8\xaa\x64\x60\xae\xf7" 6689 + "\xd2\xd9\x13\x79\x72\xa3\x45\x03" 6690 + "\x23\xb5\x62\xd7\x0c\xf5\x27\xd1" 6691 + "\xf8\x91\x3c\xac\x44\x22\x92\xef", 6692 + .ilen = 48, 6693 + .result = "The quick brown fox jumps over the lazy dogs.\0\0", 6694 + .rlen = 48, 6695 + }, { 6696 + .key = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6697 + .klen = 8, 6698 + .iv = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87", 6699 + .input = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c" 6700 + "\x01\x88\x7f\x3e\x31\x6e\x62\x9d" 6701 + "\xd8\xe0\x57\xa3\x06\x3a\x42\x58" 6702 + "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0" 6703 + "\x19\x89\x09\x1c\x2a\x8e\x8c\x94" 6704 + "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f", 6705 + .ilen = 48, 6706 + .result = "The quick brown fox jumps over the lazy dogs.\0\0", 6707 + .rlen = 48, 6708 + }, { /* split-page version */ 6709 + .key = "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6710 + .klen = 8, 6711 + .iv = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87", 6712 + .input = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c" 6713 + "\x01\x88\x7f\x3e\x31\x6e\x62\x9d" 6714 + "\xd8\xe0\x57\xa3\x06\x3a\x42\x58" 6715 + "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0" 6716 + "\x19\x89\x09\x1c\x2a\x8e\x8c\x94" 6717 + "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f", 6718 + .ilen = 48, 6719 + .result = "The quick brown fox jumps over the lazy dogs.\0\0", 6720 + .rlen = 48, 6721 + .np = 2, 6722 + .tap = { 20, 28 }, 6723 + } 6724 + }; 6725 + 6726 + /* 6727 + * CAMELLIA test vectors. 6728 + */ 6729 + #define CAMELLIA_ENC_TEST_VECTORS 3 6730 + #define CAMELLIA_DEC_TEST_VECTORS 3 6731 + #define CAMELLIA_CBC_ENC_TEST_VECTORS 2 6732 + #define CAMELLIA_CBC_DEC_TEST_VECTORS 2 6733 + 6734 + static struct cipher_testvec camellia_enc_tv_template[] = { 6735 + { 6736 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 6737 + "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6738 + .klen = 16, 6739 + .input = "\x01\x23\x45\x67\x89\xab\xcd\xef" 6740 + "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6741 + .ilen = 16, 6742 + .result = "\x67\x67\x31\x38\x54\x96\x69\x73" 6743 + "\x08\x57\x06\x56\x48\xea\xbe\x43", 6744 + .rlen = 16, 6745 + }, { 6746 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 6747 + "\xfe\xdc\xba\x98\x76\x54\x32\x10" 6748 + "\x00\x11\x22\x33\x44\x55\x66\x77", 6749 + .klen = 24, 6750 + .input = "\x01\x23\x45\x67\x89\xab\xcd\xef" 6751 + "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6752 + .ilen = 16, 6753 + .result = "\xb4\x99\x34\x01\xb3\xe9\x96\xf8" 6754 + "\x4e\xe5\xce\xe7\xd7\x9b\x09\xb9", 6755 + .rlen = 16, 6756 + }, { 6757 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 6758 + "\xfe\xdc\xba\x98\x76\x54\x32\x10" 6759 + "\x00\x11\x22\x33\x44\x55\x66\x77" 6760 + "\x88\x99\xaa\xbb\xcc\xdd\xee\xff", 6761 + .klen = 32, 6762 + .input = "\x01\x23\x45\x67\x89\xab\xcd\xef" 6763 + "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6764 + .ilen = 16, 6765 + .result = "\x9a\xcc\x23\x7d\xff\x16\xd7\x6c" 6766 + "\x20\xef\x7c\x91\x9e\x3a\x75\x09", 6767 + .rlen = 16, 6768 + }, 6769 + }; 6770 + 6771 + static struct cipher_testvec camellia_dec_tv_template[] = { 6772 + { 6773 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 6774 + "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6775 + .klen = 16, 6776 + .input = "\x67\x67\x31\x38\x54\x96\x69\x73" 6777 + "\x08\x57\x06\x56\x48\xea\xbe\x43", 6778 + .ilen = 16, 6779 + .result = "\x01\x23\x45\x67\x89\xab\xcd\xef" 6780 + "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6781 + .rlen = 16, 6782 + }, { 6783 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 6784 + "\xfe\xdc\xba\x98\x76\x54\x32\x10" 6785 + "\x00\x11\x22\x33\x44\x55\x66\x77", 6786 + .klen = 24, 6787 + .input = "\xb4\x99\x34\x01\xb3\xe9\x96\xf8" 6788 + "\x4e\xe5\xce\xe7\xd7\x9b\x09\xb9", 6789 + .ilen = 16, 6790 + .result = "\x01\x23\x45\x67\x89\xab\xcd\xef" 6791 + "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6792 + .rlen = 16, 6793 + }, { 6794 + .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" 6795 + "\xfe\xdc\xba\x98\x76\x54\x32\x10" 6796 + "\x00\x11\x22\x33\x44\x55\x66\x77" 6797 + "\x88\x99\xaa\xbb\xcc\xdd\xee\xff", 6798 + .klen = 32, 6799 + .input = "\x9a\xcc\x23\x7d\xff\x16\xd7\x6c" 6800 + "\x20\xef\x7c\x91\x9e\x3a\x75\x09", 6801 + .ilen = 16, 6802 + .result = "\x01\x23\x45\x67\x89\xab\xcd\xef" 6803 + "\xfe\xdc\xba\x98\x76\x54\x32\x10", 6804 + .rlen = 16, 6805 + }, 6806 + }; 6807 + 6808 + static struct cipher_testvec camellia_cbc_enc_tv_template[] = { 6809 + { 6810 + .key = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b" 6811 + "\x51\x2e\x03\xd5\x34\x12\x00\x06", 6812 + .klen = 16, 6813 + .iv = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30" 6814 + "\xb4\x22\xda\x80\x2c\x9f\xac\x41", 6815 + .input = "Single block msg", 6816 + .ilen = 16, 6817 + .result = "\xea\x32\x12\x76\x3b\x50\x10\xe7" 6818 + "\x18\xf6\xfd\x5d\xf6\x8f\x13\x51", 6819 + .rlen = 16, 6820 + }, { 6821 + .key = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0" 6822 + "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a", 6823 + .klen = 16, 6824 + .iv = "\x56\x2e\x17\x99\x6d\x09\x3d\x28" 6825 + "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58", 6826 + .input = "\x00\x01\x02\x03\x04\x05\x06\x07" 6827 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 6828 + "\x10\x11\x12\x13\x14\x15\x16\x17" 6829 + "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 6830 + .ilen = 32, 6831 + .result = "\xa5\xdf\x6e\x50\xda\x70\x6c\x01" 6832 + "\x4a\xab\xf3\xf2\xd6\xfc\x6c\xfd" 6833 + "\x19\xb4\x3e\x57\x1c\x02\x5e\xa0" 6834 + "\x15\x78\xe0\x5e\xf2\xcb\x87\x16", 6835 + .rlen = 32, 6836 + }, 6837 + }; 6838 + 6839 + static struct cipher_testvec camellia_cbc_dec_tv_template[] = { 6840 + { 6841 + .key = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b" 6842 + "\x51\x2e\x03\xd5\x34\x12\x00\x06", 6843 + .klen = 16, 6844 + .iv = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30" 6845 + "\xb4\x22\xda\x80\x2c\x9f\xac\x41", 6846 + .input = "\xea\x32\x12\x76\x3b\x50\x10\xe7" 6847 + "\x18\xf6\xfd\x5d\xf6\x8f\x13\x51", 6848 + .ilen = 16, 6849 + .result = "Single block msg", 6850 + .rlen = 16, 6851 + }, { 6852 + .key = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0" 6853 + "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a", 6854 + .klen = 16, 6855 + .iv = "\x56\x2e\x17\x99\x6d\x09\x3d\x28" 6856 + "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58", 6857 + .input = "\xa5\xdf\x6e\x50\xda\x70\x6c\x01" 6858 + "\x4a\xab\xf3\xf2\xd6\xfc\x6c\xfd" 6859 + "\x19\xb4\x3e\x57\x1c\x02\x5e\xa0" 6860 + "\x15\x78\xe0\x5e\xf2\xcb\x87\x16", 6861 + .ilen = 32, 6862 + .result = "\x00\x01\x02\x03\x04\x05\x06\x07" 6863 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 6864 + "\x10\x11\x12\x13\x14\x15\x16\x17" 6865 + "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 6866 + .rlen = 32, 6867 + }, 6868 + }; 6869 + 6870 + /* 6871 + * SEED test vectors 6872 + */ 6873 + #define SEED_ENC_TEST_VECTORS 4 6874 + #define SEED_DEC_TEST_VECTORS 4 6875 + 6876 + static struct cipher_testvec seed_enc_tv_template[] = { 6877 + { 6878 + .key = zeroed_string, 6879 + .klen = 16, 6880 + .input = "\x00\x01\x02\x03\x04\x05\x06\x07" 6881 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 6882 + .ilen = 16, 6883 + .result = "\x5e\xba\xc6\xe0\x05\x4e\x16\x68" 6884 + "\x19\xaf\xf1\xcc\x6d\x34\x6c\xdb", 6885 + .rlen = 16, 6886 + }, { 6887 + .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 6888 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 6889 + .klen = 16, 6890 + .input = zeroed_string, 6891 + .ilen = 16, 6892 + .result = "\xc1\x1f\x22\xf2\x01\x40\x50\x50" 6893 + "\x84\x48\x35\x97\xe4\x37\x0f\x43", 6894 + .rlen = 16, 6895 + }, { 6896 + .key = "\x47\x06\x48\x08\x51\xe6\x1b\xe8" 6897 + "\x5d\x74\xbf\xb3\xfd\x95\x61\x85", 6898 + .klen = 16, 6899 + .input = "\x83\xa2\xf8\xa2\x88\x64\x1f\xb9" 6900 + "\xa4\xe9\xa5\xcc\x2f\x13\x1c\x7d", 6901 + .ilen = 16, 6902 + .result = "\xee\x54\xd1\x3e\xbc\xae\x70\x6d" 6903 + "\x22\x6b\xc3\x14\x2c\xd4\x0d\x4a", 6904 + .rlen = 16, 6905 + }, { 6906 + .key = "\x28\xdb\xc3\xbc\x49\xff\xd8\x7d" 6907 + "\xcf\xa5\x09\xb1\x1d\x42\x2b\xe7", 6908 + .klen = 16, 6909 + .input = "\xb4\x1e\x6b\xe2\xeb\xa8\x4a\x14" 6910 + "\x8e\x2e\xed\x84\x59\x3c\x5e\xc7", 6911 + .ilen = 16, 6912 + .result = "\x9b\x9b\x7b\xfc\xd1\x81\x3c\xb9" 6913 + "\x5d\x0b\x36\x18\xf4\x0f\x51\x22", 6914 + .rlen = 16, 6915 + } 6916 + }; 6917 + 6918 + static struct cipher_testvec seed_dec_tv_template[] = { 6919 + { 6920 + .key = zeroed_string, 6921 + .klen = 16, 6922 + .input = "\x5e\xba\xc6\xe0\x05\x4e\x16\x68" 6923 + "\x19\xaf\xf1\xcc\x6d\x34\x6c\xdb", 6924 + .ilen = 16, 6925 + .result = "\x00\x01\x02\x03\x04\x05\x06\x07" 6926 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 6927 + .rlen = 16, 6928 + }, { 6929 + .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 6930 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f", 6931 + .klen = 16, 6932 + .input = "\xc1\x1f\x22\xf2\x01\x40\x50\x50" 6933 + "\x84\x48\x35\x97\xe4\x37\x0f\x43", 6934 + .ilen = 16, 6935 + .result = zeroed_string, 6936 + .rlen = 16, 6937 + }, { 6938 + .key = "\x47\x06\x48\x08\x51\xe6\x1b\xe8" 6939 + "\x5d\x74\xbf\xb3\xfd\x95\x61\x85", 6940 + .klen = 16, 6941 + .input = "\xee\x54\xd1\x3e\xbc\xae\x70\x6d" 6942 + "\x22\x6b\xc3\x14\x2c\xd4\x0d\x4a", 6943 + .ilen = 16, 6944 + .result = "\x83\xa2\xf8\xa2\x88\x64\x1f\xb9" 6945 + "\xa4\xe9\xa5\xcc\x2f\x13\x1c\x7d", 6946 + .rlen = 16, 6947 + }, { 6948 + .key = "\x28\xdb\xc3\xbc\x49\xff\xd8\x7d" 6949 + "\xcf\xa5\x09\xb1\x1d\x42\x2b\xe7", 6950 + .klen = 16, 6951 + .input = "\x9b\x9b\x7b\xfc\xd1\x81\x3c\xb9" 6952 + "\x5d\x0b\x36\x18\xf4\x0f\x51\x22", 6953 + .ilen = 16, 6954 + .result = "\xb4\x1e\x6b\xe2\xeb\xa8\x4a\x14" 6955 + "\x8e\x2e\xed\x84\x59\x3c\x5e\xc7", 6956 + .rlen = 16, 6957 + } 6958 + }; 6959 + 6960 + #define SALSA20_STREAM_ENC_TEST_VECTORS 5 6961 + static struct cipher_testvec salsa20_stream_enc_tv_template[] = { 6962 + /* 6963 + * Testvectors from verified.test-vectors submitted to ECRYPT. 6964 + * They are truncated to size 39, 64, 111, 129 to test a variety 6965 + * of input length. 6966 + */ 6967 + { /* Set 3, vector 0 */ 6968 + .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 6969 + "\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F", 6970 + .klen = 16, 6971 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00", 6972 + .input = "\x00\x00\x00\x00\x00\x00\x00\x00" 6973 + "\x00\x00\x00\x00\x00\x00\x00\x00" 6974 + "\x00\x00\x00\x00\x00\x00\x00\x00" 6975 + "\x00\x00\x00\x00\x00\x00\x00\x00" 6976 + "\x00\x00\x00\x00\x00\x00\x00", 6977 + .ilen = 39, 6978 + .result = "\x2D\xD5\xC3\xF7\xBA\x2B\x20\xF7" 6979 + "\x68\x02\x41\x0C\x68\x86\x88\x89" 6980 + "\x5A\xD8\xC1\xBD\x4E\xA6\xC9\xB1" 6981 + "\x40\xFB\x9B\x90\xE2\x10\x49\xBF" 6982 + "\x58\x3F\x52\x79\x70\xEB\xC1", 6983 + .rlen = 39, 6984 + }, { /* Set 5, vector 0 */ 6985 + .key = "\x00\x00\x00\x00\x00\x00\x00\x00" 6986 + "\x00\x00\x00\x00\x00\x00\x00\x00", 6987 + .klen = 16, 6988 + .iv = "\x80\x00\x00\x00\x00\x00\x00\x00", 6989 + .input = "\x00\x00\x00\x00\x00\x00\x00\x00" 6990 + "\x00\x00\x00\x00\x00\x00\x00\x00" 6991 + "\x00\x00\x00\x00\x00\x00\x00\x00" 6992 + "\x00\x00\x00\x00\x00\x00\x00\x00" 6993 + "\x00\x00\x00\x00\x00\x00\x00\x00" 6994 + "\x00\x00\x00\x00\x00\x00\x00\x00" 6995 + "\x00\x00\x00\x00\x00\x00\x00\x00" 6996 + "\x00\x00\x00\x00\x00\x00\x00\x00", 6997 + .ilen = 64, 6998 + .result = "\xB6\x6C\x1E\x44\x46\xDD\x95\x57" 6999 + "\xE5\x78\xE2\x23\xB0\xB7\x68\x01" 7000 + "\x7B\x23\xB2\x67\xBB\x02\x34\xAE" 7001 + "\x46\x26\xBF\x44\x3F\x21\x97\x76" 7002 + "\x43\x6F\xB1\x9F\xD0\xE8\x86\x6F" 7003 + "\xCD\x0D\xE9\xA9\x53\x8F\x4A\x09" 7004 + "\xCA\x9A\xC0\x73\x2E\x30\xBC\xF9" 7005 + "\x8E\x4F\x13\xE4\xB9\xE2\x01\xD9", 7006 + .rlen = 64, 7007 + }, { /* Set 3, vector 27 */ 7008 + .key = "\x1B\x1C\x1D\x1E\x1F\x20\x21\x22" 7009 + "\x23\x24\x25\x26\x27\x28\x29\x2A" 7010 + "\x2B\x2C\x2D\x2E\x2F\x30\x31\x32" 7011 + "\x33\x34\x35\x36\x37\x38\x39\x3A", 7012 + .klen = 32, 7013 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00", 7014 + .input = "\x00\x00\x00\x00\x00\x00\x00\x00" 7015 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7016 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7017 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7018 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7019 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7020 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7021 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7022 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7023 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7024 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7025 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7026 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7027 + "\x00\x00\x00\x00\x00\x00\x00", 7028 + .ilen = 111, 7029 + .result = "\xAE\x39\x50\x8E\xAC\x9A\xEC\xE7" 7030 + "\xBF\x97\xBB\x20\xB9\xDE\xE4\x1F" 7031 + "\x87\xD9\x47\xF8\x28\x91\x35\x98" 7032 + "\xDB\x72\xCC\x23\x29\x48\x56\x5E" 7033 + "\x83\x7E\x0B\xF3\x7D\x5D\x38\x7B" 7034 + "\x2D\x71\x02\xB4\x3B\xB5\xD8\x23" 7035 + "\xB0\x4A\xDF\x3C\xEC\xB6\xD9\x3B" 7036 + "\x9B\xA7\x52\xBE\xC5\xD4\x50\x59" 7037 + "\x15\x14\xB4\x0E\x40\xE6\x53\xD1" 7038 + "\x83\x9C\x5B\xA0\x92\x29\x6B\x5E" 7039 + "\x96\x5B\x1E\x2F\xD3\xAC\xC1\x92" 7040 + "\xB1\x41\x3F\x19\x2F\xC4\x3B\xC6" 7041 + "\x95\x46\x45\x54\xE9\x75\x03\x08" 7042 + "\x44\xAF\xE5\x8A\x81\x12\x09", 7043 + .rlen = 111, 7044 + }, { /* Set 5, vector 27 */ 7045 + .key = "\x00\x00\x00\x00\x00\x00\x00\x00" 7046 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7047 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7048 + "\x00\x00\x00\x00\x00\x00\x00\x00", 7049 + .klen = 32, 7050 + .iv = "\x00\x00\x00\x10\x00\x00\x00\x00", 7051 + .input = "\x00\x00\x00\x00\x00\x00\x00\x00" 7052 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7053 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7054 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7055 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7056 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7057 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7058 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7059 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7060 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7061 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7062 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7063 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7064 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7065 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7066 + "\x00\x00\x00\x00\x00\x00\x00\x00" 7067 + "\x00", 7068 + .ilen = 129, 7069 + .result = "\xD2\xDB\x1A\x5C\xF1\xC1\xAC\xDB" 7070 + "\xE8\x1A\x7A\x43\x40\xEF\x53\x43" 7071 + "\x5E\x7F\x4B\x1A\x50\x52\x3F\x8D" 7072 + "\x28\x3D\xCF\x85\x1D\x69\x6E\x60" 7073 + "\xF2\xDE\x74\x56\x18\x1B\x84\x10" 7074 + "\xD4\x62\xBA\x60\x50\xF0\x61\xF2" 7075 + "\x1C\x78\x7F\xC1\x24\x34\xAF\x58" 7076 + "\xBF\x2C\x59\xCA\x90\x77\xF3\xB0" 7077 + "\x5B\x4A\xDF\x89\xCE\x2C\x2F\xFC" 7078 + "\x67\xF0\xE3\x45\xE8\xB3\xB3\x75" 7079 + "\xA0\x95\x71\xA1\x29\x39\x94\xCA" 7080 + "\x45\x2F\xBD\xCB\x10\xB6\xBE\x9F" 7081 + "\x8E\xF9\xB2\x01\x0A\x5A\x0A\xB7" 7082 + "\x6B\x9D\x70\x8E\x4B\xD6\x2F\xCD" 7083 + "\x2E\x40\x48\x75\xE9\xE2\x21\x45" 7084 + "\x0B\xC9\xB6\xB5\x66\xBC\x9A\x59" 7085 + "\x5A", 7086 + .rlen = 129, 7087 + }, { /* large test vector generated using Crypto++ */ 7088 + .key = "\x00\x01\x02\x03\x04\x05\x06\x07" 7089 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 7090 + "\x10\x11\x12\x13\x14\x15\x16\x17" 7091 + "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f", 7092 + .klen = 32, 7093 + .iv = "\x00\x00\x00\x00\x00\x00\x00\x00" 7094 + "\x00\x00\x00\x00\x00\x00\x00\x00", 7095 + .input = 7096 + "\x00\x01\x02\x03\x04\x05\x06\x07" 7097 + "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" 7098 + "\x10\x11\x12\x13\x14\x15\x16\x17" 7099 + "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" 7100 + "\x20\x21\x22\x23\x24\x25\x26\x27" 7101 + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" 7102 + "\x30\x31\x32\x33\x34\x35\x36\x37" 7103 + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" 7104 + "\x40\x41\x42\x43\x44\x45\x46\x47" 7105 + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" 7106 + "\x50\x51\x52\x53\x54\x55\x56\x57" 7107 + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" 7108 + "\x60\x61\x62\x63\x64\x65\x66\x67" 7109 + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" 7110 + "\x70\x71\x72\x73\x74\x75\x76\x77" 7111 + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" 7112 + "\x80\x81\x82\x83\x84\x85\x86\x87" 7113 + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" 7114 + "\x90\x91\x92\x93\x94\x95\x96\x97" 7115 + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" 7116 + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" 7117 + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" 7118 + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" 7119 + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" 7120 + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" 7121 + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" 7122 + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" 7123 + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" 7124 + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" 7125 + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" 7126 + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" 7127 + "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff" 7128 + "\x00\x03\x06\x09\x0c\x0f\x12\x15" 7129 + "\x18\x1b\x1e\x21\x24\x27\x2a\x2d" 7130 + "\x30\x33\x36\x39\x3c\x3f\x42\x45" 7131 + "\x48\x4b\x4e\x51\x54\x57\x5a\x5d" 7132 + "\x60\x63\x66\x69\x6c\x6f\x72\x75" 7133 + "\x78\x7b\x7e\x81\x84\x87\x8a\x8d" 7134 + "\x90\x93\x96\x99\x9c\x9f\xa2\xa5" 7135 + "\xa8\xab\xae\xb1\xb4\xb7\xba\xbd" 7136 + "\xc0\xc3\xc6\xc9\xcc\xcf\xd2\xd5" 7137 + "\xd8\xdb\xde\xe1\xe4\xe7\xea\xed" 7138 + "\xf0\xf3\xf6\xf9\xfc\xff\x02\x05" 7139 + "\x08\x0b\x0e\x11\x14\x17\x1a\x1d" 7140 + "\x20\x23\x26\x29\x2c\x2f\x32\x35" 7141 + "\x38\x3b\x3e\x41\x44\x47\x4a\x4d" 7142 + "\x50\x53\x56\x59\x5c\x5f\x62\x65" 7143 + "\x68\x6b\x6e\x71\x74\x77\x7a\x7d" 7144 + "\x80\x83\x86\x89\x8c\x8f\x92\x95" 7145 + "\x98\x9b\x9e\xa1\xa4\xa7\xaa\xad" 7146 + "\xb0\xb3\xb6\xb9\xbc\xbf\xc2\xc5" 7147 + "\xc8\xcb\xce\xd1\xd4\xd7\xda\xdd" 7148 + "\xe0\xe3\xe6\xe9\xec\xef\xf2\xf5" 7149 + "\xf8\xfb\xfe\x01\x04\x07\x0a\x0d" 7150 + "\x10\x13\x16\x19\x1c\x1f\x22\x25" 7151 + "\x28\x2b\x2e\x31\x34\x37\x3a\x3d" 7152 + "\x40\x43\x46\x49\x4c\x4f\x52\x55" 7153 + "\x58\x5b\x5e\x61\x64\x67\x6a\x6d" 7154 + "\x70\x73\x76\x79\x7c\x7f\x82\x85" 7155 + "\x88\x8b\x8e\x91\x94\x97\x9a\x9d" 7156 + "\xa0\xa3\xa6\xa9\xac\xaf\xb2\xb5" 7157 + "\xb8\xbb\xbe\xc1\xc4\xc7\xca\xcd" 7158 + "\xd0\xd3\xd6\xd9\xdc\xdf\xe2\xe5" 7159 + "\xe8\xeb\xee\xf1\xf4\xf7\xfa\xfd" 7160 + "\x00\x05\x0a\x0f\x14\x19\x1e\x23" 7161 + "\x28\x2d\x32\x37\x3c\x41\x46\x4b" 7162 + "\x50\x55\x5a\x5f\x64\x69\x6e\x73" 7163 + "\x78\x7d\x82\x87\x8c\x91\x96\x9b" 7164 + "\xa0\xa5\xaa\xaf\xb4\xb9\xbe\xc3" 7165 + "\xc8\xcd\xd2\xd7\xdc\xe1\xe6\xeb" 7166 + "\xf0\xf5\xfa\xff\x04\x09\x0e\x13" 7167 + "\x18\x1d\x22\x27\x2c\x31\x36\x3b" 7168 + "\x40\x45\x4a\x4f\x54\x59\x5e\x63" 7169 + "\x68\x6d\x72\x77\x7c\x81\x86\x8b" 7170 + "\x90\x95\x9a\x9f\xa4\xa9\xae\xb3" 7171 + "\xb8\xbd\xc2\xc7\xcc\xd1\xd6\xdb" 7172 + "\xe0\xe5\xea\xef\xf4\xf9\xfe\x03" 7173 + "\x08\x0d\x12\x17\x1c\x21\x26\x2b" 7174 + "\x30\x35\x3a\x3f\x44\x49\x4e\x53" 7175 + "\x58\x5d\x62\x67\x6c\x71\x76\x7b" 7176 + "\x80\x85\x8a\x8f\x94\x99\x9e\xa3" 7177 + "\xa8\xad\xb2\xb7\xbc\xc1\xc6\xcb" 7178 + "\xd0\xd5\xda\xdf\xe4\xe9\xee\xf3" 7179 + "\xf8\xfd\x02\x07\x0c\x11\x16\x1b" 7180 + "\x20\x25\x2a\x2f\x34\x39\x3e\x43" 7181 + "\x48\x4d\x52\x57\x5c\x61\x66\x6b" 7182 + "\x70\x75\x7a\x7f\x84\x89\x8e\x93" 7183 + "\x98\x9d\xa2\xa7\xac\xb1\xb6\xbb" 7184 + "\xc0\xc5\xca\xcf\xd4\xd9\xde\xe3" 7185 + "\xe8\xed\xf2\xf7\xfc\x01\x06\x0b" 7186 + "\x10\x15\x1a\x1f\x24\x29\x2e\x33" 7187 + "\x38\x3d\x42\x47\x4c\x51\x56\x5b" 7188 + "\x60\x65\x6a\x6f\x74\x79\x7e\x83" 7189 + "\x88\x8d\x92\x97\x9c\xa1\xa6\xab" 7190 + "\xb0\xb5\xba\xbf\xc4\xc9\xce\xd3" 7191 + "\xd8\xdd\xe2\xe7\xec\xf1\xf6\xfb" 7192 + "\x00\x07\x0e\x15\x1c\x23\x2a\x31" 7193 + "\x38\x3f\x46\x4d\x54\x5b\x62\x69" 7194 + "\x70\x77\x7e\x85\x8c\x93\x9a\xa1" 7195 + "\xa8\xaf\xb6\xbd\xc4\xcb\xd2\xd9" 7196 + "\xe0\xe7\xee\xf5\xfc\x03\x0a\x11" 7197 + "\x18\x1f\x26\x2d\x34\x3b\x42\x49" 7198 + "\x50\x57\x5e\x65\x6c\x73\x7a\x81" 7199 + "\x88\x8f\x96\x9d\xa4\xab\xb2\xb9" 7200 + "\xc0\xc7\xce\xd5\xdc\xe3\xea\xf1" 7201 + "\xf8\xff\x06\x0d\x14\x1b\x22\x29" 7202 + "\x30\x37\x3e\x45\x4c\x53\x5a\x61" 7203 + "\x68\x6f\x76\x7d\x84\x8b\x92\x99" 7204 + "\xa0\xa7\xae\xb5\xbc\xc3\xca\xd1" 7205 + "\xd8\xdf\xe6\xed\xf4\xfb\x02\x09" 7206 + "\x10\x17\x1e\x25\x2c\x33\x3a\x41" 7207 + "\x48\x4f\x56\x5d\x64\x6b\x72\x79" 7208 + "\x80\x87\x8e\x95\x9c\xa3\xaa\xb1" 7209 + "\xb8\xbf\xc6\xcd\xd4\xdb\xe2\xe9" 7210 + "\xf0\xf7\xfe\x05\x0c\x13\x1a\x21" 7211 + "\x28\x2f\x36\x3d\x44\x4b\x52\x59" 7212 + "\x60\x67\x6e\x75\x7c\x83\x8a\x91" 7213 + "\x98\x9f\xa6\xad\xb4\xbb\xc2\xc9" 7214 + "\xd0\xd7\xde\xe5\xec\xf3\xfa\x01" 7215 + "\x08\x0f\x16\x1d\x24\x2b\x32\x39" 7216 + "\x40\x47\x4e\x55\x5c\x63\x6a\x71" 7217 + "\x78\x7f\x86\x8d\x94\x9b\xa2\xa9" 7218 + "\xb0\xb7\xbe\xc5\xcc\xd3\xda\xe1" 7219 + "\xe8\xef\xf6\xfd\x04\x0b\x12\x19" 7220 + "\x20\x27\x2e\x35\x3c\x43\x4a\x51" 7221 + "\x58\x5f\x66\x6d\x74\x7b\x82\x89" 7222 + "\x90\x97\x9e\xa5\xac\xb3\xba\xc1" 7223 + "\xc8\xcf\xd6\xdd\xe4\xeb\xf2\xf9" 7224 + "\x00\x09\x12\x1b\x24\x2d\x36\x3f" 7225 + "\x48\x51\x5a\x63\x6c\x75\x7e\x87" 7226 + "\x90\x99\xa2\xab\xb4\xbd\xc6\xcf" 7227 + "\xd8\xe1\xea\xf3\xfc\x05\x0e\x17" 7228 + "\x20\x29\x32\x3b\x44\x4d\x56\x5f" 7229 + "\x68\x71\x7a\x83\x8c\x95\x9e\xa7" 7230 + "\xb0\xb9\xc2\xcb\xd4\xdd\xe6\xef" 7231 + "\xf8\x01\x0a\x13\x1c\x25\x2e\x37" 7232 + "\x40\x49\x52\x5b\x64\x6d\x76\x7f" 7233 + "\x88\x91\x9a\xa3\xac\xb5\xbe\xc7" 7234 + "\xd0\xd9\xe2\xeb\xf4\xfd\x06\x0f" 7235 + "\x18\x21\x2a\x33\x3c\x45\x4e\x57" 7236 + "\x60\x69\x72\x7b\x84\x8d\x96\x9f" 7237 + "\xa8\xb1\xba\xc3\xcc\xd5\xde\xe7" 7238 + "\xf0\xf9\x02\x0b\x14\x1d\x26\x2f" 7239 + "\x38\x41\x4a\x53\x5c\x65\x6e\x77" 7240 + "\x80\x89\x92\x9b\xa4\xad\xb6\xbf" 7241 + "\xc8\xd1\xda\xe3\xec\xf5\xfe\x07" 7242 + "\x10\x19\x22\x2b\x34\x3d\x46\x4f" 7243 + "\x58\x61\x6a\x73\x7c\x85\x8e\x97" 7244 + "\xa0\xa9\xb2\xbb\xc4\xcd\xd6\xdf" 7245 + "\xe8\xf1\xfa\x03\x0c\x15\x1e\x27" 7246 + "\x30\x39\x42\x4b\x54\x5d\x66\x6f" 7247 + "\x78\x81\x8a\x93\x9c\xa5\xae\xb7" 7248 + "\xc0\xc9\xd2\xdb\xe4\xed\xf6\xff" 7249 + "\x08\x11\x1a\x23\x2c\x35\x3e\x47" 7250 + "\x50\x59\x62\x6b\x74\x7d\x86\x8f" 7251 + "\x98\xa1\xaa\xb3\xbc\xc5\xce\xd7" 7252 + "\xe0\xe9\xf2\xfb\x04\x0d\x16\x1f" 7253 + "\x28\x31\x3a\x43\x4c\x55\x5e\x67" 7254 + "\x70\x79\x82\x8b\x94\x9d\xa6\xaf" 7255 + "\xb8\xc1\xca\xd3\xdc\xe5\xee\xf7" 7256 + "\x00\x0b\x16\x21\x2c\x37\x42\x4d" 7257 + "\x58\x63\x6e\x79\x84\x8f\x9a\xa5" 7258 + "\xb0\xbb\xc6\xd1\xdc\xe7\xf2\xfd" 7259 + "\x08\x13\x1e\x29\x34\x3f\x4a\x55" 7260 + "\x60\x6b\x76\x81\x8c\x97\xa2\xad" 7261 + "\xb8\xc3\xce\xd9\xe4\xef\xfa\x05" 7262 + "\x10\x1b\x26\x31\x3c\x47\x52\x5d" 7263 + "\x68\x73\x7e\x89\x94\x9f\xaa\xb5" 7264 + "\xc0\xcb\xd6\xe1\xec\xf7\x02\x0d" 7265 + "\x18\x23\x2e\x39\x44\x4f\x5a\x65" 7266 + "\x70\x7b\x86\x91\x9c\xa7\xb2\xbd" 7267 + "\xc8\xd3\xde\xe9\xf4\xff\x0a\x15" 7268 + "\x20\x2b\x36\x41\x4c\x57\x62\x6d" 7269 + "\x78\x83\x8e\x99\xa4\xaf\xba\xc5" 7270 + "\xd0\xdb\xe6\xf1\xfc\x07\x12\x1d" 7271 + "\x28\x33\x3e\x49\x54\x5f\x6a\x75" 7272 + "\x80\x8b\x96\xa1\xac\xb7\xc2\xcd" 7273 + "\xd8\xe3\xee\xf9\x04\x0f\x1a\x25" 7274 + "\x30\x3b\x46\x51\x5c\x67\x72\x7d" 7275 + "\x88\x93\x9e\xa9\xb4\xbf\xca\xd5" 7276 + "\xe0\xeb\xf6\x01\x0c\x17\x22\x2d" 7277 + "\x38\x43\x4e\x59\x64\x6f\x7a\x85" 7278 + "\x90\x9b\xa6\xb1\xbc\xc7\xd2\xdd" 7279 + "\xe8\xf3\xfe\x09\x14\x1f\x2a\x35" 7280 + "\x40\x4b\x56\x61\x6c\x77\x82\x8d" 7281 + "\x98\xa3\xae\xb9\xc4\xcf\xda\xe5" 7282 + "\xf0\xfb\x06\x11\x1c\x27\x32\x3d" 7283 + "\x48\x53\x5e\x69\x74\x7f\x8a\x95" 7284 + "\xa0\xab\xb6\xc1\xcc\xd7\xe2\xed" 7285 + "\xf8\x03\x0e\x19\x24\x2f\x3a\x45" 7286 + "\x50\x5b\x66\x71\x7c\x87\x92\x9d" 7287 + "\xa8\xb3\xbe\xc9\xd4\xdf\xea\xf5" 7288 + "\x00\x0d\x1a\x27\x34\x41\x4e\x5b" 7289 + "\x68\x75\x82\x8f\x9c\xa9\xb6\xc3" 7290 + "\xd0\xdd\xea\xf7\x04\x11\x1e\x2b" 7291 + "\x38\x45\x52\x5f\x6c\x79\x86\x93" 7292 + "\xa0\xad\xba\xc7\xd4\xe1\xee\xfb" 7293 + "\x08\x15\x22\x2f\x3c\x49\x56\x63" 7294 + "\x70\x7d\x8a\x97\xa4\xb1\xbe\xcb" 7295 + "\xd8\xe5\xf2\xff\x0c\x19\x26\x33" 7296 + "\x40\x4d\x5a\x67\x74\x81\x8e\x9b" 7297 + "\xa8\xb5\xc2\xcf\xdc\xe9\xf6\x03" 7298 + "\x10\x1d\x2a\x37\x44\x51\x5e\x6b" 7299 + "\x78\x85\x92\x9f\xac\xb9\xc6\xd3" 7300 + "\xe0\xed\xfa\x07\x14\x21\x2e\x3b" 7301 + "\x48\x55\x62\x6f\x7c\x89\x96\xa3" 7302 + "\xb0\xbd\xca\xd7\xe4\xf1\xfe\x0b" 7303 + "\x18\x25\x32\x3f\x4c\x59\x66\x73" 7304 + "\x80\x8d\x9a\xa7\xb4\xc1\xce\xdb" 7305 + "\xe8\xf5\x02\x0f\x1c\x29\x36\x43" 7306 + "\x50\x5d\x6a\x77\x84\x91\x9e\xab" 7307 + "\xb8\xc5\xd2\xdf\xec\xf9\x06\x13" 7308 + "\x20\x2d\x3a\x47\x54\x61\x6e\x7b" 7309 + "\x88\x95\xa2\xaf\xbc\xc9\xd6\xe3" 7310 + "\xf0\xfd\x0a\x17\x24\x31\x3e\x4b" 7311 + "\x58\x65\x72\x7f\x8c\x99\xa6\xb3" 7312 + "\xc0\xcd\xda\xe7\xf4\x01\x0e\x1b" 7313 + "\x28\x35\x42\x4f\x5c\x69\x76\x83" 7314 + "\x90\x9d\xaa\xb7\xc4\xd1\xde\xeb" 7315 + "\xf8\x05\x12\x1f\x2c\x39\x46\x53" 7316 + "\x60\x6d\x7a\x87\x94\xa1\xae\xbb" 7317 + "\xc8\xd5\xe2\xef\xfc\x09\x16\x23" 7318 + "\x30\x3d\x4a\x57\x64\x71\x7e\x8b" 7319 + "\x98\xa5\xb2\xbf\xcc\xd9\xe6\xf3" 7320 + "\x00\x0f\x1e\x2d\x3c\x4b\x5a\x69" 7321 + "\x78\x87\x96\xa5\xb4\xc3\xd2\xe1" 7322 + "\xf0\xff\x0e\x1d\x2c\x3b\x4a\x59" 7323 + "\x68\x77\x86\x95\xa4\xb3\xc2\xd1" 7324 + "\xe0\xef\xfe\x0d\x1c\x2b\x3a\x49" 7325 + "\x58\x67\x76\x85\x94\xa3\xb2\xc1" 7326 + "\xd0\xdf\xee\xfd\x0c\x1b\x2a\x39" 7327 + "\x48\x57\x66\x75\x84\x93\xa2\xb1" 7328 + "\xc0\xcf\xde\xed\xfc\x0b\x1a\x29" 7329 + "\x38\x47\x56\x65\x74\x83\x92\xa1" 7330 + "\xb0\xbf\xce\xdd\xec\xfb\x0a\x19" 7331 + "\x28\x37\x46\x55\x64\x73\x82\x91" 7332 + "\xa0\xaf\xbe\xcd\xdc\xeb\xfa\x09" 7333 + "\x18\x27\x36\x45\x54\x63\x72\x81" 7334 + "\x90\x9f\xae\xbd\xcc\xdb\xea\xf9" 7335 + "\x08\x17\x26\x35\x44\x53\x62\x71" 7336 + "\x80\x8f\x9e\xad\xbc\xcb\xda\xe9" 7337 + "\xf8\x07\x16\x25\x34\x43\x52\x61" 7338 + "\x70\x7f\x8e\x9d\xac\xbb\xca\xd9" 7339 + "\xe8\xf7\x06\x15\x24\x33\x42\x51" 7340 + "\x60\x6f\x7e\x8d\x9c\xab\xba\xc9" 7341 + "\xd8\xe7\xf6\x05\x14\x23\x32\x41" 7342 + "\x50\x5f\x6e\x7d\x8c\x9b\xaa\xb9" 7343 + "\xc8\xd7\xe6\xf5\x04\x13\x22\x31" 7344 + "\x40\x4f\x5e\x6d\x7c\x8b\x9a\xa9" 7345 + "\xb8\xc7\xd6\xe5\xf4\x03\x12\x21" 7346 + "\x30\x3f\x4e\x5d\x6c\x7b\x8a\x99" 7347 + "\xa8\xb7\xc6\xd5\xe4\xf3\x02\x11" 7348 + "\x20\x2f\x3e\x4d\x5c\x6b\x7a\x89" 7349 + "\x98\xa7\xb6\xc5\xd4\xe3\xf2\x01" 7350 + "\x10\x1f\x2e\x3d\x4c\x5b\x6a\x79" 7351 + "\x88\x97\xa6\xb5\xc4\xd3\xe2\xf1" 7352 + "\x00\x11\x22\x33\x44\x55\x66\x77" 7353 + "\x88\x99\xaa\xbb\xcc\xdd\xee\xff" 7354 + "\x10\x21\x32\x43\x54\x65\x76\x87" 7355 + "\x98\xa9\xba\xcb\xdc\xed\xfe\x0f" 7356 + "\x20\x31\x42\x53\x64\x75\x86\x97" 7357 + "\xa8\xb9\xca\xdb\xec\xfd\x0e\x1f" 7358 + "\x30\x41\x52\x63\x74\x85\x96\xa7" 7359 + "\xb8\xc9\xda\xeb\xfc\x0d\x1e\x2f" 7360 + "\x40\x51\x62\x73\x84\x95\xa6\xb7" 7361 + "\xc8\xd9\xea\xfb\x0c\x1d\x2e\x3f" 7362 + "\x50\x61\x72\x83\x94\xa5\xb6\xc7" 7363 + "\xd8\xe9\xfa\x0b\x1c\x2d\x3e\x4f" 7364 + "\x60\x71\x82\x93\xa4\xb5\xc6\xd7" 7365 + "\xe8\xf9\x0a\x1b\x2c\x3d\x4e\x5f" 7366 + "\x70\x81\x92\xa3\xb4\xc5\xd6\xe7" 7367 + "\xf8\x09\x1a\x2b\x3c\x4d\x5e\x6f" 7368 + "\x80\x91\xa2\xb3\xc4\xd5\xe6\xf7" 7369 + "\x08\x19\x2a\x3b\x4c\x5d\x6e\x7f" 7370 + "\x90\xa1\xb2\xc3\xd4\xe5\xf6\x07" 7371 + "\x18\x29\x3a\x4b\x5c\x6d\x7e\x8f" 7372 + "\xa0\xb1\xc2\xd3\xe4\xf5\x06\x17" 7373 + "\x28\x39\x4a\x5b\x6c\x7d\x8e\x9f" 7374 + "\xb0\xc1\xd2\xe3\xf4\x05\x16\x27" 7375 + "\x38\x49\x5a\x6b\x7c\x8d\x9e\xaf" 7376 + "\xc0\xd1\xe2\xf3\x04\x15\x26\x37" 7377 + "\x48\x59\x6a\x7b\x8c\x9d\xae\xbf" 7378 + "\xd0\xe1\xf2\x03\x14\x25\x36\x47" 7379 + "\x58\x69\x7a\x8b\x9c\xad\xbe\xcf" 7380 + "\xe0\xf1\x02\x13\x24\x35\x46\x57" 7381 + "\x68\x79\x8a\x9b\xac\xbd\xce\xdf" 7382 + "\xf0\x01\x12\x23\x34\x45\x56\x67" 7383 + "\x78\x89\x9a\xab\xbc\xcd\xde\xef" 7384 + "\x00\x13\x26\x39\x4c\x5f\x72\x85" 7385 + "\x98\xab\xbe\xd1\xe4\xf7\x0a\x1d" 7386 + "\x30\x43\x56\x69\x7c\x8f\xa2\xb5" 7387 + "\xc8\xdb\xee\x01\x14\x27\x3a\x4d" 7388 + "\x60\x73\x86\x99\xac\xbf\xd2\xe5" 7389 + "\xf8\x0b\x1e\x31\x44\x57\x6a\x7d" 7390 + "\x90\xa3\xb6\xc9\xdc\xef\x02\x15" 7391 + "\x28\x3b\x4e\x61\x74\x87\x9a\xad" 7392 + "\xc0\xd3\xe6\xf9\x0c\x1f\x32\x45" 7393 + "\x58\x6b\x7e\x91\xa4\xb7\xca\xdd" 7394 + "\xf0\x03\x16\x29\x3c\x4f\x62\x75" 7395 + "\x88\x9b\xae\xc1\xd4\xe7\xfa\x0d" 7396 + "\x20\x33\x46\x59\x6c\x7f\x92\xa5" 7397 + "\xb8\xcb\xde\xf1\x04\x17\x2a\x3d" 7398 + "\x50\x63\x76\x89\x9c\xaf\xc2\xd5" 7399 + "\xe8\xfb\x0e\x21\x34\x47\x5a\x6d" 7400 + "\x80\x93\xa6\xb9\xcc\xdf\xf2\x05" 7401 + "\x18\x2b\x3e\x51\x64\x77\x8a\x9d" 7402 + "\xb0\xc3\xd6\xe9\xfc\x0f\x22\x35" 7403 + "\x48\x5b\x6e\x81\x94\xa7\xba\xcd" 7404 + "\xe0\xf3\x06\x19\x2c\x3f\x52\x65" 7405 + "\x78\x8b\x9e\xb1\xc4\xd7\xea\xfd" 7406 + "\x10\x23\x36\x49\x5c\x6f\x82\x95" 7407 + "\xa8\xbb\xce\xe1\xf4\x07\x1a\x2d" 7408 + "\x40\x53\x66\x79\x8c\x9f\xb2\xc5" 7409 + "\xd8\xeb\xfe\x11\x24\x37\x4a\x5d" 7410 + "\x70\x83\x96\xa9\xbc\xcf\xe2\xf5" 7411 + "\x08\x1b\x2e\x41\x54\x67\x7a\x8d" 7412 + "\xa0\xb3\xc6\xd9\xec\xff\x12\x25" 7413 + "\x38\x4b\x5e\x71\x84\x97\xaa\xbd" 7414 + "\xd0\xe3\xf6\x09\x1c\x2f\x42\x55" 7415 + "\x68\x7b\x8e\xa1\xb4\xc7\xda\xed" 7416 + "\x00\x15\x2a\x3f\x54\x69\x7e\x93" 7417 + "\xa8\xbd\xd2\xe7\xfc\x11\x26\x3b" 7418 + "\x50\x65\x7a\x8f\xa4\xb9\xce\xe3" 7419 + "\xf8\x0d\x22\x37\x4c\x61\x76\x8b" 7420 + "\xa0\xb5\xca\xdf\xf4\x09\x1e\x33" 7421 + "\x48\x5d\x72\x87\x9c\xb1\xc6\xdb" 7422 + "\xf0\x05\x1a\x2f\x44\x59\x6e\x83" 7423 + "\x98\xad\xc2\xd7\xec\x01\x16\x2b" 7424 + "\x40\x55\x6a\x7f\x94\xa9\xbe\xd3" 7425 + "\xe8\xfd\x12\x27\x3c\x51\x66\x7b" 7426 + "\x90\xa5\xba\xcf\xe4\xf9\x0e\x23" 7427 + "\x38\x4d\x62\x77\x8c\xa1\xb6\xcb" 7428 + "\xe0\xf5\x0a\x1f\x34\x49\x5e\x73" 7429 + "\x88\x9d\xb2\xc7\xdc\xf1\x06\x1b" 7430 + "\x30\x45\x5a\x6f\x84\x99\xae\xc3" 7431 + "\xd8\xed\x02\x17\x2c\x41\x56\x6b" 7432 + "\x80\x95\xaa\xbf\xd4\xe9\xfe\x13" 7433 + "\x28\x3d\x52\x67\x7c\x91\xa6\xbb" 7434 + "\xd0\xe5\xfa\x0f\x24\x39\x4e\x63" 7435 + "\x78\x8d\xa2\xb7\xcc\xe1\xf6\x0b" 7436 + "\x20\x35\x4a\x5f\x74\x89\x9e\xb3" 7437 + "\xc8\xdd\xf2\x07\x1c\x31\x46\x5b" 7438 + "\x70\x85\x9a\xaf\xc4\xd9\xee\x03" 7439 + "\x18\x2d\x42\x57\x6c\x81\x96\xab" 7440 + "\xc0\xd5\xea\xff\x14\x29\x3e\x53" 7441 + "\x68\x7d\x92\xa7\xbc\xd1\xe6\xfb" 7442 + "\x10\x25\x3a\x4f\x64\x79\x8e\xa3" 7443 + "\xb8\xcd\xe2\xf7\x0c\x21\x36\x4b" 7444 + "\x60\x75\x8a\x9f\xb4\xc9\xde\xf3" 7445 + "\x08\x1d\x32\x47\x5c\x71\x86\x9b" 7446 + "\xb0\xc5\xda\xef\x04\x19\x2e\x43" 7447 + "\x58\x6d\x82\x97\xac\xc1\xd6\xeb" 7448 + "\x00\x17\x2e\x45\x5c\x73\x8a\xa1" 7449 + "\xb8\xcf\xe6\xfd\x14\x2b\x42\x59" 7450 + "\x70\x87\x9e\xb5\xcc\xe3\xfa\x11" 7451 + "\x28\x3f\x56\x6d\x84\x9b\xb2\xc9" 7452 + "\xe0\xf7\x0e\x25\x3c\x53\x6a\x81" 7453 + "\x98\xaf\xc6\xdd\xf4\x0b\x22\x39" 7454 + "\x50\x67\x7e\x95\xac\xc3\xda\xf1" 7455 + "\x08\x1f\x36\x4d\x64\x7b\x92\xa9" 7456 + "\xc0\xd7\xee\x05\x1c\x33\x4a\x61" 7457 + "\x78\x8f\xa6\xbd\xd4\xeb\x02\x19" 7458 + "\x30\x47\x5e\x75\x8c\xa3\xba\xd1" 7459 + "\xe8\xff\x16\x2d\x44\x5b\x72\x89" 7460 + "\xa0\xb7\xce\xe5\xfc\x13\x2a\x41" 7461 + "\x58\x6f\x86\x9d\xb4\xcb\xe2\xf9" 7462 + "\x10\x27\x3e\x55\x6c\x83\x9a\xb1" 7463 + "\xc8\xdf\xf6\x0d\x24\x3b\x52\x69" 7464 + "\x80\x97\xae\xc5\xdc\xf3\x0a\x21" 7465 + "\x38\x4f\x66\x7d\x94\xab\xc2\xd9" 7466 + "\xf0\x07\x1e\x35\x4c\x63\x7a\x91" 7467 + "\xa8\xbf\xd6\xed\x04\x1b\x32\x49" 7468 + "\x60\x77\x8e\xa5\xbc\xd3\xea\x01" 7469 + "\x18\x2f\x46\x5d\x74\x8b\xa2\xb9" 7470 + "\xd0\xe7\xfe\x15\x2c\x43\x5a\x71" 7471 + "\x88\x9f\xb6\xcd\xe4\xfb\x12\x29" 7472 + "\x40\x57\x6e\x85\x9c\xb3\xca\xe1" 7473 + "\xf8\x0f\x26\x3d\x54\x6b\x82\x99" 7474 + "\xb0\xc7\xde\xf5\x0c\x23\x3a\x51" 7475 + "\x68\x7f\x96\xad\xc4\xdb\xf2\x09" 7476 + "\x20\x37\x4e\x65\x7c\x93\xaa\xc1" 7477 + "\xd8\xef\x06\x1d\x34\x4b\x62\x79" 7478 + "\x90\xa7\xbe\xd5\xec\x03\x1a\x31" 7479 + "\x48\x5f\x76\x8d\xa4\xbb\xd2\xe9" 7480 + "\x00\x19\x32\x4b\x64\x7d\x96\xaf" 7481 + "\xc8\xe1\xfa\x13\x2c\x45\x5e\x77" 7482 + "\x90\xa9\xc2\xdb\xf4\x0d\x26\x3f" 7483 + "\x58\x71\x8a\xa3\xbc\xd5\xee\x07" 7484 + "\x20\x39\x52\x6b\x84\x9d\xb6\xcf" 7485 + "\xe8\x01\x1a\x33\x4c\x65\x7e\x97" 7486 + "\xb0\xc9\xe2\xfb\x14\x2d\x46\x5f" 7487 + "\x78\x91\xaa\xc3\xdc\xf5\x0e\x27" 7488 + "\x40\x59\x72\x8b\xa4\xbd\xd6\xef" 7489 + "\x08\x21\x3a\x53\x6c\x85\x9e\xb7" 7490 + "\xd0\xe9\x02\x1b\x34\x4d\x66\x7f" 7491 + "\x98\xb1\xca\xe3\xfc\x15\x2e\x47" 7492 + "\x60\x79\x92\xab\xc4\xdd\xf6\x0f" 7493 + "\x28\x41\x5a\x73\x8c\xa5\xbe\xd7" 7494 + "\xf0\x09\x22\x3b\x54\x6d\x86\x9f" 7495 + "\xb8\xd1\xea\x03\x1c\x35\x4e\x67" 7496 + "\x80\x99\xb2\xcb\xe4\xfd\x16\x2f" 7497 + "\x48\x61\x7a\x93\xac\xc5\xde\xf7" 7498 + "\x10\x29\x42\x5b\x74\x8d\xa6\xbf" 7499 + "\xd8\xf1\x0a\x23\x3c\x55\x6e\x87" 7500 + "\xa0\xb9\xd2\xeb\x04\x1d\x36\x4f" 7501 + "\x68\x81\x9a\xb3\xcc\xe5\xfe\x17" 7502 + "\x30\x49\x62\x7b\x94\xad\xc6\xdf" 7503 + "\xf8\x11\x2a\x43\x5c\x75\x8e\xa7" 7504 + "\xc0\xd9\xf2\x0b\x24\x3d\x56\x6f" 7505 + "\x88\xa1\xba\xd3\xec\x05\x1e\x37" 7506 + "\x50\x69\x82\x9b\xb4\xcd\xe6\xff" 7507 + "\x18\x31\x4a\x63\x7c\x95\xae\xc7" 7508 + "\xe0\xf9\x12\x2b\x44\x5d\x76\x8f" 7509 + "\xa8\xc1\xda\xf3\x0c\x25\x3e\x57" 7510 + "\x70\x89\xa2\xbb\xd4\xed\x06\x1f" 7511 + "\x38\x51\x6a\x83\x9c\xb5\xce\xe7" 7512 + "\x00\x1b\x36\x51\x6c\x87\xa2\xbd" 7513 + "\xd8\xf3\x0e\x29\x44\x5f\x7a\x95" 7514 + "\xb0\xcb\xe6\x01\x1c\x37\x52\x6d" 7515 + "\x88\xa3\xbe\xd9\xf4\x0f\x2a\x45" 7516 + "\x60\x7b\x96\xb1\xcc\xe7\x02\x1d" 7517 + "\x38\x53\x6e\x89\xa4\xbf\xda\xf5" 7518 + "\x10\x2b\x46\x61\x7c\x97\xb2\xcd" 7519 + "\xe8\x03\x1e\x39\x54\x6f\x8a\xa5" 7520 + "\xc0\xdb\xf6\x11\x2c\x47\x62\x7d" 7521 + "\x98\xb3\xce\xe9\x04\x1f\x3a\x55" 7522 + "\x70\x8b\xa6\xc1\xdc\xf7\x12\x2d" 7523 + "\x48\x63\x7e\x99\xb4\xcf\xea\x05" 7524 + "\x20\x3b\x56\x71\x8c\xa7\xc2\xdd" 7525 + "\xf8\x13\x2e\x49\x64\x7f\x9a\xb5" 7526 + "\xd0\xeb\x06\x21\x3c\x57\x72\x8d" 7527 + "\xa8\xc3\xde\xf9\x14\x2f\x4a\x65" 7528 + "\x80\x9b\xb6\xd1\xec\x07\x22\x3d" 7529 + "\x58\x73\x8e\xa9\xc4\xdf\xfa\x15" 7530 + "\x30\x4b\x66\x81\x9c\xb7\xd2\xed" 7531 + "\x08\x23\x3e\x59\x74\x8f\xaa\xc5" 7532 + "\xe0\xfb\x16\x31\x4c\x67\x82\x9d" 7533 + "\xb8\xd3\xee\x09\x24\x3f\x5a\x75" 7534 + "\x90\xab\xc6\xe1\xfc\x17\x32\x4d" 7535 + "\x68\x83\x9e\xb9\xd4\xef\x0a\x25" 7536 + "\x40\x5b\x76\x91\xac\xc7\xe2\xfd" 7537 + "\x18\x33\x4e\x69\x84\x9f\xba\xd5" 7538 + "\xf0\x0b\x26\x41\x5c\x77\x92\xad" 7539 + "\xc8\xe3\xfe\x19\x34\x4f\x6a\x85" 7540 + "\xa0\xbb\xd6\xf1\x0c\x27\x42\x5d" 7541 + "\x78\x93\xae\xc9\xe4\xff\x1a\x35" 7542 + "\x50\x6b\x86\xa1\xbc\xd7\xf2\x0d" 7543 + "\x28\x43\x5e\x79\x94\xaf\xca\xe5" 7544 + "\x00\x1d\x3a\x57\x74\x91\xae\xcb" 7545 + "\xe8\x05\x22\x3f\x5c\x79\x96\xb3" 7546 + "\xd0\xed\x0a\x27\x44\x61\x7e\x9b" 7547 + "\xb8\xd5\xf2\x0f\x2c\x49\x66\x83" 7548 + "\xa0\xbd\xda\xf7\x14\x31\x4e\x6b" 7549 + "\x88\xa5\xc2\xdf\xfc\x19\x36\x53" 7550 + "\x70\x8d\xaa\xc7\xe4\x01\x1e\x3b" 7551 + "\x58\x75\x92\xaf\xcc\xe9\x06\x23" 7552 + "\x40\x5d\x7a\x97\xb4\xd1\xee\x0b" 7553 + "\x28\x45\x62\x7f\x9c\xb9\xd6\xf3" 7554 + "\x10\x2d\x4a\x67\x84\xa1\xbe\xdb" 7555 + "\xf8\x15\x32\x4f\x6c\x89\xa6\xc3" 7556 + "\xe0\xfd\x1a\x37\x54\x71\x8e\xab" 7557 + "\xc8\xe5\x02\x1f\x3c\x59\x76\x93" 7558 + "\xb0\xcd\xea\x07\x24\x41\x5e\x7b" 7559 + "\x98\xb5\xd2\xef\x0c\x29\x46\x63" 7560 + "\x80\x9d\xba\xd7\xf4\x11\x2e\x4b" 7561 + "\x68\x85\xa2\xbf\xdc\xf9\x16\x33" 7562 + "\x50\x6d\x8a\xa7\xc4\xe1\xfe\x1b" 7563 + "\x38\x55\x72\x8f\xac\xc9\xe6\x03" 7564 + "\x20\x3d\x5a\x77\x94\xb1\xce\xeb" 7565 + "\x08\x25\x42\x5f\x7c\x99\xb6\xd3" 7566 + "\xf0\x0d\x2a\x47\x64\x81\x9e\xbb" 7567 + "\xd8\xf5\x12\x2f\x4c\x69\x86\xa3" 7568 + "\xc0\xdd\xfa\x17\x34\x51\x6e\x8b" 7569 + "\xa8\xc5\xe2\xff\x1c\x39\x56\x73" 7570 + "\x90\xad\xca\xe7\x04\x21\x3e\x5b" 7571 + "\x78\x95\xb2\xcf\xec\x09\x26\x43" 7572 + "\x60\x7d\x9a\xb7\xd4\xf1\x0e\x2b" 7573 + "\x48\x65\x82\x9f\xbc\xd9\xf6\x13" 7574 + "\x30\x4d\x6a\x87\xa4\xc1\xde\xfb" 7575 + "\x18\x35\x52\x6f\x8c\xa9\xc6\xe3" 7576 + "\x00\x1f\x3e\x5d\x7c\x9b\xba\xd9" 7577 + "\xf8\x17\x36\x55\x74\x93\xb2\xd1" 7578 + "\xf0\x0f\x2e\x4d\x6c\x8b\xaa\xc9" 7579 + "\xe8\x07\x26\x45\x64\x83\xa2\xc1" 7580 + "\xe0\xff\x1e\x3d\x5c\x7b\x9a\xb9" 7581 + "\xd8\xf7\x16\x35\x54\x73\x92\xb1" 7582 + "\xd0\xef\x0e\x2d\x4c\x6b\x8a\xa9" 7583 + "\xc8\xe7\x06\x25\x44\x63\x82\xa1" 7584 + "\xc0\xdf\xfe\x1d\x3c\x5b\x7a\x99" 7585 + "\xb8\xd7\xf6\x15\x34\x53\x72\x91" 7586 + "\xb0\xcf\xee\x0d\x2c\x4b\x6a\x89" 7587 + "\xa8\xc7\xe6\x05\x24\x43\x62\x81" 7588 + "\xa0\xbf\xde\xfd\x1c\x3b\x5a\x79" 7589 + "\x98\xb7\xd6\xf5\x14\x33\x52\x71" 7590 + "\x90\xaf\xce\xed\x0c\x2b\x4a\x69" 7591 + "\x88\xa7\xc6\xe5\x04\x23\x42\x61" 7592 + "\x80\x9f\xbe\xdd\xfc\x1b\x3a\x59" 7593 + "\x78\x97\xb6\xd5\xf4\x13\x32\x51" 7594 + "\x70\x8f\xae\xcd\xec\x0b\x2a\x49" 7595 + "\x68\x87\xa6\xc5\xe4\x03\x22\x41" 7596 + "\x60\x7f\x9e\xbd\xdc\xfb\x1a\x39" 7597 + "\x58\x77\x96\xb5\xd4\xf3\x12\x31" 7598 + "\x50\x6f\x8e\xad\xcc\xeb\x0a\x29" 7599 + "\x48\x67\x86\xa5\xc4\xe3\x02\x21" 7600 + "\x40\x5f\x7e\x9d\xbc\xdb\xfa\x19" 7601 + "\x38\x57\x76\x95\xb4\xd3\xf2\x11" 7602 + "\x30\x4f\x6e\x8d\xac\xcb\xea\x09" 7603 + "\x28\x47\x66\x85\xa4\xc3\xe2\x01" 7604 + "\x20\x3f\x5e\x7d\x9c\xbb\xda\xf9" 7605 + "\x18\x37\x56\x75\x94\xb3\xd2\xf1" 7606 + "\x10\x2f\x4e\x6d\x8c\xab\xca\xe9" 7607 + "\x08\x27\x46\x65\x84\xa3\xc2\xe1" 7608 + "\x00\x21\x42\x63", 7609 + .ilen = 4100, 7610 + .result = 7611 + "\xb5\x81\xf5\x64\x18\x73\xe3\xf0" 7612 + "\x4c\x13\xf2\x77\x18\x60\x65\x5e" 7613 + "\x29\x01\xce\x98\x55\x53\xf9\x0c" 7614 + "\x2a\x08\xd5\x09\xb3\x57\x55\x56" 7615 + "\xc5\xe9\x56\x90\xcb\x6a\xa3\xc0" 7616 + "\xff\xc4\x79\xb4\xd2\x97\x5d\xc4" 7617 + "\x43\xd1\xfe\x94\x7b\x88\x06\x5a" 7618 + "\xb2\x9e\x2c\xfc\x44\x03\xb7\x90" 7619 + "\xa0\xc1\xba\x6a\x33\xb8\xc7\xb2" 7620 + "\x9d\xe1\x12\x4f\xc0\x64\xd4\x01" 7621 + "\xfe\x8c\x7a\x66\xf7\xe6\x5a\x91" 7622 + "\xbb\xde\x56\x86\xab\x65\x21\x30" 7623 + "\x00\x84\x65\x24\xa5\x7d\x85\xb4" 7624 + "\xe3\x17\xed\x3a\xb7\x6f\xb4\x0b" 7625 + "\x0b\xaf\x15\xae\x5a\x8f\xf2\x0c" 7626 + "\x2f\x27\xf4\x09\xd8\xd2\x96\xb7" 7627 + "\x71\xf2\xc5\x99\x4d\x7e\x7f\x75" 7628 + "\x77\x89\x30\x8b\x59\xdb\xa2\xb2" 7629 + "\xa0\xf3\x19\x39\x2b\xc5\x7e\x3f" 7630 + "\x4f\xd9\xd3\x56\x28\x97\x44\xdc" 7631 + "\xc0\x8b\x77\x24\xd9\x52\xe7\xc5" 7632 + "\xaf\xf6\x7d\x59\xb2\x44\x05\x1d" 7633 + "\xb1\xb0\x11\xa5\x0f\xec\x33\xe1" 7634 + "\x6d\x1b\x4e\x1f\xff\x57\x91\xb4" 7635 + "\x5b\x9a\x96\xc5\x53\xbc\xae\x20" 7636 + "\x3c\xbb\x14\xe2\xe8\x22\x33\xc1" 7637 + "\x5e\x76\x9e\x46\x99\xf6\x2a\x15" 7638 + "\xc6\x97\x02\xa0\x66\x43\xd1\xa6" 7639 + "\x31\xa6\x9f\xfb\xf4\xd3\x69\xe5" 7640 + "\xcd\x76\x95\xb8\x7a\x82\x7f\x21" 7641 + "\x45\xff\x3f\xce\x55\xf6\x95\x10" 7642 + "\x08\x77\x10\x43\xc6\xf3\x09\xe5" 7643 + "\x68\xe7\x3c\xad\x00\x52\x45\x0d" 7644 + "\xfe\x2d\xc6\xc2\x94\x8c\x12\x1d" 7645 + "\xe6\x25\xae\x98\x12\x8e\x19\x9c" 7646 + "\x81\x68\xb1\x11\xf6\x69\xda\xe3" 7647 + "\x62\x08\x18\x7a\x25\x49\x28\xac" 7648 + "\xba\x71\x12\x0b\xe4\xa2\xe5\xc7" 7649 + "\x5d\x8e\xec\x49\x40\x21\xbf\x5a" 7650 + "\x98\xf3\x02\x68\x55\x03\x7f\x8a" 7651 + "\xe5\x94\x0c\x32\x5c\x07\x82\x63" 7652 + "\xaf\x6f\x91\x40\x84\x8e\x52\x25" 7653 + "\xd0\xb0\x29\x53\x05\xe2\x50\x7a" 7654 + "\x34\xeb\xc9\x46\x20\xa8\x3d\xde" 7655 + "\x7f\x16\x5f\x36\xc5\x2e\xdc\xd1" 7656 + "\x15\x47\xc7\x50\x40\x6d\x91\xc5" 7657 + "\xe7\x93\x95\x1a\xd3\x57\xbc\x52" 7658 + "\x33\xee\x14\x19\x22\x52\x89\xa7" 7659 + "\x4a\x25\x56\x77\x4b\xca\xcf\x0a" 7660 + "\xe1\xf5\x35\x85\x30\x7e\x59\x4a" 7661 + "\xbd\x14\x5b\xdf\xe3\x46\xcb\xac" 7662 + "\x1f\x6c\x96\x0e\xf4\x81\xd1\x99" 7663 + "\xca\x88\x63\x3d\x02\x58\x6b\xa9" 7664 + "\xe5\x9f\xb3\x00\xb2\x54\xc6\x74" 7665 + "\x1c\xbf\x46\xab\x97\xcc\xf8\x54" 7666 + "\x04\x07\x08\x52\xe6\xc0\xda\x93" 7667 + "\x74\x7d\x93\x99\x5d\x78\x68\xa6" 7668 + "\x2e\x6b\xd3\x6a\x69\xcc\x12\x6b" 7669 + "\xd4\xc7\xa5\xc6\xe7\xf6\x03\x04" 7670 + "\x5d\xcd\x61\x5e\x17\x40\xdc\xd1" 7671 + "\x5c\xf5\x08\xdf\x5c\x90\x85\xa4" 7672 + "\xaf\xf6\x78\xbb\x0d\xf1\xf4\xa4" 7673 + "\x54\x26\x72\x9e\x61\xfa\x86\xcf" 7674 + "\xe8\x9e\xa1\xe0\xc7\x48\x23\xae" 7675 + "\x5a\x90\xae\x75\x0a\x74\x18\x89" 7676 + "\x05\xb1\x92\xb2\x7f\xd0\x1b\xa6" 7677 + "\x62\x07\x25\x01\xc7\xc2\x4f\xf9" 7678 + "\xe8\xfe\x63\x95\x80\x07\xb4\x26" 7679 + "\xcc\xd1\x26\xb6\xc4\x3f\x9e\xcb" 7680 + "\x8e\x3b\x2e\x44\x16\xd3\x10\x9a" 7681 + "\x95\x08\xeb\xc8\xcb\xeb\xbf\x6f" 7682 + "\x0b\xcd\x1f\xc8\xca\x86\xaa\xec" 7683 + "\x33\xe6\x69\xf4\x45\x25\x86\x3a" 7684 + "\x22\x94\x4f\x00\x23\x6a\x44\xc2" 7685 + "\x49\x97\x33\xab\x36\x14\x0a\x70" 7686 + "\x24\xc3\xbe\x04\x3b\x79\xa0\xf9" 7687 + "\xb8\xe7\x76\x29\x22\x83\xd7\xf2" 7688 + "\x94\xf4\x41\x49\xba\x5f\x7b\x07" 7689 + "\xb5\xfb\xdb\x03\x1a\x9f\xb6\x4c" 7690 + "\xc2\x2e\x37\x40\x49\xc3\x38\x16" 7691 + "\xe2\x4f\x77\x82\xb0\x68\x4c\x71" 7692 + "\x1d\x57\x61\x9c\xd9\x4e\x54\x99" 7693 + "\x47\x13\x28\x73\x3c\xbb\x00\x90" 7694 + "\xf3\x4d\xc9\x0e\xfd\xe7\xb1\x71" 7695 + "\xd3\x15\x79\xbf\xcc\x26\x2f\xbd" 7696 + "\xad\x6c\x50\x69\x6c\x3e\x6d\x80" 7697 + "\x9a\xea\x78\xaf\x19\xb2\x0d\x4d" 7698 + "\xad\x04\x07\xae\x22\x90\x4a\x93" 7699 + "\x32\x0e\x36\x9b\x1b\x46\xba\x3b" 7700 + "\xb4\xac\xc6\xd1\xa2\x31\x53\x3b" 7701 + "\x2a\x3d\x45\xfe\x03\x61\x10\x85" 7702 + "\x17\x69\xa6\x78\xcc\x6c\x87\x49" 7703 + "\x53\xf9\x80\x10\xde\x80\xa2\x41" 7704 + "\x6a\xc3\x32\x02\xad\x6d\x3c\x56" 7705 + "\x00\x71\x51\x06\xa7\xbd\xfb\xef" 7706 + "\x3c\xb5\x9f\xfc\x48\x7d\x53\x7c" 7707 + "\x66\xb0\x49\x23\xc4\x47\x10\x0e" 7708 + "\xe5\x6c\x74\x13\xe6\xc5\x3f\xaa" 7709 + "\xde\xff\x07\x44\xdd\x56\x1b\xad" 7710 + "\x09\x77\xfb\x5b\x12\xb8\x0d\x38" 7711 + "\x17\x37\x35\x7b\x9b\xbc\xfe\xd4" 7712 + "\x7e\x8b\xda\x7e\x5b\x04\xa7\x22" 7713 + "\xa7\x31\xa1\x20\x86\xc7\x1b\x99" 7714 + "\xdb\xd1\x89\xf4\x94\xa3\x53\x69" 7715 + "\x8d\xe7\xe8\x74\x11\x8d\x74\xd6" 7716 + "\x07\x37\x91\x9f\xfd\x67\x50\x3a" 7717 + "\xc9\xe1\xf4\x36\xd5\xa0\x47\xd1" 7718 + "\xf9\xe5\x39\xa3\x31\xac\x07\x36" 7719 + "\x23\xf8\x66\x18\x14\x28\x34\x0f" 7720 + "\xb8\xd0\xe7\x29\xb3\x04\x4b\x55" 7721 + "\x01\x41\xb2\x75\x8d\xcb\x96\x85" 7722 + "\x3a\xfb\xab\x2b\x9e\xfa\x58\x20" 7723 + "\x44\x1f\xc0\x14\x22\x75\x61\xe8" 7724 + "\xaa\x19\xcf\xf1\x82\x56\xf4\xd7" 7725 + "\x78\x7b\x3d\x5f\xb3\x9e\x0b\x8a" 7726 + "\x57\x50\xdb\x17\x41\x65\x4d\xa3" 7727 + "\x02\xc9\x9c\x9c\x53\xfb\x39\x39" 7728 + "\x9b\x1d\x72\x24\xda\xb7\x39\xbe" 7729 + "\x13\x3b\xfa\x29\xda\x9e\x54\x64" 7730 + "\x6e\xba\xd8\xa1\xcb\xb3\x36\xfa" 7731 + "\xcb\x47\x85\xe9\x61\x38\xbc\xbe" 7732 + "\xc5\x00\x38\x2a\x54\xf7\xc4\xb9" 7733 + "\xb3\xd3\x7b\xa0\xa0\xf8\x72\x7f" 7734 + "\x8c\x8e\x82\x0e\xc6\x1c\x75\x9d" 7735 + "\xca\x8e\x61\x87\xde\xad\x80\xd2" 7736 + "\xf5\xf9\x80\xef\x15\x75\xaf\xf5" 7737 + "\x80\xfb\xff\x6d\x1e\x25\xb7\x40" 7738 + "\x61\x6a\x39\x5a\x6a\xb5\x31\xab" 7739 + "\x97\x8a\x19\x89\x44\x40\xc0\xa6" 7740 + "\xb4\x4e\x30\x32\x7b\x13\xe7\x67" 7741 + "\xa9\x8b\x57\x04\xc2\x01\xa6\xf4" 7742 + "\x28\x99\xad\x2c\x76\xa3\x78\xc2" 7743 + "\x4a\xe6\xca\x5c\x50\x6a\xc1\xb0" 7744 + "\x62\x4b\x10\x8e\x7c\x17\x43\xb3" 7745 + "\x17\x66\x1c\x3e\x8d\x69\xf0\x5a" 7746 + "\x71\xf5\x97\xdc\xd1\x45\xdd\x28" 7747 + "\xf3\x5d\xdf\x53\x7b\x11\xe5\xbc" 7748 + "\x4c\xdb\x1b\x51\x6b\xe9\xfb\x3d" 7749 + "\xc1\xc3\x2c\xb9\x71\xf5\xb6\xb2" 7750 + "\x13\x36\x79\x80\x53\xe8\xd3\xa6" 7751 + "\x0a\xaf\xfd\x56\x97\xf7\x40\x8e" 7752 + "\x45\xce\xf8\xb0\x9e\x5c\x33\x82" 7753 + "\xb0\x44\x56\xfc\x05\x09\xe9\x2a" 7754 + "\xac\x26\x80\x14\x1d\xc8\x3a\x35" 7755 + "\x4c\x82\x97\xfd\x76\xb7\xa9\x0a" 7756 + "\x35\x58\x79\x8e\x0f\x66\xea\xaf" 7757 + "\x51\x6c\x09\xa9\x6e\x9b\xcb\x9a" 7758 + "\x31\x47\xa0\x2f\x7c\x71\xb4\x4a" 7759 + "\x11\xaa\x8c\x66\xc5\x64\xe6\x3a" 7760 + "\x54\xda\x24\x6a\xc4\x41\x65\x46" 7761 + "\x82\xa0\x0a\x0f\x5f\xfb\x25\xd0" 7762 + "\x2c\x91\xa7\xee\xc4\x81\x07\x86" 7763 + "\x75\x5e\x33\x69\x97\xe4\x2c\xa8" 7764 + "\x9d\x9f\x0b\x6a\xbe\xad\x98\xda" 7765 + "\x6d\x94\x41\xda\x2c\x1e\x89\xc4" 7766 + "\xc2\xaf\x1e\x00\x05\x0b\x83\x60" 7767 + "\xbd\x43\xea\x15\x23\x7f\xb9\xac" 7768 + "\xee\x4f\x2c\xaf\x2a\xf3\xdf\xd0" 7769 + "\xf3\x19\x31\xbb\x4a\x74\x84\x17" 7770 + "\x52\x32\x2c\x7d\x61\xe4\xcb\xeb" 7771 + "\x80\x38\x15\x52\xcb\x6f\xea\xe5" 7772 + "\x73\x9c\xd9\x24\x69\xc6\x95\x32" 7773 + "\x21\xc8\x11\xe4\xdc\x36\xd7\x93" 7774 + "\x38\x66\xfb\xb2\x7f\x3a\xb9\xaf" 7775 + "\x31\xdd\x93\x75\x78\x8a\x2c\x94" 7776 + "\x87\x1a\x58\xec\x9e\x7d\x4d\xba" 7777 + "\xe1\xe5\x4d\xfc\xbc\xa4\x2a\x14" 7778 + "\xef\xcc\xa7\xec\xab\x43\x09\x18" 7779 + "\xd3\xab\x68\xd1\x07\x99\x44\x47" 7780 + "\xd6\x83\x85\x3b\x30\xea\xa9\x6b" 7781 + "\x63\xea\xc4\x07\xfb\x43\x2f\xa4" 7782 + "\xaa\xb0\xab\x03\x89\xce\x3f\x8c" 7783 + "\x02\x7c\x86\x54\xbc\x88\xaf\x75" 7784 + "\xd2\xdc\x63\x17\xd3\x26\xf6\x96" 7785 + "\xa9\x3c\xf1\x61\x8c\x11\x18\xcc" 7786 + "\xd6\xea\x5b\xe2\xcd\xf0\xf1\xb2" 7787 + "\xe5\x35\x90\x1f\x85\x4c\x76\x5b" 7788 + "\x66\xce\x44\xa4\x32\x9f\xe6\x7b" 7789 + "\x71\x6e\x9f\x58\x15\x67\x72\x87" 7790 + "\x64\x8e\x3a\x44\x45\xd4\x76\xfa" 7791 + "\xc2\xf6\xef\x85\x05\x18\x7a\x9b" 7792 + "\xba\x41\x54\xac\xf0\xfc\x59\x12" 7793 + "\x3f\xdf\xa0\xe5\x8a\x65\xfd\x3a" 7794 + "\x62\x8d\x83\x2c\x03\xbe\x05\x76" 7795 + "\x2e\x53\x49\x97\x94\x33\xae\x40" 7796 + "\x81\x15\xdb\x6e\xad\xaa\xf5\x4b" 7797 + "\xe3\x98\x70\xdf\xe0\x7c\xcd\xdb" 7798 + "\x02\xd4\x7d\x2f\xc1\xe6\xb4\xf3" 7799 + "\xd7\x0d\x7a\xd9\x23\x9e\x87\x2d" 7800 + "\xce\x87\xad\xcc\x72\x05\x00\x29" 7801 + "\xdc\x73\x7f\x64\xc1\x15\x0e\xc2" 7802 + "\xdf\xa7\x5f\xeb\x41\xa1\xcd\xef" 7803 + "\x5c\x50\x79\x2a\x56\x56\x71\x8c" 7804 + "\xac\xc0\x79\x50\x69\xca\x59\x32" 7805 + "\x65\xf2\x54\xe4\x52\x38\x76\xd1" 7806 + "\x5e\xde\x26\x9e\xfb\x75\x2e\x11" 7807 + "\xb5\x10\xf4\x17\x73\xf5\x89\xc7" 7808 + "\x4f\x43\x5c\x8e\x7c\xb9\x05\x52" 7809 + "\x24\x40\x99\xfe\x9b\x85\x0b\x6c" 7810 + "\x22\x3e\x8b\xae\x86\xa1\xd2\x79" 7811 + "\x05\x68\x6b\xab\xe3\x41\x49\xed" 7812 + "\x15\xa1\x8d\x40\x2d\x61\xdf\x1a" 7813 + "\x59\xc9\x26\x8b\xef\x30\x4c\x88" 7814 + "\x4b\x10\xf8\x8d\xa6\x92\x9f\x4b" 7815 + "\xf3\xc4\x53\x0b\x89\x5d\x28\x92" 7816 + "\xcf\x78\xb2\xc0\x5d\xed\x7e\xfc" 7817 + "\xc0\x12\x23\x5f\x5a\x78\x86\x43" 7818 + "\x6e\x27\xf7\x5a\xa7\x6a\xed\x19" 7819 + "\x04\xf0\xb3\x12\xd1\xbd\x0e\x89" 7820 + "\x6e\xbc\x96\xa8\xd8\x49\x39\x9f" 7821 + "\x7e\x67\xf0\x2e\x3e\x01\xa9\xba" 7822 + "\xec\x8b\x62\x8e\xcb\x4a\x70\x43" 7823 + "\xc7\xc2\xc4\xca\x82\x03\x73\xe9" 7824 + "\x11\xdf\xcf\x54\xea\xc9\xb0\x95" 7825 + "\x51\xc0\x13\x3d\x92\x05\xfa\xf4" 7826 + "\xa9\x34\xc8\xce\x6c\x3d\x54\xcc" 7827 + "\xc4\xaf\xf1\xdc\x11\x44\x26\xa2" 7828 + "\xaf\xf1\x85\x75\x7d\x03\x61\x68" 7829 + "\x4e\x78\xc6\x92\x7d\x86\x7d\x77" 7830 + "\xdc\x71\x72\xdb\xc6\xae\xa1\xcb" 7831 + "\x70\x9a\x0b\x19\xbe\x4a\x6c\x2a" 7832 + "\xe2\xba\x6c\x64\x9a\x13\x28\xdf" 7833 + "\x85\x75\xe6\x43\xf6\x87\x08\x68" 7834 + "\x6e\xba\x6e\x79\x9f\x04\xbc\x23" 7835 + "\x50\xf6\x33\x5c\x1f\x24\x25\xbe" 7836 + "\x33\x47\x80\x45\x56\xa3\xa7\xd7" 7837 + "\x7a\xb1\x34\x0b\x90\x3c\x9c\xad" 7838 + "\x44\x5f\x9e\x0e\x9d\xd4\xbd\x93" 7839 + "\x5e\xfa\x3c\xe0\xb0\xd9\xed\xf3" 7840 + "\xd6\x2e\xff\x24\xd8\x71\x6c\xed" 7841 + "\xaf\x55\xeb\x22\xac\x93\x68\x32" 7842 + "\x05\x5b\x47\xdd\xc6\x4a\xcb\xc7" 7843 + "\x10\xe1\x3c\x92\x1a\xf3\x23\x78" 7844 + "\x2b\xa1\xd2\x80\xf4\x12\xb1\x20" 7845 + "\x8f\xff\x26\x35\xdd\xfb\xc7\x4e" 7846 + "\x78\xf1\x2d\x50\x12\x77\xa8\x60" 7847 + "\x7c\x0f\xf5\x16\x2f\x63\x70\x2a" 7848 + "\xc0\x96\x80\x4e\x0a\xb4\x93\x35" 7849 + "\x5d\x1d\x3f\x56\xf7\x2f\xbb\x90" 7850 + "\x11\x16\x8f\xa2\xec\x47\xbe\xac" 7851 + "\x56\x01\x26\x56\xb1\x8c\xb2\x10" 7852 + "\xf9\x1a\xca\xf5\xd1\xb7\x39\x20" 7853 + "\x63\xf1\x69\x20\x4f\x13\x12\x1f" 7854 + "\x5b\x65\xfc\x98\xf7\xc4\x7a\xbe" 7855 + "\xf7\x26\x4d\x2b\x84\x7b\x42\xad" 7856 + "\xd8\x7a\x0a\xb4\xd8\x74\xbf\xc1" 7857 + "\xf0\x6e\xb4\x29\xa3\xbb\xca\x46" 7858 + "\x67\x70\x6a\x2d\xce\x0e\xa2\x8a" 7859 + "\xa9\x87\xbf\x05\xc4\xc1\x04\xa3" 7860 + "\xab\xd4\x45\x43\x8c\xb6\x02\xb0" 7861 + "\x41\xc8\xfc\x44\x3d\x59\xaa\x2e" 7862 + "\x44\x21\x2a\x8d\x88\x9d\x57\xf4" 7863 + "\xa0\x02\x77\xb8\xa6\xa0\xe6\x75" 7864 + "\x5c\x82\x65\x3e\x03\x5c\x29\x8f" 7865 + "\x38\x55\xab\x33\x26\xef\x9f\x43" 7866 + "\x52\xfd\x68\xaf\x36\xb4\xbb\x9a" 7867 + "\x58\x09\x09\x1b\xc3\x65\x46\x46" 7868 + "\x1d\xa7\x94\x18\x23\x50\x2c\xca" 7869 + "\x2c\x55\x19\x97\x01\x9d\x93\x3b" 7870 + "\x63\x86\xf2\x03\x67\x45\xd2\x72" 7871 + "\x28\x52\x6c\xf4\xe3\x1c\xb5\x11" 7872 + "\x13\xf1\xeb\x21\xc7\xd9\x56\x82" 7873 + "\x2b\x82\x39\xbd\x69\x54\xed\x62" 7874 + "\xc3\xe2\xde\x73\xd4\x6a\x12\xae" 7875 + "\x13\x21\x7f\x4b\x5b\xfc\xbf\xe8" 7876 + "\x2b\xbe\x56\xba\x68\x8b\x9a\xb1" 7877 + "\x6e\xfa\xbf\x7e\x5a\x4b\xf1\xac" 7878 + "\x98\x65\x85\xd1\x93\x53\xd3\x7b" 7879 + "\x09\xdd\x4b\x10\x6d\x84\xb0\x13" 7880 + "\x65\xbd\xcf\x52\x09\xc4\x85\xe2" 7881 + "\x84\x74\x15\x65\xb7\xf7\x51\xaf" 7882 + "\x55\xad\xa4\xd1\x22\x54\x70\x94" 7883 + "\xa0\x1c\x90\x41\xfd\x99\xd7\x5a" 7884 + "\x31\xef\xaa\x25\xd0\x7f\x4f\xea" 7885 + "\x1d\x55\x42\xe5\x49\xb0\xd0\x46" 7886 + "\x62\x36\x43\xb2\x82\x15\x75\x50" 7887 + "\xa4\x72\xeb\x54\x27\x1f\x8a\xe4" 7888 + "\x7d\xe9\x66\xc5\xf1\x53\xa4\xd1" 7889 + "\x0c\xeb\xb8\xf8\xbc\xd4\xe2\xe7" 7890 + "\xe1\xf8\x4b\xcb\xa9\xa1\xaf\x15" 7891 + "\x83\xcb\x72\xd0\x33\x79\x00\x2d" 7892 + "\x9f\xd7\xf1\x2e\x1e\x10\xe4\x45" 7893 + "\xc0\x75\x3a\x39\xea\x68\xf7\x5d" 7894 + "\x1b\x73\x8f\xe9\x8e\x0f\x72\x47" 7895 + "\xae\x35\x0a\x31\x7a\x14\x4d\x4a" 7896 + "\x6f\x47\xf7\x7e\x91\x6e\x74\x8b" 7897 + "\x26\x47\xf9\xc3\xf9\xde\x70\xf5" 7898 + "\x61\xab\xa9\x27\x9f\x82\xe4\x9c" 7899 + "\x89\x91\x3f\x2e\x6a\xfd\xb5\x49" 7900 + "\xe9\xfd\x59\x14\x36\x49\x40\x6d" 7901 + "\x32\xd8\x85\x42\xf3\xa5\xdf\x0c" 7902 + "\xa8\x27\xd7\x54\xe2\x63\x2f\xf2" 7903 + "\x7e\x8b\x8b\xe7\xf1\x9a\x95\x35" 7904 + "\x43\xdc\x3a\xe4\xb6\xf4\xd0\xdf" 7905 + "\x9c\xcb\x94\xf3\x21\xa0\x77\x50" 7906 + "\xe2\xc6\xc4\xc6\x5f\x09\x64\x5b" 7907 + "\x92\x90\xd8\xe1\xd1\xed\x4b\x42" 7908 + "\xd7\x37\xaf\x65\x3d\x11\x39\xb6" 7909 + "\x24\x8a\x60\xae\xd6\x1e\xbf\x0e" 7910 + "\x0d\xd7\xdc\x96\x0e\x65\x75\x4e" 7911 + "\x29\x06\x9d\xa4\x51\x3a\x10\x63" 7912 + "\x8f\x17\x07\xd5\x8e\x3c\xf4\x28" 7913 + "\x00\x5a\x5b\x05\x19\xd8\xc0\x6c" 7914 + "\xe5\x15\xe4\x9c\x9d\x71\x9d\x5e" 7915 + "\x94\x29\x1a\xa7\x80\xfa\x0e\x33" 7916 + "\x03\xdd\xb7\x3e\x9a\xa9\x26\x18" 7917 + "\x37\xa9\x64\x08\x4d\x94\x5a\x88" 7918 + "\xca\x35\xce\x81\x02\xe3\x1f\x1b" 7919 + "\x89\x1a\x77\x85\xe3\x41\x6d\x32" 7920 + "\x42\x19\x23\x7d\xc8\x73\xee\x25" 7921 + "\x85\x0d\xf8\x31\x25\x79\x1b\x6f" 7922 + "\x79\x25\xd2\xd8\xd4\x23\xfd\xf7" 7923 + "\x82\x36\x6a\x0c\x46\x22\x15\xe9" 7924 + "\xff\x72\x41\x91\x91\x7d\x3a\xb7" 7925 + "\xdd\x65\x99\x70\xf6\x8d\x84\xf8" 7926 + "\x67\x15\x20\x11\xd6\xb2\x55\x7b" 7927 + "\xdb\x87\xee\xef\x55\x89\x2a\x59" 7928 + "\x2b\x07\x8f\x43\x8a\x59\x3c\x01" 7929 + "\x8b\x65\x54\xa1\x66\xd5\x38\xbd" 7930 + "\xc6\x30\xa9\xcc\x49\xb6\xa8\x1b" 7931 + "\xb8\xc0\x0e\xe3\x45\x28\xe2\xff" 7932 + "\x41\x9f\x7e\x7c\xd1\xae\x9e\x25" 7933 + "\x3f\x4c\x7c\x7c\xf4\xa8\x26\x4d" 7934 + "\x5c\xfd\x4b\x27\x18\xf9\x61\x76" 7935 + "\x48\xba\x0c\x6b\xa9\x4d\xfc\xf5" 7936 + "\x3b\x35\x7e\x2f\x4a\xa9\xc2\x9a" 7937 + "\xae\xab\x86\x09\x89\xc9\xc2\x40" 7938 + "\x39\x2c\x81\xb3\xb8\x17\x67\xc2" 7939 + "\x0d\x32\x4a\x3a\x67\x81\xd7\x1a" 7940 + "\x34\x52\xc5\xdb\x0a\xf5\x63\x39" 7941 + "\xea\x1f\xe1\x7c\xa1\x9e\xc1\x35" 7942 + "\xe3\xb1\x18\x45\x67\xf9\x22\x38" 7943 + "\x95\xd9\x34\x34\x86\xc6\x41\x94" 7944 + "\x15\xf9\x5b\x41\xa6\x87\x8b\xf8" 7945 + "\xd5\xe1\x1b\xe2\x5b\xf3\x86\x10" 7946 + "\xff\xe6\xae\x69\x76\xbc\x0d\xb4" 7947 + "\x09\x90\x0c\xa2\x65\x0c\xad\x74" 7948 + "\xf5\xd7\xff\xda\xc1\xce\x85\xbe" 7949 + "\x00\xa7\xff\x4d\x2f\x65\xd3\x8c" 7950 + "\x86\x2d\x05\xe8\xed\x3e\x6b\x8b" 7951 + "\x0f\x3d\x83\x8c\xf1\x1d\x5b\x96" 7952 + "\x2e\xb1\x9c\xc2\x98\xe1\x70\xb9" 7953 + "\xba\x5c\x8a\x43\xd6\x34\xa7\x2d" 7954 + "\xc9\x92\xae\xf2\xa5\x7b\x05\x49" 7955 + "\xa7\x33\x34\x86\xca\xe4\x96\x23" 7956 + "\x76\x5b\xf2\xc6\xf1\x51\x28\x42" 7957 + "\x7b\xcc\x76\x8f\xfa\xa2\xad\x31" 7958 + "\xd4\xd6\x7a\x6d\x25\x25\x54\xe4" 7959 + "\x3f\x50\x59\xe1\x5c\x05\xb7\x27" 7960 + "\x48\xbf\x07\xec\x1b\x13\xbe\x2b" 7961 + "\xa1\x57\x2b\xd5\xab\xd7\xd0\x4c" 7962 + "\x1e\xcb\x71\x9b\xc5\x90\x85\xd3" 7963 + "\xde\x59\xec\x71\xeb\x89\xbb\xd0" 7964 + "\x09\x50\xe1\x16\x3f\xfd\x1c\x34" 7965 + "\xc3\x1c\xa1\x10\x77\x53\x98\xef" 7966 + "\xf2\xfd\xa5\x01\x59\xc2\x9b\x26" 7967 + "\xc7\x42\xd9\x49\xda\x58\x2b\x6e" 7968 + "\x9f\x53\x19\x76\x7e\xd9\xc9\x0e" 7969 + "\x68\xc8\x7f\x51\x22\x42\xef\x49" 7970 + "\xa4\x55\xb6\x36\xac\x09\xc7\x31" 7971 + "\x88\x15\x4b\x2e\x8f\x3a\x08\xf7" 7972 + "\xd8\xf7\xa8\xc5\xa9\x33\xa6\x45" 7973 + "\xe4\xc4\x94\x76\xf3\x0d\x8f\x7e" 7974 + "\xc8\xf6\xbc\x23\x0a\xb6\x4c\xd3" 7975 + "\x6a\xcd\x36\xc2\x90\x5c\x5c\x3c" 7976 + "\x65\x7b\xc2\xd6\xcc\xe6\x0d\x87" 7977 + "\x73\x2e\x71\x79\x16\x06\x63\x28" 7978 + "\x09\x15\xd8\x89\x38\x38\x3d\xb5" 7979 + "\x42\x1c\x08\x24\xf7\x2a\xd2\x9d" 7980 + "\xc8\xca\xef\xf9\x27\xd8\x07\x86" 7981 + "\xf7\x43\x0b\x55\x15\x3f\x9f\x83" 7982 + "\xef\xdc\x49\x9d\x2a\xc1\x54\x62" 7983 + "\xbd\x9b\x66\x55\x9f\xb7\x12\xf3" 7984 + "\x1b\x4d\x9d\x2a\x5c\xed\x87\x75" 7985 + "\x87\x26\xec\x61\x2c\xb4\x0f\x89" 7986 + "\xb0\xfb\x2e\x68\x5d\x15\xc7\x8d" 7987 + "\x2e\xc0\xd9\xec\xaf\x4f\xd2\x25" 7988 + "\x29\xe8\xd2\x26\x2b\x67\xe9\xfc" 7989 + "\x2b\xa8\x67\x96\x12\x1f\x5b\x96" 7990 + "\xc6\x14\x53\xaf\x44\xea\xd6\xe2" 7991 + "\x94\x98\xe4\x12\x93\x4c\x92\xe0" 7992 + "\x18\xa5\x8d\x2d\xe4\x71\x3c\x47" 7993 + "\x4c\xf7\xe6\x47\x9e\xc0\x68\xdf" 7994 + "\xd4\xf5\x5a\x74\xb1\x2b\x29\x03" 7995 + "\x19\x07\xaf\x90\x62\x5c\x68\x98" 7996 + "\x48\x16\x11\x02\x9d\xee\xb4\x9b" 7997 + "\xe5\x42\x7f\x08\xfd\x16\x32\x0b" 7998 + "\xd0\xb3\xfa\x2b\xb7\x99\xf9\x29" 7999 + "\xcd\x20\x45\x9f\xb3\x1a\x5d\xa2" 8000 + "\xaf\x4d\xe0\xbd\x42\x0d\xbc\x74" 8001 + "\x99\x9c\x8e\x53\x1a\xb4\x3e\xbd" 8002 + "\xa2\x9a\x2d\xf7\xf8\x39\x0f\x67" 8003 + "\x63\xfc\x6b\xc0\xaf\xb3\x4b\x4f" 8004 + "\x55\xc4\xcf\xa7\xc8\x04\x11\x3e" 8005 + "\x14\x32\xbb\x1b\x38\x77\xd6\x7f" 8006 + "\x54\x4c\xdf\x75\xf3\x07\x2d\x33" 8007 + "\x9b\xa8\x20\xe1\x7b\x12\xb5\xf3" 8008 + "\xef\x2f\xce\x72\xe5\x24\x60\xc1" 8009 + "\x30\xe2\xab\xa1\x8e\x11\x09\xa8" 8010 + "\x21\x33\x44\xfe\x7f\x35\x32\x93" 8011 + "\x39\xa7\xad\x8b\x79\x06\xb2\xcb" 8012 + "\x4e\xa9\x5f\xc7\xba\x74\x29\xec" 8013 + "\x93\xa0\x4e\x54\x93\xc0\xbc\x55" 8014 + "\x64\xf0\x48\xe5\x57\x99\xee\x75" 8015 + "\xd6\x79\x0f\x66\xb7\xc6\x57\x76" 8016 + "\xf7\xb7\xf3\x9c\xc5\x60\xe8\x7f" 8017 + "\x83\x76\xd6\x0e\xaa\xe6\x90\x39" 8018 + "\x1d\xa6\x32\x6a\x34\xe3\x55\xf8" 8019 + "\x58\xa0\x58\x7d\x33\xe0\x22\x39" 8020 + "\x44\x64\x87\x86\x5a\x2f\xa7\x7e" 8021 + "\x0f\x38\xea\xb0\x30\xcc\x61\xa5" 8022 + "\x6a\x32\xae\x1e\xf7\xe9\xd0\xa9" 8023 + "\x0c\x32\x4b\xb5\x49\x28\xab\x85" 8024 + "\x2f\x8e\x01\x36\x38\x52\xd0\xba" 8025 + "\xd6\x02\x78\xf8\x0e\x3e\x9c\x8b" 8026 + "\x6b\x45\x99\x3f\x5c\xfe\x58\xf1" 8027 + "\x5c\x94\x04\xe1\xf5\x18\x6d\x51" 8028 + "\xb2\x5d\x18\x20\xb6\xc2\x9a\x42" 8029 + "\x1d\xb3\xab\x3c\xb6\x3a\x13\x03" 8030 + "\xb2\x46\x82\x4f\xfc\x64\xbc\x4f" 8031 + "\xca\xfa\x9c\xc0\xd5\xa7\xbd\x11" 8032 + "\xb7\xe4\x5a\xf6\x6f\x4d\x4d\x54" 8033 + "\xea\xa4\x98\x66\xd4\x22\x3b\xd3" 8034 + "\x8f\x34\x47\xd9\x7c\xf4\x72\x3b" 8035 + "\x4d\x02\x77\xf6\xd6\xdd\x08\x0a" 8036 + "\x81\xe1\x86\x89\x3e\x56\x10\x3c" 8037 + "\xba\xd7\x81\x8c\x08\xbc\x8b\xe2" 8038 + "\x53\xec\xa7\x89\xee\xc8\x56\xb5" 8039 + "\x36\x2c\xb2\x03\xba\x99\xdd\x7c" 8040 + "\x48\xa0\xb0\xbc\x91\x33\xe9\xa8" 8041 + "\xcb\xcd\xcf\x59\x5f\x1f\x15\xe2" 8042 + "\x56\xf5\x4e\x01\x35\x27\x45\x77" 8043 + "\x47\xc8\xbc\xcb\x7e\x39\xc1\x97" 8044 + "\x28\xd3\x84\xfc\x2c\x3e\xc8\xad" 8045 + "\x9c\xf8\x8a\x61\x9c\x28\xaa\xc5" 8046 + "\x99\x20\x43\x85\x9d\xa5\xe2\x8b" 8047 + "\xb8\xae\xeb\xd0\x32\x0d\x52\x78" 8048 + "\x09\x56\x3f\xc7\xd8\x7e\x26\xfc" 8049 + "\x37\xfb\x6f\x04\xfc\xfa\x92\x10" 8050 + "\xac\xf8\x3e\x21\xdc\x8c\x21\x16" 8051 + "\x7d\x67\x6e\xf6\xcd\xda\xb6\x98" 8052 + "\x23\xab\x23\x3c\xb2\x10\xa0\x53" 8053 + "\x5a\x56\x9f\xc5\xd0\xff\xbb\xe4" 8054 + "\x98\x3c\x69\x1e\xdb\x38\x8f\x7e" 8055 + "\x0f\xd2\x98\x88\x81\x8b\x45\x67" 8056 + "\xea\x33\xf1\xeb\xe9\x97\x55\x2e" 8057 + "\xd9\xaa\xeb\x5a\xec\xda\xe1\x68" 8058 + "\xa8\x9d\x3c\x84\x7c\x05\x3d\x62" 8059 + "\x87\x8f\x03\x21\x28\x95\x0c\x89" 8060 + "\x25\x22\x4a\xb0\x93\xa9\x50\xa2" 8061 + "\x2f\x57\x6e\x18\x42\x19\x54\x0c" 8062 + "\x55\x67\xc6\x11\x49\xf4\x5c\xd2" 8063 + "\xe9\x3d\xdd\x8b\x48\x71\x21\x00" 8064 + "\xc3\x9a\x6c\x85\x74\x28\x83\x4a" 8065 + "\x1b\x31\x05\xe1\x06\x92\xe7\xda" 8066 + "\x85\x73\x78\x45\x20\x7f\xae\x13" 8067 + "\x7c\x33\x06\x22\xf4\x83\xf9\x35" 8068 + "\x3f\x6c\x71\xa8\x4e\x48\xbe\x9b" 8069 + "\xce\x8a\xba\xda\xbe\x28\x08\xf7" 8070 + "\xe2\x14\x8c\x71\xea\x72\xf9\x33" 8071 + "\xf2\x88\x3f\xd7\xbb\x69\x6c\x29" 8072 + "\x19\xdc\x84\xce\x1f\x12\x4f\xc8" 8073 + "\xaf\xa5\x04\xba\x5a\xab\xb0\xd9" 8074 + "\x14\x1f\x6c\x68\x98\x39\x89\x7a" 8075 + "\xd9\xd8\x2f\xdf\xa8\x47\x4a\x25" 8076 + "\xe2\xfb\x33\xf4\x59\x78\xe1\x68" 8077 + "\x85\xcf\xfe\x59\x20\xd4\x05\x1d" 8078 + "\x80\x99\xae\xbc\xca\xae\x0f\x2f" 8079 + "\x65\x43\x34\x8e\x7e\xac\xd3\x93" 8080 + "\x2f\xac\x6d\x14\x3d\x02\x07\x70" 8081 + "\x9d\xa4\xf3\x1b\x5c\x36\xfc\x01" 8082 + "\x73\x34\x85\x0c\x6c\xd6\xf1\xbd" 8083 + "\x3f\xdf\xee\xf5\xd9\xba\x56\xef" 8084 + "\xf4\x9b\x6b\xee\x9f\x5a\x78\x6d" 8085 + "\x32\x19\xf4\xf7\xf8\x4c\x69\x0b" 8086 + "\x4b\xbc\xbb\xb7\xf2\x85\xaf\x70" 8087 + "\x75\x24\x6c\x54\xa7\x0e\x4d\x1d" 8088 + "\x01\xbf\x08\xac\xcf\x7f\x2c\xe3" 8089 + "\x14\x89\x5e\x70\x5a\x99\x92\xcd" 8090 + "\x01\x84\xc8\xd2\xab\xe5\x4f\x58" 8091 + "\xe7\x0f\x2f\x0e\xff\x68\xea\xfd" 8092 + "\x15\xb3\x17\xe6\xb0\xe7\x85\xd8" 8093 + "\x23\x2e\x05\xc7\xc9\xc4\x46\x1f" 8094 + "\xe1\x9e\x49\x20\x23\x24\x4d\x7e" 8095 + "\x29\x65\xff\xf4\xb6\xfd\x1a\x85" 8096 + "\xc4\x16\xec\xfc\xea\x7b\xd6\x2c" 8097 + "\x43\xf8\xb7\xbf\x79\xc0\x85\xcd" 8098 + "\xef\xe1\x98\xd3\xa5\xf7\x90\x8c" 8099 + "\xe9\x7f\x80\x6b\xd2\xac\x4c\x30" 8100 + "\xa7\xc6\x61\x6c\xd2\xf9\x2c\xff" 8101 + "\x30\xbc\x22\x81\x7d\x93\x12\xe4" 8102 + "\x0a\xcd\xaf\xdd\xe8\xab\x0a\x1e" 8103 + "\x13\xa4\x27\xc3\x5f\xf7\x4b\xbb" 8104 + "\x37\x09\x4b\x91\x6f\x92\x4f\xaf" 8105 + "\x52\xee\xdf\xef\x09\x6f\xf7\x5c" 8106 + "\x6e\x12\x17\x72\x63\x57\xc7\xba" 8107 + "\x3b\x6b\x38\x32\x73\x1b\x9c\x80" 8108 + "\xc1\x7a\xc6\xcf\xcd\x35\xc0\x6b" 8109 + "\x31\x1a\x6b\xe9\xd8\x2c\x29\x3f" 8110 + "\x96\xfb\xb6\xcd\x13\x91\x3b\xc2" 8111 + "\xd2\xa3\x31\x8d\xa4\xcd\x57\xcd" 8112 + "\x13\x3d\x64\xfd\x06\xce\xe6\xdc" 8113 + "\x0c\x24\x43\x31\x40\x57\xf1\x72" 8114 + "\x17\xe3\x3a\x63\x6d\x35\xcf\x5d" 8115 + "\x97\x40\x59\xdd\xf7\x3c\x02\xf7" 8116 + "\x1c\x7e\x05\xbb\xa9\x0d\x01\xb1" 8117 + "\x8e\xc0\x30\xa9\x53\x24\xc9\x89" 8118 + "\x84\x6d\xaa\xd0\xcd\x91\xc2\x4d" 8119 + "\x91\xb0\x89\xe2\xbf\x83\x44\xaa" 8120 + "\x28\x72\x23\xa0\xc2\xad\xad\x1c" 8121 + "\xfc\x3f\x09\x7a\x0b\xdc\xc5\x1b" 8122 + "\x87\x13\xc6\x5b\x59\x8d\xf2\xc8" 8123 + "\xaf\xdf\x11\x95", 8124 + .rlen = 4100, 8125 + .np = 2, 8126 + .tap = { 4064, 36 }, 8127 + }, 8128 + }; 8129 + 8130 + /* 8131 + * CTS (Cipher Text Stealing) mode tests 8132 + */ 8133 + #define CTS_MODE_ENC_TEST_VECTORS 6 8134 + #define CTS_MODE_DEC_TEST_VECTORS 6 8135 + static struct cipher_testvec cts_mode_enc_tv_template[] = { 8136 + { /* from rfc3962 */ 8137 + .klen = 16, 8138 + .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 8139 + "\x74\x65\x72\x69\x79\x61\x6b\x69", 8140 + .ilen = 17, 8141 + .input = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 8142 + "\x6c\x69\x6b\x65\x20\x74\x68\x65" 8143 + "\x20", 8144 + .rlen = 17, 8145 + .result = "\xc6\x35\x35\x68\xf2\xbf\x8c\xb4" 8146 + "\xd8\xa5\x80\x36\x2d\xa7\xff\x7f" 8147 + "\x97", 8148 + }, { 8149 + .klen = 16, 8150 + .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 8151 + "\x74\x65\x72\x69\x79\x61\x6b\x69", 8152 + .ilen = 31, 8153 + .input = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 8154 + "\x6c\x69\x6b\x65\x20\x74\x68\x65" 8155 + "\x20\x47\x65\x6e\x65\x72\x61\x6c" 8156 + "\x20\x47\x61\x75\x27\x73\x20", 8157 + .rlen = 31, 8158 + .result = "\xfc\x00\x78\x3e\x0e\xfd\xb2\xc1" 8159 + "\xd4\x45\xd4\xc8\xef\xf7\xed\x22" 8160 + "\x97\x68\x72\x68\xd6\xec\xcc\xc0" 8161 + "\xc0\x7b\x25\xe2\x5e\xcf\xe5", 8162 + }, { 8163 + .klen = 16, 8164 + .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 8165 + "\x74\x65\x72\x69\x79\x61\x6b\x69", 8166 + .ilen = 32, 8167 + .input = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 8168 + "\x6c\x69\x6b\x65\x20\x74\x68\x65" 8169 + "\x20\x47\x65\x6e\x65\x72\x61\x6c" 8170 + "\x20\x47\x61\x75\x27\x73\x20\x43", 8171 + .rlen = 32, 8172 + .result = "\x39\x31\x25\x23\xa7\x86\x62\xd5" 8173 + "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8" 8174 + "\x97\x68\x72\x68\xd6\xec\xcc\xc0" 8175 + "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84", 8176 + }, { 8177 + .klen = 16, 8178 + .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 8179 + "\x74\x65\x72\x69\x79\x61\x6b\x69", 8180 + .ilen = 47, 8181 + .input = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 8182 + "\x6c\x69\x6b\x65\x20\x74\x68\x65" 8183 + "\x20\x47\x65\x6e\x65\x72\x61\x6c" 8184 + "\x20\x47\x61\x75\x27\x73\x20\x43" 8185 + "\x68\x69\x63\x6b\x65\x6e\x2c\x20" 8186 + "\x70\x6c\x65\x61\x73\x65\x2c", 8187 + .rlen = 47, 8188 + .result = "\x97\x68\x72\x68\xd6\xec\xcc\xc0" 8189 + "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84" 8190 + "\xb3\xff\xfd\x94\x0c\x16\xa1\x8c" 8191 + "\x1b\x55\x49\xd2\xf8\x38\x02\x9e" 8192 + "\x39\x31\x25\x23\xa7\x86\x62\xd5" 8193 + "\xbe\x7f\xcb\xcc\x98\xeb\xf5", 8194 + }, { 8195 + .klen = 16, 8196 + .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 8197 + "\x74\x65\x72\x69\x79\x61\x6b\x69", 8198 + .ilen = 48, 8199 + .input = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 8200 + "\x6c\x69\x6b\x65\x20\x74\x68\x65" 8201 + "\x20\x47\x65\x6e\x65\x72\x61\x6c" 8202 + "\x20\x47\x61\x75\x27\x73\x20\x43" 8203 + "\x68\x69\x63\x6b\x65\x6e\x2c\x20" 8204 + "\x70\x6c\x65\x61\x73\x65\x2c\x20", 8205 + .rlen = 48, 8206 + .result = "\x97\x68\x72\x68\xd6\xec\xcc\xc0" 8207 + "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84" 8208 + "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0" 8209 + "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8" 8210 + "\x39\x31\x25\x23\xa7\x86\x62\xd5" 8211 + "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8", 8212 + }, { 8213 + .klen = 16, 8214 + .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 8215 + "\x74\x65\x72\x69\x79\x61\x6b\x69", 8216 + .ilen = 64, 8217 + .input = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 8218 + "\x6c\x69\x6b\x65\x20\x74\x68\x65" 8219 + "\x20\x47\x65\x6e\x65\x72\x61\x6c" 8220 + "\x20\x47\x61\x75\x27\x73\x20\x43" 8221 + "\x68\x69\x63\x6b\x65\x6e\x2c\x20" 8222 + "\x70\x6c\x65\x61\x73\x65\x2c\x20" 8223 + "\x61\x6e\x64\x20\x77\x6f\x6e\x74" 8224 + "\x6f\x6e\x20\x73\x6f\x75\x70\x2e", 8225 + .rlen = 64, 8226 + .result = "\x97\x68\x72\x68\xd6\xec\xcc\xc0" 8227 + "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84" 8228 + "\x39\x31\x25\x23\xa7\x86\x62\xd5" 8229 + "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8" 8230 + "\x48\x07\xef\xe8\x36\xee\x89\xa5" 8231 + "\x26\x73\x0d\xbc\x2f\x7b\xc8\x40" 8232 + "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0" 8233 + "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8", 8234 + } 8235 + }; 8236 + 8237 + static struct cipher_testvec cts_mode_dec_tv_template[] = { 8238 + { /* from rfc3962 */ 8239 + .klen = 16, 8240 + .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 8241 + "\x74\x65\x72\x69\x79\x61\x6b\x69", 8242 + .rlen = 17, 8243 + .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 8244 + "\x6c\x69\x6b\x65\x20\x74\x68\x65" 8245 + "\x20", 8246 + .ilen = 17, 8247 + .input = "\xc6\x35\x35\x68\xf2\xbf\x8c\xb4" 8248 + "\xd8\xa5\x80\x36\x2d\xa7\xff\x7f" 8249 + "\x97", 8250 + }, { 8251 + .klen = 16, 8252 + .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 8253 + "\x74\x65\x72\x69\x79\x61\x6b\x69", 8254 + .rlen = 31, 8255 + .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 8256 + "\x6c\x69\x6b\x65\x20\x74\x68\x65" 8257 + "\x20\x47\x65\x6e\x65\x72\x61\x6c" 8258 + "\x20\x47\x61\x75\x27\x73\x20", 8259 + .ilen = 31, 8260 + .input = "\xfc\x00\x78\x3e\x0e\xfd\xb2\xc1" 8261 + "\xd4\x45\xd4\xc8\xef\xf7\xed\x22" 8262 + "\x97\x68\x72\x68\xd6\xec\xcc\xc0" 8263 + "\xc0\x7b\x25\xe2\x5e\xcf\xe5", 8264 + }, { 8265 + .klen = 16, 8266 + .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 8267 + "\x74\x65\x72\x69\x79\x61\x6b\x69", 8268 + .rlen = 32, 8269 + .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 8270 + "\x6c\x69\x6b\x65\x20\x74\x68\x65" 8271 + "\x20\x47\x65\x6e\x65\x72\x61\x6c" 8272 + "\x20\x47\x61\x75\x27\x73\x20\x43", 8273 + .ilen = 32, 8274 + .input = "\x39\x31\x25\x23\xa7\x86\x62\xd5" 8275 + "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8" 8276 + "\x97\x68\x72\x68\xd6\xec\xcc\xc0" 8277 + "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84", 8278 + }, { 8279 + .klen = 16, 8280 + .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 8281 + "\x74\x65\x72\x69\x79\x61\x6b\x69", 8282 + .rlen = 47, 8283 + .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 8284 + "\x6c\x69\x6b\x65\x20\x74\x68\x65" 8285 + "\x20\x47\x65\x6e\x65\x72\x61\x6c" 8286 + "\x20\x47\x61\x75\x27\x73\x20\x43" 8287 + "\x68\x69\x63\x6b\x65\x6e\x2c\x20" 8288 + "\x70\x6c\x65\x61\x73\x65\x2c", 8289 + .ilen = 47, 8290 + .input = "\x97\x68\x72\x68\xd6\xec\xcc\xc0" 8291 + "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84" 8292 + "\xb3\xff\xfd\x94\x0c\x16\xa1\x8c" 8293 + "\x1b\x55\x49\xd2\xf8\x38\x02\x9e" 8294 + "\x39\x31\x25\x23\xa7\x86\x62\xd5" 8295 + "\xbe\x7f\xcb\xcc\x98\xeb\xf5", 8296 + }, { 8297 + .klen = 16, 8298 + .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 8299 + "\x74\x65\x72\x69\x79\x61\x6b\x69", 8300 + .rlen = 48, 8301 + .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 8302 + "\x6c\x69\x6b\x65\x20\x74\x68\x65" 8303 + "\x20\x47\x65\x6e\x65\x72\x61\x6c" 8304 + "\x20\x47\x61\x75\x27\x73\x20\x43" 8305 + "\x68\x69\x63\x6b\x65\x6e\x2c\x20" 8306 + "\x70\x6c\x65\x61\x73\x65\x2c\x20", 8307 + .ilen = 48, 8308 + .input = "\x97\x68\x72\x68\xd6\xec\xcc\xc0" 8309 + "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84" 8310 + "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0" 8311 + "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8" 8312 + "\x39\x31\x25\x23\xa7\x86\x62\xd5" 8313 + "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8", 8314 + }, { 8315 + .klen = 16, 8316 + .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20" 8317 + "\x74\x65\x72\x69\x79\x61\x6b\x69", 8318 + .rlen = 64, 8319 + .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20" 8320 + "\x6c\x69\x6b\x65\x20\x74\x68\x65" 8321 + "\x20\x47\x65\x6e\x65\x72\x61\x6c" 8322 + "\x20\x47\x61\x75\x27\x73\x20\x43" 8323 + "\x68\x69\x63\x6b\x65\x6e\x2c\x20" 8324 + "\x70\x6c\x65\x61\x73\x65\x2c\x20" 8325 + "\x61\x6e\x64\x20\x77\x6f\x6e\x74" 8326 + "\x6f\x6e\x20\x73\x6f\x75\x70\x2e", 8327 + .ilen = 64, 8328 + .input = "\x97\x68\x72\x68\xd6\xec\xcc\xc0" 8329 + "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84" 8330 + "\x39\x31\x25\x23\xa7\x86\x62\xd5" 8331 + "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8" 8332 + "\x48\x07\xef\xe8\x36\xee\x89\xa5" 8333 + "\x26\x73\x0d\xbc\x2f\x7b\xc8\x40" 8334 + "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0" 8335 + "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8", 8336 + } 8337 + }; 8338 + 8339 + /* 8340 + * Compression stuff. 8341 + */ 8342 + #define COMP_BUF_SIZE 512 8343 + 8344 + struct comp_testvec { 8345 + int inlen, outlen; 8346 + char input[COMP_BUF_SIZE]; 8347 + char output[COMP_BUF_SIZE]; 8348 + }; 8349 + 8350 + /* 8351 + * Deflate test vectors (null-terminated strings). 8352 + * Params: winbits=11, Z_DEFAULT_COMPRESSION, MAX_MEM_LEVEL. 8353 + */ 8354 + #define DEFLATE_COMP_TEST_VECTORS 2 8355 + #define DEFLATE_DECOMP_TEST_VECTORS 2 8356 + 8357 + static struct comp_testvec deflate_comp_tv_template[] = { 8358 + { 8359 + .inlen = 70, 8360 + .outlen = 38, 8361 + .input = "Join us now and share the software " 8362 + "Join us now and share the software ", 8363 + .output = "\xf3\xca\xcf\xcc\x53\x28\x2d\x56" 8364 + "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51" 8365 + "\x28\xce\x48\x2c\x4a\x55\x28\xc9" 8366 + "\x48\x55\x28\xce\x4f\x2b\x29\x07" 8367 + "\x71\xbc\x08\x2b\x01\x00", 8368 + }, { 8369 + .inlen = 191, 8370 + .outlen = 122, 8371 + .input = "This document describes a compression method based on the DEFLATE" 8372 + "compression algorithm. This document defines the application of " 8373 + "the DEFLATE algorithm to the IP Payload Compression Protocol.", 8374 + .output = "\x5d\x8d\x31\x0e\xc2\x30\x10\x04" 8375 + "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09" 8376 + "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8" 8377 + "\x24\xdb\x67\xd9\x47\xc1\xef\x49" 8378 + "\x68\x12\x51\xae\x76\x67\xd6\x27" 8379 + "\x19\x88\x1a\xde\x85\xab\x21\xf2" 8380 + "\x08\x5d\x16\x1e\x20\x04\x2d\xad" 8381 + "\xf3\x18\xa2\x15\x85\x2d\x69\xc4" 8382 + "\x42\x83\x23\xb6\x6c\x89\x71\x9b" 8383 + "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f" 8384 + "\xed\x62\xa9\x4c\x80\xff\x13\xaf" 8385 + "\x52\x37\xed\x0e\x52\x6b\x59\x02" 8386 + "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98" 8387 + "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a" 8388 + "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79" 8389 + "\xfa\x02", 8390 + }, 8391 + }; 8392 + 8393 + static struct comp_testvec deflate_decomp_tv_template[] = { 8394 + { 8395 + .inlen = 122, 8396 + .outlen = 191, 8397 + .input = "\x5d\x8d\x31\x0e\xc2\x30\x10\x04" 8398 + "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09" 8399 + "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8" 8400 + "\x24\xdb\x67\xd9\x47\xc1\xef\x49" 8401 + "\x68\x12\x51\xae\x76\x67\xd6\x27" 8402 + "\x19\x88\x1a\xde\x85\xab\x21\xf2" 8403 + "\x08\x5d\x16\x1e\x20\x04\x2d\xad" 8404 + "\xf3\x18\xa2\x15\x85\x2d\x69\xc4" 8405 + "\x42\x83\x23\xb6\x6c\x89\x71\x9b" 8406 + "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f" 8407 + "\xed\x62\xa9\x4c\x80\xff\x13\xaf" 8408 + "\x52\x37\xed\x0e\x52\x6b\x59\x02" 8409 + "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98" 8410 + "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a" 8411 + "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79" 8412 + "\xfa\x02", 8413 + .output = "This document describes a compression method based on the DEFLATE" 8414 + "compression algorithm. This document defines the application of " 8415 + "the DEFLATE algorithm to the IP Payload Compression Protocol.", 8416 + }, { 8417 + .inlen = 38, 8418 + .outlen = 70, 8419 + .input = "\xf3\xca\xcf\xcc\x53\x28\x2d\x56" 8420 + "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51" 8421 + "\x28\xce\x48\x2c\x4a\x55\x28\xc9" 8422 + "\x48\x55\x28\xce\x4f\x2b\x29\x07" 8423 + "\x71\xbc\x08\x2b\x01\x00", 8424 + .output = "Join us now and share the software " 8425 + "Join us now and share the software ", 8426 + }, 8427 + }; 8428 + 8429 + /* 8430 + * LZO test vectors (null-terminated strings). 8431 + */ 8432 + #define LZO_COMP_TEST_VECTORS 2 8433 + #define LZO_DECOMP_TEST_VECTORS 2 8434 + 8435 + static struct comp_testvec lzo_comp_tv_template[] = { 8436 + { 8437 + .inlen = 70, 8438 + .outlen = 46, 8439 + .input = "Join us now and share the software " 8440 + "Join us now and share the software ", 8441 + .output = "\x00\x0d\x4a\x6f\x69\x6e\x20\x75" 8442 + "\x73\x20\x6e\x6f\x77\x20\x61\x6e" 8443 + "\x64\x20\x73\x68\x61\x72\x65\x20" 8444 + "\x74\x68\x65\x20\x73\x6f\x66\x74" 8445 + "\x77\x70\x01\x01\x4a\x6f\x69\x6e" 8446 + "\x3d\x88\x00\x11\x00\x00", 8447 + }, { 8448 + .inlen = 159, 8449 + .outlen = 133, 8450 + .input = "This document describes a compression method based on the LZO " 8451 + "compression algorithm. This document defines the application of " 8452 + "the LZO algorithm used in UBIFS.", 8453 + .output = "\x00\x2b\x54\x68\x69\x73\x20\x64" 8454 + "\x6f\x63\x75\x6d\x65\x6e\x74\x20" 8455 + "\x64\x65\x73\x63\x72\x69\x62\x65" 8456 + "\x73\x20\x61\x20\x63\x6f\x6d\x70" 8457 + "\x72\x65\x73\x73\x69\x6f\x6e\x20" 8458 + "\x6d\x65\x74\x68\x6f\x64\x20\x62" 8459 + "\x61\x73\x65\x64\x20\x6f\x6e\x20" 8460 + "\x74\x68\x65\x20\x4c\x5a\x4f\x2b" 8461 + "\x8c\x00\x0d\x61\x6c\x67\x6f\x72" 8462 + "\x69\x74\x68\x6d\x2e\x20\x20\x54" 8463 + "\x68\x69\x73\x2a\x54\x01\x02\x66" 8464 + "\x69\x6e\x65\x73\x94\x06\x05\x61" 8465 + "\x70\x70\x6c\x69\x63\x61\x74\x76" 8466 + "\x0a\x6f\x66\x88\x02\x60\x09\x27" 8467 + "\xf0\x00\x0c\x20\x75\x73\x65\x64" 8468 + "\x20\x69\x6e\x20\x55\x42\x49\x46" 8469 + "\x53\x2e\x11\x00\x00", 8470 + }, 8471 + }; 8472 + 8473 + static struct comp_testvec lzo_decomp_tv_template[] = { 8474 + { 8475 + .inlen = 133, 8476 + .outlen = 159, 8477 + .input = "\x00\x2b\x54\x68\x69\x73\x20\x64" 8478 + "\x6f\x63\x75\x6d\x65\x6e\x74\x20" 8479 + "\x64\x65\x73\x63\x72\x69\x62\x65" 8480 + "\x73\x20\x61\x20\x63\x6f\x6d\x70" 8481 + "\x72\x65\x73\x73\x69\x6f\x6e\x20" 8482 + "\x6d\x65\x74\x68\x6f\x64\x20\x62" 8483 + "\x61\x73\x65\x64\x20\x6f\x6e\x20" 8484 + "\x74\x68\x65\x20\x4c\x5a\x4f\x2b" 8485 + "\x8c\x00\x0d\x61\x6c\x67\x6f\x72" 8486 + "\x69\x74\x68\x6d\x2e\x20\x20\x54" 8487 + "\x68\x69\x73\x2a\x54\x01\x02\x66" 8488 + "\x69\x6e\x65\x73\x94\x06\x05\x61" 8489 + "\x70\x70\x6c\x69\x63\x61\x74\x76" 8490 + "\x0a\x6f\x66\x88\x02\x60\x09\x27" 8491 + "\xf0\x00\x0c\x20\x75\x73\x65\x64" 8492 + "\x20\x69\x6e\x20\x55\x42\x49\x46" 8493 + "\x53\x2e\x11\x00\x00", 8494 + .output = "This document describes a compression method based on the LZO " 8495 + "compression algorithm. This document defines the application of " 8496 + "the LZO algorithm used in UBIFS.", 8497 + }, { 8498 + .inlen = 46, 8499 + .outlen = 70, 8500 + .input = "\x00\x0d\x4a\x6f\x69\x6e\x20\x75" 8501 + "\x73\x20\x6e\x6f\x77\x20\x61\x6e" 8502 + "\x64\x20\x73\x68\x61\x72\x65\x20" 8503 + "\x74\x68\x65\x20\x73\x6f\x66\x74" 8504 + "\x77\x70\x01\x01\x4a\x6f\x69\x6e" 8505 + "\x3d\x88\x00\x11\x00\x00", 8506 + .output = "Join us now and share the software " 8507 + "Join us now and share the software ", 8508 + }, 8509 + }; 8510 + 8511 + /* 8512 + * Michael MIC test vectors from IEEE 802.11i 8513 + */ 8514 + #define MICHAEL_MIC_TEST_VECTORS 6 8515 + 8516 + static struct hash_testvec michael_mic_tv_template[] = { 8517 + { 8518 + .key = "\x00\x00\x00\x00\x00\x00\x00\x00", 8519 + .ksize = 8, 8520 + .plaintext = zeroed_string, 8521 + .psize = 0, 8522 + .digest = "\x82\x92\x5c\x1c\xa1\xd1\x30\xb8", 8523 + }, 8524 + { 8525 + .key = "\x82\x92\x5c\x1c\xa1\xd1\x30\xb8", 8526 + .ksize = 8, 8527 + .plaintext = "M", 8528 + .psize = 1, 8529 + .digest = "\x43\x47\x21\xca\x40\x63\x9b\x3f", 8530 + }, 8531 + { 8532 + .key = "\x43\x47\x21\xca\x40\x63\x9b\x3f", 8533 + .ksize = 8, 8534 + .plaintext = "Mi", 8535 + .psize = 2, 8536 + .digest = "\xe8\xf9\xbe\xca\xe9\x7e\x5d\x29", 8537 + }, 8538 + { 8539 + .key = "\xe8\xf9\xbe\xca\xe9\x7e\x5d\x29", 8540 + .ksize = 8, 8541 + .plaintext = "Mic", 8542 + .psize = 3, 8543 + .digest = "\x90\x03\x8f\xc6\xcf\x13\xc1\xdb", 8544 + }, 8545 + { 8546 + .key = "\x90\x03\x8f\xc6\xcf\x13\xc1\xdb", 8547 + .ksize = 8, 8548 + .plaintext = "Mich", 8549 + .psize = 4, 8550 + .digest = "\xd5\x5e\x10\x05\x10\x12\x89\x86", 8551 + }, 8552 + { 8553 + .key = "\xd5\x5e\x10\x05\x10\x12\x89\x86", 8554 + .ksize = 8, 8555 + .plaintext = "Michael", 8556 + .psize = 7, 8557 + .digest = "\x0a\x94\x2b\x12\x4e\xca\xa5\x46", 8558 + } 8559 + }; 8560 + 8561 + /* 8562 + * CRC32C test vectors 8563 + */ 8564 + #define CRC32C_TEST_VECTORS 14 8565 + 8566 + static struct hash_testvec crc32c_tv_template[] = { 8567 + { 8568 + .psize = 0, 8569 + .digest = "\x00\x00\x00\x00", 8570 + }, 8571 + { 8572 + .key = "\x87\xa9\xcb\xed", 8573 + .ksize = 4, 8574 + .psize = 0, 8575 + .digest = "\x78\x56\x34\x12", 8576 + }, 8577 + { 8578 + .key = "\xff\xff\xff\xff", 8579 + .ksize = 4, 8580 + .plaintext = "\x01\x02\x03\x04\x05\x06\x07\x08" 8581 + "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 8582 + "\x11\x12\x13\x14\x15\x16\x17\x18" 8583 + "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20" 8584 + "\x21\x22\x23\x24\x25\x26\x27\x28", 8585 + .psize = 40, 8586 + .digest = "\x7f\x15\x2c\x0e", 8587 + }, 8588 + { 8589 + .key = "\xff\xff\xff\xff", 8590 + .ksize = 4, 8591 + .plaintext = "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30" 8592 + "\x31\x32\x33\x34\x35\x36\x37\x38" 8593 + "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40" 8594 + "\x41\x42\x43\x44\x45\x46\x47\x48" 8595 + "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50", 8596 + .psize = 40, 8597 + .digest = "\xf6\xeb\x80\xe9", 8598 + }, 8599 + { 8600 + .key = "\xff\xff\xff\xff", 8601 + .ksize = 4, 8602 + .plaintext = "\x51\x52\x53\x54\x55\x56\x57\x58" 8603 + "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60" 8604 + "\x61\x62\x63\x64\x65\x66\x67\x68" 8605 + "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70" 8606 + "\x71\x72\x73\x74\x75\x76\x77\x78", 8607 + .psize = 40, 8608 + .digest = "\xed\xbd\x74\xde", 8609 + }, 8610 + { 8611 + .key = "\xff\xff\xff\xff", 8612 + .ksize = 4, 8613 + .plaintext = "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80" 8614 + "\x81\x82\x83\x84\x85\x86\x87\x88" 8615 + "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90" 8616 + "\x91\x92\x93\x94\x95\x96\x97\x98" 8617 + "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0", 8618 + .psize = 40, 8619 + .digest = "\x62\xc8\x79\xd5", 8620 + }, 8621 + { 8622 + .key = "\xff\xff\xff\xff", 8623 + .ksize = 4, 8624 + .plaintext = "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8" 8625 + "\xa9\xaa\xab\xac\xad\xae\xaf\xb0" 8626 + "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8" 8627 + "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0" 8628 + "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8", 8629 + .psize = 40, 8630 + .digest = "\xd0\x9a\x97\xba", 8631 + }, 8632 + { 8633 + .key = "\xff\xff\xff\xff", 8634 + .ksize = 4, 8635 + .plaintext = "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0" 8636 + "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8" 8637 + "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0" 8638 + "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8" 8639 + "\xe9\xea\xeb\xec\xed\xee\xef\xf0", 8640 + .psize = 40, 8641 + .digest = "\x13\xd9\x29\x2b", 8642 + }, 8643 + { 8644 + .key = "\x80\xea\xd3\xf1", 8645 + .ksize = 4, 8646 + .plaintext = "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30" 8647 + "\x31\x32\x33\x34\x35\x36\x37\x38" 8648 + "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40" 8649 + "\x41\x42\x43\x44\x45\x46\x47\x48" 8650 + "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50", 8651 + .psize = 40, 8652 + .digest = "\x0c\xb5\xe2\xa2", 8653 + }, 8654 + { 8655 + .key = "\xf3\x4a\x1d\x5d", 8656 + .ksize = 4, 8657 + .plaintext = "\x51\x52\x53\x54\x55\x56\x57\x58" 8658 + "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60" 8659 + "\x61\x62\x63\x64\x65\x66\x67\x68" 8660 + "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70" 8661 + "\x71\x72\x73\x74\x75\x76\x77\x78", 8662 + .psize = 40, 8663 + .digest = "\xd1\x7f\xfb\xa6", 8664 + }, 8665 + { 8666 + .key = "\x2e\x80\x04\x59", 8667 + .ksize = 4, 8668 + .plaintext = "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80" 8669 + "\x81\x82\x83\x84\x85\x86\x87\x88" 8670 + "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90" 8671 + "\x91\x92\x93\x94\x95\x96\x97\x98" 8672 + "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0", 8673 + .psize = 40, 8674 + .digest = "\x59\x33\xe6\x7a", 8675 + }, 8676 + { 8677 + .key = "\xa6\xcc\x19\x85", 8678 + .ksize = 4, 8679 + .plaintext = "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8" 8680 + "\xa9\xaa\xab\xac\xad\xae\xaf\xb0" 8681 + "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8" 8682 + "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0" 8683 + "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8", 8684 + .psize = 40, 8685 + .digest = "\xbe\x03\x01\xd2", 8686 + }, 8687 + { 8688 + .key = "\x41\xfc\xfe\x2d", 8689 + .ksize = 4, 8690 + .plaintext = "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0" 8691 + "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8" 8692 + "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0" 8693 + "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8" 8694 + "\xe9\xea\xeb\xec\xed\xee\xef\xf0", 8695 + .psize = 40, 8696 + .digest = "\x75\xd3\xc5\x24", 8697 + }, 8698 + { 8699 + .key = "\xff\xff\xff\xff", 8700 + .ksize = 4, 8701 + .plaintext = "\x01\x02\x03\x04\x05\x06\x07\x08" 8702 + "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10" 8703 + "\x11\x12\x13\x14\x15\x16\x17\x18" 8704 + "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20" 8705 + "\x21\x22\x23\x24\x25\x26\x27\x28" 8706 + "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30" 8707 + "\x31\x32\x33\x34\x35\x36\x37\x38" 8708 + "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40" 8709 + "\x41\x42\x43\x44\x45\x46\x47\x48" 8710 + "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50" 8711 + "\x51\x52\x53\x54\x55\x56\x57\x58" 8712 + "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60" 8713 + "\x61\x62\x63\x64\x65\x66\x67\x68" 8714 + "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70" 8715 + "\x71\x72\x73\x74\x75\x76\x77\x78" 8716 + "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80" 8717 + "\x81\x82\x83\x84\x85\x86\x87\x88" 8718 + "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90" 8719 + "\x91\x92\x93\x94\x95\x96\x97\x98" 8720 + "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0" 8721 + "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8" 8722 + "\xa9\xaa\xab\xac\xad\xae\xaf\xb0" 8723 + "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8" 8724 + "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0" 8725 + "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8" 8726 + "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0" 8727 + "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8" 8728 + "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0" 8729 + "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8" 8730 + "\xe9\xea\xeb\xec\xed\xee\xef\xf0", 8731 + .psize = 240, 8732 + .digest = "\x75\xd3\xc5\x24", 8733 + .np = 2, 8734 + .tap = { 31, 209 } 8735 + }, 8736 + }; 8737 + 8738 + #endif /* _CRYPTO_TESTMGR_H */
+2
include/linux/crypto.h
··· 515 515 struct crypto_tfm *crypto_alloc_base(const char *alg_name, u32 type, u32 mask); 516 516 void crypto_free_tfm(struct crypto_tfm *tfm); 517 517 518 + int alg_test(const char *driver, const char *alg, u32 type, u32 mask); 519 + 518 520 /* 519 521 * Transform helpers which query the underlying algorithm. 520 522 */