diff options
author | Eric Biggers <ebiggers@google.com> | 2018-11-16 20:26:29 -0500 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2018-11-20 01:26:56 -0500 |
commit | 26609a21a9460145e37d90947ad957b358a05288 (patch) | |
tree | 9f45456ea58fde4464ea71910acf0faf55214555 /crypto | |
parent | 1b6fd3d5d18bbc1b1abf3b0cbc4b95a9a63d407b (diff) |
crypto: nhpoly1305 - add NHPoly1305 support
Add a generic implementation of NHPoly1305, an ε-almost-∆-universal hash
function used in the Adiantum encryption mode.
CONFIG_NHPOLY1305 is not selectable by itself since there won't be any
real reason to enable it without also enabling Adiantum support.
Signed-off-by: Eric Biggers <ebiggers@google.com>
Acked-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/Kconfig | 5 | ||||
-rw-r--r-- | crypto/Makefile | 1 | ||||
-rw-r--r-- | crypto/nhpoly1305.c | 254 | ||||
-rw-r--r-- | crypto/testmgr.c | 6 | ||||
-rw-r--r-- | crypto/testmgr.h | 1240 |
5 files changed, 1502 insertions, 4 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig index 4431c0db56b7..eaeb8a986b7d 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig | |||
@@ -496,6 +496,11 @@ config CRYPTO_KEYWRAP | |||
496 | Support for key wrapping (NIST SP800-38F / RFC3394) without | 496 | Support for key wrapping (NIST SP800-38F / RFC3394) without |
497 | padding. | 497 | padding. |
498 | 498 | ||
499 | config CRYPTO_NHPOLY1305 | ||
500 | tristate | ||
501 | select CRYPTO_HASH | ||
502 | select CRYPTO_POLY1305 | ||
503 | |||
499 | comment "Hash modes" | 504 | comment "Hash modes" |
500 | 505 | ||
501 | config CRYPTO_CMAC | 506 | config CRYPTO_CMAC |
diff --git a/crypto/Makefile b/crypto/Makefile index 102e8525814f..c3310c85f09f 100644 --- a/crypto/Makefile +++ b/crypto/Makefile | |||
@@ -85,6 +85,7 @@ obj-$(CONFIG_CRYPTO_LRW) += lrw.o | |||
85 | obj-$(CONFIG_CRYPTO_XTS) += xts.o | 85 | obj-$(CONFIG_CRYPTO_XTS) += xts.o |
86 | obj-$(CONFIG_CRYPTO_CTR) += ctr.o | 86 | obj-$(CONFIG_CRYPTO_CTR) += ctr.o |
87 | obj-$(CONFIG_CRYPTO_KEYWRAP) += keywrap.o | 87 | obj-$(CONFIG_CRYPTO_KEYWRAP) += keywrap.o |
88 | obj-$(CONFIG_CRYPTO_NHPOLY1305) += nhpoly1305.o | ||
88 | obj-$(CONFIG_CRYPTO_GCM) += gcm.o | 89 | obj-$(CONFIG_CRYPTO_GCM) += gcm.o |
89 | obj-$(CONFIG_CRYPTO_CCM) += ccm.o | 90 | obj-$(CONFIG_CRYPTO_CCM) += ccm.o |
90 | obj-$(CONFIG_CRYPTO_CHACHA20POLY1305) += chacha20poly1305.o | 91 | obj-$(CONFIG_CRYPTO_CHACHA20POLY1305) += chacha20poly1305.o |
diff --git a/crypto/nhpoly1305.c b/crypto/nhpoly1305.c new file mode 100644 index 000000000000..c8385853f699 --- /dev/null +++ b/crypto/nhpoly1305.c | |||
@@ -0,0 +1,254 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | ||
2 | /* | ||
3 | * NHPoly1305 - ε-almost-∆-universal hash function for Adiantum | ||
4 | * | ||
5 | * Copyright 2018 Google LLC | ||
6 | */ | ||
7 | |||
8 | /* | ||
9 | * "NHPoly1305" is the main component of Adiantum hashing. | ||
10 | * Specifically, it is the calculation | ||
11 | * | ||
12 | * H_M ← Poly1305_{K_M}(NH_{K_N}(pad_{128}(M))) | ||
13 | * | ||
14 | * from the procedure in section A.5 of the Adiantum paper [1]. It is an | ||
15 | * ε-almost-∆-universal (εA∆U) hash function for equal-length inputs over | ||
16 | * Z/(2^{128}Z), where the "∆" operation is addition. It hashes 1024-byte | ||
17 | * chunks of the input with the NH hash function [2], reducing the input length | ||
18 | * by 32x. The resulting NH digests are evaluated as a polynomial in | ||
19 | * GF(2^{130}-5), like in the Poly1305 MAC [3]. Note that the polynomial | ||
20 | * evaluation by itself would suffice to achieve the εA∆U property; NH is used | ||
21 | * for performance since it's over twice as fast as Poly1305. | ||
22 | * | ||
23 | * This is *not* a cryptographic hash function; do not use it as such! | ||
24 | * | ||
25 | * [1] Adiantum: length-preserving encryption for entry-level processors | ||
26 | * (https://eprint.iacr.org/2018/720.pdf) | ||
27 | * [2] UMAC: Fast and Secure Message Authentication | ||
28 | * (https://fastcrypto.org/umac/umac_proc.pdf) | ||
29 | * [3] The Poly1305-AES message-authentication code | ||
30 | * (https://cr.yp.to/mac/poly1305-20050329.pdf) | ||
31 | */ | ||
32 | |||
33 | #include <asm/unaligned.h> | ||
34 | #include <crypto/algapi.h> | ||
35 | #include <crypto/internal/hash.h> | ||
36 | #include <crypto/nhpoly1305.h> | ||
37 | #include <linux/crypto.h> | ||
38 | #include <linux/kernel.h> | ||
39 | #include <linux/module.h> | ||
40 | |||
41 | static void nh_generic(const u32 *key, const u8 *message, size_t message_len, | ||
42 | __le64 hash[NH_NUM_PASSES]) | ||
43 | { | ||
44 | u64 sums[4] = { 0, 0, 0, 0 }; | ||
45 | |||
46 | BUILD_BUG_ON(NH_PAIR_STRIDE != 2); | ||
47 | BUILD_BUG_ON(NH_NUM_PASSES != 4); | ||
48 | |||
49 | while (message_len) { | ||
50 | u32 m0 = get_unaligned_le32(message + 0); | ||
51 | u32 m1 = get_unaligned_le32(message + 4); | ||
52 | u32 m2 = get_unaligned_le32(message + 8); | ||
53 | u32 m3 = get_unaligned_le32(message + 12); | ||
54 | |||
55 | sums[0] += (u64)(u32)(m0 + key[ 0]) * (u32)(m2 + key[ 2]); | ||
56 | sums[1] += (u64)(u32)(m0 + key[ 4]) * (u32)(m2 + key[ 6]); | ||
57 | sums[2] += (u64)(u32)(m0 + key[ 8]) * (u32)(m2 + key[10]); | ||
58 | sums[3] += (u64)(u32)(m0 + key[12]) * (u32)(m2 + key[14]); | ||
59 | sums[0] += (u64)(u32)(m1 + key[ 1]) * (u32)(m3 + key[ 3]); | ||
60 | sums[1] += (u64)(u32)(m1 + key[ 5]) * (u32)(m3 + key[ 7]); | ||
61 | sums[2] += (u64)(u32)(m1 + key[ 9]) * (u32)(m3 + key[11]); | ||
62 | sums[3] += (u64)(u32)(m1 + key[13]) * (u32)(m3 + key[15]); | ||
63 | key += NH_MESSAGE_UNIT / sizeof(key[0]); | ||
64 | message += NH_MESSAGE_UNIT; | ||
65 | message_len -= NH_MESSAGE_UNIT; | ||
66 | } | ||
67 | |||
68 | hash[0] = cpu_to_le64(sums[0]); | ||
69 | hash[1] = cpu_to_le64(sums[1]); | ||
70 | hash[2] = cpu_to_le64(sums[2]); | ||
71 | hash[3] = cpu_to_le64(sums[3]); | ||
72 | } | ||
73 | |||
74 | /* Pass the next NH hash value through Poly1305 */ | ||
75 | static void process_nh_hash_value(struct nhpoly1305_state *state, | ||
76 | const struct nhpoly1305_key *key) | ||
77 | { | ||
78 | BUILD_BUG_ON(NH_HASH_BYTES % POLY1305_BLOCK_SIZE != 0); | ||
79 | |||
80 | poly1305_core_blocks(&state->poly_state, &key->poly_key, state->nh_hash, | ||
81 | NH_HASH_BYTES / POLY1305_BLOCK_SIZE); | ||
82 | } | ||
83 | |||
84 | /* | ||
85 | * Feed the next portion of the source data, as a whole number of 16-byte | ||
86 | * "NH message units", through NH and Poly1305. Each NH hash is taken over | ||
87 | * 1024 bytes, except possibly the final one which is taken over a multiple of | ||
88 | * 16 bytes up to 1024. Also, in the case where data is passed in misaligned | ||
89 | * chunks, we combine partial hashes; the end result is the same either way. | ||
90 | */ | ||
91 | static void nhpoly1305_units(struct nhpoly1305_state *state, | ||
92 | const struct nhpoly1305_key *key, | ||
93 | const u8 *src, unsigned int srclen, nh_t nh_fn) | ||
94 | { | ||
95 | do { | ||
96 | unsigned int bytes; | ||
97 | |||
98 | if (state->nh_remaining == 0) { | ||
99 | /* Starting a new NH message */ | ||
100 | bytes = min_t(unsigned int, srclen, NH_MESSAGE_BYTES); | ||
101 | nh_fn(key->nh_key, src, bytes, state->nh_hash); | ||
102 | state->nh_remaining = NH_MESSAGE_BYTES - bytes; | ||
103 | } else { | ||
104 | /* Continuing a previous NH message */ | ||
105 | __le64 tmp_hash[NH_NUM_PASSES]; | ||
106 | unsigned int pos; | ||
107 | int i; | ||
108 | |||
109 | pos = NH_MESSAGE_BYTES - state->nh_remaining; | ||
110 | bytes = min(srclen, state->nh_remaining); | ||
111 | nh_fn(&key->nh_key[pos / 4], src, bytes, tmp_hash); | ||
112 | for (i = 0; i < NH_NUM_PASSES; i++) | ||
113 | le64_add_cpu(&state->nh_hash[i], | ||
114 | le64_to_cpu(tmp_hash[i])); | ||
115 | state->nh_remaining -= bytes; | ||
116 | } | ||
117 | if (state->nh_remaining == 0) | ||
118 | process_nh_hash_value(state, key); | ||
119 | src += bytes; | ||
120 | srclen -= bytes; | ||
121 | } while (srclen); | ||
122 | } | ||
123 | |||
124 | int crypto_nhpoly1305_setkey(struct crypto_shash *tfm, | ||
125 | const u8 *key, unsigned int keylen) | ||
126 | { | ||
127 | struct nhpoly1305_key *ctx = crypto_shash_ctx(tfm); | ||
128 | int i; | ||
129 | |||
130 | if (keylen != NHPOLY1305_KEY_SIZE) | ||
131 | return -EINVAL; | ||
132 | |||
133 | poly1305_core_setkey(&ctx->poly_key, key); | ||
134 | key += POLY1305_BLOCK_SIZE; | ||
135 | |||
136 | for (i = 0; i < NH_KEY_WORDS; i++) | ||
137 | ctx->nh_key[i] = get_unaligned_le32(key + i * sizeof(u32)); | ||
138 | |||
139 | return 0; | ||
140 | } | ||
141 | EXPORT_SYMBOL(crypto_nhpoly1305_setkey); | ||
142 | |||
143 | int crypto_nhpoly1305_init(struct shash_desc *desc) | ||
144 | { | ||
145 | struct nhpoly1305_state *state = shash_desc_ctx(desc); | ||
146 | |||
147 | poly1305_core_init(&state->poly_state); | ||
148 | state->buflen = 0; | ||
149 | state->nh_remaining = 0; | ||
150 | return 0; | ||
151 | } | ||
152 | EXPORT_SYMBOL(crypto_nhpoly1305_init); | ||
153 | |||
154 | int crypto_nhpoly1305_update_helper(struct shash_desc *desc, | ||
155 | const u8 *src, unsigned int srclen, | ||
156 | nh_t nh_fn) | ||
157 | { | ||
158 | struct nhpoly1305_state *state = shash_desc_ctx(desc); | ||
159 | const struct nhpoly1305_key *key = crypto_shash_ctx(desc->tfm); | ||
160 | unsigned int bytes; | ||
161 | |||
162 | if (state->buflen) { | ||
163 | bytes = min(srclen, (int)NH_MESSAGE_UNIT - state->buflen); | ||
164 | memcpy(&state->buffer[state->buflen], src, bytes); | ||
165 | state->buflen += bytes; | ||
166 | if (state->buflen < NH_MESSAGE_UNIT) | ||
167 | return 0; | ||
168 | nhpoly1305_units(state, key, state->buffer, NH_MESSAGE_UNIT, | ||
169 | nh_fn); | ||
170 | state->buflen = 0; | ||
171 | src += bytes; | ||
172 | srclen -= bytes; | ||
173 | } | ||
174 | |||
175 | if (srclen >= NH_MESSAGE_UNIT) { | ||
176 | bytes = round_down(srclen, NH_MESSAGE_UNIT); | ||
177 | nhpoly1305_units(state, key, src, bytes, nh_fn); | ||
178 | src += bytes; | ||
179 | srclen -= bytes; | ||
180 | } | ||
181 | |||
182 | if (srclen) { | ||
183 | memcpy(state->buffer, src, srclen); | ||
184 | state->buflen = srclen; | ||
185 | } | ||
186 | return 0; | ||
187 | } | ||
188 | EXPORT_SYMBOL(crypto_nhpoly1305_update_helper); | ||
189 | |||
190 | int crypto_nhpoly1305_update(struct shash_desc *desc, | ||
191 | const u8 *src, unsigned int srclen) | ||
192 | { | ||
193 | return crypto_nhpoly1305_update_helper(desc, src, srclen, nh_generic); | ||
194 | } | ||
195 | EXPORT_SYMBOL(crypto_nhpoly1305_update); | ||
196 | |||
197 | int crypto_nhpoly1305_final_helper(struct shash_desc *desc, u8 *dst, nh_t nh_fn) | ||
198 | { | ||
199 | struct nhpoly1305_state *state = shash_desc_ctx(desc); | ||
200 | const struct nhpoly1305_key *key = crypto_shash_ctx(desc->tfm); | ||
201 | |||
202 | if (state->buflen) { | ||
203 | memset(&state->buffer[state->buflen], 0, | ||
204 | NH_MESSAGE_UNIT - state->buflen); | ||
205 | nhpoly1305_units(state, key, state->buffer, NH_MESSAGE_UNIT, | ||
206 | nh_fn); | ||
207 | } | ||
208 | |||
209 | if (state->nh_remaining) | ||
210 | process_nh_hash_value(state, key); | ||
211 | |||
212 | poly1305_core_emit(&state->poly_state, dst); | ||
213 | return 0; | ||
214 | } | ||
215 | EXPORT_SYMBOL(crypto_nhpoly1305_final_helper); | ||
216 | |||
217 | int crypto_nhpoly1305_final(struct shash_desc *desc, u8 *dst) | ||
218 | { | ||
219 | return crypto_nhpoly1305_final_helper(desc, dst, nh_generic); | ||
220 | } | ||
221 | EXPORT_SYMBOL(crypto_nhpoly1305_final); | ||
222 | |||
223 | static struct shash_alg nhpoly1305_alg = { | ||
224 | .base.cra_name = "nhpoly1305", | ||
225 | .base.cra_driver_name = "nhpoly1305-generic", | ||
226 | .base.cra_priority = 100, | ||
227 | .base.cra_ctxsize = sizeof(struct nhpoly1305_key), | ||
228 | .base.cra_module = THIS_MODULE, | ||
229 | .digestsize = POLY1305_DIGEST_SIZE, | ||
230 | .init = crypto_nhpoly1305_init, | ||
231 | .update = crypto_nhpoly1305_update, | ||
232 | .final = crypto_nhpoly1305_final, | ||
233 | .setkey = crypto_nhpoly1305_setkey, | ||
234 | .descsize = sizeof(struct nhpoly1305_state), | ||
235 | }; | ||
236 | |||
237 | static int __init nhpoly1305_mod_init(void) | ||
238 | { | ||
239 | return crypto_register_shash(&nhpoly1305_alg); | ||
240 | } | ||
241 | |||
242 | static void __exit nhpoly1305_mod_exit(void) | ||
243 | { | ||
244 | crypto_unregister_shash(&nhpoly1305_alg); | ||
245 | } | ||
246 | |||
247 | module_init(nhpoly1305_mod_init); | ||
248 | module_exit(nhpoly1305_mod_exit); | ||
249 | |||
250 | MODULE_DESCRIPTION("NHPoly1305 ε-almost-∆-universal hash function"); | ||
251 | MODULE_LICENSE("GPL v2"); | ||
252 | MODULE_AUTHOR("Eric Biggers <ebiggers@google.com>"); | ||
253 | MODULE_ALIAS_CRYPTO("nhpoly1305"); | ||
254 | MODULE_ALIAS_CRYPTO("nhpoly1305-generic"); | ||
diff --git a/crypto/testmgr.c b/crypto/testmgr.c index 6ff60c3745f1..665911c24786 100644 --- a/crypto/testmgr.c +++ b/crypto/testmgr.c | |||
@@ -3312,6 +3312,12 @@ static const struct alg_test_desc alg_test_descs[] = { | |||
3312 | } | 3312 | } |
3313 | } | 3313 | } |
3314 | }, { | 3314 | }, { |
3315 | .alg = "nhpoly1305", | ||
3316 | .test = alg_test_hash, | ||
3317 | .suite = { | ||
3318 | .hash = __VECS(nhpoly1305_tv_template) | ||
3319 | } | ||
3320 | }, { | ||
3315 | .alg = "ofb(aes)", | 3321 | .alg = "ofb(aes)", |
3316 | .test = alg_test_skcipher, | 3322 | .test = alg_test_skcipher, |
3317 | .fips_allowed = 1, | 3323 | .fips_allowed = 1, |
diff --git a/crypto/testmgr.h b/crypto/testmgr.h index a23dca2b11d0..50ea1f2705c7 100644 --- a/crypto/testmgr.h +++ b/crypto/testmgr.h | |||
@@ -27,7 +27,7 @@ | |||
27 | #define MAX_DIGEST_SIZE 64 | 27 | #define MAX_DIGEST_SIZE 64 |
28 | #define MAX_TAP 8 | 28 | #define MAX_TAP 8 |
29 | 29 | ||
30 | #define MAX_KEYLEN 160 | 30 | #define MAX_KEYLEN 1088 |
31 | #define MAX_IVLEN 32 | 31 | #define MAX_IVLEN 32 |
32 | 32 | ||
33 | struct hash_testvec { | 33 | struct hash_testvec { |
@@ -35,10 +35,10 @@ struct hash_testvec { | |||
35 | const char *key; | 35 | const char *key; |
36 | const char *plaintext; | 36 | const char *plaintext; |
37 | const char *digest; | 37 | const char *digest; |
38 | unsigned char tap[MAX_TAP]; | 38 | unsigned short tap[MAX_TAP]; |
39 | unsigned short np; | ||
39 | unsigned short psize; | 40 | unsigned short psize; |
40 | unsigned char np; | 41 | unsigned short ksize; |
41 | unsigned char ksize; | ||
42 | }; | 42 | }; |
43 | 43 | ||
44 | /* | 44 | /* |
@@ -5709,6 +5709,1238 @@ static const struct hash_testvec poly1305_tv_template[] = { | |||
5709 | }, | 5709 | }, |
5710 | }; | 5710 | }; |
5711 | 5711 | ||
5712 | /* NHPoly1305 test vectors from https://github.com/google/adiantum */ | ||
5713 | static const struct hash_testvec nhpoly1305_tv_template[] = { | ||
5714 | { | ||
5715 | .key = "\xd2\x5d\x4c\xdd\x8d\x2b\x7f\x7a" | ||
5716 | "\xd9\xbe\x71\xec\xd1\x83\x52\xe3" | ||
5717 | "\xe1\xad\xd7\x5c\x0a\x75\x9d\xec" | ||
5718 | "\x1d\x13\x7e\x5d\x71\x07\xc9\xe4" | ||
5719 | "\x57\x2d\x44\x68\xcf\xd8\xd6\xc5" | ||
5720 | "\x39\x69\x7d\x32\x75\x51\x4f\x7e" | ||
5721 | "\xb2\x4c\xc6\x90\x51\x6e\xd9\xd6" | ||
5722 | "\xa5\x8b\x2d\xf1\x94\xf9\xf7\x5e" | ||
5723 | "\x2c\x84\x7b\x41\x0f\x88\x50\x89" | ||
5724 | "\x30\xd9\xa1\x38\x46\x6c\xc0\x4f" | ||
5725 | "\xe8\xdf\xdc\x66\xab\x24\x43\x41" | ||
5726 | "\x91\x55\x29\x65\x86\x28\x5e\x45" | ||
5727 | "\xd5\x2d\xb7\x80\x08\x9a\xc3\xd4" | ||
5728 | "\x9a\x77\x0a\xd4\xef\x3e\xe6\x3f" | ||
5729 | "\x6f\x2f\x9b\x3a\x7d\x12\x1e\x80" | ||
5730 | "\x6c\x44\xa2\x25\xe1\xf6\x60\xe9" | ||
5731 | "\x0d\xaf\xc5\x3c\xa5\x79\xae\x64" | ||
5732 | "\xbc\xa0\x39\xa3\x4d\x10\xe5\x4d" | ||
5733 | "\xd5\xe7\x89\x7a\x13\xee\x06\x78" | ||
5734 | "\xdc\xa4\xdc\x14\x27\xe6\x49\x38" | ||
5735 | "\xd0\xe0\x45\x25\x36\xc5\xf4\x79" | ||
5736 | "\x2e\x9a\x98\x04\xe4\x2b\x46\x52" | ||
5737 | "\x7c\x33\xca\xe2\x56\x51\x50\xe2" | ||
5738 | "\xa5\x9a\xae\x18\x6a\x13\xf8\xd2" | ||
5739 | "\x21\x31\x66\x02\xe2\xda\x8d\x7e" | ||
5740 | "\x41\x19\xb2\x61\xee\x48\x8f\xf1" | ||
5741 | "\x65\x24\x2e\x1e\x68\xce\x05\xd9" | ||
5742 | "\x2a\xcf\xa5\x3a\x57\xdd\x35\x91" | ||
5743 | "\x93\x01\xca\x95\xfc\x2b\x36\x04" | ||
5744 | "\xe6\x96\x97\x28\xf6\x31\xfe\xa3" | ||
5745 | "\x9d\xf6\x6a\x1e\x80\x8d\xdc\xec" | ||
5746 | "\xaf\x66\x11\x13\x02\x88\xd5\x27" | ||
5747 | "\x33\xb4\x1a\xcd\xa3\xf6\xde\x31" | ||
5748 | "\x8e\xc0\x0e\x6c\xd8\x5a\x97\x5e" | ||
5749 | "\xdd\xfd\x60\x69\x38\x46\x3f\x90" | ||
5750 | "\x5e\x97\xd3\x32\x76\xc7\x82\x49" | ||
5751 | "\xfe\xba\x06\x5f\x2f\xa2\xfd\xff" | ||
5752 | "\x80\x05\x40\xe4\x33\x03\xfb\x10" | ||
5753 | "\xc0\xde\x65\x8c\xc9\x8d\x3a\x9d" | ||
5754 | "\xb5\x7b\x36\x4b\xb5\x0c\xcf\x00" | ||
5755 | "\x9c\x87\xe4\x49\xad\x90\xda\x4a" | ||
5756 | "\xdd\xbd\xff\xe2\x32\x57\xd6\x78" | ||
5757 | "\x36\x39\x6c\xd3\x5b\x9b\x88\x59" | ||
5758 | "\x2d\xf0\x46\xe4\x13\x0e\x2b\x35" | ||
5759 | "\x0d\x0f\x73\x8a\x4f\x26\x84\x75" | ||
5760 | "\x88\x3c\xc5\x58\x66\x18\x1a\xb4" | ||
5761 | "\x64\x51\x34\x27\x1b\xa4\x11\xc9" | ||
5762 | "\x6d\x91\x8a\xfa\x32\x60\x9d\xd7" | ||
5763 | "\x87\xe5\xaa\x43\x72\xf8\xda\xd1" | ||
5764 | "\x48\x44\x13\x61\xdc\x8c\x76\x17" | ||
5765 | "\x0c\x85\x4e\xf3\xdd\xa2\x42\xd2" | ||
5766 | "\x74\xc1\x30\x1b\xeb\x35\x31\x29" | ||
5767 | "\x5b\xd7\x4c\x94\x46\x35\xa1\x23" | ||
5768 | "\x50\xf2\xa2\x8e\x7e\x4f\x23\x4f" | ||
5769 | "\x51\xff\xe2\xc9\xa3\x7d\x56\x8b" | ||
5770 | "\x41\xf2\xd0\xc5\x57\x7e\x59\xac" | ||
5771 | "\xbb\x65\xf3\xfe\xf7\x17\xef\x63" | ||
5772 | "\x7c\x6f\x23\xdd\x22\x8e\xed\x84" | ||
5773 | "\x0e\x3b\x09\xb3\xf3\xf4\x8f\xcd" | ||
5774 | "\x37\xa8\xe1\xa7\x30\xdb\xb1\xa2" | ||
5775 | "\x9c\xa2\xdf\x34\x17\x3e\x68\x44" | ||
5776 | "\xd0\xde\x03\x50\xd1\x48\x6b\x20" | ||
5777 | "\xe2\x63\x45\xa5\xea\x87\xc2\x42" | ||
5778 | "\x95\x03\x49\x05\xed\xe0\x90\x29" | ||
5779 | "\x1a\xb8\xcf\x9b\x43\xcf\x29\x7a" | ||
5780 | "\x63\x17\x41\x9f\xe0\xc9\x10\xfd" | ||
5781 | "\x2c\x56\x8c\x08\x55\xb4\xa9\x27" | ||
5782 | "\x0f\x23\xb1\x05\x6a\x12\x46\xc7" | ||
5783 | "\xe1\xfe\x28\x93\x93\xd7\x2f\xdc" | ||
5784 | "\x98\x30\xdb\x75\x8a\xbe\x97\x7a" | ||
5785 | "\x02\xfb\x8c\xba\xbe\x25\x09\xbe" | ||
5786 | "\xce\xcb\xa2\xef\x79\x4d\x0e\x9d" | ||
5787 | "\x1b\x9d\xb6\x39\x34\x38\xfa\x07" | ||
5788 | "\xec\xe8\xfc\x32\x85\x1d\xf7\x85" | ||
5789 | "\x63\xc3\x3c\xc0\x02\x75\xd7\x3f" | ||
5790 | "\xb2\x68\x60\x66\x65\x81\xc6\xb1" | ||
5791 | "\x42\x65\x4b\x4b\x28\xd7\xc7\xaa" | ||
5792 | "\x9b\xd2\xdc\x1b\x01\xe0\x26\x39" | ||
5793 | "\x01\xc1\x52\x14\xd1\x3f\xb7\xe6" | ||
5794 | "\x61\x41\xc7\x93\xd2\xa2\x67\xc6" | ||
5795 | "\xf7\x11\xb5\xf5\xea\xdd\x19\xfb" | ||
5796 | "\x4d\x21\x12\xd6\x7d\xf1\x10\xb0" | ||
5797 | "\x89\x07\xc7\x5a\x52\x73\x70\x2f" | ||
5798 | "\x32\xef\x65\x2b\x12\xb2\xf0\xf5" | ||
5799 | "\x20\xe0\x90\x59\x7e\x64\xf1\x4c" | ||
5800 | "\x41\xb3\xa5\x91\x08\xe6\x5e\x5f" | ||
5801 | "\x05\x56\x76\xb4\xb0\xcd\x70\x53" | ||
5802 | "\x10\x48\x9c\xff\xc2\x69\x55\x24" | ||
5803 | "\x87\xef\x84\xea\xfb\xa7\xbf\xa0" | ||
5804 | "\x91\x04\xad\x4f\x8b\x57\x54\x4b" | ||
5805 | "\xb6\xe9\xd1\xac\x37\x2f\x1d\x2e" | ||
5806 | "\xab\xa5\xa4\xe8\xff\xfb\xd9\x39" | ||
5807 | "\x2f\xb7\xac\xd1\xfe\x0b\x9a\x80" | ||
5808 | "\x0f\xb6\xf4\x36\x39\x90\x51\xe3" | ||
5809 | "\x0a\x2f\xb6\x45\x76\x89\xcd\x61" | ||
5810 | "\xfe\x48\x5f\x75\x1d\x13\x00\x62" | ||
5811 | "\x80\x24\x47\xe7\xbc\x37\xd7\xe3" | ||
5812 | "\x15\xe8\x68\x22\xaf\x80\x6f\x4b" | ||
5813 | "\xa8\x9f\x01\x10\x48\x14\xc3\x02" | ||
5814 | "\x52\xd2\xc7\x75\x9b\x52\x6d\x30" | ||
5815 | "\xac\x13\x85\xc8\xf7\xa3\x58\x4b" | ||
5816 | "\x49\xf7\x1c\x45\x55\x8c\x39\x9a" | ||
5817 | "\x99\x6d\x97\x27\x27\xe6\xab\xdd" | ||
5818 | "\x2c\x42\x1b\x35\xdd\x9d\x73\xbb" | ||
5819 | "\x6c\xf3\x64\xf1\xfb\xb9\xf7\xe6" | ||
5820 | "\x4a\x3c\xc0\x92\xc0\x2e\xb7\x1a" | ||
5821 | "\xbe\xab\xb3\x5a\xe5\xea\xb1\x48" | ||
5822 | "\x58\x13\x53\x90\xfd\xc3\x8e\x54" | ||
5823 | "\xf9\x18\x16\x73\xe8\xcb\x6d\x39" | ||
5824 | "\x0e\xd7\xe0\xfe\xb6\x9f\x43\x97" | ||
5825 | "\xe8\xd0\x85\x56\x83\x3e\x98\x68" | ||
5826 | "\x7f\xbd\x95\xa8\x9a\x61\x21\x8f" | ||
5827 | "\x06\x98\x34\xa6\xc8\xd6\x1d\xf3" | ||
5828 | "\x3d\x43\xa4\x9a\x8c\xe5\xd3\x5a" | ||
5829 | "\x32\xa2\x04\x22\xa4\x19\x1a\x46" | ||
5830 | "\x42\x7e\x4d\xe5\xe0\xe6\x0e\xca" | ||
5831 | "\xd5\x58\x9d\x2c\xaf\xda\x33\x5c" | ||
5832 | "\xb0\x79\x9e\xc9\xfc\xca\xf0\x2f" | ||
5833 | "\xa8\xb2\x77\xeb\x7a\xa2\xdd\x37" | ||
5834 | "\x35\x83\x07\xd6\x02\x1a\xb6\x6c" | ||
5835 | "\x24\xe2\x59\x08\x0e\xfd\x3e\x46" | ||
5836 | "\xec\x40\x93\xf4\x00\x26\x4f\x2a" | ||
5837 | "\xff\x47\x2f\xeb\x02\x92\x26\x5b" | ||
5838 | "\x53\x17\xc2\x8d\x2a\xc7\xa3\x1b" | ||
5839 | "\xcd\xbc\xa7\xe8\xd1\x76\xe3\x80" | ||
5840 | "\x21\xca\x5d\x3b\xe4\x9c\x8f\xa9" | ||
5841 | "\x5b\x7f\x29\x7f\x7c\xd8\xed\x6d" | ||
5842 | "\x8c\xb2\x86\x85\xe7\x77\xf2\x85" | ||
5843 | "\xab\x38\xa9\x9d\xc1\x4e\xc5\x64" | ||
5844 | "\x33\x73\x8b\x59\x03\xad\x05\xdf" | ||
5845 | "\x25\x98\x31\xde\xef\x13\xf1\x9b" | ||
5846 | "\x3c\x91\x9d\x7b\xb1\xfa\xe6\xbf" | ||
5847 | "\x5b\xed\xa5\x55\xe6\xea\x6c\x74" | ||
5848 | "\xf4\xb9\xe4\x45\x64\x72\x81\xc2" | ||
5849 | "\x4c\x28\xd4\xcd\xac\xe2\xde\xf9" | ||
5850 | "\xeb\x5c\xeb\x61\x60\x5a\xe5\x28", | ||
5851 | .ksize = 1088, | ||
5852 | .plaintext = "", | ||
5853 | .psize = 0, | ||
5854 | .digest = "\x00\x00\x00\x00\x00\x00\x00\x00" | ||
5855 | "\x00\x00\x00\x00\x00\x00\x00\x00", | ||
5856 | }, { | ||
5857 | .key = "\x29\x21\x43\xcb\xcb\x13\x07\xde" | ||
5858 | "\xbf\x48\xdf\x8a\x7f\xa2\x84\xde" | ||
5859 | "\x72\x23\x9d\xf5\xf0\x07\xf2\x4c" | ||
5860 | "\x20\x3a\x93\xb9\xcd\x5d\xfe\xcb" | ||
5861 | "\x99\x2c\x2b\x58\xc6\x50\x5f\x94" | ||
5862 | "\x56\xc3\x7c\x0d\x02\x3f\xb8\x5e" | ||
5863 | "\x7b\xc0\x6c\x51\x34\x76\xc0\x0e" | ||
5864 | "\xc6\x22\xc8\x9e\x92\xa0\x21\xc9" | ||
5865 | "\x85\x5c\x7c\xf8\xe2\x64\x47\xc9" | ||
5866 | "\xe4\xa2\x57\x93\xf8\xa2\x69\xcd" | ||
5867 | "\x62\x98\x99\xf4\xd7\x7b\x14\xb1" | ||
5868 | "\xd8\x05\xff\x04\x15\xc9\xe1\x6e" | ||
5869 | "\x9b\xe6\x50\x6b\x0b\x3f\x22\x1f" | ||
5870 | "\x08\xde\x0c\x5b\x08\x7e\xc6\x2f" | ||
5871 | "\x6c\xed\xd6\xb2\x15\xa4\xb3\xf9" | ||
5872 | "\xa7\x46\x38\x2a\xea\x69\xa5\xde" | ||
5873 | "\x02\xc3\x96\x89\x4d\x55\x3b\xed" | ||
5874 | "\x3d\x3a\x85\x77\xbf\x97\x45\x5c" | ||
5875 | "\x9e\x02\x69\xe2\x1b\x68\xbe\x96" | ||
5876 | "\xfb\x64\x6f\x0f\xf6\x06\x40\x67" | ||
5877 | "\xfa\x04\xe3\x55\xfa\xbe\xa4\x60" | ||
5878 | "\xef\x21\x66\x97\xe6\x9d\x5c\x1f" | ||
5879 | "\x62\x37\xaa\x31\xde\xe4\x9c\x28" | ||
5880 | "\x95\xe0\x22\x86\xf4\x4d\xf3\x07" | ||
5881 | "\xfd\x5f\x3a\x54\x2c\x51\x80\x71" | ||
5882 | "\xba\x78\x69\x5b\x65\xab\x1f\x81" | ||
5883 | "\xed\x3b\xff\x34\xa3\xfb\xbc\x73" | ||
5884 | "\x66\x7d\x13\x7f\xdf\x6e\xe2\xe2" | ||
5885 | "\xeb\x4f\x6c\xda\x7d\x33\x57\xd0" | ||
5886 | "\xd3\x7c\x95\x4f\x33\x58\x21\xc7" | ||
5887 | "\xc0\xe5\x6f\x42\x26\xc6\x1f\x5e" | ||
5888 | "\x85\x1b\x98\x9a\xa2\x1e\x55\x77" | ||
5889 | "\x23\xdf\x81\x5e\x79\x55\x05\xfc" | ||
5890 | "\xfb\xda\xee\xba\x5a\xba\xf7\x77" | ||
5891 | "\x7f\x0e\xd3\xe1\x37\xfe\x8d\x2b" | ||
5892 | "\xd5\x3f\xfb\xd0\xc0\x3c\x0b\x3f" | ||
5893 | "\xcf\x3c\x14\xcf\xfb\x46\x72\x4c" | ||
5894 | "\x1f\x39\xe2\xda\x03\x71\x6d\x23" | ||
5895 | "\xef\x93\xcd\x39\xd9\x37\x80\x4d" | ||
5896 | "\x65\x61\xd1\x2c\x03\xa9\x47\x72" | ||
5897 | "\x4d\x1e\x0e\x16\x33\x0f\x21\x17" | ||
5898 | "\xec\x92\xea\x6f\x37\x22\xa4\xd8" | ||
5899 | "\x03\x33\x9e\xd8\x03\x69\x9a\xe8" | ||
5900 | "\xb2\x57\xaf\x78\x99\x05\x12\xab" | ||
5901 | "\x48\x90\x80\xf0\x12\x9b\x20\x64" | ||
5902 | "\x7a\x1d\x47\x5f\xba\x3c\xf9\xc3" | ||
5903 | "\x0a\x0d\x8d\xa1\xf9\x1b\x82\x13" | ||
5904 | "\x3e\x0d\xec\x0a\x83\xc0\x65\xe1" | ||
5905 | "\xe9\x95\xff\x97\xd6\xf2\xe4\xd5" | ||
5906 | "\x86\xc0\x1f\x29\x27\x63\xd7\xde" | ||
5907 | "\xb7\x0a\x07\x99\x04\x2d\xa3\x89" | ||
5908 | "\xa2\x43\xcf\xf3\xe1\x43\xac\x4a" | ||
5909 | "\x06\x97\xd0\x05\x4f\x87\xfa\xf9" | ||
5910 | "\x9b\xbf\x52\x70\xbd\xbc\x6c\xf3" | ||
5911 | "\x03\x13\x60\x41\x28\x09\xec\xcc" | ||
5912 | "\xb1\x1a\xec\xd6\xfb\x6f\x2a\x89" | ||
5913 | "\x5d\x0b\x53\x9c\x59\xc1\x84\x21" | ||
5914 | "\x33\x51\x47\x19\x31\x9c\xd4\x0a" | ||
5915 | "\x4d\x04\xec\x50\x90\x61\xbd\xbc" | ||
5916 | "\x7e\xc8\xd9\x6c\x98\x1d\x45\x41" | ||
5917 | "\x17\x5e\x97\x1c\xc5\xa8\xe8\xea" | ||
5918 | "\x46\x58\x53\xf7\x17\xd5\xad\x11" | ||
5919 | "\xc8\x54\xf5\x7a\x33\x90\xf5\x19" | ||
5920 | "\xba\x36\xb4\xfc\x52\xa5\x72\x3d" | ||
5921 | "\x14\xbb\x55\xa7\xe9\xe3\x12\xf7" | ||
5922 | "\x1c\x30\xa2\x82\x03\xbf\x53\x91" | ||
5923 | "\x2e\x60\x41\x9f\x5b\x69\x39\xf6" | ||
5924 | "\x4d\xc8\xf8\x46\x7a\x7f\xa4\x98" | ||
5925 | "\x36\xff\x06\xcb\xca\xe7\x33\xf2" | ||
5926 | "\xc0\x4a\xf4\x3c\x14\x44\x5f\x6b" | ||
5927 | "\x75\xef\x02\x36\x75\x08\x14\xfd" | ||
5928 | "\x10\x8e\xa5\x58\xd0\x30\x46\x49" | ||
5929 | "\xaf\x3a\xf8\x40\x3d\x35\xdb\x84" | ||
5930 | "\x11\x2e\x97\x6a\xb7\x87\x7f\xad" | ||
5931 | "\xf1\xfa\xa5\x63\x60\xd8\x5e\xbf" | ||
5932 | "\x41\x78\x49\xcf\x77\xbb\x56\xbb" | ||
5933 | "\x7d\x01\x67\x05\x22\xc8\x8f\x41" | ||
5934 | "\xba\x81\xd2\xca\x2c\x38\xac\x76" | ||
5935 | "\x06\xc1\x1a\xc2\xce\xac\x90\x67" | ||
5936 | "\x57\x3e\x20\x12\x5b\xd9\x97\x58" | ||
5937 | "\x65\x05\xb7\x04\x61\x7e\xd8\x3a" | ||
5938 | "\xbf\x55\x3b\x13\xe9\x34\x5a\x37" | ||
5939 | "\x36\xcb\x94\x45\xc5\x32\xb3\xa0" | ||
5940 | "\x0c\x3e\x49\xc5\xd3\xed\xa7\xf0" | ||
5941 | "\x1c\x69\xcc\xea\xcc\x83\xc9\x16" | ||
5942 | "\x95\x72\x4b\xf4\x89\xd5\xb9\x10" | ||
5943 | "\xf6\x2d\x60\x15\xea\x3c\x06\x66" | ||
5944 | "\x9f\x82\xad\x17\xce\xd2\xa4\x48" | ||
5945 | "\x7c\x65\xd9\xf8\x02\x4d\x9b\x4c" | ||
5946 | "\x89\x06\x3a\x34\x85\x48\x89\x86" | ||
5947 | "\xf9\x24\xa9\x54\x72\xdb\x44\x95" | ||
5948 | "\xc7\x44\x1c\x19\x11\x4c\x04\xdc" | ||
5949 | "\x13\xb9\x67\xc8\xc3\x3a\x6a\x50" | ||
5950 | "\xfa\xd1\xfb\xe1\x88\xb6\xf1\xa3" | ||
5951 | "\xc5\x3b\xdc\x38\x45\x16\x26\x02" | ||
5952 | "\x3b\xb8\x8f\x8b\x58\x7d\x23\x04" | ||
5953 | "\x50\x6b\x81\x9f\xae\x66\xac\x6f" | ||
5954 | "\xcf\x2a\x9d\xf1\xfd\x1d\x57\x07" | ||
5955 | "\xbe\x58\xeb\x77\x0c\xe3\xc2\x19" | ||
5956 | "\x14\x74\x1b\x51\x1c\x4f\x41\xf3" | ||
5957 | "\x32\x89\xb3\xe7\xde\x62\xf6\x5f" | ||
5958 | "\xc7\x6a\x4a\x2a\x5b\x0f\x5f\x87" | ||
5959 | "\x9c\x08\xb9\x02\x88\xc8\x29\xb7" | ||
5960 | "\x94\x52\xfa\x52\xfe\xaa\x50\x10" | ||
5961 | "\xba\x48\x75\x5e\x11\x1b\xe6\x39" | ||
5962 | "\xd7\x82\x2c\x87\xf1\x1e\xa4\x38" | ||
5963 | "\x72\x3e\x51\xe7\xd8\x3e\x5b\x7b" | ||
5964 | "\x31\x16\x89\xba\xd6\xad\x18\x5e" | ||
5965 | "\xba\xf8\x12\xb3\xf4\x6c\x47\x30" | ||
5966 | "\xc0\x38\x58\xb3\x10\x8d\x58\x5d" | ||
5967 | "\xb4\xfb\x19\x7e\x41\xc3\x66\xb8" | ||
5968 | "\xd6\x72\x84\xe1\x1a\xc2\x71\x4c" | ||
5969 | "\x0d\x4a\x21\x7a\xab\xa2\xc0\x36" | ||
5970 | "\x15\xc5\xe9\x46\xd7\x29\x17\x76" | ||
5971 | "\x5e\x47\x36\x7f\x72\x05\xa7\xcc" | ||
5972 | "\x36\x63\xf9\x47\x7d\xe6\x07\x3c" | ||
5973 | "\x8b\x79\x1d\x96\x61\x8d\x90\x65" | ||
5974 | "\x7c\xf5\xeb\x4e\x6e\x09\x59\x6d" | ||
5975 | "\x62\x50\x1b\x0f\xe0\xdc\x78\xf2" | ||
5976 | "\x5b\x83\x1a\xa1\x11\x75\xfd\x18" | ||
5977 | "\xd7\xe2\x8d\x65\x14\x21\xce\xbe" | ||
5978 | "\xb5\x87\xe3\x0a\xda\x24\x0a\x64" | ||
5979 | "\xa9\x9f\x03\x8d\x46\x5d\x24\x1a" | ||
5980 | "\x8a\x0c\x42\x01\xca\xb1\x5f\x7c" | ||
5981 | "\xa5\xac\x32\x4a\xb8\x07\x91\x18" | ||
5982 | "\x6f\xb0\x71\x3c\xc9\xb1\xa8\xf8" | ||
5983 | "\x5f\x69\xa5\xa1\xca\x9e\x7a\xaa" | ||
5984 | "\xac\xe9\xc7\x47\x41\x75\x25\xc3" | ||
5985 | "\x73\xe2\x0b\xdd\x6d\x52\x71\xbe" | ||
5986 | "\xc5\xdc\xb4\xe7\x01\x26\x53\x77" | ||
5987 | "\x86\x90\x85\x68\x6b\x7b\x03\x53" | ||
5988 | "\xda\x52\x52\x51\x68\xc8\xf3\xec" | ||
5989 | "\x6c\xd5\x03\x7a\xa3\x0e\xb4\x02" | ||
5990 | "\x5f\x1a\xab\xee\xca\x67\x29\x7b" | ||
5991 | "\xbd\x96\x59\xb3\x8b\x32\x7a\x92" | ||
5992 | "\x9f\xd8\x25\x2b\xdf\xc0\x4c\xda", | ||
5993 | .ksize = 1088, | ||
5994 | .plaintext = "\xbc\xda\x81\xa8\x78\x79\x1c\xbf" | ||
5995 | "\x77\x53\xba\x4c\x30\x5b\xb8\x33", | ||
5996 | .psize = 16, | ||
5997 | .digest = "\x04\xbf\x7f\x6a\xce\x72\xea\x6a" | ||
5998 | "\x79\xdb\xb0\xc9\x60\xf6\x12\xcc", | ||
5999 | .np = 6, | ||
6000 | .tap = { 4, 4, 1, 1, 1, 5 }, | ||
6001 | }, { | ||
6002 | .key = "\x65\x4d\xe3\xf8\xd2\x4c\xac\x28" | ||
6003 | "\x68\xf5\xb3\x81\x71\x4b\xa1\xfa" | ||
6004 | "\x04\x0e\xd3\x81\x36\xbe\x0c\x81" | ||
6005 | "\x5e\xaf\xbc\x3a\xa4\xc0\x8e\x8b" | ||
6006 | "\x55\x63\xd3\x52\x97\x88\xd6\x19" | ||
6007 | "\xbc\x96\xdf\x49\xff\x04\x63\xf5" | ||
6008 | "\x0c\x11\x13\xaa\x9e\x1f\x5a\xf7" | ||
6009 | "\xdd\xbd\x37\x80\xc3\xd0\xbe\xa7" | ||
6010 | "\x05\xc8\x3c\x98\x1e\x05\x3c\x84" | ||
6011 | "\x39\x61\xc4\xed\xed\x71\x1b\xc4" | ||
6012 | "\x74\x45\x2c\xa1\x56\x70\x97\xfd" | ||
6013 | "\x44\x18\x07\x7d\xca\x60\x1f\x73" | ||
6014 | "\x3b\x6d\x21\xcb\x61\x87\x70\x25" | ||
6015 | "\x46\x21\xf1\x1f\x21\x91\x31\x2d" | ||
6016 | "\x5d\xcc\xb7\xd1\x84\x3e\x3d\xdb" | ||
6017 | "\x03\x53\x2a\x82\xa6\x9a\x95\xbc" | ||
6018 | "\x1a\x1e\x0a\x5e\x07\x43\xab\x43" | ||
6019 | "\xaf\x92\x82\x06\x91\x04\x09\xf4" | ||
6020 | "\x17\x0a\x9a\x2c\x54\xdb\xb8\xf4" | ||
6021 | "\xd0\xf0\x10\x66\x24\x8d\xcd\xda" | ||
6022 | "\xfe\x0e\x45\x9d\x6f\xc4\x4e\xf4" | ||
6023 | "\x96\xaf\x13\xdc\xa9\xd4\x8c\xc4" | ||
6024 | "\xc8\x57\x39\x3c\xc2\xd3\x0a\x76" | ||
6025 | "\x4a\x1f\x75\x83\x44\xc7\xd1\x39" | ||
6026 | "\xd8\xb5\x41\xba\x73\x87\xfa\x96" | ||
6027 | "\xc7\x18\x53\xfb\x9b\xda\xa0\x97" | ||
6028 | "\x1d\xee\x60\x85\x9e\x14\xc3\xce" | ||
6029 | "\xc4\x05\x29\x3b\x95\x30\xa3\xd1" | ||
6030 | "\x9f\x82\x6a\x04\xf5\xa7\x75\x57" | ||
6031 | "\x82\x04\xfe\x71\x51\x71\xb1\x49" | ||
6032 | "\x50\xf8\xe0\x96\xf1\xfa\xa8\x88" | ||
6033 | "\x3f\xa0\x86\x20\xd4\x60\x79\x59" | ||
6034 | "\x17\x2d\xd1\x09\xf4\xec\x05\x57" | ||
6035 | "\xcf\x62\x7e\x0e\x7e\x60\x78\xe6" | ||
6036 | "\x08\x60\x29\xd8\xd5\x08\x1a\x24" | ||
6037 | "\xc4\x6c\x24\xe7\x92\x08\x3d\x8a" | ||
6038 | "\x98\x7a\xcf\x99\x0a\x65\x0e\xdc" | ||
6039 | "\x8c\x8a\xbe\x92\x82\x91\xcc\x62" | ||
6040 | "\x30\xb6\xf4\x3f\xc6\x8a\x7f\x12" | ||
6041 | "\x4a\x8a\x49\xfa\x3f\x5c\xd4\x5a" | ||
6042 | "\xa6\x82\xa3\xe6\xaa\x34\x76\xb2" | ||
6043 | "\xab\x0a\x30\xef\x6c\x77\x58\x3f" | ||
6044 | "\x05\x6b\xcc\x5c\xae\xdc\xd7\xb9" | ||
6045 | "\x51\x7e\x8d\x32\x5b\x24\x25\xbe" | ||
6046 | "\x2b\x24\x01\xcf\x80\xda\x16\xd8" | ||
6047 | "\x90\x72\x2c\xad\x34\x8d\x0c\x74" | ||
6048 | "\x02\xcb\xfd\xcf\x6e\xef\x97\xb5" | ||
6049 | "\x4c\xf2\x68\xca\xde\x43\x9e\x8a" | ||
6050 | "\xc5\x5f\x31\x7f\x14\x71\x38\xec" | ||
6051 | "\xbd\x98\xe5\x71\xc4\xb5\xdb\xef" | ||
6052 | "\x59\xd2\xca\xc0\xc1\x86\x75\x01" | ||
6053 | "\xd4\x15\x0d\x6f\xa4\xf7\x7b\x37" | ||
6054 | "\x47\xda\x18\x93\x63\xda\xbe\x9e" | ||
6055 | "\x07\xfb\xb2\x83\xd5\xc4\x34\x55" | ||
6056 | "\xee\x73\xa1\x42\x96\xf9\x66\x41" | ||
6057 | "\xa4\xcc\xd2\x93\x6e\xe1\x0a\xbb" | ||
6058 | "\xd2\xdd\x18\x23\xe6\x6b\x98\x0b" | ||
6059 | "\x8a\x83\x59\x2c\xc3\xa6\x59\x5b" | ||
6060 | "\x01\x22\x59\xf7\xdc\xb0\x87\x7e" | ||
6061 | "\xdb\x7d\xf4\x71\x41\xab\xbd\xee" | ||
6062 | "\x79\xbe\x3c\x01\x76\x0b\x2d\x0a" | ||
6063 | "\x42\xc9\x77\x8c\xbb\x54\x95\x60" | ||
6064 | "\x43\x2e\xe0\x17\x52\xbd\x90\xc9" | ||
6065 | "\xc2\x2c\xdd\x90\x24\x22\x76\x40" | ||
6066 | "\x5c\xb9\x41\xc9\xa1\xd5\xbd\xe3" | ||
6067 | "\x44\xe0\xa4\xab\xcc\xb8\xe2\x32" | ||
6068 | "\x02\x15\x04\x1f\x8c\xec\x5d\x14" | ||
6069 | "\xac\x18\xaa\xef\x6e\x33\x19\x6e" | ||
6070 | "\xde\xfe\x19\xdb\xeb\x61\xca\x18" | ||
6071 | "\xad\xd8\x3d\xbf\x09\x11\xc7\xa5" | ||
6072 | "\x86\x0b\x0f\xe5\x3e\xde\xe8\xd9" | ||
6073 | "\x0a\x69\x9e\x4c\x20\xff\xf9\xc5" | ||
6074 | "\xfa\xf8\xf3\x7f\xa5\x01\x4b\x5e" | ||
6075 | "\x0f\xf0\x3b\x68\xf0\x46\x8c\x2a" | ||
6076 | "\x7a\xc1\x8f\xa0\xfe\x6a\x5b\x44" | ||
6077 | "\x70\x5c\xcc\x92\x2c\x6f\x0f\xbd" | ||
6078 | "\x25\x3e\xb7\x8e\x73\x58\xda\xc9" | ||
6079 | "\xa5\xaa\x9e\xf3\x9b\xfd\x37\x3e" | ||
6080 | "\xe2\x88\xa4\x7b\xc8\x5c\xa8\x93" | ||
6081 | "\x0e\xe7\x9a\x9c\x2e\x95\x18\x9f" | ||
6082 | "\xc8\x45\x0c\x88\x9e\x53\x4f\x3a" | ||
6083 | "\x76\xc1\x35\xfa\x17\xd8\xac\xa0" | ||
6084 | "\x0c\x2d\x47\x2e\x4f\x69\x9b\xf7" | ||
6085 | "\xd0\xb6\x96\x0c\x19\xb3\x08\x01" | ||
6086 | "\x65\x7a\x1f\xc7\x31\x86\xdb\xc8" | ||
6087 | "\xc1\x99\x8f\xf8\x08\x4a\x9d\x23" | ||
6088 | "\x22\xa8\xcf\x27\x01\x01\x88\x93" | ||
6089 | "\x9c\x86\x45\xbd\xe0\x51\xca\x52" | ||
6090 | "\x84\xba\xfe\x03\xf7\xda\xc5\xce" | ||
6091 | "\x3e\x77\x75\x86\xaf\x84\xc8\x05" | ||
6092 | "\x44\x01\x0f\x02\xf3\x58\xb0\x06" | ||
6093 | "\x5a\xd7\x12\x30\x8d\xdf\x1f\x1f" | ||
6094 | "\x0a\xe6\xd2\xea\xf6\x3a\x7a\x99" | ||
6095 | "\x63\xe8\xd2\xc1\x4a\x45\x8b\x40" | ||
6096 | "\x4d\x0a\xa9\x76\x92\xb3\xda\x87" | ||
6097 | "\x36\x33\xf0\x78\xc3\x2f\x5f\x02" | ||
6098 | "\x1a\x6a\x2c\x32\xcd\x76\xbf\xbd" | ||
6099 | "\x5a\x26\x20\x28\x8c\x8c\xbc\x52" | ||
6100 | "\x3d\x0a\xc9\xcb\xab\xa4\x21\xb0" | ||
6101 | "\x54\x40\x81\x44\xc7\xd6\x1c\x11" | ||
6102 | "\x44\xc6\x02\x92\x14\x5a\xbf\x1a" | ||
6103 | "\x09\x8a\x18\xad\xcd\x64\x3d\x53" | ||
6104 | "\x4a\xb6\xa5\x1b\x57\x0e\xef\xe0" | ||
6105 | "\x8c\x44\x5f\x7d\xbd\x6c\xfd\x60" | ||
6106 | "\xae\x02\x24\xb6\x99\xdd\x8c\xaf" | ||
6107 | "\x59\x39\x75\x3c\xd1\x54\x7b\x86" | ||
6108 | "\xcc\x99\xd9\x28\x0c\xb0\x94\x62" | ||
6109 | "\xf9\x51\xd1\x19\x96\x2d\x66\xf5" | ||
6110 | "\x55\xcf\x9e\x59\xe2\x6b\x2c\x08" | ||
6111 | "\xc0\x54\x48\x24\x45\xc3\x8c\x73" | ||
6112 | "\xea\x27\x6e\x66\x7d\x1d\x0e\x6e" | ||
6113 | "\x13\xe8\x56\x65\x3a\xb0\x81\x5c" | ||
6114 | "\xf0\xe8\xd8\x00\x6b\xcd\x8f\xad" | ||
6115 | "\xdd\x53\xf3\xa4\x6c\x43\xd6\x31" | ||
6116 | "\xaf\xd2\x76\x1e\x91\x12\xdb\x3c" | ||
6117 | "\x8c\xc2\x81\xf0\x49\xdb\xe2\x6b" | ||
6118 | "\x76\x62\x0a\x04\xe4\xaa\x8a\x7c" | ||
6119 | "\x08\x0b\x5d\xd0\xee\x1d\xfb\xc4" | ||
6120 | "\x02\x75\x42\xd6\xba\xa7\x22\xa8" | ||
6121 | "\x47\x29\xb7\x85\x6d\x93\x3a\xdb" | ||
6122 | "\x00\x53\x0b\xa2\xeb\xf8\xfe\x01" | ||
6123 | "\x6f\x8a\x31\xd6\x17\x05\x6f\x67" | ||
6124 | "\x88\x95\x32\xfe\x4f\xa6\x4b\xf8" | ||
6125 | "\x03\xe4\xcd\x9a\x18\xe8\x4e\x2d" | ||
6126 | "\xf7\x97\x9a\x0c\x7d\x9f\x7e\x44" | ||
6127 | "\x69\x51\xe0\x32\x6b\x62\x86\x8f" | ||
6128 | "\xa6\x8e\x0b\x21\x96\xe5\xaf\x77" | ||
6129 | "\xc0\x83\xdf\xa5\x0e\xd0\xa1\x04" | ||
6130 | "\xaf\xc1\x10\xcb\x5a\x40\xe4\xe3" | ||
6131 | "\x38\x7e\x07\xe8\x4d\xfa\xed\xc5" | ||
6132 | "\xf0\x37\xdf\xbb\x8a\xcf\x3d\xdc" | ||
6133 | "\x61\xd2\xc6\x2b\xff\x07\xc9\x2f" | ||
6134 | "\x0c\x2d\x5c\x07\xa8\x35\x6a\xfc" | ||
6135 | "\xae\x09\x03\x45\x74\x51\x4d\xc4" | ||
6136 | "\xb8\x23\x87\x4a\x99\x27\x20\x87" | ||
6137 | "\x62\x44\x0a\x4a\xce\x78\x47\x22", | ||
6138 | .ksize = 1088, | ||
6139 | .plaintext = "\x8e\xb0\x4c\xde\x9c\x4a\x04\x5a" | ||
6140 | "\xf6\xa9\x7f\x45\x25\xa5\x7b\x3a" | ||
6141 | "\xbc\x4d\x73\x39\x81\xb5\xbd\x3d" | ||
6142 | "\x21\x6f\xd7\x37\x50\x3c\x7b\x28" | ||
6143 | "\xd1\x03\x3a\x17\xed\x7b\x7c\x2a" | ||
6144 | "\x16\xbc\xdf\x19\x89\x52\x71\x31" | ||
6145 | "\xb6\xc0\xfd\xb5\xd3\xba\x96\x99" | ||
6146 | "\xb6\x34\x0b\xd0\x99\x93\xfc\x1a" | ||
6147 | "\x01\x3c\x85\xc6\x9b\x78\x5c\x8b" | ||
6148 | "\xfe\xae\xd2\xbf\xb2\x6f\xf9\xed" | ||
6149 | "\xc8\x25\x17\xfe\x10\x3b\x7d\xda" | ||
6150 | "\xf4\x8d\x35\x4b\x7c\x7b\x82\xe7" | ||
6151 | "\xc2\xb3\xee\x60\x4a\x03\x86\xc9" | ||
6152 | "\x4e\xb5\xc4\xbe\xd2\xbd\x66\xf1" | ||
6153 | "\x13\xf1\x09\xab\x5d\xca\x63\x1f" | ||
6154 | "\xfc\xfb\x57\x2a\xfc\xca\x66\xd8" | ||
6155 | "\x77\x84\x38\x23\x1d\xac\xd3\xb3" | ||
6156 | "\x7a\xad\x4c\x70\xfa\x9c\xc9\x61" | ||
6157 | "\xa6\x1b\xba\x33\x4b\x4e\x33\xec" | ||
6158 | "\xa0\xa1\x64\x39\x40\x05\x1c\xc2" | ||
6159 | "\x3f\x49\x9d\xae\xf2\xc5\xf2\xc5" | ||
6160 | "\xfe\xe8\xf4\xc2\xf9\x96\x2d\x28" | ||
6161 | "\x92\x30\x44\xbc\xd2\x7f\xe1\x6e" | ||
6162 | "\x62\x02\x8f\x3d\x1c\x80\xda\x0e" | ||
6163 | "\x6a\x90\x7e\x75\xff\xec\x3e\xc4" | ||
6164 | "\xcd\x16\x34\x3b\x05\x6d\x4d\x20" | ||
6165 | "\x1c\x7b\xf5\x57\x4f\xfa\x3d\xac" | ||
6166 | "\xd0\x13\x55\xe8\xb3\xe1\x1b\x78" | ||
6167 | "\x30\xe6\x9f\x84\xd4\x69\xd1\x08" | ||
6168 | "\x12\x77\xa7\x4a\xbd\xc0\xf2\xd2" | ||
6169 | "\x78\xdd\xa3\x81\x12\xcb\x6c\x14" | ||
6170 | "\x90\x61\xe2\x84\xc6\x2b\x16\xcc" | ||
6171 | "\x40\x99\x50\x88\x01\x09\x64\x4f" | ||
6172 | "\x0a\x80\xbe\x61\xae\x46\xc9\x0a" | ||
6173 | "\x5d\xe0\xfb\x72\x7a\x1a\xdd\x61" | ||
6174 | "\x63\x20\x05\xa0\x4a\xf0\x60\x69" | ||
6175 | "\x7f\x92\xbc\xbf\x4e\x39\x4d\xdd" | ||
6176 | "\x74\xd1\xb7\xc0\x5a\x34\xb7\xae" | ||
6177 | "\x76\x65\x2e\xbc\x36\xb9\x04\x95" | ||
6178 | "\x42\xe9\x6f\xca\x78\xb3\x72\x07" | ||
6179 | "\xa3\xba\x02\x94\x67\x4c\xb1\xd7" | ||
6180 | "\xe9\x30\x0d\xf0\x3b\xb8\x10\x6d" | ||
6181 | "\xea\x2b\x21\xbf\x74\x59\x82\x97" | ||
6182 | "\x85\xaa\xf1\xd7\x54\x39\xeb\x05" | ||
6183 | "\xbd\xf3\x40\xa0\x97\xe6\x74\xfe" | ||
6184 | "\xb4\x82\x5b\xb1\x36\xcb\xe8\x0d" | ||
6185 | "\xce\x14\xd9\xdf\xf1\x94\x22\xcd" | ||
6186 | "\xd6\x00\xba\x04\x4c\x05\x0c\xc0" | ||
6187 | "\xd1\x5a\xeb\x52\xd5\xa8\x8e\xc8" | ||
6188 | "\x97\xa1\xaa\xc1\xea\xc1\xbe\x7c" | ||
6189 | "\x36\xb3\x36\xa0\xc6\x76\x66\xc5" | ||
6190 | "\xe2\xaf\xd6\x5c\xe2\xdb\x2c\xb3" | ||
6191 | "\x6c\xb9\x99\x7f\xff\x9f\x03\x24" | ||
6192 | "\xe1\x51\x44\x66\xd8\x0c\x5d\x7f" | ||
6193 | "\x5c\x85\x22\x2a\xcf\x6d\x79\x28" | ||
6194 | "\xab\x98\x01\x72\xfe\x80\x87\x5f" | ||
6195 | "\x46\xba\xef\x81\x24\xee\xbf\xb0" | ||
6196 | "\x24\x74\xa3\x65\x97\x12\xc4\xaf" | ||
6197 | "\x8b\xa0\x39\xda\x8a\x7e\x74\x6e" | ||
6198 | "\x1b\x42\xb4\x44\x37\xfc\x59\xfd" | ||
6199 | "\x86\xed\xfb\x8c\x66\x33\xda\x63" | ||
6200 | "\x75\xeb\xe1\xa4\x85\x4f\x50\x8f" | ||
6201 | "\x83\x66\x0d\xd3\x37\xfa\xe6\x9c" | ||
6202 | "\x4f\x30\x87\x35\x18\xe3\x0b\xb7" | ||
6203 | "\x6e\x64\x54\xcd\x70\xb3\xde\x54" | ||
6204 | "\xb7\x1d\xe6\x4c\x4d\x55\x12\x12" | ||
6205 | "\xaf\x5f\x7f\x5e\xee\x9d\xe8\x8e" | ||
6206 | "\x32\x9d\x4e\x75\xeb\xc6\xdd\xaa" | ||
6207 | "\x48\x82\xa4\x3f\x3c\xd7\xd3\xa8" | ||
6208 | "\x63\x9e\x64\xfe\xe3\x97\x00\x62" | ||
6209 | "\xe5\x40\x5d\xc3\xad\x72\xe1\x28" | ||
6210 | "\x18\x50\xb7\x75\xef\xcd\x23\xbf" | ||
6211 | "\x3f\xc0\x51\x36\xf8\x41\xc3\x08" | ||
6212 | "\xcb\xf1\x8d\x38\x34\xbd\x48\x45" | ||
6213 | "\x75\xed\xbc\x65\x7b\xb5\x0c\x9b" | ||
6214 | "\xd7\x67\x7d\x27\xb4\xc4\x80\xd7" | ||
6215 | "\xa9\xb9\xc7\x4a\x97\xaa\xda\xc8" | ||
6216 | "\x3c\x74\xcf\x36\x8f\xe4\x41\xe3" | ||
6217 | "\xd4\xd3\x26\xa7\xf3\x23\x9d\x8f" | ||
6218 | "\x6c\x20\x05\x32\x3e\xe0\xc3\xc8" | ||
6219 | "\x56\x3f\xa7\x09\xb7\xfb\xc7\xf7" | ||
6220 | "\xbe\x2a\xdd\x0f\x06\x7b\x0d\xdd" | ||
6221 | "\xb0\xb4\x86\x17\xfd\xb9\x04\xe5" | ||
6222 | "\xc0\x64\x5d\xad\x2a\x36\x38\xdb" | ||
6223 | "\x24\xaf\x5b\xff\xca\xf9\x41\xe8" | ||
6224 | "\xf9\x2f\x1e\x5e\xf9\xf5\xd5\xf2" | ||
6225 | "\xb2\x88\xca\xc9\xa1\x31\xe2\xe8" | ||
6226 | "\x10\x95\x65\xbf\xf1\x11\x61\x7a" | ||
6227 | "\x30\x1a\x54\x90\xea\xd2\x30\xf6" | ||
6228 | "\xa5\xad\x60\xf9\x4d\x84\x21\x1b" | ||
6229 | "\xe4\x42\x22\xc8\x12\x4b\xb0\x58" | ||
6230 | "\x3e\x9c\x2d\x32\x95\x0a\x8e\xb0" | ||
6231 | "\x0a\x7e\x77\x2f\xe8\x97\x31\x6a" | ||
6232 | "\xf5\x59\xb4\x26\xe6\x37\x12\xc9" | ||
6233 | "\xcb\xa0\x58\x33\x6f\xd5\x55\x55" | ||
6234 | "\x3c\xa1\x33\xb1\x0b\x7e\x2e\xb4" | ||
6235 | "\x43\x2a\x84\x39\xf0\x9c\xf4\x69" | ||
6236 | "\x4f\x1e\x79\xa6\x15\x1b\x87\xbb" | ||
6237 | "\xdb\x9b\xe0\xf1\x0b\xba\xe3\x6e" | ||
6238 | "\xcc\x2f\x49\x19\x22\x29\xfc\x71" | ||
6239 | "\xbb\x77\x38\x18\x61\xaf\x85\x76" | ||
6240 | "\xeb\xd1\x09\xcc\x86\x04\x20\x9a" | ||
6241 | "\x66\x53\x2f\x44\x8b\xc6\xa3\xd2" | ||
6242 | "\x5f\xc7\x79\x82\x66\xa8\x6e\x75" | ||
6243 | "\x7d\x94\xd1\x86\x75\x0f\xa5\x4f" | ||
6244 | "\x3c\x7a\x33\xce\xd1\x6e\x9d\x7b" | ||
6245 | "\x1f\x91\x37\xb8\x37\x80\xfb\xe0" | ||
6246 | "\x52\x26\xd0\x9a\xd4\x48\x02\x41" | ||
6247 | "\x05\xe3\x5a\x94\xf1\x65\x61\x19" | ||
6248 | "\xb8\x88\x4e\x2b\xea\xba\x8b\x58" | ||
6249 | "\x8b\x42\x01\x00\xa8\xfe\x00\x5c" | ||
6250 | "\xfe\x1c\xee\x31\x15\x69\xfa\xb3" | ||
6251 | "\x9b\x5f\x22\x8e\x0d\x2c\xe3\xa5" | ||
6252 | "\x21\xb9\x99\x8a\x8e\x94\x5a\xef" | ||
6253 | "\x13\x3e\x99\x96\x79\x6e\xd5\x42" | ||
6254 | "\x36\x03\xa9\xe2\xca\x65\x4e\x8a" | ||
6255 | "\x8a\x30\xd2\x7d\x74\xe7\xf0\xaa" | ||
6256 | "\x23\x26\xdd\xcb\x82\x39\xfc\x9d" | ||
6257 | "\x51\x76\x21\x80\xa2\xbe\x93\x03" | ||
6258 | "\x47\xb0\xc1\xb6\xdc\x63\xfd\x9f" | ||
6259 | "\xca\x9d\xa5\xca\x27\x85\xe2\xd8" | ||
6260 | "\x15\x5b\x7e\x14\x7a\xc4\x89\xcc" | ||
6261 | "\x74\x14\x4b\x46\xd2\xce\xac\x39" | ||
6262 | "\x6b\x6a\x5a\xa4\x0e\xe3\x7b\x15" | ||
6263 | "\x94\x4b\x0f\x74\xcb\x0c\x7f\xa9" | ||
6264 | "\xbe\x09\x39\xa3\xdd\x56\x5c\xc7" | ||
6265 | "\x99\x56\x65\x39\xf4\x0b\x7d\x87" | ||
6266 | "\xec\xaa\xe3\x4d\x22\x65\x39\x4e", | ||
6267 | .psize = 1024, | ||
6268 | .digest = "\x64\x3a\xbc\xc3\x3f\x74\x40\x51" | ||
6269 | "\x6e\x56\x01\x1a\x51\xec\x36\xde", | ||
6270 | .np = 8, | ||
6271 | .tap = { 64, 203, 267, 28, 263, 62, 54, 83 }, | ||
6272 | }, { | ||
6273 | .key = "\x1b\x82\x2e\x1b\x17\x23\xb9\x6d" | ||
6274 | "\xdc\x9c\xda\x99\x07\xe3\x5f\xd8" | ||
6275 | "\xd2\xf8\x43\x80\x8d\x86\x7d\x80" | ||
6276 | "\x1a\xd0\xcc\x13\xb9\x11\x05\x3f" | ||
6277 | "\x7e\xcf\x7e\x80\x0e\xd8\x25\x48" | ||
6278 | "\x8b\xaa\x63\x83\x92\xd0\x72\xf5" | ||
6279 | "\x4f\x67\x7e\x50\x18\x25\xa4\xd1" | ||
6280 | "\xe0\x7e\x1e\xba\xd8\xa7\x6e\xdb" | ||
6281 | "\x1a\xcc\x0d\xfe\x9f\x6d\x22\x35" | ||
6282 | "\xe1\xe6\xe0\xa8\x7b\x9c\xb1\x66" | ||
6283 | "\xa3\xf8\xff\x4d\x90\x84\x28\xbc" | ||
6284 | "\xdc\x19\xc7\x91\x49\xfc\xf6\x33" | ||
6285 | "\xc9\x6e\x65\x7f\x28\x6f\x68\x2e" | ||
6286 | "\xdf\x1a\x75\xe9\xc2\x0c\x96\xb9" | ||
6287 | "\x31\x22\xc4\x07\xc6\x0a\x2f\xfd" | ||
6288 | "\x36\x06\x5f\x5c\xc5\xb1\x3a\xf4" | ||
6289 | "\x5e\x48\xa4\x45\x2b\x88\xa7\xee" | ||
6290 | "\xa9\x8b\x52\xcc\x99\xd9\x2f\xb8" | ||
6291 | "\xa4\x58\x0a\x13\xeb\x71\x5a\xfa" | ||
6292 | "\xe5\x5e\xbe\xf2\x64\xad\x75\xbc" | ||
6293 | "\x0b\x5b\x34\x13\x3b\x23\x13\x9a" | ||
6294 | "\x69\x30\x1e\x9a\xb8\x03\xb8\x8b" | ||
6295 | "\x3e\x46\x18\x6d\x38\xd9\xb3\xd8" | ||
6296 | "\xbf\xf1\xd0\x28\xe6\x51\x57\x80" | ||
6297 | "\x5e\x99\xfb\xd0\xce\x1e\x83\xf7" | ||
6298 | "\xe9\x07\x5a\x63\xa9\xef\xce\xa5" | ||
6299 | "\xfb\x3f\x37\x17\xfc\x0b\x37\x0e" | ||
6300 | "\xbb\x4b\x21\x62\xb7\x83\x0e\xa9" | ||
6301 | "\x9e\xb0\xc4\xad\x47\xbe\x35\xe7" | ||
6302 | "\x51\xb2\xf2\xac\x2b\x65\x7b\x48" | ||
6303 | "\xe3\x3f\x5f\xb6\x09\x04\x0c\x58" | ||
6304 | "\xce\x99\xa9\x15\x2f\x4e\xc1\xf2" | ||
6305 | "\x24\x48\xc0\xd8\x6c\xd3\x76\x17" | ||
6306 | "\x83\x5d\xe6\xe3\xfd\x01\x8e\xf7" | ||
6307 | "\x42\xa5\x04\x29\x30\xdf\xf9\x00" | ||
6308 | "\x4a\xdc\x71\x22\x1a\x33\x15\xb6" | ||
6309 | "\xd7\x72\xfb\x9a\xb8\xeb\x2b\x38" | ||
6310 | "\xea\xa8\x61\xa8\x90\x11\x9d\x73" | ||
6311 | "\x2e\x6c\xce\x81\x54\x5a\x9f\xcd" | ||
6312 | "\xcf\xd5\xbd\x26\x5d\x66\xdb\xfb" | ||
6313 | "\xdc\x1e\x7c\x10\xfe\x58\x82\x10" | ||
6314 | "\x16\x24\x01\xce\x67\x55\x51\xd1" | ||
6315 | "\xdd\x6b\x44\xa3\x20\x8e\xa9\xa6" | ||
6316 | "\x06\xa8\x29\x77\x6e\x00\x38\x5b" | ||
6317 | "\xde\x4d\x58\xd8\x1f\x34\xdf\xf9" | ||
6318 | "\x2c\xac\x3e\xad\xfb\x92\x0d\x72" | ||
6319 | "\x39\xa4\xac\x44\x10\xc0\x43\xc4" | ||
6320 | "\xa4\x77\x3b\xfc\xc4\x0d\x37\xd3" | ||
6321 | "\x05\x84\xda\x53\x71\xf8\x80\xd3" | ||
6322 | "\x34\x44\xdb\x09\xb4\x2b\x8e\xe3" | ||
6323 | "\x00\x75\x50\x9e\x43\x22\x00\x0b" | ||
6324 | "\x7c\x70\xab\xd4\x41\xf1\x93\xcd" | ||
6325 | "\x25\x2d\x84\x74\xb5\xf2\x92\xcd" | ||
6326 | "\x0a\x28\xea\x9a\x49\x02\x96\xcb" | ||
6327 | "\x85\x9e\x2f\x33\x03\x86\x1d\xdc" | ||
6328 | "\x1d\x31\xd5\xfc\x9d\xaa\xc5\xe9" | ||
6329 | "\x9a\xc4\x57\xf5\x35\xed\xf4\x4b" | ||
6330 | "\x3d\x34\xc2\x29\x13\x86\x36\x42" | ||
6331 | "\x5d\xbf\x90\x86\x13\x77\xe5\xc3" | ||
6332 | "\x62\xb4\xfe\x0b\x70\x39\x35\x65" | ||
6333 | "\x02\xea\xf6\xce\x57\x0c\xbb\x74" | ||
6334 | "\x29\xe3\xfd\x60\x90\xfd\x10\x38" | ||
6335 | "\xd5\x4e\x86\xbd\x37\x70\xf0\x97" | ||
6336 | "\xa6\xab\x3b\x83\x64\x52\xca\x66" | ||
6337 | "\x2f\xf9\xa4\xca\x3a\x55\x6b\xb0" | ||
6338 | "\xe8\x3a\x34\xdb\x9e\x48\x50\x2f" | ||
6339 | "\x3b\xef\xfd\x08\x2d\x5f\xc1\x37" | ||
6340 | "\x5d\xbe\x73\xe4\xd8\xe9\xac\xca" | ||
6341 | "\x8a\xaa\x48\x7c\x5c\xf4\xa6\x96" | ||
6342 | "\x5f\xfa\x70\xa6\xb7\x8b\x50\xcb" | ||
6343 | "\xa6\xf5\xa9\xbd\x7b\x75\x4c\x22" | ||
6344 | "\x0b\x19\x40\x2e\xc9\x39\x39\x32" | ||
6345 | "\x83\x03\xa8\xa4\x98\xe6\x8e\x16" | ||
6346 | "\xb9\xde\x08\xc5\xfc\xbf\xad\x39" | ||
6347 | "\xa8\xc7\x93\x6c\x6f\x23\xaf\xc1" | ||
6348 | "\xab\xe1\xdf\xbb\x39\xae\x93\x29" | ||
6349 | "\x0e\x7d\x80\x8d\x3e\x65\xf3\xfd" | ||
6350 | "\x96\x06\x65\x90\xa1\x28\x64\x4b" | ||
6351 | "\x69\xf9\xa8\x84\x27\x50\xfc\x87" | ||
6352 | "\xf7\xbf\x55\x8e\x56\x13\x58\x7b" | ||
6353 | "\x85\xb4\x6a\x72\x0f\x40\xf1\x4f" | ||
6354 | "\x83\x81\x1f\x76\xde\x15\x64\x7a" | ||
6355 | "\x7a\x80\xe4\xc7\x5e\x63\x01\x91" | ||
6356 | "\xd7\x6b\xea\x0b\x9b\xa2\x99\x3b" | ||
6357 | "\x6c\x88\xd8\xfd\x59\x3c\x8d\x22" | ||
6358 | "\x86\x56\xbe\xab\xa1\x37\x08\x01" | ||
6359 | "\x50\x85\x69\x29\xee\x9f\xdf\x21" | ||
6360 | "\x3e\x20\x20\xf5\xb0\xbb\x6b\xd0" | ||
6361 | "\x9c\x41\x38\xec\x54\x6f\x2d\xbd" | ||
6362 | "\x0f\xe1\xbd\xf1\x2b\x6e\x60\x56" | ||
6363 | "\x29\xe5\x7a\x70\x1c\xe2\xfc\x97" | ||
6364 | "\x82\x68\x67\xd9\x3d\x1f\xfb\xd8" | ||
6365 | "\x07\x9f\xbf\x96\x74\xba\x6a\x0e" | ||
6366 | "\x10\x48\x20\xd8\x13\x1e\xb5\x44" | ||
6367 | "\xf2\xcc\xb1\x8b\xfb\xbb\xec\xd7" | ||
6368 | "\x37\x70\x1f\x7c\x55\xd2\x4b\xb9" | ||
6369 | "\xfd\x70\x5e\xa3\x91\x73\x63\x52" | ||
6370 | "\x13\x47\x5a\x06\xfb\x01\x67\xa5" | ||
6371 | "\xc0\xd0\x49\x19\x56\x66\x9a\x77" | ||
6372 | "\x64\xaf\x8c\x25\x91\x52\x87\x0e" | ||
6373 | "\x18\xf3\x5f\x97\xfd\x71\x13\xf8" | ||
6374 | "\x05\xa5\x39\xcc\x65\xd3\xcc\x63" | ||
6375 | "\x5b\xdb\x5f\x7e\x5f\x6e\xad\xc4" | ||
6376 | "\xf4\xa0\xc5\xc2\x2b\x4d\x97\x38" | ||
6377 | "\x4f\xbc\xfa\x33\x17\xb4\x47\xb9" | ||
6378 | "\x43\x24\x15\x8d\xd2\xed\x80\x68" | ||
6379 | "\x84\xdb\x04\x80\xca\x5e\x6a\x35" | ||
6380 | "\x2c\x2c\xe7\xc5\x03\x5f\x54\xb0" | ||
6381 | "\x5e\x4f\x1d\x40\x54\x3d\x78\x9a" | ||
6382 | "\xac\xda\x80\x27\x4d\x15\x4c\x1a" | ||
6383 | "\x6e\x80\xc9\xc4\x3b\x84\x0e\xd9" | ||
6384 | "\x2e\x93\x01\x8c\xc3\xc8\x91\x4b" | ||
6385 | "\xb3\xaa\x07\x04\x68\x5b\x93\xa5" | ||
6386 | "\xe7\xc4\x9d\xe7\x07\xee\xf5\x3b" | ||
6387 | "\x40\x89\xcc\x60\x34\x9d\xb4\x06" | ||
6388 | "\x1b\xef\x92\xe6\xc1\x2a\x7d\x0f" | ||
6389 | "\x81\xaa\x56\xe3\xd7\xed\xa7\xd4" | ||
6390 | "\xa7\x3a\x49\xc4\xad\x81\x5c\x83" | ||
6391 | "\x55\x8e\x91\x54\xb7\x7d\x65\xa5" | ||
6392 | "\x06\x16\xd5\x9a\x16\xc1\xb0\xa2" | ||
6393 | "\x06\xd8\x98\x47\x73\x7e\x73\xa0" | ||
6394 | "\xb8\x23\xb1\x52\xbf\x68\x74\x5d" | ||
6395 | "\x0b\xcb\xfa\x8c\x46\xe3\x24\xe6" | ||
6396 | "\xab\xd4\x69\x8d\x8c\xf2\x8a\x59" | ||
6397 | "\xbe\x48\x46\x50\x8c\x9a\xe8\xe3" | ||
6398 | "\x31\x55\x0a\x06\xed\x4f\xf8\xb7" | ||
6399 | "\x4f\xe3\x85\x17\x30\xbd\xd5\x20" | ||
6400 | "\xe7\x5b\xb2\x32\xcf\x6b\x16\x44" | ||
6401 | "\xd2\xf5\x7e\xd7\xd1\x2f\xee\x64" | ||
6402 | "\x3e\x9d\x10\xef\x27\x35\x43\x64" | ||
6403 | "\x67\xfb\x7a\x7b\xe0\x62\x31\x9a" | ||
6404 | "\x4d\xdf\xa5\xab\xc0\x20\xbb\x01" | ||
6405 | "\xe9\x7b\x54\xf1\xde\xb2\x79\x50" | ||
6406 | "\x6c\x4b\x91\xdb\x7f\xbb\x50\xc1" | ||
6407 | "\x55\x44\x38\x9a\xe0\x9f\xe8\x29" | ||
6408 | "\x6f\x15\xf8\x4e\xa6\xec\xa0\x60", | ||
6409 | .ksize = 1088, | ||
6410 | .plaintext = "\x15\x68\x9e\x2f\xad\x15\x52\xdf" | ||
6411 | "\xf0\x42\x62\x24\x2a\x2d\xea\xbf" | ||
6412 | "\xc7\xf3\xb4\x1a\xf5\xed\xb2\x08" | ||
6413 | "\x15\x60\x1c\x00\x77\xbf\x0b\x0e" | ||
6414 | "\xb7\x2c\xcf\x32\x3a\xc7\x01\x77" | ||
6415 | "\xef\xa6\x75\xd0\x29\xc7\x68\x20" | ||
6416 | "\xb2\x92\x25\xbf\x12\x34\xe9\xa4" | ||
6417 | "\xfd\x32\x7b\x3f\x7c\xbd\xa5\x02" | ||
6418 | "\x38\x41\xde\xc9\xc1\x09\xd9\xfc" | ||
6419 | "\x6e\x78\x22\x83\x18\xf7\x50\x8d" | ||
6420 | "\x8f\x9c\x2d\x02\xa5\x30\xac\xff" | ||
6421 | "\xea\x63\x2e\x80\x37\x83\xb0\x58" | ||
6422 | "\xda\x2f\xef\x21\x55\xba\x7b\xb1" | ||
6423 | "\xb6\xed\xf5\xd2\x4d\xaa\x8c\xa9" | ||
6424 | "\xdd\xdb\x0f\xb4\xce\xc1\x9a\xb1" | ||
6425 | "\xc1\xdc\xbd\xab\x86\xc2\xdf\x0b" | ||
6426 | "\xe1\x2c\xf9\xbe\xf6\xd8\xda\x62" | ||
6427 | "\x72\xdd\x98\x09\x52\xc0\xc4\xb6" | ||
6428 | "\x7b\x17\x5c\xf5\xd8\x4b\x88\xd6" | ||
6429 | "\x6b\xbf\x84\x4a\x3f\xf5\x4d\xd2" | ||
6430 | "\x94\xe2\x9c\xff\xc7\x3c\xd9\xc8" | ||
6431 | "\x37\x38\xbc\x8c\xf3\xe7\xb7\xd0" | ||
6432 | "\x1d\x78\xc4\x39\x07\xc8\x5e\x79" | ||
6433 | "\xb6\x5a\x90\x5b\x6e\x97\xc9\xd4" | ||
6434 | "\x82\x9c\xf3\x83\x7a\xe7\x97\xfc" | ||
6435 | "\x1d\xbb\xef\xdb\xce\xe0\x82\xad" | ||
6436 | "\xca\x07\x6c\x54\x62\x6f\x81\xe6" | ||
6437 | "\x7a\x5a\x96\x6e\x80\x3a\xa2\x37" | ||
6438 | "\x6f\xc6\xa4\x29\xc3\x9e\x19\x94" | ||
6439 | "\x9f\xb0\x3e\x38\xfb\x3c\x2b\x7d" | ||
6440 | "\xaa\xb8\x74\xda\x54\x23\x51\x12" | ||
6441 | "\x4b\x96\x36\x8f\x91\x4f\x19\x37" | ||
6442 | "\x83\xc9\xdd\xc7\x1a\x32\x2d\xab" | ||
6443 | "\xc7\x89\xe2\x07\x47\x6c\xe8\xa6" | ||
6444 | "\x70\x6b\x8e\x0c\xda\x5c\x6a\x59" | ||
6445 | "\x27\x33\x0e\xe1\xe1\x20\xe8\xc8" | ||
6446 | "\xae\xdc\xd0\xe3\x6d\xa8\xa6\x06" | ||
6447 | "\x41\xb4\xd4\xd4\xcf\x91\x3e\x06" | ||
6448 | "\xb0\x9a\xf7\xf1\xaa\xa6\x23\x92" | ||
6449 | "\x10\x86\xf0\x94\xd1\x7c\x2e\x07" | ||
6450 | "\x30\xfb\xc5\xd8\xf3\x12\xa9\xe8" | ||
6451 | "\x22\x1c\x97\x1a\xad\x96\xb0\xa1" | ||
6452 | "\x72\x6a\x6b\xb4\xfd\xf7\xe8\xfa" | ||
6453 | "\xe2\x74\xd8\x65\x8d\x35\x17\x4b" | ||
6454 | "\x00\x23\x5c\x8c\x70\xad\x71\xa2" | ||
6455 | "\xca\xc5\x6c\x59\xbf\xb4\xc0\x6d" | ||
6456 | "\x86\x98\x3e\x19\x5a\x90\x92\xb1" | ||
6457 | "\x66\x57\x6a\x91\x68\x7c\xbc\xf3" | ||
6458 | "\xf1\xdb\x94\xf8\x48\xf1\x36\xd8" | ||
6459 | "\x78\xac\x1c\xa9\xcc\xd6\x27\xba" | ||
6460 | "\x91\x54\x22\xf5\xe6\x05\x3f\xcc" | ||
6461 | "\xc2\x8f\x2c\x3b\x2b\xc3\x2b\x2b" | ||
6462 | "\x3b\xb8\xb6\x29\xb7\x2f\x94\xb6" | ||
6463 | "\x7b\xfc\x94\x3e\xd0\x7a\x41\x59" | ||
6464 | "\x7b\x1f\x9a\x09\xa6\xed\x4a\x82" | ||
6465 | "\x9d\x34\x1c\xbd\x4e\x1c\x3a\x66" | ||
6466 | "\x80\x74\x0e\x9a\x4f\x55\x54\x47" | ||
6467 | "\x16\xba\x2a\x0a\x03\x35\x99\xa3" | ||
6468 | "\x5c\x63\x8d\xa2\x72\x8b\x17\x15" | ||
6469 | "\x68\x39\x73\xeb\xec\xf2\xe8\xf5" | ||
6470 | "\x95\x32\x27\xd6\xc4\xfe\xb0\x51" | ||
6471 | "\xd5\x0c\x50\xc5\xcd\x6d\x16\xb3" | ||
6472 | "\xa3\x1e\x95\x69\xad\x78\x95\x06" | ||
6473 | "\xb9\x46\xf2\x6d\x24\x5a\x99\x76" | ||
6474 | "\x73\x6a\x91\xa6\xac\x12\xe1\x28" | ||
6475 | "\x79\xbc\x08\x4e\x97\x00\x98\x63" | ||
6476 | "\x07\x1c\x4e\xd1\x68\xf3\xb3\x81" | ||
6477 | "\xa8\xa6\x5f\xf1\x01\xc9\xc1\xaf" | ||
6478 | "\x3a\x96\xf9\x9d\xb5\x5a\x5f\x8f" | ||
6479 | "\x7e\xc1\x7e\x77\x0a\x40\xc8\x8e" | ||
6480 | "\xfc\x0e\xed\xe1\x0d\xb0\xe5\x5e" | ||
6481 | "\x5e\x6f\xf5\x7f\xab\x33\x7d\xcd" | ||
6482 | "\xf0\x09\x4b\xb2\x11\x37\xdc\x65" | ||
6483 | "\x97\x32\x62\x71\x3a\x29\x54\xb9" | ||
6484 | "\xc7\xa4\xbf\x75\x0f\xf9\x40\xa9" | ||
6485 | "\x8d\xd7\x8b\xa7\xe0\x9a\xbe\x15" | ||
6486 | "\xc6\xda\xd8\x00\x14\x69\x1a\xaf" | ||
6487 | "\x5f\x79\xc3\xf5\xbb\x6c\x2a\x9d" | ||
6488 | "\xdd\x3c\x5f\x97\x21\xe1\x3a\x03" | ||
6489 | "\x84\x6a\xe9\x76\x11\x1f\xd3\xd5" | ||
6490 | "\xf0\x54\x20\x4d\xc2\x91\xc3\xa4" | ||
6491 | "\x36\x25\xbe\x1b\x2a\x06\xb7\xf3" | ||
6492 | "\xd1\xd0\x55\x29\x81\x4c\x83\xa3" | ||
6493 | "\xa6\x84\x1e\x5c\xd1\xd0\x6c\x90" | ||
6494 | "\xa4\x11\xf0\xd7\x63\x6a\x48\x05" | ||
6495 | "\xbc\x48\x18\x53\xcd\xb0\x8d\xdb" | ||
6496 | "\xdc\xfe\x55\x11\x5c\x51\xb3\xab" | ||
6497 | "\xab\x63\x3e\x31\x5a\x8b\x93\x63" | ||
6498 | "\x34\xa9\xba\x2b\x69\x1a\xc0\xe3" | ||
6499 | "\xcb\x41\xbc\xd7\xf5\x7f\x82\x3e" | ||
6500 | "\x01\xa3\x3c\x72\xf4\xfe\xdf\xbe" | ||
6501 | "\xb1\x67\x17\x2b\x37\x60\x0d\xca" | ||
6502 | "\x6f\xc3\x94\x2c\xd2\x92\x6d\x9d" | ||
6503 | "\x75\x18\x77\xaa\x29\x38\x96\xed" | ||
6504 | "\x0e\x20\x70\x92\xd5\xd0\xb4\x00" | ||
6505 | "\xc0\x31\xf2\xc9\x43\x0e\x75\x1d" | ||
6506 | "\x4b\x64\xf2\x1f\xf2\x29\x6c\x7b" | ||
6507 | "\x7f\xec\x59\x7d\x8c\x0d\xd4\xd3" | ||
6508 | "\xac\x53\x4c\xa3\xde\x42\x92\x95" | ||
6509 | "\x6d\xa3\x4f\xd0\xe6\x3d\xe7\xec" | ||
6510 | "\x7a\x4d\x68\xf1\xfe\x67\x66\x09" | ||
6511 | "\x83\x22\xb1\x98\x43\x8c\xab\xb8" | ||
6512 | "\x45\xe6\x6d\xdf\x5e\x50\x71\xce" | ||
6513 | "\xf5\x4e\x40\x93\x2b\xfa\x86\x0e" | ||
6514 | "\xe8\x30\xbd\x82\xcc\x1c\x9c\x5f" | ||
6515 | "\xad\xfd\x08\x31\xbe\x52\xe7\xe6" | ||
6516 | "\xf2\x06\x01\x62\x25\x15\x99\x74" | ||
6517 | "\x33\x51\x52\x57\x3f\x57\x87\x61" | ||
6518 | "\xb9\x7f\x29\x3d\xcd\x92\x5e\xa6" | ||
6519 | "\x5c\x3b\xf1\xed\x5f\xeb\x82\xed" | ||
6520 | "\x56\x7b\x61\xe7\xfd\x02\x47\x0e" | ||
6521 | "\x2a\x15\xa4\xce\x43\x86\x9b\xe1" | ||
6522 | "\x2b\x4c\x2a\xd9\x42\x97\xf7\x9a" | ||
6523 | "\xe5\x47\x46\x48\xd3\x55\x6f\x4d" | ||
6524 | "\xd9\xeb\x4b\xdd\x7b\x21\x2f\xb3" | ||
6525 | "\xa8\x36\x28\xdf\xca\xf1\xf6\xd9" | ||
6526 | "\x10\xf6\x1c\xfd\x2e\x0c\x27\xe0" | ||
6527 | "\x01\xb3\xff\x6d\x47\x08\x4d\xd4" | ||
6528 | "\x00\x25\xee\x55\x4a\xe9\xe8\x5b" | ||
6529 | "\xd8\xf7\x56\x12\xd4\x50\xb2\xe5" | ||
6530 | "\x51\x6f\x34\x63\x69\xd2\x4e\x96" | ||
6531 | "\x4e\xbc\x79\xbf\x18\xae\xc6\x13" | ||
6532 | "\x80\x92\x77\xb0\xb4\x0f\x29\x94" | ||
6533 | "\x6f\x4c\xbb\x53\x11\x36\xc3\x9f" | ||
6534 | "\x42\x8e\x96\x8a\x91\xc8\xe9\xfc" | ||
6535 | "\xfe\xbf\x7c\x2d\x6f\xf9\xb8\x44" | ||
6536 | "\x89\x1b\x09\x53\x0a\x2a\x92\xc3" | ||
6537 | "\x54\x7a\x3a\xf9\xe2\xe4\x75\x87" | ||
6538 | "\xa0\x5e\x4b\x03\x7a\x0d\x8a\xf4" | ||
6539 | "\x55\x59\x94\x2b\x63\x96\x0e\xf5", | ||
6540 | .psize = 1040, | ||
6541 | .digest = "\xb5\xb9\x08\xb3\x24\x3e\x03\xf0" | ||
6542 | "\xd6\x0b\x57\xbc\x0a\x6d\x89\x59", | ||
6543 | }, { | ||
6544 | .key = "\xf6\x34\x42\x71\x35\x52\x8b\x58" | ||
6545 | "\x02\x3a\x8e\x4a\x8d\x41\x13\xe9" | ||
6546 | "\x7f\xba\xb9\x55\x9d\x73\x4d\xf8" | ||
6547 | "\x3f\x5d\x73\x15\xff\xd3\x9e\x7f" | ||
6548 | "\x20\x2a\x6a\xa8\xd1\xf0\x8f\x12" | ||
6549 | "\x6b\x02\xd8\x6c\xde\xba\x80\x22" | ||
6550 | "\x19\x37\xc8\xd0\x4e\x89\x17\x7c" | ||
6551 | "\x7c\xdd\x88\xfd\x41\xc0\x04\xb7" | ||
6552 | "\x1d\xac\x19\xe3\x20\xc7\x16\xcf" | ||
6553 | "\x58\xee\x1d\x7a\x61\x69\xa9\x12" | ||
6554 | "\x4b\xef\x4f\xb6\x38\xdd\x78\xf8" | ||
6555 | "\x28\xee\x70\x08\xc7\x7c\xcc\xc8" | ||
6556 | "\x1e\x41\xf5\x80\x86\x70\xd0\xf0" | ||
6557 | "\xa3\x87\x6b\x0a\x00\xd2\x41\x28" | ||
6558 | "\x74\x26\xf1\x24\xf3\xd0\x28\x77" | ||
6559 | "\xd7\xcd\xf6\x2d\x61\xf4\xa2\x13" | ||
6560 | "\x77\xb4\x6f\xa0\xf4\xfb\xd6\xb5" | ||
6561 | "\x38\x9d\x5a\x0c\x51\xaf\xad\x63" | ||
6562 | "\x27\x67\x8c\x01\xea\x42\x1a\x66" | ||
6563 | "\xda\x16\x7c\x3c\x30\x0c\x66\x53" | ||
6564 | "\x1c\x88\xa4\x5c\xb2\xe3\x78\x0a" | ||
6565 | "\x13\x05\x6d\xe2\xaf\xb3\xe4\x75" | ||
6566 | "\x00\x99\x58\xee\x76\x09\x64\xaa" | ||
6567 | "\xbb\x2e\xb1\x81\xec\xd8\x0e\xd3" | ||
6568 | "\x0c\x33\x5d\xb7\x98\xef\x36\xb6" | ||
6569 | "\xd2\x65\x69\x41\x70\x12\xdc\x25" | ||
6570 | "\x41\x03\x99\x81\x41\x19\x62\x13" | ||
6571 | "\xd1\x0a\x29\xc5\x8c\xe0\x4c\xf3" | ||
6572 | "\xd6\xef\x4c\xf4\x1d\x83\x2e\x6d" | ||
6573 | "\x8e\x14\x87\xed\x80\xe0\xaa\xd3" | ||
6574 | "\x08\x04\x73\x1a\x84\x40\xf5\x64" | ||
6575 | "\xbd\x61\x32\x65\x40\x42\xfb\xb0" | ||
6576 | "\x40\xf6\x40\x8d\xc7\x7f\x14\xd0" | ||
6577 | "\x83\x99\xaa\x36\x7e\x60\xc6\xbf" | ||
6578 | "\x13\x8a\xf9\x21\xe4\x7e\x68\x87" | ||
6579 | "\xf3\x33\x86\xb4\xe0\x23\x7e\x0a" | ||
6580 | "\x21\xb1\xf5\xad\x67\x3c\x9c\x9d" | ||
6581 | "\x09\xab\xaf\x5f\xba\xe0\xd0\x82" | ||
6582 | "\x48\x22\x70\xb5\x6d\x53\xd6\x0e" | ||
6583 | "\xde\x64\x92\x41\xb0\xd3\xfb\xda" | ||
6584 | "\x21\xfe\xab\xea\x20\xc4\x03\x58" | ||
6585 | "\x18\x2e\x7d\x2f\x03\xa9\x47\x66" | ||
6586 | "\xdf\x7b\xa4\x6b\x34\x6b\x55\x9c" | ||
6587 | "\x4f\xd7\x9c\x47\xfb\xa9\x42\xec" | ||
6588 | "\x5a\x12\xfd\xfe\x76\xa0\x92\x9d" | ||
6589 | "\xfe\x1e\x16\xdd\x24\x2a\xe4\x27" | ||
6590 | "\xd5\xa9\xf2\x05\x4f\x83\xa2\xaf" | ||
6591 | "\xfe\xee\x83\x7a\xad\xde\xdf\x9a" | ||
6592 | "\x80\xd5\x81\x14\x93\x16\x7e\x46" | ||
6593 | "\x47\xc2\x14\xef\x49\x6e\xb9\xdb" | ||
6594 | "\x40\xe8\x06\x6f\x9c\x2a\xfd\x62" | ||
6595 | "\x06\x46\xfd\x15\x1d\x36\x61\x6f" | ||
6596 | "\x77\x77\x5e\x64\xce\x78\x1b\x85" | ||
6597 | "\xbf\x50\x9a\xfd\x67\xa6\x1a\x65" | ||
6598 | "\xad\x5b\x33\x30\xf1\x71\xaa\xd9" | ||
6599 | "\x23\x0d\x92\x24\x5f\xae\x57\xb0" | ||
6600 | "\x24\x37\x0a\x94\x12\xfb\xb5\xb1" | ||
6601 | "\xd3\xb8\x1d\x12\x29\xb0\x80\x24" | ||
6602 | "\x2d\x47\x9f\x96\x1f\x95\xf1\xb1" | ||
6603 | "\xda\x35\xf6\x29\xe0\xe1\x23\x96" | ||
6604 | "\xc7\xe8\x22\x9b\x7c\xac\xf9\x41" | ||
6605 | "\x39\x01\xe5\x73\x15\x5e\x99\xec" | ||
6606 | "\xb4\xc1\xf4\xe7\xa7\x97\x6a\xd5" | ||
6607 | "\x90\x9a\xa0\x1d\xf3\x5a\x8b\x5f" | ||
6608 | "\xdf\x01\x52\xa4\x93\x31\x97\xb0" | ||
6609 | "\x93\x24\xb5\xbc\xb2\x14\x24\x98" | ||
6610 | "\x4a\x8f\x19\x85\xc3\x2d\x0f\x74" | ||
6611 | "\x9d\x16\x13\x80\x5e\x59\x62\x62" | ||
6612 | "\x25\xe0\xd1\x2f\x64\xef\xba\xac" | ||
6613 | "\xcd\x09\x07\x15\x8a\xcf\x73\xb5" | ||
6614 | "\x8b\xc9\xd8\x24\xb0\x53\xd5\x6f" | ||
6615 | "\xe1\x2b\x77\xb1\xc5\xe4\xa7\x0e" | ||
6616 | "\x18\x45\xab\x36\x03\x59\xa8\xbd" | ||
6617 | "\x43\xf0\xd8\x2c\x1a\x69\x96\xbb" | ||
6618 | "\x13\xdf\x6c\x33\x77\xdf\x25\x34" | ||
6619 | "\x5b\xa5\x5b\x8c\xf9\x51\x05\xd4" | ||
6620 | "\x8b\x8b\x44\x87\x49\xfc\xa0\x8f" | ||
6621 | "\x45\x15\x5b\x40\x42\xc4\x09\x92" | ||
6622 | "\x98\x0c\x4d\xf4\x26\x37\x1b\x13" | ||
6623 | "\x76\x01\x93\x8d\x4f\xe6\xed\x18" | ||
6624 | "\xd0\x79\x7b\x3f\x44\x50\xcb\xee" | ||
6625 | "\xf7\x4a\xc9\x9e\xe0\x96\x74\xa7" | ||
6626 | "\xe6\x93\xb2\x53\xca\x55\xa8\xdc" | ||
6627 | "\x1e\x68\x07\x87\xb7\x2e\xc1\x08" | ||
6628 | "\xb2\xa4\x5b\xaf\xc6\xdb\x5c\x66" | ||
6629 | "\x41\x1c\x51\xd9\xb0\x07\x00\x0d" | ||
6630 | "\xf0\x4c\xdc\x93\xde\xa9\x1e\x8e" | ||
6631 | "\xd3\x22\x62\xd8\x8b\x88\x2c\xea" | ||
6632 | "\x5e\xf1\x6e\x14\x40\xc7\xbe\xaa" | ||
6633 | "\x42\x28\xd0\x26\x30\x78\x01\x9b" | ||
6634 | "\x83\x07\xbc\x94\xc7\x57\xa2\x9f" | ||
6635 | "\x03\x07\xff\x16\xff\x3c\x6e\x48" | ||
6636 | "\x0a\xd0\xdd\x4c\xf6\x64\x9a\xf1" | ||
6637 | "\xcd\x30\x12\x82\x2c\x38\xd3\x26" | ||
6638 | "\x83\xdb\xab\x3e\xc6\xf8\xe6\xfa" | ||
6639 | "\x77\x0a\x78\x82\x75\xf8\x63\x51" | ||
6640 | "\x59\xd0\x8d\x24\x9f\x25\xe6\xa3" | ||
6641 | "\x4c\xbc\x34\xfc\xe3\x10\xc7\x62" | ||
6642 | "\xd4\x23\xc8\x3d\xa7\xc6\xa6\x0a" | ||
6643 | "\x4f\x7e\x29\x9d\x6d\xbe\xb5\xf1" | ||
6644 | "\xdf\xa4\x53\xfa\xc0\x23\x0f\x37" | ||
6645 | "\x84\x68\xd0\xb5\xc8\xc6\xae\xf8" | ||
6646 | "\xb7\x8d\xb3\x16\xfe\x8f\x87\xad" | ||
6647 | "\xd0\xc1\x08\xee\x12\x1c\x9b\x1d" | ||
6648 | "\x90\xf8\xd1\x63\xa4\x92\x3c\xf0" | ||
6649 | "\xc7\x34\xd8\xf1\x14\xed\xa3\xbc" | ||
6650 | "\x17\x7e\xd4\x62\x42\x54\x57\x2c" | ||
6651 | "\x3e\x7a\x35\x35\x17\x0f\x0b\x7f" | ||
6652 | "\x81\xa1\x3f\xd0\xcd\xc8\x3b\x96" | ||
6653 | "\xe9\xe0\x4a\x04\xe1\xb6\x3c\xa1" | ||
6654 | "\xd6\xca\xc4\xbd\xb6\xb5\x95\x34" | ||
6655 | "\x12\x9d\xc5\x96\xf2\xdf\xba\x54" | ||
6656 | "\x76\xd1\xb2\x6b\x3b\x39\xe0\xb9" | ||
6657 | "\x18\x62\xfb\xf7\xfc\x12\xf1\x5f" | ||
6658 | "\x7e\xc7\xe3\x59\x4c\xa6\xc2\x3d" | ||
6659 | "\x40\x15\xf9\xa3\x95\x64\x4c\x74" | ||
6660 | "\x8b\x73\x77\x33\x07\xa7\x04\x1d" | ||
6661 | "\x33\x5a\x7e\x8f\xbd\x86\x01\x4f" | ||
6662 | "\x3e\xb9\x27\x6f\xe2\x41\xf7\x09" | ||
6663 | "\x67\xfd\x29\x28\xc5\xe4\xf6\x18" | ||
6664 | "\x4c\x1b\x49\xb2\x9c\x5b\xf6\x81" | ||
6665 | "\x4f\xbb\x5c\xcc\x0b\xdf\x84\x23" | ||
6666 | "\x58\xd6\x28\x34\x93\x3a\x25\x97" | ||
6667 | "\xdf\xb2\xc3\x9e\x97\x38\x0b\x7d" | ||
6668 | "\x10\xb3\x54\x35\x23\x8c\x64\xee" | ||
6669 | "\xf0\xd8\x66\xff\x8b\x22\xd2\x5b" | ||
6670 | "\x05\x16\x3c\x89\xf7\xb1\x75\xaf" | ||
6671 | "\xc0\xae\x6a\x4f\x3f\xaf\x9a\xf4" | ||
6672 | "\xf4\x9a\x24\xd9\x80\x82\xc0\x12" | ||
6673 | "\xde\x96\xd1\xbe\x15\x0b\x8d\x6a" | ||
6674 | "\xd7\x12\xe4\x85\x9f\x83\xc9\xc3" | ||
6675 | "\xff\x0b\xb5\xaf\x3b\xd8\x6d\x67" | ||
6676 | "\x81\x45\xe6\xac\xec\xc1\x7b\x16" | ||
6677 | "\x18\x0a\xce\x4b\xc0\x2e\x76\xbc" | ||
6678 | "\x1b\xfa\xb4\x34\xb8\xfc\x3e\xc8" | ||
6679 | "\x5d\x90\x71\x6d\x7a\x79\xef\x06", | ||
6680 | .ksize = 1088, | ||
6681 | .plaintext = "\xaa\x5d\x54\xcb\xea\x1e\x46\x0f" | ||
6682 | "\x45\x87\x70\x51\x8a\x66\x7a\x33" | ||
6683 | "\xb4\x18\xff\xa9\x82\xf9\x45\x4b" | ||
6684 | "\x93\xae\x2e\x7f\xab\x98\xfe\xbf" | ||
6685 | "\x01\xee\xe5\xa0\x37\x8f\x57\xa6" | ||
6686 | "\xb0\x76\x0d\xa4\xd6\x28\x2b\x5d" | ||
6687 | "\xe1\x03\xd6\x1c\x6f\x34\x0d\xe7" | ||
6688 | "\x61\x2d\x2e\xe5\xae\x5d\x47\xc7" | ||
6689 | "\x80\x4b\x18\x8f\xa8\x99\xbc\x28" | ||
6690 | "\xed\x1d\x9d\x86\x7d\xd7\x41\xd1" | ||
6691 | "\xe0\x2b\xe1\x8c\x93\x2a\xa7\x80" | ||
6692 | "\xe1\x07\xa0\xa9\x9f\x8c\x8d\x1a" | ||
6693 | "\x55\xfc\x6b\x24\x7a\xbd\x3e\x51" | ||
6694 | "\x68\x4b\x26\x59\xc8\xa7\x16\xd9" | ||
6695 | "\xb9\x61\x13\xde\x8b\x63\x1c\xf6" | ||
6696 | "\x60\x01\xfb\x08\xb3\x5b\x0a\xbf" | ||
6697 | "\x34\x73\xda\x87\x87\x3d\x6f\x97" | ||
6698 | "\x4a\x0c\xa3\x58\x20\xa2\xc0\x81" | ||
6699 | "\x5b\x8c\xef\xa9\xc2\x01\x1e\x64" | ||
6700 | "\x83\x8c\xbc\x03\xb6\xd0\x29\x9f" | ||
6701 | "\x54\xe2\xce\x8b\xc2\x07\x85\x78" | ||
6702 | "\x25\x38\x96\x4c\xb4\xbe\x17\x4a" | ||
6703 | "\x65\xa6\xfa\x52\x9d\x66\x9d\x65" | ||
6704 | "\x4a\xd1\x01\x01\xf0\xcb\x13\xcc" | ||
6705 | "\xa5\x82\xf3\xf2\x66\xcd\x3f\x9d" | ||
6706 | "\xd1\xaa\xe4\x67\xea\xf2\xad\x88" | ||
6707 | "\x56\x76\xa7\x9b\x59\x3c\xb1\x5d" | ||
6708 | "\x78\xfd\x69\x79\x74\x78\x43\x26" | ||
6709 | "\x7b\xde\x3f\xf1\xf5\x4e\x14\xd9" | ||
6710 | "\x15\xf5\x75\xb5\x2e\x19\xf3\x0c" | ||
6711 | "\x48\x72\xd6\x71\x6d\x03\x6e\xaa" | ||
6712 | "\xa7\x08\xf9\xaa\x70\xa3\x0f\x4d" | ||
6713 | "\x12\x8a\xdd\xe3\x39\x73\x7e\xa7" | ||
6714 | "\xea\x1f\x6d\x06\x26\x2a\xf2\xc5" | ||
6715 | "\x52\xb4\xbf\xfd\x52\x0c\x06\x60" | ||
6716 | "\x90\xd1\xb2\x7b\x56\xae\xac\x58" | ||
6717 | "\x5a\x6b\x50\x2a\xf5\xe0\x30\x3c" | ||
6718 | "\x2a\x98\x0f\x1b\x5b\x0a\x84\x6c" | ||
6719 | "\x31\xae\x92\xe2\xd4\xbb\x7f\x59" | ||
6720 | "\x26\x10\xb9\x89\x37\x68\x26\xbf" | ||
6721 | "\x41\xc8\x49\xc4\x70\x35\x7d\xff" | ||
6722 | "\x2d\x7f\xf6\x8a\x93\x68\x8c\x78" | ||
6723 | "\x0d\x53\xce\x7d\xff\x7d\xfb\xae" | ||
6724 | "\x13\x1b\x75\xc4\x78\xd7\x71\xd8" | ||
6725 | "\xea\xd3\xf4\x9d\x95\x64\x8e\xb4" | ||
6726 | "\xde\xb8\xe4\xa6\x68\xc8\xae\x73" | ||
6727 | "\x58\xaf\xa8\xb0\x5a\x20\xde\x87" | ||
6728 | "\x43\xb9\x0f\xe3\xad\x41\x4b\xd5" | ||
6729 | "\xb7\xad\x16\x00\xa6\xff\xf6\x74" | ||
6730 | "\xbf\x8c\x9f\xb3\x58\x1b\xb6\x55" | ||
6731 | "\xa9\x90\x56\x28\xf0\xb5\x13\x4e" | ||
6732 | "\x9e\xf7\x25\x86\xe0\x07\x7b\x98" | ||
6733 | "\xd8\x60\x5d\x38\x95\x3c\xe4\x22" | ||
6734 | "\x16\x2f\xb2\xa2\xaf\xe8\x90\x17" | ||
6735 | "\xec\x11\x83\x1a\xf4\xa9\x26\xda" | ||
6736 | "\x39\x72\xf5\x94\x61\x05\x51\xec" | ||
6737 | "\xa8\x30\x8b\x2c\x13\xd0\x72\xac" | ||
6738 | "\xb9\xd2\xa0\x4c\x4b\x78\xe8\x6e" | ||
6739 | "\x04\x85\xe9\x04\x49\x82\x91\xff" | ||
6740 | "\x89\xe5\xab\x4c\xaa\x37\x03\x12" | ||
6741 | "\xca\x8b\x74\x10\xfd\x9e\xd9\x7b" | ||
6742 | "\xcb\xdb\x82\x6e\xce\x2e\x33\x39" | ||
6743 | "\xce\xd2\x84\x6e\x34\x71\x51\x6e" | ||
6744 | "\x0d\xd6\x01\x87\xc7\xfa\x0a\xd3" | ||
6745 | "\xad\x36\xf3\x4c\x9f\x96\x5e\x62" | ||
6746 | "\x62\x54\xc3\x03\x78\xd6\xab\xdd" | ||
6747 | "\x89\x73\x55\x25\x30\xf8\xa7\xe6" | ||
6748 | "\x4f\x11\x0c\x7c\x0a\xa1\x2b\x7b" | ||
6749 | "\x3d\x0d\xde\x81\xd4\x9d\x0b\xae" | ||
6750 | "\xdf\x00\xf9\x4c\xb6\x90\x8e\x16" | ||
6751 | "\xcb\x11\xc8\xd1\x2e\x73\x13\x75" | ||
6752 | "\x75\x3e\xaa\xf5\xee\x02\xb3\x18" | ||
6753 | "\xa6\x2d\xf5\x3b\x51\xd1\x1f\x47" | ||
6754 | "\x6b\x2c\xdb\xc4\x10\xe0\xc8\xba" | ||
6755 | "\x9d\xac\xb1\x9d\x75\xd5\x41\x0e" | ||
6756 | "\x7e\xbe\x18\x5b\xa4\x1f\xf8\x22" | ||
6757 | "\x4c\xc1\x68\xda\x6d\x51\x34\x6c" | ||
6758 | "\x19\x59\xec\xb5\xb1\xec\xa7\x03" | ||
6759 | "\xca\x54\x99\x63\x05\x6c\xb1\xac" | ||
6760 | "\x9c\x31\xd6\xdb\xba\x7b\x14\x12" | ||
6761 | "\x7a\xc3\x2f\xbf\x8d\xdc\x37\x46" | ||
6762 | "\xdb\xd2\xbc\xd4\x2f\xab\x30\xd5" | ||
6763 | "\xed\x34\x99\x8e\x83\x3e\xbe\x4c" | ||
6764 | "\x86\x79\x58\xe0\x33\x8d\x9a\xb8" | ||
6765 | "\xa9\xa6\x90\x46\xa2\x02\xb8\xdd" | ||
6766 | "\xf5\xf9\x1a\x5c\x8c\x01\xaa\x6e" | ||
6767 | "\xb4\x22\x12\xf5\x0c\x1b\x9b\x7a" | ||
6768 | "\xc3\x80\xf3\x06\x00\x5f\x30\xd5" | ||
6769 | "\x06\xdb\x7d\x82\xc2\xd4\x0b\x4c" | ||
6770 | "\x5f\xe9\xc5\xf5\xdf\x97\x12\xbf" | ||
6771 | "\x56\xaf\x9b\x69\xcd\xee\x30\xb4" | ||
6772 | "\xa8\x71\xff\x3e\x7d\x73\x7a\xb4" | ||
6773 | "\x0d\xa5\x46\x7a\xf3\xf4\x15\x87" | ||
6774 | "\x5d\x93\x2b\x8c\x37\x64\xb5\xdd" | ||
6775 | "\x48\xd1\xe5\x8c\xae\xd4\xf1\x76" | ||
6776 | "\xda\xf4\xba\x9e\x25\x0e\xad\xa3" | ||
6777 | "\x0d\x08\x7c\xa8\x82\x16\x8d\x90" | ||
6778 | "\x56\x40\x16\x84\xe7\x22\x53\x3a" | ||
6779 | "\x58\xbc\xb9\x8f\x33\xc8\xc2\x84" | ||
6780 | "\x22\xe6\x0d\xe7\xb3\xdc\x5d\xdf" | ||
6781 | "\xd7\x2a\x36\xe4\x16\x06\x07\xd2" | ||
6782 | "\x97\x60\xb2\xf5\x5e\x14\xc9\xfd" | ||
6783 | "\x8b\x05\xd1\xce\xee\x9a\x65\x99" | ||
6784 | "\xb7\xae\x19\xb7\xc8\xbc\xd5\xa2" | ||
6785 | "\x7b\x95\xe1\xcc\xba\x0d\xdc\x8a" | ||
6786 | "\x1d\x59\x52\x50\xaa\x16\x02\x82" | ||
6787 | "\xdf\x61\x33\x2e\x44\xce\x49\xc7" | ||
6788 | "\xe5\xc6\x2e\x76\xcf\x80\x52\xf0" | ||
6789 | "\x3d\x17\x34\x47\x3f\xd3\x80\x48" | ||
6790 | "\xa2\xba\xd5\xc7\x7b\x02\x28\xdb" | ||
6791 | "\xac\x44\xc7\x6e\x05\x5c\xc2\x79" | ||
6792 | "\xb3\x7d\x6a\x47\x77\x66\xf1\x38" | ||
6793 | "\xf0\xf5\x4f\x27\x1a\x31\xca\x6c" | ||
6794 | "\x72\x95\x92\x8e\x3f\xb0\xec\x1d" | ||
6795 | "\xc7\x2a\xff\x73\xee\xdf\x55\x80" | ||
6796 | "\x93\xd2\xbd\x34\xd3\x9f\x00\x51" | ||
6797 | "\xfb\x2e\x41\xba\x6c\x5a\x7c\x17" | ||
6798 | "\x7f\xe6\x70\xac\x8d\x39\x3f\x77" | ||
6799 | "\xe2\x23\xac\x8f\x72\x4e\xe4\x53" | ||
6800 | "\xcc\xf1\x1b\xf1\x35\xfe\x52\xa4" | ||
6801 | "\xd6\xb8\x40\x6b\xc1\xfd\xa0\xa1" | ||
6802 | "\xf5\x46\x65\xc2\x50\xbb\x43\xe2" | ||
6803 | "\xd1\x43\x28\x34\x74\xf5\x87\xa0" | ||
6804 | "\xf2\x5e\x27\x3b\x59\x2b\x3e\x49" | ||
6805 | "\xdf\x46\xee\xaf\x71\xd7\x32\x36" | ||
6806 | "\xc7\x14\x0b\x58\x6e\x3e\x2d\x41" | ||
6807 | "\xfa\x75\x66\x3a\x54\xe0\xb2\xb9" | ||
6808 | "\xaf\xdd\x04\x80\x15\x19\x3f\x6f" | ||
6809 | "\xce\x12\xb4\xd8\xe8\x89\x3c\x05" | ||
6810 | "\x30\xeb\xf3\x3d\xcd\x27\xec\xdc" | ||
6811 | "\x56\x70\x12\xcf\x78\x2b\x77\xbf" | ||
6812 | "\x22\xf0\x1b\x17\x9c\xcc\xd6\x1b" | ||
6813 | "\x2d\x3d\xa0\x3b\xd8\xc9\x70\xa4" | ||
6814 | "\x7a\x3e\x07\xb9\x06\xc3\xfa\xb0" | ||
6815 | "\x33\xee\xc1\xd8\xf6\xe0\xf0\xb2" | ||
6816 | "\x61\x12\x69\xb0\x5f\x28\x99\xda" | ||
6817 | "\xc3\x61\x48\xfa\x07\x16\x03\xc4" | ||
6818 | "\xa8\xe1\x3c\xe8\x0e\x64\x15\x30" | ||
6819 | "\xc1\x9d\x84\x2f\x73\x98\x0e\x3a" | ||
6820 | "\xf2\x86\x21\xa4\x9e\x1d\xb5\x86" | ||
6821 | "\x16\xdb\x2b\x9a\x06\x64\x8e\x79" | ||
6822 | "\x8d\x76\x3e\xc3\xc2\x64\x44\xe3" | ||
6823 | "\xda\xbc\x1a\x52\xd7\x61\x03\x65" | ||
6824 | "\x54\x32\x77\x01\xed\x9d\x8a\x43" | ||
6825 | "\x25\x24\xe3\xc1\xbe\xb8\x2f\xcb" | ||
6826 | "\x89\x14\x64\xab\xf6\xa0\x6e\x02" | ||
6827 | "\x57\xe4\x7d\xa9\x4e\x9a\x03\x36" | ||
6828 | "\xad\xf1\xb1\xfc\x0b\xe6\x79\x51" | ||
6829 | "\x9f\x81\x77\xc4\x14\x78\x9d\xbf" | ||
6830 | "\xb6\xd6\xa3\x8c\xba\x0b\x26\xe7" | ||
6831 | "\xc8\xb9\x5c\xcc\xe1\x5f\xd5\xc6" | ||
6832 | "\xc4\xca\xc2\xa3\x45\xba\x94\x13" | ||
6833 | "\xb2\x8f\xc3\x54\x01\x09\xe7\x8b" | ||
6834 | "\xda\x2a\x0a\x11\x02\x43\xcb\x57" | ||
6835 | "\xc9\xcc\xb5\x5c\xab\xc4\xec\x54" | ||
6836 | "\x00\x06\x34\xe1\x6e\x03\x89\x7c" | ||
6837 | "\xc6\xfb\x6a\xc7\x60\x43\xd6\xc5" | ||
6838 | "\xb5\x68\x72\x89\x8f\x42\xc3\x74" | ||
6839 | "\xbd\x25\xaa\x9f\x67\xb5\xdf\x26" | ||
6840 | "\x20\xe8\xb7\x01\x3c\xe4\x77\xce" | ||
6841 | "\xc4\x65\xa7\x23\x79\xea\x33\xc7" | ||
6842 | "\x82\x14\x5c\x82\xf2\x4e\x3d\xf6" | ||
6843 | "\xc6\x4a\x0e\x29\xbb\xec\x44\xcd" | ||
6844 | "\x2f\xd1\x4f\x21\x71\xa9\xce\x0f" | ||
6845 | "\x5c\xf2\x72\x5c\x08\x2e\x21\xd2" | ||
6846 | "\xc3\x29\x13\xd8\xac\xc3\xda\x13" | ||
6847 | "\x1a\x9d\xa7\x71\x1d\x27\x1d\x27" | ||
6848 | "\x1d\xea\xab\x44\x79\xad\xe5\xeb" | ||
6849 | "\xef\x1f\x22\x0a\x44\x4f\xcb\x87" | ||
6850 | "\xa7\x58\x71\x0e\x66\xf8\x60\xbf" | ||
6851 | "\x60\x74\x4a\xb4\xec\x2e\xfe\xd3" | ||
6852 | "\xf5\xb8\xfe\x46\x08\x50\x99\x6c" | ||
6853 | "\x66\xa5\xa8\x34\x44\xb5\xe5\xf0" | ||
6854 | "\xdd\x2c\x67\x4e\x35\x96\x8e\x67" | ||
6855 | "\x48\x3f\x5f\x37\x44\x60\x51\x2e" | ||
6856 | "\x14\x91\x5e\x57\xc3\x0e\x79\x77" | ||
6857 | "\x2f\x03\xf4\xe2\x1c\x72\xbf\x85" | ||
6858 | "\x5d\xd3\x17\xdf\x6c\xc5\x70\x24" | ||
6859 | "\x42\xdf\x51\x4e\x2a\xb2\xd2\x5b" | ||
6860 | "\x9e\x69\x83\x41\x11\xfe\x73\x22" | ||
6861 | "\xde\x8a\x9e\xd8\x8a\xfb\x20\x38" | ||
6862 | "\xd8\x47\x6f\xd5\xed\x8f\x41\xfd" | ||
6863 | "\x13\x7a\x18\x03\x7d\x0f\xcd\x7d" | ||
6864 | "\xa6\x7d\x31\x9e\xf1\x8f\x30\xa3" | ||
6865 | "\x8b\x4c\x24\xb7\xf5\x48\xd7\xd9" | ||
6866 | "\x12\xe7\x84\x97\x5c\x31\x6d\xfb" | ||
6867 | "\xdf\xf3\xd3\xd1\xd5\x0c\x30\x06" | ||
6868 | "\x01\x6a\xbc\x6c\x78\x7b\xa6\x50" | ||
6869 | "\xfa\x0f\x3c\x42\x2d\xa5\xa3\x3b" | ||
6870 | "\xcf\x62\x50\xff\x71\x6d\xe7\xda" | ||
6871 | "\x27\xab\xc6\x67\x16\x65\x68\x64" | ||
6872 | "\xc7\xd5\x5f\x81\xa9\xf6\x65\xb3" | ||
6873 | "\x5e\x43\x91\x16\xcd\x3d\x55\x37" | ||
6874 | "\x55\xb3\xf0\x28\xc5\x54\x19\xc0" | ||
6875 | "\xe0\xd6\x2a\x61\xd4\xc8\x72\x51" | ||
6876 | "\xe9\xa1\x7b\x48\x21\xad\x44\x09" | ||
6877 | "\xe4\x01\x61\x3c\x8a\x5b\xf9\xa1" | ||
6878 | "\x6e\x1b\xdf\xc0\x04\xa8\x8b\xf2" | ||
6879 | "\x21\xbe\x34\x7b\xfc\xa1\xcd\xc9" | ||
6880 | "\xa9\x96\xf4\xa4\x4c\xf7\x4e\x8f" | ||
6881 | "\x84\xcc\xd3\xa8\x92\x77\x8f\x36" | ||
6882 | "\xe2\x2e\x8c\x33\xe8\x84\xa6\x0c" | ||
6883 | "\x6c\x8a\xda\x14\x32\xc2\x96\xff" | ||
6884 | "\xc6\x4a\xc2\x9b\x30\x7f\xd1\x29" | ||
6885 | "\xc0\xd5\x78\x41\x00\x80\x80\x03" | ||
6886 | "\x2a\xb1\xde\x26\x03\x48\x49\xee" | ||
6887 | "\x57\x14\x76\x51\x3c\x36\x5d\x0a" | ||
6888 | "\x5c\x9f\xe8\xd8\x53\xdb\x4f\xd4" | ||
6889 | "\x38\xbf\x66\xc9\x75\x12\x18\x75" | ||
6890 | "\x34\x2d\x93\x22\x96\x51\x24\x6e" | ||
6891 | "\x4e\xd9\x30\xea\x67\xff\x92\x1c" | ||
6892 | "\x16\x26\xe9\xb5\x33\xab\x8c\x22" | ||
6893 | "\x47\xdb\xa0\x2c\x08\xf0\x12\x69" | ||
6894 | "\x7e\x93\x52\xda\xa5\xe5\xca\xc1" | ||
6895 | "\x0f\x55\x2a\xbd\x09\x30\x88\x1b" | ||
6896 | "\x9c\xc6\x9f\xe6\xdb\xa6\x92\xeb" | ||
6897 | "\xf4\xbd\x5c\xc4\xdb\xc6\x71\x09" | ||
6898 | "\xab\x5e\x48\x0c\xed\x6f\xda\x8e" | ||
6899 | "\x8d\x0c\x98\x71\x7d\x10\xd0\x9c" | ||
6900 | "\x20\x9b\x79\x53\x26\x5d\xb9\x85" | ||
6901 | "\x8a\x31\xb8\xc5\x1c\x97\xde\x88" | ||
6902 | "\x61\x55\x7f\x7c\x21\x06\xea\xc4" | ||
6903 | "\x5f\xaf\xf2\xf0\xd5\x5e\x7d\xb4" | ||
6904 | "\x6e\xcf\xe9\xae\x1b\x0e\x11\x80" | ||
6905 | "\xc1\x9a\x74\x7e\x52\x6f\xa0\xb7" | ||
6906 | "\x24\xcd\x8d\x0a\x11\x40\x63\x72" | ||
6907 | "\xfa\xe2\xc5\xb3\x94\xef\x29\xa2" | ||
6908 | "\x1a\x23\x43\x04\x37\x55\x0d\xe9" | ||
6909 | "\x83\xb2\x29\x51\x49\x64\xa0\xbd" | ||
6910 | "\xde\x73\xfd\xa5\x7c\x95\x70\x62" | ||
6911 | "\x58\xdc\xe2\xd0\xbf\x98\xf5\x8a" | ||
6912 | "\x6a\xfd\xce\xa8\x0e\x42\x2a\xeb" | ||
6913 | "\xd2\xff\x83\x27\x53\x5c\xa0\x6e" | ||
6914 | "\x93\xef\xe2\xb9\x5d\x35\xd6\x98" | ||
6915 | "\xf6\x71\x19\x7a\x54\xa1\xa7\xe8" | ||
6916 | "\x09\xfe\xf6\x9e\xc7\xbd\x3e\x29" | ||
6917 | "\xbd\x6b\x17\xf4\xe7\x3e\x10\x5c" | ||
6918 | "\xc1\xd2\x59\x4f\x4b\x12\x1a\x5b" | ||
6919 | "\x50\x80\x59\xb9\xec\x13\x66\xa8" | ||
6920 | "\xd2\x31\x7b\x6a\x61\x22\xdd\x7d" | ||
6921 | "\x61\xee\x87\x16\x46\x9f\xf9\xc7" | ||
6922 | "\x41\xee\x74\xf8\xd0\x96\x2c\x76" | ||
6923 | "\x2a\xac\x7d\x6e\x9f\x0e\x7f\x95" | ||
6924 | "\xfe\x50\x16\xb2\x23\xca\x62\xd5" | ||
6925 | "\x68\xcf\x07\x3f\x3f\x97\x85\x2a" | ||
6926 | "\x0c\x25\x45\xba\xdb\x32\xcb\x83" | ||
6927 | "\x8c\x4f\xe0\x6d\x9a\x99\xf9\xc9" | ||
6928 | "\xda\xd4\x19\x31\xc1\x7c\x6d\xd9" | ||
6929 | "\x9c\x56\xd3\xec\xc1\x81\x4c\xed" | ||
6930 | "\x28\x9d\x87\xeb\x19\xd7\x1a\x4f" | ||
6931 | "\x04\x6a\xcb\x1f\xcf\x1f\xa2\x16" | ||
6932 | "\xfc\x2a\x0d\xa1\x14\x2d\xfa\xc5" | ||
6933 | "\x5a\xd2\xc5\xf9\x19\x7c\x20\x1f" | ||
6934 | "\x2d\x10\xc0\x66\x7c\xd9\x2d\xe5" | ||
6935 | "\x88\x70\x59\xa7\x85\xd5\x2e\x7c" | ||
6936 | "\x5c\xe3\xb7\x12\xd6\x97\x3f\x29", | ||
6937 | .psize = 2048, | ||
6938 | .digest = "\x37\x90\x92\xc2\xeb\x01\x87\xd9" | ||
6939 | "\x95\xc7\x91\xc3\x17\x8b\x38\x52", | ||
6940 | } | ||
6941 | }; | ||
6942 | |||
6943 | |||
5712 | /* | 6944 | /* |
5713 | * DES test vectors. | 6945 | * DES test vectors. |
5714 | */ | 6946 | */ |