Merge branch 'connlimit' of git://dev.medozas.de/linux
[pandora-kernel.git] / 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  * Updated RFC4106 AES-GCM testing. Some test vectors were taken from
10  * http://csrc.nist.gov/groups/ST/toolkit/BCM/documents/proposedmodes/
11  * gcm/gcm-test-vectors.tar.gz
12  *     Authors: Aidan O'Mahony (aidan.o.mahony@intel.com)
13  *              Adrian Hoban <adrian.hoban@intel.com>
14  *              Gabriele Paoloni <gabriele.paoloni@intel.com>
15  *              Tadeusz Struk (tadeusz.struk@intel.com)
16  *     Copyright (c) 2010, Intel Corporation.
17  *
18  * This program is free software; you can redistribute it and/or modify it
19  * under the terms of the GNU General Public License as published by the Free
20  * Software Foundation; either version 2 of the License, or (at your option)
21  * any later version.
22  *
23  */
24 #ifndef _CRYPTO_TESTMGR_H
25 #define _CRYPTO_TESTMGR_H
26
27 #include <linux/netlink.h>
28 #include <linux/zlib.h>
29
30 #include <crypto/compress.h>
31
32 #define MAX_DIGEST_SIZE         64
33 #define MAX_TAP                 8
34
35 #define MAX_KEYLEN              56
36 #define MAX_IVLEN               32
37
38 struct hash_testvec {
39         /* only used with keyed hash algorithms */
40         char *key;
41         char *plaintext;
42         char *digest;
43         unsigned char tap[MAX_TAP];
44         unsigned char psize;
45         unsigned char np;
46         unsigned char ksize;
47 };
48
49 struct cipher_testvec {
50         char *key;
51         char *iv;
52         char *input;
53         char *result;
54         unsigned short tap[MAX_TAP];
55         int np;
56         unsigned char fail;
57         unsigned char wk; /* weak key flag */
58         unsigned char klen;
59         unsigned short ilen;
60         unsigned short rlen;
61 };
62
63 struct aead_testvec {
64         char *key;
65         char *iv;
66         char *input;
67         char *assoc;
68         char *result;
69         unsigned char tap[MAX_TAP];
70         unsigned char atap[MAX_TAP];
71         int np;
72         int anp;
73         unsigned char fail;
74         unsigned char novrfy;   /* ccm dec verification failure expected */
75         unsigned char wk; /* weak key flag */
76         unsigned char klen;
77         unsigned short ilen;
78         unsigned short alen;
79         unsigned short rlen;
80 };
81
82 struct cprng_testvec {
83         char *key;
84         char *dt;
85         char *v;
86         char *result;
87         unsigned char klen;
88         unsigned short dtlen;
89         unsigned short vlen;
90         unsigned short rlen;
91         unsigned short loops;
92 };
93
94 static char zeroed_string[48];
95
96 /*
97  * MD4 test vectors from RFC1320
98  */
99 #define MD4_TEST_VECTORS        7
100
101 static struct hash_testvec md4_tv_template [] = {
102         {
103                 .plaintext = "",
104                 .digest = "\x31\xd6\xcf\xe0\xd1\x6a\xe9\x31"
105                           "\xb7\x3c\x59\xd7\xe0\xc0\x89\xc0",
106         }, {
107                 .plaintext = "a",
108                 .psize  = 1,
109                 .digest = "\xbd\xe5\x2c\xb3\x1d\xe3\x3e\x46"
110                           "\x24\x5e\x05\xfb\xdb\xd6\xfb\x24",
111         }, {
112                 .plaintext = "abc",
113                 .psize  = 3,
114                 .digest = "\xa4\x48\x01\x7a\xaf\x21\xd8\x52"
115                           "\x5f\xc1\x0a\xe8\x7a\xa6\x72\x9d",
116         }, {
117                 .plaintext = "message digest",
118                 .psize  = 14,
119                 .digest = "\xd9\x13\x0a\x81\x64\x54\x9f\xe8"
120                         "\x18\x87\x48\x06\xe1\xc7\x01\x4b",
121         }, {
122                 .plaintext = "abcdefghijklmnopqrstuvwxyz",
123                 .psize  = 26,
124                 .digest = "\xd7\x9e\x1c\x30\x8a\xa5\xbb\xcd"
125                           "\xee\xa8\xed\x63\xdf\x41\x2d\xa9",
126                 .np     = 2,
127                 .tap    = { 13, 13 },
128         }, {
129                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
130                 .psize  = 62,
131                 .digest = "\x04\x3f\x85\x82\xf2\x41\xdb\x35"
132                           "\x1c\xe6\x27\xe1\x53\xe7\xf0\xe4",
133         }, {
134                 .plaintext = "123456789012345678901234567890123456789012345678901234567890123"
135                            "45678901234567890",
136                 .psize  = 80,
137                 .digest = "\xe3\x3b\x4d\xdc\x9c\x38\xf2\x19"
138                           "\x9c\x3e\x7b\x16\x4f\xcc\x05\x36",
139         },
140 };
141
142 /*
143  * MD5 test vectors from RFC1321
144  */
145 #define MD5_TEST_VECTORS        7
146
147 static struct hash_testvec md5_tv_template[] = {
148         {
149                 .digest = "\xd4\x1d\x8c\xd9\x8f\x00\xb2\x04"
150                           "\xe9\x80\x09\x98\xec\xf8\x42\x7e",
151         }, {
152                 .plaintext = "a",
153                 .psize  = 1,
154                 .digest = "\x0c\xc1\x75\xb9\xc0\xf1\xb6\xa8"
155                           "\x31\xc3\x99\xe2\x69\x77\x26\x61",
156         }, {
157                 .plaintext = "abc",
158                 .psize  = 3,
159                 .digest = "\x90\x01\x50\x98\x3c\xd2\x4f\xb0"
160                           "\xd6\x96\x3f\x7d\x28\xe1\x7f\x72",
161         }, {
162                 .plaintext = "message digest",
163                 .psize  = 14,
164                 .digest = "\xf9\x6b\x69\x7d\x7c\xb7\x93\x8d"
165                           "\x52\x5a\x2f\x31\xaa\xf1\x61\xd0",
166         }, {
167                 .plaintext = "abcdefghijklmnopqrstuvwxyz",
168                 .psize  = 26,
169                 .digest = "\xc3\xfc\xd3\xd7\x61\x92\xe4\x00"
170                           "\x7d\xfb\x49\x6c\xca\x67\xe1\x3b",
171                 .np     = 2,
172                 .tap    = {13, 13}
173         }, {
174                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
175                 .psize  = 62,
176                 .digest = "\xd1\x74\xab\x98\xd2\x77\xd9\xf5"
177                           "\xa5\x61\x1c\x2c\x9f\x41\x9d\x9f",
178         }, {
179                 .plaintext = "12345678901234567890123456789012345678901234567890123456789012"
180                            "345678901234567890",
181                 .psize  = 80,
182                 .digest = "\x57\xed\xf4\xa2\x2b\xe3\xc9\x55"
183                           "\xac\x49\xda\x2e\x21\x07\xb6\x7a",
184         }
185
186 };
187
188 /*
189  * RIPEMD-128 test vectors from ISO/IEC 10118-3:2004(E)
190  */
191 #define RMD128_TEST_VECTORS     10
192
193 static struct hash_testvec rmd128_tv_template[] = {
194         {
195                 .digest = "\xcd\xf2\x62\x13\xa1\x50\xdc\x3e"
196                           "\xcb\x61\x0f\x18\xf6\xb3\x8b\x46",
197         }, {
198                 .plaintext = "a",
199                 .psize  = 1,
200                 .digest = "\x86\xbe\x7a\xfa\x33\x9d\x0f\xc7"
201                           "\xcf\xc7\x85\xe7\x2f\x57\x8d\x33",
202         }, {
203                 .plaintext = "abc",
204                 .psize  = 3,
205                 .digest = "\xc1\x4a\x12\x19\x9c\x66\xe4\xba"
206                           "\x84\x63\x6b\x0f\x69\x14\x4c\x77",
207         }, {
208                 .plaintext = "message digest",
209                 .psize  = 14,
210                 .digest = "\x9e\x32\x7b\x3d\x6e\x52\x30\x62"
211                           "\xaf\xc1\x13\x2d\x7d\xf9\xd1\xb8",
212         }, {
213                 .plaintext = "abcdefghijklmnopqrstuvwxyz",
214                 .psize  = 26,
215                 .digest = "\xfd\x2a\xa6\x07\xf7\x1d\xc8\xf5"
216                           "\x10\x71\x49\x22\xb3\x71\x83\x4e",
217         }, {
218                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde"
219                              "fghijklmnopqrstuvwxyz0123456789",
220                 .psize  = 62,
221                 .digest = "\xd1\xe9\x59\xeb\x17\x9c\x91\x1f"
222                           "\xae\xa4\x62\x4c\x60\xc5\xc7\x02",
223         }, {
224                 .plaintext = "1234567890123456789012345678901234567890"
225                              "1234567890123456789012345678901234567890",
226                 .psize  = 80,
227                 .digest = "\x3f\x45\xef\x19\x47\x32\xc2\xdb"
228                           "\xb2\xc4\xa2\xc7\x69\x79\x5f\xa3",
229         }, {
230                 .plaintext = "abcdbcdecdefdefgefghfghighij"
231                              "hijkijkljklmklmnlmnomnopnopq",
232                 .psize  = 56,
233                 .digest = "\xa1\xaa\x06\x89\xd0\xfa\xfa\x2d"
234                           "\xdc\x22\xe8\x8b\x49\x13\x3a\x06",
235                 .np     = 2,
236                 .tap    = { 28, 28 },
237         }, {
238                 .plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghi"
239                              "jklmghijklmnhijklmnoijklmnopjklmnopqklmnopqr"
240                              "lmnopqrsmnopqrstnopqrstu",
241                 .psize  = 112,
242                 .digest = "\xd4\xec\xc9\x13\xe1\xdf\x77\x6b"
243                           "\xf4\x8d\xe9\xd5\x5b\x1f\x25\x46",
244         }, {
245                 .plaintext = "abcdbcdecdefdefgefghfghighijhijk",
246                 .psize  = 32,
247                 .digest = "\x13\xfc\x13\xe8\xef\xff\x34\x7d"
248                           "\xe1\x93\xff\x46\xdb\xac\xcf\xd4",
249         }
250 };
251
252 /*
253  * RIPEMD-160 test vectors from ISO/IEC 10118-3:2004(E)
254  */
255 #define RMD160_TEST_VECTORS     10
256
257 static struct hash_testvec rmd160_tv_template[] = {
258         {
259                 .digest = "\x9c\x11\x85\xa5\xc5\xe9\xfc\x54\x61\x28"
260                           "\x08\x97\x7e\xe8\xf5\x48\xb2\x25\x8d\x31",
261         }, {
262                 .plaintext = "a",
263                 .psize  = 1,
264                 .digest = "\x0b\xdc\x9d\x2d\x25\x6b\x3e\xe9\xda\xae"
265                           "\x34\x7b\xe6\xf4\xdc\x83\x5a\x46\x7f\xfe",
266         }, {
267                 .plaintext = "abc",
268                 .psize  = 3,
269                 .digest = "\x8e\xb2\x08\xf7\xe0\x5d\x98\x7a\x9b\x04"
270                           "\x4a\x8e\x98\xc6\xb0\x87\xf1\x5a\x0b\xfc",
271         }, {
272                 .plaintext = "message digest",
273                 .psize  = 14,
274                 .digest = "\x5d\x06\x89\xef\x49\xd2\xfa\xe5\x72\xb8"
275                           "\x81\xb1\x23\xa8\x5f\xfa\x21\x59\x5f\x36",
276         }, {
277                 .plaintext = "abcdefghijklmnopqrstuvwxyz",
278                 .psize  = 26,
279                 .digest = "\xf7\x1c\x27\x10\x9c\x69\x2c\x1b\x56\xbb"
280                           "\xdc\xeb\x5b\x9d\x28\x65\xb3\x70\x8d\xbc",
281         }, {
282                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde"
283                              "fghijklmnopqrstuvwxyz0123456789",
284                 .psize  = 62,
285                 .digest = "\xb0\xe2\x0b\x6e\x31\x16\x64\x02\x86\xed"
286                           "\x3a\x87\xa5\x71\x30\x79\xb2\x1f\x51\x89",
287         }, {
288                 .plaintext = "1234567890123456789012345678901234567890"
289                              "1234567890123456789012345678901234567890",
290                 .psize  = 80,
291                 .digest = "\x9b\x75\x2e\x45\x57\x3d\x4b\x39\xf4\xdb"
292                           "\xd3\x32\x3c\xab\x82\xbf\x63\x32\x6b\xfb",
293         }, {
294                 .plaintext = "abcdbcdecdefdefgefghfghighij"
295                              "hijkijkljklmklmnlmnomnopnopq",
296                 .psize  = 56,
297                 .digest = "\x12\xa0\x53\x38\x4a\x9c\x0c\x88\xe4\x05"
298                           "\xa0\x6c\x27\xdc\xf4\x9a\xda\x62\xeb\x2b",
299                 .np     = 2,
300                 .tap    = { 28, 28 },
301         }, {
302                 .plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghi"
303                              "jklmghijklmnhijklmnoijklmnopjklmnopqklmnopqr"
304                              "lmnopqrsmnopqrstnopqrstu",
305                 .psize  = 112,
306                 .digest = "\x6f\x3f\xa3\x9b\x6b\x50\x3c\x38\x4f\x91"
307                           "\x9a\x49\xa7\xaa\x5c\x2c\x08\xbd\xfb\x45",
308         }, {
309                 .plaintext = "abcdbcdecdefdefgefghfghighijhijk",
310                 .psize  = 32,
311                 .digest = "\x94\xc2\x64\x11\x54\x04\xe6\x33\x79\x0d"
312                           "\xfc\xc8\x7b\x58\x7d\x36\x77\x06\x7d\x9f",
313         }
314 };
315
316 /*
317  * RIPEMD-256 test vectors
318  */
319 #define RMD256_TEST_VECTORS     8
320
321 static struct hash_testvec rmd256_tv_template[] = {
322         {
323                 .digest = "\x02\xba\x4c\x4e\x5f\x8e\xcd\x18"
324                           "\x77\xfc\x52\xd6\x4d\x30\xe3\x7a"
325                           "\x2d\x97\x74\xfb\x1e\x5d\x02\x63"
326                           "\x80\xae\x01\x68\xe3\xc5\x52\x2d",
327         }, {
328                 .plaintext = "a",
329                 .psize  = 1,
330                 .digest = "\xf9\x33\x3e\x45\xd8\x57\xf5\xd9"
331                           "\x0a\x91\xba\xb7\x0a\x1e\xba\x0c"
332                           "\xfb\x1b\xe4\xb0\x78\x3c\x9a\xcf"
333                           "\xcd\x88\x3a\x91\x34\x69\x29\x25",
334         }, {
335                 .plaintext = "abc",
336                 .psize  = 3,
337                 .digest = "\xaf\xbd\x6e\x22\x8b\x9d\x8c\xbb"
338                           "\xce\xf5\xca\x2d\x03\xe6\xdb\xa1"
339                           "\x0a\xc0\xbc\x7d\xcb\xe4\x68\x0e"
340                           "\x1e\x42\xd2\xe9\x75\x45\x9b\x65",
341         }, {
342                 .plaintext = "message digest",
343                 .psize  = 14,
344                 .digest = "\x87\xe9\x71\x75\x9a\x1c\xe4\x7a"
345                           "\x51\x4d\x5c\x91\x4c\x39\x2c\x90"
346                           "\x18\xc7\xc4\x6b\xc1\x44\x65\x55"
347                           "\x4a\xfc\xdf\x54\xa5\x07\x0c\x0e",
348         }, {
349                 .plaintext = "abcdefghijklmnopqrstuvwxyz",
350                 .psize  = 26,
351                 .digest = "\x64\x9d\x30\x34\x75\x1e\xa2\x16"
352                           "\x77\x6b\xf9\xa1\x8a\xcc\x81\xbc"
353                           "\x78\x96\x11\x8a\x51\x97\x96\x87"
354                           "\x82\xdd\x1f\xd9\x7d\x8d\x51\x33",
355         }, {
356                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde"
357                              "fghijklmnopqrstuvwxyz0123456789",
358                 .psize  = 62,
359                 .digest = "\x57\x40\xa4\x08\xac\x16\xb7\x20"
360                           "\xb8\x44\x24\xae\x93\x1c\xbb\x1f"
361                           "\xe3\x63\xd1\xd0\xbf\x40\x17\xf1"
362                           "\xa8\x9f\x7e\xa6\xde\x77\xa0\xb8",
363         }, {
364                 .plaintext = "1234567890123456789012345678901234567890"
365                              "1234567890123456789012345678901234567890",
366                 .psize  = 80,
367                 .digest = "\x06\xfd\xcc\x7a\x40\x95\x48\xaa"
368                           "\xf9\x13\x68\xc0\x6a\x62\x75\xb5"
369                           "\x53\xe3\xf0\x99\xbf\x0e\xa4\xed"
370                           "\xfd\x67\x78\xdf\x89\xa8\x90\xdd",
371         }, {
372                 .plaintext = "abcdbcdecdefdefgefghfghighij"
373                              "hijkijkljklmklmnlmnomnopnopq",
374                 .psize  = 56,
375                 .digest = "\x38\x43\x04\x55\x83\xaa\xc6\xc8"
376                           "\xc8\xd9\x12\x85\x73\xe7\xa9\x80"
377                           "\x9a\xfb\x2a\x0f\x34\xcc\xc3\x6e"
378                           "\xa9\xe7\x2f\x16\xf6\x36\x8e\x3f",
379                 .np     = 2,
380                 .tap    = { 28, 28 },
381         }
382 };
383
384 /*
385  * RIPEMD-320 test vectors
386  */
387 #define RMD320_TEST_VECTORS     8
388
389 static struct hash_testvec rmd320_tv_template[] = {
390         {
391                 .digest = "\x22\xd6\x5d\x56\x61\x53\x6c\xdc\x75\xc1"
392                           "\xfd\xf5\xc6\xde\x7b\x41\xb9\xf2\x73\x25"
393                           "\xeb\xc6\x1e\x85\x57\x17\x7d\x70\x5a\x0e"
394                           "\xc8\x80\x15\x1c\x3a\x32\xa0\x08\x99\xb8",
395         }, {
396                 .plaintext = "a",
397                 .psize  = 1,
398                 .digest = "\xce\x78\x85\x06\x38\xf9\x26\x58\xa5\xa5"
399                           "\x85\x09\x75\x79\x92\x6d\xda\x66\x7a\x57"
400                           "\x16\x56\x2c\xfc\xf6\xfb\xe7\x7f\x63\x54"
401                           "\x2f\x99\xb0\x47\x05\xd6\x97\x0d\xff\x5d",
402         }, {
403                 .plaintext = "abc",
404                 .psize  = 3,
405                 .digest = "\xde\x4c\x01\xb3\x05\x4f\x89\x30\xa7\x9d"
406                           "\x09\xae\x73\x8e\x92\x30\x1e\x5a\x17\x08"
407                           "\x5b\xef\xfd\xc1\xb8\xd1\x16\x71\x3e\x74"
408                           "\xf8\x2f\xa9\x42\xd6\x4c\xdb\xc4\x68\x2d",
409         }, {
410                 .plaintext = "message digest",
411                 .psize  = 14,
412                 .digest = "\x3a\x8e\x28\x50\x2e\xd4\x5d\x42\x2f\x68"
413                           "\x84\x4f\x9d\xd3\x16\xe7\xb9\x85\x33\xfa"
414                           "\x3f\x2a\x91\xd2\x9f\x84\xd4\x25\xc8\x8d"
415                           "\x6b\x4e\xff\x72\x7d\xf6\x6a\x7c\x01\x97",
416         }, {
417                 .plaintext = "abcdefghijklmnopqrstuvwxyz",
418                 .psize  = 26,
419                 .digest = "\xca\xbd\xb1\x81\x0b\x92\x47\x0a\x20\x93"
420                           "\xaa\x6b\xce\x05\x95\x2c\x28\x34\x8c\xf4"
421                           "\x3f\xf6\x08\x41\x97\x51\x66\xbb\x40\xed"
422                           "\x23\x40\x04\xb8\x82\x44\x63\xe6\xb0\x09",
423         }, {
424                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde"
425                              "fghijklmnopqrstuvwxyz0123456789",
426                 .psize  = 62,
427                 .digest = "\xed\x54\x49\x40\xc8\x6d\x67\xf2\x50\xd2"
428                           "\x32\xc3\x0b\x7b\x3e\x57\x70\xe0\xc6\x0c"
429                           "\x8c\xb9\xa4\xca\xfe\x3b\x11\x38\x8a\xf9"
430                           "\x92\x0e\x1b\x99\x23\x0b\x84\x3c\x86\xa4",
431         }, {
432                 .plaintext = "1234567890123456789012345678901234567890"
433                              "1234567890123456789012345678901234567890",
434                 .psize  = 80,
435                 .digest = "\x55\x78\x88\xaf\x5f\x6d\x8e\xd6\x2a\xb6"
436                           "\x69\x45\xc6\xd2\xa0\xa4\x7e\xcd\x53\x41"
437                           "\xe9\x15\xeb\x8f\xea\x1d\x05\x24\x95\x5f"
438                           "\x82\x5d\xc7\x17\xe4\xa0\x08\xab\x2d\x42",
439         }, {
440                 .plaintext = "abcdbcdecdefdefgefghfghighij"
441                              "hijkijkljklmklmnlmnomnopnopq",
442                 .psize  = 56,
443                 .digest = "\xd0\x34\xa7\x95\x0c\xf7\x22\x02\x1b\xa4"
444                           "\xb8\x4d\xf7\x69\xa5\xde\x20\x60\xe2\x59"
445                           "\xdf\x4c\x9b\xb4\xa4\x26\x8c\x0e\x93\x5b"
446                           "\xbc\x74\x70\xa9\x69\xc9\xd0\x72\xa1\xac",
447                 .np     = 2,
448                 .tap    = { 28, 28 },
449         }
450 };
451
452 /*
453  * SHA1 test vectors  from from FIPS PUB 180-1
454  */
455 #define SHA1_TEST_VECTORS       2
456
457 static struct hash_testvec sha1_tv_template[] = {
458         {
459                 .plaintext = "abc",
460                 .psize  = 3,
461                 .digest = "\xa9\x99\x3e\x36\x47\x06\x81\x6a\xba\x3e"
462                           "\x25\x71\x78\x50\xc2\x6c\x9c\xd0\xd8\x9d",
463         }, {
464                 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
465                 .psize  = 56,
466                 .digest = "\x84\x98\x3e\x44\x1c\x3b\xd2\x6e\xba\xae"
467                           "\x4a\xa1\xf9\x51\x29\xe5\xe5\x46\x70\xf1",
468                 .np     = 2,
469                 .tap    = { 28, 28 }
470         }
471 };
472
473
474 /*
475  * SHA224 test vectors from from FIPS PUB 180-2
476  */
477 #define SHA224_TEST_VECTORS     2
478
479 static struct hash_testvec sha224_tv_template[] = {
480         {
481                 .plaintext = "abc",
482                 .psize  = 3,
483                 .digest = "\x23\x09\x7D\x22\x34\x05\xD8\x22"
484                           "\x86\x42\xA4\x77\xBD\xA2\x55\xB3"
485                           "\x2A\xAD\xBC\xE4\xBD\xA0\xB3\xF7"
486                           "\xE3\x6C\x9D\xA7",
487         }, {
488                 .plaintext =
489                 "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
490                 .psize  = 56,
491                 .digest = "\x75\x38\x8B\x16\x51\x27\x76\xCC"
492                           "\x5D\xBA\x5D\xA1\xFD\x89\x01\x50"
493                           "\xB0\xC6\x45\x5C\xB4\xF5\x8B\x19"
494                           "\x52\x52\x25\x25",
495                 .np     = 2,
496                 .tap    = { 28, 28 }
497         }
498 };
499
500 /*
501  * SHA256 test vectors from from NIST
502  */
503 #define SHA256_TEST_VECTORS     2
504
505 static struct hash_testvec sha256_tv_template[] = {
506         {
507                 .plaintext = "abc",
508                 .psize  = 3,
509                 .digest = "\xba\x78\x16\xbf\x8f\x01\xcf\xea"
510                           "\x41\x41\x40\xde\x5d\xae\x22\x23"
511                           "\xb0\x03\x61\xa3\x96\x17\x7a\x9c"
512                           "\xb4\x10\xff\x61\xf2\x00\x15\xad",
513         }, {
514                 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
515                 .psize  = 56,
516                 .digest = "\x24\x8d\x6a\x61\xd2\x06\x38\xb8"
517                           "\xe5\xc0\x26\x93\x0c\x3e\x60\x39"
518                           "\xa3\x3c\xe4\x59\x64\xff\x21\x67"
519                           "\xf6\xec\xed\xd4\x19\xdb\x06\xc1",
520                 .np     = 2,
521                 .tap    = { 28, 28 }
522         },
523 };
524
525 /*
526  * SHA384 test vectors from from NIST and kerneli
527  */
528 #define SHA384_TEST_VECTORS     4
529
530 static struct hash_testvec sha384_tv_template[] = {
531         {
532                 .plaintext= "abc",
533                 .psize  = 3,
534                 .digest = "\xcb\x00\x75\x3f\x45\xa3\x5e\x8b"
535                           "\xb5\xa0\x3d\x69\x9a\xc6\x50\x07"
536                           "\x27\x2c\x32\xab\x0e\xde\xd1\x63"
537                           "\x1a\x8b\x60\x5a\x43\xff\x5b\xed"
538                           "\x80\x86\x07\x2b\xa1\xe7\xcc\x23"
539                           "\x58\xba\xec\xa1\x34\xc8\x25\xa7",
540         }, {
541                 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
542                 .psize  = 56,
543                 .digest = "\x33\x91\xfd\xdd\xfc\x8d\xc7\x39"
544                           "\x37\x07\xa6\x5b\x1b\x47\x09\x39"
545                           "\x7c\xf8\xb1\xd1\x62\xaf\x05\xab"
546                           "\xfe\x8f\x45\x0d\xe5\xf3\x6b\xc6"
547                           "\xb0\x45\x5a\x85\x20\xbc\x4e\x6f"
548                           "\x5f\xe9\x5b\x1f\xe3\xc8\x45\x2b",
549         }, {
550                 .plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmn"
551                            "hijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu",
552                 .psize  = 112,
553                 .digest = "\x09\x33\x0c\x33\xf7\x11\x47\xe8"
554                           "\x3d\x19\x2f\xc7\x82\xcd\x1b\x47"
555                           "\x53\x11\x1b\x17\x3b\x3b\x05\xd2"
556                           "\x2f\xa0\x80\x86\xe3\xb0\xf7\x12"
557                           "\xfc\xc7\xc7\x1a\x55\x7e\x2d\xb9"
558                           "\x66\xc3\xe9\xfa\x91\x74\x60\x39",
559         }, {
560                 .plaintext = "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd"
561                            "efghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz",
562                 .psize  = 104,
563                 .digest = "\x3d\x20\x89\x73\xab\x35\x08\xdb"
564                           "\xbd\x7e\x2c\x28\x62\xba\x29\x0a"
565                           "\xd3\x01\x0e\x49\x78\xc1\x98\xdc"
566                           "\x4d\x8f\xd0\x14\xe5\x82\x82\x3a"
567                           "\x89\xe1\x6f\x9b\x2a\x7b\xbc\x1a"
568                           "\xc9\x38\xe2\xd1\x99\xe8\xbe\xa4",
569                 .np     = 4,
570                 .tap    = { 26, 26, 26, 26 }
571         },
572 };
573
574 /*
575  * SHA512 test vectors from from NIST and kerneli
576  */
577 #define SHA512_TEST_VECTORS     4
578
579 static struct hash_testvec sha512_tv_template[] = {
580         {
581                 .plaintext = "abc",
582                 .psize  = 3,
583                 .digest = "\xdd\xaf\x35\xa1\x93\x61\x7a\xba"
584                           "\xcc\x41\x73\x49\xae\x20\x41\x31"
585                           "\x12\xe6\xfa\x4e\x89\xa9\x7e\xa2"
586                           "\x0a\x9e\xee\xe6\x4b\x55\xd3\x9a"
587                           "\x21\x92\x99\x2a\x27\x4f\xc1\xa8"
588                           "\x36\xba\x3c\x23\xa3\xfe\xeb\xbd"
589                           "\x45\x4d\x44\x23\x64\x3c\xe8\x0e"
590                           "\x2a\x9a\xc9\x4f\xa5\x4c\xa4\x9f",
591         }, {
592                 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
593                 .psize  = 56,
594                 .digest = "\x20\x4a\x8f\xc6\xdd\xa8\x2f\x0a"
595                           "\x0c\xed\x7b\xeb\x8e\x08\xa4\x16"
596                           "\x57\xc1\x6e\xf4\x68\xb2\x28\xa8"
597                           "\x27\x9b\xe3\x31\xa7\x03\xc3\x35"
598                           "\x96\xfd\x15\xc1\x3b\x1b\x07\xf9"
599                           "\xaa\x1d\x3b\xea\x57\x78\x9c\xa0"
600                           "\x31\xad\x85\xc7\xa7\x1d\xd7\x03"
601                           "\x54\xec\x63\x12\x38\xca\x34\x45",
602         }, {
603                 .plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmn"
604                            "hijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu",
605                 .psize  = 112,
606                 .digest = "\x8e\x95\x9b\x75\xda\xe3\x13\xda"
607                           "\x8c\xf4\xf7\x28\x14\xfc\x14\x3f"
608                           "\x8f\x77\x79\xc6\xeb\x9f\x7f\xa1"
609                           "\x72\x99\xae\xad\xb6\x88\x90\x18"
610                           "\x50\x1d\x28\x9e\x49\x00\xf7\xe4"
611                           "\x33\x1b\x99\xde\xc4\xb5\x43\x3a"
612                           "\xc7\xd3\x29\xee\xb6\xdd\x26\x54"
613                           "\x5e\x96\xe5\x5b\x87\x4b\xe9\x09",
614         }, {
615                 .plaintext = "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd"
616                            "efghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz",
617                 .psize  = 104,
618                 .digest = "\x93\x0d\x0c\xef\xcb\x30\xff\x11"
619                           "\x33\xb6\x89\x81\x21\xf1\xcf\x3d"
620                           "\x27\x57\x8a\xfc\xaf\xe8\x67\x7c"
621                           "\x52\x57\xcf\x06\x99\x11\xf7\x5d"
622                           "\x8f\x58\x31\xb5\x6e\xbf\xda\x67"
623                           "\xb2\x78\xe6\x6d\xff\x8b\x84\xfe"
624                           "\x2b\x28\x70\xf7\x42\xa5\x80\xd8"
625                           "\xed\xb4\x19\x87\x23\x28\x50\xc9",
626                 .np     = 4,
627                 .tap    = { 26, 26, 26, 26 }
628         },
629 };
630
631
632 /*
633  * WHIRLPOOL test vectors from Whirlpool package
634  * by Vincent Rijmen and Paulo S. L. M. Barreto as part of the NESSIE
635  * submission
636  */
637 #define WP512_TEST_VECTORS      8
638
639 static struct hash_testvec wp512_tv_template[] = {
640         {
641                 .plaintext = "",
642                 .psize  = 0,
643                 .digest = "\x19\xFA\x61\xD7\x55\x22\xA4\x66"
644                           "\x9B\x44\xE3\x9C\x1D\x2E\x17\x26"
645                           "\xC5\x30\x23\x21\x30\xD4\x07\xF8"
646                           "\x9A\xFE\xE0\x96\x49\x97\xF7\xA7"
647                           "\x3E\x83\xBE\x69\x8B\x28\x8F\xEB"
648                           "\xCF\x88\xE3\xE0\x3C\x4F\x07\x57"
649                           "\xEA\x89\x64\xE5\x9B\x63\xD9\x37"
650                           "\x08\xB1\x38\xCC\x42\xA6\x6E\xB3",
651
652
653         }, {
654                 .plaintext = "a",
655                 .psize  = 1,
656                 .digest = "\x8A\xCA\x26\x02\x79\x2A\xEC\x6F"
657                           "\x11\xA6\x72\x06\x53\x1F\xB7\xD7"
658                           "\xF0\xDF\xF5\x94\x13\x14\x5E\x69"
659                           "\x73\xC4\x50\x01\xD0\x08\x7B\x42"
660                           "\xD1\x1B\xC6\x45\x41\x3A\xEF\xF6"
661                           "\x3A\x42\x39\x1A\x39\x14\x5A\x59"
662                           "\x1A\x92\x20\x0D\x56\x01\x95\xE5"
663                           "\x3B\x47\x85\x84\xFD\xAE\x23\x1A",
664         }, {
665                 .plaintext = "abc",
666                 .psize  = 3,
667                 .digest = "\x4E\x24\x48\xA4\xC6\xF4\x86\xBB"
668                           "\x16\xB6\x56\x2C\x73\xB4\x02\x0B"
669                           "\xF3\x04\x3E\x3A\x73\x1B\xCE\x72"
670                           "\x1A\xE1\xB3\x03\xD9\x7E\x6D\x4C"
671                           "\x71\x81\xEE\xBD\xB6\xC5\x7E\x27"
672                           "\x7D\x0E\x34\x95\x71\x14\xCB\xD6"
673                           "\xC7\x97\xFC\x9D\x95\xD8\xB5\x82"
674                           "\xD2\x25\x29\x20\x76\xD4\xEE\xF5",
675         }, {
676                 .plaintext = "message digest",
677                 .psize  = 14,
678                 .digest = "\x37\x8C\x84\xA4\x12\x6E\x2D\xC6"
679                           "\xE5\x6D\xCC\x74\x58\x37\x7A\xAC"
680                           "\x83\x8D\x00\x03\x22\x30\xF5\x3C"
681                           "\xE1\xF5\x70\x0C\x0F\xFB\x4D\x3B"
682                           "\x84\x21\x55\x76\x59\xEF\x55\xC1"
683                           "\x06\xB4\xB5\x2A\xC5\xA4\xAA\xA6"
684                           "\x92\xED\x92\x00\x52\x83\x8F\x33"
685                           "\x62\xE8\x6D\xBD\x37\xA8\x90\x3E",
686         }, {
687                 .plaintext = "abcdefghijklmnopqrstuvwxyz",
688                 .psize  = 26,
689                 .digest = "\xF1\xD7\x54\x66\x26\x36\xFF\xE9"
690                           "\x2C\x82\xEB\xB9\x21\x2A\x48\x4A"
691                           "\x8D\x38\x63\x1E\xAD\x42\x38\xF5"
692                           "\x44\x2E\xE1\x3B\x80\x54\xE4\x1B"
693                           "\x08\xBF\x2A\x92\x51\xC3\x0B\x6A"
694                           "\x0B\x8A\xAE\x86\x17\x7A\xB4\xA6"
695                           "\xF6\x8F\x67\x3E\x72\x07\x86\x5D"
696                           "\x5D\x98\x19\xA3\xDB\xA4\xEB\x3B",
697         }, {
698                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
699                            "abcdefghijklmnopqrstuvwxyz0123456789",
700                 .psize  = 62,
701                 .digest = "\xDC\x37\xE0\x08\xCF\x9E\xE6\x9B"
702                           "\xF1\x1F\x00\xED\x9A\xBA\x26\x90"
703                           "\x1D\xD7\xC2\x8C\xDE\xC0\x66\xCC"
704                           "\x6A\xF4\x2E\x40\xF8\x2F\x3A\x1E"
705                           "\x08\xEB\xA2\x66\x29\x12\x9D\x8F"
706                           "\xB7\xCB\x57\x21\x1B\x92\x81\xA6"
707                           "\x55\x17\xCC\x87\x9D\x7B\x96\x21"
708                           "\x42\xC6\x5F\x5A\x7A\xF0\x14\x67",
709         }, {
710                 .plaintext = "1234567890123456789012345678901234567890"
711                            "1234567890123456789012345678901234567890",
712                 .psize  = 80,
713                 .digest = "\x46\x6E\xF1\x8B\xAB\xB0\x15\x4D"
714                           "\x25\xB9\xD3\x8A\x64\x14\xF5\xC0"
715                           "\x87\x84\x37\x2B\xCC\xB2\x04\xD6"
716                           "\x54\x9C\x4A\xFA\xDB\x60\x14\x29"
717                           "\x4D\x5B\xD8\xDF\x2A\x6C\x44\xE5"
718                           "\x38\xCD\x04\x7B\x26\x81\xA5\x1A"
719                           "\x2C\x60\x48\x1E\x88\xC5\xA2\x0B"
720                           "\x2C\x2A\x80\xCF\x3A\x9A\x08\x3B",
721         }, {
722                 .plaintext = "abcdbcdecdefdefgefghfghighijhijk",
723                 .psize  = 32,
724                 .digest = "\x2A\x98\x7E\xA4\x0F\x91\x70\x61"
725                           "\xF5\xD6\xF0\xA0\xE4\x64\x4F\x48"
726                           "\x8A\x7A\x5A\x52\xDE\xEE\x65\x62"
727                           "\x07\xC5\x62\xF9\x88\xE9\x5C\x69"
728                           "\x16\xBD\xC8\x03\x1B\xC5\xBE\x1B"
729                           "\x7B\x94\x76\x39\xFE\x05\x0B\x56"
730                           "\x93\x9B\xAA\xA0\xAD\xFF\x9A\xE6"
731                           "\x74\x5B\x7B\x18\x1C\x3B\xE3\xFD",
732         },
733 };
734
735 #define WP384_TEST_VECTORS      8
736
737 static struct hash_testvec wp384_tv_template[] = {
738         {
739                 .plaintext = "",
740                 .psize  = 0,
741                 .digest = "\x19\xFA\x61\xD7\x55\x22\xA4\x66"
742                           "\x9B\x44\xE3\x9C\x1D\x2E\x17\x26"
743                           "\xC5\x30\x23\x21\x30\xD4\x07\xF8"
744                           "\x9A\xFE\xE0\x96\x49\x97\xF7\xA7"
745                           "\x3E\x83\xBE\x69\x8B\x28\x8F\xEB"
746                           "\xCF\x88\xE3\xE0\x3C\x4F\x07\x57",
747
748
749         }, {
750                 .plaintext = "a",
751                 .psize  = 1,
752                 .digest = "\x8A\xCA\x26\x02\x79\x2A\xEC\x6F"
753                           "\x11\xA6\x72\x06\x53\x1F\xB7\xD7"
754                           "\xF0\xDF\xF5\x94\x13\x14\x5E\x69"
755                           "\x73\xC4\x50\x01\xD0\x08\x7B\x42"
756                           "\xD1\x1B\xC6\x45\x41\x3A\xEF\xF6"
757                           "\x3A\x42\x39\x1A\x39\x14\x5A\x59",
758         }, {
759                 .plaintext = "abc",
760                 .psize  = 3,
761                 .digest = "\x4E\x24\x48\xA4\xC6\xF4\x86\xBB"
762                           "\x16\xB6\x56\x2C\x73\xB4\x02\x0B"
763                           "\xF3\x04\x3E\x3A\x73\x1B\xCE\x72"
764                           "\x1A\xE1\xB3\x03\xD9\x7E\x6D\x4C"
765                           "\x71\x81\xEE\xBD\xB6\xC5\x7E\x27"
766                           "\x7D\x0E\x34\x95\x71\x14\xCB\xD6",
767         }, {
768                 .plaintext = "message digest",
769                 .psize  = 14,
770                 .digest = "\x37\x8C\x84\xA4\x12\x6E\x2D\xC6"
771                           "\xE5\x6D\xCC\x74\x58\x37\x7A\xAC"
772                           "\x83\x8D\x00\x03\x22\x30\xF5\x3C"
773                           "\xE1\xF5\x70\x0C\x0F\xFB\x4D\x3B"
774                           "\x84\x21\x55\x76\x59\xEF\x55\xC1"
775                           "\x06\xB4\xB5\x2A\xC5\xA4\xAA\xA6",
776         }, {
777                 .plaintext = "abcdefghijklmnopqrstuvwxyz",
778                 .psize  = 26,
779                 .digest = "\xF1\xD7\x54\x66\x26\x36\xFF\xE9"
780                           "\x2C\x82\xEB\xB9\x21\x2A\x48\x4A"
781                           "\x8D\x38\x63\x1E\xAD\x42\x38\xF5"
782                           "\x44\x2E\xE1\x3B\x80\x54\xE4\x1B"
783                           "\x08\xBF\x2A\x92\x51\xC3\x0B\x6A"
784                           "\x0B\x8A\xAE\x86\x17\x7A\xB4\xA6",
785         }, {
786                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
787                            "abcdefghijklmnopqrstuvwxyz0123456789",
788                 .psize  = 62,
789                 .digest = "\xDC\x37\xE0\x08\xCF\x9E\xE6\x9B"
790                           "\xF1\x1F\x00\xED\x9A\xBA\x26\x90"
791                           "\x1D\xD7\xC2\x8C\xDE\xC0\x66\xCC"
792                           "\x6A\xF4\x2E\x40\xF8\x2F\x3A\x1E"
793                           "\x08\xEB\xA2\x66\x29\x12\x9D\x8F"
794                           "\xB7\xCB\x57\x21\x1B\x92\x81\xA6",
795         }, {
796                 .plaintext = "1234567890123456789012345678901234567890"
797                            "1234567890123456789012345678901234567890",
798                 .psize  = 80,
799                 .digest = "\x46\x6E\xF1\x8B\xAB\xB0\x15\x4D"
800                           "\x25\xB9\xD3\x8A\x64\x14\xF5\xC0"
801                           "\x87\x84\x37\x2B\xCC\xB2\x04\xD6"
802                           "\x54\x9C\x4A\xFA\xDB\x60\x14\x29"
803                           "\x4D\x5B\xD8\xDF\x2A\x6C\x44\xE5"
804                           "\x38\xCD\x04\x7B\x26\x81\xA5\x1A",
805         }, {
806                 .plaintext = "abcdbcdecdefdefgefghfghighijhijk",
807                 .psize  = 32,
808                 .digest = "\x2A\x98\x7E\xA4\x0F\x91\x70\x61"
809                           "\xF5\xD6\xF0\xA0\xE4\x64\x4F\x48"
810                           "\x8A\x7A\x5A\x52\xDE\xEE\x65\x62"
811                           "\x07\xC5\x62\xF9\x88\xE9\x5C\x69"
812                           "\x16\xBD\xC8\x03\x1B\xC5\xBE\x1B"
813                           "\x7B\x94\x76\x39\xFE\x05\x0B\x56",
814         },
815 };
816
817 #define WP256_TEST_VECTORS      8
818
819 static struct hash_testvec wp256_tv_template[] = {
820         {
821                 .plaintext = "",
822                 .psize  = 0,
823                 .digest = "\x19\xFA\x61\xD7\x55\x22\xA4\x66"
824                           "\x9B\x44\xE3\x9C\x1D\x2E\x17\x26"
825                           "\xC5\x30\x23\x21\x30\xD4\x07\xF8"
826                           "\x9A\xFE\xE0\x96\x49\x97\xF7\xA7",
827
828
829         }, {
830                 .plaintext = "a",
831                 .psize  = 1,
832                 .digest = "\x8A\xCA\x26\x02\x79\x2A\xEC\x6F"
833                           "\x11\xA6\x72\x06\x53\x1F\xB7\xD7"
834                           "\xF0\xDF\xF5\x94\x13\x14\x5E\x69"
835                           "\x73\xC4\x50\x01\xD0\x08\x7B\x42",
836         }, {
837                 .plaintext = "abc",
838                 .psize  = 3,
839                 .digest = "\x4E\x24\x48\xA4\xC6\xF4\x86\xBB"
840                           "\x16\xB6\x56\x2C\x73\xB4\x02\x0B"
841                           "\xF3\x04\x3E\x3A\x73\x1B\xCE\x72"
842                           "\x1A\xE1\xB3\x03\xD9\x7E\x6D\x4C",
843         }, {
844                 .plaintext = "message digest",
845                 .psize  = 14,
846                 .digest = "\x37\x8C\x84\xA4\x12\x6E\x2D\xC6"
847                           "\xE5\x6D\xCC\x74\x58\x37\x7A\xAC"
848                           "\x83\x8D\x00\x03\x22\x30\xF5\x3C"
849                           "\xE1\xF5\x70\x0C\x0F\xFB\x4D\x3B",
850         }, {
851                 .plaintext = "abcdefghijklmnopqrstuvwxyz",
852                 .psize  = 26,
853                 .digest = "\xF1\xD7\x54\x66\x26\x36\xFF\xE9"
854                           "\x2C\x82\xEB\xB9\x21\x2A\x48\x4A"
855                           "\x8D\x38\x63\x1E\xAD\x42\x38\xF5"
856                           "\x44\x2E\xE1\x3B\x80\x54\xE4\x1B",
857         }, {
858                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
859                            "abcdefghijklmnopqrstuvwxyz0123456789",
860                 .psize  = 62,
861                 .digest = "\xDC\x37\xE0\x08\xCF\x9E\xE6\x9B"
862                           "\xF1\x1F\x00\xED\x9A\xBA\x26\x90"
863                           "\x1D\xD7\xC2\x8C\xDE\xC0\x66\xCC"
864                           "\x6A\xF4\x2E\x40\xF8\x2F\x3A\x1E",
865         }, {
866                 .plaintext = "1234567890123456789012345678901234567890"
867                            "1234567890123456789012345678901234567890",
868                 .psize  = 80,
869                 .digest = "\x46\x6E\xF1\x8B\xAB\xB0\x15\x4D"
870                           "\x25\xB9\xD3\x8A\x64\x14\xF5\xC0"
871                           "\x87\x84\x37\x2B\xCC\xB2\x04\xD6"
872                           "\x54\x9C\x4A\xFA\xDB\x60\x14\x29",
873         }, {
874                 .plaintext = "abcdbcdecdefdefgefghfghighijhijk",
875                 .psize  = 32,
876                 .digest = "\x2A\x98\x7E\xA4\x0F\x91\x70\x61"
877                           "\xF5\xD6\xF0\xA0\xE4\x64\x4F\x48"
878                           "\x8A\x7A\x5A\x52\xDE\xEE\x65\x62"
879                           "\x07\xC5\x62\xF9\x88\xE9\x5C\x69",
880         },
881 };
882
883 /*
884  * TIGER test vectors from Tiger website
885  */
886 #define TGR192_TEST_VECTORS     6
887
888 static struct hash_testvec tgr192_tv_template[] = {
889         {
890                 .plaintext = "",
891                 .psize  = 0,
892                 .digest = "\x24\xf0\x13\x0c\x63\xac\x93\x32"
893                           "\x16\x16\x6e\x76\xb1\xbb\x92\x5f"
894                           "\xf3\x73\xde\x2d\x49\x58\x4e\x7a",
895         }, {
896                 .plaintext = "abc",
897                 .psize  = 3,
898                 .digest = "\xf2\x58\xc1\xe8\x84\x14\xab\x2a"
899                           "\x52\x7a\xb5\x41\xff\xc5\xb8\xbf"
900                           "\x93\x5f\x7b\x95\x1c\x13\x29\x51",
901         }, {
902                 .plaintext = "Tiger",
903                 .psize  = 5,
904                 .digest = "\x9f\x00\xf5\x99\x07\x23\x00\xdd"
905                           "\x27\x6a\xbb\x38\xc8\xeb\x6d\xec"
906                           "\x37\x79\x0c\x11\x6f\x9d\x2b\xdf",
907         }, {
908                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-",
909                 .psize  = 64,
910                 .digest = "\x87\xfb\x2a\x90\x83\x85\x1c\xf7"
911                           "\x47\x0d\x2c\xf8\x10\xe6\xdf\x9e"
912                           "\xb5\x86\x44\x50\x34\xa5\xa3\x86",
913         }, {
914                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ=abcdefghijklmnopqrstuvwxyz+0123456789",
915                 .psize  = 64,
916                 .digest = "\x46\x7d\xb8\x08\x63\xeb\xce\x48"
917                           "\x8d\xf1\xcd\x12\x61\x65\x5d\xe9"
918                           "\x57\x89\x65\x65\x97\x5f\x91\x97",
919         }, {
920                 .plaintext = "Tiger - A Fast New Hash Function, "
921                            "by Ross Anderson and Eli Biham, "
922                            "proceedings of Fast Software Encryption 3, "
923                            "Cambridge, 1996.",
924                 .psize  = 125,
925                 .digest = "\x3d\x9a\xeb\x03\xd1\xbd\x1a\x63"
926                           "\x57\xb2\x77\x4d\xfd\x6d\x5b\x24"
927                           "\xdd\x68\x15\x1d\x50\x39\x74\xfc",
928         },
929 };
930
931 #define TGR160_TEST_VECTORS     6
932
933 static struct hash_testvec tgr160_tv_template[] = {
934         {
935                 .plaintext = "",
936                 .psize  = 0,
937                 .digest = "\x24\xf0\x13\x0c\x63\xac\x93\x32"
938                           "\x16\x16\x6e\x76\xb1\xbb\x92\x5f"
939                           "\xf3\x73\xde\x2d",
940         }, {
941                 .plaintext = "abc",
942                 .psize  = 3,
943                 .digest = "\xf2\x58\xc1\xe8\x84\x14\xab\x2a"
944                           "\x52\x7a\xb5\x41\xff\xc5\xb8\xbf"
945                           "\x93\x5f\x7b\x95",
946         }, {
947                 .plaintext = "Tiger",
948                 .psize  = 5,
949                 .digest = "\x9f\x00\xf5\x99\x07\x23\x00\xdd"
950                           "\x27\x6a\xbb\x38\xc8\xeb\x6d\xec"
951                           "\x37\x79\x0c\x11",
952         }, {
953                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-",
954                 .psize  = 64,
955                 .digest = "\x87\xfb\x2a\x90\x83\x85\x1c\xf7"
956                           "\x47\x0d\x2c\xf8\x10\xe6\xdf\x9e"
957                           "\xb5\x86\x44\x50",
958         }, {
959                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ=abcdefghijklmnopqrstuvwxyz+0123456789",
960                 .psize  = 64,
961                 .digest = "\x46\x7d\xb8\x08\x63\xeb\xce\x48"
962                           "\x8d\xf1\xcd\x12\x61\x65\x5d\xe9"
963                           "\x57\x89\x65\x65",
964         }, {
965                 .plaintext = "Tiger - A Fast New Hash Function, "
966                            "by Ross Anderson and Eli Biham, "
967                            "proceedings of Fast Software Encryption 3, "
968                            "Cambridge, 1996.",
969                 .psize  = 125,
970                 .digest = "\x3d\x9a\xeb\x03\xd1\xbd\x1a\x63"
971                           "\x57\xb2\x77\x4d\xfd\x6d\x5b\x24"
972                           "\xdd\x68\x15\x1d",
973         },
974 };
975
976 #define TGR128_TEST_VECTORS     6
977
978 static struct hash_testvec tgr128_tv_template[] = {
979         {
980                 .plaintext = "",
981                 .psize  = 0,
982                 .digest = "\x24\xf0\x13\x0c\x63\xac\x93\x32"
983                           "\x16\x16\x6e\x76\xb1\xbb\x92\x5f",
984         }, {
985                 .plaintext = "abc",
986                 .psize  = 3,
987                 .digest = "\xf2\x58\xc1\xe8\x84\x14\xab\x2a"
988                           "\x52\x7a\xb5\x41\xff\xc5\xb8\xbf",
989         }, {
990                 .plaintext = "Tiger",
991                 .psize  = 5,
992                 .digest = "\x9f\x00\xf5\x99\x07\x23\x00\xdd"
993                           "\x27\x6a\xbb\x38\xc8\xeb\x6d\xec",
994         }, {
995                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-",
996                 .psize  = 64,
997                 .digest = "\x87\xfb\x2a\x90\x83\x85\x1c\xf7"
998                           "\x47\x0d\x2c\xf8\x10\xe6\xdf\x9e",
999         }, {
1000                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ=abcdefghijklmnopqrstuvwxyz+0123456789",
1001                 .psize  = 64,
1002                 .digest = "\x46\x7d\xb8\x08\x63\xeb\xce\x48"
1003                           "\x8d\xf1\xcd\x12\x61\x65\x5d\xe9",
1004         }, {
1005                 .plaintext = "Tiger - A Fast New Hash Function, "
1006                            "by Ross Anderson and Eli Biham, "
1007                            "proceedings of Fast Software Encryption 3, "
1008                            "Cambridge, 1996.",
1009                 .psize  = 125,
1010                 .digest = "\x3d\x9a\xeb\x03\xd1\xbd\x1a\x63"
1011                           "\x57\xb2\x77\x4d\xfd\x6d\x5b\x24",
1012         },
1013 };
1014
1015 #define GHASH_TEST_VECTORS 1
1016
1017 static struct hash_testvec ghash_tv_template[] =
1018 {
1019         {
1020
1021                 .key    = "\xdf\xa6\xbf\x4d\xed\x81\xdb\x03\xff\xca\xff\x95\xf8\x30\xf0\x61",
1022                 .ksize  = 16,
1023                 .plaintext = "\x95\x2b\x2a\x56\xa5\x60\x04a\xc0\xb3\x2b\x66\x56\xa0\x5b\x40\xb6",
1024                 .psize  = 16,
1025                 .digest = "\xda\x53\xeb\x0a\xd2\xc5\x5b\xb6"
1026                           "\x4f\xc4\x80\x2c\xc3\xfe\xda\x60",
1027         },
1028 };
1029
1030 /*
1031  * HMAC-MD5 test vectors from RFC2202
1032  * (These need to be fixed to not use strlen).
1033  */
1034 #define HMAC_MD5_TEST_VECTORS   7
1035
1036 static struct hash_testvec hmac_md5_tv_template[] =
1037 {
1038         {
1039                 .key    = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b",
1040                 .ksize  = 16,
1041                 .plaintext = "Hi There",
1042                 .psize  = 8,
1043                 .digest = "\x92\x94\x72\x7a\x36\x38\xbb\x1c"
1044                           "\x13\xf4\x8e\xf8\x15\x8b\xfc\x9d",
1045         }, {
1046                 .key    = "Jefe",
1047                 .ksize  = 4,
1048                 .plaintext = "what do ya want for nothing?",
1049                 .psize  = 28,
1050                 .digest = "\x75\x0c\x78\x3e\x6a\xb0\xb5\x03"
1051                           "\xea\xa8\x6e\x31\x0a\x5d\xb7\x38",
1052                 .np     = 2,
1053                 .tap    = {14, 14}
1054         }, {
1055                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa",
1056                 .ksize  = 16,
1057                 .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1058                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1059                         "\xdd\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",
1061                 .psize  = 50,
1062                 .digest = "\x56\xbe\x34\x52\x1d\x14\x4c\x88"
1063                           "\xdb\xb8\xc7\x33\xf0\xe8\xb3\xf6",
1064         }, {
1065                 .key    = "\x01\x02\x03\x04\x05\x06\x07\x08"
1066                           "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1067                           "\x11\x12\x13\x14\x15\x16\x17\x18\x19",
1068                 .ksize  = 25,
1069                 .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1070                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1071                         "\xcd\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",
1073                 .psize  = 50,
1074                 .digest = "\x69\x7e\xaf\x0a\xca\x3a\x3a\xea"
1075                           "\x3a\x75\x16\x47\x46\xff\xaa\x79",
1076         }, {
1077                 .key    = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c",
1078                 .ksize  = 16,
1079                 .plaintext = "Test With Truncation",
1080                 .psize  = 20,
1081                 .digest = "\x56\x46\x1e\xf2\x34\x2e\xdc\x00"
1082                           "\xf9\xba\xb9\x95\x69\x0e\xfd\x4c",
1083         }, {
1084                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1085                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1086                         "\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",
1091                 .ksize  = 80,
1092                 .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First",
1093                 .psize  = 54,
1094                 .digest = "\x6b\x1a\xb7\xfe\x4b\xd7\xbf\x8f"
1095                           "\x0b\x62\xe6\xce\x61\xb9\xd0\xcd",
1096         }, {
1097                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1098                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1099                         "\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",
1104                 .ksize  = 80,
1105                 .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One "
1106                            "Block-Size Data",
1107                 .psize  = 73,
1108                 .digest = "\x6f\x63\x0f\xad\x67\xcd\xa0\xee"
1109                           "\x1f\xb1\xf5\x62\xdb\x3a\xa5\x3e",
1110         },
1111 };
1112
1113 /*
1114  * HMAC-RIPEMD128 test vectors from RFC2286
1115  */
1116 #define HMAC_RMD128_TEST_VECTORS        7
1117
1118 static struct hash_testvec hmac_rmd128_tv_template[] = {
1119         {
1120                 .key    = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b",
1121                 .ksize  = 16,
1122                 .plaintext = "Hi There",
1123                 .psize  = 8,
1124                 .digest = "\xfb\xf6\x1f\x94\x92\xaa\x4b\xbf"
1125                           "\x81\xc1\x72\xe8\x4e\x07\x34\xdb",
1126         }, {
1127                 .key    = "Jefe",
1128                 .ksize  = 4,
1129                 .plaintext = "what do ya want for nothing?",
1130                 .psize  = 28,
1131                 .digest = "\x87\x5f\x82\x88\x62\xb6\xb3\x34"
1132                           "\xb4\x27\xc5\x5f\x9f\x7f\xf0\x9b",
1133                 .np     = 2,
1134                 .tap    = { 14, 14 },
1135         }, {
1136                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa",
1137                 .ksize  = 16,
1138                 .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1139                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1140                         "\xdd\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",
1142                 .psize  = 50,
1143                 .digest = "\x09\xf0\xb2\x84\x6d\x2f\x54\x3d"
1144                           "\xa3\x63\xcb\xec\x8d\x62\xa3\x8d",
1145         }, {
1146                 .key    = "\x01\x02\x03\x04\x05\x06\x07\x08"
1147                           "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1148                           "\x11\x12\x13\x14\x15\x16\x17\x18\x19",
1149                 .ksize  = 25,
1150                 .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1151                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1152                         "\xcd\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",
1154                 .psize  = 50,
1155                 .digest = "\xbd\xbb\xd7\xcf\x03\xe4\x4b\x5a"
1156                           "\xa6\x0a\xf8\x15\xbe\x4d\x22\x94",
1157         }, {
1158                 .key    = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c",
1159                 .ksize  = 16,
1160                 .plaintext = "Test With Truncation",
1161                 .psize  = 20,
1162                 .digest = "\xe7\x98\x08\xf2\x4b\x25\xfd\x03"
1163                           "\x1c\x15\x5f\x0d\x55\x1d\x9a\x3a",
1164         }, {
1165                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1166                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1167                         "\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",
1172                 .ksize  = 80,
1173                 .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First",
1174                 .psize  = 54,
1175                 .digest = "\xdc\x73\x29\x28\xde\x98\x10\x4a"
1176                           "\x1f\x59\xd3\x73\xc1\x50\xac\xbb",
1177         }, {
1178                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1179                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1180                         "\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",
1185                 .ksize  = 80,
1186                 .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One "
1187                            "Block-Size Data",
1188                 .psize  = 73,
1189                 .digest = "\x5c\x6b\xec\x96\x79\x3e\x16\xd4"
1190                           "\x06\x90\xc2\x37\x63\x5f\x30\xc5",
1191         },
1192 };
1193
1194 /*
1195  * HMAC-RIPEMD160 test vectors from RFC2286
1196  */
1197 #define HMAC_RMD160_TEST_VECTORS        7
1198
1199 static struct hash_testvec hmac_rmd160_tv_template[] = {
1200         {
1201                 .key    = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b",
1202                 .ksize  = 20,
1203                 .plaintext = "Hi There",
1204                 .psize  = 8,
1205                 .digest = "\x24\xcb\x4b\xd6\x7d\x20\xfc\x1a\x5d\x2e"
1206                           "\xd7\x73\x2d\xcc\x39\x37\x7f\x0a\x56\x68",
1207         }, {
1208                 .key    = "Jefe",
1209                 .ksize  = 4,
1210                 .plaintext = "what do ya want for nothing?",
1211                 .psize  = 28,
1212                 .digest = "\xdd\xa6\xc0\x21\x3a\x48\x5a\x9e\x24\xf4"
1213                           "\x74\x20\x64\xa7\xf0\x33\xb4\x3c\x40\x69",
1214                 .np     = 2,
1215                 .tap    = { 14, 14 },
1216         }, {
1217                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa",
1218                 .ksize  = 20,
1219                 .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1220                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1221                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1222                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd",
1223                 .psize  = 50,
1224                 .digest = "\xb0\xb1\x05\x36\x0d\xe7\x59\x96\x0a\xb4"
1225                           "\xf3\x52\x98\xe1\x16\xe2\x95\xd8\xe7\xc1",
1226         }, {
1227                 .key    = "\x01\x02\x03\x04\x05\x06\x07\x08"
1228                           "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1229                           "\x11\x12\x13\x14\x15\x16\x17\x18\x19",
1230                 .ksize  = 25,
1231                 .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1232                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1233                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1234                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd",
1235                 .psize  = 50,
1236                 .digest = "\xd5\xca\x86\x2f\x4d\x21\xd5\xe6\x10\xe1"
1237                           "\x8b\x4c\xf1\xbe\xb9\x7a\x43\x65\xec\xf4",
1238         }, {
1239                 .key    = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c",
1240                 .ksize  = 20,
1241                 .plaintext = "Test With Truncation",
1242                 .psize  = 20,
1243                 .digest = "\x76\x19\x69\x39\x78\xf9\x1d\x90\x53\x9a"
1244                           "\xe7\x86\x50\x0f\xf3\xd8\xe0\x51\x8e\x39",
1245         }, {
1246                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1247                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1248                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1249                         "\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",
1253                 .ksize  = 80,
1254                 .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First",
1255                 .psize  = 54,
1256                 .digest = "\x64\x66\xca\x07\xac\x5e\xac\x29\xe1\xbd"
1257                           "\x52\x3e\x5a\xda\x76\x05\xb7\x91\xfd\x8b",
1258         }, {
1259                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1260                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1261                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1262                         "\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",
1266                 .ksize  = 80,
1267                 .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One "
1268                            "Block-Size Data",
1269                 .psize  = 73,
1270                 .digest = "\x69\xea\x60\x79\x8d\x71\x61\x6c\xce\x5f"
1271                           "\xd0\x87\x1e\x23\x75\x4c\xd7\x5d\x5a\x0a",
1272         },
1273 };
1274
1275 /*
1276  * HMAC-SHA1 test vectors from RFC2202
1277  */
1278 #define HMAC_SHA1_TEST_VECTORS  7
1279
1280 static struct hash_testvec hmac_sha1_tv_template[] = {
1281         {
1282                 .key    = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b",
1283                 .ksize  = 20,
1284                 .plaintext = "Hi There",
1285                 .psize  = 8,
1286                 .digest = "\xb6\x17\x31\x86\x55\x05\x72\x64"
1287                           "\xe2\x8b\xc0\xb6\xfb\x37\x8c\x8e\xf1"
1288                           "\x46\xbe",
1289         }, {
1290                 .key    = "Jefe",
1291                 .ksize  = 4,
1292                 .plaintext = "what do ya want for nothing?",
1293                 .psize  = 28,
1294                 .digest = "\xef\xfc\xdf\x6a\xe5\xeb\x2f\xa2\xd2\x74"
1295                           "\x16\xd5\xf1\x84\xdf\x9c\x25\x9a\x7c\x79",
1296                 .np     = 2,
1297                 .tap    = { 14, 14 }
1298         }, {
1299                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa",
1300                 .ksize  = 20,
1301                 .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1302                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1303                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1304                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd",
1305                 .psize  = 50,
1306                 .digest = "\x12\x5d\x73\x42\xb9\xac\x11\xcd\x91\xa3"
1307                           "\x9a\xf4\x8a\xa1\x7b\x4f\x63\xf1\x75\xd3",
1308         }, {
1309                 .key    = "\x01\x02\x03\x04\x05\x06\x07\x08"
1310                           "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1311                           "\x11\x12\x13\x14\x15\x16\x17\x18\x19",
1312                 .ksize  = 25,
1313                 .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1314                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1315                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1316                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd",
1317                 .psize  = 50,
1318                 .digest = "\x4c\x90\x07\xf4\x02\x62\x50\xc6\xbc\x84"
1319                           "\x14\xf9\xbf\x50\xc8\x6c\x2d\x72\x35\xda",
1320         }, {
1321                 .key    = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c",
1322                 .ksize  = 20,
1323                 .plaintext = "Test With Truncation",
1324                 .psize  = 20,
1325                 .digest = "\x4c\x1a\x03\x42\x4b\x55\xe0\x7f\xe7\xf2"
1326                           "\x7b\xe1\xd5\x8b\xb9\x32\x4a\x9a\x5a\x04",
1327         }, {
1328                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1329                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1330                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1331                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1332                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1333                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1334                         "\xaa\xaa",
1335                 .ksize  = 80,
1336                 .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First",
1337                 .psize  = 54,
1338                 .digest = "\xaa\x4a\xe5\xe1\x52\x72\xd0\x0e\x95\x70"
1339                           "\x56\x37\xce\x8a\x3b\x55\xed\x40\x21\x12",
1340         }, {
1341                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1342                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1343                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1344                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1345                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1346                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1347                         "\xaa\xaa",
1348                 .ksize  = 80,
1349                 .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One "
1350                            "Block-Size Data",
1351                 .psize  = 73,
1352                 .digest = "\xe8\xe9\x9d\x0f\x45\x23\x7d\x78\x6d\x6b"
1353                           "\xba\xa7\x96\x5c\x78\x08\xbb\xff\x1a\x91",
1354         },
1355 };
1356
1357
1358 /*
1359  * SHA224 HMAC test vectors from RFC4231
1360  */
1361 #define HMAC_SHA224_TEST_VECTORS    4
1362
1363 static struct hash_testvec hmac_sha224_tv_template[] = {
1364         {
1365                 .key    = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1366                         "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1367                         "\x0b\x0b\x0b\x0b",
1368                 .ksize  = 20,
1369                 /*  ("Hi There") */
1370                 .plaintext = "\x48\x69\x20\x54\x68\x65\x72\x65",
1371                 .psize  = 8,
1372                 .digest = "\x89\x6f\xb1\x12\x8a\xbb\xdf\x19"
1373                         "\x68\x32\x10\x7c\xd4\x9d\xf3\x3f"
1374                         "\x47\xb4\xb1\x16\x99\x12\xba\x4f"
1375                         "\x53\x68\x4b\x22",
1376         }, {
1377                 .key    = "Jefe",
1378                 .ksize  = 4,
1379                 /* ("what do ya want for nothing?") */
1380                 .plaintext = "\x77\x68\x61\x74\x20\x64\x6f\x20"
1381                         "\x79\x61\x20\x77\x61\x6e\x74\x20"
1382                         "\x66\x6f\x72\x20\x6e\x6f\x74\x68"
1383                         "\x69\x6e\x67\x3f",
1384                 .psize  = 28,
1385                 .digest = "\xa3\x0e\x01\x09\x8b\xc6\xdb\xbf"
1386                         "\x45\x69\x0f\x3a\x7e\x9e\x6d\x0f"
1387                         "\x8b\xbe\xa2\xa3\x9e\x61\x48\x00"
1388                         "\x8f\xd0\x5e\x44",
1389                 .np = 4,
1390                 .tap    = { 7, 7, 7, 7 }
1391         }, {
1392                 .key    = "\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\xaa\xaa\xaa\xaa\xaa"
1399                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1400                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1401                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1402                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1403                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1404                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1405                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1406                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1407                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1408                         "\xaa\xaa\xaa",
1409                 .ksize  = 131,
1410                 /* ("Test Using Larger Than Block-Size Key - Hash Key First") */
1411                 .plaintext = "\x54\x65\x73\x74\x20\x55\x73\x69"
1412                         "\x6e\x67\x20\x4c\x61\x72\x67\x65"
1413                         "\x72\x20\x54\x68\x61\x6e\x20\x42"
1414                         "\x6c\x6f\x63\x6b\x2d\x53\x69\x7a"
1415                         "\x65\x20\x4b\x65\x79\x20\x2d\x20"
1416                         "\x48\x61\x73\x68\x20\x4b\x65\x79"
1417                         "\x20\x46\x69\x72\x73\x74",
1418                 .psize  = 54,
1419                 .digest = "\x95\xe9\xa0\xdb\x96\x20\x95\xad"
1420                         "\xae\xbe\x9b\x2d\x6f\x0d\xbc\xe2"
1421                         "\xd4\x99\xf1\x12\xf2\xd2\xb7\x27"
1422                         "\x3f\xa6\x87\x0e",
1423         }, {
1424                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1425                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1426                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1427                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1428                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1429                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1430                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1431                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1432                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1433                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1434                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1435                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1436                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1437                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1438                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1439                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1440                         "\xaa\xaa\xaa",
1441                 .ksize  = 131,
1442                 /* ("This is a test using a larger than block-size key and a")
1443                 (" larger than block-size data. The key needs to be")
1444                         (" hashed before being used by the HMAC algorithm.") */
1445                 .plaintext = "\x54\x68\x69\x73\x20\x69\x73\x20"
1446                         "\x61\x20\x74\x65\x73\x74\x20\x75"
1447                         "\x73\x69\x6e\x67\x20\x61\x20\x6c"
1448                         "\x61\x72\x67\x65\x72\x20\x74\x68"
1449                         "\x61\x6e\x20\x62\x6c\x6f\x63\x6b"
1450                         "\x2d\x73\x69\x7a\x65\x20\x6b\x65"
1451                         "\x79\x20\x61\x6e\x64\x20\x61\x20"
1452                         "\x6c\x61\x72\x67\x65\x72\x20\x74"
1453                         "\x68\x61\x6e\x20\x62\x6c\x6f\x63"
1454                         "\x6b\x2d\x73\x69\x7a\x65\x20\x64"
1455                         "\x61\x74\x61\x2e\x20\x54\x68\x65"
1456                         "\x20\x6b\x65\x79\x20\x6e\x65\x65"
1457                         "\x64\x73\x20\x74\x6f\x20\x62\x65"
1458                         "\x20\x68\x61\x73\x68\x65\x64\x20"
1459                         "\x62\x65\x66\x6f\x72\x65\x20\x62"
1460                         "\x65\x69\x6e\x67\x20\x75\x73\x65"
1461                         "\x64\x20\x62\x79\x20\x74\x68\x65"
1462                         "\x20\x48\x4d\x41\x43\x20\x61\x6c"
1463                         "\x67\x6f\x72\x69\x74\x68\x6d\x2e",
1464                 .psize  = 152,
1465                 .digest = "\x3a\x85\x41\x66\xac\x5d\x9f\x02"
1466                         "\x3f\x54\xd5\x17\xd0\xb3\x9d\xbd"
1467                         "\x94\x67\x70\xdb\x9c\x2b\x95\xc9"
1468                         "\xf6\xf5\x65\xd1",
1469         },
1470 };
1471
1472 /*
1473  * HMAC-SHA256 test vectors from
1474  * draft-ietf-ipsec-ciph-sha-256-01.txt
1475  */
1476 #define HMAC_SHA256_TEST_VECTORS        10
1477
1478 static struct hash_testvec hmac_sha256_tv_template[] = {
1479         {
1480                 .key    = "\x01\x02\x03\x04\x05\x06\x07\x08"
1481                           "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1482                           "\x11\x12\x13\x14\x15\x16\x17\x18"
1483                           "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20",
1484                 .ksize  = 32,
1485                 .plaintext = "abc",
1486                 .psize  = 3,
1487                 .digest = "\xa2\x1b\x1f\x5d\x4c\xf4\xf7\x3a"
1488                           "\x4d\xd9\x39\x75\x0f\x7a\x06\x6a"
1489                           "\x7f\x98\xcc\x13\x1c\xb1\x6a\x66"
1490                           "\x92\x75\x90\x21\xcf\xab\x81\x81",
1491         }, {
1492                 .key    = "\x01\x02\x03\x04\x05\x06\x07\x08"
1493                           "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1494                           "\x11\x12\x13\x14\x15\x16\x17\x18"
1495                           "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20",
1496                 .ksize  = 32,
1497                 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
1498                 .psize  = 56,
1499                 .digest = "\x10\x4f\xdc\x12\x57\x32\x8f\x08"
1500                           "\x18\x4b\xa7\x31\x31\xc5\x3c\xae"
1501                           "\xe6\x98\xe3\x61\x19\x42\x11\x49"
1502                           "\xea\x8c\x71\x24\x56\x69\x7d\x30",
1503         }, {
1504                 .key    = "\x01\x02\x03\x04\x05\x06\x07\x08"
1505                           "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1506                           "\x11\x12\x13\x14\x15\x16\x17\x18"
1507                           "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20",
1508                 .ksize  = 32,
1509                 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq"
1510                            "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
1511                 .psize  = 112,
1512                 .digest = "\x47\x03\x05\xfc\x7e\x40\xfe\x34"
1513                           "\xd3\xee\xb3\xe7\x73\xd9\x5a\xab"
1514                           "\x73\xac\xf0\xfd\x06\x04\x47\xa5"
1515                           "\xeb\x45\x95\xbf\x33\xa9\xd1\xa3",
1516         }, {
1517                 .key    = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1518                         "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1519                         "\x0b\x0b\x0b\x0b\x0b\x0b",
1520                 .ksize  = 32,
1521                 .plaintext = "Hi There",
1522                 .psize  = 8,
1523                 .digest = "\x19\x8a\x60\x7e\xb4\x4b\xfb\xc6"
1524                           "\x99\x03\xa0\xf1\xcf\x2b\xbd\xc5"
1525                           "\xba\x0a\xa3\xf3\xd9\xae\x3c\x1c"
1526                           "\x7a\x3b\x16\x96\xa0\xb6\x8c\xf7",
1527         }, {
1528                 .key    = "Jefe",
1529                 .ksize  = 4,
1530                 .plaintext = "what do ya want for nothing?",
1531                 .psize  = 28,
1532                 .digest = "\x5b\xdc\xc1\x46\xbf\x60\x75\x4e"
1533                           "\x6a\x04\x24\x26\x08\x95\x75\xc7"
1534                           "\x5a\x00\x3f\x08\x9d\x27\x39\x83"
1535                           "\x9d\xec\x58\xb9\x64\xec\x38\x43",
1536                 .np     = 2,
1537                 .tap    = { 14, 14 }
1538         }, {
1539                 .key    = "\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",
1542                 .ksize  = 32,
1543                 .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1544                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1545                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1546                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd",
1547                 .psize  = 50,
1548                 .digest = "\xcd\xcb\x12\x20\xd1\xec\xcc\xea"
1549                           "\x91\xe5\x3a\xba\x30\x92\xf9\x62"
1550                           "\xe5\x49\xfe\x6c\xe9\xed\x7f\xdc"
1551                           "\x43\x19\x1f\xbd\xe4\x5c\x30\xb0",
1552         }, {
1553                 .key    = "\x01\x02\x03\x04\x05\x06\x07\x08"
1554                           "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1555                           "\x11\x12\x13\x14\x15\x16\x17\x18"
1556                           "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20"
1557                           "\x21\x22\x23\x24\x25",
1558                 .ksize  = 37,
1559                 .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1560                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1561                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1562                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd",
1563                 .psize  = 50,
1564                 .digest = "\xd4\x63\x3c\x17\xf6\xfb\x8d\x74"
1565                           "\x4c\x66\xde\xe0\xf8\xf0\x74\x55"
1566                           "\x6e\xc4\xaf\x55\xef\x07\x99\x85"
1567                           "\x41\x46\x8e\xb4\x9b\xd2\xe9\x17",
1568         }, {
1569                 .key    = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c"
1570                         "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c"
1571                         "\x0c\x0c\x0c\x0c\x0c\x0c",
1572                 .ksize  = 32,
1573                 .plaintext = "Test With Truncation",
1574                 .psize  = 20,
1575                 .digest = "\x75\x46\xaf\x01\x84\x1f\xc0\x9b"
1576                           "\x1a\xb9\xc3\x74\x9a\x5f\x1c\x17"
1577                           "\xd4\xf5\x89\x66\x8a\x58\x7b\x27"
1578                           "\x00\xa9\xc9\x7c\x11\x93\xcf\x42",
1579         }, {
1580                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1581                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1582                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1583                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1584                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1585                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1586                         "\xaa\xaa",
1587                 .ksize  = 80,
1588                 .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First",
1589                 .psize  = 54,
1590                 .digest = "\x69\x53\x02\x5e\xd9\x6f\x0c\x09"
1591                           "\xf8\x0a\x96\xf7\x8e\x65\x38\xdb"
1592                           "\xe2\xe7\xb8\x20\xe3\xdd\x97\x0e"
1593                           "\x7d\xdd\x39\x09\x1b\x32\x35\x2f",
1594         }, {
1595                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1596                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1597                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1598                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1599                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1600                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1601                         "\xaa\xaa",
1602                 .ksize  = 80,
1603                 .plaintext = "Test Using Larger Than Block-Size Key and Larger Than "
1604                            "One Block-Size Data",
1605                 .psize  = 73,
1606                 .digest = "\x63\x55\xac\x22\xe8\x90\xd0\xa3"
1607                           "\xc8\x48\x1a\x5c\xa4\x82\x5b\xc8"
1608                           "\x84\xd3\xe7\xa1\xff\x98\xa2\xfc"
1609                           "\x2a\xc7\xd8\xe0\x64\xc3\xb2\xe6",
1610         },
1611 };
1612
1613 #define XCBC_AES_TEST_VECTORS 6
1614
1615 static struct hash_testvec aes_xcbc128_tv_template[] = {
1616         {
1617                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
1618                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1619                 .plaintext = zeroed_string,
1620                 .digest = "\x75\xf0\x25\x1d\x52\x8a\xc0\x1c"
1621                           "\x45\x73\xdf\xd5\x84\xd7\x9f\x29",
1622                 .psize  = 0,
1623                 .ksize  = 16,
1624         }, {
1625                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
1626                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1627                 .plaintext = "\x00\x01\x02",
1628                 .digest = "\x5b\x37\x65\x80\xae\x2f\x19\xaf"
1629                           "\xe7\x21\x9c\xee\xf1\x72\x75\x6f",
1630                 .psize  = 3,
1631                 .ksize  = 16,
1632         } , {
1633                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
1634                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1635                 .plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07"
1636                              "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1637                 .digest = "\xd2\xa2\x46\xfa\x34\x9b\x68\xa7"
1638                           "\x99\x98\xa4\x39\x4f\xf7\xa2\x63",
1639                 .psize  = 16,
1640                 .ksize  = 16,
1641         }, {
1642                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
1643                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1644                 .plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07"
1645                              "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
1646                              "\x10\x11\x12\x13",
1647                 .digest = "\x47\xf5\x1b\x45\x64\x96\x62\x15"
1648                           "\xb8\x98\x5c\x63\x05\x5e\xd3\x08",
1649                 .tap    = { 10, 10 },
1650                 .psize  = 20,
1651                 .np     = 2,
1652                 .ksize  = 16,
1653         }, {
1654                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
1655                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1656                 .plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07"
1657                              "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
1658                              "\x10\x11\x12\x13\x14\x15\x16\x17"
1659                              "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
1660                 .digest = "\xf5\x4f\x0e\xc8\xd2\xb9\xf3\xd3"
1661                           "\x68\x07\x73\x4b\xd5\x28\x3f\xd4",
1662                 .psize  = 32,
1663                 .ksize  = 16,
1664         }, {
1665                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
1666                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1667                 .plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07"
1668                              "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
1669                              "\x10\x11\x12\x13\x14\x15\x16\x17"
1670                              "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
1671                              "\x20\x21",
1672                 .digest = "\xbe\xcb\xb3\xbc\xcd\xb5\x18\xa3"
1673                           "\x06\x77\xd5\x48\x1f\xb6\xb4\xd8",
1674                 .tap    = { 17, 17 },
1675                 .psize  = 34,
1676                 .np     = 2,
1677                 .ksize  = 16,
1678         }
1679 };
1680
1681 #define VMAC_AES_TEST_VECTORS   8
1682 static char vmac_string1[128] = {'\x01', '\x01', '\x01', '\x01',
1683                                 '\x02', '\x03', '\x02', '\x02',
1684                                 '\x02', '\x04', '\x01', '\x07',
1685                                 '\x04', '\x01', '\x04', '\x03',};
1686 static char vmac_string2[128] = {'a', 'b', 'c',};
1687 static char vmac_string3[128] = {'a', 'b', 'c', 'a', 'b', 'c',
1688                                 'a', 'b', 'c', 'a', 'b', 'c',
1689                                 'a', 'b', 'c', 'a', 'b', 'c',
1690                                 'a', 'b', 'c', 'a', 'b', 'c',
1691                                 'a', 'b', 'c', 'a', 'b', 'c',
1692                                 'a', 'b', 'c', 'a', 'b', 'c',
1693                                 'a', 'b', 'c', 'a', 'b', 'c',
1694                                 'a', 'b', 'c', 'a', 'b', 'c',
1695                                 };
1696
1697 static struct hash_testvec aes_vmac128_tv_template[] = {
1698         {
1699                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
1700                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1701                 .plaintext = NULL,
1702                 .digest = "\x07\x58\x80\x35\x77\xa4\x7b\x54",
1703                 .psize  = 0,
1704                 .ksize  = 16,
1705         }, {
1706                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
1707                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1708                 .plaintext = vmac_string1,
1709                 .digest = "\xce\xf5\x3c\xd3\xae\x68\x8c\xa1",
1710                 .psize  = 128,
1711                 .ksize  = 16,
1712         }, {
1713                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
1714                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1715                 .plaintext = vmac_string2,
1716                 .digest = "\xc9\x27\xb0\x73\x81\xbd\x14\x2d",
1717                 .psize  = 128,
1718                 .ksize  = 16,
1719         }, {
1720                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
1721                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1722                 .plaintext = vmac_string3,
1723                 .digest = "\x8d\x1a\x95\x8c\x98\x47\x0b\x19",
1724                 .psize  = 128,
1725                 .ksize  = 16,
1726         }, {
1727                 .key    = "abcdefghijklmnop",
1728                 .plaintext = NULL,
1729                 .digest = "\x3b\x89\xa1\x26\x9e\x55\x8f\x84",
1730                 .psize  = 0,
1731                 .ksize  = 16,
1732         }, {
1733                 .key    = "abcdefghijklmnop",
1734                 .plaintext = vmac_string1,
1735                 .digest = "\xab\x5e\xab\xb0\xf6\x8d\x74\xc2",
1736                 .psize  = 128,
1737                 .ksize  = 16,
1738         }, {
1739                 .key    = "abcdefghijklmnop",
1740                 .plaintext = vmac_string2,
1741                 .digest = "\x11\x15\x68\x42\x3d\x7b\x09\xdf",
1742                 .psize  = 128,
1743                 .ksize  = 16,
1744         }, {
1745                 .key    = "abcdefghijklmnop",
1746                 .plaintext = vmac_string3,
1747                 .digest = "\x8b\x32\x8f\xe1\xed\x8f\xfa\xd4",
1748                 .psize  = 128,
1749                 .ksize  = 16,
1750         },
1751 };
1752
1753 /*
1754  * SHA384 HMAC test vectors from RFC4231
1755  */
1756
1757 #define HMAC_SHA384_TEST_VECTORS        4
1758
1759 static struct hash_testvec hmac_sha384_tv_template[] = {
1760         {
1761                 .key    = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1762                           "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1763                           "\x0b\x0b\x0b\x0b",
1764                 .ksize  = 20,
1765                 .plaintext = "Hi There",
1766                 .psize  = 8,
1767                 .digest = "\xaf\xd0\x39\x44\xd8\x48\x95\x62"
1768                           "\x6b\x08\x25\xf4\xab\x46\x90\x7f"
1769                           "\x15\xf9\xda\xdb\xe4\x10\x1e\xc6"
1770                           "\x82\xaa\x03\x4c\x7c\xeb\xc5\x9c"
1771                           "\xfa\xea\x9e\xa9\x07\x6e\xde\x7f"
1772                           "\x4a\xf1\x52\xe8\xb2\xfa\x9c\xb6",
1773         }, {
1774                 .key    = "Jefe",
1775                 .ksize  = 4,
1776                 .plaintext = "what do ya want for nothing?",
1777                 .psize  = 28,
1778                 .digest = "\xaf\x45\xd2\xe3\x76\x48\x40\x31"
1779                           "\x61\x7f\x78\xd2\xb5\x8a\x6b\x1b"
1780                           "\x9c\x7e\xf4\x64\xf5\xa0\x1b\x47"
1781                           "\xe4\x2e\xc3\x73\x63\x22\x44\x5e"
1782                           "\x8e\x22\x40\xca\x5e\x69\xe2\xc7"
1783                           "\x8b\x32\x39\xec\xfa\xb2\x16\x49",
1784                 .np     = 4,
1785                 .tap    = { 7, 7, 7, 7 }
1786         }, {
1787                 .key    = "\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\xaa\xaa\xaa\xaa\xaa"
1794                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1795                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1796                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1797                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1798                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1799                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1800                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1801                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1802                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1803                           "\xaa\xaa\xaa",
1804                 .ksize  = 131,
1805                 .plaintext = "Test Using Larger Than Block-Siz"
1806                            "e Key - Hash Key First",
1807                 .psize  = 54,
1808                 .digest = "\x4e\xce\x08\x44\x85\x81\x3e\x90"
1809                           "\x88\xd2\xc6\x3a\x04\x1b\xc5\xb4"
1810                           "\x4f\x9e\xf1\x01\x2a\x2b\x58\x8f"
1811                           "\x3c\xd1\x1f\x05\x03\x3a\xc4\xc6"
1812                           "\x0c\x2e\xf6\xab\x40\x30\xfe\x82"
1813                           "\x96\x24\x8d\xf1\x63\xf4\x49\x52",
1814         }, {
1815                 .key    = "\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\xaa\xaa\xaa\xaa\xaa"
1826                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1827                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1828                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1829                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1830                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1831                           "\xaa\xaa\xaa",
1832                 .ksize  = 131,
1833                 .plaintext = "This is a test u"
1834                            "sing a larger th"
1835                            "an block-size ke"
1836                            "y and a larger t"
1837                            "han block-size d"
1838                            "ata. The key nee"
1839                            "ds to be hashed "
1840                            "before being use"
1841                            "d by the HMAC al"
1842                            "gorithm.",
1843                 .psize  = 152,
1844                 .digest = "\x66\x17\x17\x8e\x94\x1f\x02\x0d"
1845                           "\x35\x1e\x2f\x25\x4e\x8f\xd3\x2c"
1846                           "\x60\x24\x20\xfe\xb0\xb8\xfb\x9a"
1847                           "\xdc\xce\xbb\x82\x46\x1e\x99\xc5"
1848                           "\xa6\x78\xcc\x31\xe7\x99\x17\x6d"
1849                           "\x38\x60\xe6\x11\x0c\x46\x52\x3e",
1850         },
1851 };
1852
1853 /*
1854  * SHA512 HMAC test vectors from RFC4231
1855  */
1856
1857 #define HMAC_SHA512_TEST_VECTORS        4
1858
1859 static struct hash_testvec hmac_sha512_tv_template[] = {
1860         {
1861                 .key    = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1862                           "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1863                           "\x0b\x0b\x0b\x0b",
1864                 .ksize  = 20,
1865                 .plaintext = "Hi There",
1866                 .psize  = 8,
1867                 .digest = "\x87\xaa\x7c\xde\xa5\xef\x61\x9d"
1868                           "\x4f\xf0\xb4\x24\x1a\x1d\x6c\xb0"
1869                           "\x23\x79\xf4\xe2\xce\x4e\xc2\x78"
1870                           "\x7a\xd0\xb3\x05\x45\xe1\x7c\xde"
1871                           "\xda\xa8\x33\xb7\xd6\xb8\xa7\x02"
1872                           "\x03\x8b\x27\x4e\xae\xa3\xf4\xe4"
1873                           "\xbe\x9d\x91\x4e\xeb\x61\xf1\x70"
1874                           "\x2e\x69\x6c\x20\x3a\x12\x68\x54",
1875         }, {
1876                 .key    = "Jefe",
1877                 .ksize  = 4,
1878                 .plaintext = "what do ya want for nothing?",
1879                 .psize  = 28,
1880                 .digest = "\x16\x4b\x7a\x7b\xfc\xf8\x19\xe2"
1881                           "\xe3\x95\xfb\xe7\x3b\x56\xe0\xa3"
1882                           "\x87\xbd\x64\x22\x2e\x83\x1f\xd6"
1883                           "\x10\x27\x0c\xd7\xea\x25\x05\x54"
1884                           "\x97\x58\xbf\x75\xc0\x5a\x99\x4a"
1885                           "\x6d\x03\x4f\x65\xf8\xf0\xe6\xfd"
1886                           "\xca\xea\xb1\xa3\x4d\x4a\x6b\x4b"
1887                           "\x63\x6e\x07\x0a\x38\xbc\xe7\x37",
1888                 .np     = 4,
1889                 .tap    = { 7, 7, 7, 7 }
1890         }, {
1891                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1892                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1893                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1894                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1895                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1896                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1897                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1898                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1899                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1900                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1901                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1902                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1903                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1904                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1905                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1906                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1907                           "\xaa\xaa\xaa",
1908                 .ksize  = 131,
1909                 .plaintext = "Test Using Large"
1910                            "r Than Block-Siz"
1911                            "e Key - Hash Key"
1912                            " First",
1913                 .psize  = 54,
1914                 .digest = "\x80\xb2\x42\x63\xc7\xc1\xa3\xeb"
1915                         "\xb7\x14\x93\xc1\xdd\x7b\xe8\xb4"
1916                         "\x9b\x46\xd1\xf4\x1b\x4a\xee\xc1"
1917                         "\x12\x1b\x01\x37\x83\xf8\xf3\x52"
1918                         "\x6b\x56\xd0\x37\xe0\x5f\x25\x98"
1919                         "\xbd\x0f\xd2\x21\x5d\x6a\x1e\x52"
1920                         "\x95\xe6\x4f\x73\xf6\x3f\x0a\xec"
1921                         "\x8b\x91\x5a\x98\x5d\x78\x65\x98",
1922         }, {
1923                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1924                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1925                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1926                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1927                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1928                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1929                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1930                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1931                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1932                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1933                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1934                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1935                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1936                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1937                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1938                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1939                         "\xaa\xaa\xaa",
1940                 .ksize  = 131,
1941                 .plaintext =
1942                           "This is a test u"
1943                           "sing a larger th"
1944                           "an block-size ke"
1945                           "y and a larger t"
1946                           "han block-size d"
1947                           "ata. The key nee"
1948                           "ds to be hashed "
1949                           "before being use"
1950                           "d by the HMAC al"
1951                           "gorithm.",
1952                 .psize  = 152,
1953                 .digest = "\xe3\x7b\x6a\x77\x5d\xc8\x7d\xba"
1954                         "\xa4\xdf\xa9\xf9\x6e\x5e\x3f\xfd"
1955                         "\xde\xbd\x71\xf8\x86\x72\x89\x86"
1956                         "\x5d\xf5\xa3\x2d\x20\xcd\xc9\x44"
1957                         "\xb6\x02\x2c\xac\x3c\x49\x82\xb1"
1958                         "\x0d\x5e\xeb\x55\xc3\xe4\xde\x15"
1959                         "\x13\x46\x76\xfb\x6d\xe0\x44\x60"
1960                         "\x65\xc9\x74\x40\xfa\x8c\x6a\x58",
1961         },
1962 };
1963
1964 /*
1965  * DES test vectors.
1966  */
1967 #define DES_ENC_TEST_VECTORS            10
1968 #define DES_DEC_TEST_VECTORS            4
1969 #define DES_CBC_ENC_TEST_VECTORS        5
1970 #define DES_CBC_DEC_TEST_VECTORS        4
1971 #define DES3_EDE_ENC_TEST_VECTORS       3
1972 #define DES3_EDE_DEC_TEST_VECTORS       3
1973 #define DES3_EDE_CBC_ENC_TEST_VECTORS   1
1974 #define DES3_EDE_CBC_DEC_TEST_VECTORS   1
1975
1976 static struct cipher_testvec des_enc_tv_template[] = {
1977         { /* From Applied Cryptography */
1978                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1979                 .klen   = 8,
1980                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xe7",
1981                 .ilen   = 8,
1982                 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d",
1983                 .rlen   = 8,
1984         }, { /* Same key, different plaintext block */
1985                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1986                 .klen   = 8,
1987                 .input  = "\x22\x33\x44\x55\x66\x77\x88\x99",
1988                 .ilen   = 8,
1989                 .result = "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b",
1990                 .rlen   = 8,
1991         }, { /* Sbox test from NBS */
1992                 .key    = "\x7c\xa1\x10\x45\x4a\x1a\x6e\x57",
1993                 .klen   = 8,
1994                 .input  = "\x01\xa1\xd6\xd0\x39\x77\x67\x42",
1995                 .ilen   = 8,
1996                 .result = "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b",
1997                 .rlen   = 8,
1998         }, { /* Three blocks */
1999                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2000                 .klen   = 8,
2001                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
2002                           "\x22\x33\x44\x55\x66\x77\x88\x99"
2003                           "\xca\xfe\xba\xbe\xfe\xed\xbe\xef",
2004                 .ilen   = 24,
2005                 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
2006                           "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b"
2007                           "\xb4\x99\x26\xf7\x1f\xe1\xd4\x90",
2008                 .rlen   = 24,
2009         }, { /* Weak key */
2010                 .fail   = 1,
2011                 .wk     = 1,
2012                 .key    = "\x01\x01\x01\x01\x01\x01\x01\x01",
2013                 .klen   = 8,
2014                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xe7",
2015                 .ilen   = 8,
2016                 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d",
2017                 .rlen   = 8,
2018         }, { /* Two blocks -- for testing encryption across pages */
2019                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2020                 .klen   = 8,
2021                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
2022                           "\x22\x33\x44\x55\x66\x77\x88\x99",
2023                 .ilen   = 16,
2024                 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
2025                           "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b",
2026                 .rlen   = 16,
2027                 .np     = 2,
2028                 .tap    = { 8, 8 }
2029         }, { /* Four blocks -- for testing encryption with chunking */
2030                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2031                 .klen   = 8,
2032                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
2033                           "\x22\x33\x44\x55\x66\x77\x88\x99"
2034                           "\xca\xfe\xba\xbe\xfe\xed\xbe\xef"
2035                           "\x22\x33\x44\x55\x66\x77\x88\x99",
2036                 .ilen   = 32,
2037                 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
2038                           "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b"
2039                           "\xb4\x99\x26\xf7\x1f\xe1\xd4\x90"
2040                           "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b",
2041                 .rlen   = 32,
2042                 .np     = 3,
2043                 .tap    = { 14, 10, 8 }
2044         }, {
2045                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2046                 .klen   = 8,
2047                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
2048                           "\x22\x33\x44\x55\x66\x77\x88\x99"
2049                           "\xca\xfe\xba\xbe\xfe\xed\xbe\xef",
2050                 .ilen   = 24,
2051                 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
2052                           "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b"
2053                           "\xb4\x99\x26\xf7\x1f\xe1\xd4\x90",
2054                 .rlen   = 24,
2055                 .np     = 4,
2056                 .tap    = { 2, 1, 3, 18 }
2057         }, {
2058                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2059                 .klen   = 8,
2060                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
2061                           "\x22\x33\x44\x55\x66\x77\x88\x99",
2062                 .ilen   = 16,
2063                 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
2064                           "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b",
2065                 .rlen   = 16,
2066                 .np     = 5,
2067                 .tap    = { 2, 2, 2, 2, 8 }
2068         }, {
2069                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2070                 .klen   = 8,
2071                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xe7",
2072                 .ilen   = 8,
2073                 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d",
2074                 .rlen   = 8,
2075                 .np     = 8,
2076                 .tap    = { 1, 1, 1, 1, 1, 1, 1, 1 }
2077         },
2078 };
2079
2080 static struct cipher_testvec des_dec_tv_template[] = {
2081         { /* From Applied Cryptography */
2082                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2083                 .klen   = 8,
2084                 .input  = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d",
2085                 .ilen   = 8,
2086                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xe7",
2087                 .rlen   = 8,
2088         }, { /* Sbox test from NBS */
2089                 .key    = "\x7c\xa1\x10\x45\x4a\x1a\x6e\x57",
2090                 .klen   = 8,
2091                 .input  = "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b",
2092                 .ilen   = 8,
2093                 .result = "\x01\xa1\xd6\xd0\x39\x77\x67\x42",
2094                 .rlen   = 8,
2095         }, { /* Two blocks, for chunking test */
2096                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2097                 .klen   = 8,
2098                 .input  = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
2099                           "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b",
2100                 .ilen   = 16,
2101                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
2102                           "\xa3\x99\x7b\xca\xaf\x69\xa0\xf5",
2103                 .rlen   = 16,
2104                 .np     = 2,
2105                 .tap    = { 8, 8 }
2106         }, {
2107                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2108                 .klen   = 8,
2109                 .input  = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
2110                           "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b",
2111                 .ilen   = 16,
2112                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
2113                           "\xa3\x99\x7b\xca\xaf\x69\xa0\xf5",
2114                 .rlen   = 16,
2115                 .np     = 3,
2116                 .tap    = { 3, 12, 1 }
2117         },
2118 };
2119
2120 static struct cipher_testvec des_cbc_enc_tv_template[] = {
2121         { /* From OpenSSL */
2122                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2123                 .klen   = 8,
2124                 .iv     = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2125                 .input  = "\x37\x36\x35\x34\x33\x32\x31\x20"
2126                           "\x4e\x6f\x77\x20\x69\x73\x20\x74"
2127                           "\x68\x65\x20\x74\x69\x6d\x65\x20",
2128                 .ilen   = 24,
2129                 .result = "\xcc\xd1\x73\xff\xab\x20\x39\xf4"
2130                           "\xac\xd8\xae\xfd\xdf\xd8\xa1\xeb"
2131                           "\x46\x8e\x91\x15\x78\x88\xba\x68",
2132                 .rlen   = 24,
2133         }, { /* FIPS Pub 81 */
2134                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2135                 .klen   = 8,
2136                 .iv     = "\x12\x34\x56\x78\x90\xab\xcd\xef",
2137                 .input  = "\x4e\x6f\x77\x20\x69\x73\x20\x74",
2138                 .ilen   = 8,
2139                 .result = "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c",
2140                 .rlen   = 8,
2141         }, {
2142                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2143                 .klen   = 8,
2144                 .iv     = "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c",
2145                 .input  = "\x68\x65\x20\x74\x69\x6d\x65\x20",
2146                 .ilen   = 8,
2147                 .result = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f",
2148                 .rlen   = 8,
2149         }, {
2150                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2151                 .klen   = 8,
2152                 .iv     = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f",
2153                 .input  = "\x66\x6f\x72\x20\x61\x6c\x6c\x20",
2154                 .ilen   = 8,
2155                 .result = "\x68\x37\x88\x49\x9a\x7c\x05\xf6",
2156                 .rlen   = 8,
2157         }, { /* Copy of openssl vector for chunk testing */
2158              /* From OpenSSL */
2159                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2160                 .klen   = 8,
2161                 .iv     = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2162                 .input  = "\x37\x36\x35\x34\x33\x32\x31\x20"
2163                           "\x4e\x6f\x77\x20\x69\x73\x20\x74"
2164                           "\x68\x65\x20\x74\x69\x6d\x65\x20",
2165                 .ilen   = 24,
2166                 .result = "\xcc\xd1\x73\xff\xab\x20\x39\xf4"
2167                           "\xac\xd8\xae\xfd\xdf\xd8\xa1\xeb"
2168                           "\x46\x8e\x91\x15\x78\x88\xba\x68",
2169                 .rlen   = 24,
2170                 .np     = 2,
2171                 .tap    = { 13, 11 }
2172         },
2173 };
2174
2175 static struct cipher_testvec des_cbc_dec_tv_template[] = {
2176         { /* FIPS Pub 81 */
2177                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2178                 .klen   = 8,
2179                 .iv     = "\x12\x34\x56\x78\x90\xab\xcd\xef",
2180                 .input  = "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c",
2181                 .ilen   = 8,
2182                 .result = "\x4e\x6f\x77\x20\x69\x73\x20\x74",
2183                 .rlen   = 8,
2184         }, {
2185                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2186                 .klen   = 8,
2187                 .iv     = "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c",
2188                 .input  = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f",
2189                 .ilen   = 8,
2190                 .result = "\x68\x65\x20\x74\x69\x6d\x65\x20",
2191                 .rlen   = 8,
2192         }, {
2193                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2194                 .klen   = 8,
2195                 .iv     = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f",
2196                 .input  = "\x68\x37\x88\x49\x9a\x7c\x05\xf6",
2197                 .ilen   = 8,
2198                 .result = "\x66\x6f\x72\x20\x61\x6c\x6c\x20",
2199                 .rlen   = 8,
2200         }, { /* Copy of above, for chunk testing */
2201                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2202                 .klen   = 8,
2203                 .iv     = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f",
2204                 .input  = "\x68\x37\x88\x49\x9a\x7c\x05\xf6",
2205                 .ilen   = 8,
2206                 .result = "\x66\x6f\x72\x20\x61\x6c\x6c\x20",
2207                 .rlen   = 8,
2208                 .np     = 2,
2209                 .tap    = { 4, 4 }
2210         },
2211 };
2212
2213 static struct cipher_testvec des3_ede_enc_tv_template[] = {
2214         { /* These are from openssl */
2215                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2216                           "\x55\x55\x55\x55\x55\x55\x55\x55"
2217                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2218                 .klen   = 24,
2219                 .input  = "\x73\x6f\x6d\x65\x64\x61\x74\x61",
2220                 .ilen   = 8,
2221                 .result = "\x18\xd7\x48\xe5\x63\x62\x05\x72",
2222                 .rlen   = 8,
2223         }, {
2224                 .key    = "\x03\x52\x02\x07\x67\x20\x82\x17"
2225                           "\x86\x02\x87\x66\x59\x08\x21\x98"
2226                           "\x64\x05\x6a\xbd\xfe\xa9\x34\x57",
2227                 .klen   = 24,
2228                 .input  = "\x73\x71\x75\x69\x67\x67\x6c\x65",
2229                 .ilen   = 8,
2230                 .result = "\xc0\x7d\x2a\x0f\xa5\x66\xfa\x30",
2231                 .rlen   = 8,
2232         }, {
2233                 .key    = "\x10\x46\x10\x34\x89\x98\x80\x20"
2234                           "\x91\x07\xd0\x15\x89\x19\x01\x01"
2235                           "\x19\x07\x92\x10\x98\x1a\x01\x01",
2236                 .klen   = 24,
2237                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00",
2238                 .ilen   = 8,
2239                 .result = "\xe1\xef\x62\xc3\x32\xfe\x82\x5b",
2240                 .rlen   = 8,
2241         },
2242 };
2243
2244 static struct cipher_testvec des3_ede_dec_tv_template[] = {
2245         { /* These are from openssl */
2246                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2247                           "\x55\x55\x55\x55\x55\x55\x55\x55"
2248                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2249                 .klen   = 24,
2250                 .input  = "\x18\xd7\x48\xe5\x63\x62\x05\x72",
2251                 .ilen   = 8,
2252                 .result = "\x73\x6f\x6d\x65\x64\x61\x74\x61",
2253                 .rlen   = 8,
2254         }, {
2255                 .key    = "\x03\x52\x02\x07\x67\x20\x82\x17"
2256                           "\x86\x02\x87\x66\x59\x08\x21\x98"
2257                           "\x64\x05\x6a\xbd\xfe\xa9\x34\x57",
2258                 .klen   = 24,
2259                 .input  = "\xc0\x7d\x2a\x0f\xa5\x66\xfa\x30",
2260                 .ilen   = 8,
2261                 .result = "\x73\x71\x75\x69\x67\x67\x6c\x65",
2262                 .rlen   = 8,
2263         }, {
2264                 .key    = "\x10\x46\x10\x34\x89\x98\x80\x20"
2265                           "\x91\x07\xd0\x15\x89\x19\x01\x01"
2266                           "\x19\x07\x92\x10\x98\x1a\x01\x01",
2267                 .klen   = 24,
2268                 .input  = "\xe1\xef\x62\xc3\x32\xfe\x82\x5b",
2269                 .ilen   = 8,
2270                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
2271                 .rlen   = 8,
2272         },
2273 };
2274
2275 static struct cipher_testvec des3_ede_cbc_enc_tv_template[] = {
2276         { /* Generated from openssl */
2277                 .key    = "\xE9\xC0\xFF\x2E\x76\x0B\x64\x24"
2278                           "\x44\x4D\x99\x5A\x12\xD6\x40\xC0"
2279                           "\xEA\xC2\x84\xE8\x14\x95\xDB\xE8",
2280                 .klen   = 24,
2281                 .iv     = "\x7D\x33\x88\x93\x0F\x93\xB2\x42",
2282                 .input  = "\x6f\x54\x20\x6f\x61\x4d\x79\x6e"
2283                           "\x53\x20\x63\x65\x65\x72\x73\x74"
2284                           "\x54\x20\x6f\x6f\x4d\x20\x6e\x61"
2285                           "\x20\x79\x65\x53\x72\x63\x74\x65"
2286                           "\x20\x73\x6f\x54\x20\x6f\x61\x4d"
2287                           "\x79\x6e\x53\x20\x63\x65\x65\x72"
2288                           "\x73\x74\x54\x20\x6f\x6f\x4d\x20"
2289                           "\x6e\x61\x20\x79\x65\x53\x72\x63"
2290                           "\x74\x65\x20\x73\x6f\x54\x20\x6f"
2291                           "\x61\x4d\x79\x6e\x53\x20\x63\x65"
2292                           "\x65\x72\x73\x74\x54\x20\x6f\x6f"
2293                           "\x4d\x20\x6e\x61\x20\x79\x65\x53"
2294                           "\x72\x63\x74\x65\x20\x73\x6f\x54"
2295                           "\x20\x6f\x61\x4d\x79\x6e\x53\x20"
2296                           "\x63\x65\x65\x72\x73\x74\x54\x20"
2297                           "\x6f\x6f\x4d\x20\x6e\x61\x0a\x79",
2298                 .ilen   = 128,
2299                 .result = "\x0e\x2d\xb6\x97\x3c\x56\x33\xf4"
2300                           "\x67\x17\x21\xc7\x6e\x8a\xd5\x49"
2301                           "\x74\xb3\x49\x05\xc5\x1c\xd0\xed"
2302                           "\x12\x56\x5c\x53\x96\xb6\x00\x7d"
2303                           "\x90\x48\xfc\xf5\x8d\x29\x39\xcc"
2304                           "\x8a\xd5\x35\x18\x36\x23\x4e\xd7"
2305                           "\x76\xd1\xda\x0c\x94\x67\xbb\x04"
2306                           "\x8b\xf2\x03\x6c\xa8\xcf\xb6\xea"
2307                           "\x22\x64\x47\xaa\x8f\x75\x13\xbf"
2308                           "\x9f\xc2\xc3\xf0\xc9\x56\xc5\x7a"
2309                           "\x71\x63\x2e\x89\x7b\x1e\x12\xca"
2310                           "\xe2\x5f\xaf\xd8\xa4\xf8\xc9\x7a"
2311                           "\xd6\xf9\x21\x31\x62\x44\x45\xa6"
2312                           "\xd6\xbc\x5a\xd3\x2d\x54\x43\xcc"
2313                           "\x9d\xde\xa5\x70\xe9\x42\x45\x8a"
2314                           "\x6b\xfa\xb1\x91\x13\xb0\xd9\x19",
2315                 .rlen   = 128,
2316         },
2317 };
2318
2319 static struct cipher_testvec des3_ede_cbc_dec_tv_template[] = {
2320         { /* Generated from openssl */
2321                 .key    = "\xE9\xC0\xFF\x2E\x76\x0B\x64\x24"
2322                           "\x44\x4D\x99\x5A\x12\xD6\x40\xC0"
2323                           "\xEA\xC2\x84\xE8\x14\x95\xDB\xE8",
2324                 .klen   = 24,
2325                 .iv     = "\x7D\x33\x88\x93\x0F\x93\xB2\x42",
2326                 .input  = "\x0e\x2d\xb6\x97\x3c\x56\x33\xf4"
2327                           "\x67\x17\x21\xc7\x6e\x8a\xd5\x49"
2328                           "\x74\xb3\x49\x05\xc5\x1c\xd0\xed"
2329                           "\x12\x56\x5c\x53\x96\xb6\x00\x7d"
2330                           "\x90\x48\xfc\xf5\x8d\x29\x39\xcc"
2331                           "\x8a\xd5\x35\x18\x36\x23\x4e\xd7"
2332                           "\x76\xd1\xda\x0c\x94\x67\xbb\x04"
2333                           "\x8b\xf2\x03\x6c\xa8\xcf\xb6\xea"
2334                           "\x22\x64\x47\xaa\x8f\x75\x13\xbf"
2335                           "\x9f\xc2\xc3\xf0\xc9\x56\xc5\x7a"
2336                           "\x71\x63\x2e\x89\x7b\x1e\x12\xca"
2337                           "\xe2\x5f\xaf\xd8\xa4\xf8\xc9\x7a"
2338                           "\xd6\xf9\x21\x31\x62\x44\x45\xa6"
2339                           "\xd6\xbc\x5a\xd3\x2d\x54\x43\xcc"
2340                           "\x9d\xde\xa5\x70\xe9\x42\x45\x8a"
2341                           "\x6b\xfa\xb1\x91\x13\xb0\xd9\x19",
2342                 .ilen   = 128,
2343                 .result = "\x6f\x54\x20\x6f\x61\x4d\x79\x6e"
2344                           "\x53\x20\x63\x65\x65\x72\x73\x74"
2345                           "\x54\x20\x6f\x6f\x4d\x20\x6e\x61"
2346                           "\x20\x79\x65\x53\x72\x63\x74\x65"
2347                           "\x20\x73\x6f\x54\x20\x6f\x61\x4d"
2348                           "\x79\x6e\x53\x20\x63\x65\x65\x72"
2349                           "\x73\x74\x54\x20\x6f\x6f\x4d\x20"
2350                           "\x6e\x61\x20\x79\x65\x53\x72\x63"
2351                           "\x74\x65\x20\x73\x6f\x54\x20\x6f"
2352                           "\x61\x4d\x79\x6e\x53\x20\x63\x65"
2353                           "\x65\x72\x73\x74\x54\x20\x6f\x6f"
2354                           "\x4d\x20\x6e\x61\x20\x79\x65\x53"
2355                           "\x72\x63\x74\x65\x20\x73\x6f\x54"
2356                           "\x20\x6f\x61\x4d\x79\x6e\x53\x20"
2357                           "\x63\x65\x65\x72\x73\x74\x54\x20"
2358                           "\x6f\x6f\x4d\x20\x6e\x61\x0a\x79",
2359                 .rlen   = 128,
2360         },
2361 };
2362
2363 /*
2364  * Blowfish test vectors.
2365  */
2366 #define BF_ENC_TEST_VECTORS     6
2367 #define BF_DEC_TEST_VECTORS     6
2368 #define BF_CBC_ENC_TEST_VECTORS 1
2369 #define BF_CBC_DEC_TEST_VECTORS 1
2370
2371 static struct cipher_testvec bf_enc_tv_template[] = {
2372         { /* DES test vectors from OpenSSL */
2373                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00",
2374                 .klen   = 8,
2375                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00",
2376                 .ilen   = 8,
2377                 .result = "\x4e\xf9\x97\x45\x61\x98\xdd\x78",
2378                 .rlen   = 8,
2379         }, {
2380                 .key    = "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e",
2381                 .klen   = 8,
2382                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2383                 .ilen   = 8,
2384                 .result = "\xa7\x90\x79\x51\x08\xea\x3c\xae",
2385                 .rlen   = 8,
2386         }, {
2387                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
2388                 .klen   = 8,
2389                 .input  = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2390                 .ilen   = 8,
2391                 .result = "\xe8\x7a\x24\x4e\x2c\xc8\x5e\x82",
2392                 .rlen   = 8,
2393         }, { /* Vary the keylength... */
2394                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2395                           "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f",
2396                 .klen   = 16,
2397                 .input  = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2398                 .ilen   = 8,
2399                 .result = "\x93\x14\x28\x87\xee\x3b\xe1\x5c",
2400                 .rlen   = 8,
2401         }, {
2402                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2403                           "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f"
2404                           "\x00\x11\x22\x33\x44",
2405                 .klen   = 21,
2406                 .input  = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2407                 .ilen   = 8,
2408                 .result = "\xe6\xf5\x1e\xd7\x9b\x9d\xb2\x1f",
2409                 .rlen   = 8,
2410         }, { /* Generated with bf488 */
2411                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2412                           "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f"
2413                           "\x00\x11\x22\x33\x44\x55\x66\x77"
2414                           "\x04\x68\x91\x04\xc2\xfd\x3b\x2f"
2415                           "\x58\x40\x23\x64\x1a\xba\x61\x76"
2416                           "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e"
2417                           "\xff\xff\xff\xff\xff\xff\xff\xff",
2418                 .klen   = 56,
2419                 .input  = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2420                 .ilen   = 8,
2421                 .result = "\xc0\x45\x04\x01\x2e\x4e\x1f\x53",
2422                 .rlen   = 8,
2423         },
2424 };
2425
2426 static struct cipher_testvec bf_dec_tv_template[] = {
2427         { /* DES test vectors from OpenSSL */
2428                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00",
2429                 .klen   = 8,
2430                 .input  = "\x4e\xf9\x97\x45\x61\x98\xdd\x78",
2431                 .ilen   = 8,
2432                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
2433                 .rlen   = 8,
2434         }, {
2435                 .key    = "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e",
2436                 .klen   = 8,
2437                 .input  = "\xa7\x90\x79\x51\x08\xea\x3c\xae",
2438                 .ilen   = 8,
2439                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2440                 .rlen   = 8,
2441         }, {
2442                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
2443                 .klen   = 8,
2444                 .input  = "\xe8\x7a\x24\x4e\x2c\xc8\x5e\x82",
2445                 .ilen   = 8,
2446                 .result = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2447                 .rlen   = 8,
2448         }, { /* Vary the keylength... */
2449                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2450                           "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f",
2451                 .klen   = 16,
2452                 .input  = "\x93\x14\x28\x87\xee\x3b\xe1\x5c",
2453                 .ilen   = 8,
2454                 .result = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2455                 .rlen   = 8,
2456         }, {
2457                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2458                           "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f"
2459                           "\x00\x11\x22\x33\x44",
2460                 .klen   = 21,
2461                 .input  = "\xe6\xf5\x1e\xd7\x9b\x9d\xb2\x1f",
2462                 .ilen   = 8,
2463                 .result = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2464                 .rlen   = 8,
2465         }, { /* Generated with bf488, using OpenSSL, Libgcrypt and Nettle */
2466                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2467                           "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f"
2468                           "\x00\x11\x22\x33\x44\x55\x66\x77"
2469                           "\x04\x68\x91\x04\xc2\xfd\x3b\x2f"
2470                           "\x58\x40\x23\x64\x1a\xba\x61\x76"
2471                           "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e"
2472                           "\xff\xff\xff\xff\xff\xff\xff\xff",
2473                 .klen   = 56,
2474                 .input  = "\xc0\x45\x04\x01\x2e\x4e\x1f\x53",
2475                 .ilen   = 8,
2476                 .result = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2477                 .rlen   = 8,
2478         },
2479 };
2480
2481 static struct cipher_testvec bf_cbc_enc_tv_template[] = {
2482         { /* From OpenSSL */
2483                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2484                           "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
2485                 .klen   = 16,
2486                 .iv     = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2487                 .input  = "\x37\x36\x35\x34\x33\x32\x31\x20"
2488                           "\x4e\x6f\x77\x20\x69\x73\x20\x74"
2489                           "\x68\x65\x20\x74\x69\x6d\x65\x20"
2490                           "\x66\x6f\x72\x20\x00\x00\x00\x00",
2491                 .ilen   = 32,
2492                 .result = "\x6b\x77\xb4\xd6\x30\x06\xde\xe6"
2493                           "\x05\xb1\x56\xe2\x74\x03\x97\x93"
2494                           "\x58\xde\xb9\xe7\x15\x46\x16\xd9"
2495                           "\x59\xf1\x65\x2b\xd5\xff\x92\xcc",
2496                 .rlen   = 32,
2497         },
2498 };
2499
2500 static struct cipher_testvec bf_cbc_dec_tv_template[] = {
2501         { /* From OpenSSL */
2502                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2503                           "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
2504                 .klen   = 16,
2505                 .iv     = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2506                 .input  = "\x6b\x77\xb4\xd6\x30\x06\xde\xe6"
2507                           "\x05\xb1\x56\xe2\x74\x03\x97\x93"
2508                           "\x58\xde\xb9\xe7\x15\x46\x16\xd9"
2509                           "\x59\xf1\x65\x2b\xd5\xff\x92\xcc",
2510                 .ilen   = 32,
2511                 .result = "\x37\x36\x35\x34\x33\x32\x31\x20"
2512                           "\x4e\x6f\x77\x20\x69\x73\x20\x74"
2513                           "\x68\x65\x20\x74\x69\x6d\x65\x20"
2514                           "\x66\x6f\x72\x20\x00\x00\x00\x00",
2515                 .rlen   = 32,
2516         },
2517 };
2518
2519 /*
2520  * Twofish test vectors.
2521  */
2522 #define TF_ENC_TEST_VECTORS             3
2523 #define TF_DEC_TEST_VECTORS             3
2524 #define TF_CBC_ENC_TEST_VECTORS         4
2525 #define TF_CBC_DEC_TEST_VECTORS         4
2526
2527 static struct cipher_testvec tf_enc_tv_template[] = {
2528         {
2529                 .key    = zeroed_string,
2530                 .klen   = 16,
2531                 .input  = zeroed_string,
2532                 .ilen   = 16,
2533                 .result = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2534                           "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2535                 .rlen   = 16,
2536         }, {
2537                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2538                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
2539                           "\x00\x11\x22\x33\x44\x55\x66\x77",
2540                 .klen   = 24,
2541                 .input  = zeroed_string,
2542                 .ilen   = 16,
2543                 .result = "\xcf\xd1\xd2\xe5\xa9\xbe\x9c\xdf"
2544                           "\x50\x1f\x13\xb8\x92\xbd\x22\x48",
2545                 .rlen   = 16,
2546         }, {
2547                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2548                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
2549                           "\x00\x11\x22\x33\x44\x55\x66\x77"
2550                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2551                 .klen   = 32,
2552                 .input  = zeroed_string,
2553                 .ilen   = 16,
2554                 .result = "\x37\x52\x7b\xe0\x05\x23\x34\xb8"
2555                           "\x9f\x0c\xfc\xca\xe8\x7c\xfa\x20",
2556                 .rlen   = 16,
2557         },
2558 };
2559
2560 static struct cipher_testvec tf_dec_tv_template[] = {
2561         {
2562                 .key    = zeroed_string,
2563                 .klen   = 16,
2564                 .input  = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2565                           "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2566                 .ilen   = 16,
2567                 .result = zeroed_string,
2568                 .rlen   = 16,
2569         }, {
2570                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2571                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
2572                           "\x00\x11\x22\x33\x44\x55\x66\x77",
2573                 .klen   = 24,
2574                 .input  = "\xcf\xd1\xd2\xe5\xa9\xbe\x9c\xdf"
2575                           "\x50\x1f\x13\xb8\x92\xbd\x22\x48",
2576                 .ilen   = 16,
2577                 .result = zeroed_string,
2578                 .rlen   = 16,
2579         }, {
2580                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2581                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
2582                           "\x00\x11\x22\x33\x44\x55\x66\x77"
2583                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2584                 .klen   = 32,
2585                 .input  = "\x37\x52\x7b\xe0\x05\x23\x34\xb8"
2586                           "\x9f\x0c\xfc\xca\xe8\x7c\xfa\x20",
2587                 .ilen   = 16,
2588                 .result = zeroed_string,
2589                 .rlen   = 16,
2590         },
2591 };
2592
2593 static struct cipher_testvec tf_cbc_enc_tv_template[] = {
2594         { /* Generated with Nettle */
2595                 .key    = zeroed_string,
2596                 .klen   = 16,
2597                 .iv     = zeroed_string,
2598                 .input  = zeroed_string,
2599                 .ilen   = 16,
2600                 .result = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2601                           "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2602                 .rlen   = 16,
2603         }, {
2604                 .key    = zeroed_string,
2605                 .klen   = 16,
2606                 .iv     = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2607                           "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2608                 .input  = zeroed_string,
2609                 .ilen   = 16,
2610                 .result = "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2611                           "\x86\xcb\x08\x6b\x78\x9f\x54\x19",
2612                 .rlen   = 16,
2613         }, {
2614                 .key    = zeroed_string,
2615                 .klen   = 16,
2616                 .iv     = "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2617                           "\x86\xcb\x08\x6b\x78\x9f\x54\x19",
2618                 .input  = zeroed_string,
2619                 .ilen   = 16,
2620                 .result = "\x05\xef\x8c\x61\xa8\x11\x58\x26"
2621                           "\x34\xba\x5c\xb7\x10\x6a\xa6\x41",
2622                 .rlen   = 16,
2623         }, {
2624                 .key    = zeroed_string,
2625                 .klen   = 16,
2626                 .iv     = zeroed_string,
2627                 .input  = zeroed_string,
2628                 .ilen   = 48,
2629                 .result = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2630                           "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a"
2631                           "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2632                           "\x86\xcb\x08\x6b\x78\x9f\x54\x19"
2633                           "\x05\xef\x8c\x61\xa8\x11\x58\x26"
2634                           "\x34\xba\x5c\xb7\x10\x6a\xa6\x41",
2635                 .rlen   = 48,
2636         },
2637 };
2638
2639 static struct cipher_testvec tf_cbc_dec_tv_template[] = {
2640         { /* Reverse of the first four above */
2641                 .key    = zeroed_string,
2642                 .klen   = 16,
2643                 .iv     = zeroed_string,
2644                 .input  = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2645                           "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2646                 .ilen   = 16,
2647                 .result = zeroed_string,
2648                 .rlen   = 16,
2649         }, {
2650                 .key    = zeroed_string,
2651                 .klen   = 16,
2652                 .iv     = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2653                           "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2654                 .input  = "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2655                           "\x86\xcb\x08\x6b\x78\x9f\x54\x19",
2656                 .ilen   = 16,
2657                 .result = zeroed_string,
2658                 .rlen   = 16,
2659         }, {
2660                 .key    = zeroed_string,
2661                 .klen   = 16,
2662                 .iv     = "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2663                           "\x86\xcb\x08\x6b\x78\x9f\x54\x19",
2664                 .input  = "\x05\xef\x8c\x61\xa8\x11\x58\x26"
2665                           "\x34\xba\x5c\xb7\x10\x6a\xa6\x41",
2666                 .ilen   = 16,
2667                 .result = zeroed_string,
2668                 .rlen   = 16,
2669         }, {
2670                 .key    = zeroed_string,
2671                 .klen   = 16,
2672                 .iv     = zeroed_string,
2673                 .input  = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2674                           "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a"
2675                           "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2676                           "\x86\xcb\x08\x6b\x78\x9f\x54\x19"
2677                           "\x05\xef\x8c\x61\xa8\x11\x58\x26"
2678                           "\x34\xba\x5c\xb7\x10\x6a\xa6\x41",
2679                 .ilen   = 48,
2680                 .result = zeroed_string,
2681                 .rlen   = 48,
2682         },
2683 };
2684
2685 /*
2686  * Serpent test vectors.  These are backwards because Serpent writes
2687  * octet sequences in right-to-left mode.
2688  */
2689 #define SERPENT_ENC_TEST_VECTORS        4
2690 #define SERPENT_DEC_TEST_VECTORS        4
2691
2692 #define TNEPRES_ENC_TEST_VECTORS        4
2693 #define TNEPRES_DEC_TEST_VECTORS        4
2694
2695 static struct cipher_testvec serpent_enc_tv_template[] = {
2696         {
2697                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
2698                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2699                 .ilen   = 16,
2700                 .result = "\x12\x07\xfc\xce\x9b\xd0\xd6\x47"
2701                           "\x6a\xe9\x8f\xbe\xd1\x43\xa0\xe2",
2702                 .rlen   = 16,
2703         }, {
2704                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2705                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2706                 .klen   = 16,
2707                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
2708                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2709                 .ilen   = 16,
2710                 .result = "\x4c\x7d\x8a\x32\x80\x72\xa2\x2c"
2711                           "\x82\x3e\x4a\x1f\x3a\xcd\xa1\x6d",
2712                 .rlen   = 16,
2713         }, {
2714                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2715                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2716                           "\x10\x11\x12\x13\x14\x15\x16\x17"
2717                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2718                 .klen   = 32,
2719                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
2720                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2721                 .ilen   = 16,
2722                 .result = "\xde\x26\x9f\xf8\x33\xe4\x32\xb8"
2723                           "\x5b\x2e\x88\xd2\x70\x1c\xe7\x5c",
2724                 .rlen   = 16,
2725         }, {
2726                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80",
2727                 .klen   = 16,
2728                 .input  = zeroed_string,
2729                 .ilen   = 16,
2730                 .result = "\xdd\xd2\x6b\x98\xa5\xff\xd8\x2c"
2731                           "\x05\x34\x5a\x9d\xad\xbf\xaf\x49",
2732                 .rlen   = 16,
2733         },
2734 };
2735
2736 static struct cipher_testvec tnepres_enc_tv_template[] = {
2737         { /* KeySize=128, PT=0, I=1 */
2738                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
2739                           "\x00\x00\x00\x00\x00\x00\x00\x00",
2740                 .key    = "\x80\x00\x00\x00\x00\x00\x00\x00"
2741                           "\x00\x00\x00\x00\x00\x00\x00\x00",
2742                 .klen   = 16,
2743                 .ilen   = 16,
2744                 .result = "\x49\xaf\xbf\xad\x9d\x5a\x34\x05"
2745                           "\x2c\xd8\xff\xa5\x98\x6b\xd2\xdd",
2746                 .rlen   = 16,
2747         }, { /* KeySize=192, PT=0, I=1 */
2748                 .key    = "\x80\x00\x00\x00\x00\x00\x00\x00"
2749                           "\x00\x00\x00\x00\x00\x00\x00\x00"
2750                           "\x00\x00\x00\x00\x00\x00\x00\x00",
2751                 .klen   = 24,
2752                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
2753                           "\x00\x00\x00\x00\x00\x00\x00\x00",
2754                 .ilen   = 16,
2755                 .result = "\xe7\x8e\x54\x02\xc7\x19\x55\x68"
2756                           "\xac\x36\x78\xf7\xa3\xf6\x0c\x66",
2757                 .rlen   = 16,
2758         }, { /* KeySize=256, PT=0, I=1 */
2759                 .key    = "\x80\x00\x00\x00\x00\x00\x00\x00"
2760                           "\x00\x00\x00\x00\x00\x00\x00\x00"
2761                           "\x00\x00\x00\x00\x00\x00\x00\x00"
2762                           "\x00\x00\x00\x00\x00\x00\x00\x00",
2763                 .klen   = 32,
2764                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
2765                           "\x00\x00\x00\x00\x00\x00\x00\x00",
2766                 .ilen   = 16,
2767                 .result = "\xab\xed\x96\xe7\x66\xbf\x28\xcb"
2768                           "\xc0\xeb\xd2\x1a\x82\xef\x08\x19",
2769                 .rlen   = 16,
2770         }, { /* KeySize=256, I=257 */
2771                 .key    = "\x1f\x1e\x1d\x1c\x1b\x1a\x19\x18"
2772                           "\x17\x16\x15\x14\x13\x12\x11\x10"
2773                           "\x0f\x0e\x0d\x0c\x0b\x0a\x09\x08"
2774                           "\x07\x06\x05\x04\x03\x02\x01\x00",
2775                 .klen   = 32,
2776                 .input  = "\x0f\x0e\x0d\x0c\x0b\x0a\x09\x08"
2777                           "\x07\x06\x05\x04\x03\x02\x01\x00",
2778                 .ilen   = 16,
2779                 .result = "\x5c\xe7\x1c\x70\xd2\x88\x2e\x5b"
2780                           "\xb8\x32\xe4\x33\xf8\x9f\x26\xde",
2781                 .rlen   = 16,
2782         },
2783 };
2784
2785
2786 static struct cipher_testvec serpent_dec_tv_template[] = {
2787         {
2788                 .input  = "\x12\x07\xfc\xce\x9b\xd0\xd6\x47"
2789                           "\x6a\xe9\x8f\xbe\xd1\x43\xa0\xe2",
2790                 .ilen   = 16,
2791                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
2792                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2793                 .rlen   = 16,
2794         }, {
2795                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2796                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2797                 .klen   = 16,
2798                 .input  = "\x4c\x7d\x8a\x32\x80\x72\xa2\x2c"
2799                           "\x82\x3e\x4a\x1f\x3a\xcd\xa1\x6d",
2800                 .ilen   = 16,
2801                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
2802                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2803                 .rlen   = 16,
2804         }, {
2805                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2806                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2807                           "\x10\x11\x12\x13\x14\x15\x16\x17"
2808                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2809                 .klen   = 32,
2810                 .input  = "\xde\x26\x9f\xf8\x33\xe4\x32\xb8"
2811                           "\x5b\x2e\x88\xd2\x70\x1c\xe7\x5c",
2812                 .ilen   = 16,
2813                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
2814                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2815                 .rlen   = 16,
2816         }, {
2817                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80",
2818                 .klen   = 16,
2819                 .input  = "\xdd\xd2\x6b\x98\xa5\xff\xd8\x2c"
2820                           "\x05\x34\x5a\x9d\xad\xbf\xaf\x49",
2821                 .ilen   = 16,
2822                 .result = zeroed_string,
2823                 .rlen   = 16,
2824         },
2825 };
2826
2827 static struct cipher_testvec tnepres_dec_tv_template[] = {
2828         {
2829                 .input  = "\x41\xcc\x6b\x31\x59\x31\x45\x97"
2830                           "\x6d\x6f\xbb\x38\x4b\x37\x21\x28",
2831                 .ilen   = 16,
2832                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
2833                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2834                 .rlen   = 16,
2835         }, {
2836                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2837                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2838                 .klen   = 16,
2839                 .input  = "\xea\xf4\xd7\xfc\xd8\x01\x34\x47"
2840                           "\x81\x45\x0b\xfa\x0c\xd6\xad\x6e",
2841                 .ilen   = 16,
2842                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
2843                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2844                 .rlen   = 16,
2845         }, {
2846                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2847                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2848                           "\x10\x11\x12\x13\x14\x15\x16\x17"
2849                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2850                 .klen   = 32,
2851                 .input  = "\x64\xa9\x1a\x37\xed\x9f\xe7\x49"
2852                           "\xa8\x4e\x76\xd6\xf5\x0d\x78\xee",
2853                 .ilen   = 16,
2854                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
2855                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2856                 .rlen   = 16,
2857         }, { /* KeySize=128, I=121 */
2858                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80",
2859                 .klen   = 16,
2860                 .input  = "\x3d\xda\xbf\xc0\x06\xda\xab\x06"
2861                           "\x46\x2a\xf4\xef\x81\x54\x4e\x26",
2862                 .ilen   = 16,
2863                 .result = zeroed_string,
2864                 .rlen   = 16,
2865         },
2866 };
2867
2868
2869 /* Cast6 test vectors from RFC 2612 */
2870 #define CAST6_ENC_TEST_VECTORS  3
2871 #define CAST6_DEC_TEST_VECTORS  3
2872
2873 static struct cipher_testvec cast6_enc_tv_template[] = {
2874         {
2875                 .key    = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2876                           "\x0a\xf7\x56\x47\xf2\x9f\x61\x5d",
2877                 .klen   = 16,
2878                 .input  = zeroed_string,
2879                 .ilen   = 16,
2880                 .result = "\xc8\x42\xa0\x89\x72\xb4\x3d\x20"
2881                           "\x83\x6c\x91\xd1\xb7\x53\x0f\x6b",
2882                 .rlen   = 16,
2883         }, {
2884                 .key    = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2885                           "\xbe\xd0\xac\x83\x94\x0a\xc2\x98"
2886                           "\xba\xc7\x7a\x77\x17\x94\x28\x63",
2887                 .klen   = 24,
2888                 .input  = zeroed_string,
2889                 .ilen   = 16,
2890                 .result = "\x1b\x38\x6c\x02\x10\xdc\xad\xcb"
2891                           "\xdd\x0e\x41\xaa\x08\xa7\xa7\xe8",
2892                 .rlen   = 16,
2893         }, {
2894                 .key    = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2895                           "\xbe\xd0\xac\x83\x94\x0a\xc2\x98"
2896                           "\x8d\x7c\x47\xce\x26\x49\x08\x46"
2897                           "\x1c\xc1\xb5\x13\x7a\xe6\xb6\x04",
2898                 .klen   = 32,
2899                 .input  = zeroed_string,
2900                 .ilen   = 16,
2901                 .result = "\x4f\x6a\x20\x38\x28\x68\x97\xb9"
2902                           "\xc9\x87\x01\x36\x55\x33\x17\xfa",
2903                 .rlen   = 16,
2904         },
2905 };
2906
2907 static struct cipher_testvec cast6_dec_tv_template[] = {
2908         {
2909                 .key    = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2910                           "\x0a\xf7\x56\x47\xf2\x9f\x61\x5d",
2911                 .klen   = 16,
2912                 .input  = "\xc8\x42\xa0\x89\x72\xb4\x3d\x20"
2913                           "\x83\x6c\x91\xd1\xb7\x53\x0f\x6b",
2914                 .ilen   = 16,
2915                 .result = zeroed_string,
2916                 .rlen   = 16,
2917         }, {
2918                 .key    = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2919                           "\xbe\xd0\xac\x83\x94\x0a\xc2\x98"
2920                           "\xba\xc7\x7a\x77\x17\x94\x28\x63",
2921                 .klen   = 24,
2922                 .input  = "\x1b\x38\x6c\x02\x10\xdc\xad\xcb"
2923                           "\xdd\x0e\x41\xaa\x08\xa7\xa7\xe8",
2924                 .ilen   = 16,
2925                 .result = zeroed_string,
2926                 .rlen   = 16,
2927         }, {
2928                 .key    = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2929                           "\xbe\xd0\xac\x83\x94\x0a\xc2\x98"
2930                           "\x8d\x7c\x47\xce\x26\x49\x08\x46"
2931                           "\x1c\xc1\xb5\x13\x7a\xe6\xb6\x04",
2932                 .klen   = 32,
2933                 .input  = "\x4f\x6a\x20\x38\x28\x68\x97\xb9"
2934                           "\xc9\x87\x01\x36\x55\x33\x17\xfa",
2935                 .ilen   = 16,
2936                 .result = zeroed_string,
2937                 .rlen   = 16,
2938         },
2939 };
2940
2941
2942 /*
2943  * AES test vectors.
2944  */
2945 #define AES_ENC_TEST_VECTORS 3
2946 #define AES_DEC_TEST_VECTORS 3
2947 #define AES_CBC_ENC_TEST_VECTORS 4
2948 #define AES_CBC_DEC_TEST_VECTORS 4
2949 #define AES_LRW_ENC_TEST_VECTORS 8
2950 #define AES_LRW_DEC_TEST_VECTORS 8
2951 #define AES_XTS_ENC_TEST_VECTORS 4
2952 #define AES_XTS_DEC_TEST_VECTORS 4
2953 #define AES_CTR_ENC_TEST_VECTORS 3
2954 #define AES_CTR_DEC_TEST_VECTORS 3
2955 #define AES_CTR_3686_ENC_TEST_VECTORS 7
2956 #define AES_CTR_3686_DEC_TEST_VECTORS 6
2957 #define AES_GCM_ENC_TEST_VECTORS 9
2958 #define AES_GCM_DEC_TEST_VECTORS 8
2959 #define AES_GCM_4106_ENC_TEST_VECTORS 7
2960 #define AES_GCM_4106_DEC_TEST_VECTORS 7
2961 #define AES_CCM_ENC_TEST_VECTORS 7
2962 #define AES_CCM_DEC_TEST_VECTORS 7
2963 #define AES_CCM_4309_ENC_TEST_VECTORS 7
2964 #define AES_CCM_4309_DEC_TEST_VECTORS 10
2965
2966 static struct cipher_testvec aes_enc_tv_template[] = {
2967         { /* From FIPS-197 */
2968                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2969                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2970                 .klen   = 16,
2971                 .input  = "\x00\x11\x22\x33\x44\x55\x66\x77"
2972                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2973                 .ilen   = 16,
2974                 .result = "\x69\xc4\xe0\xd8\x6a\x7b\x04\x30"
2975                           "\xd8\xcd\xb7\x80\x70\xb4\xc5\x5a",
2976                 .rlen   = 16,
2977         }, {
2978                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2979                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2980                           "\x10\x11\x12\x13\x14\x15\x16\x17",
2981                 .klen   = 24,
2982                 .input  = "\x00\x11\x22\x33\x44\x55\x66\x77"
2983                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2984                 .ilen   = 16,
2985                 .result = "\xdd\xa9\x7c\xa4\x86\x4c\xdf\xe0"
2986                           "\x6e\xaf\x70\xa0\xec\x0d\x71\x91",
2987                 .rlen   = 16,
2988         }, {
2989                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2990                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2991                           "\x10\x11\x12\x13\x14\x15\x16\x17"
2992                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2993                 .klen   = 32,
2994                 .input  = "\x00\x11\x22\x33\x44\x55\x66\x77"
2995                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2996                 .ilen   = 16,
2997                 .result = "\x8e\xa2\xb7\xca\x51\x67\x45\xbf"
2998                           "\xea\xfc\x49\x90\x4b\x49\x60\x89",
2999                 .rlen   = 16,
3000         },
3001 };
3002
3003 static struct cipher_testvec aes_dec_tv_template[] = {
3004         { /* From FIPS-197 */
3005                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
3006                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
3007                 .klen   = 16,
3008                 .input  = "\x69\xc4\xe0\xd8\x6a\x7b\x04\x30"
3009                           "\xd8\xcd\xb7\x80\x70\xb4\xc5\x5a",
3010                 .ilen   = 16,
3011                 .result = "\x00\x11\x22\x33\x44\x55\x66\x77"
3012                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
3013                 .rlen   = 16,
3014         }, {
3015                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
3016                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3017                           "\x10\x11\x12\x13\x14\x15\x16\x17",
3018                 .klen   = 24,
3019                 .input  = "\xdd\xa9\x7c\xa4\x86\x4c\xdf\xe0"
3020                           "\x6e\xaf\x70\xa0\xec\x0d\x71\x91",
3021                 .ilen   = 16,
3022                 .result = "\x00\x11\x22\x33\x44\x55\x66\x77"
3023                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
3024                 .rlen   = 16,
3025         }, {
3026                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
3027                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3028                           "\x10\x11\x12\x13\x14\x15\x16\x17"
3029                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
3030                 .klen   = 32,
3031                 .input  = "\x8e\xa2\xb7\xca\x51\x67\x45\xbf"
3032                           "\xea\xfc\x49\x90\x4b\x49\x60\x89",
3033                 .ilen   = 16,
3034                 .result = "\x00\x11\x22\x33\x44\x55\x66\x77"
3035                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
3036                 .rlen   = 16,
3037         },
3038 };
3039
3040 static struct cipher_testvec aes_cbc_enc_tv_template[] = {
3041         { /* From RFC 3602 */
3042                 .key    = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b"
3043                           "\x51\x2e\x03\xd5\x34\x12\x00\x06",
3044                 .klen   = 16,
3045                 .iv     = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30"
3046                           "\xb4\x22\xda\x80\x2c\x9f\xac\x41",
3047                 .input  = "Single block msg",
3048                 .ilen   = 16,
3049                 .result = "\xe3\x53\x77\x9c\x10\x79\xae\xb8"
3050                           "\x27\x08\x94\x2d\xbe\x77\x18\x1a",
3051                 .rlen   = 16,
3052         }, {
3053                 .key    = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0"
3054                           "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a",
3055                 .klen   = 16,
3056                 .iv     = "\x56\x2e\x17\x99\x6d\x09\x3d\x28"
3057                           "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58",
3058                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
3059                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3060                           "\x10\x11\x12\x13\x14\x15\x16\x17"
3061                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
3062                 .ilen   = 32,
3063                 .result = "\xd2\x96\xcd\x94\xc2\xcc\xcf\x8a"
3064                           "\x3a\x86\x30\x28\xb5\xe1\xdc\x0a"
3065                           "\x75\x86\x60\x2d\x25\x3c\xff\xf9"
3066                           "\x1b\x82\x66\xbe\xa6\xd6\x1a\xb1",
3067                 .rlen   = 32,
3068         }, { /* From NIST SP800-38A */
3069                 .key    = "\x8e\x73\xb0\xf7\xda\x0e\x64\x52"
3070                           "\xc8\x10\xf3\x2b\x80\x90\x79\xe5"
3071                           "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b",
3072                 .klen   = 24,
3073                 .iv     = "\x00\x01\x02\x03\x04\x05\x06\x07"
3074                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
3075                 .input  = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
3076                           "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
3077                           "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
3078                           "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
3079                           "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
3080                           "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
3081                           "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
3082                           "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
3083                 .ilen   = 64,
3084                 .result = "\x4f\x02\x1d\xb2\x43\xbc\x63\x3d"
3085                           "\x71\x78\x18\x3a\x9f\xa0\x71\xe8"
3086                           "\xb4\xd9\xad\xa9\xad\x7d\xed\xf4"
3087                           "\xe5\xe7\x38\x76\x3f\x69\x14\x5a"
3088                           "\x57\x1b\x24\x20\x12\xfb\x7a\xe0"
3089                           "\x7f\xa9\xba\xac\x3d\xf1\x02\xe0"
3090                           "\x08\xb0\xe2\x79\x88\x59\x88\x81"
3091                           "\xd9\x20\xa9\xe6\x4f\x56\x15\xcd",
3092                 .rlen   = 64,
3093         }, {
3094                 .key    = "\x60\x3d\xeb\x10\x15\xca\x71\xbe"
3095                           "\x2b\x73\xae\xf0\x85\x7d\x77\x81"
3096                           "\x1f\x35\x2c\x07\x3b\x61\x08\xd7"
3097                           "\x2d\x98\x10\xa3\x09\x14\xdf\xf4",
3098                 .klen   = 32,
3099                 .iv     = "\x00\x01\x02\x03\x04\x05\x06\x07"
3100                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
3101                 .input  = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
3102                           "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
3103                           "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
3104                           "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
3105                           "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
3106                           "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
3107                           "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
3108                           "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
3109                 .ilen   = 64,
3110                 .result = "\xf5\x8c\x4c\x04\xd6\xe5\xf1\xba"
3111                           "\x77\x9e\xab\xfb\x5f\x7b\xfb\xd6"
3112                           "\x9c\xfc\x4e\x96\x7e\xdb\x80\x8d"
3113                           "\x67\x9f\x77\x7b\xc6\x70\x2c\x7d"
3114                           "\x39\xf2\x33\x69\xa9\xd9\xba\xcf"
3115                           "\xa5\x30\xe2\x63\x04\x23\x14\x61"
3116                           "\xb2\xeb\x05\xe2\xc3\x9b\xe9\xfc"
3117                           "\xda\x6c\x19\x07\x8c\x6a\x9d\x1b",
3118                 .rlen   = 64,
3119         },
3120 };
3121
3122 static struct cipher_testvec aes_cbc_dec_tv_template[] = {
3123         { /* From RFC 3602 */
3124                 .key    = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b"
3125                           "\x51\x2e\x03\xd5\x34\x12\x00\x06",
3126                 .klen   = 16,
3127                 .iv     = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30"
3128                           "\xb4\x22\xda\x80\x2c\x9f\xac\x41",
3129                 .input  = "\xe3\x53\x77\x9c\x10\x79\xae\xb8"
3130                           "\x27\x08\x94\x2d\xbe\x77\x18\x1a",
3131                 .ilen   = 16,
3132                 .result = "Single block msg",
3133                 .rlen   = 16,
3134         }, {
3135                 .key    = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0"
3136                           "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a",
3137                 .klen   = 16,
3138                 .iv     = "\x56\x2e\x17\x99\x6d\x09\x3d\x28"
3139                           "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58",
3140                 .input  = "\xd2\x96\xcd\x94\xc2\xcc\xcf\x8a"
3141                           "\x3a\x86\x30\x28\xb5\xe1\xdc\x0a"
3142                           "\x75\x86\x60\x2d\x25\x3c\xff\xf9"
3143                           "\x1b\x82\x66\xbe\xa6\xd6\x1a\xb1",
3144                 .ilen   = 32,
3145                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
3146                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3147                           "\x10\x11\x12\x13\x14\x15\x16\x17"
3148                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
3149                 .rlen   = 32,
3150         }, { /* From NIST SP800-38A */
3151                 .key    = "\x8e\x73\xb0\xf7\xda\x0e\x64\x52"
3152                           "\xc8\x10\xf3\x2b\x80\x90\x79\xe5"
3153                           "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b",
3154                 .klen   = 24,
3155                 .iv     = "\x00\x01\x02\x03\x04\x05\x06\x07"
3156                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
3157                 .input  = "\x4f\x02\x1d\xb2\x43\xbc\x63\x3d"
3158                           "\x71\x78\x18\x3a\x9f\xa0\x71\xe8"
3159                           "\xb4\xd9\xad\xa9\xad\x7d\xed\xf4"
3160                           "\xe5\xe7\x38\x76\x3f\x69\x14\x5a"
3161                           "\x57\x1b\x24\x20\x12\xfb\x7a\xe0"
3162                           "\x7f\xa9\xba\xac\x3d\xf1\x02\xe0"
3163                           "\x08\xb0\xe2\x79\x88\x59\x88\x81"
3164                           "\xd9\x20\xa9\xe6\x4f\x56\x15\xcd",
3165                 .ilen   = 64,
3166                 .result = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
3167                           "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
3168                           "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
3169                           "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
3170                           "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
3171                           "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
3172                           "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
3173                           "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
3174                 .rlen   = 64,
3175         }, {
3176                 .key    = "\x60\x3d\xeb\x10\x15\xca\x71\xbe"
3177                           "\x2b\x73\xae\xf0\x85\x7d\x77\x81"
3178                           "\x1f\x35\x2c\x07\x3b\x61\x08\xd7"
3179                           "\x2d\x98\x10\xa3\x09\x14\xdf\xf4",
3180                 .klen   = 32,
3181                 .iv     = "\x00\x01\x02\x03\x04\x05\x06\x07"
3182                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
3183                 .input  = "\xf5\x8c\x4c\x04\xd6\xe5\xf1\xba"
3184                           "\x77\x9e\xab\xfb\x5f\x7b\xfb\xd6"
3185                           "\x9c\xfc\x4e\x96\x7e\xdb\x80\x8d"
3186                           "\x67\x9f\x77\x7b\xc6\x70\x2c\x7d"
3187                           "\x39\xf2\x33\x69\xa9\xd9\xba\xcf"
3188                           "\xa5\x30\xe2\x63\x04\x23\x14\x61"
3189                           "\xb2\xeb\x05\xe2\xc3\x9b\xe9\xfc"
3190                           "\xda\x6c\x19\x07\x8c\x6a\x9d\x1b",
3191                 .ilen   = 64,
3192                 .result = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
3193                           "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
3194                           "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
3195                           "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
3196                           "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
3197                           "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
3198                           "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
3199                           "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
3200                 .rlen   = 64,
3201         },
3202 };
3203
3204 static struct cipher_testvec aes_lrw_enc_tv_template[] = {
3205         /* from http://grouper.ieee.org/groups/1619/email/pdf00017.pdf */
3206         { /* LRW-32-AES 1 */
3207                 .key    = "\x45\x62\xac\x25\xf8\x28\x17\x6d"
3208                           "\x4c\x26\x84\x14\xb5\x68\x01\x85"
3209                           "\x25\x8e\x2a\x05\xe7\x3e\x9d\x03"
3210                           "\xee\x5a\x83\x0c\xcc\x09\x4c\x87",
3211                 .klen   = 32,
3212                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3213                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3214                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3215                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3216                 .ilen   = 16,
3217                 .result = "\xf1\xb2\x73\xcd\x65\xa3\xdf\x5f"
3218                           "\xe9\x5d\x48\x92\x54\x63\x4e\xb8",
3219                 .rlen   = 16,
3220         }, { /* LRW-32-AES 2 */
3221                 .key    = "\x59\x70\x47\x14\xf5\x57\x47\x8c"
3222                           "\xd7\x79\xe8\x0f\x54\x88\x79\x44"
3223                           "\x0d\x48\xf0\xb7\xb1\x5a\x53\xea"
3224                           "\x1c\xaa\x6b\x29\xc2\xca\xfb\xaf",
3225                 .klen   = 32,
3226                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3227                           "\x00\x00\x00\x00\x00\x00\x00\x02",
3228                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3229                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3230                 .ilen   = 16,
3231                 .result = "\x00\xc8\x2b\xae\x95\xbb\xcd\xe5"
3232                           "\x27\x4f\x07\x69\xb2\x60\xe1\x36",
3233                 .rlen   = 16,
3234         }, { /* LRW-32-AES 3 */
3235                 .key    = "\xd8\x2a\x91\x34\xb2\x6a\x56\x50"
3236                           "\x30\xfe\x69\xe2\x37\x7f\x98\x47"
3237                           "\xcd\xf9\x0b\x16\x0c\x64\x8f\xb6"
3238                           "\xb0\x0d\x0d\x1b\xae\x85\x87\x1f",
3239                 .klen   = 32,
3240                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3241                           "\x00\x00\x00\x02\x00\x00\x00\x00",
3242                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3243                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3244                 .ilen   = 16,
3245                 .result = "\x76\x32\x21\x83\xed\x8f\xf1\x82"
3246                           "\xf9\x59\x62\x03\x69\x0e\x5e\x01",
3247                 .rlen   = 16,
3248         }, { /* LRW-32-AES 4 */
3249                 .key    = "\x0f\x6a\xef\xf8\xd3\xd2\xbb\x15"
3250                           "\x25\x83\xf7\x3c\x1f\x01\x28\x74"
3251                           "\xca\xc6\xbc\x35\x4d\x4a\x65\x54"
3252                           "\x90\xae\x61\xcf\x7b\xae\xbd\xcc"
3253                           "\xad\xe4\x94\xc5\x4a\x29\xae\x70",
3254                 .klen   = 40,
3255                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3256                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3257                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3258                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3259                 .ilen   = 16,
3260                 .result = "\x9c\x0f\x15\x2f\x55\xa2\xd8\xf0"
3261                           "\xd6\x7b\x8f\x9e\x28\x22\xbc\x41",
3262                 .rlen   = 16,
3263         }, { /* LRW-32-AES 5 */
3264                 .key    = "\x8a\xd4\xee\x10\x2f\xbd\x81\xff"
3265                           "\xf8\x86\xce\xac\x93\xc5\xad\xc6"
3266                           "\xa0\x19\x07\xc0\x9d\xf7\xbb\xdd"
3267                           "\x52\x13\xb2\xb7\xf0\xff\x11\xd8"
3268                           "\xd6\x08\xd0\xcd\x2e\xb1\x17\x6f",
3269                 .klen   = 40,
3270                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3271                           "\x00\x00\x00\x02\x00\x00\x00\x00",
3272                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3273                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3274                 .ilen   = 16,
3275                 .result = "\xd4\x27\x6a\x7f\x14\x91\x3d\x65"
3276                           "\xc8\x60\x48\x02\x87\xe3\x34\x06",
3277                 .rlen   = 16,
3278         }, { /* LRW-32-AES 6 */
3279                 .key    = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c"
3280                           "\x23\x84\xcb\x1c\x77\xd6\x19\x5d"
3281                           "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21"
3282                           "\xa7\x9c\x21\xf8\xcb\x90\x02\x89"
3283                           "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1"
3284                           "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e",
3285                 .klen   = 48,
3286                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3287                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3288                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3289                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3290                 .ilen   = 16,
3291                 .result = "\xbd\x06\xb8\xe1\xdb\x98\x89\x9e"
3292                           "\xc4\x98\xe4\x91\xcf\x1c\x70\x2b",
3293                 .rlen   = 16,
3294         }, { /* LRW-32-AES 7 */
3295                 .key    = "\xfb\x76\x15\xb2\x3d\x80\x89\x1d"
3296                           "\xd4\x70\x98\x0b\xc7\x95\x84\xc8"
3297                           "\xb2\xfb\x64\xce\x60\x97\x87\x8d"
3298                           "\x17\xfc\xe4\x5a\x49\xe8\x30\xb7"
3299                           "\x6e\x78\x17\xe7\x2d\x5e\x12\xd4"
3300                           "\x60\x64\x04\x7a\xf1\x2f\x9e\x0c",
3301                 .klen   = 48,
3302                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3303                           "\x00\x00\x00\x02\x00\x00\x00\x00",
3304                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3305                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3306                 .ilen   = 16,
3307                 .result = "\x5b\x90\x8e\xc1\xab\xdd\x67\x5f"
3308                           "\x3d\x69\x8a\x95\x53\xc8\x9c\xe5",
3309                 .rlen   = 16,
3310         }, {
3311 /* http://www.mail-archive.com/stds-p1619@listserv.ieee.org/msg00173.html */
3312                 .key    = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c"
3313                           "\x23\x84\xcb\x1c\x77\xd6\x19\x5d"
3314                           "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21"
3315                           "\xa7\x9c\x21\xf8\xcb\x90\x02\x89"
3316                           "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1"
3317                           "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e",
3318                 .klen   = 48,
3319                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3320                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3321                 .input  = "\x05\x11\xb7\x18\xab\xc6\x2d\xac"
3322                           "\x70\x5d\xf6\x22\x94\xcd\xe5\x6c"
3323                           "\x17\x6b\xf6\x1c\xf0\xf3\x6e\xf8"
3324                           "\x50\x38\x1f\x71\x49\xb6\x57\xd6"
3325                           "\x8f\xcb\x8d\x6b\xe3\xa6\x29\x90"
3326                           "\xfe\x2a\x62\x82\xae\x6d\x8b\xf6"
3327                           "\xad\x1e\x9e\x20\x5f\x38\xbe\x04"
3328                           "\xda\x10\x8e\xed\xa2\xa4\x87\xab"
3329                           "\xda\x6b\xb4\x0c\x75\xba\xd3\x7c"
3330                           "\xc9\xac\x42\x31\x95\x7c\xc9\x04"
3331                           "\xeb\xd5\x6e\x32\x69\x8a\xdb\xa6"
3332                           "\x15\xd7\x3f\x4f\x2f\x66\x69\x03"
3333                           "\x9c\x1f\x54\x0f\xde\x1f\xf3\x65"
3334                           "\x4c\x96\x12\xed\x7c\x92\x03\x01"
3335                           "\x6f\xbc\x35\x93\xac\xf1\x27\xf1"
3336                           "\xb4\x96\x82\x5a\x5f\xb0\xa0\x50"
3337                           "\x89\xa4\x8e\x66\x44\x85\xcc\xfd"
3338                           "\x33\x14\x70\xe3\x96\xb2\xc3\xd3"
3339                           "\xbb\x54\x5a\x1a\xf9\x74\xa2\xc5"
3340                           "\x2d\x64\x75\xdd\xb4\x54\xe6\x74"
3341                           "\x8c\xd3\x9d\x9e\x86\xab\x51\x53"
3342                           "\xb7\x93\x3e\x6f\xd0\x4e\x2c\x40"
3343                           "\xf6\xa8\x2e\x3e\x9d\xf4\x66\xa5"
3344                           "\x76\x12\x73\x44\x1a\x56\xd7\x72"
3345                           "\x88\xcd\x21\x8c\x4c\x0f\xfe\xda"
3346                           "\x95\xe0\x3a\xa6\xa5\x84\x46\xcd"
3347                           "\xd5\x3e\x9d\x3a\xe2\x67\xe6\x60"
3348                           "\x1a\xe2\x70\x85\x58\xc2\x1b\x09"
3349                           "\xe1\xd7\x2c\xca\xad\xa8\x8f\xf9"
3350                           "\xac\xb3\x0e\xdb\xca\x2e\xe2\xb8"
3351                           "\x51\x71\xd9\x3c\x6c\xf1\x56\xf8"
3352                           "\xea\x9c\xf1\xfb\x0c\xe6\xb7\x10"
3353                           "\x1c\xf8\xa9\x7c\xe8\x53\x35\xc1"
3354                           "\x90\x3e\x76\x4a\x74\xa4\x21\x2c"
3355                           "\xf6\x2c\x4e\x0f\x94\x3a\x88\x2e"
3356                           "\x41\x09\x6a\x33\x7d\xf6\xdd\x3f"
3357                           "\x8d\x23\x31\x74\x84\xeb\x88\x6e"
3358                           "\xcc\xb9\xbc\x22\x83\x19\x07\x22"
3359                           "\xa5\x2d\xdf\xa5\xf3\x80\x85\x78"
3360                           "\x84\x39\x6a\x6d\x6a\x99\x4f\xa5"
3361                           "\x15\xfe\x46\xb0\xe4\x6c\xa5\x41"
3362                           "\x3c\xce\x8f\x42\x60\x71\xa7\x75"
3363                           "\x08\x40\x65\x8a\x82\xbf\xf5\x43"
3364                           "\x71\x96\xa9\x4d\x44\x8a\x20\xbe"
3365                           "\xfa\x4d\xbb\xc0\x7d\x31\x96\x65"
3366                           "\xe7\x75\xe5\x3e\xfd\x92\x3b\xc9"
3367                           "\x55\xbb\x16\x7e\xf7\xc2\x8c\xa4"
3368                           "\x40\x1d\xe5\xef\x0e\xdf\xe4\x9a"
3369                           "\x62\x73\x65\xfd\x46\x63\x25\x3d"
3370                           "\x2b\xaf\xe5\x64\xfe\xa5\x5c\xcf"
3371                           "\x24\xf3\xb4\xac\x64\xba\xdf\x4b"
3372                           "\xc6\x96\x7d\x81\x2d\x8d\x97\xf7"
3373                           "\xc5\x68\x77\x84\x32\x2b\xcc\x85"
3374                           "\x74\x96\xf0\x12\x77\x61\xb9\xeb"
3375                           "\x71\xaa\x82\xcb\x1c\xdb\x89\xc8"
3376                           "\xc6\xb5\xe3\x5c\x7d\x39\x07\x24"
3377                           "\xda\x39\x87\x45\xc0\x2b\xbb\x01"
3378                           "\xac\xbc\x2a\x5c\x7f\xfc\xe8\xce"
3379                           "\x6d\x9c\x6f\xed\xd3\xc1\xa1\xd6"
3380                           "\xc5\x55\xa9\x66\x2f\xe1\xc8\x32"
3381                           "\xa6\x5d\xa4\x3a\x98\x73\xe8\x45"
3382                           "\xa4\xc7\xa8\xb4\xf6\x13\x03\xf6"
3383                           "\xe9\x2e\xc4\x29\x0f\x84\xdb\xc4"
3384                           "\x21\xc4\xc2\x75\x67\x89\x37\x0a",
3385                 .ilen   = 512,
3386                 .result = "\x1a\x1d\xa9\x30\xad\xf9\x2f\x9b"
3387                           "\xb6\x1d\xae\xef\xf0\x2f\xf8\x5a"
3388                           "\x39\x3c\xbf\x2a\xb2\x45\xb2\x23"
3389                           "\x1b\x63\x3c\xcf\xaa\xbe\xcf\x4e"
3390                           "\xfa\xe8\x29\xc2\x20\x68\x2b\x3c"
3391                           "\x2e\x8b\xf7\x6e\x25\xbd\xe3\x3d"
3392                           "\x66\x27\xd6\xaf\xd6\x64\x3e\xe3"
3393                           "\xe8\x58\x46\x97\x39\x51\x07\xde"
3394                           "\xcb\x37\xbc\xa9\xc0\x5f\x75\xc3"
3395                           "\x0e\x84\x23\x1d\x16\xd4\x1c\x59"
3396                           "\x9c\x1a\x02\x55\xab\x3a\x97\x1d"
3397                           "\xdf\xdd\xc7\x06\x51\xd7\x70\xae"
3398                           "\x23\xc6\x8c\xf5\x1e\xa0\xe5\x82"
3399                           "\xb8\xb2\xbf\x04\xa0\x32\x8e\x68"
3400                           "\xeb\xaf\x6e\x2d\x94\x22\x2f\xce"
3401                           "\x4c\xb5\x59\xe2\xa2\x2f\xa0\x98"
3402                           "\x1a\x97\xc6\xd4\xb5\x00\x59\xf2"
3403                           "\x84\x14\x72\xb1\x9a\x6e\xa3\x7f"
3404                           "\xea\x20\xe7\xcb\x65\x77\x3a\xdf"
3405                           "\xc8\x97\x67\x15\xc2\x2a\x27\xcc"
3406                           "\x18\x55\xa1\x24\x0b\x24\x24\xaf"
3407                           "\x5b\xec\x68\xb8\xc8\xf5\xba\x63"
3408                           "\xff\xed\x89\xce\xd5\x3d\x88\xf3"
3409                           "\x25\xef\x05\x7c\x3a\xef\xeb\xd8"
3410                           "\x7a\x32\x0d\xd1\x1e\x58\x59\x99"
3411                           "\x90\x25\xb5\x26\xb0\xe3\x2b\x6c"
3412                           "\x4c\xa9\x8b\x84\x4f\x5e\x01\x50"
3413                           "\x41\x30\x58\xc5\x62\x74\x52\x1d"
3414                           "\x45\x24\x6a\x42\x64\x4f\x97\x1c"
3415                           "\xa8\x66\xb5\x6d\x79\xd4\x0d\x48"
3416                           "\xc5\x5f\xf3\x90\x32\xdd\xdd\xe1"
3417                           "\xe4\xa9\x9f\xfc\xc3\x52\x5a\x46"
3418                           "\xe4\x81\x84\x95\x36\x59\x7a\x6b"
3419                           "\xaa\xb3\x60\xad\xce\x9f\x9f\x28"
3420                           "\xe0\x01\x75\x22\xc4\x4e\xa9\x62"
3421                           "\x5c\x62\x0d\x00\xcb\x13\xe8\x43"
3422                           "\x72\xd4\x2d\x53\x46\xb5\xd1\x16"
3423                           "\x22\x18\xdf\x34\x33\xf5\xd6\x1c"
3424                           "\xb8\x79\x78\x97\x94\xff\x72\x13"
3425                           "\x4c\x27\xfc\xcb\xbf\x01\x53\xa6"
3426                           "\xb4\x50\x6e\xde\xdf\xb5\x43\xa4"
3427                           "\x59\xdf\x52\xf9\x7c\xe0\x11\x6f"
3428                           "\x2d\x14\x8e\x24\x61\x2c\xe1\x17"
3429                           "\xcc\xce\x51\x0c\x19\x8a\x82\x30"
3430                           "\x94\xd5\x3d\x6a\x53\x06\x5e\xbd"
3431                           "\xb7\xeb\xfa\xfd\x27\x51\xde\x85"
3432                           "\x1e\x86\x53\x11\x53\x94\x00\xee"
3433                           "\x2b\x8c\x08\x2a\xbf\xdd\xae\x11"
3434                           "\xcb\x1e\xa2\x07\x9a\x80\xcf\x62"
3435                           "\x9b\x09\xdc\x95\x3c\x96\x8e\xb1"
3436                           "\x09\xbd\xe4\xeb\xdb\xca\x70\x7a"
3437                           "\x9e\xfa\x31\x18\x45\x3c\x21\x33"
3438                           "\xb0\xb3\x2b\xea\xf3\x71\x2d\xe1"
3439                           "\x03\xad\x1b\x48\xd4\x67\x27\xf0"
3440                           "\x62\xe4\x3d\xfb\x9b\x08\x76\xe7"
3441                           "\xdd\x2b\x01\x39\x04\x5a\x58\x7a"
3442                           "\xf7\x11\x90\xec\xbd\x51\x5c\x32"
3443                           "\x6b\xd7\x35\x39\x02\x6b\xf2\xa6"
3444                           "\xd0\x0d\x07\xe1\x06\xc4\x5b\x7d"
3445                           "\xe4\x6a\xd7\xee\x15\x1f\x83\xb4"
3446                           "\xa3\xa7\x5e\xc3\x90\xb7\xef\xd3"
3447                           "\xb7\x4f\xf8\x92\x4c\xb7\x3c\x29"
3448                           "\xcd\x7e\x2b\x5d\x43\xea\x42\xe7"
3449                           "\x74\x3f\x7d\x58\x88\x75\xde\x3e",
3450                 .rlen   = 512,
3451         }
3452 };
3453
3454 static struct cipher_testvec aes_lrw_dec_tv_template[] = {
3455         /* from http://grouper.ieee.org/groups/1619/email/pdf00017.pdf */
3456         /* same as enc vectors with input and result reversed */
3457         { /* LRW-32-AES 1 */
3458                 .key    = "\x45\x62\xac\x25\xf8\x28\x17\x6d"
3459                           "\x4c\x26\x84\x14\xb5\x68\x01\x85"
3460                           "\x25\x8e\x2a\x05\xe7\x3e\x9d\x03"
3461                           "\xee\x5a\x83\x0c\xcc\x09\x4c\x87",
3462                 .klen   = 32,
3463                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3464                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3465                 .input  = "\xf1\xb2\x73\xcd\x65\xa3\xdf\x5f"
3466                           "\xe9\x5d\x48\x92\x54\x63\x4e\xb8",
3467                 .ilen   = 16,
3468                 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3469                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3470                 .rlen   = 16,
3471         }, { /* LRW-32-AES 2 */
3472                 .key    = "\x59\x70\x47\x14\xf5\x57\x47\x8c"
3473                           "\xd7\x79\xe8\x0f\x54\x88\x79\x44"
3474                           "\x0d\x48\xf0\xb7\xb1\x5a\x53\xea"
3475                           "\x1c\xaa\x6b\x29\xc2\xca\xfb\xaf",
3476                 .klen   = 32,
3477                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3478                           "\x00\x00\x00\x00\x00\x00\x00\x02",
3479                 .input  = "\x00\xc8\x2b\xae\x95\xbb\xcd\xe5"
3480                           "\x27\x4f\x07\x69\xb2\x60\xe1\x36",
3481                 .ilen   = 16,
3482                 .result  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3483                            "\x38\x39\x41\x42\x43\x44\x45\x46",
3484                 .rlen   = 16,
3485         }, { /* LRW-32-AES 3 */
3486                 .key    = "\xd8\x2a\x91\x34\xb2\x6a\x56\x50"
3487                           "\x30\xfe\x69\xe2\x37\x7f\x98\x47"
3488                           "\xcd\xf9\x0b\x16\x0c\x64\x8f\xb6"
3489                           "\xb0\x0d\x0d\x1b\xae\x85\x87\x1f",
3490                 .klen   = 32,
3491                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3492                           "\x00\x00\x00\x02\x00\x00\x00\x00",
3493                 .input  = "\x76\x32\x21\x83\xed\x8f\xf1\x82"
3494                           "\xf9\x59\x62\x03\x69\x0e\x5e\x01",
3495                 .ilen   = 16,
3496                 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3497                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3498                 .rlen   = 16,
3499         }, { /* LRW-32-AES 4 */
3500                 .key    = "\x0f\x6a\xef\xf8\xd3\xd2\xbb\x15"
3501                           "\x25\x83\xf7\x3c\x1f\x01\x28\x74"
3502                           "\xca\xc6\xbc\x35\x4d\x4a\x65\x54"
3503                           "\x90\xae\x61\xcf\x7b\xae\xbd\xcc"
3504                           "\xad\xe4\x94\xc5\x4a\x29\xae\x70",
3505                 .klen   = 40,
3506                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3507                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3508                 .input  = "\x9c\x0f\x15\x2f\x55\xa2\xd8\xf0"
3509                           "\xd6\x7b\x8f\x9e\x28\x22\xbc\x41",
3510                 .ilen   = 16,
3511                 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3512                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3513                 .rlen   = 16,
3514         }, { /* LRW-32-AES 5 */
3515                 .key    = "\x8a\xd4\xee\x10\x2f\xbd\x81\xff"
3516                           "\xf8\x86\xce\xac\x93\xc5\xad\xc6"
3517                           "\xa0\x19\x07\xc0\x9d\xf7\xbb\xdd"
3518                           "\x52\x13\xb2\xb7\xf0\xff\x11\xd8"
3519                           "\xd6\x08\xd0\xcd\x2e\xb1\x17\x6f",
3520                 .klen   = 40,
3521                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3522                           "\x00\x00\x00\x02\x00\x00\x00\x00",
3523                 .input  = "\xd4\x27\x6a\x7f\x14\x91\x3d\x65"
3524                           "\xc8\x60\x48\x02\x87\xe3\x34\x06",
3525                 .ilen   = 16,
3526                 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3527                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3528                 .rlen   = 16,
3529         }, { /* LRW-32-AES 6 */
3530                 .key    = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c"
3531                           "\x23\x84\xcb\x1c\x77\xd6\x19\x5d"
3532                           "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21"
3533                           "\xa7\x9c\x21\xf8\xcb\x90\x02\x89"
3534                           "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1"
3535                           "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e",
3536                 .klen   = 48,
3537                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3538                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3539                 .input  = "\xbd\x06\xb8\xe1\xdb\x98\x89\x9e"
3540                           "\xc4\x98\xe4\x91\xcf\x1c\x70\x2b",
3541                 .ilen   = 16,
3542                 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3543                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3544                 .rlen   = 16,
3545         }, { /* LRW-32-AES 7 */
3546                 .key    = "\xfb\x76\x15\xb2\x3d\x80\x89\x1d"
3547                           "\xd4\x70\x98\x0b\xc7\x95\x84\xc8"
3548                           "\xb2\xfb\x64\xce\x60\x97\x87\x8d"
3549                           "\x17\xfc\xe4\x5a\x49\xe8\x30\xb7"
3550                           "\x6e\x78\x17\xe7\x2d\x5e\x12\xd4"
3551                           "\x60\x64\x04\x7a\xf1\x2f\x9e\x0c",
3552                 .klen   = 48,
3553                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3554                           "\x00\x00\x00\x02\x00\x00\x00\x00",
3555                 .input  = "\x5b\x90\x8e\xc1\xab\xdd\x67\x5f"
3556                           "\x3d\x69\x8a\x95\x53\xc8\x9c\xe5",
3557                 .ilen   = 16,
3558                 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3559                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3560                 .rlen   = 16,
3561         }, {
3562 /* http://www.mail-archive.com/stds-p1619@listserv.ieee.org/msg00173.html */
3563                 .key    = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c"
3564                           "\x23\x84\xcb\x1c\x77\xd6\x19\x5d"
3565                           "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21"
3566                           "\xa7\x9c\x21\xf8\xcb\x90\x02\x89"
3567                           "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1"
3568                           "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e",
3569                 .klen   = 48,
3570                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3571                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3572                 .input  = "\x1a\x1d\xa9\x30\xad\xf9\x2f\x9b"
3573                           "\xb6\x1d\xae\xef\xf0\x2f\xf8\x5a"
3574                           "\x39\x3c\xbf\x2a\xb2\x45\xb2\x23"
3575                           "\x1b\x63\x3c\xcf\xaa\xbe\xcf\x4e"
3576                           "\xfa\xe8\x29\xc2\x20\x68\x2b\x3c"
3577                           "\x2e\x8b\xf7\x6e\x25\xbd\xe3\x3d"
3578                           "\x66\x27\xd6\xaf\xd6\x64\x3e\xe3"
3579                           "\xe8\x58\x46\x97\x39\x51\x07\xde"
3580                           "\xcb\x37\xbc\xa9\xc0\x5f\x75\xc3"
3581                           "\x0e\x84\x23\x1d\x16\xd4\x1c\x59"
3582                           "\x9c\x1a\x02\x55\xab\x3a\x97\x1d"
3583                           "\xdf\xdd\xc7\x06\x51\xd7\x70\xae"
3584                           "\x23\xc6\x8c\xf5\x1e\xa0\xe5\x82"
3585                           "\xb8\xb2\xbf\x04\xa0\x32\x8e\x68"
3586                           "\xeb\xaf\x6e\x2d\x94\x22\x2f\xce"
3587                           "\x4c\xb5\x59\xe2\xa2\x2f\xa0\x98"
3588                           "\x1a\x97\xc6\xd4\xb5\x00\x59\xf2"
3589                           "\x84\x14\x72\xb1\x9a\x6e\xa3\x7f"
3590                           "\xea\x20\xe7\xcb\x65\x77\x3a\xdf"
3591                           "\xc8\x97\x67\x15\xc2\x2a\x27\xcc"
3592                           "\x18\x55\xa1\x24\x0b\x24\x24\xaf"
3593                           "\x5b\xec\x68\xb8\xc8\xf5\xba\x63"
3594                           "\xff\xed\x89\xce\xd5\x3d\x88\xf3"
3595                           "\x25\xef\x05\x7c\x3a\xef\xeb\xd8"
3596                           "\x7a\x32\x0d\xd1\x1e\x58\x59\x99"
3597                           "\x90\x25\xb5\x26\xb0\xe3\x2b\x6c"
3598                           "\x4c\xa9\x8b\x84\x4f\x5e\x01\x50"
3599                           "\x41\x30\x58\xc5\x62\x74\x52\x1d"
3600                           "\x45\x24\x6a\x42\x64\x4f\x97\x1c"
3601                           "\xa8\x66\xb5\x6d\x79\xd4\x0d\x48"
3602                           "\xc5\x5f\xf3\x90\x32\xdd\xdd\xe1"
3603                           "\xe4\xa9\x9f\xfc\xc3\x52\x5a\x46"
3604                           "\xe4\x81\x84\x95\x36\x59\x7a\x6b"
3605                           "\xaa\xb3\x60\xad\xce\x9f\x9f\x28"
3606                           "\xe0\x01\x75\x22\xc4\x4e\xa9\x62"
3607                           "\x5c\x62\x0d\x00\xcb\x13\xe8\x43"
3608                           "\x72\xd4\x2d\x53\x46\xb5\xd1\x16"
3609                           "\x22\x18\xdf\x34\x33\xf5\xd6\x1c"
3610                           "\xb8\x79\x78\x97\x94\xff\x72\x13"
3611                           "\x4c\x27\xfc\xcb\xbf\x01\x53\xa6"
3612                           "\xb4\x50\x6e\xde\xdf\xb5\x43\xa4"
3613                           "\x59\xdf\x52\xf9\x7c\xe0\x11\x6f"
3614                           "\x2d\x14\x8e\x24\x61\x2c\xe1\x17"
3615                           "\xcc\xce\x51\x0c\x19\x8a\x82\x30"
3616                           "\x94\xd5\x3d\x6a\x53\x06\x5e\xbd"
3617                           "\xb7\xeb\xfa\xfd\x27\x51\xde\x85"
3618                           "\x1e\x86\x53\x11\x53\x94\x00\xee"
3619                           "\x2b\x8c\x08\x2a\xbf\xdd\xae\x11"
3620                           "\xcb\x1e\xa2\x07\x9a\x80\xcf\x62"
3621                           "\x9b\x09\xdc\x95\x3c\x96\x8e\xb1"
3622                           "\x09\xbd\xe4\xeb\xdb\xca\x70\x7a"
3623                           "\x9e\xfa\x31\x18\x45\x3c\x21\x33"
3624                           "\xb0\xb3\x2b\xea\xf3\x71\x2d\xe1"
3625                           "\x03\xad\x1b\x48\xd4\x67\x27\xf0"
3626                           "\x62\xe4\x3d\xfb\x9b\x08\x76\xe7"
3627                           "\xdd\x2b\x01\x39\x04\x5a\x58\x7a"
3628                           "\xf7\x11\x90\xec\xbd\x51\x5c\x32"
3629                           "\x6b\xd7\x35\x39\x02\x6b\xf2\xa6"
3630                           "\xd0\x0d\x07\xe1\x06\xc4\x5b\x7d"
3631                           "\xe4\x6a\xd7\xee\x15\x1f\x83\xb4"
3632                           "\xa3\xa7\x5e\xc3\x90\xb7\xef\xd3"
3633                           "\xb7\x4f\xf8\x92\x4c\xb7\x3c\x29"
3634                           "\xcd\x7e\x2b\x5d\x43\xea\x42\xe7"
3635                           "\x74\x3f\x7d\x58\x88\x75\xde\x3e",
3636                 .ilen   = 512,
3637                 .result = "\x05\x11\xb7\x18\xab\xc6\x2d\xac"
3638                           "\x70\x5d\xf6\x22\x94\xcd\xe5\x6c"
3639                           "\x17\x6b\xf6\x1c\xf0\xf3\x6e\xf8"
3640                           "\x50\x38\x1f\x71\x49\xb6\x57\xd6"
3641                           "\x8f\xcb\x8d\x6b\xe3\xa6\x29\x90"
3642                           "\xfe\x2a\x62\x82\xae\x6d\x8b\xf6"
3643                           "\xad\x1e\x9e\x20\x5f\x38\xbe\x04"
3644                           "\xda\x10\x8e\xed\xa2\xa4\x87\xab"
3645                           "\xda\x6b\xb4\x0c\x75\xba\xd3\x7c"
3646                           "\xc9\xac\x42\x31\x95\x7c\xc9\x04"
3647                           "\xeb\xd5\x6e\x32\x69\x8a\xdb\xa6"
3648                           "\x15\xd7\x3f\x4f\x2f\x66\x69\x03"
3649                           "\x9c\x1f\x54\x0f\xde\x1f\xf3\x65"
3650                           "\x4c\x96\x12\xed\x7c\x92\x03\x01"
3651                           "\x6f\xbc\x35\x93\xac\xf1\x27\xf1"
3652                           "\xb4\x96\x82\x5a\x5f\xb0\xa0\x50"
3653                           "\x89\xa4\x8e\x66\x44\x85\xcc\xfd"
3654                           "\x33\x14\x70\xe3\x96\xb2\xc3\xd3"
3655                           "\xbb\x54\x5a\x1a\xf9\x74\xa2\xc5"
3656                           "\x2d\x64\x75\xdd\xb4\x54\xe6\x74"
3657                           "\x8c\xd3\x9d\x9e\x86\xab\x51\x53"
3658                           "\xb7\x93\x3e\x6f\xd0\x4e\x2c\x40"
3659                           "\xf6\xa8\x2e\x3e\x9d\xf4\x66\xa5"
3660                           "\x76\x12\x73\x44\x1a\x56\xd7\x72"
3661                           "\x88\xcd\x21\x8c\x4c\x0f\xfe\xda"
3662                           "\x95\xe0\x3a\xa6\xa5\x84\x46\xcd"
3663                           "\xd5\x3e\x9d\x3a\xe2\x67\xe6\x60"
3664                           "\x1a\xe2\x70\x85\x58\xc2\x1b\x09"
3665                           "\xe1\xd7\x2c\xca\xad\xa8\x8f\xf9"
3666                           "\xac\xb3\x0e\xdb\xca\x2e\xe2\xb8"
3667                           "\x51\x71\xd9\x3c\x6c\xf1\x56\xf8"
3668                           "\xea\x9c\xf1\xfb\x0c\xe6\xb7\x10"
3669                           "\x1c\xf8\xa9\x7c\xe8\x53\x35\xc1"
3670                           "\x90\x3e\x76\x4a\x74\xa4\x21\x2c"
3671                           "\xf6\x2c\x4e\x0f\x94\x3a\x88\x2e"
3672                           "\x41\x09\x6a\x33\x7d\xf6\xdd\x3f"
3673                           "\x8d\x23\x31\x74\x84\xeb\x88\x6e"
3674                           "\xcc\xb9\xbc\x22\x83\x19\x07\x22"
3675                           "\xa5\x2d\xdf\xa5\xf3\x80\x85\x78"
3676                           "\x84\x39\x6a\x6d\x6a\x99\x4f\xa5"
3677                           "\x15\xfe\x46\xb0\xe4\x6c\xa5\x41"
3678                           "\x3c\xce\x8f\x42\x60\x71\xa7\x75"
3679                           "\x08\x40\x65\x8a\x82\xbf\xf5\x43"
3680                           "\x71\x96\xa9\x4d\x44\x8a\x20\xbe"
3681                           "\xfa\x4d\xbb\xc0\x7d\x31\x96\x65"
3682                           "\xe7\x75\xe5\x3e\xfd\x92\x3b\xc9"
3683                           "\x55\xbb\x16\x7e\xf7\xc2\x8c\xa4"
3684                           "\x40\x1d\xe5\xef\x0e\xdf\xe4\x9a"
3685                           "\x62\x73\x65\xfd\x46\x63\x25\x3d"
3686                           "\x2b\xaf\xe5\x64\xfe\xa5\x5c\xcf"
3687                           "\x24\xf3\xb4\xac\x64\xba\xdf\x4b"
3688                           "\xc6\x96\x7d\x81\x2d\x8d\x97\xf7"
3689                           "\xc5\x68\x77\x84\x32\x2b\xcc\x85"
3690                           "\x74\x96\xf0\x12\x77\x61\xb9\xeb"
3691                           "\x71\xaa\x82\xcb\x1c\xdb\x89\xc8"
3692                           "\xc6\xb5\xe3\x5c\x7d\x39\x07\x24"
3693                           "\xda\x39\x87\x45\xc0\x2b\xbb\x01"
3694                           "\xac\xbc\x2a\x5c\x7f\xfc\xe8\xce"
3695                           "\x6d\x9c\x6f\xed\xd3\xc1\xa1\xd6"
3696                           "\xc5\x55\xa9\x66\x2f\xe1\xc8\x32"
3697                           "\xa6\x5d\xa4\x3a\x98\x73\xe8\x45"
3698                           "\xa4\xc7\xa8\xb4\xf6\x13\x03\xf6"
3699                           "\xe9\x2e\xc4\x29\x0f\x84\xdb\xc4"
3700                           "\x21\xc4\xc2\x75\x67\x89\x37\x0a",
3701                 .rlen   = 512,
3702         }
3703 };
3704
3705 static struct cipher_testvec aes_xts_enc_tv_template[] = {
3706         /* http://grouper.ieee.org/groups/1619/email/pdf00086.pdf */
3707         { /* XTS-AES 1 */
3708                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00"
3709                           "\x00\x00\x00\x00\x00\x00\x00\x00"
3710                           "\x00\x00\x00\x00\x00\x00\x00\x00"
3711                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3712                 .klen   = 32,
3713                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3714                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3715                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
3716                           "\x00\x00\x00\x00\x00\x00\x00\x00"
3717                           "\x00\x00\x00\x00\x00\x00\x00\x00"
3718                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3719                 .ilen   = 32,
3720                 .result = "\x91\x7c\xf6\x9e\xbd\x68\xb2\xec"
3721                           "\x9b\x9f\xe9\xa3\xea\xdd\xa6\x92"
3722                           "\xcd\x43\xd2\xf5\x95\x98\xed\x85"
3723                           "\x8c\x02\xc2\x65\x2f\xbf\x92\x2e",
3724                 .rlen   = 32,
3725         }, { /* XTS-AES 2 */
3726                 .key    = "\x11\x11\x11\x11\x11\x11\x11\x11"
3727                           "\x11\x11\x11\x11\x11\x11\x11\x11"
3728                           "\x22\x22\x22\x22\x22\x22\x22\x22"
3729                           "\x22\x22\x22\x22\x22\x22\x22\x22",
3730                 .klen   = 32,
3731                 .iv     = "\x33\x33\x33\x33\x33\x00\x00\x00"
3732                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3733                 .input  = "\x44\x44\x44\x44\x44\x44\x44\x44"
3734                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3735                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3736                           "\x44\x44\x44\x44\x44\x44\x44\x44",
3737                 .ilen   = 32,
3738                 .result = "\xc4\x54\x18\x5e\x6a\x16\x93\x6e"
3739                           "\x39\x33\x40\x38\xac\xef\x83\x8b"
3740                           "\xfb\x18\x6f\xff\x74\x80\xad\xc4"
3741                           "\x28\x93\x82\xec\xd6\xd3\x94\xf0",
3742                 .rlen   = 32,
3743         }, { /* XTS-AES 3 */
3744                 .key    = "\xff\xfe\xfd\xfc\xfb\xfa\xf9\xf8"
3745                           "\xf7\xf6\xf5\xf4\xf3\xf2\xf1\xf0"
3746                           "\x22\x22\x22\x22\x22\x22\x22\x22"
3747                           "\x22\x22\x22\x22\x22\x22\x22\x22",
3748                 .klen   = 32,
3749                 .iv     = "\x33\x33\x33\x33\x33\x00\x00\x00"
3750                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3751                 .input  = "\x44\x44\x44\x44\x44\x44\x44\x44"
3752                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3753                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3754                           "\x44\x44\x44\x44\x44\x44\x44\x44",
3755                 .ilen   = 32,
3756                 .result = "\xaf\x85\x33\x6b\x59\x7a\xfc\x1a"
3757                           "\x90\x0b\x2e\xb2\x1e\xc9\x49\xd2"
3758                           "\x92\xdf\x4c\x04\x7e\x0b\x21\x53"
3759                           "\x21\x86\xa5\x97\x1a\x22\x7a\x89",
3760                 .rlen   = 32,
3761         }, { /* XTS-AES 4 */
3762                 .key    = "\x27\x18\x28\x18\x28\x45\x90\x45"
3763                           "\x23\x53\x60\x28\x74\x71\x35\x26"
3764                           "\x31\x41\x59\x26\x53\x58\x97\x93"
3765                           "\x23\x84\x62\x64\x33\x83\x27\x95",
3766                 .klen   = 32,
3767                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3768                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3769                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
3770                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3771                           "\x10\x11\x12\x13\x14\x15\x16\x17"
3772                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
3773                           "\x20\x21\x22\x23\x24\x25\x26\x27"
3774                           "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
3775                           "\x30\x31\x32\x33\x34\x35\x36\x37"
3776                           "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
3777                           "\x40\x41\x42\x43\x44\x45\x46\x47"
3778                           "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
3779                           "\x50\x51\x52\x53\x54\x55\x56\x57"
3780                           "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
3781                           "\x60\x61\x62\x63\x64\x65\x66\x67"
3782                           "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
3783                           "\x70\x71\x72\x73\x74\x75\x76\x77"
3784                           "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
3785                           "\x80\x81\x82\x83\x84\x85\x86\x87"
3786                           "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
3787                           "\x90\x91\x92\x93\x94\x95\x96\x97"
3788                           "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
3789                           "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
3790                           "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
3791                           "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
3792                           "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
3793                           "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
3794                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
3795                           "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
3796                           "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
3797                           "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
3798                           "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
3799                           "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
3800                           "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"
3801                           "\x00\x01\x02\x03\x04\x05\x06\x07"
3802                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3803                           "\x10\x11\x12\x13\x14\x15\x16\x17"
3804                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
3805                           "\x20\x21\x22\x23\x24\x25\x26\x27"
3806                           "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
3807                           "\x30\x31\x32\x33\x34\x35\x36\x37"
3808                           "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
3809                           "\x40\x41\x42\x43\x44\x45\x46\x47"
3810                           "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
3811                           "\x50\x51\x52\x53\x54\x55\x56\x57"
3812                           "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
3813                           "\x60\x61\x62\x63\x64\x65\x66\x67"
3814                           "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
3815                           "\x70\x71\x72\x73\x74\x75\x76\x77"
3816                           "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
3817                           "\x80\x81\x82\x83\x84\x85\x86\x87"
3818                           "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
3819                           "\x90\x91\x92\x93\x94\x95\x96\x97"
3820                           "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
3821                           "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
3822                           "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
3823                           "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
3824                           "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
3825                           "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
3826                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
3827                           "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
3828                           "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
3829                           "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
3830                           "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
3831                           "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
3832                           "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
3833                 .ilen   = 512,
3834                 .result = "\x27\xa7\x47\x9b\xef\xa1\xd4\x76"
3835                           "\x48\x9f\x30\x8c\xd4\xcf\xa6\xe2"
3836                           "\xa9\x6e\x4b\xbe\x32\x08\xff\x25"
3837                           "\x28\x7d\xd3\x81\x96\x16\xe8\x9c"
3838                           "\xc7\x8c\xf7\xf5\xe5\x43\x44\x5f"
3839                           "\x83\x33\xd8\xfa\x7f\x56\x00\x00"
3840                           "\x05\x27\x9f\xa5\xd8\xb5\xe4\xad"
3841                           "\x40\xe7\x36\xdd\xb4\xd3\x54\x12"
3842                           "\x32\x80\x63\xfd\x2a\xab\x53\xe5"
3843                           "\xea\x1e\x0a\x9f\x33\x25\x00\xa5"
3844                           "\xdf\x94\x87\xd0\x7a\x5c\x92\xcc"
3845                           "\x51\x2c\x88\x66\xc7\xe8\x60\xce"
3846                           "\x93\xfd\xf1\x66\xa2\x49\x12\xb4"
3847                           "\x22\x97\x61\x46\xae\x20\xce\x84"
3848                           "\x6b\xb7\xdc\x9b\xa9\x4a\x76\x7a"
3849                           "\xae\xf2\x0c\x0d\x61\xad\x02\x65"
3850                           "\x5e\xa9\x2d\xc4\xc4\xe4\x1a\x89"
3851                           "\x52\xc6\x51\xd3\x31\x74\xbe\x51"
3852                           "\xa1\x0c\x42\x11\x10\xe6\xd8\x15"
3853                           "\x88\xed\xe8\x21\x03\xa2\x52\xd8"
3854                           "\xa7\x50\xe8\x76\x8d\xef\xff\xed"
3855                           "\x91\x22\x81\x0a\xae\xb9\x9f\x91"
3856                           "\x72\xaf\x82\xb6\x04\xdc\x4b\x8e"
3857                           "\x51\xbc\xb0\x82\x35\xa6\xf4\x34"
3858                           "\x13\x32\xe4\xca\x60\x48\x2a\x4b"
3859                           "\xa1\xa0\x3b\x3e\x65\x00\x8f\xc5"
3860                           "\xda\x76\xb7\x0b\xf1\x69\x0d\xb4"
3861                           "\xea\xe2\x9c\x5f\x1b\xad\xd0\x3c"
3862                           "\x5c\xcf\x2a\x55\xd7\x05\xdd\xcd"
3863                           "\x86\xd4\x49\x51\x1c\xeb\x7e\xc3"
3864                           "\x0b\xf1\x2b\x1f\xa3\x5b\x91\x3f"
3865                           "\x9f\x74\x7a\x8a\xfd\x1b\x13\x0e"
3866                           "\x94\xbf\xf9\x4e\xff\xd0\x1a\x91"
3867                           "\x73\x5c\xa1\x72\x6a\xcd\x0b\x19"
3868                           "\x7c\x4e\x5b\x03\x39\x36\x97\xe1"
3869                           "\x26\x82\x6f\xb6\xbb\xde\x8e\xcc"
3870                           "\x1e\x08\x29\x85\x16\xe2\xc9\xed"
3871                           "\x03\xff\x3c\x1b\x78\x60\xf6\xde"
3872                           "\x76\xd4\xce\xcd\x94\xc8\x11\x98"
3873                           "\x55\xef\x52\x97\xca\x67\xe9\xf3"
3874                           "\xe7\xff\x72\xb1\xe9\x97\x85\xca"
3875                           "\x0a\x7e\x77\x20\xc5\xb3\x6d\xc6"
3876                           "\xd7\x2c\xac\x95\x74\xc8\xcb\xbc"
3877                           "\x2f\x80\x1e\x23\xe5\x6f\xd3\x44"
3878                           "\xb0\x7f\x22\x15\x4b\xeb\xa0\xf0"
3879                           "\x8c\xe8\x89\x1e\x64\x3e\xd9\x95"
3880                           "\xc9\x4d\x9a\x69\xc9\xf1\xb5\xf4"
3881                           "\x99\x02\x7a\x78\x57\x2a\xee\xbd"
3882                           "\x74\xd2\x0c\xc3\x98\x81\xc2\x13"
3883                           "\xee\x77\x0b\x10\x10\xe4\xbe\xa7"
3884                           "\x18\x84\x69\x77\xae\x11\x9f\x7a"
3885                           "\x02\x3a\xb5\x8c\xca\x0a\xd7\x52"
3886                           "\xaf\xe6\x56\xbb\x3c\x17\x25\x6a"
3887                           "\x9f\x6e\x9b\xf1\x9f\xdd\x5a\x38"
3888                           "\xfc\x82\xbb\xe8\x72\xc5\x53\x9e"
3889                           "\xdb\x60\x9e\xf4\xf7\x9c\x20\x3e"
3890                           "\xbb\x14\x0f\x2e\x58\x3c\xb2\xad"
3891                           "\x15\xb4\xaa\x5b\x65\x50\x16\xa8"
3892                           "\x44\x92\x77\xdb\xd4\x77\xef\x2c"
3893                           "\x8d\x6c\x01\x7d\xb7\x38\xb1\x8d"
3894                           "\xeb\x4a\x42\x7d\x19\x23\xce\x3f"
3895                           "\xf2\x62\x73\x57\x79\xa4\x18\xf2"
3896                           "\x0a\x28\x2d\xf9\x20\x14\x7b\xea"
3897                           "\xbe\x42\x1e\xe5\x31\x9d\x05\x68",
3898                 .rlen   = 512,
3899         }
3900 };
3901
3902 static struct cipher_testvec aes_xts_dec_tv_template[] = {
3903         /* http://grouper.ieee.org/groups/1619/email/pdf00086.pdf */
3904         { /* XTS-AES 1 */
3905                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00"
3906                           "\x00\x00\x00\x00\x00\x00\x00\x00"
3907                           "\x00\x00\x00\x00\x00\x00\x00\x00"
3908                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3909                 .klen   = 32,
3910                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3911                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3912                 .input = "\x91\x7c\xf6\x9e\xbd\x68\xb2\xec"
3913                          "\x9b\x9f\xe9\xa3\xea\xdd\xa6\x92"
3914                          "\xcd\x43\xd2\xf5\x95\x98\xed\x85"
3915                          "\x8c\x02\xc2\x65\x2f\xbf\x92\x2e",
3916                 .ilen   = 32,
3917                 .result  = "\x00\x00\x00\x00\x00\x00\x00\x00"
3918                            "\x00\x00\x00\x00\x00\x00\x00\x00"
3919                            "\x00\x00\x00\x00\x00\x00\x00\x00"
3920                            "\x00\x00\x00\x00\x00\x00\x00\x00",
3921                 .rlen   = 32,
3922         }, { /* XTS-AES 2 */
3923                 .key    = "\x11\x11\x11\x11\x11\x11\x11\x11"
3924                           "\x11\x11\x11\x11\x11\x11\x11\x11"
3925                           "\x22\x22\x22\x22\x22\x22\x22\x22"
3926                           "\x22\x22\x22\x22\x22\x22\x22\x22",
3927                 .klen   = 32,
3928                 .iv     = "\x33\x33\x33\x33\x33\x00\x00\x00"
3929                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3930                 .input  = "\xc4\x54\x18\x5e\x6a\x16\x93\x6e"
3931                           "\x39\x33\x40\x38\xac\xef\x83\x8b"
3932                           "\xfb\x18\x6f\xff\x74\x80\xad\xc4"
3933                           "\x28\x93\x82\xec\xd6\xd3\x94\xf0",
3934                 .ilen   = 32,
3935                 .result = "\x44\x44\x44\x44\x44\x44\x44\x44"
3936                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3937                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3938                           "\x44\x44\x44\x44\x44\x44\x44\x44",
3939                 .rlen   = 32,
3940         }, { /* XTS-AES 3 */
3941                 .key    = "\xff\xfe\xfd\xfc\xfb\xfa\xf9\xf8"
3942                           "\xf7\xf6\xf5\xf4\xf3\xf2\xf1\xf0"
3943                           "\x22\x22\x22\x22\x22\x22\x22\x22"
3944                           "\x22\x22\x22\x22\x22\x22\x22\x22",
3945                 .klen   = 32,
3946                 .iv     = "\x33\x33\x33\x33\x33\x00\x00\x00"
3947                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3948                 .input = "\xaf\x85\x33\x6b\x59\x7a\xfc\x1a"
3949                           "\x90\x0b\x2e\xb2\x1e\xc9\x49\xd2"
3950                           "\x92\xdf\x4c\x04\x7e\x0b\x21\x53"
3951                           "\x21\x86\xa5\x97\x1a\x22\x7a\x89",
3952                 .ilen   = 32,
3953                 .result  = "\x44\x44\x44\x44\x44\x44\x44\x44"
3954                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3955                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3956                           "\x44\x44\x44\x44\x44\x44\x44\x44",
3957                 .rlen   = 32,
3958         }, { /* XTS-AES 4 */
3959                 .key    = "\x27\x18\x28\x18\x28\x45\x90\x45"
3960                           "\x23\x53\x60\x28\x74\x71\x35\x26"
3961                           "\x31\x41\x59\x26\x53\x58\x97\x93"
3962                           "\x23\x84\x62\x64\x33\x83\x27\x95",
3963                 .klen   = 32,
3964                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3965                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3966                 .input  = "\x27\xa7\x47\x9b\xef\xa1\xd4\x76"
3967                           "\x48\x9f\x30\x8c\xd4\xcf\xa6\xe2"
3968                           "\xa9\x6e\x4b\xbe\x32\x08\xff\x25"
3969                           "\x28\x7d\xd3\x81\x96\x16\xe8\x9c"
3970                           "\xc7\x8c\xf7\xf5\xe5\x43\x44\x5f"
3971                           "\x83\x33\xd8\xfa\x7f\x56\x00\x00"
3972                           "\x05\x27\x9f\xa5\xd8\xb5\xe4\xad"
3973                           "\x40\xe7\x36\xdd\xb4\xd3\x54\x12"
3974                           "\x32\x80\x63\xfd\x2a\xab\x53\xe5"
3975                           "\xea\x1e\x0a\x9f\x33\x25\x00\xa5"
3976                           "\xdf\x94\x87\xd0\x7a\x5c\x92\xcc"
3977                           "\x51\x2c\x88\x66\xc7\xe8\x60\xce"
3978                           "\x93\xfd\xf1\x66\xa2\x49\x12\xb4"
3979                           "\x22\x97\x61\x46\xae\x20\xce\x84"
3980                           "\x6b\xb7\xdc\x9b\xa9\x4a\x76\x7a"
3981                           "\xae\xf2\x0c\x0d\x61\xad\x02\x65"
3982                           "\x5e\xa9\x2d\xc4\xc4\xe4\x1a\x89"
3983                           "\x52\xc6\x51\xd3\x31\x74\xbe\x51"
3984                           "\xa1\x0c\x42\x11\x10\xe6\xd8\x15"
3985                           "\x88\xed\xe8\x21\x03\xa2\x52\xd8"
3986                           "\xa7\x50\xe8\x76\x8d\xef\xff\xed"
3987                           "\x91\x22\x81\x0a\xae\xb9\x9f\x91"
3988                           "\x72\xaf\x82\xb6\x04\xdc\x4b\x8e"
3989                           "\x51\xbc\xb0\x82\x35\xa6\xf4\x34"
3990                           "\x13\x32\xe4\xca\x60\x48\x2a\x4b"
3991                           "\xa1\xa0\x3b\x3e\x65\x00\x8f\xc5"
3992                           "\xda\x76\xb7\x0b\xf1\x69\x0d\xb4"
3993                           "\xea\xe2\x9c\x5f\x1b\xad\xd0\x3c"
3994                           "\x5c\xcf\x2a\x55\xd7\x05\xdd\xcd"
3995                           "\x86\xd4\x49\x51\x1c\xeb\x7e\xc3"
3996                           "\x0b\xf1\x2b\x1f\xa3\x5b\x91\x3f"
3997                           "\x9f\x74\x7a\x8a\xfd\x1b\x13\x0e"
3998                           "\x94\xbf\xf9\x4e\xff\xd0\x1a\x91"
3999                           "\x73\x5c\xa1\x72\x6a\xcd\x0b\x19"
4000                           "\x7c\x4e\x5b\x03\x39\x36\x97\xe1"
4001                           "\x26\x82\x6f\xb6\xbb\xde\x8e\xcc"
4002                           "\x1e\x08\x29\x85\x16\xe2\xc9\xed"
4003                           "\x03\xff\x3c\x1b\x78\x60\xf6\xde"
4004                           "\x76\xd4\xce\xcd\x94\xc8\x11\x98"
4005                           "\x55\xef\x52\x97\xca\x67\xe9\xf3"
4006                           "\xe7\xff\x72\xb1\xe9\x97\x85\xca"
4007                           "\x0a\x7e\x77\x20\xc5\xb3\x6d\xc6"
4008                           "\xd7\x2c\xac\x95\x74\xc8\xcb\xbc"
4009                           "\x2f\x80\x1e\x23\xe5\x6f\xd3\x44"
4010                           "\xb0\x7f\x22\x15\x4b\xeb\xa0\xf0"
4011                           "\x8c\xe8\x89\x1e\x64\x3e\xd9\x95"
4012                           "\xc9\x4d\x9a\x69\xc9\xf1\xb5\xf4"
4013                           "\x99\x02\x7a\x78\x57\x2a\xee\xbd"
4014                           "\x74\xd2\x0c\xc3\x98\x81\xc2\x13"
4015                           "\xee\x77\x0b\x10\x10\xe4\xbe\xa7"
4016                           "\x18\x84\x69\x77\xae\x11\x9f\x7a"
4017                           "\x02\x3a\xb5\x8c\xca\x0a\xd7\x52"
4018                           "\xaf\xe6\x56\xbb\x3c\x17\x25\x6a"
4019                           "\x9f\x6e\x9b\xf1\x9f\xdd\x5a\x38"
4020                           "\xfc\x82\xbb\xe8\x72\xc5\x53\x9e"
4021                           "\xdb\x60\x9e\xf4\xf7\x9c\x20\x3e"
4022                           "\xbb\x14\x0f\x2e\x58\x3c\xb2\xad"
4023                           "\x15\xb4\xaa\x5b\x65\x50\x16\xa8"
4024                           "\x44\x92\x77\xdb\xd4\x77\xef\x2c"
4025                           "\x8d\x6c\x01\x7d\xb7\x38\xb1\x8d"
4026                           "\xeb\x4a\x42\x7d\x19\x23\xce\x3f"
4027                           "\xf2\x62\x73\x57\x79\xa4\x18\xf2"
4028                           "\x0a\x28\x2d\xf9\x20\x14\x7b\xea"
4029                           "\xbe\x42\x1e\xe5\x31\x9d\x05\x68",
4030                 .ilen   = 512,
4031                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
4032                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4033                           "\x10\x11\x12\x13\x14\x15\x16\x17"
4034                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
4035                           "\x20\x21\x22\x23\x24\x25\x26\x27"
4036                           "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
4037                           "\x30\x31\x32\x33\x34\x35\x36\x37"
4038                           "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
4039                           "\x40\x41\x42\x43\x44\x45\x46\x47"
4040                           "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
4041                           "\x50\x51\x52\x53\x54\x55\x56\x57"
4042                           "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
4043                           "\x60\x61\x62\x63\x64\x65\x66\x67"
4044                           "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
4045                           "\x70\x71\x72\x73\x74\x75\x76\x77"
4046                           "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
4047                           "\x80\x81\x82\x83\x84\x85\x86\x87"
4048                           "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
4049                           "\x90\x91\x92\x93\x94\x95\x96\x97"
4050                           "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
4051                           "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
4052                           "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
4053                           "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
4054                           "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
4055                           "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
4056                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
4057                           "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
4058                           "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
4059                           "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
4060                           "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
4061                           "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
4062                           "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"
4063                           "\x00\x01\x02\x03\x04\x05\x06\x07"
4064                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4065                           "\x10\x11\x12\x13\x14\x15\x16\x17"
4066                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
4067                           "\x20\x21\x22\x23\x24\x25\x26\x27"
4068                           "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
4069                           "\x30\x31\x32\x33\x34\x35\x36\x37"
4070                           "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
4071                           "\x40\x41\x42\x43\x44\x45\x46\x47"
4072                           "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
4073                           "\x50\x51\x52\x53\x54\x55\x56\x57"
4074                           "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
4075                           "\x60\x61\x62\x63\x64\x65\x66\x67"
4076                           "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
4077                           "\x70\x71\x72\x73\x74\x75\x76\x77"
4078                           "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
4079                           "\x80\x81\x82\x83\x84\x85\x86\x87"
4080                           "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
4081                           "\x90\x91\x92\x93\x94\x95\x96\x97"
4082                           "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
4083                           "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
4084                           "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
4085                           "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
4086                           "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
4087                           "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
4088                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
4089                           "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
4090                           "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
4091                           "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
4092                           "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
4093                           "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
4094                           "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
4095                 .rlen   = 512,
4096         }
4097 };
4098
4099
4100 static struct cipher_testvec aes_ctr_enc_tv_template[] = {
4101         { /* From NIST Special Publication 800-38A, Appendix F.5 */
4102                 .key    = "\x2b\x7e\x15\x16\x28\xae\xd2\xa6"
4103                           "\xab\xf7\x15\x88\x09\xcf\x4f\x3c",
4104                 .klen   = 16,
4105                 .iv     = "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
4106                           "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
4107                 .input  = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
4108                           "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
4109                           "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
4110                           "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
4111                           "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
4112                           "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
4113                           "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
4114                           "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
4115                 .ilen   = 64,
4116                 .result = "\x87\x4d\x61\x91\xb6\x20\xe3\x26"
4117                           "\x1b\xef\x68\x64\x99\x0d\xb6\xce"
4118                           "\x98\x06\xf6\x6b\x79\x70\xfd\xff"
4119                           "\x86\x17\x18\x7b\xb9\xff\xfd\xff"
4120                           "\x5a\xe4\xdf\x3e\xdb\xd5\xd3\x5e"
4121                           "\x5b\x4f\x09\x02\x0d\xb0\x3e\xab"
4122                           "\x1e\x03\x1d\xda\x2f\xbe\x03\xd1"
4123                           "\x79\x21\x70\xa0\xf3\x00\x9c\xee",
4124                 .rlen   = 64,
4125         }, {
4126                 .key    = "\x8e\x73\xb0\xf7\xda\x0e\x64\x52"
4127                           "\xc8\x10\xf3\x2b\x80\x90\x79\xe5"
4128                           "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b",
4129                 .klen   = 24,
4130                 .iv     = "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
4131                           "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
4132                 .input  = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
4133                           "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
4134                           "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
4135                           "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
4136                           "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
4137                           "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
4138                           "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
4139                           "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
4140                 .ilen   = 64,
4141                 .result = "\x1a\xbc\x93\x24\x17\x52\x1c\xa2"
4142                           "\x4f\x2b\x04\x59\xfe\x7e\x6e\x0b"
4143                           "\x09\x03\x39\xec\x0a\xa6\xfa\xef"
4144                           "\xd5\xcc\xc2\xc6\xf4\xce\x8e\x94"
4145                           "\x1e\x36\xb2\x6b\xd1\xeb\xc6\x70"
4146                           "\xd1\xbd\x1d\x66\x56\x20\xab\xf7"
4147                           "\x4f\x78\xa7\xf6\xd2\x98\x09\x58"
4148                           "\x5a\x97\xda\xec\x58\xc6\xb0\x50",
4149                 .rlen   = 64,
4150         }, {
4151                 .key    = "\x60\x3d\xeb\x10\x15\xca\x71\xbe"
4152                           "\x2b\x73\xae\xf0\x85\x7d\x77\x81"
4153                           "\x1f\x35\x2c\x07\x3b\x61\x08\xd7"
4154                           "\x2d\x98\x10\xa3\x09\x14\xdf\xf4",
4155                 .klen   = 32,
4156                 .iv     = "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
4157                           "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
4158                 .input  = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
4159                           "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
4160                           "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
4161                           "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
4162                           "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
4163                           "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
4164                           "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
4165                           "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
4166                 .ilen   = 64,
4167                 .result = "\x60\x1e\xc3\x13\x77\x57\x89\xa5"
4168                           "\xb7\xa7\xf5\x04\xbb\xf3\xd2\x28"
4169                           "\xf4\x43\xe3\xca\x4d\x62\xb5\x9a"
4170                           "\xca\x84\xe9\x90\xca\xca\xf5\xc5"
4171                           "\x2b\x09\x30\xda\xa2\x3d\xe9\x4c"
4172                           "\xe8\x70\x17\xba\x2d\x84\x98\x8d"
4173                           "\xdf\xc9\xc5\x8d\xb6\x7a\xad\xa6"
4174                           "\x13\xc2\xdd\x08\x45\x79\x41\xa6",
4175                 .rlen   = 64,
4176         }
4177 };
4178
4179 static struct cipher_testvec aes_ctr_dec_tv_template[] = {
4180         { /* From NIST Special Publication 800-38A, Appendix F.5 */
4181                 .key    = "\x2b\x7e\x15\x16\x28\xae\xd2\xa6"
4182                           "\xab\xf7\x15\x88\x09\xcf\x4f\x3c",
4183                 .klen   = 16,
4184                 .iv     = "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
4185                           "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
4186                 .input  = "\x87\x4d\x61\x91\xb6\x20\xe3\x26"
4187                           "\x1b\xef\x68\x64\x99\x0d\xb6\xce"
4188                           "\x98\x06\xf6\x6b\x79\x70\xfd\xff"
4189                           "\x86\x17\x18\x7b\xb9\xff\xfd\xff"
4190                           "\x5a\xe4\xdf\x3e\xdb\xd5\xd3\x5e"
4191                           "\x5b\x4f\x09\x02\x0d\xb0\x3e\xab"
4192                           "\x1e\x03\x1d\xda\x2f\xbe\x03\xd1"
4193                           "\x79\x21\x70\xa0\xf3\x00\x9c\xee",
4194                 .ilen   = 64,
4195                 .result = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
4196                           "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
4197                           "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
4198                           "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
4199                           "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
4200                           "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
4201                           "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
4202                           "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
4203                 .rlen   = 64,
4204         }, {
4205                 .key    = "\x8e\x73\xb0\xf7\xda\x0e\x64\x52"
4206                           "\xc8\x10\xf3\x2b\x80\x90\x79\xe5"
4207                           "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b",
4208                 .klen   = 24,
4209                 .iv     = "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
4210                           "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
4211                 .input  = "\x1a\xbc\x93\x24\x17\x52\x1c\xa2"
4212                           "\x4f\x2b\x04\x59\xfe\x7e\x6e\x0b"
4213                           "\x09\x03\x39\xec\x0a\xa6\xfa\xef"
4214                           "\xd5\xcc\xc2\xc6\xf4\xce\x8e\x94"
4215                           "\x1e\x36\xb2\x6b\xd1\xeb\xc6\x70"
4216                           "\xd1\xbd\x1d\x66\x56\x20\xab\xf7"
4217                           "\x4f\x78\xa7\xf6\xd2\x98\x09\x58"
4218                           "\x5a\x97\xda\xec\x58\xc6\xb0\x50",
4219                 .ilen   = 64,
4220                 .result = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
4221                           "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
4222                           "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
4223                           "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
4224                           "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
4225                           "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
4226                           "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
4227                           "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
4228                 .rlen   = 64,
4229         }, {
4230                 .key    = "\x60\x3d\xeb\x10\x15\xca\x71\xbe"
4231                           "\x2b\x73\xae\xf0\x85\x7d\x77\x81"
4232                           "\x1f\x35\x2c\x07\x3b\x61\x08\xd7"
4233                           "\x2d\x98\x10\xa3\x09\x14\xdf\xf4",
4234                 .klen   = 32,
4235                 .iv     = "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
4236                           "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
4237                 .input  = "\x60\x1e\xc3\x13\x77\x57\x89\xa5"
4238                           "\xb7\xa7\xf5\x04\xbb\xf3\xd2\x28"
4239                           "\xf4\x43\xe3\xca\x4d\x62\xb5\x9a"
4240                           "\xca\x84\xe9\x90\xca\xca\xf5\xc5"
4241                           "\x2b\x09\x30\xda\xa2\x3d\xe9\x4c"
4242                           "\xe8\x70\x17\xba\x2d\x84\x98\x8d"
4243                           "\xdf\xc9\xc5\x8d\xb6\x7a\xad\xa6"
4244                           "\x13\xc2\xdd\x08\x45\x79\x41\xa6",
4245                 .ilen   = 64,
4246                 .result = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
4247                           "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
4248                           "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
4249                           "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
4250                           "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
4251                           "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
4252                           "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
4253                           "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
4254                 .rlen   = 64,
4255         }
4256 };
4257
4258 static struct cipher_testvec aes_ctr_rfc3686_enc_tv_template[] = {
4259         { /* From RFC 3686 */
4260                 .key    = "\xae\x68\x52\xf8\x12\x10\x67\xcc"
4261                           "\x4b\xf7\xa5\x76\x55\x77\xf3\x9e"
4262                           "\x00\x00\x00\x30",
4263                 .klen   = 20,
4264                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
4265                 .input  = "Single block msg",
4266                 .ilen   = 16,
4267                 .result = "\xe4\x09\x5d\x4f\xb7\xa7\xb3\x79"
4268                           "\x2d\x61\x75\xa3\x26\x13\x11\xb8",
4269                 .rlen   = 16,
4270         }, {
4271                 .key    = "\x7e\x24\x06\x78\x17\xfa\xe0\xd7"
4272                           "\x43\xd6\xce\x1f\x32\x53\x91\x63"
4273                           "\x00\x6c\xb6\xdb",
4274                 .klen   = 20,
4275                 .iv     = "\xc0\x54\x3b\x59\xda\x48\xd9\x0b",
4276                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
4277                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4278                           "\x10\x11\x12\x13\x14\x15\x16\x17"
4279                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
4280                 .ilen   = 32,
4281                 .result = "\x51\x04\xa1\x06\x16\x8a\x72\xd9"
4282                           "\x79\x0d\x41\xee\x8e\xda\xd3\x88"
4283                           "\xeb\x2e\x1e\xfc\x46\xda\x57\xc8"
4284                           "\xfc\xe6\x30\xdf\x91\x41\xbe\x28",
4285                 .rlen   = 32,
4286         }, {
4287                 .key    = "\x16\xaf\x5b\x14\x5f\xc9\xf5\x79"
4288                           "\xc1\x75\xf9\x3e\x3b\xfb\x0e\xed"
4289                           "\x86\x3d\x06\xcc\xfd\xb7\x85\x15"
4290                           "\x00\x00\x00\x48",
4291                 .klen   = 28,
4292                 .iv     = "\x36\x73\x3c\x14\x7d\x6d\x93\xcb",
4293                 .input  = "Single block msg",
4294                 .ilen   = 16,
4295                 .result = "\x4b\x55\x38\x4f\xe2\x59\xc9\xc8"
4296                           "\x4e\x79\x35\xa0\x03\xcb\xe9\x28",
4297                 .rlen   = 16,
4298         }, {
4299                 .key    = "\x7c\x5c\xb2\x40\x1b\x3d\xc3\x3c"
4300                           "\x19\xe7\x34\x08\x19\xe0\xf6\x9c"
4301                           "\x67\x8c\x3d\xb8\xe6\xf6\xa9\x1a"
4302                           "\x00\x96\xb0\x3b",
4303                 .klen   = 28,
4304                 .iv     = "\x02\x0c\x6e\xad\xc2\xcb\x50\x0d",
4305                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
4306                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4307                           "\x10\x11\x12\x13\x14\x15\x16\x17"
4308                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
4309                 .ilen   = 32,
4310                 .result = "\x45\x32\x43\xfc\x60\x9b\x23\x32"
4311                           "\x7e\xdf\xaa\xfa\x71\x31\xcd\x9f"
4312                           "\x84\x90\x70\x1c\x5a\xd4\xa7\x9c"
4313                           "\xfc\x1f\xe0\xff\x42\xf4\xfb\x00",
4314                 .rlen   = 32,
4315         }, {
4316                 .key    = "\x77\x6b\xef\xf2\x85\x1d\xb0\x6f"
4317                           "\x4c\x8a\x05\x42\xc8\x69\x6f\x6c"
4318                           "\x6a\x81\xaf\x1e\xec\x96\xb4\xd3"
4319                           "\x7f\xc1\xd6\x89\xe6\xc1\xc1\x04"
4320                           "\x00\x00\x00\x60",
4321                 .klen   = 36,
4322                 .iv     = "\xdb\x56\x72\xc9\x7a\xa8\xf0\xb2",
4323                 .input  = "Single block msg",
4324                 .ilen   = 16,
4325                 .result = "\x14\x5a\xd0\x1d\xbf\x82\x4e\xc7"
4326                           "\x56\x08\x63\xdc\x71\xe3\xe0\xc0",
4327                 .rlen   = 16,
4328         }, {
4329                 .key    = "\xf6\xd6\x6d\x6b\xd5\x2d\x59\xbb"
4330                           "\x07\x96\x36\x58\x79\xef\xf8\x86"
4331                           "\xc6\x6d\xd5\x1a\x5b\x6a\x99\x74"
4332                           "\x4b\x50\x59\x0c\x87\xa2\x38\x84"
4333                           "\x00\xfa\xac\x24",
4334                 .klen   = 36,
4335                 .iv     = "\xc1\x58\x5e\xf1\x5a\x43\xd8\x75",
4336                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
4337                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4338                           "\x10\x11\x12\x13\x14\x15\x16\x17"
4339                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
4340                 .ilen   = 32,
4341                 .result = "\xf0\x5e\x23\x1b\x38\x94\x61\x2c"
4342                           "\x49\xee\x00\x0b\x80\x4e\xb2\xa9"
4343                           "\xb8\x30\x6b\x50\x8f\x83\x9d\x6a"
4344                           "\x55\x30\x83\x1d\x93\x44\xaf\x1c",
4345                 .rlen   = 32,
4346         }, {
4347         // generated using Crypto++
4348                 .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
4349                         "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4350                         "\x10\x11\x12\x13\x14\x15\x16\x17"
4351                         "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
4352                         "\x00\x00\x00\x00",
4353                 .klen = 32 + 4,
4354                 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00",
4355                 .input =
4356                         "\x00\x01\x02\x03\x04\x05\x06\x07"
4357                         "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4358                         "\x10\x11\x12\x13\x14\x15\x16\x17"
4359                         "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
4360                         "\x20\x21\x22\x23\x24\x25\x26\x27"
4361                         "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
4362                         "\x30\x31\x32\x33\x34\x35\x36\x37"
4363                         "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
4364                         "\x40\x41\x42\x43\x44\x45\x46\x47"
4365                         "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
4366                         "\x50\x51\x52\x53\x54\x55\x56\x57"
4367                         "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
4368                         "\x60\x61\x62\x63\x64\x65\x66\x67"
4369                         "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
4370                         "\x70\x71\x72\x73\x74\x75\x76\x77"
4371                         "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
4372                         "\x80\x81\x82\x83\x84\x85\x86\x87"
4373                         "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
4374                         "\x90\x91\x92\x93\x94\x95\x96\x97"
4375                         "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
4376                         "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
4377                         "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
4378                         "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
4379                         "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
4380                         "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
4381                         "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
4382                         "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
4383                         "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
4384                         "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
4385                         "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
4386                         "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
4387                         "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"
4388                         "\x00\x03\x06\x09\x0c\x0f\x12\x15"
4389                         "\x18\x1b\x1e\x21\x24\x27\x2a\x2d"
4390                         "\x30\x33\x36\x39\x3c\x3f\x42\x45"
4391                         "\x48\x4b\x4e\x51\x54\x57\x5a\x5d"
4392                         "\x60\x63\x66\x69\x6c\x6f\x72\x75"
4393                         "\x78\x7b\x7e\x81\x84\x87\x8a\x8d"
4394                         "\x90\x93\x96\x99\x9c\x9f\xa2\xa5"
4395                         "\xa8\xab\xae\xb1\xb4\xb7\xba\xbd"
4396                         "\xc0\xc3\xc6\xc9\xcc\xcf\xd2\xd5"
4397                         "\xd8\xdb\xde\xe1\xe4\xe7\xea\xed"
4398                         "\xf0\xf3\xf6\xf9\xfc\xff\x02\x05"
4399                         "\x08\x0b\x0e\x11\x14\x17\x1a\x1d"
4400                         "\x20\x23\x26\x29\x2c\x2f\x32\x35"
4401                         "\x38\x3b\x3e\x41\x44\x47\x4a\x4d"
4402                         "\x50\x53\x56\x59\x5c\x5f\x62\x65"
4403                         "\x68\x6b\x6e\x71\x74\x77\x7a\x7d"
4404                         "\x80\x83\x86\x89\x8c\x8f\x92\x95"
4405                         "\x98\x9b\x9e\xa1\xa4\xa7\xaa\xad"
4406                         "\xb0\xb3\xb6\xb9\xbc\xbf\xc2\xc5"
4407                         "\xc8\xcb\xce\xd1\xd4\xd7\xda\xdd"
4408                         "\xe0\xe3\xe6\xe9\xec\xef\xf2\xf5"
4409                         "\xf8\xfb\xfe\x01\x04\x07\x0a\x0d"
4410                         "\x10\x13\x16\x19\x1c\x1f\x22\x25"
4411                         "\x28\x2b\x2e\x31\x34\x37\x3a\x3d"
4412                         "\x40\x43\x46\x49\x4c\x4f\x52\x55"
4413                         "\x58\x5b\x5e\x61\x64\x67\x6a\x6d"
4414                         "\x70\x73\x76\x79\x7c\x7f\x82\x85"
4415                         "\x88\x8b\x8e\x91\x94\x97\x9a\x9d"
4416                         "\xa0\xa3\xa6\xa9\xac\xaf\xb2\xb5"
4417                         "\xb8\xbb\xbe\xc1\xc4\xc7\xca\xcd"
4418                         "\xd0\xd3\xd6\xd9\xdc\xdf\xe2\xe5"
4419                         "\xe8\xeb\xee\xf1\xf4\xf7\xfa\xfd"
4420                         "\x00\x05\x0a\x0f\x14\x19\x1e\x23"
4421                         "\x28\x2d\x32\x37\x3c\x41\x46\x4b"
4422                         "\x50\x55\x5a\x5f\x64\x69\x6e\x73"
4423                         "\x78\x7d\x82\x87\x8c\x91\x96\x9b"
4424                         "\xa0\xa5\xaa\xaf\xb4\xb9\xbe\xc3"
4425                         "\xc8\xcd\xd2\xd7\xdc\xe1\xe6\xeb"
4426                         "\xf0\xf5\xfa\xff\x04\x09\x0e\x13"
4427                         "\x18\x1d\x22\x27\x2c\x31\x36\x3b"
4428                         "\x40\x45\x4a\x4f\x54\x59\x5e\x63"
4429                         "\x68\x6d\x72\x77\x7c\x81\x86\x8b"
4430                         "\x90\x95\x9a\x9f\xa4\xa9\xae\xb3"
4431                         "\xb8\xbd\xc2\xc7\xcc\xd1\xd6\xdb"
4432                         "\xe0\xe5\xea\xef\xf4\xf9\xfe\x03"
4433                         "\x08\x0d\x12\x17\x1c\x21\x26\x2b"
4434                         "\x30\x35\x3a\x3f\x44\x49\x4e\x53"
4435                         "\x58\x5d\x62\x67\x6c\x71\x76\x7b"
4436                         "\x80\x85\x8a\x8f\x94\x99\x9e\xa3"
4437                         "\xa8\xad\xb2\xb7\xbc\xc1\xc6\xcb"
4438                         "\xd0\xd5\xda\xdf\xe4\xe9\xee\xf3"
4439                         "\xf8\xfd\x02\x07\x0c\x11\x16\x1b"
4440                         "\x20\x25\x2a\x2f\x34\x39\x3e\x43"
4441                         "\x48\x4d\x52\x57\x5c\x61\x66\x6b"
4442                         "\x70\x75\x7a\x7f\x84\x89\x8e\x93"
4443                         "\x98\x9d\xa2\xa7\xac\xb1\xb6\xbb"
4444                         "\xc0\xc5\xca\xcf\xd4\xd9\xde\xe3"
4445                         "\xe8\xed\xf2\xf7\xfc\x01\x06\x0b"
4446                         "\x10\x15\x1a\x1f\x24\x29\x2e\x33"
4447                         "\x38\x3d\x42\x47\x4c\x51\x56\x5b"
4448                         "\x60\x65\x6a\x6f\x74\x79\x7e\x83"
4449                         "\x88\x8d\x92\x97\x9c\xa1\xa6\xab"
4450                         "\xb0\xb5\xba\xbf\xc4\xc9\xce\xd3"
4451                         "\xd8\xdd\xe2\xe7\xec\xf1\xf6\xfb"
4452                         "\x00\x07\x0e\x15\x1c\x23\x2a\x31"
4453                         "\x38\x3f\x46\x4d\x54\x5b\x62\x69"
4454                         "\x70\x77\x7e\x85\x8c\x93\x9a\xa1"
4455                         "\xa8\xaf\xb6\xbd\xc4\xcb\xd2\xd9"
4456                         "\xe0\xe7\xee\xf5\xfc\x03\x0a\x11"
4457                         "\x18\x1f\x26\x2d\x34\x3b\x42\x49"
4458                         "\x50\x57\x5e\x65\x6c\x73\x7a\x81"
4459                         "\x88\x8f\x96\x9d\xa4\xab\xb2\xb9"
4460                         "\xc0\xc7\xce\xd5\xdc\xe3\xea\xf1"
4461                         "\xf8\xff\x06\x0d\x14\x1b\x22\x29"
4462                         "\x30\x37\x3e\x45\x4c\x53\x5a\x61"
4463                         "\x68\x6f\x76\x7d\x84\x8b\x92\x99"
4464                         "\xa0\xa7\xae\xb5\xbc\xc3\xca\xd1"
4465                         "\xd8\xdf\xe6\xed\xf4\xfb\x02\x09"
4466                         "\x10\x17\x1e\x25\x2c\x33\x3a\x41"
4467                         "\x48\x4f\x56\x5d\x64\x6b\x72\x79"
4468                         "\x80\x87\x8e\x95\x9c\xa3\xaa\xb1"
4469                         "\xb8\xbf\xc6\xcd\xd4\xdb\xe2\xe9"
4470                         "\xf0\xf7\xfe\x05\x0c\x13\x1a\x21"
4471                         "\x28\x2f\x36\x3d\x44\x4b\x52\x59"
4472                         "\x60\x67\x6e\x75\x7c\x83\x8a\x91"
4473                         "\x98\x9f\xa6\xad\xb4\xbb\xc2\xc9"
4474                         "\xd0\xd7\xde\xe5\xec\xf3\xfa\x01"
4475                         "\x08\x0f\x16\x1d\x24\x2b\x32\x39"
4476                         "\x40\x47\x4e\x55\x5c\x63\x6a\x71"
4477                         "\x78\x7f\x86\x8d\x94\x9b\xa2\xa9"
4478                         "\xb0\xb7\xbe\xc5\xcc\xd3\xda\xe1"
4479                         "\xe8\xef\xf6\xfd\x04\x0b\x12\x19"
4480                         "\x20\x27\x2e\x35\x3c\x43\x4a\x51"
4481                         "\x58\x5f\x66\x6d\x74\x7b\x82\x89"
4482                         "\x90\x97\x9e\xa5\xac\xb3\xba\xc1"
4483                         "\xc8\xcf\xd6\xdd\xe4\xeb\xf2\xf9"
4484                         "\x00\x09\x12\x1b\x24\x2d\x36\x3f"
4485                         "\x48\x51\x5a\x63\x6c\x75\x7e\x87"
4486                         "\x90\x99\xa2\xab\xb4\xbd\xc6\xcf"
4487                         "\xd8\xe1\xea\xf3\xfc\x05\x0e\x17"
4488                         "\x20\x29\x32\x3b\x44\x4d\x56\x5f"
4489                         "\x68\x71\x7a\x83\x8c\x95\x9e\xa7"
4490                         "\xb0\xb9\xc2\xcb\xd4\xdd\xe6\xef"
4491                         "\xf8\x01\x0a\x13\x1c\x25\x2e\x37"
4492                         "\x40\x49\x52\x5b\x64\x6d\x76\x7f"
4493                         "\x88\x91\x9a\xa3\xac\xb5\xbe\xc7"
4494                         "\xd0\xd9\xe2\xeb\xf4\xfd\x06\x0f"
4495                         "\x18\x21\x2a\x33\x3c\x45\x4e\x57"
4496                         "\x60\x69\x72\x7b\x84\x8d\x96\x9f"
4497                         "\xa8\xb1\xba\xc3\xcc\xd5\xde\xe7"
4498                         "\xf0\xf9\x02\x0b\x14\x1d\x26\x2f"
4499                         "\x38\x41\x4a\x53\x5c\x65\x6e\x77"
4500                         "\x80\x89\x92\x9b\xa4\xad\xb6\xbf"
4501                         "\xc8\xd1\xda\xe3\xec\xf5\xfe\x07"
4502                         "\x10\x19\x22\x2b\x34\x3d\x46\x4f"
4503                         "\x58\x61\x6a\x73\x7c\x85\x8e\x97"
4504                         "\xa0\xa9\xb2\xbb\xc4\xcd\xd6\xdf"
4505                         "\xe8\xf1\xfa\x03\x0c\x15\x1e\x27"
4506                         "\x30\x39\x42\x4b\x54\x5d\x66\x6f"
4507                         "\x78\x81\x8a\x93\x9c\xa5\xae\xb7"
4508                         "\xc0\xc9\xd2\xdb\xe4\xed\xf6\xff"
4509                         "\x08\x11\x1a\x23\x2c\x35\x3e\x47"
4510                         "\x50\x59\x62\x6b\x74\x7d\x86\x8f"
4511                         "\x98\xa1\xaa\xb3\xbc\xc5\xce\xd7"
4512                         "\xe0\xe9\xf2\xfb\x04\x0d\x16\x1f"
4513                         "\x28\x31\x3a\x43\x4c\x55\x5e\x67"
4514                         "\x70\x79\x82\x8b\x94\x9d\xa6\xaf"
4515                         "\xb8\xc1\xca\xd3\xdc\xe5\xee\xf7"
4516                         "\x00\x0b\x16\x21\x2c\x37\x42\x4d"
4517                         "\x58\x63\x6e\x79\x84\x8f\x9a\xa5"
4518                         "\xb0\xbb\xc6\xd1\xdc\xe7\xf2\xfd"
4519                         "\x08\x13\x1e\x29\x34\x3f\x4a\x55"
4520                         "\x60\x6b\x76\x81\x8c\x97\xa2\xad"
4521                         "\xb8\xc3\xce\xd9\xe4\xef\xfa\x05"
4522                         "\x10\x1b\x26\x31\x3c\x47\x52\x5d"
4523                         "\x68\x73\x7e\x89\x94\x9f\xaa\xb5"
4524                         "\xc0\xcb\xd6\xe1\xec\xf7\x02\x0d"
4525                         "\x18\x23\x2e\x39\x44\x4f\x5a\x65"
4526                         "\x70\x7b\x86\x91\x9c\xa7\xb2\xbd"
4527                         "\xc8\xd3\xde\xe9\xf4\xff\x0a\x15"
4528                         "\x20\x2b\x36\x41\x4c\x57\x62\x6d"
4529                         "\x78\x83\x8e\x99\xa4\xaf\xba\xc5"
4530                         "\xd0\xdb\xe6\xf1\xfc\x07\x12\x1d"
4531                         "\x28\x33\x3e\x49\x54\x5f\x6a\x75"
4532                         "\x80\x8b\x96\xa1\xac\xb7\xc2\xcd"
4533                         "\xd8\xe3\xee\xf9\x04\x0f\x1a\x25"
4534                         "\x30\x3b\x46\x51\x5c\x67\x72\x7d"
4535                         "\x88\x93\x9e\xa9\xb4\xbf\xca\xd5"
4536                         "\xe0\xeb\xf6\x01\x0c\x17\x22\x2d"
4537                         "\x38\x43\x4e\x59\x64\x6f\x7a\x85"
4538                         "\x90\x9b\xa6\xb1\xbc\xc7\xd2\xdd"
4539                         "\xe8\xf3\xfe\x09\x14\x1f\x2a\x35"
4540                         "\x40\x4b\x56\x61\x6c\x77\x82\x8d"
4541                         "\x98\xa3\xae\xb9\xc4\xcf\xda\xe5"
4542                         "\xf0\xfb\x06\x11\x1c\x27\x32\x3d"
4543                         "\x48\x53\x5e\x69\x74\x7f\x8a\x95"
4544                         "\xa0\xab\xb6\xc1\xcc\xd7\xe2\xed"
4545                         "\xf8\x03\x0e\x19\x24\x2f\x3a\x45"
4546                         "\x50\x5b\x66\x71\x7c\x87\x92\x9d"
4547                         "\xa8\xb3\xbe\xc9\xd4\xdf\xea\xf5"
4548                         "\x00\x0d\x1a\x27\x34\x41\x4e\x5b"
4549                         "\x68\x75\x82\x8f\x9c\xa9\xb6\xc3"
4550                         "\xd0\xdd\xea\xf7\x04\x11\x1e\x2b"
4551                         "\x38\x45\x52\x5f\x6c\x79\x86\x93"
4552                         "\xa0\xad\xba\xc7\xd4\xe1\xee\xfb"
4553                         "\x08\x15\x22\x2f\x3c\x49\x56\x63"
4554                         "\x70\x7d\x8a\x97\xa4\xb1\xbe\xcb"
4555                         "\xd8\xe5\xf2\xff\x0c\x19\x26\x33"
4556                         "\x40\x4d\x5a\x67\x74\x81\x8e\x9b"
4557                         "\xa8\xb5\xc2\xcf\xdc\xe9\xf6\x03"
4558                         "\x10\x1d\x2a\x37\x44\x51\x5e\x6b"
4559                         "\x78\x85\x92\x9f\xac\xb9\xc6\xd3"
4560                         "\xe0\xed\xfa\x07\x14\x21\x2e\x3b"
4561                         "\x48\x55\x62\x6f\x7c\x89\x96\xa3"
4562                         "\xb0\xbd\xca\xd7\xe4\xf1\xfe\x0b"
4563                         "\x18\x25\x32\x3f\x4c\x59\x66\x73"
4564                         "\x80\x8d\x9a\xa7\xb4\xc1\xce\xdb"
4565                         "\xe8\xf5\x02\x0f\x1c\x29\x36\x43"
4566                         "\x50\x5d\x6a\x77\x84\x91\x9e\xab"
4567                         "\xb8\xc5\xd2\xdf\xec\xf9\x06\x13"
4568                         "\x20\x2d\x3a\x47\x54\x61\x6e\x7b"
4569                         "\x88\x95\xa2\xaf\xbc\xc9\xd6\xe3"
4570                         "\xf0\xfd\x0a\x17\x24\x31\x3e\x4b"
4571                         "\x58\x65\x72\x7f\x8c\x99\xa6\xb3"
4572                         "\xc0\xcd\xda\xe7\xf4\x01\x0e\x1b"
4573                         "\x28\x35\x42\x4f\x5c\x69\x76\x83"
4574                         "\x90\x9d\xaa\xb7\xc4\xd1\xde\xeb"
4575                         "\xf8\x05\x12\x1f\x2c\x39\x46\x53"
4576                         "\x60\x6d\x7a\x87\x94\xa1\xae\xbb"
4577                         "\xc8\xd5\xe2\xef\xfc\x09\x16\x23"
4578                         "\x30\x3d\x4a\x57\x64\x71\x7e\x8b"
4579                         "\x98\xa5\xb2\xbf\xcc\xd9\xe6\xf3"
4580                         "\x00\x0f\x1e\x2d\x3c\x4b\x5a\x69"
4581                         "\x78\x87\x96\xa5\xb4\xc3\xd2\xe1"
4582                         "\xf0\xff\x0e\x1d\x2c\x3b\x4a\x59"
4583                         "\x68\x77\x86\x95\xa4\xb3\xc2\xd1"
4584                         "\xe0\xef\xfe\x0d\x1c\x2b\x3a\x49"
4585                         "\x58\x67\x76\x85\x94\xa3\xb2\xc1"
4586                         "\xd0\xdf\xee\xfd\x0c\x1b\x2a\x39"
4587                         "\x48\x57\x66\x75\x84\x93\xa2\xb1"
4588                         "\xc0\xcf\xde\xed\xfc\x0b\x1a\x29"
4589                         "\x38\x47\x56\x65\x74\x83\x92\xa1"
4590                         "\xb0\xbf\xce\xdd\xec\xfb\x0a\x19"
4591                         "\x28\x37\x46\x55\x64\x73\x82\x91"
4592                         "\xa0\xaf\xbe\xcd\xdc\xeb\xfa\x09"
4593                         "\x18\x27\x36\x45\x54\x63\x72\x81"
4594                         "\x90\x9f\xae\xbd\xcc\xdb\xea\xf9"
4595                         "\x08\x17\x26\x35\x44\x53\x62\x71"
4596                         "\x80\x8f\x9e\xad\xbc\xcb\xda\xe9"
4597                         "\xf8\x07\x16\x25\x34\x43\x52\x61"
4598                         "\x70\x7f\x8e\x9d\xac\xbb\xca\xd9"
4599                         "\xe8\xf7\x06\x15\x24\x33\x42\x51"
4600                         "\x60\x6f\x7e\x8d\x9c\xab\xba\xc9"
4601                         "\xd8\xe7\xf6\x05\x14\x23\x32\x41"
4602                         "\x50\x5f\x6e\x7d\x8c\x9b\xaa\xb9"
4603                         "\xc8\xd7\xe6\xf5\x04\x13\x22\x31"
4604                         "\x40\x4f\x5e\x6d\x7c\x8b\x9a\xa9"
4605                         "\xb8\xc7\xd6\xe5\xf4\x03\x12\x21"
4606                         "\x30\x3f\x4e\x5d\x6c\x7b\x8a\x99"
4607                         "\xa8\xb7\xc6\xd5\xe4\xf3\x02\x11"
4608                         "\x20\x2f\x3e\x4d\x5c\x6b\x7a\x89"
4609                         "\x98\xa7\xb6\xc5\xd4\xe3\xf2\x01"
4610                         "\x10\x1f\x2e\x3d\x4c\x5b\x6a\x79"
4611                         "\x88\x97\xa6\xb5\xc4\xd3\xe2\xf1"
4612                         "\x00\x11\x22\x33\x44\x55\x66\x77"
4613                         "\x88\x99\xaa\xbb\xcc\xdd\xee\xff"
4614                         "\x10\x21\x32\x43\x54\x65\x76\x87"
4615                         "\x98\xa9\xba\xcb\xdc\xed\xfe\x0f"
4616                         "\x20\x31\x42\x53\x64\x75\x86\x97"
4617                         "\xa8\xb9\xca\xdb\xec\xfd\x0e\x1f"
4618                         "\x30\x41\x52\x63\x74\x85\x96\xa7"
4619                         "\xb8\xc9\xda\xeb\xfc\x0d\x1e\x2f"
4620                         "\x40\x51\x62\x73\x84\x95\xa6\xb7"
4621                         "\xc8\xd9\xea\xfb\x0c\x1d\x2e\x3f"
4622                         "\x50\x61\x72\x83\x94\xa5\xb6\xc7"
4623                         "\xd8\xe9\xfa\x0b\x1c\x2d\x3e\x4f"
4624                         "\x60\x71\x82\x93\xa4\xb5\xc6\xd7"
4625                         "\xe8\xf9\x0a\x1b\x2c\x3d\x4e\x5f"
4626                         "\x70\x81\x92\xa3\xb4\xc5\xd6\xe7"
4627                         "\xf8\x09\x1a\x2b\x3c\x4d\x5e\x6f"
4628                         "\x80\x91\xa2\xb3\xc4\xd5\xe6\xf7"
4629                         "\x08\x19\x2a\x3b\x4c\x5d\x6e\x7f"
4630                         "\x90\xa1\xb2\xc3\xd4\xe5\xf6\x07"
4631                         "\x18\x29\x3a\x4b\x5c\x6d\x7e\x8f"
4632                         "\xa0\xb1\xc2\xd3\xe4\xf5\x06\x17"
4633                         "\x28\x39\x4a\x5b\x6c\x7d\x8e\x9f"
4634                         "\xb0\xc1\xd2\xe3\xf4\x05\x16\x27"
4635                         "\x38\x49\x5a\x6b\x7c\x8d\x9e\xaf"
4636                         "\xc0\xd1\xe2\xf3\x04\x15\x26\x37"
4637                         "\x48\x59\x6a\x7b\x8c\x9d\xae\xbf"
4638                         "\xd0\xe1\xf2\x03\x14\x25\x36\x47"
4639                         "\x58\x69\x7a\x8b\x9c\xad\xbe\xcf"
4640                         "\xe0\xf1\x02\x13\x24\x35\x46\x57"
4641                         "\x68\x79\x8a\x9b\xac\xbd\xce\xdf"
4642                         "\xf0\x01\x12\x23\x34\x45\x56\x67"
4643                         "\x78\x89\x9a\xab\xbc\xcd\xde\xef"
4644                         "\x00\x13\x26\x39\x4c\x5f\x72\x85"
4645                         "\x98\xab\xbe\xd1\xe4\xf7\x0a\x1d"
4646                         "\x30\x43\x56\x69\x7c\x8f\xa2\xb5"
4647                         "\xc8\xdb\xee\x01\x14\x27\x3a\x4d"
4648                         "\x60\x73\x86\x99\xac\xbf\xd2\xe5"
4649                         "\xf8\x0b\x1e\x31\x44\x57\x6a\x7d"
4650                         "\x90\xa3\xb6\xc9\xdc\xef\x02\x15"
4651                         "\x28\x3b\x4e\x61\x74\x87\x9a\xad"
4652                         "\xc0\xd3\xe6\xf9\x0c\x1f\x32\x45"
4653                         "\x58\x6b\x7e\x91\xa4\xb7\xca\xdd"
4654                         "\xf0\x03\x16\x29\x3c\x4f\x62\x75"
4655                         "\x88\x9b\xae\xc1\xd4\xe7\xfa\x0d"
4656                         "\x20\x33\x46\x59\x6c\x7f\x92\xa5"
4657                         "\xb8\xcb\xde\xf1\x04\x17\x2a\x3d"
4658                         "\x50\x63\x76\x89\x9c\xaf\xc2\xd5"
4659                         "\xe8\xfb\x0e\x21\x34\x47\x5a\x6d"
4660                         "\x80\x93\xa6\xb9\xcc\xdf\xf2\x05"
4661                         "\x18\x2b\x3e\x51\x64\x77\x8a\x9d"
4662                         "\xb0\xc3\xd6\xe9\xfc\x0f\x22\x35"
4663                         "\x48\x5b\x6e\x81\x94\xa7\xba\xcd"
4664                         "\xe0\xf3\x06\x19\x2c\x3f\x52\x65"
4665                         "\x78\x8b\x9e\xb1\xc4\xd7\xea\xfd"
4666                         "\x10\x23\x36\x49\x5c\x6f\x82\x95"
4667                         "\xa8\xbb\xce\xe1\xf4\x07\x1a\x2d"
4668                         "\x40\x53\x66\x79\x8c\x9f\xb2\xc5"
4669                         "\xd8\xeb\xfe\x11\x24\x37\x4a\x5d"
4670                         "\x70\x83\x96\xa9\xbc\xcf\xe2\xf5"
4671                         "\x08\x1b\x2e\x41\x54\x67\x7a\x8d"
4672                         "\xa0\xb3\xc6\xd9\xec\xff\x12\x25"
4673                         "\x38\x4b\x5e\x71\x84\x97\xaa\xbd"
4674                         "\xd0\xe3\xf6\x09\x1c\x2f\x42\x55"
4675                         "\x68\x7b\x8e\xa1\xb4\xc7\xda\xed"
4676                         "\x00\x15\x2a\x3f\x54\x69\x7e\x93"
4677                         "\xa8\xbd\xd2\xe7\xfc\x11\x26\x3b"
4678                         "\x50\x65\x7a\x8f\xa4\xb9\xce\xe3"
4679                         "\xf8\x0d\x22\x37\x4c\x61\x76\x8b"
4680                         "\xa0\xb5\xca\xdf\xf4\x09\x1e\x33"
4681                         "\x48\x5d\x72\x87\x9c\xb1\xc6\xdb"
4682                         "\xf0\x05\x1a\x2f\x44\x59\x6e\x83"
4683                         "\x98\xad\xc2\xd7\xec\x01\x16\x2b"
4684                         "\x40\x55\x6a\x7f\x94\xa9\xbe\xd3"
4685                         "\xe8\xfd\x12\x27\x3c\x51\x66\x7b"
4686                         "\x90\xa5\xba\xcf\xe4\xf9\x0e\x23"
4687                         "\x38\x4d\x62\x77\x8c\xa1\xb6\xcb"
4688                         "\xe0\xf5\x0a\x1f\x34\x49\x5e\x73"
4689                         "\x88\x9d\xb2\xc7\xdc\xf1\x06\x1b"
4690                         "\x30\x45\x5a\x6f\x84\x99\xae\xc3"
4691                         "\xd8\xed\x02\x17\x2c\x41\x56\x6b"
4692                         "\x80\x95\xaa\xbf\xd4\xe9\xfe\x13"
4693                         "\x28\x3d\x52\x67\x7c\x91\xa6\xbb"
4694                         "\xd0\xe5\xfa\x0f\x24\x39\x4e\x63"
4695                         "\x78\x8d\xa2\xb7\xcc\xe1\xf6\x0b"
4696                         "\x20\x35\x4a\x5f\x74\x89\x9e\xb3"
4697                         "\xc8\xdd\xf2\x07\x1c\x31\x46\x5b"
4698                         "\x70\x85\x9a\xaf\xc4\xd9\xee\x03"
4699                         "\x18\x2d\x42\x57\x6c\x81\x96\xab"
4700                         "\xc0\xd5\xea\xff\x14\x29\x3e\x53"
4701                         "\x68\x7d\x92\xa7\xbc\xd1\xe6\xfb"
4702                         "\x10\x25\x3a\x4f\x64\x79\x8e\xa3"
4703                         "\xb8\xcd\xe2\xf7\x0c\x21\x36\x4b"
4704                         "\x60\x75\x8a\x9f\xb4\xc9\xde\xf3"
4705                         "\x08\x1d\x32\x47\x5c\x71\x86\x9b"
4706                         "\xb0\xc5\xda\xef\x04\x19\x2e\x43"
4707                         "\x58\x6d\x82\x97\xac\xc1\xd6\xeb"
4708                         "\x00\x17\x2e\x45\x5c\x73\x8a\xa1"
4709                         "\xb8\xcf\xe6\xfd\x14\x2b\x42\x59"
4710                         "\x70\x87\x9e\xb5\xcc\xe3\xfa\x11"
4711                         "\x28\x3f\x56\x6d\x84\x9b\xb2\xc9"
4712                         "\xe0\xf7\x0e\x25\x3c\x53\x6a\x81"
4713                         "\x98\xaf\xc6\xdd\xf4\x0b\x22\x39"
4714                         "\x50\x67\x7e\x95\xac\xc3\xda\xf1"
4715                         "\x08\x1f\x36\x4d\x64\x7b\x92\xa9"
4716                         "\xc0\xd7\xee\x05\x1c\x33\x4a\x61"
4717                         "\x78\x8f\xa6\xbd\xd4\xeb\x02\x19"
4718                         "\x30\x47\x5e\x75\x8c\xa3\xba\xd1"
4719                         "\xe8\xff\x16\x2d\x44\x5b\x72\x89"
4720                         "\xa0\xb7\xce\xe5\xfc\x13\x2a\x41"
4721                         "\x58\x6f\x86\x9d\xb4\xcb\xe2\xf9"
4722                         "\x10\x27\x3e\x55\x6c\x83\x9a\xb1"
4723                         "\xc8\xdf\xf6\x0d\x24\x3b\x52\x69"
4724                         "\x80\x97\xae\xc5\xdc\xf3\x0a\x21"
4725                         "\x38\x4f\x66\x7d\x94\xab\xc2\xd9"
4726                         "\xf0\x07\x1e\x35\x4c\x63\x7a\x91"
4727                         "\xa8\xbf\xd6\xed\x04\x1b\x32\x49"
4728                         "\x60\x77\x8e\xa5\xbc\xd3\xea\x01"
4729                         "\x18\x2f\x46\x5d\x74\x8b\xa2\xb9"
4730                         "\xd0\xe7\xfe\x15\x2c\x43\x5a\x71"
4731                         "\x88\x9f\xb6\xcd\xe4\xfb\x12\x29"
4732                         "\x40\x57\x6e\x85\x9c\xb3\xca\xe1"
4733                         "\xf8\x0f\x26\x3d\x54\x6b\x82\x99"
4734                         "\xb0\xc7\xde\xf5\x0c\x23\x3a\x51"
4735                         "\x68\x7f\x96\xad\xc4\xdb\xf2\x09"
4736                         "\x20\x37\x4e\x65\x7c\x93\xaa\xc1"
4737                         "\xd8\xef\x06\x1d\x34\x4b\x62\x79"
4738                         "\x90\xa7\xbe\xd5\xec\x03\x1a\x31"
4739                         "\x48\x5f\x76\x8d\xa4\xbb\xd2\xe9"
4740                         "\x00\x19\x32\x4b\x64\x7d\x96\xaf"
4741                         "\xc8\xe1\xfa\x13\x2c\x45\x5e\x77"
4742                         "\x90\xa9\xc2\xdb\xf4\x0d\x26\x3f"
4743                         "\x58\x71\x8a\xa3\xbc\xd5\xee\x07"
4744                         "\x20\x39\x52\x6b\x84\x9d\xb6\xcf"
4745                         "\xe8\x01\x1a\x33\x4c\x65\x7e\x97"
4746                         "\xb0\xc9\xe2\xfb\x14\x2d\x46\x5f"
4747                         "\x78\x91\xaa\xc3\xdc\xf5\x0e\x27"
4748                         "\x40\x59\x72\x8b\xa4\xbd\xd6\xef"
4749                         "\x08\x21\x3a\x53\x6c\x85\x9e\xb7"
4750                         "\xd0\xe9\x02\x1b\x34\x4d\x66\x7f"
4751                         "\x98\xb1\xca\xe3\xfc\x15\x2e\x47"
4752                         "\x60\x79\x92\xab\xc4\xdd\xf6\x0f"
4753                         "\x28\x41\x5a\x73\x8c\xa5\xbe\xd7"
4754                         "\xf0\x09\x22\x3b\x54\x6d\x86\x9f"
4755                         "\xb8\xd1\xea\x03\x1c\x35\x4e\x67"
4756                         "\x80\x99\xb2\xcb\xe4\xfd\x16\x2f"
4757                         "\x48\x61\x7a\x93\xac\xc5\xde\xf7"
4758                         "\x10\x29\x42\x5b\x74\x8d\xa6\xbf"
4759                         "\xd8\xf1\x0a\x23\x3c\x55\x6e\x87"
4760                         "\xa0\xb9\xd2\xeb\x04\x1d\x36\x4f"
4761                         "\x68\x81\x9a\xb3\xcc\xe5\xfe\x17"
4762                         "\x30\x49\x62\x7b\x94\xad\xc6\xdf"
4763                         "\xf8\x11\x2a\x43\x5c\x75\x8e\xa7"
4764                         "\xc0\xd9\xf2\x0b\x24\x3d\x56\x6f"
4765                         "\x88\xa1\xba\xd3\xec\x05\x1e\x37"
4766                         "\x50\x69\x82\x9b\xb4\xcd\xe6\xff"
4767                         "\x18\x31\x4a\x63\x7c\x95\xae\xc7"
4768                         "\xe0\xf9\x12\x2b\x44\x5d\x76\x8f"
4769                         "\xa8\xc1\xda\xf3\x0c\x25\x3e\x57"
4770                         "\x70\x89\xa2\xbb\xd4\xed\x06\x1f"
4771                         "\x38\x51\x6a\x83\x9c\xb5\xce\xe7"
4772                         "\x00\x1b\x36\x51\x6c\x87\xa2\xbd"
4773                         "\xd8\xf3\x0e\x29\x44\x5f\x7a\x95"
4774                         "\xb0\xcb\xe6\x01\x1c\x37\x52\x6d"
4775                         "\x88\xa3\xbe\xd9\xf4\x0f\x2a\x45"
4776                         "\x60\x7b\x96\xb1\xcc\xe7\x02\x1d"
4777                         "\x38\x53\x6e\x89\xa4\xbf\xda\xf5"
4778                         "\x10\x2b\x46\x61\x7c\x97\xb2\xcd"
4779                         "\xe8\x03\x1e\x39\x54\x6f\x8a\xa5"
4780                         "\xc0\xdb\xf6\x11\x2c\x47\x62\x7d"
4781                         "\x98\xb3\xce\xe9\x04\x1f\x3a\x55"
4782                         "\x70\x8b\xa6\xc1\xdc\xf7\x12\x2d"
4783                         "\x48\x63\x7e\x99\xb4\xcf\xea\x05"
4784                         "\x20\x3b\x56\x71\x8c\xa7\xc2\xdd"
4785                         "\xf8\x13\x2e\x49\x64\x7f\x9a\xb5"
4786                         "\xd0\xeb\x06\x21\x3c\x57\x72\x8d"
4787                         "\xa8\xc3\xde\xf9\x14\x2f\x4a\x65"
4788                         "\x80\x9b\xb6\xd1\xec\x07\x22\x3d"
4789                         "\x58\x73\x8e\xa9\xc4\xdf\xfa\x15"
4790                         "\x30\x4b\x66\x81\x9c\xb7\xd2\xed"
4791                         "\x08\x23\x3e\x59\x74\x8f\xaa\xc5"
4792                         "\xe0\xfb\x16\x31\x4c\x67\x82\x9d"
4793                         "\xb8\xd3\xee\x09\x24\x3f\x5a\x75"
4794                         "\x90\xab\xc6\xe1\xfc\x17\x32\x4d"
4795                         "\x68\x83\x9e\xb9\xd4\xef\x0a\x25"
4796                         "\x40\x5b\x76\x91\xac\xc7\xe2\xfd"
4797                         "\x18\x33\x4e\x69\x84\x9f\xba\xd5"
4798                         "\xf0\x0b\x26\x41\x5c\x77\x92\xad"
4799                         "\xc8\xe3\xfe\x19\x34\x4f\x6a\x85"
4800                         "\xa0\xbb\xd6\xf1\x0c\x27\x42\x5d"
4801                         "\x78\x93\xae\xc9\xe4\xff\x1a\x35"
4802                         "\x50\x6b\x86\xa1\xbc\xd7\xf2\x0d"
4803                         "\x28\x43\x5e\x79\x94\xaf\xca\xe5"
4804                         "\x00\x1d\x3a\x57\x74\x91\xae\xcb"
4805                         "\xe8\x05\x22\x3f\x5c\x79\x96\xb3"
4806                         "\xd0\xed\x0a\x27\x44\x61\x7e\x9b"
4807                         "\xb8\xd5\xf2\x0f\x2c\x49\x66\x83"
4808                         "\xa0\xbd\xda\xf7\x14\x31\x4e\x6b"
4809                         "\x88\xa5\xc2\xdf\xfc\x19\x36\x53"
4810                         "\x70\x8d\xaa\xc7\xe4\x01\x1e\x3b"
4811                         "\x58\x75\x92\xaf\xcc\xe9\x06\x23"
4812                         "\x40\x5d\x7a\x97\xb4\xd1\xee\x0b"
4813                         "\x28\x45\x62\x7f\x9c\xb9\xd6\xf3"
4814                         "\x10\x2d\x4a\x67\x84\xa1\xbe\xdb"
4815                         "\xf8\x15\x32\x4f\x6c\x89\xa6\xc3"
4816                         "\xe0\xfd\x1a\x37\x54\x71\x8e\xab"
4817                         "\xc8\xe5\x02\x1f\x3c\x59\x76\x93"
4818                         "\xb0\xcd\xea\x07\x24\x41\x5e\x7b"
4819                         "\x98\xb5\xd2\xef\x0c\x29\x46\x63"
4820                         "\x80\x9d\xba\xd7\xf4\x11\x2e\x4b"
4821                         "\x68\x85\xa2\xbf\xdc\xf9\x16\x33"
4822                         "\x50\x6d\x8a\xa7\xc4\xe1\xfe\x1b"
4823                         "\x38\x55\x72\x8f\xac\xc9\xe6\x03"
4824                         "\x20\x3d\x5a\x77\x94\xb1\xce\xeb"
4825                         "\x08\x25\x42\x5f\x7c\x99\xb6\xd3"
4826                         "\xf0\x0d\x2a\x47\x64\x81\x9e\xbb"
4827                         "\xd8\xf5\x12\x2f\x4c\x69\x86\xa3"
4828                         "\xc0\xdd\xfa\x17\x34\x51\x6e\x8b"
4829                         "\xa8\xc5\xe2\xff\x1c\x39\x56\x73"
4830                         "\x90\xad\xca\xe7\x04\x21\x3e\x5b"
4831                         "\x78\x95\xb2\xcf\xec\x09\x26\x43"
4832                         "\x60\x7d\x9a\xb7\xd4\xf1\x0e\x2b"
4833                         "\x48\x65\x82\x9f\xbc\xd9\xf6\x13"
4834                         "\x30\x4d\x6a\x87\xa4\xc1\xde\xfb"
4835                         "\x18\x35\x52\x6f\x8c\xa9\xc6\xe3"
4836                         "\x00\x1f\x3e\x5d\x7c\x9b\xba\xd9"
4837                         "\xf8\x17\x36\x55\x74\x93\xb2\xd1"
4838                         "\xf0\x0f\x2e\x4d\x6c\x8b\xaa\xc9"
4839                         "\xe8\x07\x26\x45\x64\x83\xa2\xc1"
4840                         "\xe0\xff\x1e\x3d\x5c\x7b\x9a\xb9"
4841                         "\xd8\xf7\x16\x35\x54\x73\x92\xb1"
4842                         "\xd0\xef\x0e\x2d\x4c\x6b\x8a\xa9"
4843                         "\xc8\xe7\x06\x25\x44\x63\x82\xa1"
4844                         "\xc0\xdf\xfe\x1d\x3c\x5b\x7a\x99"
4845                         "\xb8\xd7\xf6\x15\x34\x53\x72\x91"
4846                         "\xb0\xcf\xee\x0d\x2c\x4b\x6a\x89"
4847                         "\xa8\xc7\xe6\x05\x24\x43\x62\x81"
4848                         "\xa0\xbf\xde\xfd\x1c\x3b\x5a\x79"
4849                         "\x98\xb7\xd6\xf5\x14\x33\x52\x71"
4850                         "\x90\xaf\xce\xed\x0c\x2b\x4a\x69"
4851                         "\x88\xa7\xc6\xe5\x04\x23\x42\x61"
4852                         "\x80\x9f\xbe\xdd\xfc\x1b\x3a\x59"
4853                         "\x78\x97\xb6\xd5\xf4\x13\x32\x51"
4854                         "\x70\x8f\xae\xcd\xec\x0b\x2a\x49"
4855                         "\x68\x87\xa6\xc5\xe4\x03\x22\x41"
4856                         "\x60\x7f\x9e\xbd\xdc\xfb\x1a\x39"
4857                         "\x58\x77\x96\xb5\xd4\xf3\x12\x31"
4858                         "\x50\x6f\x8e\xad\xcc\xeb\x0a\x29"
4859                         "\x48\x67\x86\xa5\xc4\xe3\x02\x21"
4860                         "\x40\x5f\x7e\x9d\xbc\xdb\xfa\x19"
4861                         "\x38\x57\x76\x95\xb4\xd3\xf2\x11"
4862                         "\x30\x4f\x6e\x8d\xac\xcb\xea\x09"
4863                         "\x28\x47\x66\x85\xa4\xc3\xe2\x01"
4864                         "\x20\x3f\x5e\x7d\x9c\xbb\xda\xf9"
4865                         "\x18\x37\x56\x75\x94\xb3\xd2\xf1"
4866                         "\x10\x2f\x4e\x6d\x8c\xab\xca\xe9"
4867                         "\x08\x27\x46\x65\x84\xa3\xc2\xe1"
4868                         "\x00\x21\x42\x63",
4869                 .ilen = 4100,
4870                 .result =
4871                         "\xf0\x5c\x74\xad\x4e\xbc\x99\xe2"
4872                         "\xae\xff\x91\x3a\x44\xcf\x38\x32"
4873                         "\x1e\xad\xa7\xcd\xa1\x39\x95\xaa"
4874                         "\x10\xb1\xb3\x2e\x04\x31\x8f\x86"
4875                         "\xf2\x62\x74\x70\x0c\xa4\x46\x08"
4876                         "\xa8\xb7\x99\xa8\xe9\xd2\x73\x79"
4877                         "\x7e\x6e\xd4\x8f\x1e\xc7\x8e\x31"
4878                         "\x0b\xfa\x4b\xce\xfd\xf3\x57\x71"
4879                         "\xe9\x46\x03\xa5\x3d\x34\x00\xe2"
4880                         "\x18\xff\x75\x6d\x06\x2d\x00\xab"
4881                         "\xb9\x3e\x6c\x59\xc5\x84\x06\xb5"
4882                         "\x8b\xd0\x89\x9c\x4a\x79\x16\xc6"
4883                         "\x3d\x74\x54\xfa\x44\xcd\x23\x26"
4884                         "\x5c\xcf\x7e\x28\x92\x32\xbf\xdf"
4885                         "\xa7\x20\x3c\x74\x58\x2a\x9a\xde"
4886                         "\x61\x00\x1c\x4f\xff\x59\xc4\x22"
4887                         "\xac\x3c\xd0\xe8\x6c\xf9\x97\x1b"
4888                         "\x58\x9b\xad\x71\xe8\xa9\xb5\x0d"
4889                         "\xee\x2f\x04\x1f\x7f\xbc\x99\xee"
4890                         "\x84\xff\x42\x60\xdc\x3a\x18\xa5"
4891                         "\x81\xf9\xef\xdc\x7a\x0f\x65\x41"
4892                         "\x2f\xa3\xd3\xf9\xc2\xcb\xc0\x4d"
4893                         "\x8f\xd3\x76\x96\xad\x49\x6d\x38"
4894                         "\x3d\x39\x0b\x6c\x80\xb7\x54\x69"
4895                         "\xf0\x2c\x90\x02\x29\x0d\x1c\x12"
4896                         "\xad\x55\xc3\x8b\x68\xd9\xcc\xb3"
4897                         "\xb2\x64\x33\x90\x5e\xca\x4b\xe2"
4898                         "\xfb\x75\xdc\x63\xf7\x9f\x82\x74"
4899                         "\xf0\xc9\xaa\x7f\xe9\x2a\x9b\x33"
4900                         "\xbc\x88\x00\x7f\xca\xb2\x1f\x14"
4901                         "\xdb\xc5\x8e\x7b\x11\x3c\x3e\x08"
4902                         "\xf3\x83\xe8\xe0\x94\x86\x2e\x92"
4903                         "\x78\x6b\x01\xc9\xc7\x83\xba\x21"
4904                         "\x6a\x25\x15\x33\x4e\x45\x08\xec"
4905                         "\x35\xdb\xe0\x6e\x31\x51\x79\xa9"
4906                         "\x42\x44\x65\xc1\xa0\xf1\xf9\x2a"
4907                         "\x70\xd5\xb6\xc6\xc1\x8c\x39\xfc"
4908                         "\x25\xa6\x55\xd9\xdd\x2d\x4c\xec"
4909                         "\x49\xc6\xeb\x0e\xa8\x25\x2a\x16"
4910                         "\x1b\x66\x84\xda\xe2\x92\xe5\xc0"
4911                         "\xc8\x53\x07\xaf\x80\x84\xec\xfd"
4912                         "\xcd\xd1\x6e\xcd\x6f\x6a\xf5\x36"
4913                         "\xc5\x15\xe5\x25\x7d\x77\xd1\x1a"
4914                         "\x93\x36\xa9\xcf\x7c\xa4\x54\x4a"
4915                         "\x06\x51\x48\x4e\xf6\x59\x87\xd2"
4916                         "\x04\x02\xef\xd3\x44\xde\x76\x31"
4917                         "\xb3\x34\x17\x1b\x9d\x66\x11\x9f"
4918                         "\x1e\xcc\x17\xe9\xc7\x3c\x1b\xe7"
4919                         "\xcb\x50\x08\xfc\xdc\x2b\x24\xdb"
4920                         "\x65\x83\xd0\x3b\xe3\x30\xea\x94"
4921                         "\x6c\xe7\xe8\x35\x32\xc7\xdb\x64"
4922                         "\xb4\x01\xab\x36\x2c\x77\x13\xaf"
4923                         "\xf8\x2b\x88\x3f\x54\x39\xc4\x44"
4924                         "\xfe\xef\x6f\x68\x34\xbe\x0f\x05"
4925                         "\x16\x6d\xf6\x0a\x30\xe7\xe3\xed"
4926                         "\xc4\xde\x3c\x1b\x13\xd8\xdb\xfe"
4927                         "\x41\x62\xe5\x28\xd4\x8d\xa3\xc7"
4928                         "\x93\x97\xc6\x48\x45\x1d\x9f\x83"
4929                         "\xdf\x4b\x40\x3e\x42\x25\x87\x80"
4930                         "\x4c\x7d\xa8\xd4\x98\x23\x95\x75"
4931                         "\x41\x8c\xda\x41\x9b\xd4\xa7\x06"
4932                         "\xb5\xf1\x71\x09\x53\xbe\xca\xbf"
4933                         "\x32\x03\xed\xf0\x50\x1c\x56\x39"
4934                         "\x5b\xa4\x75\x18\xf7\x9b\x58\xef"
4935                         "\x53\xfc\x2a\x38\x23\x15\x75\xcd"
4936                         "\x45\xe5\x5a\x82\x55\xba\x21\xfa"
4937                         "\xd4\xbd\xc6\x94\x7c\xc5\x80\x12"
4938                         "\xf7\x4b\x32\xc4\x9a\x82\xd8\x28"
4939                         "\x8f\xd9\xc2\x0f\x60\x03\xbe\x5e"
4940                         "\x21\xd6\x5f\x58\xbf\x5c\xb1\x32"
4941                         "\x82\x8d\xa9\xe5\xf2\x66\x1a\xc0"
4942                         "\xa0\xbc\x58\x2f\x71\xf5\x2f\xed"
4943                         "\xd1\x26\xb9\xd8\x49\x5a\x07\x19"
4944                         "\x01\x7c\x59\xb0\xf8\xa4\xb7\xd3"
4945                         "\x7b\x1a\x8c\x38\xf4\x50\xa4\x59"
4946                         "\xb0\xcc\x41\x0b\x88\x7f\xe5\x31"
4947                         "\xb3\x42\xba\xa2\x7e\xd4\x32\x71"
4948                         "\x45\x87\x48\xa9\xc2\xf2\x89\xb3"
4949                         "\xe4\xa7\x7e\x52\x15\x61\xfa\xfe"
4950                         "\xc9\xdd\x81\xeb\x13\xab\xab\xc3"
4951                         "\x98\x59\xd8\x16\x3d\x14\x7a\x1c"
4952                         "\x3c\x41\x9a\x16\x16\x9b\xd2\xd2"
4953                         "\x69\x3a\x29\x23\xac\x86\x32\xa5"
4954                         "\x48\x9c\x9e\xf3\x47\x77\x81\x70"
4955                         "\x24\xe8\x85\xd2\xf5\xb5\xfa\xff"
4956                         "\x59\x6a\xd3\x50\x59\x43\x59\xde"
4957                         "\xd9\xf1\x55\xa5\x0c\xc3\x1a\x1a"
4958                         "\x18\x34\x0d\x1a\x63\x33\xed\x10"
4959                         "\xe0\x1d\x2a\x18\xd2\xc0\x54\xa8"
4960                         "\xca\xb5\x9a\xd3\xdd\xca\x45\x84"
4961                         "\x50\xe7\x0f\xfe\xa4\x99\x5a\xbe"
4962                         "\x43\x2d\x9a\xcb\x92\x3f\x5a\x1d"
4963                         "\x85\xd8\xc9\xdf\x68\xc9\x12\x80"
4964                         "\x56\x0c\xdc\x00\xdc\x3a\x7d\x9d"
4965                         "\xa3\xa2\xe8\x4d\xbf\xf9\x70\xa0"
4966                         "\xa4\x13\x4f\x6b\xaf\x0a\x89\x7f"
4967                         "\xda\xf0\xbf\x9b\xc8\x1d\xe5\xf8"
4968                         "\x2e\x8b\x07\xb5\x73\x1b\xcc\xa2"
4969                         "\xa6\xad\x30\xbc\x78\x3c\x5b\x10"
4970                         "\xfa\x5e\x62\x2d\x9e\x64\xb3\x33"
4971                         "\xce\xf9\x1f\x86\xe7\x8b\xa2\xb8"
4972                         "\xe8\x99\x57\x8c\x11\xed\x66\xd9"
4973                         "\x3c\x72\xb9\xc3\xe6\x4e\x17\x3a"
4974                         "\x6a\xcb\x42\x24\x06\xed\x3e\x4e"
4975                         "\xa3\xe8\x6a\x94\xda\x0d\x4e\xd5"
4976                         "\x14\x19\xcf\xb6\x26\xd8\x2e\xcc"
4977                         "\x64\x76\x38\x49\x4d\xfe\x30\x6d"
4978                         "\xe4\xc8\x8c\x7b\xc4\xe0\x35\xba"
4979                         "\x22\x6e\x76\xe1\x1a\xf2\x53\xc3"
4980                         "\x28\xa2\x82\x1f\x61\x69\xad\xc1"
4981                         "\x7b\x28\x4b\x1e\x6c\x85\x95\x9b"
4982                         "\x51\xb5\x17\x7f\x12\x69\x8c\x24"
4983                         "\xd5\xc7\x5a\x5a\x11\x54\xff\x5a"
4984                         "\xf7\x16\xc3\x91\xa6\xf0\xdc\x0a"
4985                         "\xb6\xa7\x4a\x0d\x7a\x58\xfe\xa5"
4986                         "\xf5\xcb\x8f\x7b\x0e\xea\x57\xe7"
4987                         "\xbd\x79\xd6\x1c\x88\x23\x6c\xf2"
4988                         "\x4d\x29\x77\x53\x35\x6a\x00\x8d"
4989                         "\xcd\xa3\x58\xbe\x77\x99\x18\xf8"
4990                         "\xe6\xe1\x8f\xe9\x37\x8f\xe3\xe2"
4991                         "\x5a\x8a\x93\x25\xaf\xf3\x78\x80"
4992                         "\xbe\xa6\x1b\xc6\xac\x8b\x1c\x91"
4993                         "\x58\xe1\x9f\x89\x35\x9d\x1d\x21"
4994                         "\x29\x9f\xf4\x99\x02\x27\x0f\xa8"
4995                         "\x4f\x79\x94\x2b\x33\x2c\xda\xa2"
4996                         "\x26\x39\x83\x94\xef\x27\xd8\x53"
4997                         "\x8f\x66\x0d\xe4\x41\x7d\x34\xcd"
4998                         "\x43\x7c\x95\x0a\x53\xef\x66\xda"
4999                         "\x7e\x9b\xf3\x93\xaf\xd0\x73\x71"
5000                         "\xba\x40\x9b\x74\xf8\xd7\xd7\x41"
5001                         "\x6d\xaf\x72\x9c\x8d\x21\x87\x3c"
5002                         "\xfd\x0a\x90\xa9\x47\x96\x9e\xd3"
5003                         "\x88\xee\x73\xcf\x66\x2f\x52\x56"
5004                         "\x6d\xa9\x80\x4c\xe2\x6f\x62\x88"
5005                         "\x3f\x0e\x54\x17\x48\x80\x5d\xd3"
5006                         "\xc3\xda\x25\x3d\xa1\xc8\xcb\x9f"
5007                         "\x9b\x70\xb3\xa1\xeb\x04\x52\xa1"
5008                         "\xf2\x22\x0f\xfc\xc8\x18\xfa\xf9"
5009                         "\x85\x9c\xf1\xac\xeb\x0c\x02\x46"
5010                         "\x75\xd2\xf5\x2c\xe3\xd2\x59\x94"
5011                         "\x12\xf3\x3c\xfc\xd7\x92\xfa\x36"
5012                         "\xba\x61\x34\x38\x7c\xda\x48\x3e"
5013                         "\x08\xc9\x39\x23\x5e\x02\x2c\x1a"
5014                         "\x18\x7e\xb4\xd9\xfd\x9e\x40\x02"
5015                         "\xb1\x33\x37\x32\xe7\xde\xd6\xd0"
5016                         "\x7c\x58\x65\x4b\xf8\x34\x27\x9c"
5017                         "\x44\xb4\xbd\xe9\xe9\x4c\x78\x7d"
5018                         "\x4b\x9f\xce\xb1\xcd\x47\xa5\x37"
5019                         "\xe5\x6d\xbd\xb9\x43\x94\x0a\xd4"
5020                         "\xd6\xf9\x04\x5f\xb5\x66\x6c\x1a"
5021                         "\x35\x12\xe3\x36\x28\x27\x36\x58"
5022                         "\x01\x2b\x79\xe4\xba\x6d\x10\x7d"
5023                         "\x65\xdf\x84\x95\xf4\xd5\xb6\x8f"
5024                         "\x2b\x9f\x96\x00\x86\x60\xf0\x21"
5025                         "\x76\xa8\x6a\x8c\x28\x1c\xb3\x6b"
5026                         "\x97\xd7\xb6\x53\x2a\xcc\xab\x40"
5027                         "\x9d\x62\x79\x58\x52\xe6\x65\xb7"
5028                         "\xab\x55\x67\x9c\x89\x7c\x03\xb0"
5029                         "\x73\x59\xc5\x81\xf5\x18\x17\x5c"
5030                         "\x89\xf3\x78\x35\x44\x62\x78\x72"
5031                         "\xd0\x96\xeb\x31\xe7\x87\x77\x14"
5032                         "\x99\x51\xf2\x59\x26\x9e\xb5\xa6"
5033                         "\x45\xfe\x6e\xbd\x07\x4c\x94\x5a"
5034                         "\xa5\x7d\xfc\xf1\x2b\x77\xe2\xfe"
5035                         "\x17\xd4\x84\xa0\xac\xb5\xc7\xda"
5036                         "\xa9\x1a\xb6\xf3\x74\x11\xb4\x9d"
5037                         "\xfb\x79\x2e\x04\x2d\x50\x28\x83"
5038                         "\xbf\xc6\x52\xd3\x34\xd6\xe8\x7a"
5039                         "\xb6\xea\xe7\xa8\x6c\x15\x1e\x2c"
5040                         "\x57\xbc\x48\x4e\x5f\x5c\xb6\x92"
5041                         "\xd2\x49\x77\x81\x6d\x90\x70\xae"
5042                         "\x98\xa1\x03\x0d\x6b\xb9\x77\x14"
5043                         "\xf1\x4e\x23\xd3\xf8\x68\xbd\xc2"
5044                         "\xfe\x04\xb7\x5c\xc5\x17\x60\x8f"
5045                         "\x65\x54\xa4\x7a\x42\xdc\x18\x0d"
5046                         "\xb5\xcf\x0f\xd3\xc7\x91\x66\x1b"
5047                         "\x45\x42\x27\x75\x50\xe5\xee\xb8"
5048                         "\x7f\x33\x2c\xba\x4a\x92\x4d\x2c"
5049                         "\x3c\xe3\x0d\x80\x01\xba\x0d\x29"
5050                         "\xd8\x3c\xe9\x13\x16\x57\xe6\xea"
5051                         "\x94\x52\xe7\x00\x4d\x30\xb0\x0f"
5052                         "\x35\xb8\xb8\xa7\xb1\xb5\x3b\x44"
5053                         "\xe1\x2f\xfd\x88\xed\x43\xe7\x52"
5054                         "\x10\x93\xb3\x8a\x30\x6b\x0a\xf7"
5055                         "\x23\xc6\x50\x9d\x4a\xb0\xde\xc3"
5056                         "\xdc\x9b\x2f\x01\x56\x36\x09\xc5"
5057                         "\x2f\x6b\xfe\xf1\xd8\x27\x45\x03"
5058                         "\x30\x5e\x5c\x5b\xb4\x62\x0e\x1a"
5059                         "\xa9\x21\x2b\x92\x94\x87\x62\x57"
5060                         "\x4c\x10\x74\x1a\xf1\x0a\xc5\x84"
5061                         "\x3b\x9e\x72\x02\xd7\xcc\x09\x56"
5062                         "\xbd\x54\xc1\xf0\xc3\xe3\xb3\xf8"
5063                         "\xd2\x0d\x61\xcb\xef\xce\x0d\x05"
5064                         "\xb0\x98\xd9\x8e\x4f\xf9\xbc\x93"
5065                         "\xa6\xea\xc8\xcf\x10\x53\x4b\xf1"
5066                         "\xec\xfc\x89\xf9\x64\xb0\x22\xbf"
5067                         "\x9e\x55\x46\x9f\x7c\x50\x8e\x84"
5068                         "\x54\x20\x98\xd7\x6c\x40\x1e\xdb"
5069                         "\x69\x34\x78\x61\x24\x21\x9c\x8a"
5070                         "\xb3\x62\x31\x8b\x6e\xf5\x2a\x35"
5071                         "\x86\x13\xb1\x6c\x64\x2e\x41\xa5"
5072                         "\x05\xf2\x42\xba\xd2\x3a\x0d\x8e"
5073                         "\x8a\x59\x94\x3c\xcf\x36\x27\x82"
5074                         "\xc2\x45\xee\x58\xcd\x88\xb4\xec"
5075                         "\xde\xb2\x96\x0a\xaf\x38\x6f\x88"
5076                         "\xd7\xd8\xe1\xdf\xb9\x96\xa9\x0a"
5077                         "\xb1\x95\x28\x86\x20\xe9\x17\x49"
5078                         "\xa2\x29\x38\xaa\xa5\xe9\x6e\xf1"
5079                         "\x19\x27\xc0\xd5\x2a\x22\xc3\x0b"
5080                         "\xdb\x7c\x73\x10\xb9\xba\x89\x76"
5081                         "\x54\xae\x7d\x71\xb3\x93\xf6\x32"
5082                         "\xe6\x47\x43\x55\xac\xa0\x0d\xc2"
5083                         "\x93\x27\x4a\x8e\x0e\x74\x15\xc7"
5084                         "\x0b\x85\xd9\x0c\xa9\x30\x7a\x3e"
5085                         "\xea\x8f\x85\x6d\x3a\x12\x4f\x72"
5086                         "\x69\x58\x7a\x80\xbb\xb5\x97\xf3"
5087                         "\xcf\x70\xd2\x5d\xdd\x4d\x21\x79"
5088                         "\x54\x4d\xe4\x05\xe8\xbd\xc2\x62"
5089                         "\xb1\x3b\x77\x1c\xd6\x5c\xf3\xa0"
5090                         "\x79\x00\xa8\x6c\x29\xd9\x18\x24"
5091                         "\x36\xa2\x46\xc0\x96\x65\x7f\xbd"
5092                         "\x2a\xed\x36\x16\x0c\xaa\x9f\xf4"
5093                         "\xc5\xb4\xe2\x12\xed\x69\xed\x4f"
5094                         "\x26\x2c\x39\x52\x89\x98\xe7\x2c"
5095                         "\x99\xa4\x9e\xa3\x9b\x99\x46\x7a"
5096                         "\x3a\xdc\xa8\x59\xa3\xdb\xc3\x3b"
5097                         "\x95\x0d\x3b\x09\x6e\xee\x83\x5d"
5098                         "\x32\x4d\xed\xab\xfa\x98\x14\x4e"
5099                         "\xc3\x15\x45\x53\x61\xc4\x93\xbd"
5100                         "\x90\xf4\x99\x95\x4c\xe6\x76\x92"
5101                         "\x29\x90\x46\x30\x92\x69\x7d\x13"
5102                         "\xf2\xa5\xcd\x69\x49\x44\xb2\x0f"
5103                         "\x63\x40\x36\x5f\x09\xe2\x78\xf8"
5104                         "\x91\xe3\xe2\xfa\x10\xf7\xc8\x24"
5105                         "\xa8\x89\x32\x5c\x37\x25\x1d\xb2"
5106                         "\xea\x17\x8a\x0a\xa9\x64\xc3\x7c"
5107                         "\x3c\x7c\xbd\xc6\x79\x34\xe7\xe2"
5108                         "\x85\x8e\xbf\xf8\xde\x92\xa0\xae"
5109                         "\x20\xc4\xf6\xbb\x1f\x38\x19\x0e"
5110                         "\xe8\x79\x9c\xa1\x23\xe9\x54\x7e"
5111                         "\x37\x2f\xe2\x94\x32\xaf\xa0\x23"
5112                         "\x49\xe4\xc0\xb3\xac\x00\x8f\x36"
5113                         "\x05\xc4\xa6\x96\xec\x05\x98\x4f"
5114                         "\x96\x67\x57\x1f\x20\x86\x1b\x2d"
5115                         "\x69\xe4\x29\x93\x66\x5f\xaf\x6b"
5116                         "\x88\x26\x2c\x67\x02\x4b\x52\xd0"
5117                         "\x83\x7a\x43\x1f\xc0\x71\x15\x25"
5118                         "\x77\x65\x08\x60\x11\x76\x4c\x8d"
5119                         "\xed\xa9\x27\xc6\xb1\x2a\x2c\x6a"
5120                         "\x4a\x97\xf5\xc6\xb7\x70\x42\xd3"
5121                         "\x03\xd1\x24\x95\xec\x6d\xab\x38"
5122                         "\x72\xce\xe2\x8b\x33\xd7\x51\x09"
5123                         "\xdc\x45\xe0\x09\x96\x32\xf3\xc4"
5124                         "\x84\xdc\x73\x73\x2d\x1b\x11\x98"
5125                         "\xc5\x0e\x69\x28\x94\xc7\xb5\x4d"
5126                         "\xc8\x8a\xd0\xaa\x13\x2e\x18\x74"
5127                         "\xdd\xd1\x1e\xf3\x90\xe8\xfc\x9a"
5128                         "\x72\x4a\x0e\xd1\xe4\xfb\x0d\x96"
5129                         "\xd1\x0c\x79\x85\x1b\x1c\xfe\xe1"
5130                         "\x62\x8f\x7a\x73\x32\xab\xc8\x18"
5131                         "\x69\xe3\x34\x30\xdf\x13\xa6\xe5"
5132                         "\xe8\x0e\x67\x7f\x81\x11\xb4\x60"
5133                         "\xc7\xbd\x79\x65\x50\xdc\xc4\x5b"
5134                         "\xde\x39\xa4\x01\x72\x63\xf3\xd1"
5135                         "\x64\x4e\xdf\xfc\x27\x92\x37\x0d"
5136                         "\x57\xcd\x11\x4f\x11\x04\x8e\x1d"
5137                         "\x16\xf7\xcd\x92\x9a\x99\x30\x14"
5138                         "\xf1\x7c\x67\x1b\x1f\x41\x0b\xe8"
5139                         "\x32\xe8\xb8\xc1\x4f\x54\x86\x4f"
5140                         "\xe5\x79\x81\x73\xcd\x43\x59\x68"
5141                         "\x73\x02\x3b\x78\x21\x72\x43\x00"
5142                         "\x49\x17\xf7\x00\xaf\x68\x24\x53"
5143                         "\x05\x0a\xc3\x33\xe0\x33\x3f\x69"
5144                         "\xd2\x84\x2f\x0b\xed\xde\x04\xf4"
5145                         "\x11\x94\x13\x69\x51\x09\x28\xde"
5146                         "\x57\x5c\xef\xdc\x9a\x49\x1c\x17"
5147                         "\x97\xf3\x96\xc1\x7f\x5d\x2e\x7d"
5148                         "\x55\xb8\xb3\x02\x09\xb3\x1f\xe7"
5149                         "\xc9\x8d\xa3\x36\x34\x8a\x77\x13"
5150                         "\x30\x63\x4c\xa5\xcd\xc3\xe0\x7e"
5151                         "\x05\xa1\x7b\x0c\xcb\x74\x47\x31"
5152                         "\x62\x03\x43\xf1\x87\xb4\xb0\x85"
5153                         "\x87\x8e\x4b\x25\xc7\xcf\xae\x4b"
5154                         "\x36\x46\x3e\x62\xbc\x6f\xeb\x5f"
5155                         "\x73\xac\xe6\x07\xee\xc1\xa1\xd6"
5156                         "\xc4\xab\xc9\xd6\x89\x45\xe1\xf1"
5157                         "\x04\x4e\x1a\x6f\xbb\x4f\x3a\xa3"
5158                         "\xa0\xcb\xa3\x0a\xd8\x71\x35\x55"
5159                         "\xe4\xbc\x2e\x04\x06\xe6\xff\x5b"
5160                         "\x1c\xc0\x11\x7c\xc5\x17\xf3\x38"
5161                         "\xcf\xe9\xba\x0f\x0e\xef\x02\xc2"
5162                         "\x8d\xc6\xbc\x4b\x67\x20\x95\xd7"
5163                         "\x2c\x45\x5b\x86\x44\x8c\x6f\x2e"
5164                         "\x7e\x9f\x1c\x77\xba\x6b\x0e\xa3"
5165                         "\x69\xdc\xab\x24\x57\x60\x47\xc1"
5166                         "\xd1\xa5\x9d\x23\xe6\xb1\x37\xfe"
5167                         "\x93\xd2\x4c\x46\xf9\x0c\xc6\xfb"
5168                         "\xd6\x9d\x99\x69\xab\x7a\x07\x0c"
5169                         "\x65\xe7\xc4\x08\x96\xe2\xa5\x01"
5170                         "\x3f\x46\x07\x05\x7e\xe8\x9a\x90"
5171                         "\x50\xdc\xe9\x7a\xea\xa1\x39\x6e"
5172                         "\x66\xe4\x6f\xa5\x5f\xb2\xd9\x5b"
5173                         "\xf5\xdb\x2a\x32\xf0\x11\x6f\x7c"
5174                         "\x26\x10\x8f\x3d\x80\xe9\x58\xf7"
5175                         "\xe0\xa8\x57\xf8\xdb\x0e\xce\x99"
5176                         "\x63\x19\x3d\xd5\xec\x1b\x77\x69"
5177                         "\x98\xf6\xe4\x5f\x67\x17\x4b\x09"
5178                         "\x85\x62\x82\x70\x18\xe2\x9a\x78"
5179                         "\xe2\x62\xbd\xb4\xf1\x42\xc6\xfb"
5180                         "\x08\xd0\xbd\xeb\x4e\x09\xf2\xc8"
5181                         "\x1e\xdc\x3d\x32\x21\x56\x9c\x4f"
5182                         "\x35\xf3\x61\x06\x72\x84\xc4\x32"
5183                         "\xf2\xf1\xfa\x0b\x2f\xc3\xdb\x02"
5184                         "\x04\xc2\xde\x57\x64\x60\x8d\xcf"
5185                         "\xcb\x86\x5d\x97\x3e\xb1\x9c\x01"
5186                         "\xd6\x28\x8f\x99\xbc\x46\xeb\x05"
5187                         "\xaf\x7e\xb8\x21\x2a\x56\x85\x1c"
5188                         "\xb3\x71\xa0\xde\xca\x96\xf1\x78"
5189                         "\x49\xa2\x99\x81\x80\x5c\x01\xf5"
5190                         "\xa0\xa2\x56\x63\xe2\x70\x07\xa5"
5191                         "\x95\xd6\x85\xeb\x36\x9e\xa9\x51"
5192                         "\x66\x56\x5f\x1d\x02\x19\xe2\xf6"
5193                         "\x4f\x73\x38\x09\x75\x64\x48\xe0"
5194                         "\xf1\x7e\x0e\xe8\x9d\xf9\xed\x94"
5195                         "\xfe\x16\x26\x62\x49\x74\xf4\xb0"
5196                         "\xd4\xa9\x6c\xb0\xfd\x53\xe9\x81"
5197                         "\xe0\x7a\xbf\xcf\xb5\xc4\x01\x81"
5198                         "\x79\x99\x77\x01\x3b\xe9\xa2\xb6"
5199                         "\xe6\x6a\x8a\x9e\x56\x1c\x8d\x1e"
5200                         "\x8f\x06\x55\x2c\x6c\xdc\x92\x87"
5201                         "\x64\x3b\x4b\x19\xa1\x13\x64\x1d"
5202                         "\x4a\xe9\xc0\x00\xb8\x95\xef\x6b"
5203                         "\x1a\x86\x6d\x37\x52\x02\xc2\xe0"
5204                         "\xc8\xbb\x42\x0c\x02\x21\x4a\xc9"
5205                         "\xef\xa0\x54\xe4\x5e\x16\x53\x81"
5206                         "\x70\x62\x10\xaf\xde\xb8\xb5\xd3"
5207                         "\xe8\x5e\x6c\xc3\x8a\x3e\x18\x07"
5208                         "\xf2\x2f\x7d\xa7\xe1\x3d\x4e\xb4"
5209                         "\x26\xa7\xa3\x93\x86\xb2\x04\x1e"
5210                         "\x53\x5d\x86\xd6\xde\x65\xca\xe3"
5211                         "\x4e\xc1\xcf\xef\xc8\x70\x1b\x83"
5212                         "\x13\xdd\x18\x8b\x0d\x76\xd2\xf6"
5213                         "\x37\x7a\x93\x7a\x50\x11\x9f\x96"
5214                         "\x86\x25\xfd\xac\xdc\xbe\x18\x93"
5215                         "\x19\x6b\xec\x58\x4f\xb9\x75\xa7"
5216                         "\xdd\x3f\x2f\xec\xc8\x5a\x84\xab"
5217                         "\xd5\xe4\x8a\x07\xf6\x4d\x23\xd6"
5218                         "\x03\xfb\x03\x6a\xea\x66\xbf\xd4"
5219                         "\xb1\x34\xfb\x78\xe9\x55\xdc\x7c"
5220                         "\x3d\x9c\xe5\x9a\xac\xc3\x7a\x80"
5221                         "\x24\x6d\xa0\xef\x25\x7c\xb7\xea"
5222                         "\xce\x4d\x5f\x18\x60\xce\x87\x22"
5223                         "\x66\x2f\xd5\xdd\xdd\x02\x21\x75"
5224                         "\x82\xa0\x1f\x58\xc6\xd3\x62\xf7"
5225                         "\x32\xd8\xaf\x1e\x07\x77\x51\x96"
5226                         "\xd5\x6b\x1e\x7e\x80\x02\xe8\x67"
5227                         "\xea\x17\x0b\x10\xd2\x3f\x28\x25"
5228                         "\x4f\x05\x77\x02\x14\x69\xf0\x2c"
5229                         "\xbe\x0c\xf1\x74\x30\xd1\xb9\x9b"
5230                         "\xfc\x8c\xbb\x04\x16\xd9\xba\xc3"
5231                         "\xbc\x91\x8a\xc4\x30\xa4\xb0\x12"
5232                         "\x4c\x21\x87\xcb\xc9\x1d\x16\x96"
5233                         "\x07\x6f\x23\x54\xb9\x6f\x79\xe5"
5234                         "\x64\xc0\x64\xda\xb1\xae\xdd\x60"
5235                         "\x6c\x1a\x9d\xd3\x04\x8e\x45\xb0"
5236                         "\x92\x61\xd0\x48\x81\xed\x5e\x1d"
5237                         "\xa0\xc9\xa4\x33\xc7\x13\x51\x5d"
5238                         "\x7f\x83\x73\xb6\x70\x18\x65\x3e"
5239                         "\x2f\x0e\x7a\x12\x39\x98\xab\xd8"
5240                         "\x7e\x6f\xa3\xd1\xba\x56\xad\xbd"
5241                         "\xf0\x03\x01\x1c\x85\x35\x9f\xeb"
5242                         "\x19\x63\xa1\xaf\xfe\x2d\x35\x50"
5243                         "\x39\xa0\x65\x7c\x95\x7e\x6b\xfe"
5244                         "\xc1\xac\x07\x7c\x98\x4f\xbe\x57"
5245                         "\xa7\x22\xec\xe2\x7e\x29\x09\x53"
5246                         "\xe8\xbf\xb4\x7e\x3f\x8f\xfc\x14"
5247                         "\xce\x54\xf9\x18\x58\xb5\xff\x44"
5248                         "\x05\x9d\xce\x1b\xb6\x82\x23\xc8"
5249                         "\x2e\xbc\x69\xbb\x4a\x29\x0f\x65"
5250                         "\x94\xf0\x63\x06\x0e\xef\x8c\xbd"
5251                         "\xff\xfd\xb0\x21\x6e\x57\x05\x75"
5252                         "\xda\xd5\xc4\xeb\x8d\x32\xf7\x50"
5253                         "\xd3\x6f\x22\xed\x5f\x8e\xa2\x5b"
5254                         "\x80\x8c\xc8\x78\x40\x24\x4b\x89"
5255                         "\x30\xce\x7a\x97\x0e\xc4\xaf\xef"
5256                         "\x9b\xb4\xcd\x66\x74\x14\x04\x2b"
5257                         "\xf7\xce\x0b\x1c\x6e\xc2\x78\x8c"
5258                         "\xca\xc5\xd0\x1c\x95\x4a\x91\x2d"
5259                         "\xa7\x20\xeb\x86\x52\xb7\x67\xd8"
5260                         "\x0c\xd6\x04\x14\xde\x51\x74\x75"
5261                         "\xe7\x11\xb4\x87\xa3\x3d\x2d\xad"
5262                         "\x4f\xef\xa0\x0f\x70\x00\x6d\x13"
5263                         "\x19\x1d\x41\x50\xe9\xd8\xf0\x32"
5264                         "\x71\xbc\xd3\x11\xf2\xac\xbe\xaf"
5265                         "\x75\x46\x65\x4e\x07\x34\x37\xa3"
5266                         "\x89\xfe\x75\xd4\x70\x4c\xc6\x3f"
5267                         "\x69\x24\x0e\x38\x67\x43\x8c\xde"
5268                         "\x06\xb5\xb8\xe7\xc4\xf0\x41\x8f"
5269                         "\xf0\xbd\x2f\x0b\xb9\x18\xf8\xde"
5270                         "\x64\xb1\xdb\xee\x00\x50\x77\xe1"
5271                         "\xc7\xff\xa6\xfa\xdd\x70\xf4\xe3"
5272                         "\x93\xe9\x77\x35\x3d\x4b\x2f\x2b"
5273                         "\x6d\x55\xf0\xfc\x88\x54\x4e\x89"
5274                         "\xc1\x8a\x23\x31\x2d\x14\x2a\xb8"
5275                         "\x1b\x15\xdd\x9e\x6e\x7b\xda\x05"
5276                         "\x91\x7d\x62\x64\x96\x72\xde\xfc"
5277                         "\xc1\xec\xf0\x23\x51\x6f\xdb\x5b"
5278                         "\x1d\x08\x57\xce\x09\xb8\xf6\xcd"
5279                         "\x8d\x95\xf2\x20\xbf\x0f\x20\x57"
5280                         "\x98\x81\x84\x4f\x15\x5c\x76\xe7"
5281                         "\x3e\x0a\x3a\x6c\xc4\x8a\xbe\x78"
5282                         "\x74\x77\xc3\x09\x4b\x5d\x48\xe4"
5283                         "\xc8\xcb\x0b\xea\x17\x28\xcf\xcf"
5284                         "\x31\x32\x44\xa4\xe5\x0e\x1a\x98"
5285                         "\x94\xc4\xf0\xff\xae\x3e\x44\xe8"
5286                         "\xa5\xb3\xb5\x37\x2f\xe8\xaf\x6f"
5287                         "\x28\xc1\x37\x5f\x31\xd2\xb9\x33"
5288                         "\xb1\xb2\x52\x94\x75\x2c\x29\x59"
5289                         "\x06\xc2\x25\xe8\x71\x65\x4e\xed"
5290                         "\xc0\x9c\xb1\xbb\x25\xdc\x6c\xe7"
5291                         "\x4b\xa5\x7a\x54\x7a\x60\xff\x7a"
5292                         "\xe0\x50\x40\x96\x35\x63\xe4\x0b"
5293                         "\x76\xbd\xa4\x65\x00\x1b\x57\x88"
5294                         "\xae\xed\x39\x88\x42\x11\x3c\xed"
5295                         "\x85\x67\x7d\xb9\x68\x82\xe9\x43"
5296                         "\x3c\x47\x53\xfa\xe8\xf8\x9f\x1f"
5297                         "\x9f\xef\x0f\xf7\x30\xd9\x30\x0e"
5298                         "\xb9\x9f\x69\x18\x2f\x7e\xf8\xf8"
5299                         "\xf8\x8c\x0f\xd4\x02\x4d\xea\xcd"
5300                         "\x0a\x9c\x6f\x71\x6d\x5a\x4c\x60"
5301                         "\xce\x20\x56\x32\xc6\xc5\x99\x1f"
5302                         "\x09\xe6\x4e\x18\x1a\x15\x13\xa8"
5303                         "\x7d\xb1\x6b\xc0\xb2\x6d\xf8\x26"
5304                         "\x66\xf8\x3d\x18\x74\x70\x66\x7a"
5305                         "\x34\x17\xde\xba\x47\xf1\x06\x18"
5306                         "\xcb\xaf\xeb\x4a\x1e\x8f\xa7\x77"
5307                         "\xe0\x3b\x78\x62\x66\xc9\x10\xea"
5308                         "\x1f\xb7\x29\x0a\x45\xa1\x1d\x1e"
5309                         "\x1d\xe2\x65\x61\x50\x9c\xd7\x05"
5310                         "\xf2\x0b\x5b\x12\x61\x02\xc8\xe5"
5311                         "\x63\x4f\x20\x0c\x07\x17\x33\x5e"
5312                         "\x03\x9a\x53\x0f\x2e\x55\xfe\x50"
5313                         "\x43\x7d\xd0\xb6\x7e\x5a\xda\xae"
5314                         "\x58\xef\x15\xa9\x83\xd9\x46\xb1"
5315                         "\x42\xaa\xf5\x02\x6c\xce\x92\x06"
5316                         "\x1b\xdb\x66\x45\x91\x79\xc2\x2d"
5317                         "\xe6\x53\xd3\x14\xfd\xbb\x44\x63"
5318                         "\xc6\xd7\x3d\x7a\x0c\x75\x78\x9d"
5319                         "\x5c\xa6\x39\xb3\xe5\x63\xca\x8b"
5320                         "\xfe\xd3\xef\x60\x83\xf6\x8e\x70"
5321                         "\xb6\x67\xc7\x77\xed\x23\xef\x4c"
5322                         "\xf0\xed\x2d\x07\x59\x6f\xc1\x01"
5323                         "\x34\x37\x08\xab\xd9\x1f\x09\xb1"
5324                         "\xce\x5b\x17\xff\x74\xf8\x9c\xd5"
5325                         "\x2c\x56\x39\x79\x0f\x69\x44\x75"
5326                         "\x58\x27\x01\xc4\xbf\xa7\xa1\x1d"
5327                         "\x90\x17\x77\x86\x5a\x3f\xd9\xd1"
5328                         "\x0e\xa0\x10\xf8\xec\x1e\xa5\x7f"
5329                         "\x5e\x36\xd1\xe3\x04\x2c\x70\xf7"
5330                         "\x8e\xc0\x98\x2f\x6c\x94\x2b\x41"
5331                         "\xb7\x60\x00\xb7\x2e\xb8\x02\x8d"
5332                         "\xb8\xb0\xd3\x86\xba\x1d\xd7\x90"
5333                         "\xd6\xb6\xe1\xfc\xd7\xd8\x28\x06"
5334                         "\x63\x9b\xce\x61\x24\x79\xc0\x70"
5335                         "\x52\xd0\xb6\xd4\x28\x95\x24\x87"
5336                         "\x03\x1f\xb7\x9a\xda\xa3\xfb\x52"
5337                         "\x5b\x68\xe7\x4c\x8c\x24\xe1\x42"
5338                         "\xf7\xd5\xfd\xad\x06\x32\x9f\xba"
5339                         "\xc1\xfc\xdd\xc6\xfc\xfc\xb3\x38"
5340                         "\x74\x56\x58\x40\x02\x37\x52\x2c"
5341                         "\x55\xcc\xb3\x9e\x7a\xe9\xd4\x38"
5342                         "\x41\x5e\x0c\x35\xe2\x11\xd1\x13"
5343                         "\xf8\xb7\x8d\x72\x6b\x22\x2a\xb0"
5344                         "\xdb\x08\xba\x35\xb9\x3f\xc8\xd3"
5345                         "\x24\x90\xec\x58\xd2\x09\xc7\x2d"
5346                         "\xed\x38\x80\x36\x72\x43\x27\x49"
5347                         "\x4a\x80\x8a\xa2\xe8\xd3\xda\x30"
5348                         "\x7d\xb6\x82\x37\x86\x92\x86\x3e"
5349                         "\x08\xb2\x28\x5a\x55\x44\x24\x7d"
5350                         "\x40\x48\x8a\xb6\x89\x58\x08\xa0"
5351                         "\xd6\x6d\x3a\x17\xbf\xf6\x54\xa2"
5352                         "\xf5\xd3\x8c\x0f\x78\x12\x57\x8b"
5353                         "\xd5\xc2\xfd\x58\x5b\x7f\x38\xe3"
5354                         "\xcc\xb7\x7c\x48\xb3\x20\xe8\x81"
5355                         "\x14\x32\x45\x05\xe0\xdb\x9f\x75"
5356                         "\x85\xb4\x6a\xfc\x95\xe3\x54\x22"
5357                         "\x12\xee\x30\xfe\xd8\x30\xef\x34"
5358                         "\x50\xab\x46\x30\x98\x2f\xb7\xc0"
5359                         "\x15\xa2\x83\xb6\xf2\x06\x21\xa2"
5360                         "\xc3\x26\x37\x14\xd1\x4d\xb5\x10"
5361                         "\x52\x76\x4d\x6a\xee\xb5\x2b\x15"
5362                         "\xb7\xf9\x51\xe8\x2a\xaf\xc7\xfa"
5363                         "\x77\xaf\xb0\x05\x4d\xd1\x68\x8e"
5364                         "\x74\x05\x9f\x9d\x93\xa5\x3e\x7f"
5365                         "\x4e\x5f\x9d\xcb\x09\xc7\x83\xe3"
5366                         "\x02\x9d\x27\x1f\xef\x85\x05\x8d"
5367                         "\xec\x55\x88\x0f\x0d\x7c\x4c\xe8"
5368                         "\xa1\x75\xa0\xd8\x06\x47\x14\xef"
5369                         "\xaa\x61\xcf\x26\x15\xad\xd8\xa3"
5370                         "\xaa\x75\xf2\x78\x4a\x5a\x61\xdf"
5371                         "\x8b\xc7\x04\xbc\xb2\x32\xd2\x7e"
5372                         "\x42\xee\xb4\x2f\x51\xff\x7b\x2e"
5373                         "\xd3\x02\xe8\xdc\x5d\x0d\x50\xdc"
5374                         "\xae\xb7\x46\xf9\xa8\xe6\xd0\x16"
5375                         "\xcc\xe6\x2c\x81\xc7\xad\xe9\xf0"
5376                         "\x05\x72\x6d\x3d\x0a\x7a\xa9\x02"
5377                         "\xac\x82\x93\x6e\xb6\x1c\x28\xfc"
5378                         "\x44\x12\xfb\x73\x77\xd4\x13\x39"
5379                         "\x29\x88\x8a\xf3\x5c\xa6\x36\xa0"
5380                         "\x2a\xed\x7e\xb1\x1d\xd6\x4c\x6b"
5381                         "\x41\x01\x18\x5d\x5d\x07\x97\xa6"
5382                         "\x4b\xef\x31\x18\xea\xac\xb1\x84"
5383                         "\x21\xed\xda\x86",
5384                 .rlen = 4100,
5385                 .np     = 2,
5386                 .tap    = { 4064, 36 },
5387         },
5388 };
5389
5390 static struct cipher_testvec aes_ctr_rfc3686_dec_tv_template[] = {
5391         { /* From RFC 3686 */
5392                 .key    = "\xae\x68\x52\xf8\x12\x10\x67\xcc"
5393                           "\x4b\xf7\xa5\x76\x55\x77\xf3\x9e"
5394                           "\x00\x00\x00\x30",
5395                 .klen   = 20,
5396                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
5397                 .input  = "\xe4\x09\x5d\x4f\xb7\xa7\xb3\x79"
5398                           "\x2d\x61\x75\xa3\x26\x13\x11\xb8",
5399                 .ilen   = 16,
5400                 .result = "Single block msg",
5401                 .rlen   = 16,
5402         }, {
5403                 .key    = "\x7e\x24\x06\x78\x17\xfa\xe0\xd7"
5404                           "\x43\xd6\xce\x1f\x32\x53\x91\x63"
5405                           "\x00\x6c\xb6\xdb",
5406                 .klen   = 20,
5407                 .iv     = "\xc0\x54\x3b\x59\xda\x48\xd9\x0b",
5408                 .input  = "\x51\x04\xa1\x06\x16\x8a\x72\xd9"
5409                           "\x79\x0d\x41\xee\x8e\xda\xd3\x88"
5410                           "\xeb\x2e\x1e\xfc\x46\xda\x57\xc8"
5411                           "\xfc\xe6\x30\xdf\x91\x41\xbe\x28",
5412                 .ilen   = 32,
5413                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
5414                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5415                           "\x10\x11\x12\x13\x14\x15\x16\x17"
5416                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
5417                 .rlen   = 32,
5418         }, {
5419                 .key    = "\x16\xaf\x5b\x14\x5f\xc9\xf5\x79"
5420                           "\xc1\x75\xf9\x3e\x3b\xfb\x0e\xed"
5421                           "\x86\x3d\x06\xcc\xfd\xb7\x85\x15"
5422                           "\x00\x00\x00\x48",
5423                 .klen   = 28,
5424                 .iv     = "\x36\x73\x3c\x14\x7d\x6d\x93\xcb",
5425                 .input  = "\x4b\x55\x38\x4f\xe2\x59\xc9\xc8"
5426                           "\x4e\x79\x35\xa0\x03\xcb\xe9\x28",
5427                 .ilen   = 16,
5428                 .result = "Single block msg",
5429                 .rlen   = 16,
5430         }, {
5431                 .key    = "\x7c\x5c\xb2\x40\x1b\x3d\xc3\x3c"
5432                           "\x19\xe7\x34\x08\x19\xe0\xf6\x9c"
5433                           "\x67\x8c\x3d\xb8\xe6\xf6\xa9\x1a"
5434                           "\x00\x96\xb0\x3b",
5435                 .klen   = 28,
5436                 .iv     = "\x02\x0c\x6e\xad\xc2\xcb\x50\x0d",
5437                 .input  = "\x45\x32\x43\xfc\x60\x9b\x23\x32"
5438                           "\x7e\xdf\xaa\xfa\x71\x31\xcd\x9f"
5439                           "\x84\x90\x70\x1c\x5a\xd4\xa7\x9c"
5440                           "\xfc\x1f\xe0\xff\x42\xf4\xfb\x00",
5441                 .ilen   = 32,
5442                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
5443                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5444                           "\x10\x11\x12\x13\x14\x15\x16\x17"
5445                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
5446                 .rlen   = 32,
5447         }, {
5448                 .key    = "\x77\x6b\xef\xf2\x85\x1d\xb0\x6f"
5449                           "\x4c\x8a\x05\x42\xc8\x69\x6f\x6c"
5450                           "\x6a\x81\xaf\x1e\xec\x96\xb4\xd3"
5451                           "\x7f\xc1\xd6\x89\xe6\xc1\xc1\x04"
5452                           "\x00\x00\x00\x60",
5453                 .klen   = 36,
5454                 .iv     = "\xdb\x56\x72\xc9\x7a\xa8\xf0\xb2",
5455                 .input  = "\x14\x5a\xd0\x1d\xbf\x82\x4e\xc7"
5456                           "\x56\x08\x63\xdc\x71\xe3\xe0\xc0",
5457                 .ilen   = 16,
5458                 .result = "Single block msg",
5459                 .rlen   = 16,
5460         }, {
5461                 .key    = "\xf6\xd6\x6d\x6b\xd5\x2d\x59\xbb"
5462                           "\x07\x96\x36\x58\x79\xef\xf8\x86"
5463                           "\xc6\x6d\xd5\x1a\x5b\x6a\x99\x74"
5464                           "\x4b\x50\x59\x0c\x87\xa2\x38\x84"
5465                           "\x00\xfa\xac\x24",
5466                 .klen   = 36,
5467                 .iv     = "\xc1\x58\x5e\xf1\x5a\x43\xd8\x75",
5468                 .input  = "\xf0\x5e\x23\x1b\x38\x94\x61\x2c"
5469                           "\x49\xee\x00\x0b\x80\x4e\xb2\xa9"
5470                           "\xb8\x30\x6b\x50\x8f\x83\x9d\x6a"
5471                           "\x55\x30\x83\x1d\x93\x44\xaf\x1c",
5472                 .ilen   = 32,
5473                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
5474                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5475                           "\x10\x11\x12\x13\x14\x15\x16\x17"
5476                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
5477                 .rlen   = 32,
5478         },
5479 };
5480
5481 static struct aead_testvec aes_gcm_enc_tv_template[] = {
5482         { /* From McGrew & Viega - http://citeseer.ist.psu.edu/656989.html */
5483                 .key    = zeroed_string,
5484                 .klen   = 16,
5485                 .result = "\x58\xe2\xfc\xce\xfa\x7e\x30\x61"
5486                           "\x36\x7f\x1d\x57\xa4\xe7\x45\x5a",
5487                 .rlen   = 16,
5488         }, {
5489                 .key    = zeroed_string,
5490                 .klen   = 16,
5491                 .input  = zeroed_string,
5492                 .ilen   = 16,
5493                 .result = "\x03\x88\xda\xce\x60\xb6\xa3\x92"
5494                           "\xf3\x28\xc2\xb9\x71\xb2\xfe\x78"
5495                           "\xab\x6e\x47\xd4\x2c\xec\x13\xbd"
5496                           "\xf5\x3a\x67\xb2\x12\x57\xbd\xdf",
5497                 .rlen   = 32,
5498         }, {
5499                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5500                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5501                 .klen   = 16,
5502                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5503                           "\xde\xca\xf8\x88",
5504                 .input  = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5505                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5506                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5507                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5508                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5509                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5510                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5511                           "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5512                 .ilen   = 64,
5513                 .result = "\x42\x83\x1e\xc2\x21\x77\x74\x24"
5514                           "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c"
5515                           "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0"
5516                           "\x35\xc1\x7e\x23\x29\xac\xa1\x2e"
5517                           "\x21\xd5\x14\xb2\x54\x66\x93\x1c"
5518                           "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05"
5519                           "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97"
5520                           "\x3d\x58\xe0\x91\x47\x3f\x59\x85"
5521                           "\x4d\x5c\x2a\xf3\x27\xcd\x64\xa6"
5522                           "\x2c\xf3\x5a\xbd\x2b\xa6\xfa\xb4",
5523                 .rlen   = 80,
5524         }, {
5525                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5526                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5527                 .klen   = 16,
5528                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5529                           "\xde\xca\xf8\x88",
5530                 .input  = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5531                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5532                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5533                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5534                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5535                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5536                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5537                           "\xba\x63\x7b\x39",
5538                 .ilen   = 60,
5539                 .assoc  = "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5540                           "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5541                           "\xab\xad\xda\xd2",
5542                 .alen   = 20,
5543                 .result = "\x42\x83\x1e\xc2\x21\x77\x74\x24"
5544                           "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c"
5545                           "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0"
5546                           "\x35\xc1\x7e\x23\x29\xac\xa1\x2e"
5547                           "\x21\xd5\x14\xb2\x54\x66\x93\x1c"
5548                           "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05"
5549                           "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97"
5550                           "\x3d\x58\xe0\x91"
5551                           "\x5b\xc9\x4f\xbc\x32\x21\xa5\xdb"
5552                           "\x94\xfa\xe9\x5a\xe7\x12\x1a\x47",
5553                 .rlen   = 76,
5554         }, {
5555                 .key    = zeroed_string,
5556                 .klen   = 24,
5557                 .result = "\xcd\x33\xb2\x8a\xc7\x73\xf7\x4b"
5558                           "\xa0\x0e\xd1\xf3\x12\x57\x24\x35",
5559                 .rlen   = 16,
5560         }, {
5561                 .key    = zeroed_string,
5562                 .klen   = 24,
5563                 .input  = zeroed_string,
5564                 .ilen   = 16,
5565                 .result = "\x98\xe7\x24\x7c\x07\xf0\xfe\x41"
5566                           "\x1c\x26\x7e\x43\x84\xb0\xf6\x00"
5567                           "\x2f\xf5\x8d\x80\x03\x39\x27\xab"
5568                           "\x8e\xf4\xd4\x58\x75\x14\xf0\xfb",
5569                 .rlen   = 32,
5570         }, {
5571                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5572                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5573                           "\xfe\xff\xe9\x92\x86\x65\x73\x1c",
5574                 .klen   = 24,
5575                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5576                           "\xde\xca\xf8\x88",
5577                 .input  = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5578                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5579                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5580                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5581                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5582                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5583                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5584                           "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5585                 .ilen   = 64,
5586                 .result = "\x39\x80\xca\x0b\x3c\x00\xe8\x41"
5587                           "\xeb\x06\xfa\xc4\x87\x2a\x27\x57"
5588                           "\x85\x9e\x1c\xea\xa6\xef\xd9\x84"
5589                           "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c"
5590                           "\x7d\x77\x3d\x00\xc1\x44\xc5\x25"
5591                           "\xac\x61\x9d\x18\xc8\x4a\x3f\x47"
5592                           "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9"
5593                           "\xcc\xda\x27\x10\xac\xad\xe2\x56"
5594                           "\x99\x24\xa7\xc8\x58\x73\x36\xbf"
5595                           "\xb1\x18\x02\x4d\xb8\x67\x4a\x14",
5596                 .rlen   = 80,
5597         }, {
5598                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5599                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5600                           "\xfe\xff\xe9\x92\x86\x65\x73\x1c",
5601                 .klen   = 24,
5602                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5603                           "\xde\xca\xf8\x88",
5604                 .input  = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5605                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5606                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5607                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5608                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5609                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5610                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5611                           "\xba\x63\x7b\x39",
5612                 .ilen   = 60,
5613                 .assoc  = "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5614                           "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5615                           "\xab\xad\xda\xd2",
5616                 .alen   = 20,
5617                 .result = "\x39\x80\xca\x0b\x3c\x00\xe8\x41"
5618                           "\xeb\x06\xfa\xc4\x87\x2a\x27\x57"
5619                           "\x85\x9e\x1c\xea\xa6\xef\xd9\x84"
5620                           "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c"
5621                           "\x7d\x77\x3d\x00\xc1\x44\xc5\x25"
5622                           "\xac\x61\x9d\x18\xc8\x4a\x3f\x47"
5623                           "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9"
5624                           "\xcc\xda\x27\x10"
5625                           "\x25\x19\x49\x8e\x80\xf1\x47\x8f"
5626                           "\x37\xba\x55\xbd\x6d\x27\x61\x8c",
5627                 .rlen   = 76,
5628                 .np     = 2,
5629                 .tap    = { 32, 28 },
5630                 .anp    = 2,
5631                 .atap   = { 8, 12 }
5632         }, {
5633                 .key    = zeroed_string,
5634                 .klen   = 32,
5635                 .result = "\x53\x0f\x8a\xfb\xc7\x45\x36\xb9"
5636                           "\xa9\x63\xb4\xf1\xc4\xcb\x73\x8b",
5637                 .rlen   = 16,
5638         }
5639 };
5640
5641 static struct aead_testvec aes_gcm_dec_tv_template[] = {
5642         { /* From McGrew & Viega - http://citeseer.ist.psu.edu/656989.html */
5643                 .key    = zeroed_string,
5644                 .klen   = 32,
5645                 .input  = "\xce\xa7\x40\x3d\x4d\x60\x6b\x6e"
5646                           "\x07\x4e\xc5\xd3\xba\xf3\x9d\x18"
5647                           "\xd0\xd1\xc8\xa7\x99\x99\x6b\xf0"
5648                           "\x26\x5b\x98\xb5\xd4\x8a\xb9\x19",
5649                 .ilen   = 32,
5650                 .result  = zeroed_string,
5651                 .rlen   = 16,
5652         }, {
5653                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5654                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5655                           "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5656                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5657                 .klen   = 32,
5658                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5659                           "\xde\xca\xf8\x88",
5660                 .input  = "\x52\x2d\xc1\xf0\x99\x56\x7d\x07"
5661                           "\xf4\x7f\x37\xa3\x2a\x84\x42\x7d"
5662                           "\x64\x3a\x8c\xdc\xbf\xe5\xc0\xc9"
5663                           "\x75\x98\xa2\xbd\x25\x55\xd1\xaa"
5664                           "\x8c\xb0\x8e\x48\x59\x0d\xbb\x3d"
5665                           "\xa7\xb0\x8b\x10\x56\x82\x88\x38"
5666                           "\xc5\xf6\x1e\x63\x93\xba\x7a\x0a"
5667                           "\xbc\xc9\xf6\x62\x89\x80\x15\xad"
5668                           "\xb0\x94\xda\xc5\xd9\x34\x71\xbd"
5669                           "\xec\x1a\x50\x22\x70\xe3\xcc\x6c",
5670                 .ilen   = 80,
5671                 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5672                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5673                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5674                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5675                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5676                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5677                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5678                           "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5679                 .rlen   = 64,
5680         }, {
5681                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5682                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5683                           "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5684                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5685                 .klen   = 32,
5686                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5687                           "\xde\xca\xf8\x88",
5688                 .input  = "\x52\x2d\xc1\xf0\x99\x56\x7d\x07"
5689                           "\xf4\x7f\x37\xa3\x2a\x84\x42\x7d"
5690                           "\x64\x3a\x8c\xdc\xbf\xe5\xc0\xc9"
5691                           "\x75\x98\xa2\xbd\x25\x55\xd1\xaa"
5692                           "\x8c\xb0\x8e\x48\x59\x0d\xbb\x3d"
5693                           "\xa7\xb0\x8b\x10\x56\x82\x88\x38"
5694                           "\xc5\xf6\x1e\x63\x93\xba\x7a\x0a"
5695                           "\xbc\xc9\xf6\x62"
5696                           "\x76\xfc\x6e\xce\x0f\x4e\x17\x68"
5697                           "\xcd\xdf\x88\x53\xbb\x2d\x55\x1b",
5698                 .ilen   = 76,
5699                 .assoc  = "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5700                           "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5701                           "\xab\xad\xda\xd2",
5702                 .alen   = 20,
5703                 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5704                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5705                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5706                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5707                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5708                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5709                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5710                           "\xba\x63\x7b\x39",
5711                 .rlen   = 60,
5712                 .np     = 2,
5713                 .tap    = { 48, 28 },
5714                 .anp    = 3,
5715                 .atap   = { 8, 8, 4 }
5716         }, {
5717                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5718                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5719                 .klen   = 16,
5720                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5721                           "\xde\xca\xf8\x88",
5722                 .input  = "\x42\x83\x1e\xc2\x21\x77\x74\x24"
5723                           "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c"
5724                           "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0"
5725                           "\x35\xc1\x7e\x23\x29\xac\xa1\x2e"
5726                           "\x21\xd5\x14\xb2\x54\x66\x93\x1c"
5727                           "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05"
5728                           "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97"
5729                           "\x3d\x58\xe0\x91\x47\x3f\x59\x85"
5730                           "\x4d\x5c\x2a\xf3\x27\xcd\x64\xa6"
5731                           "\x2c\xf3\x5a\xbd\x2b\xa6\xfa\xb4",
5732                 .ilen   = 80,
5733                 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5734                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5735                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5736                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5737                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5738                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5739                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5740                           "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5741                 .rlen   = 64,
5742         }, {
5743                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5744                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5745                 .klen   = 16,
5746                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5747                           "\xde\xca\xf8\x88",
5748                 .input  = "\x42\x83\x1e\xc2\x21\x77\x74\x24"
5749                           "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c"
5750                           "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0"
5751                           "\x35\xc1\x7e\x23\x29\xac\xa1\x2e"
5752                           "\x21\xd5\x14\xb2\x54\x66\x93\x1c"
5753                           "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05"
5754                           "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97"
5755                           "\x3d\x58\xe0\x91"
5756                           "\x5b\xc9\x4f\xbc\x32\x21\xa5\xdb"
5757                           "\x94\xfa\xe9\x5a\xe7\x12\x1a\x47",
5758                 .ilen   = 76,
5759                 .assoc  = "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5760                           "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5761                           "\xab\xad\xda\xd2",
5762                 .alen   = 20,
5763                 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5764                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5765                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5766                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5767                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5768                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5769                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5770                           "\xba\x63\x7b\x39",
5771                 .rlen   = 60,
5772         }, {
5773                 .key    = zeroed_string,
5774                 .klen   = 24,
5775                 .input  = "\x98\xe7\x24\x7c\x07\xf0\xfe\x41"
5776                           "\x1c\x26\x7e\x43\x84\xb0\xf6\x00"
5777                           "\x2f\xf5\x8d\x80\x03\x39\x27\xab"
5778                           "\x8e\xf4\xd4\x58\x75\x14\xf0\xfb",
5779                 .ilen   = 32,
5780                 .result  = zeroed_string,
5781                 .rlen   = 16,
5782         }, {
5783                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5784                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5785                           "\xfe\xff\xe9\x92\x86\x65\x73\x1c",
5786                 .klen   = 24,
5787                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5788                           "\xde\xca\xf8\x88",
5789                 .input  = "\x39\x80\xca\x0b\x3c\x00\xe8\x41"
5790                           "\xeb\x06\xfa\xc4\x87\x2a\x27\x57"
5791                           "\x85\x9e\x1c\xea\xa6\xef\xd9\x84"
5792                           "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c"
5793                           "\x7d\x77\x3d\x00\xc1\x44\xc5\x25"
5794                           "\xac\x61\x9d\x18\xc8\x4a\x3f\x47"
5795                           "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9"
5796                           "\xcc\xda\x27\x10\xac\xad\xe2\x56"
5797                           "\x99\x24\xa7\xc8\x58\x73\x36\xbf"
5798                           "\xb1\x18\x02\x4d\xb8\x67\x4a\x14",
5799                 .ilen   = 80,
5800                 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5801                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5802                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5803                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5804                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5805                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5806                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5807                           "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5808                 .rlen   = 64,
5809         }, {
5810                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5811                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5812                           "\xfe\xff\xe9\x92\x86\x65\x73\x1c",
5813                 .klen   = 24,
5814                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5815                           "\xde\xca\xf8\x88",
5816                 .input  = "\x39\x80\xca\x0b\x3c\x00\xe8\x41"
5817                           "\xeb\x06\xfa\xc4\x87\x2a\x27\x57"
5818                           "\x85\x9e\x1c\xea\xa6\xef\xd9\x84"
5819                           "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c"
5820                           "\x7d\x77\x3d\x00\xc1\x44\xc5\x25"
5821                           "\xac\x61\x9d\x18\xc8\x4a\x3f\x47"
5822                           "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9"
5823                           "\xcc\xda\x27\x10"
5824                           "\x25\x19\x49\x8e\x80\xf1\x47\x8f"
5825                           "\x37\xba\x55\xbd\x6d\x27\x61\x8c",
5826                 .ilen   = 76,
5827                 .assoc  = "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5828                           "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5829                           "\xab\xad\xda\xd2",
5830                 .alen   = 20,
5831                 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5832                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5833                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5834                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5835                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5836                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5837                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5838                           "\xba\x63\x7b\x39",
5839                 .rlen   = 60,
5840         }
5841 };
5842
5843 static struct aead_testvec aes_gcm_rfc4106_enc_tv_template[] = {
5844         { /* Generated using Crypto++ */
5845                 .key    = zeroed_string,
5846                 .klen   = 20,
5847                 .iv     = zeroed_string,
5848                 .input  = zeroed_string,
5849                 .ilen   = 16,
5850                 .assoc  = zeroed_string,
5851                 .alen   = 8,
5852                 .result = "\x03\x88\xDA\xCE\x60\xB6\xA3\x92"
5853                           "\xF3\x28\xC2\xB9\x71\xB2\xFE\x78"
5854                           "\x97\xFE\x4C\x23\x37\x42\x01\xE0"
5855                           "\x81\x9F\x8D\xC5\xD7\x41\xA0\x1B",
5856                 .rlen   = 32,
5857         },{
5858                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5859                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5860                           "\x00\x00\x00\x00",
5861                 .klen   = 20,
5862                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x01"
5863                           "\x00\x00\x00\x00",
5864                 .input  = zeroed_string,
5865                 .ilen   = 16,
5866                 .assoc  = zeroed_string,
5867                 .alen   = 8,
5868                 .result = "\xC0\x0D\x8B\x42\x0F\x8F\x34\x18"
5869                           "\x88\xB1\xC5\xBC\xC5\xB6\xD6\x28"
5870                           "\x6A\x9D\xDF\x11\x5E\xFE\x5E\x9D"
5871                           "\x2F\x70\x44\x92\xF7\xF2\xE3\xEF",
5872                 .rlen   = 32,
5873
5874         }, {
5875                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5876                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5877                           "\x00\x00\x00\x00",
5878                 .klen   = 20,
5879                 .iv     = zeroed_string,
5880                 .input  = "\x01\x01\x01\x01\x01\x01\x01\x01"
5881                           "\x01\x01\x01\x01\x01\x01\x01\x01",
5882                 .ilen   = 16,
5883                 .assoc  = zeroed_string,
5884                 .alen   = 8,
5885                 .result = "\x4B\xB1\xB5\xE3\x25\x71\x70\xDE"
5886                           "\x7F\xC9\x9C\xA5\x14\x19\xF2\xAC"
5887                           "\x0B\x8F\x88\x69\x17\xE6\xB4\x3C"
5888                           "\xB1\x68\xFD\x14\x52\x64\x61\xB2",
5889                 .rlen   = 32,
5890         }, {
5891                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5892                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5893                           "\x00\x00\x00\x00",
5894                 .klen   = 20,
5895                 .iv     = zeroed_string,
5896                 .input  = "\x01\x01\x01\x01\x01\x01\x01\x01"
5897                           "\x01\x01\x01\x01\x01\x01\x01\x01",
5898                 .ilen   = 16,
5899                 .assoc  = "\x01\x01\x01\x01\x01\x01\x01\x01",
5900                 .alen   = 8,
5901                 .result = "\x4B\xB1\xB5\xE3\x25\x71\x70\xDE"
5902                           "\x7F\xC9\x9C\xA5\x14\x19\xF2\xAC"
5903                           "\x90\x92\xB7\xE3\x5F\xA3\x9A\x63"
5904                           "\x7E\xD7\x1F\xD8\xD3\x7C\x4B\xF5",
5905                 .rlen   = 32,
5906         }, {
5907                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5908                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5909                           "\x00\x00\x00\x00",
5910                 .klen   = 20,
5911                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x01"
5912                           "\x00\x00\x00\x00",
5913                 .input  = "\x01\x01\x01\x01\x01\x01\x01\x01"
5914                           "\x01\x01\x01\x01\x01\x01\x01\x01",
5915                 .ilen   = 16,
5916                 .assoc  = "\x01\x01\x01\x01\x01\x01\x01\x01",
5917                 .alen   = 8,
5918                 .result = "\xC1\x0C\x8A\x43\x0E\x8E\x35\x19"
5919                           "\x89\xB0\xC4\xBD\xC4\xB7\xD7\x29"
5920                           "\x64\x50\xF9\x32\x13\xFB\x74\x61"
5921                           "\xF4\xED\x52\xD3\xC5\x10\x55\x3C",
5922                 .rlen   = 32,
5923         }, {
5924                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5925                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5926                           "\x00\x00\x00\x00",
5927                 .klen   = 20,
5928                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x01"
5929                           "\x00\x00\x00\x00",
5930                 .input  = "\x01\x01\x01\x01\x01\x01\x01\x01"
5931                           "\x01\x01\x01\x01\x01\x01\x01\x01"
5932                           "\x01\x01\x01\x01\x01\x01\x01\x01"
5933                           "\x01\x01\x01\x01\x01\x01\x01\x01"
5934                           "\x01\x01\x01\x01\x01\x01\x01\x01"
5935                           "\x01\x01\x01\x01\x01\x01\x01\x01"
5936                           "\x01\x01\x01\x01\x01\x01\x01\x01"
5937                           "\x01\x01\x01\x01\x01\x01\x01\x01",
5938                 .ilen   = 64,
5939                 .assoc  = "\x01\x01\x01\x01\x01\x01\x01\x01",
5940                 .alen   = 8,
5941                 .result = "\xC1\x0C\x8A\x43\x0E\x8E\x35\x19"
5942                           "\x89\xB0\xC4\xBD\xC4\xB7\xD7\x29"
5943                           "\x98\x14\xA1\x42\x37\x80\xFD\x90"
5944                           "\x68\x12\x01\xA8\x91\x89\xB9\x83"
5945                           "\x5B\x11\x77\x12\x9B\xFF\x24\x89"
5946                           "\x94\x5F\x18\x12\xBA\x27\x09\x39"
5947                           "\x99\x96\x76\x42\x15\x1C\xCD\xCB"
5948                           "\xDC\xD3\xDA\x65\x73\xAF\x80\xCD"
5949                           "\xD2\xB6\xC2\x4A\x76\xC2\x92\x85"
5950                           "\xBD\xCF\x62\x98\x58\x14\xE5\xBD",
5951                 .rlen   = 80,
5952         }, {
5953                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
5954                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5955                           "\x00\x00\x00\x00",
5956                 .klen   = 20,
5957                 .iv     = "\x00\x00\x45\x67\x89\xab\xcd\xef"
5958                           "\x00\x00\x00\x00",
5959                 .input  = "\xff\xff\xff\xff\xff\xff\xff\xff"
5960                           "\xff\xff\xff\xff\xff\xff\xff\xff"
5961                           "\xff\xff\xff\xff\xff\xff\xff\xff"
5962                           "\xff\xff\xff\xff\xff\xff\xff\xff"
5963                           "\xff\xff\xff\xff\xff\xff\xff\xff"
5964                           "\xff\xff\xff\xff\xff\xff\xff\xff"
5965                           "\xff\xff\xff\xff\xff\xff\xff\xff"
5966                           "\xff\xff\xff\xff\xff\xff\xff\xff"
5967                           "\xff\xff\xff\xff\xff\xff\xff\xff"
5968                           "\xff\xff\xff\xff\xff\xff\xff\xff"
5969                           "\xff\xff\xff\xff\xff\xff\xff\xff"
5970                           "\xff\xff\xff\xff\xff\xff\xff\xff"
5971                           "\xff\xff\xff\xff\xff\xff\xff\xff"
5972                           "\xff\xff\xff\xff\xff\xff\xff\xff"
5973                           "\xff\xff\xff\xff\xff\xff\xff\xff"
5974                           "\xff\xff\xff\xff\xff\xff\xff\xff"
5975                           "\xff\xff\xff\xff\xff\xff\xff\xff"
5976                           "\xff\xff\xff\xff\xff\xff\xff\xff"
5977                           "\xff\xff\xff\xff\xff\xff\xff\xff"
5978                           "\xff\xff\xff\xff\xff\xff\xff\xff"
5979                           "\xff\xff\xff\xff\xff\xff\xff\xff"
5980                           "\xff\xff\xff\xff\xff\xff\xff\xff"
5981                           "\xff\xff\xff\xff\xff\xff\xff\xff"
5982                           "\xff\xff\xff\xff\xff\xff\xff\xff",
5983                 .ilen   = 192,
5984                 .assoc  = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
5985                           "\xaa\xaa\xaa\xaa",
5986                 .alen   = 12,
5987                 .result = "\xC1\x76\x33\x85\xE2\x9B\x5F\xDE"
5988                           "\xDE\x89\x3D\x42\xE7\xC9\x69\x8A"
5989                           "\x44\x6D\xC3\x88\x46\x2E\xC2\x01"
5990                           "\x5E\xF6\x0C\x39\xF0\xC4\xA5\x82"
5991                           "\xCD\xE8\x31\xCC\x0A\x4C\xE4\x44"
5992                           "\x41\xA9\x82\x6F\x22\xA1\x23\x1A"
5993                           "\xA8\xE3\x16\xFD\x31\x5C\x27\x31"
5994                           "\xF1\x7F\x01\x63\xA3\xAF\x70\xA1"
5995                           "\xCF\x07\x57\x41\x67\xD0\xC4\x42"
5996                           "\xDB\x18\xC6\x4C\x4C\xE0\x3D\x9F"
5997                           "\x05\x07\xFB\x13\x7D\x4A\xCA\x5B"
5998                           "\xF0\xBF\x64\x7E\x05\xB1\x72\xEE"
5999                           "\x7C\x3B\xD4\xCD\x14\x03\xB2\x2C"
6000                           "\xD3\xA9\xEE\xFA\x17\xFC\x9C\xDF"
6001                           "\xC7\x75\x40\xFF\xAE\xAD\x1E\x59"
6002                           "\x2F\x30\x24\xFB\xAD\x6B\x10\xFA"
6003                           "\x6C\x9F\x5B\xE7\x25\xD5\xD0\x25"
6004                           "\xAC\x4A\x4B\xDA\xFC\x7A\x85\x1B"
6005                           "\x7E\x13\x06\x82\x08\x17\xA4\x35"
6006                           "\xEC\xC5\x8D\x63\x96\x81\x0A\x8F"
6007                           "\xA3\x05\x38\x95\x20\x1A\x47\x04"
6008                           "\x6F\x6D\xDA\x8F\xEF\xC1\x76\x35"
6009                           "\x6B\xC7\x4D\x0F\x94\x12\xCA\x3E"
6010                           "\x2E\xD5\x03\x2E\x86\x7E\xAA\x3B"
6011                           "\x37\x08\x1C\xCF\xBA\x5D\x71\x46"
6012                           "\x80\x72\xB0\x4C\x82\x0D\x60\x3C",
6013                 .rlen   = 208,
6014         }
6015 };
6016
6017 static struct aead_testvec aes_gcm_rfc4106_dec_tv_template[] = {
6018         { /* Generated using Crypto++ */
6019                 .key    = zeroed_string,
6020                 .klen   = 20,
6021                 .iv     = zeroed_string,
6022                 .input  = "\x03\x88\xDA\xCE\x60\xB6\xA3\x92"
6023                           "\xF3\x28\xC2\xB9\x71\xB2\xFE\x78"
6024                           "\x97\xFE\x4C\x23\x37\x42\x01\xE0"
6025                           "\x81\x9F\x8D\xC5\xD7\x41\xA0\x1B",
6026                 .ilen   = 32,
6027                 .assoc  = zeroed_string,
6028                 .alen   = 8,
6029                 .result = zeroed_string,
6030                 .rlen   = 16,
6031
6032         },{
6033                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
6034                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
6035                           "\x00\x00\x00\x00",
6036                 .klen   = 20,
6037                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x01"
6038                           "\x00\x00\x00\x00",
6039                 .input  = "\xC0\x0D\x8B\x42\x0F\x8F\x34\x18"
6040                           "\x88\xB1\xC5\xBC\xC5\xB6\xD6\x28"
6041                           "\x6A\x9D\xDF\x11\x5E\xFE\x5E\x9D"
6042                           "\x2F\x70\x44\x92\xF7\xF2\xE3\xEF",
6043                 .ilen   = 32,
6044                 .assoc  = zeroed_string,
6045                 .alen   = 8,
6046                 .result = zeroed_string,
6047                 .rlen   = 16,
6048         }, {
6049                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
6050                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
6051                           "\x00\x00\x00\x00",
6052                 .klen   = 20,
6053                 .iv     = zeroed_string,
6054                 .input  = "\x4B\xB1\xB5\xE3\x25\x71\x70\xDE"
6055                           "\x7F\xC9\x9C\xA5\x14\x19\xF2\xAC"
6056                           "\x0B\x8F\x88\x69\x17\xE6\xB4\x3C"
6057                           "\xB1\x68\xFD\x14\x52\x64\x61\xB2",
6058                 .ilen   = 32,
6059                 .assoc  = zeroed_string,
6060                 .alen   = 8,
6061                 .result = "\x01\x01\x01\x01\x01\x01\x01\x01"
6062                           "\x01\x01\x01\x01\x01\x01\x01\x01",
6063                 .rlen   = 16,
6064         }, {
6065                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
6066                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
6067                           "\x00\x00\x00\x00",
6068                 .klen   = 20,
6069                 .iv     = zeroed_string,
6070                 .input  = "\x4B\xB1\xB5\xE3\x25\x71\x70\xDE"
6071                           "\x7F\xC9\x9C\xA5\x14\x19\xF2\xAC"
6072                           "\x90\x92\xB7\xE3\x5F\xA3\x9A\x63"
6073                           "\x7E\xD7\x1F\xD8\xD3\x7C\x4B\xF5",
6074                 .ilen   = 32,
6075                 .assoc  = "\x01\x01\x01\x01\x01\x01\x01\x01",
6076                 .alen   = 8,
6077                 .result = "\x01\x01\x01\x01\x01\x01\x01\x01"
6078                           "\x01\x01\x01\x01\x01\x01\x01\x01",
6079                 .rlen   = 16,
6080
6081         }, {
6082                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
6083                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
6084                           "\x00\x00\x00\x00",
6085                 .klen   = 20,
6086                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x01"
6087                           "\x00\x00\x00\x00",
6088                 .input  = "\xC1\x0C\x8A\x43\x0E\x8E\x35\x19"
6089                           "\x89\xB0\xC4\xBD\xC4\xB7\xD7\x29"
6090                           "\x64\x50\xF9\x32\x13\xFB\x74\x61"
6091                           "\xF4\xED\x52\xD3\xC5\x10\x55\x3C",
6092                 .ilen   = 32,
6093                 .assoc  = "\x01\x01\x01\x01\x01\x01\x01\x01",
6094                 .alen   = 8,
6095                 .result = "\x01\x01\x01\x01\x01\x01\x01\x01"
6096                           "\x01\x01\x01\x01\x01\x01\x01\x01",
6097                 .rlen   = 16,
6098         }, {
6099                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
6100                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
6101                           "\x00\x00\x00\x00",
6102                 .klen   = 20,
6103                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x01"
6104                           "\x00\x00\x00\x00",
6105                 .input  = "\xC1\x0C\x8A\x43\x0E\x8E\x35\x19"
6106                           "\x89\xB0\xC4\xBD\xC4\xB7\xD7\x29"
6107                           "\x98\x14\xA1\x42\x37\x80\xFD\x90"
6108                           "\x68\x12\x01\xA8\x91\x89\xB9\x83"
6109                           "\x5B\x11\x77\x12\x9B\xFF\x24\x89"
6110                           "\x94\x5F\x18\x12\xBA\x27\x09\x39"
6111                           "\x99\x96\x76\x42\x15\x1C\xCD\xCB"
6112                           "\xDC\xD3\xDA\x65\x73\xAF\x80\xCD"
6113                           "\xD2\xB6\xC2\x4A\x76\xC2\x92\x85"
6114                           "\xBD\xCF\x62\x98\x58\x14\xE5\xBD",
6115                 .ilen   = 80,
6116                 .assoc  = "\x01\x01\x01\x01\x01\x01\x01\x01",
6117                 .alen   = 8,
6118                 .result = "\x01\x01\x01\x01\x01\x01\x01\x01"
6119                           "\x01\x01\x01\x01\x01\x01\x01\x01"
6120                           "\x01\x01\x01\x01\x01\x01\x01\x01"
6121                           "\x01\x01\x01\x01\x01\x01\x01\x01"
6122                           "\x01\x01\x01\x01\x01\x01\x01\x01"
6123                           "\x01\x01\x01\x01\x01\x01\x01\x01"
6124                           "\x01\x01\x01\x01\x01\x01\x01\x01"
6125                           "\x01\x01\x01\x01\x01\x01\x01\x01",
6126                 .rlen   = 64,
6127         }, {
6128                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
6129                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
6130                           "\x00\x00\x00\x00",
6131                 .klen   = 20,
6132                 .iv     = "\x00\x00\x45\x67\x89\xab\xcd\xef"
6133                           "\x00\x00\x00\x00",
6134                 .input  = "\xC1\x76\x33\x85\xE2\x9B\x5F\xDE"
6135                           "\xDE\x89\x3D\x42\xE7\xC9\x69\x8A"
6136                           "\x44\x6D\xC3\x88\x46\x2E\xC2\x01"
6137                           "\x5E\xF6\x0C\x39\xF0\xC4\xA5\x82"
6138                           "\xCD\xE8\x31\xCC\x0A\x4C\xE4\x44"
6139                           "\x41\xA9\x82\x6F\x22\xA1\x23\x1A"
6140                           "\xA8\xE3\x16\xFD\x31\x5C\x27\x31"
6141                           "\xF1\x7F\x01\x63\xA3\xAF\x70\xA1"
6142                           "\xCF\x07\x57\x41\x67\xD0\xC4\x42"
6143                           "\xDB\x18\xC6\x4C\x4C\xE0\x3D\x9F"
6144                           "\x05\x07\xFB\x13\x7D\x4A\xCA\x5B"
6145                           "\xF0\xBF\x64\x7E\x05\xB1\x72\xEE"
6146                           "\x7C\x3B\xD4\xCD\x14\x03\xB2\x2C"
6147                           "\xD3\xA9\xEE\xFA\x17\xFC\x9C\xDF"
6148                           "\xC7\x75\x40\xFF\xAE\xAD\x1E\x59"
6149                           "\x2F\x30\x24\xFB\xAD\x6B\x10\xFA"
6150                           "\x6C\x9F\x5B\xE7\x25\xD5\xD0\x25"
6151                           "\xAC\x4A\x4B\xDA\xFC\x7A\x85\x1B"
6152                           "\x7E\x13\x06\x82\x08\x17\xA4\x35"
6153                           "\xEC\xC5\x8D\x63\x96\x81\x0A\x8F"
6154                           "\xA3\x05\x38\x95\x20\x1A\x47\x04"
6155                           "\x6F\x6D\xDA\x8F\xEF\xC1\x76\x35"
6156                           "\x6B\xC7\x4D\x0F\x94\x12\xCA\x3E"
6157                           "\x2E\xD5\x03\x2E\x86\x7E\xAA\x3B"
6158                           "\x37\x08\x1C\xCF\xBA\x5D\x71\x46"
6159                           "\x80\x72\xB0\x4C\x82\x0D\x60\x3C",
6160                 .ilen   = 208,
6161                 .assoc  = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
6162                           "\xaa\xaa\xaa\xaa",
6163                 .alen   = 12,
6164                 .result = "\xff\xff\xff\xff\xff\xff\xff\xff"
6165                           "\xff\xff\xff\xff\xff\xff\xff\xff"
6166                           "\xff\xff\xff\xff\xff\xff\xff\xff"
6167                           "\xff\xff\xff\xff\xff\xff\xff\xff"
6168                           "\xff\xff\xff\xff\xff\xff\xff\xff"
6169                           "\xff\xff\xff\xff\xff\xff\xff\xff"
6170                           "\xff\xff\xff\xff\xff\xff\xff\xff"
6171                           "\xff\xff\xff\xff\xff\xff\xff\xff"
6172                           "\xff\xff\xff\xff\xff\xff\xff\xff"
6173                           "\xff\xff\xff\xff\xff\xff\xff\xff"
6174                           "\xff\xff\xff\xff\xff\xff\xff\xff"
6175                           "\xff\xff\xff\xff\xff\xff\xff\xff"
6176                           "\xff\xff\xff\xff\xff\xff\xff\xff"
6177                           "\xff\xff\xff\xff\xff\xff\xff\xff"
6178                           "\xff\xff\xff\xff\xff\xff\xff\xff"
6179                           "\xff\xff\xff\xff\xff\xff\xff\xff"
6180                           "\xff\xff\xff\xff\xff\xff\xff\xff"
6181                           "\xff\xff\xff\xff\xff\xff\xff\xff"
6182                           "\xff\xff\xff\xff\xff\xff\xff\xff"
6183                           "\xff\xff\xff\xff\xff\xff\xff\xff"
6184                           "\xff\xff\xff\xff\xff\xff\xff\xff"
6185                           "\xff\xff\xff\xff\xff\xff\xff\xff"
6186                           "\xff\xff\xff\xff\xff\xff\xff\xff"
6187                           "\xff\xff\xff\xff\xff\xff\xff\xff",
6188                 .rlen   = 192,
6189
6190         }
6191 };
6192
6193 static struct aead_testvec aes_ccm_enc_tv_template[] = {
6194         { /* From RFC 3610 */
6195                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
6196                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
6197                 .klen   = 16,
6198                 .iv     = "\x01\x00\x00\x00\x03\x02\x01\x00"
6199                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
6200                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07",
6201                 .alen   = 8,
6202                 .input  = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
6203                           "\x10\x11\x12\x13\x14\x15\x16\x17"
6204                           "\x18\x19\x1a\x1b\x1c\x1d\x1e",
6205                 .ilen   = 23,
6206                 .result = "\x58\x8c\x97\x9a\x61\xc6\x63\xd2"
6207                           "\xf0\x66\xd0\xc2\xc0\xf9\x89\x80"
6208                           "\x6d\x5f\x6b\x61\xda\xc3\x84\x17"
6209                           "\xe8\xd1\x2c\xfd\xf9\x26\xe0",
6210                 .rlen   = 31,
6211         }, {
6212                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
6213                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
6214                 .klen   = 16,
6215                 .iv     = "\x01\x00\x00\x00\x07\x06\x05\x04"
6216                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
6217                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07"
6218                           "\x08\x09\x0a\x0b",
6219                 .alen   = 12,
6220                 .input  = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13"
6221                           "\x14\x15\x16\x17\x18\x19\x1a\x1b"
6222                           "\x1c\x1d\x1e\x1f",
6223                 .ilen   = 20,
6224                 .result = "\xdc\xf1\xfb\x7b\x5d\x9e\x23\xfb"
6225                           "\x9d\x4e\x13\x12\x53\x65\x8a\xd8"
6226                           "\x6e\xbd\xca\x3e\x51\xe8\x3f\x07"
6227                           "\x7d\x9c\x2d\x93",
6228                 .rlen   = 28,
6229         }, {
6230                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
6231                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
6232                 .klen   = 16,
6233                 .iv     = "\x01\x00\x00\x00\x0b\x0a\x09\x08"
6234                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
6235                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07",
6236                 .alen   = 8,
6237                 .input  = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
6238                           "\x10\x11\x12\x13\x14\x15\x16\x17"
6239                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
6240                           "\x20",
6241                 .ilen   = 25,
6242                 .result = "\x82\x53\x1a\x60\xcc\x24\x94\x5a"
6243                           "\x4b\x82\x79\x18\x1a\xb5\xc8\x4d"
6244                           "\xf2\x1c\xe7\xf9\xb7\x3f\x42\xe1"
6245                           "\x97\xea\x9c\x07\xe5\x6b\x5e\xb1"
6246                           "\x7e\x5f\x4e",
6247                 .rlen   = 35,
6248         }, {
6249                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
6250                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
6251                 .klen   = 16,
6252                 .iv     = "\x01\x00\x00\x00\x0c\x0b\x0a\x09"
6253                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
6254                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07"
6255                           "\x08\x09\x0a\x0b",
6256                 .alen   = 12,
6257                 .input  = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13"
6258                           "\x14\x15\x16\x17\x18\x19\x1a\x1b"
6259                           "\x1c\x1d\x1e",
6260                 .ilen   = 19,
6261                 .result = "\x07\x34\x25\x94\x15\x77\x85\x15"
6262                           "\x2b\x07\x40\x98\x33\x0a\xbb\x14"
6263                           "\x1b\x94\x7b\x56\x6a\xa9\x40\x6b"
6264                           "\x4d\x99\x99\x88\xdd",
6265                 .rlen   = 29,
6266         }, {
6267                 .key    = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
6268                           "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
6269                 .klen   = 16,
6270                 .iv     = "\x01\x00\x33\x56\x8e\xf7\xb2\x63"
6271                           "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
6272                 .assoc  = "\x63\x01\x8f\x76\xdc\x8a\x1b\xcb",
6273                 .alen   = 8,
6274                 .input  = "\x90\x20\xea\x6f\x91\xbd\xd8\x5a"
6275                           "\xfa\x00\x39\xba\x4b\xaf\xf9\xbf"
6276                           "\xb7\x9c\x70\x28\x94\x9c\xd0\xec",
6277                 .ilen   = 24,
6278                 .result = "\x4c\xcb\x1e\x7c\xa9\x81\xbe\xfa"
6279                           "\xa0\x72\x6c\x55\xd3\x78\x06\x12"
6280                           "\x98\xc8\x5c\x92\x81\x4a\xbc\x33"
6281                           "\xc5\x2e\xe8\x1d\x7d\x77\xc0\x8a",
6282                 .rlen   = 32,
6283         }, {
6284                 .key    = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
6285                           "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
6286                 .klen   = 16,
6287                 .iv     = "\x01\x00\xd5\x60\x91\x2d\x3f\x70"
6288                           "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
6289                 .assoc  = "\xcd\x90\x44\xd2\xb7\x1f\xdb\x81"
6290                           "\x20\xea\x60\xc0",
6291                 .alen   = 12,
6292                 .input  = "\x64\x35\xac\xba\xfb\x11\xa8\x2e"
6293                           "\x2f\x07\x1d\x7c\xa4\xa5\xeb\xd9"
6294                           "\x3a\x80\x3b\xa8\x7f",
6295                 .ilen   = 21,
6296                 .result = "\x00\x97\x69\xec\xab\xdf\x48\x62"
6297                           "\x55\x94\xc5\x92\x51\xe6\x03\x57"
6298                           "\x22\x67\x5e\x04\xc8\x47\x09\x9e"
6299                           "\x5a\xe0\x70\x45\x51",
6300                 .rlen   = 29,
6301         }, {
6302                 .key    = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
6303                           "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
6304                 .klen   = 16,
6305                 .iv     = "\x01\x00\x42\xff\xf8\xf1\x95\x1c"
6306                           "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
6307                 .assoc  = "\xd8\x5b\xc7\xe6\x9f\x94\x4f\xb8",
6308                 .alen   = 8,
6309                 .input  = "\x8a\x19\xb9\x50\xbc\xf7\x1a\x01"
6310                           "\x8e\x5e\x67\x01\xc9\x17\x87\x65"
6311                           "\x98\x09\xd6\x7d\xbe\xdd\x18",
6312                 .ilen   = 23,
6313                 .result = "\xbc\x21\x8d\xaa\x94\x74\x27\xb6"
6314                           "\xdb\x38\x6a\x99\xac\x1a\xef\x23"
6315                           "\xad\xe0\xb5\x29\x39\xcb\x6a\x63"
6316                           "\x7c\xf9\xbe\xc2\x40\x88\x97\xc6"
6317                           "\xba",
6318                 .rlen   = 33,
6319         },
6320 };
6321
6322 static struct aead_testvec aes_ccm_dec_tv_template[] = {
6323         { /* From RFC 3610 */
6324                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
6325                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
6326                 .klen   = 16,
6327                 .iv     = "\x01\x00\x00\x00\x03\x02\x01\x00"
6328                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
6329                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07",
6330                 .alen   = 8,
6331                 .input  = "\x58\x8c\x97\x9a\x61\xc6\x63\xd2"
6332                           "\xf0\x66\xd0\xc2\xc0\xf9\x89\x80"
6333                           "\x6d\x5f\x6b\x61\xda\xc3\x84\x17"
6334                           "\xe8\xd1\x2c\xfd\xf9\x26\xe0",
6335                 .ilen   = 31,
6336                 .result = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
6337                           "\x10\x11\x12\x13\x14\x15\x16\x17"
6338                           "\x18\x19\x1a\x1b\x1c\x1d\x1e",
6339                 .rlen   = 23,
6340         }, {
6341                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
6342                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
6343                 .klen   = 16,
6344                 .iv     = "\x01\x00\x00\x00\x07\x06\x05\x04"
6345                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
6346                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07"
6347                           "\x08\x09\x0a\x0b",
6348                 .alen   = 12,
6349                 .input  = "\xdc\xf1\xfb\x7b\x5d\x9e\x23\xfb"
6350                           "\x9d\x4e\x13\x12\x53\x65\x8a\xd8"
6351                           "\x6e\xbd\xca\x3e\x51\xe8\x3f\x07"
6352                           "\x7d\x9c\x2d\x93",
6353                 .ilen   = 28,
6354                 .result = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13"
6355                           "\x14\x15\x16\x17\x18\x19\x1a\x1b"
6356                           "\x1c\x1d\x1e\x1f",
6357                 .rlen   = 20,
6358         }, {
6359                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
6360                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
6361                 .klen   = 16,
6362                 .iv     = "\x01\x00\x00\x00\x0b\x0a\x09\x08"
6363                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
6364                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07",
6365                 .alen   = 8,
6366                 .input  = "\x82\x53\x1a\x60\xcc\x24\x94\x5a"
6367                           "\x4b\x82\x79\x18\x1a\xb5\xc8\x4d"
6368                           "\xf2\x1c\xe7\xf9\xb7\x3f\x42\xe1"
6369                           "\x97\xea\x9c\x07\xe5\x6b\x5e\xb1"
6370                           "\x7e\x5f\x4e",
6371                 .ilen   = 35,
6372                 .result = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
6373                           "\x10\x11\x12\x13\x14\x15\x16\x17"
6374                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
6375                           "\x20",
6376                 .rlen   = 25,
6377         }, {
6378                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
6379                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
6380                 .klen   = 16,
6381                 .iv     = "\x01\x00\x00\x00\x0c\x0b\x0a\x09"
6382                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
6383                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07"
6384                           "\x08\x09\x0a\x0b",
6385                 .alen   = 12,
6386                 .input  = "\x07\x34\x25\x94\x15\x77\x85\x15"
6387                           "\x2b\x07\x40\x98\x33\x0a\xbb\x14"
6388                           "\x1b\x94\x7b\x56\x6a\xa9\x40\x6b"
6389                           "\x4d\x99\x99\x88\xdd",
6390                 .ilen   = 29,
6391                 .result = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13"
6392                           "\x14\x15\x16\x17\x18\x19\x1a\x1b"
6393                           "\x1c\x1d\x1e",
6394                 .rlen   = 19,
6395         }, {
6396                 .key    = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
6397                           "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
6398                 .klen   = 16,
6399                 .iv     = "\x01\x00\x33\x56\x8e\xf7\xb2\x63"
6400                           "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
6401                 .assoc  = "\x63\x01\x8f\x76\xdc\x8a\x1b\xcb",
6402                 .alen   = 8,
6403                 .input  = "\x4c\xcb\x1e\x7c\xa9\x81\xbe\xfa"
6404                           "\xa0\x72\x6c\x55\xd3\x78\x06\x12"
6405                           "\x98\xc8\x5c\x92\x81\x4a\xbc\x33"
6406                           "\xc5\x2e\xe8\x1d\x7d\x77\xc0\x8a",
6407                 .ilen   = 32,
6408                 .result = "\x90\x20\xea\x6f\x91\xbd\xd8\x5a"
6409                           "\xfa\x00\x39\xba\x4b\xaf\xf9\xbf"
6410                           "\xb7\x9c\x70\x28\x94\x9c\xd0\xec",
6411                 .rlen   = 24,
6412         }, {
6413                 .key    = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
6414                           "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
6415                 .klen   = 16,
6416                 .iv     = "\x01\x00\xd5\x60\x91\x2d\x3f\x70"
6417                           "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
6418                 .assoc  = "\xcd\x90\x44\xd2\xb7\x1f\xdb\x81"
6419                           "\x20\xea\x60\xc0",
6420                 .alen   = 12,
6421                 .input  = "\x00\x97\x69\xec\xab\xdf\x48\x62"
6422                           "\x55\x94\xc5\x92\x51\xe6\x03\x57"
6423                           "\x22\x67\x5e\x04\xc8\x47\x09\x9e"
6424                           "\x5a\xe0\x70\x45\x51",
6425                 .ilen   = 29,
6426                 .result = "\x64\x35\xac\xba\xfb\x11\xa8\x2e"
6427                           "\x2f\x07\x1d\x7c\xa4\xa5\xeb\xd9"
6428                           "\x3a\x80\x3b\xa8\x7f",
6429                 .rlen   = 21,
6430         }, {
6431                 .key    = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
6432                           "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
6433                 .klen   = 16,
6434                 .iv     = "\x01\x00\x42\xff\xf8\xf1\x95\x1c"
6435                           "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
6436                 .assoc  = "\xd8\x5b\xc7\xe6\x9f\x94\x4f\xb8",
6437                 .alen   = 8,
6438                 .input  = "\xbc\x21\x8d\xaa\x94\x74\x27\xb6"
6439                           "\xdb\x38\x6a\x99\xac\x1a\xef\x23"
6440                           "\xad\xe0\xb5\x29\x39\xcb\x6a\x63"
6441                           "\x7c\xf9\xbe\xc2\x40\x88\x97\xc6"
6442                           "\xba",
6443                 .ilen   = 33,
6444                 .result = "\x8a\x19\xb9\x50\xbc\xf7\x1a\x01"
6445                           "\x8e\x5e\x67\x01\xc9\x17\x87\x65"
6446                           "\x98\x09\xd6\x7d\xbe\xdd\x18",
6447                 .rlen   = 23,
6448         },
6449 };
6450
6451 /*
6452  * rfc4309 refers to section 8 of rfc3610 for test vectors, but they all
6453  * use a 13-byte nonce, we only support an 11-byte nonce. Similarly, all of
6454  * Special Publication 800-38C's test vectors also use nonce lengths our
6455  * implementation doesn't support. The following are taken from fips cavs
6456  * fax files on hand at Red Hat.
6457  *
6458  * nb: actual key lengths are (klen - 3), the last 3 bytes are actually
6459  * part of the nonce which combine w/the iv, but need to be input this way.
6460  */
6461 static struct aead_testvec aes_ccm_rfc4309_enc_tv_template[] = {
6462         {
6463                 .key    = "\x83\xac\x54\x66\xc2\xeb\xe5\x05"
6464                           "\x2e\x01\xd1\xfc\x5d\x82\x66\x2e"
6465                           "\x96\xac\x59",
6466                 .klen   = 19,
6467                 .iv     = "\x30\x07\xa1\xe2\xa2\xc7\x55\x24",
6468                 .alen   = 0,
6469                 .input  = "\x19\xc8\x81\xf6\xe9\x86\xff\x93"
6470                           "\x0b\x78\x67\xe5\xbb\xb7\xfc\x6e"
6471                           "\x83\x77\xb3\xa6\x0c\x8c\x9f\x9c"
6472                           "\x35\x2e\xad\xe0\x62\xf9\x91\xa1",
6473                 .ilen   = 32,
6474                 .result = "\xab\x6f\xe1\x69\x1d\x19\x99\xa8"
6475                           "\x92\xa0\xc4\x6f\x7e\xe2\x8b\xb1"
6476                           "\x70\xbb\x8c\xa6\x4c\x6e\x97\x8a"
6477                           "\x57\x2b\xbe\x5d\x98\xa6\xb1\x32"
6478                           "\xda\x24\xea\xd9\xa1\x39\x98\xfd"
6479                           "\xa4\xbe\xd9\xf2\x1a\x6d\x22\xa8",
6480                 .rlen   = 48,
6481         }, {
6482                 .key    = "\x1e\x2c\x7e\x01\x41\x9a\xef\xc0"
6483                           "\x0d\x58\x96\x6e\x5c\xa2\x4b\xd3"
6484                           "\x4f\xa3\x19",
6485                 .klen   = 19,
6486                 .iv     = "\xd3\x01\x5a\xd8\x30\x60\x15\x56",
6487                 .assoc  = "\xda\xe6\x28\x9c\x45\x2d\xfd\x63"
6488                           "\x5e\xda\x4c\xb6\xe6\xfc\xf9\xb7"
6489                           "\x0c\x56\xcb\xe4\xe0\x05\x7a\xe1"
6490                           "\x0a\x63\x09\x78\xbc\x2c\x55\xde",
6491                 .alen   = 32,
6492                 .input  = "\x87\xa3\x36\xfd\x96\xb3\x93\x78"
6493                           "\xa9\x28\x63\xba\x12\xa3\x14\x85"
6494                           "\x57\x1e\x06\xc9\x7b\x21\xef\x76"
6495                           "\x7f\x38\x7e\x8e\x29\xa4\x3e\x7e",
6496                 .ilen   = 32,
6497                 .result = "\x8a\x1e\x11\xf0\x02\x6b\xe2\x19"
6498                           "\xfc\x70\xc4\x6d\x8e\xb7\x99\xab"
6499                           "\xc5\x4b\xa2\xac\xd3\xf3\x48\xff"
6500                           "\x3b\xb5\xce\x53\xef\xde\xbb\x02"
6501                           "\xa9\x86\x15\x6c\x13\xfe\xda\x0a"
6502                           "\x22\xb8\x29\x3d\xd8\x39\x9a\x23",
6503                 .rlen   = 48,
6504         }, {
6505                 .key    = "\xf4\x6b\xc2\x75\x62\xfe\xb4\xe1"
6506                           "\xa3\xf0\xff\xdd\x4e\x4b\x12\x75"
6507                           "\x53\x14\x73\x66\x8d\x88\xf6\x80"
6508                           "\xa0\x20\x35",
6509                 .klen   = 27,
6510                 .iv     = "\x26\xf2\x21\x8d\x50\x20\xda\xe2",
6511                 .assoc  = "\x5b\x9e\x13\x67\x02\x5e\xef\xc1"
6512                           "\x6c\xf9\xd7\x1e\x52\x8f\x7a\x47"
6513                           "\xe9\xd4\xcf\x20\x14\x6e\xf0\x2d"
6514                           "\xd8\x9e\x2b\x56\x10\x23\x56\xe7",
6515                 .alen   = 32,
6516                 .ilen   = 0,
6517                 .result = "\x36\xea\x7a\x70\x08\xdc\x6a\xbc"
6518                           "\xad\x0c\x7a\x63\xf6\x61\xfd\x9b",
6519                 .rlen   = 16,
6520         }, {
6521                 .key    = "\x56\xdf\x5c\x8f\x26\x3f\x0e\x42"
6522                           "\xef\x7a\xd3\xce\xfc\x84\x60\x62"
6523                           "\xca\xb4\x40\xaf\x5f\xc9\xc9\x01"
6524                           "\xd6\x3c\x8c",
6525                 .klen   = 27,
6526                 .iv     = "\x86\x84\xb6\xcd\xef\x09\x2e\x94",
6527                 .assoc  = "\x02\x65\x78\x3c\xe9\x21\x30\x91"
6528                           "\xb1\xb9\xda\x76\x9a\x78\x6d\x95"
6529                           "\xf2\x88\x32\xa3\xf2\x50\xcb\x4c"
6530                           "\xe3\x00\x73\x69\x84\x69\x87\x79",
6531                 .alen   = 32,
6532                 .input  = "\x9f\xd2\x02\x4b\x52\x49\x31\x3c"
6533                           "\x43\x69\x3a\x2d\x8e\x70\xad\x7e"
6534                           "\xe0\xe5\x46\x09\x80\x89\x13\xb2"
6535                           "\x8c\x8b\xd9\x3f\x86\xfb\xb5\x6b",
6536                 .ilen   = 32,
6537                 .result = "\x39\xdf\x7c\x3c\x5a\x29\xb9\x62"
6538                           "\x5d\x51\xc2\x16\xd8\xbd\x06\x9f"
6539                           "\x9b\x6a\x09\x70\xc1\x51\x83\xc2"
6540                           "\x66\x88\x1d\x4f\x9a\xda\xe0\x1e"
6541                           "\xc7\x79\x11\x58\xe5\x6b\x20\x40"
6542                           "\x7a\xea\x46\x42\x8b\xe4\x6f\xe1",
6543                 .rlen   = 48,
6544         }, {
6545                 .key    = "\xe0\x8d\x99\x71\x60\xd7\x97\x1a"
6546                           "\xbd\x01\x99\xd5\x8a\xdf\x71\x3a"
6547                           "\xd3\xdf\x24\x4b\x5e\x3d\x4b\x4e"
6548                           "\x30\x7a\xb9\xd8\x53\x0a\x5e\x2b"
6549                           "\x1e\x29\x91",
6550                 .klen   = 35,
6551                 .iv     = "\xad\x8e\xc1\x53\x0a\xcf\x2d\xbe",
6552                 .assoc  = "\x19\xb6\x1f\x57\xc4\xf3\xf0\x8b"
6553                           "\x78\x2b\x94\x02\x29\x0f\x42\x27"
6554                           "\x6b\x75\xcb\x98\x34\x08\x7e\x79"
6555                           "\xe4\x3e\x49\x0d\x84\x8b\x22\x87",
6556                 .alen   = 32,
6557                 .input  = "\xe1\xd9\xd8\x13\xeb\x3a\x75\x3f"
6558                           "\x9d\xbd\x5f\x66\xbe\xdc\xbb\x66"
6559                           "\xbf\x17\x99\x62\x4a\x39\x27\x1f"
6560                           "\x1d\xdc\x24\xae\x19\x2f\x98\x4c",
6561                 .ilen   = 32,
6562                 .result = "\x19\xb8\x61\x33\x45\x2b\x43\x96"
6563                           "\x6f\x51\xd0\x20\x30\x7d\x9b\xc6"
6564                           "\x26\x3d\xf8\xc9\x65\x16\xa8\x9f"
6565                           "\xf0\x62\x17\x34\xf2\x1e\x8d\x75"
6566                           "\x4e\x13\xcc\xc0\xc3\x2a\x54\x2d",
6567                 .rlen   = 40,
6568         }, {
6569                 .key    = "\x7c\xc8\x18\x3b\x8d\x99\xe0\x7c"
6570                           "\x45\x41\xb8\xbd\x5c\xa7\xc2\x32"
6571                           "\x8a\xb8\x02\x59\xa4\xfe\xa9\x2c"
6572                           "\x09\x75\x9a\x9b\x3c\x9b\x27\x39"
6573                           "\xf9\xd9\x4e",
6574                 .klen   = 35,
6575                 .iv     = "\x63\xb5\x3d\x9d\x43\xf6\x1e\x50",
6576                 .assoc  = "\x57\xf5\x6b\x8b\x57\x5c\x3d\x3b"
6577                           "\x13\x02\x01\x0c\x83\x4c\x96\x35"
6578                           "\x8e\xd6\x39\xcf\x7d\x14\x9b\x94"
6579                           "\xb0\x39\x36\xe6\x8f\x57\xe0\x13",
6580                 .alen   = 32,
6581                 .input  = "\x3b\x6c\x29\x36\xb6\xef\x07\xa6"
6582                           "\x83\x72\x07\x4f\xcf\xfa\x66\x89"
6583                           "\x5f\xca\xb1\xba\xd5\x8f\x2c\x27"
6584                           "\x30\xdb\x75\x09\x93\xd4\x65\xe4",
6585                 .ilen   = 32,
6586                 .result = "\xb0\x88\x5a\x33\xaa\xe5\xc7\x1d"
6587                           "\x85\x23\xc7\xc6\x2f\xf4\x1e\x3d"
6588                           "\xcc\x63\x44\x25\x07\x78\x4f\x9e"
6589                           "\x96\xb8\x88\xeb\xbc\x48\x1f\x06"
6590                           "\x39\xaf\x39\xac\xd8\x4a\x80\x39"
6591                           "\x7b\x72\x8a\xf7",
6592                 .rlen   = 44,
6593         }, {
6594                 .key    = "\xab\xd0\xe9\x33\x07\x26\xe5\x83"
6595                           "\x8c\x76\x95\xd4\xb6\xdc\xf3\x46"
6596                           "\xf9\x8f\xad\xe3\x02\x13\x83\x77"
6597                           "\x3f\xb0\xf1\xa1\xa1\x22\x0f\x2b"
6598                           "\x24\xa7\x8b",
6599                 .klen   = 35,
6600                 .iv     = "\x07\xcb\xcc\x0e\xe6\x33\xbf\xf5",
6601                 .assoc  = "\xd4\xdb\x30\x1d\x03\xfe\xfd\x5f"
6602                           "\x87\xd4\x8c\xb6\xb6\xf1\x7a\x5d"
6603                           "\xab\x90\x65\x8d\x8e\xca\x4d\x4f"
6604                           "\x16\x0c\x40\x90\x4b\xc7\x36\x73",
6605                 .alen   = 32,
6606                 .input  = "\xf5\xc6\x7d\x48\xc1\xb7\xe6\x92"
6607                           "\x97\x5a\xca\xc4\xa9\x6d\xf9\x3d"
6608                           "\x6c\xde\xbc\xf1\x90\xea\x6a\xb2"
6609                           "\x35\x86\x36\xaf\x5c\xfe\x4b\x3a",
6610                 .ilen   = 32,
6611                 .result = "\x83\x6f\x40\x87\x72\xcf\xc1\x13"
6612                           "\xef\xbb\x80\x21\x04\x6c\x58\x09"
6613                           "\x07\x1b\xfc\xdf\xc0\x3f\x5b\xc7"
6614                           "\xe0\x79\xa8\x6e\x71\x7c\x3f\xcf"
6615                           "\x5c\xda\xb2\x33\xe5\x13\xe2\x0d"
6616                           "\x74\xd1\xef\xb5\x0f\x3a\xb5\xf8",
6617                 .rlen   = 48,
6618         },
6619 };
6620
6621 static struct aead_testvec aes_ccm_rfc4309_dec_tv_template[] = {
6622         {
6623                 .key    = "\xab\x2f\x8a\x74\xb7\x1c\xd2\xb1"
6624                           "\xff\x80\x2e\x48\x7d\x82\xf8\xb9"
6625                           "\xc6\xfb\x7d",
6626                 .klen   = 19,
6627                 .iv     = "\x80\x0d\x13\xab\xd8\xa6\xb2\xd8",
6628                 .alen   = 0,
6629                 .input  = "\xd5\xe8\x93\x9f\xc7\x89\x2e\x2b",
6630                 .ilen   = 8,
6631                 .result = "\x00",
6632                 .rlen   = 0,
6633                 .novrfy = 1,
6634         }, {
6635                 .key    = "\xab\x2f\x8a\x74\xb7\x1c\xd2\xb1"
6636                           "\xff\x80\x2e\x48\x7d\x82\xf8\xb9"
6637                           "\xaf\x94\x87",
6638                 .klen   = 19,
6639                 .iv     = "\x78\x35\x82\x81\x7f\x88\x94\x68",
6640                 .alen   = 0,
6641                 .input  = "\x41\x3c\xb8\x87\x73\xcb\xf3\xf3",
6642                 .ilen   = 8,
6643                 .result = "\x00",
6644                 .rlen   = 0,
6645         }, {
6646                 .key    = "\x61\x0e\x8c\xae\xe3\x23\xb6\x38"
6647                           "\x76\x1c\xf6\x3a\x67\xa3\x9c\xd8"
6648                           "\xc6\xfb\x7d",
6649                 .klen   = 19,
6650                 .iv     = "\x80\x0d\x13\xab\xd8\xa6\xb2\xd8",
6651                 .assoc  = "\xf3\x94\x87\x78\x35\x82\x81\x7f"
6652                           "\x88\x94\x68\xb1\x78\x6b\x2b\xd6"
6653                           "\x04\x1f\x4e\xed\x78\xd5\x33\x66"
6654                           "\xd8\x94\x99\x91\x81\x54\x62\x57",
6655                 .alen   = 32,
6656                 .input  = "\xf0\x7c\x29\x02\xae\x1c\x2f\x55"
6657                           "\xd0\xd1\x3d\x1a\xa3\x6d\xe4\x0a"
6658                           "\x86\xb0\x87\x6b\x62\x33\x8c\x34"
6659                           "\xce\xab\x57\xcc\x79\x0b\xe0\x6f"
6660                           "\x5c\x3e\x48\x1f\x6c\x46\xf7\x51"
6661                           "\x8b\x84\x83\x2a\xc1\x05\xb8\xc5",
6662                 .ilen   = 48,
6663                 .result = "\x50\x82\x3e\x07\xe2\x1e\xb6\xfb"
6664                           "\x33\xe4\x73\xce\xd2\xfb\x95\x79"
6665                           "\xe8\xb4\xb5\x77\x11\x10\x62\x6f"
6666                           "\x6a\x82\xd1\x13\xec\xf5\xd0\x48",
6667                 .rlen   = 32,
6668                 .novrfy = 1,
6669         }, {
6670                 .key    = "\x61\x0e\x8c\xae\xe3\x23\xb6\x38"
6671                           "\x76\x1c\xf6\x3a\x67\xa3\x9c\xd8"
6672                           "\x05\xe0\xc9",
6673                 .klen   = 19,
6674                 .iv     = "\x0f\xed\x34\xea\x97\xd4\x3b\xdf",
6675                 .assoc  = "\x49\x5c\x50\x1f\x1d\x94\xcc\x81"
6676                           "\xba\xb7\xb6\x03\xaf\xa5\xc1\xa1"
6677                           "\xd8\x5c\x42\x68\xe0\x6c\xda\x89"
6678                           "\x05\xac\x56\xac\x1b\x2a\xd3\x86",
6679                 .alen   = 32,
6680                 .input  = "\x39\xbe\x7d\x15\x62\x77\xf3\x3c"
6681                           "\xad\x83\x52\x6d\x71\x03\x25\x1c"
6682                           "\xed\x81\x3a\x9a\x16\x7d\x19\x80"
6683                           "\x72\x04\x72\xd0\xf6\xff\x05\x0f"
6684                           "\xb7\x14\x30\x00\x32\x9e\xa0\xa6"
6685                           "\x9e\x5a\x18\xa1\xb8\xfe\xdb\xd3",
6686                 .ilen   = 48,
6687                 .result = "\x75\x05\xbe\xc2\xd9\x1e\xde\x60"
6688                           "\x47\x3d\x8c\x7d\xbd\xb5\xd9\xb7"
6689                           "\xf2\xae\x61\x05\x8f\x82\x24\x3f"
6690                           "\x9c\x67\x91\xe1\x38\x4f\xe4\x0c",
6691                 .rlen   = 32,
6692         }, {
6693                 .key    = "\x39\xbb\xa7\xbe\x59\x97\x9e\x73"
6694                           "\xa2\xbc\x6b\x98\xd7\x75\x7f\xe3"
6695                           "\xa4\x48\x93\x39\x26\x71\x4a\xc6"
6696                           "\xee\x49\x83",
6697                 .klen   = 27,
6698                 .iv     = "\xe9\xa9\xff\xe9\x57\xba\xfd\x9e",
6699                 .assoc  = "\x44\xa6\x2c\x05\xe9\xe1\x43\xb1"
6700                           "\x58\x7c\xf2\x5c\x6d\x39\x0a\x64"
6701                           "\xa4\xf0\x13\x05\xd1\x77\x99\x67"
6702                           "\x11\xc4\xc6\xdb\x00\x56\x36\x61",
6703                 .alen   = 32,
6704                 .input  = "\x71\x99\xfa\xf4\x44\x12\x68\x9b",
6705                 .ilen   = 8,
6706                 .result = "\x00",
6707                 .rlen   = 0,
6708         }, {
6709                 .key    = "\x58\x5d\xa0\x96\x65\x1a\x04\xd7"
6710                           "\x96\xe5\xc5\x68\xaa\x95\x35\xe0"
6711                           "\x29\xa0\xba\x9e\x48\x78\xd1\xba"
6712                           "\xee\x49\x83",
6713                 .klen   = 27,
6714                 .iv     = "\xe9\xa9\xff\xe9\x57\xba\xfd\x9e",
6715                 .assoc  = "\x44\xa6\x2c\x05\xe9\xe1\x43\xb1"
6716                           "\x58\x7c\xf2\x5c\x6d\x39\x0a\x64"
6717                           "\xa4\xf0\x13\x05\xd1\x77\x99\x67"
6718                           "\x11\xc4\xc6\xdb\x00\x56\x36\x61",
6719                 .alen   = 32,
6720                 .input  = "\xfb\xe5\x5d\x34\xbe\xe5\xe8\xe7"
6721                           "\x5a\xef\x2f\xbf\x1f\x7f\xd4\xb2"
6722                           "\x66\xca\x61\x1e\x96\x7a\x61\xb3"
6723                           "\x1c\x16\x45\x52\xba\x04\x9c\x9f"
6724                           "\xb1\xd2\x40\xbc\x52\x7c\x6f\xb1",
6725                 .ilen   = 40,
6726                 .result = "\x85\x34\x66\x42\xc8\x92\x0f\x36"
6727                           "\x58\xe0\x6b\x91\x3c\x98\x5c\xbb"
6728                           "\x0a\x85\xcc\x02\xad\x7a\x96\xe9"
6729                           "\x65\x43\xa4\xc3\x0f\xdc\x55\x81",
6730                 .rlen   = 32,
6731         }, {
6732                 .key    = "\x58\x5d\xa0\x96\x65\x1a\x04\xd7"
6733                           "\x96\xe5\xc5\x68\xaa\x95\x35\xe0"
6734                           "\x29\xa0\xba\x9e\x48\x78\xd1\xba"
6735                           "\xd1\xfc\x57",
6736                 .klen   = 27,
6737                 .iv     = "\x9c\xfe\xb8\x9c\xad\x71\xaa\x1f",
6738                 .assoc  = "\x86\x67\xa5\xa9\x14\x5f\x0d\xc6"
6739                           "\xff\x14\xc7\x44\xbf\x6c\x3a\xc3"
6740                           "\xff\xb6\x81\xbd\xe2\xd5\x06\xc7"
6741                           "\x3c\xa1\x52\x13\x03\x8a\x23\x3a",
6742                 .alen   = 32,
6743                 .input  = "\x3f\x66\xb0\x9d\xe5\x4b\x38\x00"
6744                           "\xc6\x0e\x6e\xe5\xd6\x98\xa6\x37"
6745                           "\x8c\x26\x33\xc6\xb2\xa2\x17\xfa"
6746                           "\x64\x19\xc0\x30\xd7\xfc\x14\x6b"
6747                           "\xe3\x33\xc2\x04\xb0\x37\xbe\x3f"
6748                           "\xa9\xb4\x2d\x68\x03\xa3\x44\xef",
6749                 .ilen   = 48,
6750                 .result = "\x02\x87\x4d\x28\x80\x6e\xb2\xed"
6751                           "\x99\x2a\xa8\xca\x04\x25\x45\x90"
6752                           "\x1d\xdd\x5a\xd9\xe4\xdb\x9c\x9c"
6753                           "\x49\xe9\x01\xfe\xa7\x80\x6d\x6b",
6754                 .rlen   = 32,
6755                 .novrfy = 1,
6756         }, {
6757                 .key    = "\xa4\x4b\x54\x29\x0a\xb8\x6d\x01"
6758                           "\x5b\x80\x2a\xcf\x25\xc4\xb7\x5c"
6759                           "\x20\x2c\xad\x30\xc2\x2b\x41\xfb"
6760                           "\x0e\x85\xbc\x33\xad\x0f\x2b\xff"
6761                           "\xee\x49\x83",
6762                 .klen   = 35,
6763                 .iv     = "\xe9\xa9\xff\xe9\x57\xba\xfd\x9e",
6764                 .alen   = 0,
6765                 .input  = "\x1f\xb8\x8f\xa3\xdd\x54\x00\xf2",
6766                 .ilen   = 8,
6767                 .result = "\x00",
6768                 .rlen   = 0,
6769         }, {
6770                 .key    = "\x39\xbb\xa7\xbe\x59\x97\x9e\x73"
6771                           "\xa2\xbc\x6b\x98\xd7\x75\x7f\xe3"
6772                           "\xa4\x48\x93\x39\x26\x71\x4a\xc6"
6773                           "\xae\x8f\x11\x4c\xc2\x9c\x4a\xbb"
6774                           "\x85\x34\x66",
6775                 .klen   = 35,
6776                 .iv     = "\x42\xc8\x92\x0f\x36\x58\xe0\x6b",
6777                 .alen   = 0,
6778                 .input  = "\x48\x01\x5e\x02\x24\x04\x66\x47"
6779                           "\xa1\xea\x6f\xaf\xe8\xfc\xfb\xdd"
6780                           "\xa5\xa9\x87\x8d\x84\xee\x2e\x77"
6781                           "\xbb\x86\xb9\xf5\x5c\x6c\xff\xf6"
6782                           "\x72\xc3\x8e\xf7\x70\xb1\xb2\x07"
6783                           "\xbc\xa8\xa3\xbd\x83\x7c\x1d\x2a",
6784                 .ilen   = 48,
6785                 .result = "\xdc\x56\xf2\x71\xb0\xb1\xa0\x6c"
6786                           "\xf0\x97\x3a\xfb\x6d\xe7\x32\x99"
6787                           "\x3e\xaf\x70\x5e\xb2\x4d\xea\x39"
6788                           "\x89\xd4\x75\x7a\x63\xb1\xda\x93",
6789                 .rlen   = 32,
6790                 .novrfy = 1,
6791         }, {
6792                 .key    = "\x58\x5d\xa0\x96\x65\x1a\x04\xd7"
6793                           "\x96\xe5\xc5\x68\xaa\x95\x35\xe0"
6794                           "\x29\xa0\xba\x9e\x48\x78\xd1\xba"
6795                           "\x0d\x1a\x53\x3b\xb5\xe3\xf8\x8b"
6796                           "\xcf\x76\x3f",
6797                 .klen   = 35,
6798                 .iv     = "\xd9\x95\x75\x8f\x44\x89\x40\x7b",
6799                 .assoc  = "\x8f\x86\x6c\x4d\x1d\xc5\x39\x88"
6800                           "\xc8\xf3\x5c\x52\x10\x63\x6f\x2b"
6801                           "\x8a\x2a\xc5\x6f\x30\x23\x58\x7b"
6802                           "\xfb\x36\x03\x11\xb4\xd9\xf2\xfe",
6803                 .alen   = 32,
6804                 .input  = "\x48\x58\xd6\xf3\xad\x63\x58\xbf"
6805                           "\xae\xc7\x5e\xae\x83\x8f\x7b\xe4"
6806                           "\x78\x5c\x4c\x67\x71\x89\x94\xbf"
6807                           "\x47\xf1\x63\x7e\x1c\x59\xbd\xc5"
6808                           "\x7f\x44\x0a\x0c\x01\x18\x07\x92"
6809                           "\xe1\xd3\x51\xce\x32\x6d\x0c\x5b",
6810                 .ilen   = 48,
6811                 .result = "\xc2\x54\xc8\xde\x78\x87\x77\x40"
6812                           "\x49\x71\xe4\xb7\xe7\xcb\x76\x61"
6813                           "\x0a\x41\xb9\xe9\xc0\x76\x54\xab"
6814                           "\x04\x49\x3b\x19\x93\x57\x25\x5d",
6815                 .rlen   = 32,
6816         },
6817 };
6818
6819 /*
6820  * ANSI X9.31 Continuous Pseudo-Random Number Generator (AES mode)
6821  * test vectors, taken from Appendix B.2.9 and B.2.10:
6822  *     http://csrc.nist.gov/groups/STM/cavp/documents/rng/RNGVS.pdf
6823  * Only AES-128 is supported at this time.
6824  */
6825 #define ANSI_CPRNG_AES_TEST_VECTORS     6
6826
6827 static struct cprng_testvec ansi_cprng_aes_tv_template[] = {
6828         {
6829                 .key    = "\xf3\xb1\x66\x6d\x13\x60\x72\x42"
6830                           "\xed\x06\x1c\xab\xb8\xd4\x62\x02",
6831                 .klen   = 16,
6832                 .dt     = "\xe6\xb3\xbe\x78\x2a\x23\xfa\x62"
6833                           "\xd7\x1d\x4a\xfb\xb0\xe9\x22\xf9",
6834                 .dtlen  = 16,
6835                 .v      = "\x80\x00\x00\x00\x00\x00\x00\x00"
6836                           "\x00\x00\x00\x00\x00\x00\x00\x00",
6837                 .vlen   = 16,
6838                 .result = "\x59\x53\x1e\xd1\x3b\xb0\xc0\x55"
6839                           "\x84\x79\x66\x85\xc1\x2f\x76\x41",
6840                 .rlen   = 16,
6841                 .loops  = 1,
6842         }, {
6843                 .key    = "\xf3\xb1\x66\x6d\x13\x60\x72\x42"
6844                           "\xed\x06\x1c\xab\xb8\xd4\x62\x02",
6845                 .klen   = 16,
6846                 .dt     = "\xe6\xb3\xbe\x78\x2a\x23\xfa\x62"
6847                           "\xd7\x1d\x4a\xfb\xb0\xe9\x22\xfa",
6848                 .dtlen  = 16,
6849                 .v      = "\xc0\x00\x00\x00\x00\x00\x00\x00"
6850                           "\x00\x00\x00\x00\x00\x00\x00\x00",
6851                 .vlen   = 16,
6852                 .result = "\x7c\x22\x2c\xf4\xca\x8f\xa2\x4c"
6853                           "\x1c\x9c\xb6\x41\xa9\xf3\x22\x0d",
6854                 .rlen   = 16,
6855                 .loops  = 1,
6856         }, {
6857                 .key    = "\xf3\xb1\x66\x6d\x13\x60\x72\x42"
6858                           "\xed\x06\x1c\xab\xb8\xd4\x62\x02",
6859                 .klen   = 16,
6860                 .dt     = "\xe6\xb3\xbe\x78\x2a\x23\xfa\x62"
6861                           "\xd7\x1d\x4a\xfb\xb0\xe9\x22\xfb",
6862                 .dtlen  = 16,
6863                 .v      = "\xe0\x00\x00\x00\x00\x00\x00\x00"
6864                           "\x00\x00\x00\x00\x00\x00\x00\x00",
6865                 .vlen   = 16,
6866                 .result = "\x8a\xaa\x00\x39\x66\x67\x5b\xe5"
6867                           "\x29\x14\x28\x81\xa9\x4d\x4e\xc7",
6868                 .rlen   = 16,
6869                 .loops  = 1,
6870         }, {
6871                 .key    = "\xf3\xb1\x66\x6d\x13\x60\x72\x42"
6872                           "\xed\x06\x1c\xab\xb8\xd4\x62\x02",
6873                 .klen   = 16,
6874                 .dt     = "\xe6\xb3\xbe\x78\x2a\x23\xfa\x62"
6875                           "\xd7\x1d\x4a\xfb\xb0\xe9\x22\xfc",
6876                 .dtlen  = 16,
6877                 .v      = "\xf0\x00\x00\x00\x00\x00\x00\x00"
6878                           "\x00\x00\x00\x00\x00\x00\x00\x00",
6879                 .vlen   = 16,
6880                 .result = "\x88\xdd\xa4\x56\x30\x24\x23\xe5"
6881                           "\xf6\x9d\xa5\x7e\x7b\x95\xc7\x3a",
6882                 .rlen   = 16,
6883                 .loops  = 1,
6884         }, {
6885                 .key    = "\xf3\xb1\x66\x6d\x13\x60\x72\x42"
6886                           "\xed\x06\x1c\xab\xb8\xd4\x62\x02",
6887                 .klen   = 16,
6888                 .dt     = "\xe6\xb3\xbe\x78\x2a\x23\xfa\x62"
6889                           "\xd7\x1d\x4a\xfb\xb0\xe9\x22\xfd",
6890                 .dtlen  = 16,
6891                 .v      = "\xf8\x00\x00\x00\x00\x00\x00\x00"
6892                           "\x00\x00\x00\x00\x00\x00\x00\x00",
6893                 .vlen   = 16,
6894                 .result = "\x05\x25\x92\x46\x61\x79\xd2\xcb"
6895                           "\x78\xc4\x0b\x14\x0a\x5a\x9a\xc8",
6896                 .rlen   = 16,
6897                 .loops  = 1,
6898         }, {    /* Monte Carlo Test */
6899                 .key    = "\x9f\x5b\x51\x20\x0b\xf3\x34\xb5"
6900                           "\xd8\x2b\xe8\xc3\x72\x55\xc8\x48",
6901                 .klen   = 16,
6902                 .dt     = "\x63\x76\xbb\xe5\x29\x02\xba\x3b"
6903                           "\x67\xc9\x25\xfa\x70\x1f\x11\xac",
6904                 .dtlen  = 16,
6905                 .v      = "\x57\x2c\x8e\x76\x87\x26\x47\x97"
6906                           "\x7e\x74\xfb\xdd\xc4\x95\x01\xd1",
6907                 .vlen   = 16,
6908                 .result = "\x48\xe9\xbd\x0d\x06\xee\x18\xfb"
6909                           "\xe4\x57\x90\xd5\xc3\xfc\x9b\x73",
6910                 .rlen   = 16,
6911                 .loops  = 10000,
6912         },
6913 };
6914
6915 /* Cast5 test vectors from RFC 2144 */
6916 #define CAST5_ENC_TEST_VECTORS  3
6917 #define CAST5_DEC_TEST_VECTORS  3
6918
6919 static struct cipher_testvec cast5_enc_tv_template[] = {
6920         {
6921                 .key    = "\x01\x23\x45\x67\x12\x34\x56\x78"
6922                           "\x23\x45\x67\x89\x34\x56\x78\x9a",
6923                 .klen   = 16,
6924                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6925                 .ilen   = 8,
6926                 .result = "\x23\x8b\x4f\xe5\x84\x7e\x44\xb2",
6927                 .rlen   = 8,
6928         }, {
6929                 .key    = "\x01\x23\x45\x67\x12\x34\x56\x78"
6930                           "\x23\x45",
6931                 .klen   = 10,
6932                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6933                 .ilen   = 8,
6934                 .result = "\xeb\x6a\x71\x1a\x2c\x02\x27\x1b",
6935                 .rlen   = 8,
6936         }, {
6937                 .key    = "\x01\x23\x45\x67\x12",
6938                 .klen   = 5,
6939                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6940                 .ilen   = 8,
6941                 .result = "\x7a\xc8\x16\xd1\x6e\x9b\x30\x2e",
6942                 .rlen   = 8,
6943         },
6944 };
6945
6946 static struct cipher_testvec cast5_dec_tv_template[] = {
6947         {
6948                 .key    = "\x01\x23\x45\x67\x12\x34\x56\x78"
6949                           "\x23\x45\x67\x89\x34\x56\x78\x9a",
6950                 .klen   = 16,
6951                 .input  = "\x23\x8b\x4f\xe5\x84\x7e\x44\xb2",
6952                 .ilen   = 8,
6953                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6954                 .rlen   = 8,
6955         }, {
6956                 .key    = "\x01\x23\x45\x67\x12\x34\x56\x78"
6957                           "\x23\x45",
6958                 .klen   = 10,
6959                 .input  = "\xeb\x6a\x71\x1a\x2c\x02\x27\x1b",
6960                 .ilen   = 8,
6961                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6962                 .rlen   = 8,
6963         }, {
6964                 .key    = "\x01\x23\x45\x67\x12",
6965                 .klen   = 5,
6966                 .input  = "\x7a\xc8\x16\xd1\x6e\x9b\x30\x2e",
6967                 .ilen   = 8,
6968                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6969                 .rlen   = 8,
6970         },
6971 };
6972
6973 /*
6974  * ARC4 test vectors from OpenSSL
6975  */
6976 #define ARC4_ENC_TEST_VECTORS   7
6977 #define ARC4_DEC_TEST_VECTORS   7
6978
6979 static struct cipher_testvec arc4_enc_tv_template[] = {
6980         {
6981                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6982                 .klen   = 8,
6983                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6984                 .ilen   = 8,
6985                 .result = "\x75\xb7\x87\x80\x99\xe0\xc5\x96",
6986                 .rlen   = 8,
6987         }, {
6988                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6989                 .klen   = 8,
6990                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00",
6991                 .ilen   = 8,
6992                 .result = "\x74\x94\xc2\xe7\x10\x4b\x08\x79",
6993                 .rlen   = 8,
6994         }, {
6995                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00",
6996                 .klen   = 8,
6997                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00",
6998                 .ilen   = 8,
6999                 .result = "\xde\x18\x89\x41\xa3\x37\x5d\x3a",
7000                 .rlen   = 8,
7001         }, {
7002                 .key    = "\xef\x01\x23\x45",
7003                 .klen   = 4,
7004                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
7005                           "\x00\x00\x00\x00\x00\x00\x00\x00"
7006                           "\x00\x00\x00\x00",
7007                 .ilen   = 20,
7008                 .result = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf"
7009                           "\xbd\x61\x5a\x11\x62\xe1\xc7\xba"
7010                           "\x36\xb6\x78\x58",
7011                 .rlen   = 20,
7012         }, {
7013                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
7014                 .klen   = 8,
7015                 .input  = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
7016                           "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
7017                           "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
7018                           "\x12\x34\x56\x78",
7019                 .ilen   = 28,
7020                 .result = "\x66\xa0\x94\x9f\x8a\xf7\xd6\x89"
7021                           "\x1f\x7f\x83\x2b\xa8\x33\xc0\x0c"
7022                           "\x89\x2e\xbe\x30\x14\x3c\xe2\x87"
7023                           "\x40\x01\x1e\xcf",
7024                 .rlen   = 28,
7025         }, {
7026                 .key    = "\xef\x01\x23\x45",
7027                 .klen   = 4,
7028                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
7029                           "\x00\x00",
7030                 .ilen   = 10,
7031                 .result = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf"
7032                           "\xbd\x61",
7033                 .rlen   = 10,
7034         }, {
7035                 .key    = "\x01\x23\x45\x67\x89\xAB\xCD\xEF"
7036                         "\x00\x00\x00\x00\x00\x00\x00\x00",
7037                 .klen   = 16,
7038                 .input  = "\x01\x23\x45\x67\x89\xAB\xCD\xEF",
7039                 .ilen   = 8,
7040                 .result = "\x69\x72\x36\x59\x1B\x52\x42\xB1",
7041                 .rlen   = 8,
7042         },
7043 };
7044
7045 static struct cipher_testvec arc4_dec_tv_template[] = {
7046         {
7047                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
7048                 .klen   = 8,
7049                 .input  = "\x75\xb7\x87\x80\x99\xe0\xc5\x96",
7050                 .ilen   = 8,
7051                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef",
7052                 .rlen   = 8,
7053         }, {
7054                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
7055                 .klen   = 8,
7056                 .input  = "\x74\x94\xc2\xe7\x10\x4b\x08\x79",
7057                 .ilen   = 8,
7058                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
7059                 .rlen   = 8,
7060         }, {
7061                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00",
7062                 .klen   = 8,
7063                 .input  = "\xde\x18\x89\x41\xa3\x37\x5d\x3a",
7064                 .ilen   = 8,
7065                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
7066                 .rlen   = 8,
7067         }, {
7068                 .key    = "\xef\x01\x23\x45",
7069                 .klen   = 4,
7070                 .input  = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf"
7071                           "\xbd\x61\x5a\x11\x62\xe1\xc7\xba"
7072                           "\x36\xb6\x78\x58",
7073                 .ilen   = 20,
7074                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00"
7075                           "\x00\x00\x00\x00\x00\x00\x00\x00"
7076                           "\x00\x00\x00\x00",
7077                 .rlen   = 20,
7078         }, {
7079                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
7080                 .klen   = 8,
7081                 .input  = "\x66\xa0\x94\x9f\x8a\xf7\xd6\x89"
7082                           "\x1f\x7f\x83\x2b\xa8\x33\xc0\x0c"
7083                           "\x89\x2e\xbe\x30\x14\x3c\xe2\x87"
7084                           "\x40\x01\x1e\xcf",
7085                 .ilen   = 28,
7086                 .result = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
7087                           "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
7088                           "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
7089                           "\x12\x34\x56\x78",
7090                 .rlen   = 28,
7091         }, {
7092                 .key    = "\xef\x01\x23\x45",
7093                 .klen   = 4,
7094                 .input  = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf"
7095                           "\xbd\x61",
7096                 .ilen   = 10,
7097                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00"
7098                           "\x00\x00",
7099                 .rlen   = 10,
7100         }, {
7101                 .key    = "\x01\x23\x45\x67\x89\xAB\xCD\xEF"
7102                         "\x00\x00\x00\x00\x00\x00\x00\x00",
7103                 .klen   = 16,
7104                 .input  = "\x69\x72\x36\x59\x1B\x52\x42\xB1",
7105                 .ilen   = 8,
7106                 .result = "\x01\x23\x45\x67\x89\xAB\xCD\xEF",
7107                 .rlen   = 8,
7108         },
7109 };
7110
7111 /*
7112  * TEA test vectors
7113  */
7114 #define TEA_ENC_TEST_VECTORS    4
7115 #define TEA_DEC_TEST_VECTORS    4
7116
7117 static struct cipher_testvec tea_enc_tv_template[] = {
7118         {
7119                 .key    = zeroed_string,
7120                 .klen   = 16,
7121                 .input  = zeroed_string,
7122                 .ilen   = 8,
7123                 .result = "\x0a\x3a\xea\x41\x40\xa9\xba\x94",
7124                 .rlen   = 8,
7125         }, {
7126                 .key    = "\x2b\x02\x05\x68\x06\x14\x49\x76"
7127                           "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
7128                 .klen   = 16,
7129                 .input  = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
7130                 .ilen   = 8,
7131                 .result = "\x77\x5d\x2a\x6a\xf6\xce\x92\x09",
7132                 .rlen   = 8,
7133         }, {
7134                 .key    = "\x09\x65\x43\x11\x66\x44\x39\x25"
7135                           "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
7136                 .klen   = 16,
7137                 .input  = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
7138                           "\x65\x73\x74\x5f\x76\x65\x63\x74",
7139                 .ilen   = 16,
7140                 .result = "\xbe\x7a\xbb\x81\x95\x2d\x1f\x1e"
7141                           "\xdd\x89\xa1\x25\x04\x21\xdf\x95",
7142                 .rlen   = 16,
7143         }, {
7144                 .key    = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
7145                           "\x5d\x04\x16\x36\x15\x72\x63\x2f",
7146                 .klen   = 16,
7147                 .input  = "\x54\x65\x61\x20\x69\x73\x20\x67"
7148                           "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
7149                           "\x79\x6f\x75\x21\x21\x21\x20\x72"
7150                           "\x65\x61\x6c\x6c\x79\x21\x21\x21",
7151                 .ilen   = 32,
7152                 .result = "\xe0\x4d\x5d\x3c\xb7\x8c\x36\x47"
7153                           "\x94\x18\x95\x91\xa9\xfc\x49\xf8"
7154                           "\x44\xd1\x2d\xc2\x99\xb8\x08\x2a"
7155                           "\x07\x89\x73\xc2\x45\x92\xc6\x90",
7156                 .rlen   = 32,
7157         }
7158 };
7159
7160 static struct cipher_testvec tea_dec_tv_template[] = {
7161         {
7162                 .key    = zeroed_string,
7163                 .klen   = 16,
7164                 .input  = "\x0a\x3a\xea\x41\x40\xa9\xba\x94",
7165                 .ilen   = 8,
7166                 .result = zeroed_string,
7167                 .rlen   = 8,
7168         }, {
7169                 .key    = "\x2b\x02\x05\x68\x06\x14\x49\x76"
7170                           "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
7171                 .klen   = 16,
7172                 .input  = "\x77\x5d\x2a\x6a\xf6\xce\x92\x09",
7173                 .ilen   = 8,
7174                 .result = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
7175                 .rlen   = 8,
7176         }, {
7177                 .key    = "\x09\x65\x43\x11\x66\x44\x39\x25"
7178                           "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
7179                 .klen   = 16,
7180                 .input  = "\xbe\x7a\xbb\x81\x95\x2d\x1f\x1e"
7181                           "\xdd\x89\xa1\x25\x04\x21\xdf\x95",
7182                 .ilen   = 16,
7183                 .result = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
7184                           "\x65\x73\x74\x5f\x76\x65\x63\x74",
7185                 .rlen   = 16,
7186         }, {
7187                 .key    = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
7188                           "\x5d\x04\x16\x36\x15\x72\x63\x2f",
7189                 .klen   = 16,
7190                 .input  = "\xe0\x4d\x5d\x3c\xb7\x8c\x36\x47"
7191                           "\x94\x18\x95\x91\xa9\xfc\x49\xf8"
7192                           "\x44\xd1\x2d\xc2\x99\xb8\x08\x2a"
7193                           "\x07\x89\x73\xc2\x45\x92\xc6\x90",
7194                 .ilen   = 32,
7195                 .result = "\x54\x65\x61\x20\x69\x73\x20\x67"
7196                           "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
7197                           "\x79\x6f\x75\x21\x21\x21\x20\x72"
7198                           "\x65\x61\x6c\x6c\x79\x21\x21\x21",
7199                 .rlen   = 32,
7200         }
7201 };
7202
7203 /*
7204  * XTEA test vectors
7205  */
7206 #define XTEA_ENC_TEST_VECTORS   4
7207 #define XTEA_DEC_TEST_VECTORS   4
7208
7209 static struct cipher_testvec xtea_enc_tv_template[] = {
7210         {
7211                 .key    = zeroed_string,
7212                 .klen   = 16,
7213                 .input  = zeroed_string,
7214                 .ilen   = 8,
7215                 .result = "\xd8\xd4\xe9\xde\xd9\x1e\x13\xf7",
7216                 .rlen   = 8,
7217         }, {
7218                 .key    = "\x2b\x02\x05\x68\x06\x14\x49\x76"
7219                           "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
7220                 .klen   = 16,
7221                 .input  = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
7222                 .ilen   = 8,
7223                 .result = "\x94\xeb\xc8\x96\x84\x6a\x49\xa8",
7224                 .rlen   = 8,
7225         }, {
7226                 .key    = "\x09\x65\x43\x11\x66\x44\x39\x25"
7227                           "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
7228                 .klen   = 16,
7229                 .input  = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
7230                           "\x65\x73\x74\x5f\x76\x65\x63\x74",
7231                 .ilen   = 16,
7232                 .result = "\x3e\xce\xae\x22\x60\x56\xa8\x9d"
7233                           "\x77\x4d\xd4\xb4\x87\x24\xe3\x9a",
7234                 .rlen   = 16,
7235         }, {
7236                 .key    = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
7237                           "\x5d\x04\x16\x36\x15\x72\x63\x2f",
7238                 .klen   = 16,
7239                 .input  = "\x54\x65\x61\x20\x69\x73\x20\x67"
7240                           "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
7241                           "\x79\x6f\x75\x21\x21\x21\x20\x72"
7242                           "\x65\x61\x6c\x6c\x79\x21\x21\x21",
7243                 .ilen   = 32,
7244                 .result = "\x99\x81\x9f\x5d\x6f\x4b\x31\x3a"
7245                           "\x86\xff\x6f\xd0\xe3\x87\x70\x07"
7246                           "\x4d\xb8\xcf\xf3\x99\x50\xb3\xd4"
7247                           "\x73\xa2\xfa\xc9\x16\x59\x5d\x81",
7248                 .rlen   = 32,
7249         }
7250 };
7251
7252 static struct cipher_testvec xtea_dec_tv_template[] = {
7253         {
7254                 .key    = zeroed_string,
7255                 .klen   = 16,
7256                 .input  = "\xd8\xd4\xe9\xde\xd9\x1e\x13\xf7",
7257                 .ilen   = 8,
7258                 .result = zeroed_string,
7259                 .rlen   = 8,
7260         }, {
7261                 .key    = "\x2b\x02\x05\x68\x06\x14\x49\x76"
7262                           "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
7263                 .klen   = 16,
7264                 .input  = "\x94\xeb\xc8\x96\x84\x6a\x49\xa8",
7265                 .ilen   = 8,
7266                 .result = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
7267                 .rlen   = 8,
7268         }, {
7269                 .key    = "\x09\x65\x43\x11\x66\x44\x39\x25"
7270                           "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
7271                 .klen   = 16,
7272                 .input  = "\x3e\xce\xae\x22\x60\x56\xa8\x9d"
7273                           "\x77\x4d\xd4\xb4\x87\x24\xe3\x9a",
7274                 .ilen   = 16,
7275                 .result = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
7276                           "\x65\x73\x74\x5f\x76\x65\x63\x74",
7277                 .rlen   = 16,
7278         }, {
7279                 .key    = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
7280                           "\x5d\x04\x16\x36\x15\x72\x63\x2f",
7281                 .klen   = 16,
7282                 .input  = "\x99\x81\x9f\x5d\x6f\x4b\x31\x3a"
7283                           "\x86\xff\x6f\xd0\xe3\x87\x70\x07"
7284                           "\x4d\xb8\xcf\xf3\x99\x50\xb3\xd4"
7285                           "\x73\xa2\xfa\xc9\x16\x59\x5d\x81",
7286                 .ilen   = 32,
7287                 .result = "\x54\x65\x61\x20\x69\x73\x20\x67"
7288                           "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
7289                           "\x79\x6f\x75\x21\x21\x21\x20\x72"
7290                           "\x65\x61\x6c\x6c\x79\x21\x21\x21",
7291                 .rlen   = 32,
7292         }
7293 };
7294
7295 /*
7296  * KHAZAD test vectors.
7297  */
7298 #define KHAZAD_ENC_TEST_VECTORS 5
7299 #define KHAZAD_DEC_TEST_VECTORS 5
7300
7301 static struct cipher_testvec khazad_enc_tv_template[] = {
7302         {
7303                 .key    = "\x80\x00\x00\x00\x00\x00\x00\x00"
7304                           "\x00\x00\x00\x00\x00\x00\x00\x00",
7305                 .klen   = 16,
7306                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00",
7307                 .ilen   = 8,
7308                 .result = "\x49\xa4\xce\x32\xac\x19\x0e\x3f",
7309                 .rlen   = 8,
7310         }, {
7311                 .key    = "\x38\x38\x38\x38\x38\x38\x38\x38"
7312                           "\x38\x38\x38\x38\x38\x38\x38\x38",
7313                 .klen   = 16,
7314                 .input  = "\x38\x38\x38\x38\x38\x38\x38\x38",
7315                 .ilen   = 8,
7316                 .result = "\x7e\x82\x12\xa1\xd9\x5b\xe4\xf9",
7317                 .rlen   = 8,
7318         }, {
7319                 .key    = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2"
7320                         "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2",
7321                 .klen   = 16,
7322                 .input  = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2",
7323                 .ilen   = 8,
7324                 .result = "\xaa\xbe\xc1\x95\xc5\x94\x1a\x9c",
7325                 .rlen   = 8,
7326         }, {
7327                 .key    = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
7328                         "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
7329                 .klen   = 16,
7330                 .input  = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
7331                 .ilen   = 8,
7332                 .result = "\x04\x74\xf5\x70\x50\x16\xd3\xb8",
7333                 .rlen   = 8,
7334         }, {
7335                 .key    = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
7336                         "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
7337                 .klen   = 16,
7338                 .input  = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
7339                         "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
7340                 .ilen   = 16,
7341                 .result = "\x04\x74\xf5\x70\x50\x16\xd3\xb8"
7342                         "\x04\x74\xf5\x70\x50\x16\xd3\xb8",
7343                 .rlen   = 16,
7344         },
7345 };
7346
7347 static struct cipher_testvec khazad_dec_tv_template[] = {
7348         {
7349                 .key    = "\x80\x00\x00\x00\x00\x00\x00\x00"
7350                           "\x00\x00\x00\x00\x00\x00\x00\x00",
7351                 .klen   = 16,
7352                 .input  = "\x49\xa4\xce\x32\xac\x19\x0e\x3f",
7353                 .ilen   = 8,
7354                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
7355                 .rlen   = 8,
7356         }, {
7357                 .key    = "\x38\x38\x38\x38\x38\x38\x38\x38"
7358                           "\x38\x38\x38\x38\x38\x38\x38\x38",
7359                 .klen   = 16,
7360                 .input  = "\x7e\x82\x12\xa1\xd9\x5b\xe4\xf9",
7361                 .ilen   = 8,
7362                 .result = "\x38\x38\x38\x38\x38\x38\x38\x38",
7363                 .rlen   = 8,
7364         }, {
7365                 .key    = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2"
7366                         "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2",
7367                 .klen   = 16,
7368                 .input  = "\xaa\xbe\xc1\x95\xc5\x94\x1a\x9c",
7369                 .ilen   = 8,
7370                 .result = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2",
7371                 .rlen   = 8,
7372         }, {
7373                 .key    = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
7374                         "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
7375                 .klen   = 16,
7376                 .input  = "\x04\x74\xf5\x70\x50\x16\xd3\xb8",
7377                 .ilen   = 8,
7378                 .result = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
7379                 .rlen   = 8,
7380         }, {
7381                 .key    = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
7382                         "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
7383                 .klen   = 16,
7384                 .input  = "\x04\x74\xf5\x70\x50\x16\xd3\xb8"
7385                         "\x04\x74\xf5\x70\x50\x16\xd3\xb8",
7386                 .ilen   = 16,
7387                 .result = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
7388                         "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
7389                 .rlen   = 16,
7390         },
7391 };
7392
7393 /*
7394  * Anubis test vectors.
7395  */
7396
7397 #define ANUBIS_ENC_TEST_VECTORS                 5
7398 #define ANUBIS_DEC_TEST_VECTORS                 5
7399 #define ANUBIS_CBC_ENC_TEST_VECTORS             2
7400 #define ANUBIS_CBC_DEC_TEST_VECTORS             2
7401
7402 static struct cipher_testvec anubis_enc_tv_template[] = {
7403         {
7404                 .key    = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
7405                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
7406                 .klen   = 16,
7407                 .input  = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
7408                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
7409                 .ilen   = 16,
7410                 .result = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f"
7411                           "\x08\xb7\x52\x8e\x6e\x6e\x86\x90",
7412                 .rlen   = 16,
7413         }, {
7414
7415                 .key    = "\x03\x03\x03\x03\x03\x03\x03\x03"
7416                           "\x03\x03\x03\x03\x03\x03\x03\x03"
7417                           "\x03\x03\x03\x03",
7418                 .klen   = 20,
7419                 .input  = "\x03\x03\x03\x03\x03\x03\x03\x03"
7420                           "\x03\x03\x03\x03\x03\x03\x03\x03",
7421                 .ilen   = 16,
7422                 .result = "\xdb\xf1\x42\xf4\xd1\x8a\xc7\x49"
7423                           "\x87\x41\x6f\x82\x0a\x98\x64\xae",
7424                 .rlen   = 16,
7425         }, {
7426                 .key    = "\x24\x24\x24\x24\x24\x24\x24\x24"
7427                           "\x24\x24\x24\x24\x24\x24\x24\x24"
7428                           "\x24\x24\x24\x24\x24\x24\x24\x24"
7429                           "\x24\x24\x24\x24",
7430                 .klen   = 28,
7431                 .input  = "\x24\x24\x24\x24\x24\x24\x24\x24"
7432                           "\x24\x24\x24\x24\x24\x24\x24\x24",
7433                 .ilen   = 16,
7434                 .result = "\xfd\x1b\x4a\xe3\xbf\xf0\xad\x3d"
7435                           "\x06\xd3\x61\x27\xfd\x13\x9e\xde",
7436                 .rlen   = 16,
7437         }, {
7438                 .key    = "\x25\x25\x25\x25\x25\x25\x25\x25"
7439                           "\x25\x25\x25\x25\x25\x25\x25\x25"
7440                           "\x25\x25\x25\x25\x25\x25\x25\x25"
7441                           "\x25\x25\x25\x25\x25\x25\x25\x25",
7442                 .klen   = 32,
7443                 .input  = "\x25\x25\x25\x25\x25\x25\x25\x25"
7444                           "\x25\x25\x25\x25\x25\x25\x25\x25",
7445                 .ilen   = 16,
7446                 .result = "\x1a\x91\xfb\x2b\xb7\x78\x6b\xc4"
7447                         "\x17\xd9\xff\x40\x3b\x0e\xe5\xfe",
7448                 .rlen   = 16,
7449         }, {
7450                 .key    = "\x35\x35\x35\x35\x35\x35\x35\x35"
7451                           "\x35\x35\x35\x35\x35\x35\x35\x35"
7452                           "\x35\x35\x35\x35\x35\x35\x35\x35"
7453                           "\x35\x35\x35\x35\x35\x35\x35\x35"
7454                           "\x35\x35\x35\x35\x35\x35\x35\x35",
7455                 .klen   = 40,
7456                 .input  = "\x35\x35\x35\x35\x35\x35\x35\x35"
7457                           "\x35\x35\x35\x35\x35\x35\x35\x35",
7458                 .ilen   = 16,
7459                 .result = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97"
7460                           "\x9e\xc6\x84\x0f\x17\x21\x07\xee",
7461                 .rlen   = 16,
7462         },
7463 };
7464
7465 static struct cipher_testvec anubis_dec_tv_template[] = {
7466         {
7467                 .key    = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
7468                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
7469                 .klen   = 16,
7470                 .input  = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f"
7471                           "\x08\xb7\x52\x8e\x6e\x6e\x86\x90",
7472                 .ilen   = 16,
7473                 .result = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
7474                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
7475                 .rlen   = 16,
7476         }, {
7477
7478                 .key    = "\x03\x03\x03\x03\x03\x03\x03\x03"
7479                           "\x03\x03\x03\x03\x03\x03\x03\x03"
7480                           "\x03\x03\x03\x03",
7481                 .klen   = 20,
7482                 .input  = "\xdb\xf1\x42\xf4\xd1\x8a\xc7\x49"
7483                           "\x87\x41\x6f\x82\x0a\x98\x64\xae",
7484                 .ilen   = 16,
7485                 .result = "\x03\x03\x03\x03\x03\x03\x03\x03"
7486                           "\x03\x03\x03\x03\x03\x03\x03\x03",
7487                 .rlen   = 16,
7488         }, {
7489                 .key    = "\x24\x24\x24\x24\x24\x24\x24\x24"
7490                           "\x24\x24\x24\x24\x24\x24\x24\x24"
7491                           "\x24\x24\x24\x24\x24\x24\x24\x24"
7492                           "\x24\x24\x24\x24",
7493                 .klen   = 28,
7494                 .input  = "\xfd\x1b\x4a\xe3\xbf\xf0\xad\x3d"
7495                           "\x06\xd3\x61\x27\xfd\x13\x9e\xde",
7496                 .ilen   = 16,
7497                 .result = "\x24\x24\x24\x24\x24\x24\x24\x24"
7498                           "\x24\x24\x24\x24\x24\x24\x24\x24",
7499                 .rlen   = 16,
7500         }, {
7501                 .key    = "\x25\x25\x25\x25\x25\x25\x25\x25"
7502                           "\x25\x25\x25\x25\x25\x25\x25\x25"
7503                           "\x25\x25\x25\x25\x25\x25\x25\x25"
7504                           "\x25\x25\x25\x25\x25\x25\x25\x25",
7505                 .klen   = 32,
7506                 .input  = "\x1a\x91\xfb\x2b\xb7\x78\x6b\xc4"
7507                         "\x17\xd9\xff\x40\x3b\x0e\xe5\xfe",
7508                 .ilen   = 16,
7509                 .result = "\x25\x25\x25\x25\x25\x25\x25\x25"
7510                           "\x25\x25\x25\x25\x25\x25\x25\x25",
7511                 .rlen   = 16,
7512         }, {
7513                 .key    = "\x35\x35\x35\x35\x35\x35\x35\x35"
7514                           "\x35\x35\x35\x35\x35\x35\x35\x35"
7515                           "\x35\x35\x35\x35\x35\x35\x35\x35"
7516                           "\x35\x35\x35\x35\x35\x35\x35\x35"
7517                           "\x35\x35\x35\x35\x35\x35\x35\x35",
7518                 .input = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97"
7519                          "\x9e\xc6\x84\x0f\x17\x21\x07\xee",
7520                 .klen   = 40,
7521                 .ilen   = 16,
7522                 .result = "\x35\x35\x35\x35\x35\x35\x35\x35"
7523                           "\x35\x35\x35\x35\x35\x35\x35\x35",
7524                 .rlen   = 16,
7525         },
7526 };
7527
7528 static struct cipher_testvec anubis_cbc_enc_tv_template[] = {
7529         {
7530                 .key    = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
7531                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
7532                 .klen   = 16,
7533                 .input  = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
7534                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
7535                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
7536                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
7537                 .ilen   = 32,
7538                 .result = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f"
7539                           "\x08\xb7\x52\x8e\x6e\x6e\x86\x90"
7540                           "\x86\xd8\xb5\x6f\x98\x5e\x8a\x66"
7541                           "\x4f\x1f\x78\xa1\xbb\x37\xf1\xbe",
7542                 .rlen   = 32,
7543         }, {
7544                 .key    = "\x35\x35\x35\x35\x35\x35\x35\x35"
7545                           "\x35\x35\x35\x35\x35\x35\x35\x35"
7546                           "\x35\x35\x35\x35\x35\x35\x35\x35"
7547                           "\x35\x35\x35\x35\x35\x35\x35\x35"
7548                           "\x35\x35\x35\x35\x35\x35\x35\x35",
7549                 .klen   = 40,
7550                 .input  = "\x35\x35\x35\x35\x35\x35\x35\x35"
7551                           "\x35\x35\x35\x35\x35\x35\x35\x35"
7552                           "\x35\x35\x35\x35\x35\x35\x35\x35"
7553                           "\x35\x35\x35\x35\x35\x35\x35\x35",
7554                 .ilen   = 32,
7555                 .result = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97"
7556                           "\x9e\xc6\x84\x0f\x17\x21\x07\xee"
7557                           "\xa2\xbc\x06\x98\xc6\x4b\xda\x75"
7558                           "\x2e\xaa\xbe\x58\xce\x01\x5b\xc7",
7559                 .rlen   = 32,
7560         },
7561 };
7562
7563 static struct cipher_testvec anubis_cbc_dec_tv_template[] = {
7564         {
7565                 .key    = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
7566                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
7567                 .klen   = 16,
7568                 .input  = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f"
7569                           "\x08\xb7\x52\x8e\x6e\x6e\x86\x90"
7570                           "\x86\xd8\xb5\x6f\x98\x5e\x8a\x66"
7571                           "\x4f\x1f\x78\xa1\xbb\x37\xf1\xbe",
7572                 .ilen   = 32,
7573                 .result = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
7574                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
7575                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
7576                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
7577                 .rlen   = 32,
7578         }, {
7579                 .key    = "\x35\x35\x35\x35\x35\x35\x35\x35"
7580                           "\x35\x35\x35\x35\x35\x35\x35\x35"
7581                           "\x35\x35\x35\x35\x35\x35\x35\x35"
7582                           "\x35\x35\x35\x35\x35\x35\x35\x35"
7583                           "\x35\x35\x35\x35\x35\x35\x35\x35",
7584                 .klen   = 40,
7585                 .input = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97"
7586                           "\x9e\xc6\x84\x0f\x17\x21\x07\xee"
7587                           "\xa2\xbc\x06\x98\xc6\x4b\xda\x75"
7588                           "\x2e\xaa\xbe\x58\xce\x01\x5b\xc7",
7589                 .ilen   = 32,
7590                 .result = "\x35\x35\x35\x35\x35\x35\x35\x35"
7591                           "\x35\x35\x35\x35\x35\x35\x35\x35"
7592                           "\x35\x35\x35\x35\x35\x35\x35\x35"
7593                           "\x35\x35\x35\x35\x35\x35\x35\x35",
7594                 .rlen   = 32,
7595         },
7596 };
7597
7598 /*
7599  * XETA test vectors
7600  */
7601 #define XETA_ENC_TEST_VECTORS   4
7602 #define XETA_DEC_TEST_VECTORS   4
7603
7604 static struct cipher_testvec xeta_enc_tv_template[] = {
7605         {
7606                 .key    = zeroed_string,
7607                 .klen   = 16,
7608                 .input  = zeroed_string,
7609                 .ilen   = 8,
7610                 .result = "\xaa\x22\x96\xe5\x6c\x61\xf3\x45",
7611                 .rlen   = 8,
7612         }, {
7613                 .key    = "\x2b\x02\x05\x68\x06\x14\x49\x76"
7614                           "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
7615                 .klen   = 16,
7616                 .input  = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
7617                 .ilen   = 8,
7618                 .result = "\x82\x3e\xeb\x35\xdc\xdd\xd9\xc3",
7619                 .rlen   = 8,
7620         }, {
7621                 .key    = "\x09\x65\x43\x11\x66\x44\x39\x25"
7622                           "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
7623                 .klen   = 16,
7624                 .input  = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
7625                           "\x65\x73\x74\x5f\x76\x65\x63\x74",
7626                 .ilen   = 16,
7627                 .result = "\xe2\x04\xdb\xf2\x89\x85\x9e\xea"
7628                           "\x61\x35\xaa\xed\xb5\xcb\x71\x2c",
7629                 .rlen   = 16,
7630         }, {
7631                 .key    = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
7632                           "\x5d\x04\x16\x36\x15\x72\x63\x2f",
7633                 .klen   = 16,
7634                 .input  = "\x54\x65\x61\x20\x69\x73\x20\x67"
7635                           "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
7636                           "\x79\x6f\x75\x21\x21\x21\x20\x72"
7637                           "\x65\x61\x6c\x6c\x79\x21\x21\x21",
7638                 .ilen   = 32,
7639                 .result = "\x0b\x03\xcd\x8a\xbe\x95\xfd\xb1"
7640                           "\xc1\x44\x91\x0b\xa5\xc9\x1b\xb4"
7641                           "\xa9\xda\x1e\x9e\xb1\x3e\x2a\x8f"
7642                           "\xea\xa5\x6a\x85\xd1\xf4\xa8\xa5",
7643                 .rlen   = 32,
7644         }
7645 };
7646
7647 static struct cipher_testvec xeta_dec_tv_template[] = {
7648         {
7649                 .key    = zeroed_string,
7650                 .klen   = 16,
7651                 .input  = "\xaa\x22\x96\xe5\x6c\x61\xf3\x45",
7652                 .ilen   = 8,
7653                 .result = zeroed_string,
7654                 .rlen   = 8,
7655         }, {
7656                 .key    = "\x2b\x02\x05\x68\x06\x14\x49\x76"
7657                           "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
7658                 .klen   = 16,
7659                 .input  = "\x82\x3e\xeb\x35\xdc\xdd\xd9\xc3",
7660                 .ilen   = 8,
7661                 .result = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
7662                 .rlen   = 8,
7663         }, {
7664                 .key    = "\x09\x65\x43\x11\x66\x44\x39\x25"
7665                           "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
7666                 .klen   = 16,
7667                 .input  = "\xe2\x04\xdb\xf2\x89\x85\x9e\xea"
7668                           "\x61\x35\xaa\xed\xb5\xcb\x71\x2c",
7669                 .ilen   = 16,
7670                 .result = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
7671                           "\x65\x73\x74\x5f\x76\x65\x63\x74",
7672                 .rlen   = 16,
7673         }, {
7674                 .key    = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
7675                           "\x5d\x04\x16\x36\x15\x72\x63\x2f",
7676                 .klen   = 16,
7677                 .input  = "\x0b\x03\xcd\x8a\xbe\x95\xfd\xb1"
7678                           "\xc1\x44\x91\x0b\xa5\xc9\x1b\xb4"
7679                           "\xa9\xda\x1e\x9e\xb1\x3e\x2a\x8f"
7680                           "\xea\xa5\x6a\x85\xd1\xf4\xa8\xa5",
7681                 .ilen   = 32,
7682                 .result = "\x54\x65\x61\x20\x69\x73\x20\x67"
7683                           "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
7684                           "\x79\x6f\x75\x21\x21\x21\x20\x72"
7685                           "\x65\x61\x6c\x6c\x79\x21\x21\x21",
7686                 .rlen   = 32,
7687         }
7688 };
7689
7690 /*
7691  * FCrypt test vectors
7692  */
7693 #define FCRYPT_ENC_TEST_VECTORS ARRAY_SIZE(fcrypt_pcbc_enc_tv_template)
7694 #define FCRYPT_DEC_TEST_VECTORS ARRAY_SIZE(fcrypt_pcbc_dec_tv_template)
7695
7696 static struct cipher_testvec fcrypt_pcbc_enc_tv_template[] = {
7697         { /* http://www.openafs.org/pipermail/openafs-devel/2000-December/005320.html */
7698                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00",
7699                 .klen   = 8,
7700                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
7701                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00",
7702                 .ilen   = 8,
7703                 .result = "\x0E\x09\x00\xC7\x3E\xF7\xED\x41",
7704                 .rlen   = 8,
7705         }, {
7706                 .key    = "\x11\x44\x77\xAA\xDD\x00\x33\x66",
7707                 .klen   = 8,
7708                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
7709                 .input  = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0",
7710                 .ilen   = 8,
7711                 .result = "\xD8\xED\x78\x74\x77\xEC\x06\x80",
7712                 .rlen   = 8,
7713         }, { /* From Arla */
7714                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
7715                 .klen   = 8,
7716                 .iv     = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7717                 .input  = "The quick brown fox jumps over the lazy dogs.\0\0",
7718                 .ilen   = 48,
7719                 .result = "\x00\xf0\x0e\x11\x75\xe6\x23\x82"
7720                           "\xee\xac\x98\x62\x44\x51\xe4\x84"
7721                           "\xc3\x59\xd8\xaa\x64\x60\xae\xf7"
7722                           "\xd2\xd9\x13\x79\x72\xa3\x45\x03"
7723                           "\x23\xb5\x62\xd7\x0c\xf5\x27\xd1"
7724                           "\xf8\x91\x3c\xac\x44\x22\x92\xef",
7725                 .rlen   = 48,
7726         }, {
7727                 .key    = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7728                 .klen   = 8,
7729                 .iv     = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
7730                 .input  = "The quick brown fox jumps over the lazy dogs.\0\0",
7731                 .ilen   = 48,
7732                 .result = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c"
7733                           "\x01\x88\x7f\x3e\x31\x6e\x62\x9d"
7734                           "\xd8\xe0\x57\xa3\x06\x3a\x42\x58"
7735                           "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0"
7736                           "\x19\x89\x09\x1c\x2a\x8e\x8c\x94"
7737                           "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f",
7738                 .rlen   = 48,
7739         }, { /* split-page version */
7740                 .key    = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7741                 .klen   = 8,
7742                 .iv     = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
7743                 .input  = "The quick brown fox jumps over the lazy dogs.\0\0",
7744                 .ilen   = 48,
7745                 .result = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c"
7746                           "\x01\x88\x7f\x3e\x31\x6e\x62\x9d"
7747                           "\xd8\xe0\x57\xa3\x06\x3a\x42\x58"
7748                           "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0"
7749                           "\x19\x89\x09\x1c\x2a\x8e\x8c\x94"
7750                           "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f",
7751                 .rlen   = 48,
7752                 .np     = 2,
7753                 .tap    = { 20, 28 },
7754         }
7755 };
7756
7757 static struct cipher_testvec fcrypt_pcbc_dec_tv_template[] = {
7758         { /* http://www.openafs.org/pipermail/openafs-devel/2000-December/005320.html */
7759                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00",
7760                 .klen   = 8,
7761                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
7762                 .input  = "\x0E\x09\x00\xC7\x3E\xF7\xED\x41",
7763                 .ilen   = 8,
7764                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
7765                 .rlen   = 8,
7766         }, {
7767                 .key    = "\x11\x44\x77\xAA\xDD\x00\x33\x66",
7768                 .klen   = 8,
7769                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
7770                 .input  = "\xD8\xED\x78\x74\x77\xEC\x06\x80",
7771                 .ilen   = 8,
7772                 .result = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0",
7773                 .rlen   = 8,
7774         }, { /* From Arla */
7775                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
7776                 .klen   = 8,
7777                 .iv     = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7778                 .input  = "\x00\xf0\x0e\x11\x75\xe6\x23\x82"
7779                           "\xee\xac\x98\x62\x44\x51\xe4\x84"
7780                           "\xc3\x59\xd8\xaa\x64\x60\xae\xf7"
7781                           "\xd2\xd9\x13\x79\x72\xa3\x45\x03"
7782                           "\x23\xb5\x62\xd7\x0c\xf5\x27\xd1"
7783                           "\xf8\x91\x3c\xac\x44\x22\x92\xef",
7784                 .ilen   = 48,
7785                 .result = "The quick brown fox jumps over the lazy dogs.\0\0",
7786                 .rlen   = 48,
7787         }, {
7788                 .key    = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7789                 .klen   = 8,
7790                 .iv     = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
7791                 .input  = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c"
7792                           "\x01\x88\x7f\x3e\x31\x6e\x62\x9d"
7793                           "\xd8\xe0\x57\xa3\x06\x3a\x42\x58"
7794                           "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0"
7795                           "\x19\x89\x09\x1c\x2a\x8e\x8c\x94"
7796                           "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f",
7797                 .ilen   = 48,
7798                 .result = "The quick brown fox jumps over the lazy dogs.\0\0",
7799                 .rlen   = 48,
7800         }, { /* split-page version */
7801                 .key    = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7802                 .klen   = 8,
7803                 .iv     = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
7804                 .input  = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c"
7805                           "\x01\x88\x7f\x3e\x31\x6e\x62\x9d"
7806                           "\xd8\xe0\x57\xa3\x06\x3a\x42\x58"
7807                           "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0"
7808                           "\x19\x89\x09\x1c\x2a\x8e\x8c\x94"
7809                           "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f",
7810                 .ilen   = 48,
7811                 .result = "The quick brown fox jumps over the lazy dogs.\0\0",
7812                 .rlen   = 48,
7813                 .np     = 2,
7814                 .tap    = { 20, 28 },
7815         }
7816 };
7817
7818 /*
7819  * CAMELLIA test vectors.
7820  */
7821 #define CAMELLIA_ENC_TEST_VECTORS 3
7822 #define CAMELLIA_DEC_TEST_VECTORS 3
7823 #define CAMELLIA_CBC_ENC_TEST_VECTORS 2
7824 #define CAMELLIA_CBC_DEC_TEST_VECTORS 2
7825
7826 static struct cipher_testvec camellia_enc_tv_template[] = {
7827         {
7828                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7829                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7830                 .klen   = 16,
7831                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7832                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7833                 .ilen   = 16,
7834                 .result = "\x67\x67\x31\x38\x54\x96\x69\x73"
7835                           "\x08\x57\x06\x56\x48\xea\xbe\x43",
7836                 .rlen   = 16,
7837         }, {
7838                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7839                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
7840                           "\x00\x11\x22\x33\x44\x55\x66\x77",
7841                 .klen   = 24,
7842                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7843                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7844                 .ilen   = 16,
7845                 .result = "\xb4\x99\x34\x01\xb3\xe9\x96\xf8"
7846                           "\x4e\xe5\xce\xe7\xd7\x9b\x09\xb9",
7847                 .rlen   = 16,
7848         }, {
7849                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7850                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
7851                           "\x00\x11\x22\x33\x44\x55\x66\x77"
7852                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
7853                 .klen   = 32,
7854                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7855                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7856                 .ilen   = 16,
7857                 .result = "\x9a\xcc\x23\x7d\xff\x16\xd7\x6c"
7858                           "\x20\xef\x7c\x91\x9e\x3a\x75\x09",
7859                 .rlen   = 16,
7860         },
7861 };
7862
7863 static struct cipher_testvec camellia_dec_tv_template[] = {
7864         {
7865                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7866                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7867                 .klen   = 16,
7868                 .input  = "\x67\x67\x31\x38\x54\x96\x69\x73"
7869                           "\x08\x57\x06\x56\x48\xea\xbe\x43",
7870                 .ilen   = 16,
7871                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7872                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7873                 .rlen   = 16,
7874         }, {
7875                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7876                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
7877                           "\x00\x11\x22\x33\x44\x55\x66\x77",
7878                 .klen   = 24,
7879                 .input  = "\xb4\x99\x34\x01\xb3\xe9\x96\xf8"
7880                           "\x4e\xe5\xce\xe7\xd7\x9b\x09\xb9",
7881                 .ilen   = 16,
7882                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7883                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7884                 .rlen   = 16,
7885         }, {
7886                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7887                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
7888                           "\x00\x11\x22\x33\x44\x55\x66\x77"
7889                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
7890                 .klen   = 32,
7891                 .input  = "\x9a\xcc\x23\x7d\xff\x16\xd7\x6c"
7892                           "\x20\xef\x7c\x91\x9e\x3a\x75\x09",
7893                 .ilen   = 16,
7894                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7895                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7896                 .rlen   = 16,
7897         },
7898 };
7899
7900 static struct cipher_testvec camellia_cbc_enc_tv_template[] = {
7901         {
7902                 .key    = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b"
7903                           "\x51\x2e\x03\xd5\x34\x12\x00\x06",
7904                 .klen   = 16,
7905                 .iv     = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30"
7906                           "\xb4\x22\xda\x80\x2c\x9f\xac\x41",
7907                 .input  = "Single block msg",
7908                 .ilen   = 16,
7909                 .result = "\xea\x32\x12\x76\x3b\x50\x10\xe7"
7910                           "\x18\xf6\xfd\x5d\xf6\x8f\x13\x51",
7911                 .rlen   = 16,
7912         }, {
7913                 .key    = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0"
7914                           "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a",
7915                 .klen   = 16,
7916                 .iv     = "\x56\x2e\x17\x99\x6d\x09\x3d\x28"
7917                           "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58",
7918                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
7919                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
7920                           "\x10\x11\x12\x13\x14\x15\x16\x17"
7921                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
7922                 .ilen   = 32,
7923                 .result = "\xa5\xdf\x6e\x50\xda\x70\x6c\x01"
7924                           "\x4a\xab\xf3\xf2\xd6\xfc\x6c\xfd"
7925                           "\x19\xb4\x3e\x57\x1c\x02\x5e\xa0"
7926                           "\x15\x78\xe0\x5e\xf2\xcb\x87\x16",
7927                 .rlen   = 32,
7928         },
7929 };
7930
7931 static struct cipher_testvec camellia_cbc_dec_tv_template[] = {
7932         {
7933                 .key    = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b"
7934                           "\x51\x2e\x03\xd5\x34\x12\x00\x06",
7935                 .klen   = 16,
7936                 .iv     = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30"
7937                           "\xb4\x22\xda\x80\x2c\x9f\xac\x41",
7938                 .input  = "\xea\x32\x12\x76\x3b\x50\x10\xe7"
7939                           "\x18\xf6\xfd\x5d\xf6\x8f\x13\x51",
7940                 .ilen   = 16,
7941                 .result = "Single block msg",
7942                 .rlen   = 16,
7943         }, {
7944                 .key    = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0"
7945                           "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a",
7946                 .klen   = 16,
7947                 .iv     = "\x56\x2e\x17\x99\x6d\x09\x3d\x28"
7948                           "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58",
7949                 .input = "\xa5\xdf\x6e\x50\xda\x70\x6c\x01"
7950                           "\x4a\xab\xf3\xf2\xd6\xfc\x6c\xfd"
7951                           "\x19\xb4\x3e\x57\x1c\x02\x5e\xa0"
7952                           "\x15\x78\xe0\x5e\xf2\xcb\x87\x16",
7953                 .ilen   = 32,
7954                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
7955                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
7956                           "\x10\x11\x12\x13\x14\x15\x16\x17"
7957                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
7958                 .rlen   = 32,
7959         },
7960 };
7961
7962 /*
7963  * SEED test vectors
7964  */
7965 #define SEED_ENC_TEST_VECTORS   4
7966 #define SEED_DEC_TEST_VECTORS   4
7967
7968 static struct cipher_testvec seed_enc_tv_template[] = {
7969         {
7970                 .key    = zeroed_string,
7971                 .klen   = 16,
7972                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
7973                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
7974                 .ilen   = 16,
7975                 .result = "\x5e\xba\xc6\xe0\x05\x4e\x16\x68"
7976                           "\x19\xaf\xf1\xcc\x6d\x34\x6c\xdb",
7977                 .rlen   = 16,
7978         }, {
7979                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
7980                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
7981                 .klen   = 16,
7982                 .input  = zeroed_string,
7983                 .ilen   = 16,
7984                 .result = "\xc1\x1f\x22\xf2\x01\x40\x50\x50"
7985                           "\x84\x48\x35\x97\xe4\x37\x0f\x43",
7986                 .rlen   = 16,
7987         }, {
7988                 .key    = "\x47\x06\x48\x08\x51\xe6\x1b\xe8"
7989                           "\x5d\x74\xbf\xb3\xfd\x95\x61\x85",
7990                 .klen   = 16,
7991                 .input  = "\x83\xa2\xf8\xa2\x88\x64\x1f\xb9"
7992                           "\xa4\xe9\xa5\xcc\x2f\x13\x1c\x7d",
7993                 .ilen   = 16,
7994                 .result = "\xee\x54\xd1\x3e\xbc\xae\x70\x6d"
7995                           "\x22\x6b\xc3\x14\x2c\xd4\x0d\x4a",
7996                 .rlen   = 16,
7997         }, {
7998                 .key    = "\x28\xdb\xc3\xbc\x49\xff\xd8\x7d"
7999                           "\xcf\xa5\x09\xb1\x1d\x42\x2b\xe7",
8000                 .klen   = 16,
8001                 .input  = "\xb4\x1e\x6b\xe2\xeb\xa8\x4a\x14"
8002                           "\x8e\x2e\xed\x84\x59\x3c\x5e\xc7",
8003                 .ilen   = 16,
8004                 .result = "\x9b\x9b\x7b\xfc\xd1\x81\x3c\xb9"
8005                           "\x5d\x0b\x36\x18\xf4\x0f\x51\x22",
8006                 .rlen   = 16,
8007         }
8008 };
8009
8010 static struct cipher_testvec seed_dec_tv_template[] = {
8011         {
8012                 .key    = zeroed_string,
8013                 .klen   = 16,
8014                 .input  = "\x5e\xba\xc6\xe0\x05\x4e\x16\x68"
8015                           "\x19\xaf\xf1\xcc\x6d\x34\x6c\xdb",
8016                 .ilen   = 16,
8017                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
8018                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
8019                 .rlen   = 16,
8020         }, {
8021                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
8022                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
8023                 .klen   = 16,
8024                 .input  = "\xc1\x1f\x22\xf2\x01\x40\x50\x50"
8025                           "\x84\x48\x35\x97\xe4\x37\x0f\x43",
8026                 .ilen   = 16,
8027                 .result = zeroed_string,
8028                 .rlen   = 16,
8029         }, {
8030                 .key    = "\x47\x06\x48\x08\x51\xe6\x1b\xe8"
8031                           "\x5d\x74\xbf\xb3\xfd\x95\x61\x85",
8032                 .klen   = 16,
8033                 .input  = "\xee\x54\xd1\x3e\xbc\xae\x70\x6d"
8034                           "\x22\x6b\xc3\x14\x2c\xd4\x0d\x4a",
8035                 .ilen   = 16,
8036                 .result = "\x83\xa2\xf8\xa2\x88\x64\x1f\xb9"
8037                           "\xa4\xe9\xa5\xcc\x2f\x13\x1c\x7d",
8038                 .rlen   = 16,
8039         }, {
8040                 .key    = "\x28\xdb\xc3\xbc\x49\xff\xd8\x7d"
8041                           "\xcf\xa5\x09\xb1\x1d\x42\x2b\xe7",
8042                 .klen   = 16,
8043                 .input  = "\x9b\x9b\x7b\xfc\xd1\x81\x3c\xb9"
8044                           "\x5d\x0b\x36\x18\xf4\x0f\x51\x22",
8045                 .ilen   = 16,
8046                 .result = "\xb4\x1e\x6b\xe2\xeb\xa8\x4a\x14"
8047                           "\x8e\x2e\xed\x84\x59\x3c\x5e\xc7",
8048                 .rlen   = 16,
8049         }
8050 };
8051
8052 #define SALSA20_STREAM_ENC_TEST_VECTORS 5
8053 static struct cipher_testvec salsa20_stream_enc_tv_template[] = {
8054         /*
8055         * Testvectors from verified.test-vectors submitted to ECRYPT.
8056         * They are truncated to size 39, 64, 111, 129 to test a variety
8057         * of input length.
8058         */
8059         { /* Set 3, vector 0 */
8060                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
8061                         "\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F",
8062                 .klen   = 16,
8063                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
8064                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
8065                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8066                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8067                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8068                         "\x00\x00\x00\x00\x00\x00\x00",
8069                 .ilen   = 39,
8070                 .result = "\x2D\xD5\xC3\xF7\xBA\x2B\x20\xF7"
8071                          "\x68\x02\x41\x0C\x68\x86\x88\x89"
8072                          "\x5A\xD8\xC1\xBD\x4E\xA6\xC9\xB1"
8073                          "\x40\xFB\x9B\x90\xE2\x10\x49\xBF"
8074                          "\x58\x3F\x52\x79\x70\xEB\xC1",
8075                 .rlen   = 39,
8076         }, { /* Set 5, vector 0 */
8077                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00"
8078                         "\x00\x00\x00\x00\x00\x00\x00\x00",
8079                 .klen   = 16,
8080                 .iv     = "\x80\x00\x00\x00\x00\x00\x00\x00",
8081                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
8082                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8083                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8084                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8085                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8086                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8087                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8088                         "\x00\x00\x00\x00\x00\x00\x00\x00",
8089                 .ilen   = 64,
8090                 .result = "\xB6\x6C\x1E\x44\x46\xDD\x95\x57"
8091                          "\xE5\x78\xE2\x23\xB0\xB7\x68\x01"
8092                          "\x7B\x23\xB2\x67\xBB\x02\x34\xAE"
8093                          "\x46\x26\xBF\x44\x3F\x21\x97\x76"
8094                          "\x43\x6F\xB1\x9F\xD0\xE8\x86\x6F"
8095                          "\xCD\x0D\xE9\xA9\x53\x8F\x4A\x09"
8096                          "\xCA\x9A\xC0\x73\x2E\x30\xBC\xF9"
8097                          "\x8E\x4F\x13\xE4\xB9\xE2\x01\xD9",
8098                 .rlen   = 64,
8099         }, { /* Set 3, vector 27 */
8100                 .key    = "\x1B\x1C\x1D\x1E\x1F\x20\x21\x22"
8101                         "\x23\x24\x25\x26\x27\x28\x29\x2A"
8102                         "\x2B\x2C\x2D\x2E\x2F\x30\x31\x32"
8103                         "\x33\x34\x35\x36\x37\x38\x39\x3A",
8104                 .klen   = 32,
8105                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
8106                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
8107                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8108                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8109                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8110                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8111                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8112                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8113                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8114                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8115                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8116                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8117                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8118                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8119                         "\x00\x00\x00\x00\x00\x00\x00",
8120                 .ilen   = 111,
8121                 .result = "\xAE\x39\x50\x8E\xAC\x9A\xEC\xE7"
8122                          "\xBF\x97\xBB\x20\xB9\xDE\xE4\x1F"
8123                          "\x87\xD9\x47\xF8\x28\x91\x35\x98"
8124                          "\xDB\x72\xCC\x23\x29\x48\x56\x5E"
8125                          "\x83\x7E\x0B\xF3\x7D\x5D\x38\x7B"
8126                          "\x2D\x71\x02\xB4\x3B\xB5\xD8\x23"
8127                          "\xB0\x4A\xDF\x3C\xEC\xB6\xD9\x3B"
8128                          "\x9B\xA7\x52\xBE\xC5\xD4\x50\x59"
8129                          "\x15\x14\xB4\x0E\x40\xE6\x53\xD1"
8130                          "\x83\x9C\x5B\xA0\x92\x29\x6B\x5E"
8131                          "\x96\x5B\x1E\x2F\xD3\xAC\xC1\x92"
8132                          "\xB1\x41\x3F\x19\x2F\xC4\x3B\xC6"
8133                          "\x95\x46\x45\x54\xE9\x75\x03\x08"
8134                          "\x44\xAF\xE5\x8A\x81\x12\x09",
8135                 .rlen   = 111,
8136         }, { /* Set 5, vector 27 */
8137                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00"
8138                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8139                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8140                         "\x00\x00\x00\x00\x00\x00\x00\x00",
8141                 .klen   = 32,
8142                 .iv     = "\x00\x00\x00\x10\x00\x00\x00\x00",
8143                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
8144                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8145                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8146                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8147                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8148                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8149                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8150                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8151                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8152                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8153                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8154                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8155                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8156                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8157                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8158                         "\x00\x00\x00\x00\x00\x00\x00\x00"
8159                         "\x00",
8160                 .ilen   = 129,
8161                 .result = "\xD2\xDB\x1A\x5C\xF1\xC1\xAC\xDB"
8162                          "\xE8\x1A\x7A\x43\x40\xEF\x53\x43"
8163                          "\x5E\x7F\x4B\x1A\x50\x52\x3F\x8D"
8164                          "\x28\x3D\xCF\x85\x1D\x69\x6E\x60"
8165                          "\xF2\xDE\x74\x56\x18\x1B\x84\x10"
8166                          "\xD4\x62\xBA\x60\x50\xF0\x61\xF2"
8167                          "\x1C\x78\x7F\xC1\x24\x34\xAF\x58"
8168                          "\xBF\x2C\x59\xCA\x90\x77\xF3\xB0"
8169                          "\x5B\x4A\xDF\x89\xCE\x2C\x2F\xFC"
8170                          "\x67\xF0\xE3\x45\xE8\xB3\xB3\x75"
8171                          "\xA0\x95\x71\xA1\x29\x39\x94\xCA"
8172                          "\x45\x2F\xBD\xCB\x10\xB6\xBE\x9F"
8173                          "\x8E\xF9\xB2\x01\x0A\x5A\x0A\xB7"
8174                          "\x6B\x9D\x70\x8E\x4B\xD6\x2F\xCD"
8175                          "\x2E\x40\x48\x75\xE9\xE2\x21\x45"
8176                          "\x0B\xC9\xB6\xB5\x66\xBC\x9A\x59"
8177                          "\x5A",
8178                 .rlen   = 129,
8179         }, { /* large test vector generated using Crypto++ */
8180                 .key =  "\x00\x01\x02\x03\x04\x05\x06\x07"
8181                         "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
8182                         "\x10\x11\x12\x13\x14\x15\x16\x17"
8183                         "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
8184                 .klen = 32,
8185                 .iv =   "\x00\x00\x00\x00\x00\x00\x00\x00"
8186                         "\x00\x00\x00\x00\x00\x00\x00\x00",
8187                 .input =
8188                         "\x00\x01\x02\x03\x04\x05\x06\x07"
8189                         "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
8190                         "\x10\x11\x12\x13\x14\x15\x16\x17"
8191                         "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
8192                         "\x20\x21\x22\x23\x24\x25\x26\x27"
8193                         "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
8194                         "\x30\x31\x32\x33\x34\x35\x36\x37"
8195                         "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
8196                         "\x40\x41\x42\x43\x44\x45\x46\x47"
8197                         "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
8198                         "\x50\x51\x52\x53\x54\x55\x56\x57"
8199                         "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
8200                         "\x60\x61\x62\x63\x64\x65\x66\x67"
8201                         "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
8202                         "\x70\x71\x72\x73\x74\x75\x76\x77"
8203                         "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
8204                         "\x80\x81\x82\x83\x84\x85\x86\x87"
8205                         "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
8206                         "\x90\x91\x92\x93\x94\x95\x96\x97"
8207                         "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
8208                         "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
8209                         "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
8210                         "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
8211                         "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
8212                         "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
8213                         "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
8214                         "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
8215                         "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
8216                         "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
8217                         "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
8218                         "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
8219                         "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"
8220                         "\x00\x03\x06\x09\x0c\x0f\x12\x15"
8221                         "\x18\x1b\x1e\x21\x24\x27\x2a\x2d"
8222                         "\x30\x33\x36\x39\x3c\x3f\x42\x45"
8223                         "\x48\x4b\x4e\x51\x54\x57\x5a\x5d"
8224                         "\x60\x63\x66\x69\x6c\x6f\x72\x75"
8225                         "\x78\x7b\x7e\x81\x84\x87\x8a\x8d"
8226                         "\x90\x93\x96\x99\x9c\x9f\xa2\xa5"
8227                         "\xa8\xab\xae\xb1\xb4\xb7\xba\xbd"
8228                         "\xc0\xc3\xc6\xc9\xcc\xcf\xd2\xd5"
8229                         "\xd8\xdb\xde\xe1\xe4\xe7\xea\xed"
8230                         "\xf0\xf3\xf6\xf9\xfc\xff\x02\x05"
8231                         "\x08\x0b\x0e\x11\x14\x17\x1a\x1d"
8232                         "\x20\x23\x26\x29\x2c\x2f\x32\x35"
8233                         "\x38\x3b\x3e\x41\x44\x47\x4a\x4d"
8234                         "\x50\x53\x56\x59\x5c\x5f\x62\x65"
8235                         "\x68\x6b\x6e\x71\x74\x77\x7a\x7d"
8236                         "\x80\x83\x86\x89\x8c\x8f\x92\x95"
8237                         "\x98\x9b\x9e\xa1\xa4\xa7\xaa\xad"
8238                         "\xb0\xb3\xb6\xb9\xbc\xbf\xc2\xc5"
8239                         "\xc8\xcb\xce\xd1\xd4\xd7\xda\xdd"
8240                         "\xe0\xe3\xe6\xe9\xec\xef\xf2\xf5"
8241                         "\xf8\xfb\xfe\x01\x04\x07\x0a\x0d"
8242                         "\x10\x13\x16\x19\x1c\x1f\x22\x25"
8243                         "\x28\x2b\x2e\x31\x34\x37\x3a\x3d"
8244                         "\x40\x43\x46\x49\x4c\x4f\x52\x55"
8245                         "\x58\x5b\x5e\x61\x64\x67\x6a\x6d"
8246                         "\x70\x73\x76\x79\x7c\x7f\x82\x85"
8247                         "\x88\x8b\x8e\x91\x94\x97\x9a\x9d"
8248                         "\xa0\xa3\xa6\xa9\xac\xaf\xb2\xb5"
8249                         "\xb8\xbb\xbe\xc1\xc4\xc7\xca\xcd"
8250                         "\xd0\xd3\xd6\xd9\xdc\xdf\xe2\xe5"
8251                         "\xe8\xeb\xee\xf1\xf4\xf7\xfa\xfd"
8252                         "\x00\x05\x0a\x0f\x14\x19\x1e\x23"
8253                         "\x28\x2d\x32\x37\x3c\x41\x46\x4b"
8254                         "\x50\x55\x5a\x5f\x64\x69\x6e\x73"
8255                         "\x78\x7d\x82\x87\x8c\x91\x96\x9b"
8256                         "\xa0\xa5\xaa\xaf\xb4\xb9\xbe\xc3"
8257                         "\xc8\xcd\xd2\xd7\xdc\xe1\xe6\xeb"
8258                         "\xf0\xf5\xfa\xff\x04\x09\x0e\x13"
8259                         "\x18\x1d\x22\x27\x2c\x31\x36\x3b"
8260                         "\x40\x45\x4a\x4f\x54\x59\x5e\x63"
8261                         "\x68\x6d\x72\x77\x7c\x81\x86\x8b"
8262                         "\x90\x95\x9a\x9f\xa4\xa9\xae\xb3"
8263                         "\xb8\xbd\xc2\xc7\xcc\xd1\xd6\xdb"
8264                         "\xe0\xe5\xea\xef\xf4\xf9\xfe\x03"
8265                         "\x08\x0d\x12\x17\x1c\x21\x26\x2b"
8266                         "\x30\x35\x3a\x3f\x44\x49\x4e\x53"
8267                         "\x58\x5d\x62\x67\x6c\x71\x76\x7b"
8268                         "\x80\x85\x8a\x8f\x94\x99\x9e\xa3"
8269                         "\xa8\xad\xb2\xb7\xbc\xc1\xc6\xcb"
8270                         "\xd0\xd5\xda\xdf\xe4\xe9\xee\xf3"
8271                         "\xf8\xfd\x02\x07\x0c\x11\x16\x1b"
8272                         "\x20\x25\x2a\x2f\x34\x39\x3e\x43"
8273                         "\x48\x4d\x52\x57\x5c\x61\x66\x6b"
8274                         "\x70\x75\x7a\x7f\x84\x89\x8e\x93"
8275                         "\x98\x9d\xa2\xa7\xac\xb1\xb6\xbb"
8276                         "\xc0\xc5\xca\xcf\xd4\xd9\xde\xe3"
8277                         "\xe8\xed\xf2\xf7\xfc\x01\x06\x0b"
8278                         "\x10\x15\x1a\x1f\x24\x29\x2e\x33"
8279                         "\x38\x3d\x42\x47\x4c\x51\x56\x5b"
8280                         "\x60\x65\x6a\x6f\x74\x79\x7e\x83"
8281                         "\x88\x8d\x92\x97\x9c\xa1\xa6\xab"
8282                         "\xb0\xb5\xba\xbf\xc4\xc9\xce\xd3"
8283                         "\xd8\xdd\xe2\xe7\xec\xf1\xf6\xfb"
8284                         "\x00\x07\x0e\x15\x1c\x23\x2a\x31"
8285                         "\x38\x3f\x46\x4d\x54\x5b\x62\x69"
8286                         "\x70\x77\x7e\x85\x8c\x93\x9a\xa1"
8287                         "\xa8\xaf\xb6\xbd\xc4\xcb\xd2\xd9"
8288                         "\xe0\xe7\xee\xf5\xfc\x03\x0a\x11"
8289                         "\x18\x1f\x26\x2d\x34\x3b\x42\x49"
8290                         "\x50\x57\x5e\x65\x6c\x73\x7a\x81"
8291                         "\x88\x8f\x96\x9d\xa4\xab\xb2\xb9"
8292                         "\xc0\xc7\xce\xd5\xdc\xe3\xea\xf1"
8293                         "\xf8\xff\x06\x0d\x14\x1b\x22\x29"
8294                         "\x30\x37\x3e\x45\x4c\x53\x5a\x61"
8295                         "\x68\x6f\x76\x7d\x84\x8b\x92\x99"
8296                         "\xa0\xa7\xae\xb5\xbc\xc3\xca\xd1"
8297                         "\xd8\xdf\xe6\xed\xf4\xfb\x02\x09"
8298                         "\x10\x17\x1e\x25\x2c\x33\x3a\x41"
8299                         "\x48\x4f\x56\x5d\x64\x6b\x72\x79"
8300                         "\x80\x87\x8e\x95\x9c\xa3\xaa\xb1"
8301                         "\xb8\xbf\xc6\xcd\xd4\xdb\xe2\xe9"
8302                         "\xf0\xf7\xfe\x05\x0c\x13\x1a\x21"
8303                         "\x28\x2f\x36\x3d\x44\x4b\x52\x59"
8304                         "\x60\x67\x6e\x75\x7c\x83\x8a\x91"
8305                         "\x98\x9f\xa6\xad\xb4\xbb\xc2\xc9"
8306                         "\xd0\xd7\xde\xe5\xec\xf3\xfa\x01"
8307                         "\x08\x0f\x16\x1d\x24\x2b\x32\x39"
8308                         "\x40\x47\x4e\x55\x5c\x63\x6a\x71"
8309                         "\x78\x7f\x86\x8d\x94\x9b\xa2\xa9"
8310                         "\xb0\xb7\xbe\xc5\xcc\xd3\xda\xe1"
8311                         "\xe8\xef\xf6\xfd\x04\x0b\x12\x19"
8312                         "\x20\x27\x2e\x35\x3c\x43\x4a\x51"
8313                         "\x58\x5f\x66\x6d\x74\x7b\x82\x89"
8314                         "\x90\x97\x9e\xa5\xac\xb3\xba\xc1"
8315                         "\xc8\xcf\xd6\xdd\xe4\xeb\xf2\xf9"
8316                         "\x00\x09\x12\x1b\x24\x2d\x36\x3f"
8317                         "\x48\x51\x5a\x63\x6c\x75\x7e\x87"
8318                         "\x90\x99\xa2\xab\xb4\xbd\xc6\xcf"
8319                         "\xd8\xe1\xea\xf3\xfc\x05\x0e\x17"
8320                         "\x20\x29\x32\x3b\x44\x4d\x56\x5f"
8321                         "\x68\x71\x7a\x83\x8c\x95\x9e\xa7"
8322                         "\xb0\xb9\xc2\xcb\xd4\xdd\xe6\xef"
8323                         "\xf8\x01\x0a\x13\x1c\x25\x2e\x37"
8324                         "\x40\x49\x52\x5b\x64\x6d\x76\x7f"
8325                         "\x88\x91\x9a\xa3\xac\xb5\xbe\xc7"
8326                         "\xd0\xd9\xe2\xeb\xf4\xfd\x06\x0f"
8327                         "\x18\x21\x2a\x33\x3c\x45\x4e\x57"
8328                         "\x60\x69\x72\x7b\x84\x8d\x96\x9f"
8329                         "\xa8\xb1\xba\xc3\xcc\xd5\xde\xe7"
8330                         "\xf0\xf9\x02\x0b\x14\x1d\x26\x2f"
8331                         "\x38\x41\x4a\x53\x5c\x65\x6e\x77"
8332                         "\x80\x89\x92\x9b\xa4\xad\xb6\xbf"
8333                         "\xc8\xd1\xda\xe3\xec\xf5\xfe\x07"
8334                         "\x10\x19\x22\x2b\x34\x3d\x46\x4f"
8335                         "\x58\x61\x6a\x73\x7c\x85\x8e\x97"
8336                         "\xa0\xa9\xb2\xbb\xc4\xcd\xd6\xdf"
8337                         "\xe8\xf1\xfa\x03\x0c\x15\x1e\x27"
8338                         "\x30\x39\x42\x4b\x54\x5d\x66\x6f"
8339                         "\x78\x81\x8a\x93\x9c\xa5\xae\xb7"
8340                         "\xc0\xc9\xd2\xdb\xe4\xed\xf6\xff"
8341                         "\x08\x11\x1a\x23\x2c\x35\x3e\x47"
8342                         "\x50\x59\x62\x6b\x74\x7d\x86\x8f"
8343                         "\x98\xa1\xaa\xb3\xbc\xc5\xce\xd7"
8344                         "\xe0\xe9\xf2\xfb\x04\x0d\x16\x1f"
8345                         "\x28\x31\x3a\x43\x4c\x55\x5e\x67"
8346                         "\x70\x79\x82\x8b\x94\x9d\xa6\xaf"
8347                         "\xb8\xc1\xca\xd3\xdc\xe5\xee\xf7"
8348                         "\x00\x0b\x16\x21\x2c\x37\x42\x4d"
8349                         "\x58\x63\x6e\x79\x84\x8f\x9a\xa5"
8350                         "\xb0\xbb\xc6\xd1\xdc\xe7\xf2\xfd"
8351                         "\x08\x13\x1e\x29\x34\x3f\x4a\x55"
8352                         "\x60\x6b\x76\x81\x8c\x97\xa2\xad"
8353                         "\xb8\xc3\xce\xd9\xe4\xef\xfa\x05"
8354                         "\x10\x1b\x26\x31\x3c\x47\x52\x5d"
8355                         "\x68\x73\x7e\x89\x94\x9f\xaa\xb5"
8356                         "\xc0\xcb\xd6\xe1\xec\xf7\x02\x0d"
8357                         "\x18\x23\x2e\x39\x44\x4f\x5a\x65"
8358                         "\x70\x7b\x86\x91\x9c\xa7\xb2\xbd"
8359                         "\xc8\xd3\xde\xe9\xf4\xff\x0a\x15"
8360                         "\x20\x2b\x36\x41\x4c\x57\x62\x6d"
8361                         "\x78\x83\x8e\x99\xa4\xaf\xba\xc5"
8362                         "\xd0\xdb\xe6\xf1\xfc\x07\x12\x1d"
8363                         "\x28\x33\x3e\x49\x54\x5f\x6a\x75"
8364                         "\x80\x8b\x96\xa1\xac\xb7\xc2\xcd"
8365                         "\xd8\xe3\xee\xf9\x04\x0f\x1a\x25"
8366                         "\x30\x3b\x46\x51\x5c\x67\x72\x7d"
8367                         "\x88\x93\x9e\xa9\xb4\xbf\xca\xd5"
8368                         "\xe0\xeb\xf6\x01\x0c\x17\x22\x2d"
8369                         "\x38\x43\x4e\x59\x64\x6f\x7a\x85"
8370                         "\x90\x9b\xa6\xb1\xbc\xc7\xd2\xdd"
8371                         "\xe8\xf3\xfe\x09\x14\x1f\x2a\x35"
8372                         "\x40\x4b\x56\x61\x6c\x77\x82\x8d"
8373                         "\x98\xa3\xae\xb9\xc4\xcf\xda\xe5"
8374                         "\xf0\xfb\x06\x11\x1c\x27\x32\x3d"
8375                         "\x48\x53\x5e\x69\x74\x7f\x8a\x95"
8376                         "\xa0\xab\xb6\xc1\xcc\xd7\xe2\xed"
8377                         "\xf8\x03\x0e\x19\x24\x2f\x3a\x45"
8378                         "\x50\x5b\x66\x71\x7c\x87\x92\x9d"
8379                         "\xa8\xb3\xbe\xc9\xd4\xdf\xea\xf5"
8380                         "\x00\x0d\x1a\x27\x34\x41\x4e\x5b"
8381                         "\x68\x75\x82\x8f\x9c\xa9\xb6\xc3"
8382                         "\xd0\xdd\xea\xf7\x04\x11\x1e\x2b"
8383                         "\x38\x45\x52\x5f\x6c\x79\x86\x93"
8384                         "\xa0\xad\xba\xc7\xd4\xe1\xee\xfb"
8385                         "\x08\x15\x22\x2f\x3c\x49\x56\x63"
8386                         "\x70\x7d\x8a\x97\xa4\xb1\xbe\xcb"
8387                         "\xd8\xe5\xf2\xff\x0c\x19\x26\x33"
8388                         "\x40\x4d\x5a\x67\x74\x81\x8e\x9b"
8389                         "\xa8\xb5\xc2\xcf\xdc\xe9\xf6\x03"
8390                         "\x10\x1d\x2a\x37\x44\x51\x5e\x6b"
8391                         "\x78\x85\x92\x9f\xac\xb9\xc6\xd3"
8392                         "\xe0\xed\xfa\x07\x14\x21\x2e\x3b"
8393                         "\x48\x55\x62\x6f\x7c\x89\x96\xa3"
8394                         "\xb0\xbd\xca\xd7\xe4\xf1\xfe\x0b"
8395                         "\x18\x25\x32\x3f\x4c\x59\x66\x73"
8396                         "\x80\x8d\x9a\xa7\xb4\xc1\xce\xdb"
8397                         "\xe8\xf5\x02\x0f\x1c\x29\x36\x43"
8398                         "\x50\x5d\x6a\x77\x84\x91\x9e\xab"
8399                         "\xb8\xc5\xd2\xdf\xec\xf9\x06\x13"
8400                         "\x20\x2d\x3a\x47\x54\x61\x6e\x7b"
8401                         "\x88\x95\xa2\xaf\xbc\xc9\xd6\xe3"
8402                         "\xf0\xfd\x0a\x17\x24\x31\x3e\x4b"
8403                         "\x58\x65\x72\x7f\x8c\x99\xa6\xb3"
8404                         "\xc0\xcd\xda\xe7\xf4\x01\x0e\x1b"
8405                         "\x28\x35\x42\x4f\x5c\x69\x76\x83"
8406                         "\x90\x9d\xaa\xb7\xc4\xd1\xde\xeb"
8407                         "\xf8\x05\x12\x1f\x2c\x39\x46\x53"
8408                         "\x60\x6d\x7a\x87\x94\xa1\xae\xbb"
8409                         "\xc8\xd5\xe2\xef\xfc\x09\x16\x23"
8410                         "\x30\x3d\x4a\x57\x64\x71\x7e\x8b"
8411                         "\x98\xa5\xb2\xbf\xcc\xd9\xe6\xf3"
8412                         "\x00\x0f\x1e\x2d\x3c\x4b\x5a\x69"
8413                         "\x78\x87\x96\xa5\xb4\xc3\xd2\xe1"
8414                         "\xf0\xff\x0e\x1d\x2c\x3b\x4a\x59"
8415                         "\x68\x77\x86\x95\xa4\xb3\xc2\xd1"
8416                         "\xe0\xef\xfe\x0d\x1c\x2b\x3a\x49"
8417                         "\x58\x67\x76\x85\x94\xa3\xb2\xc1"
8418                         "\xd0\xdf\xee\xfd\x0c\x1b\x2a\x39"
8419                         "\x48\x57\x66\x75\x84\x93\xa2\xb1"
8420                         "\xc0\xcf\xde\xed\xfc\x0b\x1a\x29"
8421                         "\x38\x47\x56\x65\x74\x83\x92\xa1"
8422                         "\xb0\xbf\xce\xdd\xec\xfb\x0a\x19"
8423                         "\x28\x37\x46\x55\x64\x73\x82\x91"
8424                         "\xa0\xaf\xbe\xcd\xdc\xeb\xfa\x09"
8425                         "\x18\x27\x36\x45\x54\x63\x72\x81"
8426                         "\x90\x9f\xae\xbd\xcc\xdb\xea\xf9"
8427                         "\x08\x17\x26\x35\x44\x53\x62\x71"
8428                         "\x80\x8f\x9e\xad\xbc\xcb\xda\xe9"
8429                         "\xf8\x07\x16\x25\x34\x43\x52\x61"
8430                         "\x70\x7f\x8e\x9d\xac\xbb\xca\xd9"
8431                         "\xe8\xf7\x06\x15\x24\x33\x42\x51"
8432                         "\x60\x6f\x7e\x8d\x9c\xab\xba\xc9"
8433                         "\xd8\xe7\xf6\x05\x14\x23\x32\x41"
8434                         "\x50\x5f\x6e\x7d\x8c\x9b\xaa\xb9"
8435                         "\xc8\xd7\xe6\xf5\x04\x13\x22\x31"
8436                         "\x40\x4f\x5e\x6d\x7c\x8b\x9a\xa9"
8437                         "\xb8\xc7\xd6\xe5\xf4\x03\x12\x21"
8438                         "\x30\x3f\x4e\x5d\x6c\x7b\x8a\x99"
8439                         "\xa8\xb7\xc6\xd5\xe4\xf3\x02\x11"
8440                         "\x20\x2f\x3e\x4d\x5c\x6b\x7a\x89"
8441                         "\x98\xa7\xb6\xc5\xd4\xe3\xf2\x01"
8442                         "\x10\x1f\x2e\x3d\x4c\x5b\x6a\x79"
8443                         "\x88\x97\xa6\xb5\xc4\xd3\xe2\xf1"
8444                         "\x00\x11\x22\x33\x44\x55\x66\x77"
8445                         "\x88\x99\xaa\xbb\xcc\xdd\xee\xff"
8446                         "\x10\x21\x32\x43\x54\x65\x76\x87"
8447                         "\x98\xa9\xba\xcb\xdc\xed\xfe\x0f"
8448                         "\x20\x31\x42\x53\x64\x75\x86\x97"
8449                         "\xa8\xb9\xca\xdb\xec\xfd\x0e\x1f"
8450                         "\x30\x41\x52\x63\x74\x85\x96\xa7"
8451                         "\xb8\xc9\xda\xeb\xfc\x0d\x1e\x2f"
8452                         "\x40\x51\x62\x73\x84\x95\xa6\xb7"
8453                         "\xc8\xd9\xea\xfb\x0c\x1d\x2e\x3f"
8454                         "\x50\x61\x72\x83\x94\xa5\xb6\xc7"
8455                         "\xd8\xe9\xfa\x0b\x1c\x2d\x3e\x4f"
8456                         "\x60\x71\x82\x93\xa4\xb5\xc6\xd7"
8457                         "\xe8\xf9\x0a\x1b\x2c\x3d\x4e\x5f"
8458                         "\x70\x81\x92\xa3\xb4\xc5\xd6\xe7"
8459                         "\xf8\x09\x1a\x2b\x3c\x4d\x5e\x6f"
8460                         "\x80\x91\xa2\xb3\xc4\xd5\xe6\xf7"
8461                         "\x08\x19\x2a\x3b\x4c\x5d\x6e\x7f"
8462                         "\x90\xa1\xb2\xc3\xd4\xe5\xf6\x07"
8463                         "\x18\x29\x3a\x4b\x5c\x6d\x7e\x8f"
8464                         "\xa0\xb1\xc2\xd3\xe4\xf5\x06\x17"
8465                         "\x28\x39\x4a\x5b\x6c\x7d\x8e\x9f"
8466                         "\xb0\xc1\xd2\xe3\xf4\x05\x16\x27"
8467                         "\x38\x49\x5a\x6b\x7c\x8d\x9e\xaf"
8468                         "\xc0\xd1\xe2\xf3\x04\x15\x26\x37"
8469                         "\x48\x59\x6a\x7b\x8c\x9d\xae\xbf"
8470                         "\xd0\xe1\xf2\x03\x14\x25\x36\x47"
8471                         "\x58\x69\x7a\x8b\x9c\xad\xbe\xcf"
8472                         "\xe0\xf1\x02\x13\x24\x35\x46\x57"
8473                         "\x68\x79\x8a\x9b\xac\xbd\xce\xdf"
8474                         "\xf0\x01\x12\x23\x34\x45\x56\x67"
8475                         "\x78\x89\x9a\xab\xbc\xcd\xde\xef"
8476                         "\x00\x13\x26\x39\x4c\x5f\x72\x85"
8477                         "\x98\xab\xbe\xd1\xe4\xf7\x0a\x1d"
8478                         "\x30\x43\x56\x69\x7c\x8f\xa2\xb5"
8479                         "\xc8\xdb\xee\x01\x14\x27\x3a\x4d"
8480                         "\x60\x73\x86\x99\xac\xbf\xd2\xe5"
8481                         "\xf8\x0b\x1e\x31\x44\x57\x6a\x7d"
8482                         "\x90\xa3\xb6\xc9\xdc\xef\x02\x15"
8483                         "\x28\x3b\x4e\x61\x74\x87\x9a\xad"
8484                         "\xc0\xd3\xe6\xf9\x0c\x1f\x32\x45"
8485                         "\x58\x6b\x7e\x91\xa4\xb7\xca\xdd"
8486                         "\xf0\x03\x16\x29\x3c\x4f\x62\x75"
8487                         "\x88\x9b\xae\xc1\xd4\xe7\xfa\x0d"
8488                         "\x20\x33\x46\x59\x6c\x7f\x92\xa5"
8489                         "\xb8\xcb\xde\xf1\x04\x17\x2a\x3d"
8490                         "\x50\x63\x76\x89\x9c\xaf\xc2\xd5"
8491                         "\xe8\xfb\x0e\x21\x34\x47\x5a\x6d"
8492                         "\x80\x93\xa6\xb9\xcc\xdf\xf2\x05"
8493                         "\x18\x2b\x3e\x51\x64\x77\x8a\x9d"
8494                         "\xb0\xc3\xd6\xe9\xfc\x0f\x22\x35"
8495                         "\x48\x5b\x6e\x81\x94\xa7\xba\xcd"
8496                         "\xe0\xf3\x06\x19\x2c\x3f\x52\x65"
8497                         "\x78\x8b\x9e\xb1\xc4\xd7\xea\xfd"
8498                         "\x10\x23\x36\x49\x5c\x6f\x82\x95"
8499                         "\xa8\xbb\xce\xe1\xf4\x07\x1a\x2d"
8500                         "\x40\x53\x66\x79\x8c\x9f\xb2\xc5"
8501                         "\xd8\xeb\xfe\x11\x24\x37\x4a\x5d"
8502                         "\x70\x83\x96\xa9\xbc\xcf\xe2\xf5"
8503                         "\x08\x1b\x2e\x41\x54\x67\x7a\x8d"
8504                         "\xa0\xb3\xc6\xd9\xec\xff\x12\x25"
8505                         "\x38\x4b\x5e\x71\x84\x97\xaa\xbd"
8506                         "\xd0\xe3\xf6\x09\x1c\x2f\x42\x55"
8507                         "\x68\x7b\x8e\xa1\xb4\xc7\xda\xed"
8508                         "\x00\x15\x2a\x3f\x54\x69\x7e\x93"
8509                         "\xa8\xbd\xd2\xe7\xfc\x11\x26\x3b"
8510                         "\x50\x65\x7a\x8f\xa4\xb9\xce\xe3"
8511                         "\xf8\x0d\x22\x37\x4c\x61\x76\x8b"
8512                         "\xa0\xb5\xca\xdf\xf4\x09\x1e\x33"
8513                         "\x48\x5d\x72\x87\x9c\xb1\xc6\xdb"
8514                         "\xf0\x05\x1a\x2f\x44\x59\x6e\x83"
8515                         "\x98\xad\xc2\xd7\xec\x01\x16\x2b"
8516                         "\x40\x55\x6a\x7f\x94\xa9\xbe\xd3"
8517                         "\xe8\xfd\x12\x27\x3c\x51\x66\x7b"
8518                         "\x90\xa5\xba\xcf\xe4\xf9\x0e\x23"
8519                         "\x38\x4d\x62\x77\x8c\xa1\xb6\xcb"
8520                         "\xe0\xf5\x0a\x1f\x34\x49\x5e\x73"
8521                         "\x88\x9d\xb2\xc7\xdc\xf1\x06\x1b"
8522                         "\x30\x45\x5a\x6f\x84\x99\xae\xc3"
8523                         "\xd8\xed\x02\x17\x2c\x41\x56\x6b"
8524                         "\x80\x95\xaa\xbf\xd4\xe9\xfe\x13"
8525                         "\x28\x3d\x52\x67\x7c\x91\xa6\xbb"
8526                         "\xd0\xe5\xfa\x0f\x24\x39\x4e\x63"
8527                         "\x78\x8d\xa2\xb7\xcc\xe1\xf6\x0b"
8528                         "\x20\x35\x4a\x5f\x74\x89\x9e\xb3"
8529                         "\xc8\xdd\xf2\x07\x1c\x31\x46\x5b"
8530                         "\x70\x85\x9a\xaf\xc4\xd9\xee\x03"
8531                         "\x18\x2d\x42\x57\x6c\x81\x96\xab"
8532                         "\xc0\xd5\xea\xff\x14\x29\x3e\x53"
8533                         "\x68\x7d\x92\xa7\xbc\xd1\xe6\xfb"
8534                         "\x10\x25\x3a\x4f\x64\x79\x8e\xa3"
8535                         "\xb8\xcd\xe2\xf7\x0c\x21\x36\x4b"
8536                         "\x60\x75\x8a\x9f\xb4\xc9\xde\xf3"
8537                         "\x08\x1d\x32\x47\x5c\x71\x86\x9b"
8538                         "\xb0\xc5\xda\xef\x04\x19\x2e\x43"
8539                         "\x58\x6d\x82\x97\xac\xc1\xd6\xeb"
8540                         "\x00\x17\x2e\x45\x5c\x73\x8a\xa1"
8541                         "\xb8\xcf\xe6\xfd\x14\x2b\x42\x59"
8542                         "\x70\x87\x9e\xb5\xcc\xe3\xfa\x11"
8543                         "\x28\x3f\x56\x6d\x84\x9b\xb2\xc9"
8544                         "\xe0\xf7\x0e\x25\x3c\x53\x6a\x81"
8545                         "\x98\xaf\xc6\xdd\xf4\x0b\x22\x39"
8546                         "\x50\x67\x7e\x95\xac\xc3\xda\xf1"
8547                         "\x08\x1f\x36\x4d\x64\x7b\x92\xa9"
8548                         "\xc0\xd7\xee\x05\x1c\x33\x4a\x61"
8549                         "\x78\x8f\xa6\xbd\xd4\xeb\x02\x19"
8550                         "\x30\x47\x5e\x75\x8c\xa3\xba\xd1"
8551                         "\xe8\xff\x16\x2d\x44\x5b\x72\x89"
8552                         "\xa0\xb7\xce\xe5\xfc\x13\x2a\x41"
8553                         "\x58\x6f\x86\x9d\xb4\xcb\xe2\xf9"
8554                         "\x10\x27\x3e\x55\x6c\x83\x9a\xb1"
8555                         "\xc8\xdf\xf6\x0d\x24\x3b\x52\x69"
8556                         "\x80\x97\xae\xc5\xdc\xf3\x0a\x21"
8557                         "\x38\x4f\x66\x7d\x94\xab\xc2\xd9"
8558                         "\xf0\x07\x1e\x35\x4c\x63\x7a\x91"
8559                         "\xa8\xbf\xd6\xed\x04\x1b\x32\x49"
8560                         "\x60\x77\x8e\xa5\xbc\xd3\xea\x01"
8561                         "\x18\x2f\x46\x5d\x74\x8b\xa2\xb9"
8562                         "\xd0\xe7\xfe\x15\x2c\x43\x5a\x71"
8563                         "\x88\x9f\xb6\xcd\xe4\xfb\x12\x29"
8564                         "\x40\x57\x6e\x85\x9c\xb3\xca\xe1"
8565                         "\xf8\x0f\x26\x3d\x54\x6b\x82\x99"
8566                         "\xb0\xc7\xde\xf5\x0c\x23\x3a\x51"
8567                         "\x68\x7f\x96\xad\xc4\xdb\xf2\x09"
8568                         "\x20\x37\x4e\x65\x7c\x93\xaa\xc1"
8569                         "\xd8\xef\x06\x1d\x34\x4b\x62\x79"
8570                         "\x90\xa7\xbe\xd5\xec\x03\x1a\x31"
8571                         "\x48\x5f\x76\x8d\xa4\xbb\xd2\xe9"
8572                         "\x00\x19\x32\x4b\x64\x7d\x96\xaf"
8573                         "\xc8\xe1\xfa\x13\x2c\x45\x5e\x77"
8574                         "\x90\xa9\xc2\xdb\xf4\x0d\x26\x3f"
8575                         "\x58\x71\x8a\xa3\xbc\xd5\xee\x07"
8576                         "\x20\x39\x52\x6b\x84\x9d\xb6\xcf"
8577                         "\xe8\x01\x1a\x33\x4c\x65\x7e\x97"
8578                         "\xb0\xc9\xe2\xfb\x14\x2d\x46\x5f"
8579                         "\x78\x91\xaa\xc3\xdc\xf5\x0e\x27"
8580                         "\x40\x59\x72\x8b\xa4\xbd\xd6\xef"
8581                         "\x08\x21\x3a\x53\x6c\x85\x9e\xb7"
8582                         "\xd0\xe9\x02\x1b\x34\x4d\x66\x7f"
8583                         "\x98\xb1\xca\xe3\xfc\x15\x2e\x47"
8584                         "\x60\x79\x92\xab\xc4\xdd\xf6\x0f"
8585                         "\x28\x41\x5a\x73\x8c\xa5\xbe\xd7"
8586                         "\xf0\x09\x22\x3b\x54\x6d\x86\x9f"
8587                         "\xb8\xd1\xea\x03\x1c\x35\x4e\x67"
8588                         "\x80\x99\xb2\xcb\xe4\xfd\x16\x2f"
8589                         "\x48\x61\x7a\x93\xac\xc5\xde\xf7"
8590                         "\x10\x29\x42\x5b\x74\x8d\xa6\xbf"
8591                         "\xd8\xf1\x0a\x23\x3c\x55\x6e\x87"
8592                         "\xa0\xb9\xd2\xeb\x04\x1d\x36\x4f"
8593                         "\x68\x81\x9a\xb3\xcc\xe5\xfe\x17"
8594                         "\x30\x49\x62\x7b\x94\xad\xc6\xdf"
8595                         "\xf8\x11\x2a\x43\x5c\x75\x8e\xa7"
8596                         "\xc0\xd9\xf2\x0b\x24\x3d\x56\x6f"
8597                         "\x88\xa1\xba\xd3\xec\x05\x1e\x37"
8598                         "\x50\x69\x82\x9b\xb4\xcd\xe6\xff"
8599                         "\x18\x31\x4a\x63\x7c\x95\xae\xc7"
8600                         "\xe0\xf9\x12\x2b\x44\x5d\x76\x8f"
8601                         "\xa8\xc1\xda\xf3\x0c\x25\x3e\x57"
8602                         "\x70\x89\xa2\xbb\xd4\xed\x06\x1f"
8603                         "\x38\x51\x6a\x83\x9c\xb5\xce\xe7"
8604                         "\x00\x1b\x36\x51\x6c\x87\xa2\xbd"
8605                         "\xd8\xf3\x0e\x29\x44\x5f\x7a\x95"
8606                         "\xb0\xcb\xe6\x01\x1c\x37\x52\x6d"
8607                         "\x88\xa3\xbe\xd9\xf4\x0f\x2a\x45"
8608                         "\x60\x7b\x96\xb1\xcc\xe7\x02\x1d"
8609                         "\x38\x53\x6e\x89\xa4\xbf\xda\xf5"
8610                         "\x10\x2b\x46\x61\x7c\x97\xb2\xcd"
8611                         "\xe8\x03\x1e\x39\x54\x6f\x8a\xa5"
8612                         "\xc0\xdb\xf6\x11\x2c\x47\x62\x7d"
8613                         "\x98\xb3\xce\xe9\x04\x1f\x3a\x55"
8614                         "\x70\x8b\xa6\xc1\xdc\xf7\x12\x2d"
8615                         "\x48\x63\x7e\x99\xb4\xcf\xea\x05"
8616                         "\x20\x3b\x56\x71\x8c\xa7\xc2\xdd"
8617                         "\xf8\x13\x2e\x49\x64\x7f\x9a\xb5"
8618                         "\xd0\xeb\x06\x21\x3c\x57\x72\x8d"
8619                         "\xa8\xc3\xde\xf9\x14\x2f\x4a\x65"
8620                         "\x80\x9b\xb6\xd1\xec\x07\x22\x3d"
8621                         "\x58\x73\x8e\xa9\xc4\xdf\xfa\x15"
8622                         "\x30\x4b\x66\x81\x9c\xb7\xd2\xed"
8623                         "\x08\x23\x3e\x59\x74\x8f\xaa\xc5"
8624                         "\xe0\xfb\x16\x31\x4c\x67\x82\x9d"
8625                         "\xb8\xd3\xee\x09\x24\x3f\x5a\x75"
8626                         "\x90\xab\xc6\xe1\xfc\x17\x32\x4d"
8627                         "\x68\x83\x9e\xb9\xd4\xef\x0a\x25"
8628                         "\x40\x5b\x76\x91\xac\xc7\xe2\xfd"
8629                         "\x18\x33\x4e\x69\x84\x9f\xba\xd5"
8630                         "\xf0\x0b\x26\x41\x5c\x77\x92\xad"
8631                         "\xc8\xe3\xfe\x19\x34\x4f\x6a\x85"
8632                         "\xa0\xbb\xd6\xf1\x0c\x27\x42\x5d"
8633                         "\x78\x93\xae\xc9\xe4\xff\x1a\x35"
8634                         "\x50\x6b\x86\xa1\xbc\xd7\xf2\x0d"
8635                         "\x28\x43\x5e\x79\x94\xaf\xca\xe5"
8636                         "\x00\x1d\x3a\x57\x74\x91\xae\xcb"
8637                         "\xe8\x05\x22\x3f\x5c\x79\x96\xb3"
8638                         "\xd0\xed\x0a\x27\x44\x61\x7e\x9b"
8639                         "\xb8\xd5\xf2\x0f\x2c\x49\x66\x83"
8640                         "\xa0\xbd\xda\xf7\x14\x31\x4e\x6b"
8641                         "\x88\xa5\xc2\xdf\xfc\x19\x36\x53"
8642                         "\x70\x8d\xaa\xc7\xe4\x01\x1e\x3b"
8643                         "\x58\x75\x92\xaf\xcc\xe9\x06\x23"
8644                         "\x40\x5d\x7a\x97\xb4\xd1\xee\x0b"
8645                         "\x28\x45\x62\x7f\x9c\xb9\xd6\xf3"
8646                         "\x10\x2d\x4a\x67\x84\xa1\xbe\xdb"
8647                         "\xf8\x15\x32\x4f\x6c\x89\xa6\xc3"
8648                         "\xe0\xfd\x1a\x37\x54\x71\x8e\xab"
8649                         "\xc8\xe5\x02\x1f\x3c\x59\x76\x93"
8650                         "\xb0\xcd\xea\x07\x24\x41\x5e\x7b"
8651                         "\x98\xb5\xd2\xef\x0c\x29\x46\x63"
8652                         "\x80\x9d\xba\xd7\xf4\x11\x2e\x4b"
8653                         "\x68\x85\xa2\xbf\xdc\xf9\x16\x33"
8654                         "\x50\x6d\x8a\xa7\xc4\xe1\xfe\x1b"
8655                         "\x38\x55\x72\x8f\xac\xc9\xe6\x03"
8656                         "\x20\x3d\x5a\x77\x94\xb1\xce\xeb"
8657                         "\x08\x25\x42\x5f\x7c\x99\xb6\xd3"
8658                         "\xf0\x0d\x2a\x47\x64\x81\x9e\xbb"
8659                         "\xd8\xf5\x12\x2f\x4c\x69\x86\xa3"
8660                         "\xc0\xdd\xfa\x17\x34\x51\x6e\x8b"
8661                         "\xa8\xc5\xe2\xff\x1c\x39\x56\x73"
8662                         "\x90\xad\xca\xe7\x04\x21\x3e\x5b"
8663                         "\x78\x95\xb2\xcf\xec\x09\x26\x43"
8664                         "\x60\x7d\x9a\xb7\xd4\xf1\x0e\x2b"
8665                         "\x48\x65\x82\x9f\xbc\xd9\xf6\x13"
8666                         "\x30\x4d\x6a\x87\xa4\xc1\xde\xfb"
8667                         "\x18\x35\x52\x6f\x8c\xa9\xc6\xe3"
8668                         "\x00\x1f\x3e\x5d\x7c\x9b\xba\xd9"
8669                         "\xf8\x17\x36\x55\x74\x93\xb2\xd1"
8670                         "\xf0\x0f\x2e\x4d\x6c\x8b\xaa\xc9"
8671                         "\xe8\x07\x26\x45\x64\x83\xa2\xc1"
8672                         "\xe0\xff\x1e\x3d\x5c\x7b\x9a\xb9"
8673                         "\xd8\xf7\x16\x35\x54\x73\x92\xb1"
8674                         "\xd0\xef\x0e\x2d\x4c\x6b\x8a\xa9"
8675                         "\xc8\xe7\x06\x25\x44\x63\x82\xa1"
8676                         "\xc0\xdf\xfe\x1d\x3c\x5b\x7a\x99"
8677                         "\xb8\xd7\xf6\x15\x34\x53\x72\x91"
8678                         "\xb0\xcf\xee\x0d\x2c\x4b\x6a\x89"
8679                         "\xa8\xc7\xe6\x05\x24\x43\x62\x81"
8680                         "\xa0\xbf\xde\xfd\x1c\x3b\x5a\x79"
8681                         "\x98\xb7\xd6\xf5\x14\x33\x52\x71"
8682                         "\x90\xaf\xce\xed\x0c\x2b\x4a\x69"
8683                         "\x88\xa7\xc6\xe5\x04\x23\x42\x61"
8684                         "\x80\x9f\xbe\xdd\xfc\x1b\x3a\x59"
8685                         "\x78\x97\xb6\xd5\xf4\x13\x32\x51"
8686                         "\x70\x8f\xae\xcd\xec\x0b\x2a\x49"
8687                         "\x68\x87\xa6\xc5\xe4\x03\x22\x41"
8688                         "\x60\x7f\x9e\xbd\xdc\xfb\x1a\x39"
8689                         "\x58\x77\x96\xb5\xd4\xf3\x12\x31"
8690                         "\x50\x6f\x8e\xad\xcc\xeb\x0a\x29"
8691                         "\x48\x67\x86\xa5\xc4\xe3\x02\x21"
8692                         "\x40\x5f\x7e\x9d\xbc\xdb\xfa\x19"
8693                         "\x38\x57\x76\x95\xb4\xd3\xf2\x11"
8694                         "\x30\x4f\x6e\x8d\xac\xcb\xea\x09"
8695                         "\x28\x47\x66\x85\xa4\xc3\xe2\x01"
8696                         "\x20\x3f\x5e\x7d\x9c\xbb\xda\xf9"
8697                         "\x18\x37\x56\x75\x94\xb3\xd2\xf1"
8698                         "\x10\x2f\x4e\x6d\x8c\xab\xca\xe9"
8699                         "\x08\x27\x46\x65\x84\xa3\xc2\xe1"
8700                         "\x00\x21\x42\x63",
8701                 .ilen = 4100,
8702                 .result =
8703                         "\xb5\x81\xf5\x64\x18\x73\xe3\xf0"
8704                         "\x4c\x13\xf2\x77\x18\x60\x65\x5e"
8705                         "\x29\x01\xce\x98\x55\x53\xf9\x0c"
8706                         "\x2a\x08\xd5\x09\xb3\x57\x55\x56"
8707                         "\xc5\xe9\x56\x90\xcb\x6a\xa3\xc0"
8708                         "\xff\xc4\x79\xb4\xd2\x97\x5d\xc4"
8709                         "\x43\xd1\xfe\x94\x7b\x88\x06\x5a"
8710                         "\xb2\x9e\x2c\xfc\x44\x03\xb7\x90"
8711                         "\xa0\xc1\xba\x6a\x33\xb8\xc7\xb2"
8712                         "\x9d\xe1\x12\x4f\xc0\x64\xd4\x01"
8713                         "\xfe\x8c\x7a\x66\xf7\xe6\x5a\x91"
8714                         "\xbb\xde\x56\x86\xab\x65\x21\x30"
8715                         "\x00\x84\x65\x24\xa5\x7d\x85\xb4"
8716                         "\xe3\x17\xed\x3a\xb7\x6f\xb4\x0b"
8717                         "\x0b\xaf\x15\xae\x5a\x8f\xf2\x0c"
8718                         "\x2f\x27\xf4\x09\xd8\xd2\x96\xb7"
8719                         "\x71\xf2\xc5\x99\x4d\x7e\x7f\x75"
8720                         "\x77\x89\x30\x8b\x59\xdb\xa2\xb2"
8721                         "\xa0\xf3\x19\x39\x2b\xc5\x7e\x3f"
8722                         "\x4f\xd9\xd3\x56\x28\x97\x44\xdc"
8723                         "\xc0\x8b\x77\x24\xd9\x52\xe7\xc5"
8724                         "\xaf\xf6\x7d\x59\xb2\x44\x05\x1d"
8725                         "\xb1\xb0\x11\xa5\x0f\xec\x33\xe1"
8726                         "\x6d\x1b\x4e\x1f\xff\x57\x91\xb4"
8727                         "\x5b\x9a\x96\xc5\x53\xbc\xae\x20"
8728                         "\x3c\xbb\x14\xe2\xe8\x22\x33\xc1"
8729                         "\x5e\x76\x9e\x46\x99\xf6\x2a\x15"
8730                         "\xc6\x97\x02\xa0\x66\x43\xd1\xa6"
8731                         "\x31\xa6\x9f\xfb\xf4\xd3\x69\xe5"
8732                         "\xcd\x76\x95\xb8\x7a\x82\x7f\x21"
8733                         "\x45\xff\x3f\xce\x55\xf6\x95\x10"
8734                         "\x08\x77\x10\x43\xc6\xf3\x09\xe5"
8735                         "\x68\xe7\x3c\xad\x00\x52\x45\x0d"
8736                         "\xfe\x2d\xc6\xc2\x94\x8c\x12\x1d"
8737                         "\xe6\x25\xae\x98\x12\x8e\x19\x9c"
8738                         "\x81\x68\xb1\x11\xf6\x69\xda\xe3"
8739                         "\x62\x08\x18\x7a\x25\x49\x28\xac"
8740                         "\xba\x71\x12\x0b\xe4\xa2\xe5\xc7"
8741                         "\x5d\x8e\xec\x49\x40\x21\xbf\x5a"
8742                         "\x98\xf3\x02\x68\x55\x03\x7f\x8a"
8743                         "\xe5\x94\x0c\x32\x5c\x07\x82\x63"
8744                         "\xaf\x6f\x91\x40\x84\x8e\x52\x25"
8745                         "\xd0\xb0\x29\x53\x05\xe2\x50\x7a"
8746                         "\x34\xeb\xc9\x46\x20\xa8\x3d\xde"
8747                         "\x7f\x16\x5f\x36\xc5\x2e\xdc\xd1"
8748                         "\x15\x47\xc7\x50\x40\x6d\x91\xc5"
8749                         "\xe7\x93\x95\x1a\xd3\x57\xbc\x52"
8750                         "\x33\xee\x14\x19\x22\x52\x89\xa7"
8751                         "\x4a\x25\x56\x77\x4b\xca\xcf\x0a"
8752                         "\xe1\xf5\x35\x85\x30\x7e\x59\x4a"
8753                         "\xbd\x14\x5b\xdf\xe3\x46\xcb\xac"
8754                         "\x1f\x6c\x96\x0e\xf4\x81\xd1\x99"
8755                         "\xca\x88\x63\x3d\x02\x58\x6b\xa9"
8756                         "\xe5\x9f\xb3\x00\xb2\x54\xc6\x74"
8757                         "\x1c\xbf\x46\xab\x97\xcc\xf8\x54"
8758                         "\x04\x07\x08\x52\xe6\xc0\xda\x93"
8759                         "\x74\x7d\x93\x99\x5d\x78\x68\xa6"
8760                         "\x2e\x6b\xd3\x6a\x69\xcc\x12\x6b"
8761                         "\xd4\xc7\xa5\xc6\xe7\xf6\x03\x04"
8762                         "\x5d\xcd\x61\x5e\x17\x40\xdc\xd1"
8763                         "\x5c\xf5\x08\xdf\x5c\x90\x85\xa4"
8764                         "\xaf\xf6\x78\xbb\x0d\xf1\xf4\xa4"
8765                         "\x54\x26\x72\x9e\x61\xfa\x86\xcf"
8766                         "\xe8\x9e\xa1\xe0\xc7\x48\x23\xae"
8767                         "\x5a\x90\xae\x75\x0a\x74\x18\x89"
8768                         "\x05\xb1\x92\xb2\x7f\xd0\x1b\xa6"
8769                         "\x62\x07\x25\x01\xc7\xc2\x4f\xf9"
8770                         "\xe8\xfe\x63\x95\x80\x07\xb4\x26"
8771                         "\xcc\xd1\x26\xb6\xc4\x3f\x9e\xcb"
8772                         "\x8e\x3b\x2e\x44\x16\xd3\x10\x9a"
8773                         "\x95\x08\xeb\xc8\xcb\xeb\xbf\x6f"
8774                         "\x0b\xcd\x1f\xc8\xca\x86\xaa\xec"
8775                         "\x33\xe6\x69\xf4\x45\x25\x86\x3a"
8776                         "\x22\x94\x4f\x00\x23\x6a\x44\xc2"
8777                         "\x49\x97\x33\xab\x36\x14\x0a\x70"
8778                         "\x24\xc3\xbe\x04\x3b\x79\xa0\xf9"
8779                         "\xb8\xe7\x76\x29\x22\x83\xd7\xf2"
8780                         "\x94\xf4\x41\x49\xba\x5f\x7b\x07"
8781                         "\xb5\xfb\xdb\x03\x1a\x9f\xb6\x4c"
8782                         "\xc2\x2e\x37\x40\x49\xc3\x38\x16"
8783                         "\xe2\x4f\x77\x82\xb0\x68\x4c\x71"
8784                         "\x1d\x57\x61\x9c\xd9\x4e\x54\x99"
8785                         "\x47\x13\x28\x73\x3c\xbb\x00\x90"
8786                         "\xf3\x4d\xc9\x0e\xfd\xe7\xb1\x71"
8787                         "\xd3\x15\x79\xbf\xcc\x26\x2f\xbd"
8788                         "\xad\x6c\x50\x69\x6c\x3e\x6d\x80"
8789                         "\x9a\xea\x78\xaf\x19\xb2\x0d\x4d"
8790                         "\xad\x04\x07\xae\x22\x90\x4a\x93"
8791                         "\x32\x0e\x36\x9b\x1b\x46\xba\x3b"
8792                         "\xb4\xac\xc6\xd1\xa2\x31\x53\x3b"
8793                         "\x2a\x3d\x45\xfe\x03\x61\x10\x85"
8794                         "\x17\x69\xa6\x78\xcc\x6c\x87\x49"
8795                         "\x53\xf9\x80\x10\xde\x80\xa2\x41"
8796                         "\x6a\xc3\x32\x02\xad\x6d\x3c\x56"
8797                         "\x00\x71\x51\x06\xa7\xbd\xfb\xef"
8798                         "\x3c\xb5\x9f\xfc\x48\x7d\x53\x7c"
8799                         "\x66\xb0\x49\x23\xc4\x47\x10\x0e"
8800                         "\xe5\x6c\x74\x13\xe6\xc5\x3f\xaa"
8801                         "\xde\xff\x07\x44\xdd\x56\x1b\xad"
8802                         "\x09\x77\xfb\x5b\x12\xb8\x0d\x38"
8803                         "\x17\x37\x35\x7b\x9b\xbc\xfe\xd4"
8804                         "\x7e\x8b\xda\x7e\x5b\x04\xa7\x22"
8805                         "\xa7\x31\xa1\x20\x86\xc7\x1b\x99"
8806                         "\xdb\xd1\x89\xf4\x94\xa3\x53\x69"
8807                         "\x8d\xe7\xe8\x74\x11\x8d\x74\xd6"
8808                         "\x07\x37\x91\x9f\xfd\x67\x50\x3a"
8809                         "\xc9\xe1\xf4\x36\xd5\xa0\x47\xd1"
8810                         "\xf9\xe5\x39\xa3\x31\xac\x07\x36"
8811                         "\x23\xf8\x66\x18\x14\x28\x34\x0f"
8812                         "\xb8\xd0\xe7\x29\xb3\x04\x4b\x55"
8813                         "\x01\x41\xb2\x75\x8d\xcb\x96\x85"
8814                         "\x3a\xfb\xab\x2b\x9e\xfa\x58\x20"
8815                         "\x44\x1f\xc0\x14\x22\x75\x61\xe8"
8816                         "\xaa\x19\xcf\xf1\x82\x56\xf4\xd7"
8817                         "\x78\x7b\x3d\x5f\xb3\x9e\x0b\x8a"
8818                         "\x57\x50\xdb\x17\x41\x65\x4d\xa3"
8819                         "\x02\xc9\x9c\x9c\x53\xfb\x39\x39"
8820                         "\x9b\x1d\x72\x24\xda\xb7\x39\xbe"
8821                         "\x13\x3b\xfa\x29\xda\x9e\x54\x64"
8822                         "\x6e\xba\xd8\xa1\xcb\xb3\x36\xfa"
8823                         "\xcb\x47\x85\xe9\x61\x38\xbc\xbe"
8824                         "\xc5\x00\x38\x2a\x54\xf7\xc4\xb9"
8825                         "\xb3\xd3\x7b\xa0\xa0\xf8\x72\x7f"
8826                         "\x8c\x8e\x82\x0e\xc6\x1c\x75\x9d"
8827                         "\xca\x8e\x61\x87\xde\xad\x80\xd2"
8828                         "\xf5\xf9\x80\xef\x15\x75\xaf\xf5"
8829                         "\x80\xfb\xff\x6d\x1e\x25\xb7\x40"
8830                         "\x61\x6a\x39\x5a\x6a\xb5\x31\xab"
8831                         "\x97\x8a\x19\x89\x44\x40\xc0\xa6"
8832                         "\xb4\x4e\x30\x32\x7b\x13\xe7\x67"
8833                         "\xa9\x8b\x57\x04\xc2\x01\xa6\xf4"
8834                         "\x28\x99\xad\x2c\x76\xa3\x78\xc2"
8835                         "\x4a\xe6\xca\x5c\x50\x6a\xc1\xb0"
8836                         "\x62\x4b\x10\x8e\x7c\x17\x43\xb3"
8837                         "\x17\x66\x1c\x3e\x8d\x69\xf0\x5a"
8838                         "\x71\xf5\x97\xdc\xd1\x45\xdd\x28"
8839                         "\xf3\x5d\xdf\x53\x7b\x11\xe5\xbc"
8840                         "\x4c\xdb\x1b\x51\x6b\xe9\xfb\x3d"
8841                         "\xc1\xc3\x2c\xb9\x71\xf5\xb6\xb2"
8842                         "\x13\x36\x79\x80\x53\xe8\xd3\xa6"
8843                         "\x0a\xaf\xfd\x56\x97\xf7\x40\x8e"
8844                         "\x45\xce\xf8\xb0\x9e\x5c\x33\x82"
8845                         "\xb0\x44\x56\xfc\x05\x09\xe9\x2a"
8846                         "\xac\x26\x80\x14\x1d\xc8\x3a\x35"
8847                         "\x4c\x82\x97\xfd\x76\xb7\xa9\x0a"
8848                         "\x35\x58\x79\x8e\x0f\x66\xea\xaf"
8849                         "\x51\x6c\x09\xa9\x6e\x9b\xcb\x9a"
8850                         "\x31\x47\xa0\x2f\x7c\x71\xb4\x4a"
8851                         "\x11\xaa\x8c\x66\xc5\x64\xe6\x3a"
8852                         "\x54\xda\x24\x6a\xc4\x41\x65\x46"
8853                         "\x82\xa0\x0a\x0f\x5f\xfb\x25\xd0"
8854                         "\x2c\x91\xa7\xee\xc4\x81\x07\x86"
8855                         "\x75\x5e\x33\x69\x97\xe4\x2c\xa8"
8856                         "\x9d\x9f\x0b\x6a\xbe\xad\x98\xda"
8857                         "\x6d\x94\x41\xda\x2c\x1e\x89\xc4"
8858                         "\xc2\xaf\x1e\x00\x05\x0b\x83\x60"
8859                         "\xbd\x43\xea\x15\x23\x7f\xb9\xac"
8860                         "\xee\x4f\x2c\xaf\x2a\xf3\xdf\xd0"
8861                         "\xf3\x19\x31\xbb\x4a\x74\x84\x17"
8862                         "\x52\x32\x2c\x7d\x61\xe4\xcb\xeb"
8863                         "\x80\x38\x15\x52\xcb\x6f\xea\xe5"
8864                         "\x73\x9c\xd9\x24\x69\xc6\x95\x32"
8865                         "\x21\xc8\x11\xe4\xdc\x36\xd7\x93"
8866                         "\x38\x66\xfb\xb2\x7f\x3a\xb9\xaf"
8867                         "\x31\xdd\x93\x75\x78\x8a\x2c\x94"
8868                         "\x87\x1a\x58\xec\x9e\x7d\x4d\xba"
8869                         "\xe1\xe5\x4d\xfc\xbc\xa4\x2a\x14"
8870                         "\xef\xcc\xa7\xec\xab\x43\x09\x18"
8871                         "\xd3\xab\x68\xd1\x07\x99\x44\x47"
8872                         "\xd6\x83\x85\x3b\x30\xea\xa9\x6b"
8873                         "\x63\xea\xc4\x07\xfb\x43\x2f\xa4"
8874                         "\xaa\xb0\xab\x03\x89\xce\x3f\x8c"
8875                         "\x02\x7c\x86\x54\xbc\x88\xaf\x75"
8876                         "\xd2\xdc\x63\x17\xd3\x26\xf6\x96"
8877                         "\xa9\x3c\xf1\x61\x8c\x11\x18\xcc"
8878                         "\xd6\xea\x5b\xe2\xcd\xf0\xf1\xb2"
8879                         "\xe5\x35\x90\x1f\x85\x4c\x76\x5b"
8880                         "\x66\xce\x44\xa4\x32\x9f\xe6\x7b"
8881                         "\x71\x6e\x9f\x58\x15\x67\x72\x87"
8882                         "\x64\x8e\x3a\x44\x45\xd4\x76\xfa"
8883                         "\xc2\xf6\xef\x85\x05\x18\x7a\x9b"
8884                         "\xba\x41\x54\xac\xf0\xfc\x59\x12"
8885                         "\x3f\xdf\xa0\xe5\x8a\x65\xfd\x3a"
8886                         "\x62\x8d\x83\x2c\x03\xbe\x05\x76"
8887                         "\x2e\x53\x49\x97\x94\x33\xae\x40"
8888                         "\x81\x15\xdb\x6e\xad\xaa\xf5\x4b"
8889                         "\xe3\x98\x70\xdf\xe0\x7c\xcd\xdb"
8890                         "\x02\xd4\x7d\x2f\xc1\xe6\xb4\xf3"
8891                         "\xd7\x0d\x7a\xd9\x23\x9e\x87\x2d"
8892                         "\xce\x87\xad\xcc\x72\x05\x00\x29"
8893                         "\xdc\x73\x7f\x64\xc1\x15\x0e\xc2"
8894                         "\xdf\xa7\x5f\xeb\x41\xa1\xcd\xef"
8895                         "\x5c\x50\x79\x2a\x56\x56\x71\x8c"
8896                         "\xac\xc0\x79\x50\x69\xca\x59\x32"
8897                         "\x65\xf2\x54\xe4\x52\x38\x76\xd1"
8898                         "\x5e\xde\x26\x9e\xfb\x75\x2e\x11"
8899                         "\xb5\x10\xf4\x17\x73\xf5\x89\xc7"
8900                         "\x4f\x43\x5c\x8e\x7c\xb9\x05\x52"
8901                         "\x24\x40\x99\xfe\x9b\x85\x0b\x6c"
8902                         "\x22\x3e\x8b\xae\x86\xa1\xd2\x79"
8903                         "\x05\x68\x6b\xab\xe3\x41\x49\xed"
8904                         "\x15\xa1\x8d\x40\x2d\x61\xdf\x1a"
8905                         "\x59\xc9\x26\x8b\xef\x30\x4c\x88"
8906                         "\x4b\x10\xf8\x8d\xa6\x92\x9f\x4b"
8907                         "\xf3\xc4\x53\x0b\x89\x5d\x28\x92"
8908                         "\xcf\x78\xb2\xc0\x5d\xed\x7e\xfc"
8909                         "\xc0\x12\x23\x5f\x5a\x78\x86\x43"
8910                         "\x6e\x27\xf7\x5a\xa7\x6a\xed\x19"
8911                         "\x04\xf0\xb3\x12\xd1\xbd\x0e\x89"
8912                         "\x6e\xbc\x96\xa8\xd8\x49\x39\x9f"
8913                         "\x7e\x67\xf0\x2e\x3e\x01\xa9\xba"
8914                         "\xec\x8b\x62\x8e\xcb\x4a\x70\x43"
8915                         "\xc7\xc2\xc4\xca\x82\x03\x73\xe9"
8916                         "\x11\xdf\xcf\x54\xea\xc9\xb0\x95"
8917                         "\x51\xc0\x13\x3d\x92\x05\xfa\xf4"
8918                         "\xa9\x34\xc8\xce\x6c\x3d\x54\xcc"
8919                         "\xc4\xaf\xf1\xdc\x11\x44\x26\xa2"
8920                         "\xaf\xf1\x85\x75\x7d\x03\x61\x68"
8921                         "\x4e\x78\xc6\x92\x7d\x86\x7d\x77"
8922                         "\xdc\x71\x72\xdb\xc6\xae\xa1\xcb"
8923                         "\x70\x9a\x0b\x19\xbe\x4a\x6c\x2a"
8924                         "\xe2\xba\x6c\x64\x9a\x13\x28\xdf"
8925                         "\x85\x75\xe6\x43\xf6\x87\x08\x68"
8926                         "\x6e\xba\x6e\x79\x9f\x04\xbc\x23"
8927                         "\x50\xf6\x33\x5c\x1f\x24\x25\xbe"
8928                         "\x33\x47\x80\x45\x56\xa3\xa7\xd7"
8929                         "\x7a\xb1\x34\x0b\x90\x3c\x9c\xad"
8930                         "\x44\x5f\x9e\x0e\x9d\xd4\xbd\x93"
8931                         "\x5e\xfa\x3c\xe0\xb0\xd9\xed\xf3"
8932                         "\xd6\x2e\xff\x24\xd8\x71\x6c\xed"
8933                         "\xaf\x55\xeb\x22\xac\x93\x68\x32"
8934                         "\x05\x5b\x47\xdd\xc6\x4a\xcb\xc7"
8935                         "\x10\xe1\x3c\x92\x1a\xf3\x23\x78"
8936                         "\x2b\xa1\xd2\x80\xf4\x12\xb1\x20"
8937                         "\x8f\xff\x26\x35\xdd\xfb\xc7\x4e"
8938                         "\x78\xf1\x2d\x50\x12\x77\xa8\x60"
8939                         "\x7c\x0f\xf5\x16\x2f\x63\x70\x2a"
8940                         "\xc0\x96\x80\x4e\x0a\xb4\x93\x35"
8941                         "\x5d\x1d\x3f\x56\xf7\x2f\xbb\x90"
8942                         "\x11\x16\x8f\xa2\xec\x47\xbe\xac"
8943                         "\x56\x01\x26\x56\xb1\x8c\xb2\x10"
8944                         "\xf9\x1a\xca\xf5\xd1\xb7\x39\x20"
8945                         "\x63\xf1\x69\x20\x4f\x13\x12\x1f"
8946                         "\x5b\x65\xfc\x98\xf7\xc4\x7a\xbe"
8947                         "\xf7\x26\x4d\x2b\x84\x7b\x42\xad"
8948                         "\xd8\x7a\x0a\xb4\xd8\x74\xbf\xc1"
8949                         "\xf0\x6e\xb4\x29\xa3\xbb\xca\x46"
8950                         "\x67\x70\x6a\x2d\xce\x0e\xa2\x8a"
8951                         "\xa9\x87\xbf\x05\xc4\xc1\x04\xa3"
8952                         "\xab\xd4\x45\x43\x8c\xb6\x02\xb0"
8953                         "\x41\xc8\xfc\x44\x3d\x59\xaa\x2e"
8954                         "\x44\x21\x2a\x8d\x88\x9d\x57\xf4"
8955                         "\xa0\x02\x77\xb8\xa6\xa0\xe6\x75"
8956                         "\x5c\x82\x65\x3e\x03\x5c\x29\x8f"
8957                         "\x38\x55\xab\x33\x26\xef\x9f\x43"
8958                         "\x52\xfd\x68\xaf\x36\xb4\xbb\x9a"
8959                         "\x58\x09\x09\x1b\xc3\x65\x46\x46"
8960                         "\x1d\xa7\x94\x18\x23\x50\x2c\xca"
8961                         "\x2c\x55\x19\x97\x01\x9d\x93\x3b"
8962                         "\x63\x86\xf2\x03\x67\x45\xd2\x72"
8963                         "\x28\x52\x6c\xf4\xe3\x1c\xb5\x11"
8964                         "\x13\xf1\xeb\x21\xc7\xd9\x56\x82"
8965                         "\x2b\x82\x39\xbd\x69\x54\xed\x62"
8966                         "\xc3\xe2\xde\x73\xd4\x6a\x12\xae"
8967                         "\x13\x21\x7f\x4b\x5b\xfc\xbf\xe8"
8968                         "\x2b\xbe\x56\xba\x68\x8b\x9a\xb1"
8969                         "\x6e\xfa\xbf\x7e\x5a\x4b\xf1\xac"
8970                         "\x98\x65\x85\xd1\x93\x53\xd3\x7b"
8971                         "\x09\xdd\x4b\x10\x6d\x84\xb0\x13"
8972                         "\x65\xbd\xcf\x52\x09\xc4\x85\xe2"
8973                         "\x84\x74\x15\x65\xb7\xf7\x51\xaf"
8974                         "\x55\xad\xa4\xd1\x22\x54\x70\x94"
8975                         "\xa0\x1c\x90\x41\xfd\x99\xd7\x5a"
8976                         "\x31\xef\xaa\x25\xd0\x7f\x4f\xea"
8977                         "\x1d\x55\x42\xe5\x49\xb0\xd0\x46"
8978                         "\x62\x36\x43\xb2\x82\x15\x75\x50"
8979                         "\xa4\x72\xeb\x54\x27\x1f\x8a\xe4"
8980                         "\x7d\xe9\x66\xc5\xf1\x53\xa4\xd1"
8981                         "\x0c\xeb\xb8\xf8\xbc\xd4\xe2\xe7"
8982                         "\xe1\xf8\x4b\xcb\xa9\xa1\xaf\x15"
8983                         "\x83\xcb\x72\xd0\x33\x79\x00\x2d"
8984                         "\x9f\xd7\xf1\x2e\x1e\x10\xe4\x45"
8985                         "\xc0\x75\x3a\x39\xea\x68\xf7\x5d"
8986                         "\x1b\x73\x8f\xe9\x8e\x0f\x72\x47"
8987                         "\xae\x35\x0a\x31\x7a\x14\x4d\x4a"
8988                         "\x6f\x47\xf7\x7e\x91\x6e\x74\x8b"
8989                         "\x26\x47\xf9\xc3\xf9\xde\x70\xf5"
8990                         "\x61\xab\xa9\x27\x9f\x82\xe4\x9c"
8991                         "\x89\x91\x3f\x2e\x6a\xfd\xb5\x49"
8992                         "\xe9\xfd\x59\x14\x36\x49\x40\x6d"
8993                         "\x32\xd8\x85\x42\xf3\xa5\xdf\x0c"
8994                         "\xa8\x27\xd7\x54\xe2\x63\x2f\xf2"
8995                         "\x7e\x8b\x8b\xe7\xf1\x9a\x95\x35"
8996                         "\x43\xdc\x3a\xe4\xb6\xf4\xd0\xdf"
8997                         "\x9c\xcb\x94\xf3\x21\xa0\x77\x50"
8998                         "\xe2\xc6\xc4\xc6\x5f\x09\x64\x5b"
8999                         "\x92\x90\xd8\xe1\xd1\xed\x4b\x42"
9000                         "\xd7\x37\xaf\x65\x3d\x11\x39\xb6"
9001                         "\x24\x8a\x60\xae\xd6\x1e\xbf\x0e"
9002                         "\x0d\xd7\xdc\x96\x0e\x65\x75\x4e"
9003                         "\x29\x06\x9d\xa4\x51\x3a\x10\x63"
9004                         "\x8f\x17\x07\xd5\x8e\x3c\xf4\x28"
9005                         "\x00\x5a\x5b\x05\x19\xd8\xc0\x6c"
9006                         "\xe5\x15\xe4\x9c\x9d\x71\x9d\x5e"
9007                         "\x94\x29\x1a\xa7\x80\xfa\x0e\x33"
9008                         "\x03\xdd\xb7\x3e\x9a\xa9\x26\x18"
9009                         "\x37\xa9\x64\x08\x4d\x94\x5a\x88"
9010                         "\xca\x35\xce\x81\x02\xe3\x1f\x1b"
9011                         "\x89\x1a\x77\x85\xe3\x41\x6d\x32"
9012                         "\x42\x19\x23\x7d\xc8\x73\xee\x25"
9013                         "\x85\x0d\xf8\x31\x25\x79\x1b\x6f"
9014                         "\x79\x25\xd2\xd8\xd4\x23\xfd\xf7"
9015                         "\x82\x36\x6a\x0c\x46\x22\x15\xe9"
9016                         "\xff\x72\x41\x91\x91\x7d\x3a\xb7"
9017                         "\xdd\x65\x99\x70\xf6\x8d\x84\xf8"
9018                         "\x67\x15\x20\x11\xd6\xb2\x55\x7b"
9019                         "\xdb\x87\xee\xef\x55\x89\x2a\x59"
9020                         "\x2b\x07\x8f\x43\x8a\x59\x3c\x01"
9021                         "\x8b\x65\x54\xa1\x66\xd5\x38\xbd"
9022                         "\xc6\x30\xa9\xcc\x49\xb6\xa8\x1b"
9023                         "\xb8\xc0\x0e\xe3\x45\x28\xe2\xff"
9024                         "\x41\x9f\x7e\x7c\xd1\xae\x9e\x25"
9025                         "\x3f\x4c\x7c\x7c\xf4\xa8\x26\x4d"
9026                         "\x5c\xfd\x4b\x27\x18\xf9\x61\x76"
9027                         "\x48\xba\x0c\x6b\xa9\x4d\xfc\xf5"
9028                         "\x3b\x35\x7e\x2f\x4a\xa9\xc2\x9a"
9029                         "\xae\xab\x86\x09\x89\xc9\xc2\x40"
9030                         "\x39\x2c\x81\xb3\xb8\x17\x67\xc2"
9031                         "\x0d\x32\x4a\x3a\x67\x81\xd7\x1a"
9032                         "\x34\x52\xc5\xdb\x0a\xf5\x63\x39"
9033                         "\xea\x1f\xe1\x7c\xa1\x9e\xc1\x35"
9034                         "\xe3\xb1\x18\x45\x67\xf9\x22\x38"
9035                         "\x95\xd9\x34\x34\x86\xc6\x41\x94"
9036                         "\x15\xf9\x5b\x41\xa6\x87\x8b\xf8"
9037                         "\xd5\xe1\x1b\xe2\x5b\xf3\x86\x10"
9038                         "\xff\xe6\xae\x69\x76\xbc\x0d\xb4"
9039                         "\x09\x90\x0c\xa2\x65\x0c\xad\x74"
9040                         "\xf5\xd7\xff\xda\xc1\xce\x85\xbe"
9041                         "\x00\xa7\xff\x4d\x2f\x65\xd3\x8c"
9042                         "\x86\x2d\x05\xe8\xed\x3e\x6b\x8b"
9043                         "\x0f\x3d\x83\x8c\xf1\x1d\x5b\x96"
9044                         "\x2e\xb1\x9c\xc2\x98\xe1\x70\xb9"
9045                         "\xba\x5c\x8a\x43\xd6\x34\xa7\x2d"
9046                         "\xc9\x92\xae\xf2\xa5\x7b\x05\x49"
9047                         "\xa7\x33\x34\x86\xca\xe4\x96\x23"
9048                         "\x76\x5b\xf2\xc6\xf1\x51\x28\x42"
9049                         "\x7b\xcc\x76\x8f\xfa\xa2\xad\x31"
9050                         "\xd4\xd6\x7a\x6d\x25\x25\x54\xe4"
9051                         "\x3f\x50\x59\xe1\x5c\x05\xb7\x27"
9052                         "\x48\xbf\x07\xec\x1b\x13\xbe\x2b"
9053                         "\xa1\x57\x2b\xd5\xab\xd7\xd0\x4c"
9054                         "\x1e\xcb\x71\x9b\xc5\x90\x85\xd3"
9055                         "\xde\x59\xec\x71\xeb\x89\xbb\xd0"
9056                         "\x09\x50\xe1\x16\x3f\xfd\x1c\x34"
9057                         "\xc3\x1c\xa1\x10\x77\x53\x98\xef"
9058                         "\xf2\xfd\xa5\x01\x59\xc2\x9b\x26"
9059                         "\xc7\x42\xd9\x49\xda\x58\x2b\x6e"
9060                         "\x9f\x53\x19\x76\x7e\xd9\xc9\x0e"
9061                         "\x68\xc8\x7f\x51\x22\x42\xef\x49"
9062                         "\xa4\x55\xb6\x36\xac\x09\xc7\x31"
9063                         "\x88\x15\x4b\x2e\x8f\x3a\x08\xf7"
9064                         "\xd8\xf7\xa8\xc5\xa9\x33\xa6\x45"
9065                         "\xe4\xc4\x94\x76\xf3\x0d\x8f\x7e"
9066                         "\xc8\xf6\xbc\x23\x0a\xb6\x4c\xd3"
9067                         "\x6a\xcd\x36\xc2\x90\x5c\x5c\x3c"
9068                         "\x65\x7b\xc2\xd6\xcc\xe6\x0d\x87"
9069                         "\x73\x2e\x71\x79\x16\x06\x63\x28"
9070                         "\x09\x15\xd8\x89\x38\x38\x3d\xb5"
9071                         "\x42\x1c\x08\x24\xf7\x2a\xd2\x9d"
9072                         "\xc8\xca\xef\xf9\x27\xd8\x07\x86"
9073                         "\xf7\x43\x0b\x55\x15\x3f\x9f\x83"
9074                         "\xef\xdc\x49\x9d\x2a\xc1\x54\x62"
9075                         "\xbd\x9b\x66\x55\x9f\xb7\x12\xf3"
9076                         "\x1b\x4d\x9d\x2a\x5c\xed\x87\x75"
9077                         "\x87\x26\xec\x61\x2c\xb4\x0f\x89"
9078                         "\xb0\xfb\x2e\x68\x5d\x15\xc7\x8d"
9079                         "\x2e\xc0\xd9\xec\xaf\x4f\xd2\x25"
9080                         "\x29\xe8\xd2\x26\x2b\x67\xe9\xfc"
9081                         "\x2b\xa8\x67\x96\x12\x1f\x5b\x96"
9082                         "\xc6\x14\x53\xaf\x44\xea\xd6\xe2"
9083                         "\x94\x98\xe4\x12\x93\x4c\x92\xe0"
9084                         "\x18\xa5\x8d\x2d\xe4\x71\x3c\x47"
9085                         "\x4c\xf7\xe6\x47\x9e\xc0\x68\xdf"
9086                         "\xd4\xf5\x5a\x74\xb1\x2b\x29\x03"
9087                         "\x19\x07\xaf\x90\x62\x5c\x68\x98"
9088                         "\x48\x16\x11\x02\x9d\xee\xb4\x9b"
9089                         "\xe5\x42\x7f\x08\xfd\x16\x32\x0b"
9090                         "\xd0\xb3\xfa\x2b\xb7\x99\xf9\x29"
9091                         "\xcd\x20\x45\x9f\xb3\x1a\x5d\xa2"
9092                         "\xaf\x4d\xe0\xbd\x42\x0d\xbc\x74"
9093                         "\x99\x9c\x8e\x53\x1a\xb4\x3e\xbd"
9094                         "\xa2\x9a\x2d\xf7\xf8\x39\x0f\x67"
9095                         "\x63\xfc\x6b\xc0\xaf\xb3\x4b\x4f"
9096                         "\x55\xc4\xcf\xa7\xc8\x04\x11\x3e"
9097                         "\x14\x32\xbb\x1b\x38\x77\xd6\x7f"
9098                         "\x54\x4c\xdf\x75\xf3\x07\x2d\x33"
9099                         "\x9b\xa8\x20\xe1\x7b\x12\xb5\xf3"
9100                         "\xef\x2f\xce\x72\xe5\x24\x60\xc1"
9101                         "\x30\xe2\xab\xa1\x8e\x11\x09\xa8"
9102                         "\x21\x33\x44\xfe\x7f\x35\x32\x93"
9103                         "\x39\xa7\xad\x8b\x79\x06\xb2\xcb"
9104                         "\x4e\xa9\x5f\xc7\xba\x74\x29\xec"
9105                         "\x93\xa0\x4e\x54\x93\xc0\xbc\x55"
9106                         "\x64\xf0\x48\xe5\x57\x99\xee\x75"
9107                         "\xd6\x79\x0f\x66\xb7\xc6\x57\x76"
9108                         "\xf7\xb7\xf3\x9c\xc5\x60\xe8\x7f"
9109                         "\x83\x76\xd6\x0e\xaa\xe6\x90\x39"
9110                         "\x1d\xa6\x32\x6a\x34\xe3\x55\xf8"
9111                         "\x58\xa0\x58\x7d\x33\xe0\x22\x39"
9112                         "\x44\x64\x87\x86\x5a\x2f\xa7\x7e"
9113                         "\x0f\x38\xea\xb0\x30\xcc\x61\xa5"
9114                         "\x6a\x32\xae\x1e\xf7\xe9\xd0\xa9"
9115                         "\x0c\x32\x4b\xb5\x49\x28\xab\x85"
9116                         "\x2f\x8e\x01\x36\x38\x52\xd0\xba"
9117                         "\xd6\x02\x78\xf8\x0e\x3e\x9c\x8b"
9118                         "\x6b\x45\x99\x3f\x5c\xfe\x58\xf1"
9119                         "\x5c\x94\x04\xe1\xf5\x18\x6d\x51"
9120                         "\xb2\x5d\x18\x20\xb6\xc2\x9a\x42"
9121                         "\x1d\xb3\xab\x3c\xb6\x3a\x13\x03"
9122                         "\xb2\x46\x82\x4f\xfc\x64\xbc\x4f"
9123                         "\xca\xfa\x9c\xc0\xd5\xa7\xbd\x11"
9124                         "\xb7\xe4\x5a\xf6\x6f\x4d\x4d\x54"
9125                         "\xea\xa4\x98\x66\xd4\x22\x3b\xd3"
9126                         "\x8f\x34\x47\xd9\x7c\xf4\x72\x3b"
9127                         "\x4d\x02\x77\xf6\xd6\xdd\x08\x0a"
9128                         "\x81\xe1\x86\x89\x3e\x56\x10\x3c"
9129                         "\xba\xd7\x81\x8c\x08\xbc\x8b\xe2"
9130                         "\x53\xec\xa7\x89\xee\xc8\x56\xb5"
9131                         "\x36\x2c\xb2\x03\xba\x99\xdd\x7c"
9132                         "\x48\xa0\xb0\xbc\x91\x33\xe9\xa8"
9133                         "\xcb\xcd\xcf\x59\x5f\x1f\x15\xe2"
9134                         "\x56\xf5\x4e\x01\x35\x27\x45\x77"
9135                         "\x47\xc8\xbc\xcb\x7e\x39\xc1\x97"
9136                         "\x28\xd3\x84\xfc\x2c\x3e\xc8\xad"
9137                         "\x9c\xf8\x8a\x61\x9c\x28\xaa\xc5"
9138                         "\x99\x20\x43\x85\x9d\xa5\xe2\x8b"
9139                         "\xb8\xae\xeb\xd0\x32\x0d\x52\x78"
9140                         "\x09\x56\x3f\xc7\xd8\x7e\x26\xfc"
9141                         "\x37\xfb\x6f\x04\xfc\xfa\x92\x10"
9142                         "\xac\xf8\x3e\x21\xdc\x8c\x21\x16"
9143                         "\x7d\x67\x6e\xf6\xcd\xda\xb6\x98"
9144                         "\x23\xab\x23\x3c\xb2\x10\xa0\x53"
9145                         "\x5a\x56\x9f\xc5\xd0\xff\xbb\xe4"
9146                         "\x98\x3c\x69\x1e\xdb\x38\x8f\x7e"
9147                         "\x0f\xd2\x98\x88\x81\x8b\x45\x67"
9148                         "\xea\x33\xf1\xeb\xe9\x97\x55\x2e"
9149                         "\xd9\xaa\xeb\x5a\xec\xda\xe1\x68"
9150                         "\xa8\x9d\x3c\x84\x7c\x05\x3d\x62"
9151                         "\x87\x8f\x03\x21\x28\x95\x0c\x89"
9152                         "\x25\x22\x4a\xb0\x93\xa9\x50\xa2"
9153                         "\x2f\x57\x6e\x18\x42\x19\x54\x0c"
9154                         "\x55\x67\xc6\x11\x49\xf4\x5c\xd2"
9155                         "\xe9\x3d\xdd\x8b\x48\x71\x21\x00"
9156                         "\xc3\x9a\x6c\x85\x74\x28\x83\x4a"
9157                         "\x1b\x31\x05\xe1\x06\x92\xe7\xda"
9158                         "\x85\x73\x78\x45\x20\x7f\xae\x13"
9159                         "\x7c\x33\x06\x22\xf4\x83\xf9\x35"
9160                         "\x3f\x6c\x71\xa8\x4e\x48\xbe\x9b"
9161                         "\xce\x8a\xba\xda\xbe\x28\x08\xf7"
9162                         "\xe2\x14\x8c\x71\xea\x72\xf9\x33"
9163                         "\xf2\x88\x3f\xd7\xbb\x69\x6c\x29"
9164                         "\x19\xdc\x84\xce\x1f\x12\x4f\xc8"
9165                         "\xaf\xa5\x04\xba\x5a\xab\xb0\xd9"
9166                         "\x14\x1f\x6c\x68\x98\x39\x89\x7a"
9167                         "\xd9\xd8\x2f\xdf\xa8\x47\x4a\x25"
9168                         "\xe2\xfb\x33\xf4\x59\x78\xe1\x68"
9169                         "\x85\xcf\xfe\x59\x20\xd4\x05\x1d"
9170                         "\x80\x99\xae\xbc\xca\xae\x0f\x2f"
9171                         "\x65\x43\x34\x8e\x7e\xac\xd3\x93"
9172                         "\x2f\xac\x6d\x14\x3d\x02\x07\x70"
9173                         "\x9d\xa4\xf3\x1b\x5c\x36\xfc\x01"
9174                         "\x73\x34\x85\x0c\x6c\xd6\xf1\xbd"
9175                         "\x3f\xdf\xee\xf5\xd9\xba\x56\xef"
9176                         "\xf4\x9b\x6b\xee\x9f\x5a\x78\x6d"
9177                         "\x32\x19\xf4\xf7\xf8\x4c\x69\x0b"
9178                         "\x4b\xbc\xbb\xb7\xf2\x85\xaf\x70"
9179                         "\x75\x24\x6c\x54\xa7\x0e\x4d\x1d"
9180                         "\x01\xbf\x08\xac\xcf\x7f\x2c\xe3"
9181                         "\x14\x89\x5e\x70\x5a\x99\x92\xcd"
9182                         "\x01\x84\xc8\xd2\xab\xe5\x4f\x58"
9183                         "\xe7\x0f\x2f\x0e\xff\x68\xea\xfd"
9184                         "\x15\xb3\x17\xe6\xb0\xe7\x85\xd8"
9185                         "\x23\x2e\x05\xc7\xc9\xc4\x46\x1f"
9186                         "\xe1\x9e\x49\x20\x23\x24\x4d\x7e"
9187                         "\x29\x65\xff\xf4\xb6\xfd\x1a\x85"
9188                         "\xc4\x16\xec\xfc\xea\x7b\xd6\x2c"
9189                         "\x43\xf8\xb7\xbf\x79\xc0\x85\xcd"
9190                         "\xef\xe1\x98\xd3\xa5\xf7\x90\x8c"
9191                         "\xe9\x7f\x80\x6b\xd2\xac\x4c\x30"
9192                         "\xa7\xc6\x61\x6c\xd2\xf9\x2c\xff"
9193                         "\x30\xbc\x22\x81\x7d\x93\x12\xe4"
9194                         "\x0a\xcd\xaf\xdd\xe8\xab\x0a\x1e"
9195                         "\x13\xa4\x27\xc3\x5f\xf7\x4b\xbb"
9196                         "\x37\x09\x4b\x91\x6f\x92\x4f\xaf"
9197                         "\x52\xee\xdf\xef\x09\x6f\xf7\x5c"
9198                         "\x6e\x12\x17\x72\x63\x57\xc7\xba"
9199                         "\x3b\x6b\x38\x32\x73\x1b\x9c\x80"
9200                         "\xc1\x7a\xc6\xcf\xcd\x35\xc0\x6b"
9201                         "\x31\x1a\x6b\xe9\xd8\x2c\x29\x3f"
9202                         "\x96\xfb\xb6\xcd\x13\x91\x3b\xc2"
9203                         "\xd2\xa3\x31\x8d\xa4\xcd\x57\xcd"
9204                         "\x13\x3d\x64\xfd\x06\xce\xe6\xdc"
9205                         "\x0c\x24\x43\x31\x40\x57\xf1\x72"
9206                         "\x17\xe3\x3a\x63\x6d\x35\xcf\x5d"
9207                         "\x97\x40\x59\xdd\xf7\x3c\x02\xf7"
9208                         "\x1c\x7e\x05\xbb\xa9\x0d\x01\xb1"
9209                         "\x8e\xc0\x30\xa9\x53\x24\xc9\x89"
9210                         "\x84\x6d\xaa\xd0\xcd\x91\xc2\x4d"
9211                         "\x91\xb0\x89\xe2\xbf\x83\x44\xaa"
9212                         "\x28\x72\x23\xa0\xc2\xad\xad\x1c"
9213                         "\xfc\x3f\x09\x7a\x0b\xdc\xc5\x1b"
9214                         "\x87\x13\xc6\x5b\x59\x8d\xf2\xc8"
9215                         "\xaf\xdf\x11\x95",
9216                 .rlen   = 4100,
9217                 .np     = 2,
9218                 .tap    = { 4064, 36 },
9219         },
9220 };
9221
9222 /*
9223  * CTS (Cipher Text Stealing) mode tests
9224  */
9225 #define CTS_MODE_ENC_TEST_VECTORS 6
9226 #define CTS_MODE_DEC_TEST_VECTORS 6
9227 static struct cipher_testvec cts_mode_enc_tv_template[] = {
9228         { /* from rfc3962 */
9229                 .klen   = 16,
9230                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
9231                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
9232                 .ilen   = 17,
9233                 .input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
9234                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
9235                           "\x20",
9236                 .rlen   = 17,
9237                 .result = "\xc6\x35\x35\x68\xf2\xbf\x8c\xb4"
9238                           "\xd8\xa5\x80\x36\x2d\xa7\xff\x7f"
9239                           "\x97",
9240         }, {
9241                 .klen   = 16,
9242                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
9243                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
9244                 .ilen   = 31,
9245                 .input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
9246                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
9247                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
9248                           "\x20\x47\x61\x75\x27\x73\x20",
9249                 .rlen   = 31,
9250                 .result = "\xfc\x00\x78\x3e\x0e\xfd\xb2\xc1"
9251                           "\xd4\x45\xd4\xc8\xef\xf7\xed\x22"
9252                           "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
9253                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5",
9254         }, {
9255                 .klen   = 16,
9256                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
9257                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
9258                 .ilen   = 32,
9259                 .input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
9260                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
9261                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
9262                           "\x20\x47\x61\x75\x27\x73\x20\x43",
9263                 .rlen   = 32,
9264                 .result = "\x39\x31\x25\x23\xa7\x86\x62\xd5"
9265                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8"
9266                           "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
9267                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84",
9268         }, {
9269                 .klen   = 16,
9270                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
9271                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
9272                 .ilen   = 47,
9273                 .input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
9274                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
9275                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
9276                           "\x20\x47\x61\x75\x27\x73\x20\x43"
9277                           "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
9278                           "\x70\x6c\x65\x61\x73\x65\x2c",
9279                 .rlen   = 47,
9280                 .result = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
9281                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
9282                           "\xb3\xff\xfd\x94\x0c\x16\xa1\x8c"
9283                           "\x1b\x55\x49\xd2\xf8\x38\x02\x9e"
9284                           "\x39\x31\x25\x23\xa7\x86\x62\xd5"
9285                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5",
9286         }, {
9287                 .klen   = 16,
9288                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
9289                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
9290                 .ilen   = 48,
9291                 .input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
9292                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
9293                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
9294                           "\x20\x47\x61\x75\x27\x73\x20\x43"
9295                           "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
9296                           "\x70\x6c\x65\x61\x73\x65\x2c\x20",
9297                 .rlen   = 48,
9298                 .result = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
9299                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
9300                           "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0"
9301                           "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8"
9302                           "\x39\x31\x25\x23\xa7\x86\x62\xd5"
9303                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8",
9304         }, {
9305                 .klen   = 16,
9306                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
9307                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
9308                 .ilen   = 64,
9309                 .input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
9310                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
9311                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
9312                           "\x20\x47\x61\x75\x27\x73\x20\x43"
9313                           "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
9314                           "\x70\x6c\x65\x61\x73\x65\x2c\x20"
9315                           "\x61\x6e\x64\x20\x77\x6f\x6e\x74"
9316                           "\x6f\x6e\x20\x73\x6f\x75\x70\x2e",
9317                 .rlen   = 64,
9318                 .result = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
9319                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
9320                           "\x39\x31\x25\x23\xa7\x86\x62\xd5"
9321                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8"
9322                           "\x48\x07\xef\xe8\x36\xee\x89\xa5"
9323                           "\x26\x73\x0d\xbc\x2f\x7b\xc8\x40"
9324                           "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0"
9325                           "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8",
9326         }
9327 };
9328
9329 static struct cipher_testvec cts_mode_dec_tv_template[] = {
9330         { /* from rfc3962 */
9331                 .klen   = 16,
9332                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
9333                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
9334                 .rlen   = 17,
9335                 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
9336                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
9337                           "\x20",
9338                 .ilen   = 17,
9339                 .input  = "\xc6\x35\x35\x68\xf2\xbf\x8c\xb4"
9340                           "\xd8\xa5\x80\x36\x2d\xa7\xff\x7f"
9341                           "\x97",
9342         }, {
9343                 .klen   = 16,
9344                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
9345                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
9346                 .rlen   = 31,
9347                 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
9348                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
9349                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
9350                           "\x20\x47\x61\x75\x27\x73\x20",
9351                 .ilen   = 31,
9352                 .input  = "\xfc\x00\x78\x3e\x0e\xfd\xb2\xc1"
9353                           "\xd4\x45\xd4\xc8\xef\xf7\xed\x22"
9354                           "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
9355                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5",
9356         }, {
9357                 .klen   = 16,
9358                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
9359                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
9360                 .rlen   = 32,
9361                 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
9362                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
9363                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
9364                           "\x20\x47\x61\x75\x27\x73\x20\x43",
9365                 .ilen   = 32,
9366                 .input  = "\x39\x31\x25\x23\xa7\x86\x62\xd5"
9367                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8"
9368                           "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
9369                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84",
9370         }, {
9371                 .klen   = 16,
9372                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
9373                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
9374                 .rlen   = 47,
9375                 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
9376                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
9377                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
9378                           "\x20\x47\x61\x75\x27\x73\x20\x43"
9379                           "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
9380                           "\x70\x6c\x65\x61\x73\x65\x2c",
9381                 .ilen   = 47,
9382                 .input  = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
9383                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
9384                           "\xb3\xff\xfd\x94\x0c\x16\xa1\x8c"
9385                           "\x1b\x55\x49\xd2\xf8\x38\x02\x9e"
9386                           "\x39\x31\x25\x23\xa7\x86\x62\xd5"
9387                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5",
9388         }, {
9389                 .klen   = 16,
9390                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
9391                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
9392                 .rlen   = 48,
9393                 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
9394                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
9395                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
9396                           "\x20\x47\x61\x75\x27\x73\x20\x43"
9397                           "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
9398                           "\x70\x6c\x65\x61\x73\x65\x2c\x20",
9399                 .ilen   = 48,
9400                 .input  = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
9401                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
9402                           "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0"
9403                           "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8"
9404                           "\x39\x31\x25\x23\xa7\x86\x62\xd5"
9405                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8",
9406         }, {
9407                 .klen   = 16,
9408                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
9409                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
9410                 .rlen   = 64,
9411                 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
9412                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
9413                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
9414                           "\x20\x47\x61\x75\x27\x73\x20\x43"
9415                           "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
9416                           "\x70\x6c\x65\x61\x73\x65\x2c\x20"
9417                           "\x61\x6e\x64\x20\x77\x6f\x6e\x74"
9418                           "\x6f\x6e\x20\x73\x6f\x75\x70\x2e",
9419                 .ilen   = 64,
9420                 .input  = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
9421                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
9422                           "\x39\x31\x25\x23\xa7\x86\x62\xd5"
9423                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8"
9424                           "\x48\x07\xef\xe8\x36\xee\x89\xa5"
9425                           "\x26\x73\x0d\xbc\x2f\x7b\xc8\x40"
9426                           "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0"
9427                           "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8",
9428         }
9429 };
9430
9431 /*
9432  * Compression stuff.
9433  */
9434 #define COMP_BUF_SIZE           512
9435
9436 struct comp_testvec {
9437         int inlen, outlen;
9438         char input[COMP_BUF_SIZE];
9439         char output[COMP_BUF_SIZE];
9440 };
9441
9442 struct pcomp_testvec {
9443         void *params;
9444         unsigned int paramsize;
9445         int inlen, outlen;
9446         char input[COMP_BUF_SIZE];
9447         char output[COMP_BUF_SIZE];
9448 };
9449
9450 /*
9451  * Deflate test vectors (null-terminated strings).
9452  * Params: winbits=-11, Z_DEFAULT_COMPRESSION, MAX_MEM_LEVEL.
9453  */
9454
9455 #define DEFLATE_COMP_TEST_VECTORS 2
9456 #define DEFLATE_DECOMP_TEST_VECTORS 2
9457
9458 static struct comp_testvec deflate_comp_tv_template[] = {
9459         {
9460                 .inlen  = 70,
9461                 .outlen = 38,
9462                 .input  = "Join us now and share the software "
9463                         "Join us now and share the software ",
9464                 .output = "\xf3\xca\xcf\xcc\x53\x28\x2d\x56"
9465                           "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51"
9466                           "\x28\xce\x48\x2c\x4a\x55\x28\xc9"
9467                           "\x48\x55\x28\xce\x4f\x2b\x29\x07"
9468                           "\x71\xbc\x08\x2b\x01\x00",
9469         }, {
9470                 .inlen  = 191,
9471                 .outlen = 122,
9472                 .input  = "This document describes a compression method based on the DEFLATE"
9473                         "compression algorithm.  This document defines the application of "
9474                         "the DEFLATE algorithm to the IP Payload Compression Protocol.",
9475                 .output = "\x5d\x8d\x31\x0e\xc2\x30\x10\x04"
9476                           "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09"
9477                           "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8"
9478                           "\x24\xdb\x67\xd9\x47\xc1\xef\x49"
9479                           "\x68\x12\x51\xae\x76\x67\xd6\x27"
9480                           "\x19\x88\x1a\xde\x85\xab\x21\xf2"
9481                           "\x08\x5d\x16\x1e\x20\x04\x2d\xad"
9482                           "\xf3\x18\xa2\x15\x85\x2d\x69\xc4"
9483                           "\x42\x83\x23\xb6\x6c\x89\x71\x9b"
9484                           "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f"
9485                           "\xed\x62\xa9\x4c\x80\xff\x13\xaf"
9486                           "\x52\x37\xed\x0e\x52\x6b\x59\x02"
9487                           "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98"
9488                           "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a"
9489                           "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79"
9490                           "\xfa\x02",
9491         },
9492 };
9493
9494 static struct comp_testvec deflate_decomp_tv_template[] = {
9495         {
9496                 .inlen  = 122,
9497                 .outlen = 191,
9498                 .input  = "\x5d\x8d\x31\x0e\xc2\x30\x10\x04"
9499                           "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09"
9500                           "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8"
9501                           "\x24\xdb\x67\xd9\x47\xc1\xef\x49"
9502                           "\x68\x12\x51\xae\x76\x67\xd6\x27"
9503                           "\x19\x88\x1a\xde\x85\xab\x21\xf2"
9504                           "\x08\x5d\x16\x1e\x20\x04\x2d\xad"
9505                           "\xf3\x18\xa2\x15\x85\x2d\x69\xc4"
9506                           "\x42\x83\x23\xb6\x6c\x89\x71\x9b"
9507                           "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f"
9508                           "\xed\x62\xa9\x4c\x80\xff\x13\xaf"
9509                           "\x52\x37\xed\x0e\x52\x6b\x59\x02"
9510                           "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98"
9511                           "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a"
9512                           "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79"
9513                           "\xfa\x02",
9514                 .output = "This document describes a compression method based on the DEFLATE"
9515                         "compression algorithm.  This document defines the application of "
9516                         "the DEFLATE algorithm to the IP Payload Compression Protocol.",
9517         }, {
9518                 .inlen  = 38,
9519                 .outlen = 70,
9520                 .input  = "\xf3\xca\xcf\xcc\x53\x28\x2d\x56"
9521                           "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51"
9522                           "\x28\xce\x48\x2c\x4a\x55\x28\xc9"
9523                           "\x48\x55\x28\xce\x4f\x2b\x29\x07"
9524                           "\x71\xbc\x08\x2b\x01\x00",
9525                 .output = "Join us now and share the software "
9526                         "Join us now and share the software ",
9527         },
9528 };
9529
9530 #define ZLIB_COMP_TEST_VECTORS 2
9531 #define ZLIB_DECOMP_TEST_VECTORS 2
9532
9533 static const struct {
9534         struct nlattr nla;
9535         int val;
9536 } deflate_comp_params[] = {
9537         {
9538                 .nla = {
9539                         .nla_len        = NLA_HDRLEN + sizeof(int),
9540                         .nla_type       = ZLIB_COMP_LEVEL,
9541                 },
9542                 .val                    = Z_DEFAULT_COMPRESSION,
9543         }, {
9544                 .nla = {
9545                         .nla_len        = NLA_HDRLEN + sizeof(int),
9546                         .nla_type       = ZLIB_COMP_METHOD,
9547                 },
9548                 .val                    = Z_DEFLATED,
9549         }, {
9550                 .nla = {
9551                         .nla_len        = NLA_HDRLEN + sizeof(int),
9552                         .nla_type       = ZLIB_COMP_WINDOWBITS,
9553                 },
9554                 .val                    = -11,
9555         }, {
9556                 .nla = {
9557                         .nla_len        = NLA_HDRLEN + sizeof(int),
9558                         .nla_type       = ZLIB_COMP_MEMLEVEL,
9559                 },
9560                 .val                    = MAX_MEM_LEVEL,
9561         }, {
9562                 .nla = {
9563                         .nla_len        = NLA_HDRLEN + sizeof(int),
9564                         .nla_type       = ZLIB_COMP_STRATEGY,
9565                 },
9566                 .val                    = Z_DEFAULT_STRATEGY,
9567         }
9568 };
9569
9570 static const struct {
9571         struct nlattr nla;
9572         int val;
9573 } deflate_decomp_params[] = {
9574         {
9575                 .nla = {
9576                         .nla_len        = NLA_HDRLEN + sizeof(int),
9577                         .nla_type       = ZLIB_DECOMP_WINDOWBITS,
9578                 },
9579                 .val                    = -11,
9580         }
9581 };
9582
9583 static struct pcomp_testvec zlib_comp_tv_template[] = {
9584         {
9585                 .params = &deflate_comp_params,
9586                 .paramsize = sizeof(deflate_comp_params),
9587                 .inlen  = 70,
9588                 .outlen = 38,
9589                 .input  = "Join us now and share the software "
9590                         "Join us now and share the software ",
9591                 .output = "\xf3\xca\xcf\xcc\x53\x28\x2d\x56"
9592                           "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51"
9593                           "\x28\xce\x48\x2c\x4a\x55\x28\xc9"
9594                           "\x48\x55\x28\xce\x4f\x2b\x29\x07"
9595                           "\x71\xbc\x08\x2b\x01\x00",
9596         }, {
9597                 .params = &deflate_comp_params,
9598                 .paramsize = sizeof(deflate_comp_params),
9599                 .inlen  = 191,
9600                 .outlen = 122,
9601                 .input  = "This document describes a compression method based on the DEFLATE"
9602                         "compression algorithm.  This document defines the application of "
9603                         "the DEFLATE algorithm to the IP Payload Compression Protocol.",
9604                 .output = "\x5d\x8d\x31\x0e\xc2\x30\x10\x04"
9605                           "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09"
9606                           "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8"
9607                           "\x24\xdb\x67\xd9\x47\xc1\xef\x49"
9608                           "\x68\x12\x51\xae\x76\x67\xd6\x27"
9609                           "\x19\x88\x1a\xde\x85\xab\x21\xf2"
9610                           "\x08\x5d\x16\x1e\x20\x04\x2d\xad"
9611                           "\xf3\x18\xa2\x15\x85\x2d\x69\xc4"
9612                           "\x42\x83\x23\xb6\x6c\x89\x71\x9b"
9613                           "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f"
9614                           "\xed\x62\xa9\x4c\x80\xff\x13\xaf"
9615                           "\x52\x37\xed\x0e\x52\x6b\x59\x02"
9616                           "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98"
9617                           "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a"
9618                           "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79"
9619                           "\xfa\x02",
9620         },
9621 };
9622
9623 static struct pcomp_testvec zlib_decomp_tv_template[] = {
9624         {
9625                 .params = &deflate_decomp_params,
9626                 .paramsize = sizeof(deflate_decomp_params),
9627                 .inlen  = 122,
9628                 .outlen = 191,
9629                 .input  = "\x5d\x8d\x31\x0e\xc2\x30\x10\x04"
9630                           "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09"
9631                           "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8"
9632                           "\x24\xdb\x67\xd9\x47\xc1\xef\x49"
9633                           "\x68\x12\x51\xae\x76\x67\xd6\x27"
9634                           "\x19\x88\x1a\xde\x85\xab\x21\xf2"
9635                           "\x08\x5d\x16\x1e\x20\x04\x2d\xad"
9636                           "\xf3\x18\xa2\x15\x85\x2d\x69\xc4"
9637                           "\x42\x83\x23\xb6\x6c\x89\x71\x9b"
9638                           "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f"
9639                           "\xed\x62\xa9\x4c\x80\xff\x13\xaf"
9640                           "\x52\x37\xed\x0e\x52\x6b\x59\x02"
9641                           "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98"
9642                           "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a"
9643                           "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79"
9644                           "\xfa\x02",
9645                 .output = "This document describes a compression method based on the DEFLATE"
9646                         "compression algorithm.  This document defines the application of "
9647                         "the DEFLATE algorithm to the IP Payload Compression Protocol.",
9648         }, {
9649                 .params = &deflate_decomp_params,
9650                 .paramsize = sizeof(deflate_decomp_params),
9651                 .inlen  = 38,
9652                 .outlen = 70,
9653                 .input  = "\xf3\xca\xcf\xcc\x53\x28\x2d\x56"
9654                           "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51"
9655                           "\x28\xce\x48\x2c\x4a\x55\x28\xc9"
9656                           "\x48\x55\x28\xce\x4f\x2b\x29\x07"
9657                           "\x71\xbc\x08\x2b\x01\x00",
9658                 .output = "Join us now and share the software "
9659                         "Join us now and share the software ",
9660         },
9661 };
9662
9663 /*
9664  * LZO test vectors (null-terminated strings).
9665  */
9666 #define LZO_COMP_TEST_VECTORS 2
9667 #define LZO_DECOMP_TEST_VECTORS 2
9668
9669 static struct comp_testvec lzo_comp_tv_template[] = {
9670         {
9671                 .inlen  = 70,
9672                 .outlen = 46,
9673                 .input  = "Join us now and share the software "
9674                         "Join us now and share the software ",
9675                 .output = "\x00\x0d\x4a\x6f\x69\x6e\x20\x75"
9676                         "\x73\x20\x6e\x6f\x77\x20\x61\x6e"
9677                         "\x64\x20\x73\x68\x61\x72\x65\x20"
9678                         "\x74\x68\x65\x20\x73\x6f\x66\x74"
9679                         "\x77\x70\x01\x01\x4a\x6f\x69\x6e"
9680                         "\x3d\x88\x00\x11\x00\x00",
9681         }, {
9682                 .inlen  = 159,
9683                 .outlen = 133,
9684                 .input  = "This document describes a compression method based on the LZO "
9685                         "compression algorithm.  This document defines the application of "
9686                         "the LZO algorithm used in UBIFS.",
9687                 .output = "\x00\x2b\x54\x68\x69\x73\x20\x64"
9688                           "\x6f\x63\x75\x6d\x65\x6e\x74\x20"
9689                           "\x64\x65\x73\x63\x72\x69\x62\x65"
9690                           "\x73\x20\x61\x20\x63\x6f\x6d\x70"
9691                           "\x72\x65\x73\x73\x69\x6f\x6e\x20"
9692                           "\x6d\x65\x74\x68\x6f\x64\x20\x62"
9693                           "\x61\x73\x65\x64\x20\x6f\x6e\x20"
9694                           "\x74\x68\x65\x20\x4c\x5a\x4f\x2b"
9695                           "\x8c\x00\x0d\x61\x6c\x67\x6f\x72"
9696                           "\x69\x74\x68\x6d\x2e\x20\x20\x54"
9697                           "\x68\x69\x73\x2a\x54\x01\x02\x66"
9698                           "\x69\x6e\x65\x73\x94\x06\x05\x61"
9699                           "\x70\x70\x6c\x69\x63\x61\x74\x76"
9700                           "\x0a\x6f\x66\x88\x02\x60\x09\x27"
9701                           "\xf0\x00\x0c\x20\x75\x73\x65\x64"
9702                           "\x20\x69\x6e\x20\x55\x42\x49\x46"
9703                           "\x53\x2e\x11\x00\x00",
9704         },
9705 };
9706
9707 static struct comp_testvec lzo_decomp_tv_template[] = {
9708         {
9709                 .inlen  = 133,
9710                 .outlen = 159,
9711                 .input  = "\x00\x2b\x54\x68\x69\x73\x20\x64"
9712                           "\x6f\x63\x75\x6d\x65\x6e\x74\x20"
9713                           "\x64\x65\x73\x63\x72\x69\x62\x65"
9714                           "\x73\x20\x61\x20\x63\x6f\x6d\x70"
9715                           "\x72\x65\x73\x73\x69\x6f\x6e\x20"
9716                           "\x6d\x65\x74\x68\x6f\x64\x20\x62"
9717                           "\x61\x73\x65\x64\x20\x6f\x6e\x20"
9718                           "\x74\x68\x65\x20\x4c\x5a\x4f\x2b"
9719                           "\x8c\x00\x0d\x61\x6c\x67\x6f\x72"
9720                           "\x69\x74\x68\x6d\x2e\x20\x20\x54"
9721                           "\x68\x69\x73\x2a\x54\x01\x02\x66"
9722                           "\x69\x6e\x65\x73\x94\x06\x05\x61"
9723                           "\x70\x70\x6c\x69\x63\x61\x74\x76"
9724                           "\x0a\x6f\x66\x88\x02\x60\x09\x27"
9725                           "\xf0\x00\x0c\x20\x75\x73\x65\x64"
9726                           "\x20\x69\x6e\x20\x55\x42\x49\x46"
9727                           "\x53\x2e\x11\x00\x00",
9728                 .output = "This document describes a compression method based on the LZO "
9729                         "compression algorithm.  This document defines the application of "
9730                         "the LZO algorithm used in UBIFS.",
9731         }, {
9732                 .inlen  = 46,
9733                 .outlen = 70,
9734                 .input  = "\x00\x0d\x4a\x6f\x69\x6e\x20\x75"
9735                           "\x73\x20\x6e\x6f\x77\x20\x61\x6e"
9736                           "\x64\x20\x73\x68\x61\x72\x65\x20"
9737                           "\x74\x68\x65\x20\x73\x6f\x66\x74"
9738                           "\x77\x70\x01\x01\x4a\x6f\x69\x6e"
9739                           "\x3d\x88\x00\x11\x00\x00",
9740                 .output = "Join us now and share the software "
9741                         "Join us now and share the software ",
9742         },
9743 };
9744
9745 /*
9746  * Michael MIC test vectors from IEEE 802.11i
9747  */
9748 #define MICHAEL_MIC_TEST_VECTORS 6
9749
9750 static struct hash_testvec michael_mic_tv_template[] = {
9751         {
9752                 .key = "\x00\x00\x00\x00\x00\x00\x00\x00",
9753                 .ksize = 8,
9754                 .plaintext = zeroed_string,
9755                 .psize = 0,
9756                 .digest = "\x82\x92\x5c\x1c\xa1\xd1\x30\xb8",
9757         },
9758         {
9759                 .key = "\x82\x92\x5c\x1c\xa1\xd1\x30\xb8",
9760                 .ksize = 8,
9761                 .plaintext = "M",
9762                 .psize = 1,
9763                 .digest = "\x43\x47\x21\xca\x40\x63\x9b\x3f",
9764         },
9765         {
9766                 .key = "\x43\x47\x21\xca\x40\x63\x9b\x3f",
9767                 .ksize = 8,
9768                 .plaintext = "Mi",
9769                 .psize = 2,
9770                 .digest = "\xe8\xf9\xbe\xca\xe9\x7e\x5d\x29",
9771         },
9772         {
9773                 .key = "\xe8\xf9\xbe\xca\xe9\x7e\x5d\x29",
9774                 .ksize = 8,
9775                 .plaintext = "Mic",
9776                 .psize = 3,
9777                 .digest = "\x90\x03\x8f\xc6\xcf\x13\xc1\xdb",
9778         },
9779         {
9780                 .key = "\x90\x03\x8f\xc6\xcf\x13\xc1\xdb",
9781                 .ksize = 8,
9782                 .plaintext = "Mich",
9783                 .psize = 4,
9784                 .digest = "\xd5\x5e\x10\x05\x10\x12\x89\x86",
9785         },
9786         {
9787                 .key = "\xd5\x5e\x10\x05\x10\x12\x89\x86",
9788                 .ksize = 8,
9789                 .plaintext = "Michael",
9790                 .psize = 7,
9791                 .digest = "\x0a\x94\x2b\x12\x4e\xca\xa5\x46",
9792         }
9793 };
9794
9795 /*
9796  * CRC32C test vectors
9797  */
9798 #define CRC32C_TEST_VECTORS 14
9799
9800 static struct hash_testvec crc32c_tv_template[] = {
9801         {
9802                 .psize = 0,
9803                 .digest = "\x00\x00\x00\x00",
9804         },
9805         {
9806                 .key = "\x87\xa9\xcb\xed",
9807                 .ksize = 4,
9808                 .psize = 0,
9809                 .digest = "\x78\x56\x34\x12",
9810         },
9811         {
9812                 .key = "\xff\xff\xff\xff",
9813                 .ksize = 4,
9814                 .plaintext = "\x01\x02\x03\x04\x05\x06\x07\x08"
9815                              "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
9816                              "\x11\x12\x13\x14\x15\x16\x17\x18"
9817                              "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20"
9818                              "\x21\x22\x23\x24\x25\x26\x27\x28",
9819                 .psize = 40,
9820                 .digest = "\x7f\x15\x2c\x0e",
9821         },
9822         {
9823                 .key = "\xff\xff\xff\xff",
9824                 .ksize = 4,
9825                 .plaintext = "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30"
9826                              "\x31\x32\x33\x34\x35\x36\x37\x38"
9827                              "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40"
9828                              "\x41\x42\x43\x44\x45\x46\x47\x48"
9829                              "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50",
9830                 .psize = 40,
9831                 .digest = "\xf6\xeb\x80\xe9",
9832         },
9833         {
9834                 .key = "\xff\xff\xff\xff",
9835                 .ksize = 4,
9836                 .plaintext = "\x51\x52\x53\x54\x55\x56\x57\x58"
9837                              "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60"
9838                              "\x61\x62\x63\x64\x65\x66\x67\x68"
9839                              "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70"
9840                              "\x71\x72\x73\x74\x75\x76\x77\x78",
9841                 .psize = 40,
9842                 .digest = "\xed\xbd\x74\xde",
9843         },
9844         {
9845                 .key = "\xff\xff\xff\xff",
9846                 .ksize = 4,
9847                 .plaintext = "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80"
9848                              "\x81\x82\x83\x84\x85\x86\x87\x88"
9849                              "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90"
9850                              "\x91\x92\x93\x94\x95\x96\x97\x98"
9851                              "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0",
9852                 .psize = 40,
9853                 .digest = "\x62\xc8\x79\xd5",
9854         },
9855         {
9856                 .key = "\xff\xff\xff\xff",
9857                 .ksize = 4,
9858                 .plaintext = "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8"
9859                              "\xa9\xaa\xab\xac\xad\xae\xaf\xb0"
9860                              "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8"
9861                              "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0"
9862                              "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8",
9863                 .psize = 40,
9864                 .digest = "\xd0\x9a\x97\xba",
9865         },
9866         {
9867                 .key = "\xff\xff\xff\xff",
9868                 .ksize = 4,
9869                 .plaintext = "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0"
9870                              "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8"
9871                              "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0"
9872                              "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8"
9873                              "\xe9\xea\xeb\xec\xed\xee\xef\xf0",
9874                 .psize = 40,
9875                 .digest = "\x13\xd9\x29\x2b",
9876         },
9877         {
9878                 .key = "\x80\xea\xd3\xf1",
9879                 .ksize = 4,
9880                 .plaintext = "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30"
9881                              "\x31\x32\x33\x34\x35\x36\x37\x38"
9882                              "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40"
9883                              "\x41\x42\x43\x44\x45\x46\x47\x48"
9884                              "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50",
9885                 .psize = 40,
9886                 .digest = "\x0c\xb5\xe2\xa2",
9887         },
9888         {
9889                 .key = "\xf3\x4a\x1d\x5d",
9890                 .ksize = 4,
9891                 .plaintext = "\x51\x52\x53\x54\x55\x56\x57\x58"
9892                              "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60"
9893                              "\x61\x62\x63\x64\x65\x66\x67\x68"
9894                              "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70"
9895                              "\x71\x72\x73\x74\x75\x76\x77\x78",
9896                 .psize = 40,
9897                 .digest = "\xd1\x7f\xfb\xa6",
9898         },
9899         {
9900                 .key = "\x2e\x80\x04\x59",
9901                 .ksize = 4,
9902                 .plaintext = "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80"
9903                              "\x81\x82\x83\x84\x85\x86\x87\x88"
9904                              "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90"
9905                              "\x91\x92\x93\x94\x95\x96\x97\x98"
9906                              "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0",
9907                 .psize = 40,
9908                 .digest = "\x59\x33\xe6\x7a",
9909         },
9910         {
9911                 .key = "\xa6\xcc\x19\x85",
9912                 .ksize = 4,
9913                 .plaintext = "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8"
9914                              "\xa9\xaa\xab\xac\xad\xae\xaf\xb0"
9915                              "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8"
9916                              "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0"
9917                              "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8",
9918                 .psize = 40,
9919                 .digest = "\xbe\x03\x01\xd2",
9920         },
9921         {
9922                 .key = "\x41\xfc\xfe\x2d",
9923                 .ksize = 4,
9924                 .plaintext = "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0"
9925                              "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8"
9926                              "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0"
9927                              "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8"
9928                              "\xe9\xea\xeb\xec\xed\xee\xef\xf0",
9929                 .psize = 40,
9930                 .digest = "\x75\xd3\xc5\x24",
9931         },
9932         {
9933                 .key = "\xff\xff\xff\xff",
9934                 .ksize = 4,
9935                 .plaintext = "\x01\x02\x03\x04\x05\x06\x07\x08"
9936                              "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
9937                              "\x11\x12\x13\x14\x15\x16\x17\x18"
9938                              "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20"
9939                              "\x21\x22\x23\x24\x25\x26\x27\x28"
9940                              "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30"
9941                              "\x31\x32\x33\x34\x35\x36\x37\x38"
9942                              "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40"
9943                              "\x41\x42\x43\x44\x45\x46\x47\x48"
9944                              "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50"
9945                              "\x51\x52\x53\x54\x55\x56\x57\x58"
9946                              "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60"
9947                              "\x61\x62\x63\x64\x65\x66\x67\x68"
9948                              "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70"
9949                              "\x71\x72\x73\x74\x75\x76\x77\x78"
9950                              "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80"
9951                              "\x81\x82\x83\x84\x85\x86\x87\x88"
9952                              "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90"
9953                              "\x91\x92\x93\x94\x95\x96\x97\x98"
9954                              "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0"
9955                              "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8"
9956                              "\xa9\xaa\xab\xac\xad\xae\xaf\xb0"
9957                              "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8"
9958                              "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0"
9959                              "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8"
9960                              "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0"
9961                              "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8"
9962                              "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0"
9963                              "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8"
9964                              "\xe9\xea\xeb\xec\xed\xee\xef\xf0",
9965                 .psize = 240,
9966                 .digest = "\x75\xd3\xc5\x24",
9967                 .np = 2,
9968                 .tap = { 31, 209 }
9969         },
9970 };
9971
9972 #endif  /* _CRYPTO_TESTMGR_H */