diff --git a/bcal/bcal_seed.c b/bcal/bcal_seed.c index 966f71d..d4c88ef 100644 --- a/bcal/bcal_seed.c +++ b/bcal/bcal_seed.c @@ -25,18 +25,17 @@ * */ -#include #include #include "blockcipher_descriptor.h" #include "seed.h" #include "keysize_descriptor.h" -const char seed_str[] PROGMEM = "SEED"; +const char seed_str[] = "SEED"; -const uint8_t seed_keysize_desc[] PROGMEM = { KS_TYPE_LIST, 1, KS_INT(128), - KS_TYPE_TERMINATOR }; +const uint8_t seed_keysize_desc[] = { KS_TYPE_LIST, 1, KS_INT(128), + KS_TYPE_TERMINATOR }; -const bcdesc_t seed_desc PROGMEM = { +const bcdesc_t seed_desc = { BCDESC_TYPE_BLOCKCIPHER, BC_INIT_TYPE_1, seed_str, diff --git a/bcal/bcal_seed.h b/bcal/bcal_seed.h index 365bc94..ef32efb 100644 --- a/bcal/bcal_seed.h +++ b/bcal/bcal_seed.h @@ -25,7 +25,6 @@ * */ -#include #include "blockcipher_descriptor.h" #include "seed.h" #include "keysize_descriptor.h" diff --git a/mkfiles/seed_c.mk b/mkfiles/seed_c.mk new file mode 100644 index 0000000..f07f643 --- /dev/null +++ b/mkfiles/seed_c.mk @@ -0,0 +1,13 @@ +# Makefile for SEED +ALGO_NAME := SEED_C + +# comment out the following line for removement of SEED from the build process +BLOCK_CIPHERS += $(ALGO_NAME) + +$(ALGO_NAME)_DIR := seed/ +$(ALGO_NAME)_OBJ := seed_c.o seed_sbox.o +$(ALGO_NAME)_INCDIR := bcal/ +$(ALGO_NAME)_TEST_BIN := main-seed-test.o bcal_seed.o $(CLI_STD) $(BCAL_STD) +$(ALGO_NAME)_NESSIE_TEST := "nessie" +$(ALGO_NAME)_PERFORMANCE_TEST := "performance" + diff --git a/seed/seed.h b/seed/seed.h new file mode 100644 index 0000000..eb603ab --- /dev/null +++ b/seed/seed.h @@ -0,0 +1,81 @@ +/* seed.h */ +/* + This file is part of the ARM-Crypto-Lib. + Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +/** + * \file seed.h + * \author Daniel Otte + * \date 2007-06-1 + * \brief declarations for seed + * \par License + * GPL + * + */ +#ifndef SEED_H_ +#define SEED_H_ + +#include +/** \typedef seed_ctx_t + * \brief SEED context + * + * A variable of this type may hold the key material for the SEED cipher. + * This context is regulary generated by the + * void seed_init(const void * key, seed_ctx_t * ctx) function. + */ +typedef struct{ + uint32_t k[4]; +} seed_ctx_t; + +/******************************************************************************/ + +/** \fn void seed_init(const void * key, seed_ctx_t * ctx) + * \brief initializes context for SEED operation + * + * This function copys the key material into a context variable. + * + * \param key pointer to the key material (128 bit = 16 bytes) + * \param ctx pointer to the context (seed_ctx_t) + */ +void seed_init(const void * key, seed_ctx_t * ctx); + +/** \fn void seed_enc(void * buffer,const seed_ctx_t * ctx) + * \brief encrypt a block with SEED + * + * This function encrypts a block of 64 bits (8 bytes) with the SEED algorithm. + * The round keys are computed on demand, so the context is modifyed while + * encrypting but the original stated is restored when the function exits. + * + * \param buffer pointer to the block (64 bit = 8 byte) which will be encrypted + * \param ctx pointer to the key material (seed_ctx_t) + */ +void seed_enc(void * buffer, const seed_ctx_t * ctx); + + +/** \fn void seed_dec(void * buffer, const seed_ctx_t * ctx) + * \brief decrypt a block with SEED + * + * This function decrypts a block of 64 bits (8 bytes) with the SEED algorithm. + * The round keys are computed on demand, so the context is modifyed while + * decrypting but the original stated is restored when the function exits. + * + * \param buffer pointer to the block (64 bit = 8 byte) which will be decrypted + * \param ctx pointer to the key material (seed_ctx_t) + */ +void seed_dec(void * buffer, const seed_ctx_t * ctx); + + +#endif /*SEED_H_*/ diff --git a/seed/seed_c.c b/seed/seed_c.c new file mode 100644 index 0000000..826d1dc --- /dev/null +++ b/seed/seed_c.c @@ -0,0 +1,280 @@ +/* seed_c.c */ +/* + This file is part of the ARM-Crypto-Lib. + Copyright (C) 2006-2010 Daniel Otte (daniel.otte@rub.de) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ + /** + * \file seed_c.c + * \author Daniel Otte + * \date 2007-06-1 + * \brief SEED parts in C for AVR + * \par License + * GPL + * + */ +#include +#include +#include "seed.h" +#include "seed_sbox.h" + + +static +uint32_t g_function(uint32_t x); +/******************************************************************************/ + +static +void changeendian32(uint32_t * a){ + *a = (*a & 0x000000FF) << 24 | + (*a & 0x0000FF00) << 8 | + (*a & 0x00FF0000) >> 8 | + (*a & 0xFF000000) >> 24; +} + +/******************************************************************************/ +static +uint32_t bigendian_sum32(uint32_t a, uint32_t b){ + changeendian32(&a); + changeendian32(&b); + a += b; + changeendian32(&a); + return a; +} + +/******************************************************************************/ +static +uint32_t bigendian_sub32(uint32_t a, uint32_t b){ + changeendian32(&a); + changeendian32(&b); + a -= b; + changeendian32(&a); + return a; +} + +/******************************************************************************/ +static inline +uint64_t bigendian_rotl8_64(uint64_t a){ + /* + changeendian64(&a); + a = (a<<8) | (a>>(64-8)); + changeendian64(&a); + */ + a = (a>>8) | (a<<(64-8)); + return a; +} + +/******************************************************************************/ +static inline +uint64_t bigendian_rotr8_64(uint64_t a){ + /* + changeendian64(&a); + a = (a>>8) | (a<<(64-8)); + changeendian64(&a); + */ + a = (a<<8) | (a>>(64-8)); + return a; +} + +/******************************************************************************/ +static +uint64_t f_function(const uint64_t* a, uint32_t k0, uint32_t k1){ + uint32_t c,d; + + c = *a & 0x00000000FFFFFFFFLL; + d = (*a>>32) & 0x00000000FFFFFFFFLL; + + c ^= k0; d ^= k1; + d ^= c; + d = g_function(d); + c = bigendian_sum32(c,d); + c = g_function(c); + d = bigendian_sum32(c,d); + d = g_function(d); + c = bigendian_sum32(c,d); + return ((uint64_t)d << 32) | c; +} + +/******************************************************************************/ +#define M0 0xfc +#define M1 0xf3 +#define M2 0xcf +#define M3 0x3f + +#define X3 (((uint8_t*)(&x))[0]) +#define X2 (((uint8_t*)(&x))[1]) +#define X1 (((uint8_t*)(&x))[2]) +#define X0 (((uint8_t*)(&x))[3]) + +#define Z3 (((uint8_t*)(&z))[0]) +#define Z2 (((uint8_t*)(&z))[1]) +#define Z1 (((uint8_t*)(&z))[2]) +#define Z0 (((uint8_t*)(&z))[3]) + +static +uint32_t g_function(uint32_t x){ + uint32_t z; + /* sbox substitution */ + X3 = seed_sbox2[X3]; + X2 = seed_sbox1[X2]; + X1 = seed_sbox2[X1]; + X0 = seed_sbox1[X0]; + /* now the permutation */ + Z0 = (X0 & M0) ^ (X1 & M1) ^ (X2 & M2) ^ (X3 & M3); + Z1 = (X0 & M1) ^ (X1 & M2) ^ (X2 & M3) ^ (X3 & M0); + Z2 = (X0 & M2) ^ (X1 & M3) ^ (X2 & M0) ^ (X3 & M1); + Z3 = (X0 & M3) ^ (X1 & M0) ^ (X2 & M1) ^ (X3 & M2); + return z; +} +/******************************************************************************/ +typedef struct { + uint32_t k0, k1; +} keypair_t; + +keypair_t getnextkeys(uint32_t *keystate, uint8_t curround){ + keypair_t ret; + if (curround>15){ + /* ERROR */ + ret.k0 = ret.k1 = 0; + } else { + /* ret.k0 = g_function(keystate[0] + keystate[2] - pgm_read_dword(&(seed_kc[curround]))); + ret.k1 = g_function(keystate[1] - keystate[3] + pgm_read_dword(&(seed_kc[curround]))); */ + ret.k0 = bigendian_sum32(keystate[0], keystate[2]); + ret.k0 = bigendian_sub32(ret.k0, seed_kc[curround]); + ret.k0 = g_function(ret.k0); + ret.k1 = bigendian_sub32(keystate[1], keystate[3]); + ret.k1 = bigendian_sum32(ret.k1, seed_kc[curround]); + ret.k1 = g_function(ret.k1); + + if (curround & 1){ + /* odd round (1,3,5, ...) */ + ((uint64_t*)keystate)[1] = bigendian_rotl8_64( ((uint64_t*)keystate)[1] ); + } else { + /* even round (0,2,4, ...) */ + ((uint64_t*)keystate)[0] = bigendian_rotr8_64(((uint64_t*)keystate)[0]); + } + } + return ret; +} + + +/******************************************************************************/ + +keypair_t getprevkeys(uint32_t *keystate, uint8_t curround){ + keypair_t ret; + if (curround>15){ + /* ERROR */ + ret.k0 = ret.k1 = 0; + } else { + if (curround & 1){ + /* odd round (1,3,5, ..., 15) */ + ((uint64_t*)keystate)[1] = bigendian_rotr8_64( ((uint64_t*)keystate)[1] ); + } else { + /* even round (0,2,4, ..., 14) */ + ((uint64_t*)keystate)[0] = bigendian_rotl8_64(((uint64_t*)keystate)[0]); + } + /* ret.k0 = g_function(keystate[0] + keystate[2] - pgm_read_dword(&(seed_kc[curround]))); + ret.k1 = g_function(keystate[1] - keystate[3] + pgm_read_dword(&(seed_kc[curround]))); */ + ret.k0 = bigendian_sum32(keystate[0], keystate[2]); + ret.k0 = bigendian_sub32(ret.k0, seed_kc[curround]); + ret.k0 = g_function(ret.k0); + ret.k1 = bigendian_sub32(keystate[1], keystate[3]); + ret.k1 = bigendian_sum32(ret.k1, seed_kc[curround]); + ret.k1 = g_function(ret.k1); + } + return ret; +} + +/******************************************************************************/ + +void seed_init(const void * key, seed_ctx_t * ctx){ + memcpy(ctx->k, key, 128/8); +} + +/******************************************************************************/ + +#define L (((uint64_t*)buffer)[0]) +#define R (((uint64_t*)buffer)[1]) + +void seed_enc(void * buffer, const seed_ctx_t * ctx){ + uint8_t r; + keypair_t k; + for(r=0; r<8; ++r){ + k = getnextkeys(((seed_ctx_t*)ctx)->k, 2*r); +/* + DEBUG_S("\r\n\tDBG ka,0: "); cli_hexdump(&k.k0, 4); + DEBUG_S("\r\n\tDBG ka,1: "); cli_hexdump(&k.k1, 4); + DEBUG_S("\r\n\t DBG L: "); cli_hexdump((uint8_t*)buffer+0, 8); + DEBUG_S("\r\n\t DBG R: "); cli_hexdump((uint8_t*)buffer+8, 8); +*/ + L ^= f_function(&R,k.k0,k.k1); + + k = getnextkeys(((seed_ctx_t*)ctx)->k, 2*r+1); +/* + DEBUG_S("\r\n\tDBG kb,0: "); cli_hexdump(&k.k0, 4); + DEBUG_S("\r\n\tDBG kb,1: "); cli_hexdump(&k.k1, 4); + DEBUG_S("\r\n\t DBG L: "); cli_hexdump((uint8_t*)buffer+8, 8); + DEBUG_S("\r\n\t DBG R: "); cli_hexdump((uint8_t*)buffer+0, 8); +*/ + R ^= f_function(&L,k.k0,k.k1); + } + /* just an exchange without temp. variable */ + L ^= R; + R ^= L; + L ^= R; +} + +/******************************************************************************/ + +#define L (((uint64_t*)buffer)[0]) +#define R (((uint64_t*)buffer)[1]) + +void seed_dec(void * buffer, const seed_ctx_t * ctx){ + int8_t r; + keypair_t k; + for(r=7; r>=0; --r){ + k = getprevkeys(((seed_ctx_t*)ctx)->k, 2*r+1); +/* + DEBUG_S("\r\n\tDBG ka,0: "); cli_hexdump(&k.k0, 4); + DEBUG_S("\r\n\tDBG ka,1: "); cli_hexdump(&k.k1, 4); + DEBUG_S("\r\n\t DBG L: "); cli_hexdump((uint8_t*)buffer+0, 8); + DEBUG_S("\r\n\t DBG R: "); cli_hexdump((uint8_t*)buffer+8, 8); +*/ + L ^= f_function(&R,k.k0,k.k1); + + k = getprevkeys(((seed_ctx_t*)ctx)->k, 2*r+0); +/* + DEBUG_S("\r\n\tDBG kb,0: "); cli_hexdump(&k.k0, 4); + DEBUG_S("\r\n\tDBG kb,1: "); cli_hexdump(&k.k1, 4); + DEBUG_S("\r\n\t DBG L: "); cli_hexdump((uint8_t*)buffer+8, 8); + DEBUG_S("\r\n\t DBG R: "); cli_hexdump((uint8_t*)buffer+0, 8); +*/ + R ^= f_function(&L,k.k0,k.k1); + } + /* just an exchange without temp. variable */ + L ^= R; + R ^= L; + L ^= R; +} + + + + + + + + + + + diff --git a/seed/seed_sbox.c b/seed/seed_sbox.c new file mode 100644 index 0000000..6e604e9 --- /dev/null +++ b/seed/seed_sbox.c @@ -0,0 +1,120 @@ +/* seed_sbox.c */ +/* + This file is part of the ARM-Crypto-Lib. + Copyright (C) 2006-2011 Daniel Otte (daniel.otte@rub.de) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +/** + * \file seed_sbox.c + * \author Daniel Otte + * \date 2011-02-02 + * \brief sboxes and constants for seed + * \par License + * GPL + * + */ + +#include + +const uint8_t seed_sbox1[256] ={ + 169, 133, 214, 211, 84, 29, 172, 37, + 93, 67, 24, 30, 81, 252, 202, 99, + 40, 68, 32, 157, 224, 226, 200, 23, + 165, 143, 3, 123, 187, 19, 210, 238, + 112, 140, 63, 168, 50, 221, 246, 116, + 236, 149, 11, 87, 92, 91, 189, 1, + 36, 28, 115, 152, 16, 204, 242, 217, + 44, 231, 114, 131, 155, 209, 134, 201, + 96, 80, 163, 235, 13, 182, 158, 79, + 183, 90, 198, 120, 166, 18, 175, 213, + 97, 195, 180, 65, 82, 125, 141, 8, + 31, 153, 0, 25, 4, 83, 247, 225, + 253, 118, 47, 39, 176, 139, 14, 171, + 162, 110, 147, 77, 105, 124, 9, 10, + 191, 239, 243, 197, 135, 20, 254, 100, + 222, 46, 75, 26, 6, 33, 107, 102, + 2, 245, 146, 138, 12, 179, 126, 208, + 122, 71, 150, 229, 38, 128, 173, 223, + 161, 48, 55, 174, 54, 21, 34, 56, + 244, 167, 69, 76, 129, 233, 132, 151, + 53, 203, 206, 60, 113, 17, 199, 137, + 117, 251, 218, 248, 148, 89, 130, 196, + 255, 73, 57, 103, 192, 207, 215, 184, + 15, 142, 66, 35, 145, 108, 219, 164, + 52, 241, 72, 194, 111, 61, 45, 64, + 190, 62, 188, 193, 170, 186, 78, 85, + 59, 220, 104, 127, 156, 216, 74, 86, + 119, 160, 237, 70, 181, 43, 101, 250, + 227, 185, 177, 159, 94, 249, 230, 178, + 49, 234, 109, 95, 228, 240, 205, 136, + 22, 58, 88, 212, 98, 41, 7, 51, + 232, 27, 5, 121, 144, 106, 42, 154 +}; + +const uint8_t seed_sbox2[256] ={ + 56, 232, 45, 166, 207, 222, 179, 184, + 175, 96, 85, 199, 68, 111, 107, 91, + 195, 98, 51, 181, 41, 160, 226, 167, + 211, 145, 17, 6, 28, 188, 54, 75, + 239, 136, 108, 168, 23, 196, 22, 244, + 194, 69, 225, 214, 63, 61, 142, 152, + 40, 78, 246, 62, 165, 249, 13, 223, + 216, 43, 102, 122, 39, 47, 241, 114, + 66, 212, 65, 192, 115, 103, 172, 139, + 247, 173, 128, 31, 202, 44, 170, 52, + 210, 11, 238, 233, 93, 148, 24, 248, + 87, 174, 8, 197, 19, 205, 134, 185, + 255, 125, 193, 49, 245, 138, 106, 177, + 209, 32, 215, 2, 34, 4, 104, 113, + 7, 219, 157, 153, 97, 190, 230, 89, + 221, 81, 144, 220, 154, 163, 171, 208, + 129, 15, 71, 26, 227, 236, 141, 191, + 150, 123, 92, 162, 161, 99, 35, 77, + 200, 158, 156, 58, 12, 46, 186, 110, + 159, 90, 242, 146, 243, 73, 120, 204, + 21, 251, 112, 117, 127, 53, 16, 3, + 100, 109, 198, 116, 213, 180, 234, 9, + 118, 25, 254, 64, 18, 224, 189, 5, + 250, 1, 240, 42, 94, 169, 86, 67, + 133, 20, 137, 155, 176, 229, 72, 121, + 151, 252, 30, 130, 33, 140, 27, 95, + 119, 84, 178, 29, 37, 79, 0, 70, + 237, 88, 82, 235, 126, 218, 201, 253, + 48, 149, 101, 60, 182, 228, 187, 124, + 14, 80, 57, 38, 50, 132, 105, 147, + 55, 231, 36, 164, 203, 83, 10, 135, + 217, 76, 131, 143, 206, 59, 74, 183 +}; + +/* key constants */ +const uint32_t seed_kc[16] ={ + 0xb979379e, + 0x73f36e3c, + 0xe6e6dd78, + 0xcccdbbf1, + 0x999b77e3, + 0x3337efc6, + 0x676ede8d, + 0xcfdcbc1b, + 0x9eb97937, + 0x3c73f36e, + 0x78e6e6dd, + 0xf1cccdbb, + 0xe3999b77, + 0xc63337ef, + 0x8d676ede, + 0x1bcfdcbc +}; + diff --git a/seed/seed_sbox.h b/seed/seed_sbox.h new file mode 100644 index 0000000..1a2541e --- /dev/null +++ b/seed/seed_sbox.h @@ -0,0 +1,39 @@ +/* seed_sbox.h */ +/* + This file is part of the ARM-Crypto-Lib. + Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +/** + * \file seed_sbox.h + * \author Daniel Otte + * \date 2007-06-1 + * \brief sboxes and constants for seed + * \par License + * GPL + * + */ + +#ifndef SEED_SBOX_H_ +#define SEED_SBOX_H_ + +#include + +extern const uint8_t seed_sbox1[256]; +extern const uint8_t seed_sbox2[256]; +/* key constants */ +extern const uint32_t seed_kc[16]; + +#endif /*SEED_SBOX_H_*/ diff --git a/test_src/main-seed-test.c b/test_src/main-seed-test.c new file mode 100644 index 0000000..fcb4174 --- /dev/null +++ b/test_src/main-seed-test.c @@ -0,0 +1,179 @@ +/* main-seed-test.c */ +/* + This file is part of the ARM-Crypto-Lib. + Copyright (C) 2006-2010 Daniel Otte (daniel.otte@rub.de) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +/** + * \file main-seed-test.c + * \author Daniel Otte + * \email daniel.otte@rub.de + * \date 2007-06-01 + * \brief test suit for SEED + * \par License + * GPLv3 or later + * + */ +#include +#include +#include +#include "config.h" +#include "cli.h" +#include "dump.h" +#include "uart_lowlevel.h" +#include "sysclock.h" +#include "hw_gptm.h" + +#include "seed.h" +#include "nessie_bc_test.h" +#include "performance_test.h" +#include "bcal-performance.h" +#include "bcal_seed.h" + + +char* algo_name = "Seed"; + +void uart0_putc(char byte){ + uart_putc(UART_0, byte); +} + +char uart0_getc(void){ + return uart_getc(UART_0); +} + +const bcdesc_t* algolist[] = { + (bcdesc_t*)&seed_desc, + NULL +}; +/***************************************************************************** + * additional validation-functions * + *****************************************************************************/ +void seed_genctx_dummy(uint8_t* key, uint16_t keysize, void* ctx){ + seed_init(key, ctx); +} + +void testrun_nessie_seed(void){ + nessie_bc_ctx.blocksize_B = 16; + nessie_bc_ctx.keysize_b = 128; + nessie_bc_ctx.name = algo_name; + nessie_bc_ctx.ctx_size_B = sizeof(seed_ctx_t); + nessie_bc_ctx.cipher_enc = (nessie_bc_enc_fpt)seed_enc; + nessie_bc_ctx.cipher_dec = (nessie_bc_dec_fpt)seed_dec; + nessie_bc_ctx.cipher_genctx = (nessie_bc_gen_fpt)seed_genctx_dummy; + + nessie_bc_run(); + +} + + +void testrun_performance_seed(void){ + bcal_performance_multiple(algolist); +} + +/***************************************************************************** + * self tests * + *****************************************************************************/ + +void testencrypt(uint8_t* block, uint8_t* key){ + seed_ctx_t ctx; + cli_putstr("\r\n==testy-encrypt==\r\n key: "); + cli_hexdump(key,16); + seed_init(key, &ctx); + cli_putstr("\r\n plain: "); + cli_hexdump(block,16); + seed_enc(block, &ctx); + cli_putstr("\r\n crypt: "); + cli_hexdump(block,16); +} + +void testdecrypt(uint8_t* block, uint8_t* key){ + seed_ctx_t ctx; + cli_putstr("\r\n==testy-decrypt==\r\n key: "); + cli_hexdump(key,16); + seed_init(key, &ctx); + cli_putstr("\r\n crypt: "); + cli_hexdump(block,16); + seed_dec(block, &ctx); + cli_putstr("\r\n plain: "); + cli_hexdump(block,16); +} + +void testrun_seed(void){ + uint8_t keys[4][16]= + { { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }, + { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, + 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f }, + { 0x47, 0x06, 0x48, 0x08, 0x51, 0xE6, 0x1B, 0xE8, + 0x5D, 0x74, 0xBF, 0xB3, 0xFD, 0x95, 0x61, 0x85 }, + { 0x28, 0xDB, 0xC3, 0xBC, 0x49, 0xFF, 0xD8, 0x7D, + 0xCF, 0xA5, 0x09, 0xB1, 0x1D, 0x42, 0x2B, 0xE7,} + }; + uint8_t datas[4][16]= + { { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, + 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f }, + { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }, + { 0x83, 0xA2, 0xF8, 0xA2, 0x88, 0x64, 0x1F, 0xB9, + 0xA4, 0xE9, 0xA5, 0xCC, 0x2F, 0x13, 0x1C, 0x7D }, + { 0xB4, 0x1E, 0x6B, 0xE2, 0xEB, 0xA8, 0x4A, 0x14, + 0x8E, 0x2E, 0xED, 0x84, 0x59, 0x3C, 0x5E, 0xC7 } + }; + uint8_t i=0; + for(i=0; i<4; ++i){ + testencrypt(datas[i],keys[i]); + testdecrypt(datas[i],keys[i]); + } +} + + + +/***************************************************************************** + * main * + *****************************************************************************/ + +const char nessie_str[] = "nessie"; +const char test_str[] = "test"; +const char performance_str[] = "performance"; +const char echo_str[] = "echo"; + +cmdlist_entry_t cmdlist[] = { + { nessie_str, NULL, testrun_nessie_seed}, + { test_str, NULL, testrun_seed}, + { performance_str, NULL, testrun_performance_seed}, + { echo_str, (void*)1, (void_fpt)echo_ctrl}, + { NULL, NULL, NULL} +}; + +int main (void){ + sysclk_set_freq(SYS_FREQ); + sysclk_mosc_verify_enable(); + uart_init(UART_0, 115200, 8, UART_PARATY_NONE, UART_STOPBITS_ONE); + gptm_set_timer_32periodic(TIMER0); + + cli_rx = uart0_getc; + cli_tx = uart0_putc; + + for(;;){ + cli_putstr("\r\n\r\nARM-Crypto-Lib VS ("); + cli_putstr(algo_name); + cli_putstr("; "); + cli_putstr(__DATE__); + cli_putc(' '); + cli_putstr(__TIME__); + cli_putstr(")\r\nloaded and running\r\n"); + cmd_interface(cmdlist); + } +} diff --git a/testvectors/Seed-128-128.unverified.test-vectors b/testvectors/Seed-128-128.unverified.test-vectors new file mode 100644 index 0000000..0ff8077 --- /dev/null +++ b/testvectors/Seed-128-128.unverified.test-vectors @@ -0,0 +1,7232 @@ +******************************************************************************** +*Project NESSIE - New European Schemes for Signature, Integrity, and Encryption* +******************************************************************************** + +Primitive Name: Seed +==================== +Key size: 128 bits +Block size: 128 bits + +Test vectors -- set 1 +===================== + +Set 1, vector# 0: + key=80000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=4830626EF57F0946654E1CE4C2DDDC6F + decrypted=00000000000000000000000000000000 + Iterated 100 times=E1D9C2F519D725B51B7790BE0E0A547B + Iterated 1000 times=3232E51F97484D29365B20294C8EC3B5 + +Set 1, vector# 1: + key=40000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=F7A3DF0B03FC1F8540909F390F3F78D7 + decrypted=00000000000000000000000000000000 + Iterated 100 times=1106BA5A9C118219B1254AF69425E0B8 + Iterated 1000 times=55BD39474C8E691909674CBB55ED80FA + +Set 1, vector# 2: + key=20000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=68D344DFA78E518049A152059CAABADD + decrypted=00000000000000000000000000000000 + Iterated 100 times=0BA68D4860ACA9067A1BD76245A0BA70 + Iterated 1000 times=5B6B56B257493E2DEEBDF6AFA0FFDAF0 + +Set 1, vector# 3: + key=10000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=EC020F717DD62E1D7ED2E56BEF77EA97 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5185525702052CAC55CD3AC6824625FE + Iterated 1000 times=1C22348F8A7598D73D1B490BBF0D2A95 + +Set 1, vector# 4: + key=08000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=6574EE89500CA7A9E8740D7F54346623 + decrypted=00000000000000000000000000000000 + Iterated 100 times=F99604E6AD0291A813897F4D95B92DB9 + Iterated 1000 times=B602B4E82211FFE980A30DD9528DDD2F + +Set 1, vector# 5: + key=04000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=4AF6C00C7612630B42631CD9393A4401 + decrypted=00000000000000000000000000000000 + Iterated 100 times=DBB38A98770FCE3E95818A3E452930AE + Iterated 1000 times=8FD7EBD6357719003992DCE59CD707C0 + +Set 1, vector# 6: + key=02000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=8D2E8B16CCE13C12D5EF11C7269940FE + decrypted=00000000000000000000000000000000 + Iterated 100 times=64CC9AF21B965BF03317DF58236EAC25 + Iterated 1000 times=9F1AA679071F1E5A30CC5B7508B7E38E + +Set 1, vector# 7: + key=01000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=A7F0B8DD1AE5BBA3F1A810D1CBA57C1F + decrypted=00000000000000000000000000000000 + Iterated 100 times=A9CA5FEC161D2C57152151A0730C9FB5 + Iterated 1000 times=B2ABB9A720290BCCB9C5E93CC18AA758 + +Set 1, vector# 8: + key=00800000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=10F4E3CCA370E17204224AA50DB4BED4 + decrypted=00000000000000000000000000000000 + Iterated 100 times=8DDB4749D915C66FA4644AD3C71311DB + Iterated 1000 times=58065A05EC4EC8D754226AA9482BB349 + +Set 1, vector# 9: + key=00400000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=D2546D539B7D6A758E257B7B5E4C39E4 + decrypted=00000000000000000000000000000000 + Iterated 100 times=86B4CA50826D55C7DDBCB5CBF885B8B3 + Iterated 1000 times=2DE504C856C821F9AF673E3F78232C4D + +Set 1, vector# 10: + key=00200000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=5ACAFF7888D9E13D8DE1E7080D0EA94B + decrypted=00000000000000000000000000000000 + Iterated 100 times=0FD995F10D4DC0D122105DB105B22A57 + Iterated 1000 times=C060B8C0576093D3DEAFB50B325A1498 + +Set 1, vector# 11: + key=00100000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=A7059C4F5F258788B701DF84F34427E0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=4E19CD0A1106E9559F30405771CD8105 + Iterated 1000 times=A5CA496F62713E7BDABF967FD2CB04C5 + +Set 1, vector# 12: + key=00080000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=4AE60F2480ECCDCCE97F53DE2587D249 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5B166C827C5C35DB436477763AC4C886 + Iterated 1000 times=E3AD66202730E1B4C3FA6A6C783FB48D + +Set 1, vector# 13: + key=00040000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=A3F026D1D4A4F1AB8F9005FEFB64B310 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5D4008565B62AE59B50E8E759871230C + Iterated 1000 times=95B35C3857D23AB6470F053F310F305E + +Set 1, vector# 14: + key=00020000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=12E31C26FE55C1ADB5DC66872C09B0C0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=21DD9D241732665EC256E2FF642513D6 + Iterated 1000 times=CFDAE4B530D91DB0277F1BA4B3039766 + +Set 1, vector# 15: + key=00010000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=7A8F34F07E9CCDD83AD3B68E8482D795 + decrypted=00000000000000000000000000000000 + Iterated 100 times=6454D1C554F3571808C5B060094D695D + Iterated 1000 times=1B9142D2CF84E4CC5B9FAF37718B4D4B + +Set 1, vector# 16: + key=00008000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=E2A986363F9D86D8F8AC9539C5D473A1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=4341E7DD10B5537328515A178EFF8021 + Iterated 1000 times=DC89EC1F322B6F3A5A6A03F7A25FB31F + +Set 1, vector# 17: + key=00004000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=BDFEEA102805CFCE06EF2D96C294ECCD + decrypted=00000000000000000000000000000000 + Iterated 100 times=B187BDA5700A9AD5AEA55C24A5907F2D + Iterated 1000 times=33C71A78CD9A4180C6AECDCCCBE5C94E + +Set 1, vector# 18: + key=00002000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=F618834334DDA8A1DFBF9152205F75F1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=62812833E776791E9A2698D340516D4F + Iterated 1000 times=66A0079A1218357EAD3370B0219F96D6 + +Set 1, vector# 19: + key=00001000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=5C79A29D1FA65331810F5262BE2FB7C3 + decrypted=00000000000000000000000000000000 + Iterated 100 times=9465D2CAF5F2E52A141CA24EBED732E7 + Iterated 1000 times=2D942AACB8C9628ABDF440C562BA42D0 + +Set 1, vector# 20: + key=00000800000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=5A4A32BE72FEBC671CDC6DCC4AC53519 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5D1432BE314D0FDF1DB21532859D0BBB + Iterated 1000 times=CE833002FBFE50E1440AB19B070AD7C2 + +Set 1, vector# 21: + key=00000400000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=53DF7A29E04E6B9CA4A0883A22B5E312 + decrypted=00000000000000000000000000000000 + Iterated 100 times=9530C8E3ADFFF745A8A10F830BD4EDD3 + Iterated 1000 times=C16C0C2D0B573C9AFD9FF54A1D146724 + +Set 1, vector# 22: + key=00000200000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=9B206671D36B56A11EF696F2E38D62DB + decrypted=00000000000000000000000000000000 + Iterated 100 times=5CFF992F5722B6E5D726BE678A0FE40A + Iterated 1000 times=5628522B7335AF3C466BEB057BED98D4 + +Set 1, vector# 23: + key=00000100000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=71AE58A358114DE2F1FB7C63A6ACFE07 + decrypted=00000000000000000000000000000000 + Iterated 100 times=B6D3F32469DA156904FAEE8F87360221 + Iterated 1000 times=CFBAC01B38435944D7CE9301B4CAB8E5 + +Set 1, vector# 24: + key=00000080000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=0D734430F9F7F3BC6971656A7027EA8D + decrypted=00000000000000000000000000000000 + Iterated 100 times=52A0D48FFE9C7CE6E9D5C894CE13D534 + Iterated 1000 times=09796FB1404A21712CF9876D91D97C25 + +Set 1, vector# 25: + key=00000040000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=03DF9599BA95C4C227824272788473A5 + decrypted=00000000000000000000000000000000 + Iterated 100 times=14C7C87B655A36D342E424BF404405FB + Iterated 1000 times=F9ADD355EB68247A246350BB6223E81A + +Set 1, vector# 26: + key=00000020000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=FF4EE6C80004A595DAFF4CB62582880D + decrypted=00000000000000000000000000000000 + Iterated 100 times=F914F016788AD0BC0BD9218C63EA847E + Iterated 1000 times=2A23055EFB8C9666099810B05DC9678C + +Set 1, vector# 27: + key=00000010000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=35FAA4CF8C76164D6C54CDABC290206E + decrypted=00000000000000000000000000000000 + Iterated 100 times=2EAD11E94DB4F2BEB724045D57CAD20D + Iterated 1000 times=E3223D2E4E91DD030156DD48D6966592 + +Set 1, vector# 28: + key=00000008000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=AFA6AD65FA8C0AAE549CA1A21B855774 + decrypted=00000000000000000000000000000000 + Iterated 100 times=D3A6EEA840ADA5078E5D94D37BCE3D64 + Iterated 1000 times=411F61F5A43AEEB5D593E11163282B90 + +Set 1, vector# 29: + key=00000004000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=E35168A4D4E13984EC7D7F36359B5EEB + decrypted=00000000000000000000000000000000 + Iterated 100 times=C43ED775ABAE6D25DF6C411CF10CFE08 + Iterated 1000 times=33D173E363EA5E2AC132071A6A9584DE + +Set 1, vector# 30: + key=00000002000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=B91EEC522EC78D45BC0B977542ADC516 + decrypted=00000000000000000000000000000000 + Iterated 100 times=39A2B7B57D68CDE3C14196247FC6D4D4 + Iterated 1000 times=DB0C05366F128B46FA050FDB60B207AA + +Set 1, vector# 31: + key=00000001000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=032FDD84D536123B35FAAA8167450E50 + decrypted=00000000000000000000000000000000 + Iterated 100 times=C2FB45D4467DEA22E9F75720A6DCF60C + Iterated 1000 times=0702112D06488E102F51D52CAF171E50 + +Set 1, vector# 32: + key=00000000800000000000000000000000 + plain=00000000000000000000000000000000 + cipher=9DADFA7372053C8300B66984082CAA3A + decrypted=00000000000000000000000000000000 + Iterated 100 times=E100459FF6266010EC712E9ACFFA8212 + Iterated 1000 times=F428E36DCF345A81FEBD2232F67AD5D1 + +Set 1, vector# 33: + key=00000000400000000000000000000000 + plain=00000000000000000000000000000000 + cipher=85B4D5DCBC056F19A8F49E1CCDC25305 + decrypted=00000000000000000000000000000000 + Iterated 100 times=7E50E24085759D65C5AD0D6437C54DB6 + Iterated 1000 times=B18B1491508BEA797E4CA642DA33C3DF + +Set 1, vector# 34: + key=00000000200000000000000000000000 + plain=00000000000000000000000000000000 + cipher=536EDB2DAFDC7194BC4226C97404A8EF + decrypted=00000000000000000000000000000000 + Iterated 100 times=F878033F12ED6141572AC3A1B2EF6E73 + Iterated 1000 times=B2957CC1845CEF9409DB3559EEAF6495 + +Set 1, vector# 35: + key=00000000100000000000000000000000 + plain=00000000000000000000000000000000 + cipher=B531CE8096FD3A6B39BFD6E7118B2532 + decrypted=00000000000000000000000000000000 + Iterated 100 times=832E398FCADDE68BEA93D0982B04E3A7 + Iterated 1000 times=35637D86E5E45D92B38C0EF6C4927747 + +Set 1, vector# 36: + key=00000000080000000000000000000000 + plain=00000000000000000000000000000000 + cipher=CCC8E9F66CE5A747274516BEA4A39CC5 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5CD176C026CED4297BB61F977C29D3D0 + Iterated 1000 times=A94A402707273D77C5E056AC55465CA3 + +Set 1, vector# 37: + key=00000000040000000000000000000000 + plain=00000000000000000000000000000000 + cipher=5D8CEC9E75D7E1F6C40094D611CA9140 + decrypted=00000000000000000000000000000000 + Iterated 100 times=D927AF6E7544E3FCBCC374FC8886D52E + Iterated 1000 times=87EAF411949947648C0B754273E0D432 + +Set 1, vector# 38: + key=00000000020000000000000000000000 + plain=00000000000000000000000000000000 + cipher=A7083B17F96BD948BCEA0420CCC3B8FA + decrypted=00000000000000000000000000000000 + Iterated 100 times=D7B192CBE1F9C43EC7009A5244182F55 + Iterated 1000 times=566475F0D6161C54CD3B2F8F5CE80903 + +Set 1, vector# 39: + key=00000000010000000000000000000000 + plain=00000000000000000000000000000000 + cipher=E593255F81A21C8236B10FA5FC128BAA + decrypted=00000000000000000000000000000000 + Iterated 100 times=5DC2F1F5F7E5E5B676947E6283AA5278 + Iterated 1000 times=4C24A7E68354A24FAA1538E62F5A9B95 + +Set 1, vector# 40: + key=00000000008000000000000000000000 + plain=00000000000000000000000000000000 + cipher=9B705E1724C032D4866CF877FDEA054C + decrypted=00000000000000000000000000000000 + Iterated 100 times=871A8ADA4D6BC04FEB88753C81880750 + Iterated 1000 times=97D035074D02B4047C8C3335C4F6722E + +Set 1, vector# 41: + key=00000000004000000000000000000000 + plain=00000000000000000000000000000000 + cipher=0DB3D403612682F23A7401CF10897045 + decrypted=00000000000000000000000000000000 + Iterated 100 times=D20ADFBBB5104A90FE142083BAF905B7 + Iterated 1000 times=4CD8BA681603A64F0687116979B43437 + +Set 1, vector# 42: + key=00000000002000000000000000000000 + plain=00000000000000000000000000000000 + cipher=BF91A4006E933B9AFC9BFFF24ADE0D3F + decrypted=00000000000000000000000000000000 + Iterated 100 times=AB9A42396098D3BDA4E2F453C994C9CA + Iterated 1000 times=E1556D848080D0C658E695EC58FC1593 + +Set 1, vector# 43: + key=00000000001000000000000000000000 + plain=00000000000000000000000000000000 + cipher=B47CC5612CAD6EC2F1E9C126067017E4 + decrypted=00000000000000000000000000000000 + Iterated 100 times=81B3608E67327170E1246DE1CC447C90 + Iterated 1000 times=86DB5397F94D9FD9CB3271096544B145 + +Set 1, vector# 44: + key=00000000000800000000000000000000 + plain=00000000000000000000000000000000 + cipher=80B043AF10B3B74DBA5E7B1A4CC1945E + decrypted=00000000000000000000000000000000 + Iterated 100 times=AA8712E8BA7797F6F36F7F2BA4EA988C + Iterated 1000 times=127FBB954D1526DC42287634D2198E09 + +Set 1, vector# 45: + key=00000000000400000000000000000000 + plain=00000000000000000000000000000000 + cipher=A0B76DFA39A601BF69CBDC4FC72B3325 + decrypted=00000000000000000000000000000000 + Iterated 100 times=C8C2E942BC281F6CDAE292A35F6D7B40 + Iterated 1000 times=6BAF09FE0D923102835156F22602E9CE + +Set 1, vector# 46: + key=00000000000200000000000000000000 + plain=00000000000000000000000000000000 + cipher=EC1B91DDB83278A4AE49C35FB117FA02 + decrypted=00000000000000000000000000000000 + Iterated 100 times=7184F74A29C14221DA3E261465FCC839 + Iterated 1000 times=D94992D296B8765A2CEEE07CB9A0751C + +Set 1, vector# 47: + key=00000000000100000000000000000000 + plain=00000000000000000000000000000000 + cipher=9B7BA1D3210B70850CC00A67D4EA876E + decrypted=00000000000000000000000000000000 + Iterated 100 times=007D456384BC885A67289F0F13FED48E + Iterated 1000 times=0F7DDA34B9C60CE5C1B525591091389B + +Set 1, vector# 48: + key=00000000000080000000000000000000 + plain=00000000000000000000000000000000 + cipher=76A5F25F368A61A7769A44F6FD2D1536 + decrypted=00000000000000000000000000000000 + Iterated 100 times=2B300A4D448703D665EABC5DB67C59D1 + Iterated 1000 times=8A3E305580CBDE43587AD1F11EB06D99 + +Set 1, vector# 49: + key=00000000000040000000000000000000 + plain=00000000000000000000000000000000 + cipher=FBBA4C0FA57ED58C8155323F9B0459E0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=7C13B52C3C78AB0CF00E63BAA097A6D4 + Iterated 1000 times=C9E6EF2E45154F6408051EC2D9D90564 + +Set 1, vector# 50: + key=00000000000020000000000000000000 + plain=00000000000000000000000000000000 + cipher=C74CDBF51E87EE9CD6625E2D654A1133 + decrypted=00000000000000000000000000000000 + Iterated 100 times=9B839B76B7FCBD6238D52BBBF8D805D1 + Iterated 1000 times=856720B348E4598108D6795A7BAD0CF0 + +Set 1, vector# 51: + key=00000000000010000000000000000000 + plain=00000000000000000000000000000000 + cipher=532EFBD56557A967AD06853ABEAF3669 + decrypted=00000000000000000000000000000000 + Iterated 100 times=012545E5653D079C9C43D97DBCE5AC3B + Iterated 1000 times=CB55A7FA6A2B48D13E6A81E78EB6B575 + +Set 1, vector# 52: + key=00000000000008000000000000000000 + plain=00000000000000000000000000000000 + cipher=14CE5021FF48736DD00D3854023A8631 + decrypted=00000000000000000000000000000000 + Iterated 100 times=87923E1FA2156C57C0A2F4FDF2D89D1D + Iterated 1000 times=084220DC6E2F6D05E12A52C30B39F704 + +Set 1, vector# 53: + key=00000000000004000000000000000000 + plain=00000000000000000000000000000000 + cipher=22B850362563D6F7B1CA143726C539B7 + decrypted=00000000000000000000000000000000 + Iterated 100 times=C9054670D3185A1BDDDC43CD281C8088 + Iterated 1000 times=4170BE268D914D271609DCB50F4D1237 + +Set 1, vector# 54: + key=00000000000002000000000000000000 + plain=00000000000000000000000000000000 + cipher=D9C947F6A394CB9B5FFB882BF1ED5064 + decrypted=00000000000000000000000000000000 + Iterated 100 times=E0688B3D560D8FD5EEEB7F9C31C61B65 + Iterated 1000 times=9EF33418BCD2AB958FAADD70DCB1C487 + +Set 1, vector# 55: + key=00000000000001000000000000000000 + plain=00000000000000000000000000000000 + cipher=38E5580733F69029535F5A9CD54D44C9 + decrypted=00000000000000000000000000000000 + Iterated 100 times=43DD3CDF585B2555A3C404360E410CD4 + Iterated 1000 times=53B2A702DD0A37EFD3C13A7031538EC8 + +Set 1, vector# 56: + key=00000000000000800000000000000000 + plain=00000000000000000000000000000000 + cipher=9DC6B68797EBCA357E92C2B9D0FF3715 + decrypted=00000000000000000000000000000000 + Iterated 100 times=ED29FFF95F26F8E8720739F6CF1789DC + Iterated 1000 times=C8D263B01DF65F0FFDC30A4D15338E46 + +Set 1, vector# 57: + key=00000000000000400000000000000000 + plain=00000000000000000000000000000000 + cipher=553D3ADDF0497E557A7CF25FCAB1C32C + decrypted=00000000000000000000000000000000 + Iterated 100 times=8013C15AE1867B3E14ED114924BAEBE5 + Iterated 1000 times=B25BE8976C96D59BA3C207D90B24E83F + +Set 1, vector# 58: + key=00000000000000200000000000000000 + plain=00000000000000000000000000000000 + cipher=A5B2FC3E9D3F8BE8E00FCFEC9935E4E5 + decrypted=00000000000000000000000000000000 + Iterated 100 times=42D9E4CC4806DCC860CA4EBC6A324771 + Iterated 1000 times=4F927FAE79F30A2466A07791A2F6E5A8 + +Set 1, vector# 59: + key=00000000000000100000000000000000 + plain=00000000000000000000000000000000 + cipher=1382D0751D27E613A5DEF9E8AF42F837 + decrypted=00000000000000000000000000000000 + Iterated 100 times=6231CAD31745AEA000E0661059252C22 + Iterated 1000 times=527809CED2F47FF717B7B19C625C9CC6 + +Set 1, vector# 60: + key=00000000000000080000000000000000 + plain=00000000000000000000000000000000 + cipher=9AA4ECF9FC361FA505ED6050CB0BD965 + decrypted=00000000000000000000000000000000 + Iterated 100 times=BA87C59E81200F65EE426B14669E9EA9 + Iterated 1000 times=D505B111C853CC3D278A0E2B2E3BFB8B + +Set 1, vector# 61: + key=00000000000000040000000000000000 + plain=00000000000000000000000000000000 + cipher=1E545157560BF64C6CE03F08CF6146D2 + decrypted=00000000000000000000000000000000 + Iterated 100 times=1959C032C8AF28FE0003DEC3BFE5A73F + Iterated 1000 times=7BD690CAA22BB28FF8EA2768042C0572 + +Set 1, vector# 62: + key=00000000000000020000000000000000 + plain=00000000000000000000000000000000 + cipher=CFC732F4503E41FE46DB343F6837981F + decrypted=00000000000000000000000000000000 + Iterated 100 times=E53F817429F16EFB610B56068E1DD3BD + Iterated 1000 times=1519D0321DB15A6B88A73442141D6F17 + +Set 1, vector# 63: + key=00000000000000010000000000000000 + plain=00000000000000000000000000000000 + cipher=BE0448A96A5342CA08BF943F02C73BB1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=108C7EA808547D6660B50446732A71EF + Iterated 1000 times=7768883730A8D8D8F4686F45920159EB + +Set 1, vector# 64: + key=00000000000000008000000000000000 + plain=00000000000000000000000000000000 + cipher=852B13FC9557046E06ED95898EBB3232 + decrypted=00000000000000000000000000000000 + Iterated 100 times=6B26BDC624820E4CD50ECF261238EF2C + Iterated 1000 times=0CDC02D558A05E64ECE1882A74D92C3D + +Set 1, vector# 65: + key=00000000000000004000000000000000 + plain=00000000000000000000000000000000 + cipher=B029810434EEEA26E87FEF1A180FBE76 + decrypted=00000000000000000000000000000000 + Iterated 100 times=695C1B359C012624194CA93DC6DAD4DF + Iterated 1000 times=986B3AE6B00A1C287D6D212CA268F685 + +Set 1, vector# 66: + key=00000000000000002000000000000000 + plain=00000000000000000000000000000000 + cipher=3EAC33F127AC4A927CDE78EA9055ED20 + decrypted=00000000000000000000000000000000 + Iterated 100 times=C84D5BADF745B8222505F8DE63E3322D + Iterated 1000 times=59961F2D54C01DB1608BAC3ED40F5DB7 + +Set 1, vector# 67: + key=00000000000000001000000000000000 + plain=00000000000000000000000000000000 + cipher=CD8374C385C77340836A42909E08810C + decrypted=00000000000000000000000000000000 + Iterated 100 times=641721AC3B822964DF78D8D0D8EF46C2 + Iterated 1000 times=0CD96AD4B3E52889632587F3B6BAE975 + +Set 1, vector# 68: + key=00000000000000000800000000000000 + plain=00000000000000000000000000000000 + cipher=744D23400B30A0E16D39793FD324F79A + decrypted=00000000000000000000000000000000 + Iterated 100 times=C66DE4E4E98C6F2D957B99B60CDABFFB + Iterated 1000 times=B5022D22717D0656F3E4989672735918 + +Set 1, vector# 69: + key=00000000000000000400000000000000 + plain=00000000000000000000000000000000 + cipher=91213EAC66B907607B1A8EAE8ECEB0A1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=CDB1EB6C0B1AA96A953CC551004DB912 + Iterated 1000 times=A3967BDD693BEA8041797AFF64A32F4C + +Set 1, vector# 70: + key=00000000000000000200000000000000 + plain=00000000000000000000000000000000 + cipher=E2F3CEE8149E427F86F9231CC1BF39AF + decrypted=00000000000000000000000000000000 + Iterated 100 times=D18EE9F9D1118A19D1128037E2C5278A + Iterated 1000 times=0F24E53BE54003A0C620A8A35687C899 + +Set 1, vector# 71: + key=00000000000000000100000000000000 + plain=00000000000000000000000000000000 + cipher=CBA515BF3E659E8FC3F1D566FA3F2E0B + decrypted=00000000000000000000000000000000 + Iterated 100 times=50CCDD36BCA0DA7B483DB0E02CDB3ED8 + Iterated 1000 times=68A4C8EE52CE0CF4E25B7AF4536FA14F + +Set 1, vector# 72: + key=00000000000000000080000000000000 + plain=00000000000000000000000000000000 + cipher=67920945F155587A288D358AC2580C1A + decrypted=00000000000000000000000000000000 + Iterated 100 times=D7D32B5DABB873FDADDEC1BFD8884A07 + Iterated 1000 times=02BFB9683E65D38513EECBF033C6A765 + +Set 1, vector# 73: + key=00000000000000000040000000000000 + plain=00000000000000000000000000000000 + cipher=5C9098BF815EC33698EB40048607E90F + decrypted=00000000000000000000000000000000 + Iterated 100 times=C243EB06EFEB9C26A89FFA31467CB49E + Iterated 1000 times=0D4A7C3C9B7CFD83CCFBB3EE6BCF6684 + +Set 1, vector# 74: + key=00000000000000000020000000000000 + plain=00000000000000000000000000000000 + cipher=5934F0B20F13344A0BC890891C1AD918 + decrypted=00000000000000000000000000000000 + Iterated 100 times=AF3303C02D32D512ACAEE3048CD16BFC + Iterated 1000 times=978A829914420D7F6797111AE9AE4512 + +Set 1, vector# 75: + key=00000000000000000010000000000000 + plain=00000000000000000000000000000000 + cipher=3032C32FD9834CDBB0A86917CDCC2AF0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=875423C4D6CDB25FDDF8990933901E2A + Iterated 1000 times=E318732D4F1B47FDAEF721B044274848 + +Set 1, vector# 76: + key=00000000000000000008000000000000 + plain=00000000000000000000000000000000 + cipher=04D4184008BD59ECA578E61C6A9F1DC6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=FA505062CF45D830627A54F70DF1CC2C + Iterated 1000 times=D924C1AF94A40F328268F942D5411395 + +Set 1, vector# 77: + key=00000000000000000004000000000000 + plain=00000000000000000000000000000000 + cipher=06959906B6552D4901D4C013BA41DDC5 + decrypted=00000000000000000000000000000000 + Iterated 100 times=02B7DD8BA378E3B5CF7C6B63616C1816 + Iterated 1000 times=5EB72FD1F81574CDEF47A70C62D808FD + +Set 1, vector# 78: + key=00000000000000000002000000000000 + plain=00000000000000000000000000000000 + cipher=604C8855011282B72C6908249A289A35 + decrypted=00000000000000000000000000000000 + Iterated 100 times=712CBA57BFF3B17E6E2456B8C6ACE8B2 + Iterated 1000 times=56FE70B4E18FFC2A5A925F7867BCEAE0 + +Set 1, vector# 79: + key=00000000000000000001000000000000 + plain=00000000000000000000000000000000 + cipher=D070CC4C7A77CEE4DC302EF3C077E0E1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=2B8B7198EBC4A094DDEDC5A0B07ABD31 + Iterated 1000 times=C5EC930C239181FC9CD83D5DB288F3A0 + +Set 1, vector# 80: + key=00000000000000000000800000000000 + plain=00000000000000000000000000000000 + cipher=5B8120253C65AD286C0F28AC592BB208 + decrypted=00000000000000000000000000000000 + Iterated 100 times=6979397E43E22D118624DC4D83F548A4 + Iterated 1000 times=DB26ABFB222B54A8C39FF60054136BCA + +Set 1, vector# 81: + key=00000000000000000000400000000000 + plain=00000000000000000000000000000000 + cipher=5D74BE97E349EAE85C9B18FFC2675E95 + decrypted=00000000000000000000000000000000 + Iterated 100 times=C23600D90111F37227CF75CA732B1EC8 + Iterated 1000 times=166F1D78943000AF8774DC7F948E3F91 + +Set 1, vector# 82: + key=00000000000000000000200000000000 + plain=00000000000000000000000000000000 + cipher=A6362B4AD922F3338D593477A7A4CFF6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=148EFE5479ABB3481EDF492784CF3071 + Iterated 1000 times=FF7A114A9EFFD23CFA63AE059241540D + +Set 1, vector# 83: + key=00000000000000000000100000000000 + plain=00000000000000000000000000000000 + cipher=5A9861A13A10501C39FCD58E651110D2 + decrypted=00000000000000000000000000000000 + Iterated 100 times=F03A8CCACCD4E8193EA141A607558051 + Iterated 1000 times=C8179C2BADF8559ECB1F4B1A7DF9F8C7 + +Set 1, vector# 84: + key=00000000000000000000080000000000 + plain=00000000000000000000000000000000 + cipher=5D13F4596FD9EE140032D7AB451A2BAC + decrypted=00000000000000000000000000000000 + Iterated 100 times=908D30871C77CA014339B7842E29EA18 + Iterated 1000 times=FA902DD2939396A09E7ABF7600E5F623 + +Set 1, vector# 85: + key=00000000000000000000040000000000 + plain=00000000000000000000000000000000 + cipher=7771F233BDEBABBF74D4A52EF37E389F + decrypted=00000000000000000000000000000000 + Iterated 100 times=FC8F600E804117CEEFBB6321ADB3AD37 + Iterated 1000 times=BF20140C3EDF06A6A115B303F1E0D95E + +Set 1, vector# 86: + key=00000000000000000000020000000000 + plain=00000000000000000000000000000000 + cipher=586E9CDD8EEBB21A8022F0E53B380C0C + decrypted=00000000000000000000000000000000 + Iterated 100 times=DD7A262F90CD05FA27A13D13987391BD + Iterated 1000 times=5EE8C7593E770FB2097FA4D5A7C38659 + +Set 1, vector# 87: + key=00000000000000000000010000000000 + plain=00000000000000000000000000000000 + cipher=3B21102841820989941FA4DD0C580B06 + decrypted=00000000000000000000000000000000 + Iterated 100 times=7596813C9D4B62CB9160CD15E81535D2 + Iterated 1000 times=A90973382841F887E92249B5E35BBB58 + +Set 1, vector# 88: + key=00000000000000000000008000000000 + plain=00000000000000000000000000000000 + cipher=7AFD52B0A774F29A86449C85DF02640A + decrypted=00000000000000000000000000000000 + Iterated 100 times=90CA2EAABFD38DC2B24EB6A7C36E1061 + Iterated 1000 times=C6C261FDFB77E22AE4540C9615FF6F20 + +Set 1, vector# 89: + key=00000000000000000000004000000000 + plain=00000000000000000000000000000000 + cipher=287DC955F34EE1722A8A48ECDE0FA3D9 + decrypted=00000000000000000000000000000000 + Iterated 100 times=1ADDEDB99F5ABDB49709BF2C97CD021B + Iterated 1000 times=152B803D14DD9309F22EC43F82AA9C8E + +Set 1, vector# 90: + key=00000000000000000000002000000000 + plain=00000000000000000000000000000000 + cipher=F062BCD4E10155EC082A4B06C63E80DC + decrypted=00000000000000000000000000000000 + Iterated 100 times=86EA89287A7EB71B79D30DD1768E6452 + Iterated 1000 times=BDA07BE13CFC538A6C3FE75CA49E6CD3 + +Set 1, vector# 91: + key=00000000000000000000001000000000 + plain=00000000000000000000000000000000 + cipher=6AC72DD8C1629051B8AED589E1D81B5B + decrypted=00000000000000000000000000000000 + Iterated 100 times=6170838C79D62D53CC67F4635873D442 + Iterated 1000 times=5A94BA05BD1689BEA9CD0F7D3A35433F + +Set 1, vector# 92: + key=00000000000000000000000800000000 + plain=00000000000000000000000000000000 + cipher=B90C1332CEAF56068F4E5E5E3EA5F103 + decrypted=00000000000000000000000000000000 + Iterated 100 times=F5C5E1BD4F4E1A1D7214AA216786A240 + Iterated 1000 times=B2F0EB027BE0DB9DB8DC565C0EDCD8FB + +Set 1, vector# 93: + key=00000000000000000000000400000000 + plain=00000000000000000000000000000000 + cipher=E0203956A790E41AA945E43FAF3BCC87 + decrypted=00000000000000000000000000000000 + Iterated 100 times=7988333F00318DD139C7589FB251CD73 + Iterated 1000 times=6656F8DF7AF4DEFE98548F03C3579165 + +Set 1, vector# 94: + key=00000000000000000000000200000000 + plain=00000000000000000000000000000000 + cipher=2FBDA35CA2955A883C6BE11BDEEC601D + decrypted=00000000000000000000000000000000 + Iterated 100 times=1C4200AE9150CA3C7AF083F6EAFAF0F5 + Iterated 1000 times=6A7333FC78EEF7A1331E4F40E9A2E5AD + +Set 1, vector# 95: + key=00000000000000000000000100000000 + plain=00000000000000000000000000000000 + cipher=C2B5A0B9B8219A8112659B6073207E4F + decrypted=00000000000000000000000000000000 + Iterated 100 times=7ED10BCBD38D687BA1D8086FEAD54D5B + Iterated 1000 times=1772A5D67B0239B01510BE9ECEDEF577 + +Set 1, vector# 96: + key=00000000000000000000000080000000 + plain=00000000000000000000000000000000 + cipher=6F67B7F692E3515E0B4EC40E320A0206 + decrypted=00000000000000000000000000000000 + Iterated 100 times=82FC569B2859AA60234595860B4CE5A7 + Iterated 1000 times=9E0B64E6306113D246B494E50E1DBDAA + +Set 1, vector# 97: + key=00000000000000000000000040000000 + plain=00000000000000000000000000000000 + cipher=3CBFECF4205AA987BD524926E2555B14 + decrypted=00000000000000000000000000000000 + Iterated 100 times=79EBF8910DD24AEF6B3FECBA7AA0AD01 + Iterated 1000 times=6769C15BDD7B9F0C0AD8B3D77985A4E0 + +Set 1, vector# 98: + key=00000000000000000000000020000000 + plain=00000000000000000000000000000000 + cipher=C10FF0E4EBFDBEE262E0D325F2967750 + decrypted=00000000000000000000000000000000 + Iterated 100 times=380DB0505BB990A768B514447BCA1A5E + Iterated 1000 times=AF438981D56028553D3E76C4BBA9DE68 + +Set 1, vector# 99: + key=00000000000000000000000010000000 + plain=00000000000000000000000000000000 + cipher=9F191ECDB7D079FC5484F000E4A14487 + decrypted=00000000000000000000000000000000 + Iterated 100 times=D07FF8F4F36D024D4A40ECAD410D9950 + Iterated 1000 times=E1AF75891C998D6E6DF043122BB72359 + +Set 1, vector#100: + key=00000000000000000000000008000000 + plain=00000000000000000000000000000000 + cipher=7E240F1567A63B492E547604828AE290 + decrypted=00000000000000000000000000000000 + Iterated 100 times=E9ECF5B16F9CE80A3655C8DF03C1154F + Iterated 1000 times=15A3F35F686D383750602A452572C6D9 + +Set 1, vector#101: + key=00000000000000000000000004000000 + plain=00000000000000000000000000000000 + cipher=4871B12EE22F70040F0B6DBC0DFBF2CB + decrypted=00000000000000000000000000000000 + Iterated 100 times=C91E570E521C746B46DBC76C413E74F1 + Iterated 1000 times=39320FE1D3A97C1B7A1E2BCE84AB061D + +Set 1, vector#102: + key=00000000000000000000000002000000 + plain=00000000000000000000000000000000 + cipher=2F2BDC431EF7512716D536D21B46483D + decrypted=00000000000000000000000000000000 + Iterated 100 times=955A8B31919ADBE692D7A9102F94A413 + Iterated 1000 times=CF1CCCE6C42CDD0FD7961AC9CDFD3832 + +Set 1, vector#103: + key=00000000000000000000000001000000 + plain=00000000000000000000000000000000 + cipher=71B530C7C46ADD4A9FA82E3D5FA1E7CF + decrypted=00000000000000000000000000000000 + Iterated 100 times=7F88DB28ED2052E231CC227187ED57A3 + Iterated 1000 times=8B207084424FC6EDE8341EE1E48429C1 + +Set 1, vector#104: + key=00000000000000000000000000800000 + plain=00000000000000000000000000000000 + cipher=A51F5CCD82E506F7660FA2452726210E + decrypted=00000000000000000000000000000000 + Iterated 100 times=DDA6BF7084DA36C44441270D0C893FC4 + Iterated 1000 times=54C734D611820FA76685A2E8CCABAAC6 + +Set 1, vector#105: + key=00000000000000000000000000400000 + plain=00000000000000000000000000000000 + cipher=2C36E2A94FF84BF42F5DBEC150FED716 + decrypted=00000000000000000000000000000000 + Iterated 100 times=72D09725AC420E4AD90CB877B15C3938 + Iterated 1000 times=838FF8D3F8C09C68EAC1FE7089D4E41B + +Set 1, vector#106: + key=00000000000000000000000000200000 + plain=00000000000000000000000000000000 + cipher=3E2221C96ACB20E6E0CE8EC262F8F41F + decrypted=00000000000000000000000000000000 + Iterated 100 times=D05F326F0EC5EE87988D1BE8677EB286 + Iterated 1000 times=A6D793D39C7C3700BEE5D0247A8B446B + +Set 1, vector#107: + key=00000000000000000000000000100000 + plain=00000000000000000000000000000000 + cipher=480A23AB29C385B6427033684967F600 + decrypted=00000000000000000000000000000000 + Iterated 100 times=F314E0BFA268D9C9C513A4350FEE7395 + Iterated 1000 times=F445CD5A52784B14572B8E124E769317 + +Set 1, vector#108: + key=00000000000000000000000000080000 + plain=00000000000000000000000000000000 + cipher=7EA13EAC930E9FD1DE81BB5E0E2812B3 + decrypted=00000000000000000000000000000000 + Iterated 100 times=2EE4A7D2B13824002906E1EB462A65EA + Iterated 1000 times=397553035DA0B83377155D8BD6B6EBA9 + +Set 1, vector#109: + key=00000000000000000000000000040000 + plain=00000000000000000000000000000000 + cipher=3A665BDABEAEF85D35F769DAA3C1FC57 + decrypted=00000000000000000000000000000000 + Iterated 100 times=22C0A36BDDF3EE8D64D53FB40B984109 + Iterated 1000 times=EABD74B8E01A9B7CC2D25A516A967BF3 + +Set 1, vector#110: + key=00000000000000000000000000020000 + plain=00000000000000000000000000000000 + cipher=1A13576A88F32F527F63B24CF23E335E + decrypted=00000000000000000000000000000000 + Iterated 100 times=6A99942A0991C7C57E0E8EF63248C87F + Iterated 1000 times=DACF9948801B49AAD3ACF3E5998A926D + +Set 1, vector#111: + key=00000000000000000000000000010000 + plain=00000000000000000000000000000000 + cipher=8D6A64713510498051370DFB4D118169 + decrypted=00000000000000000000000000000000 + Iterated 100 times=13869D561955651254411374AF3AB1F0 + Iterated 1000 times=78F84D4E356672E80332F3AC662C1527 + +Set 1, vector#112: + key=00000000000000000000000000008000 + plain=00000000000000000000000000000000 + cipher=0F1C8E9D88296F5E5AD5D30AB33AA91D + decrypted=00000000000000000000000000000000 + Iterated 100 times=D43D6796878B86FC45A89EB8AE417BC1 + Iterated 1000 times=5BD210EE47057785A286E99D190D6A4F + +Set 1, vector#113: + key=00000000000000000000000000004000 + plain=00000000000000000000000000000000 + cipher=F3BA4AE84E7EBDF6A33B20BE859128F5 + decrypted=00000000000000000000000000000000 + Iterated 100 times=6CE503903E576C54E7096229821FD51A + Iterated 1000 times=9CE9C19A98C4C1159B7887A90A790B31 + +Set 1, vector#114: + key=00000000000000000000000000002000 + plain=00000000000000000000000000000000 + cipher=C94CFAA889DE467FA54D7D40BA0AD65B + decrypted=00000000000000000000000000000000 + Iterated 100 times=896A57C0781409EBF3CBD059E435908D + Iterated 1000 times=E2D9624CCE27BA431FFBF56E9F97D832 + +Set 1, vector#115: + key=00000000000000000000000000001000 + plain=00000000000000000000000000000000 + cipher=1DDA69F4BD9BFDE87B3DD31A82201A81 + decrypted=00000000000000000000000000000000 + Iterated 100 times=7F1001A86EE72A0EE2396E3CFD26DD93 + Iterated 1000 times=325991343DC09667448AD7E90BF28AAC + +Set 1, vector#116: + key=00000000000000000000000000000800 + plain=00000000000000000000000000000000 + cipher=A7FFB57EBFD8273C9E75A16919FE4396 + decrypted=00000000000000000000000000000000 + Iterated 100 times=DD7E4CBECCF091527A0BBC424519EA4A + Iterated 1000 times=E0CB4C9E24162ECD5CC37438AD2A7655 + +Set 1, vector#117: + key=00000000000000000000000000000400 + plain=00000000000000000000000000000000 + cipher=15A771C11FA406A59226A5950AC3ABD1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=CDBA837FCD8F0DAEA9D8BE39FBC60426 + Iterated 1000 times=59DE6FD57686712ADA9616F496252AC6 + +Set 1, vector#118: + key=00000000000000000000000000000200 + plain=00000000000000000000000000000000 + cipher=9F857F61353F5775749D9481E1A21DF3 + decrypted=00000000000000000000000000000000 + Iterated 100 times=4FF1BD3B4230990AC17CE3CAD1B91FDC + Iterated 1000 times=445A78FB53511B88A2B67C287A9D7916 + +Set 1, vector#119: + key=00000000000000000000000000000100 + plain=00000000000000000000000000000000 + cipher=424CC5FDFC31965C7ABC5223231A4BD7 + decrypted=00000000000000000000000000000000 + Iterated 100 times=7B49F997C2A90D133EB2D69D1E1D6C58 + Iterated 1000 times=28DA43BCFE9CDF00AD3C84641C34D450 + +Set 1, vector#120: + key=00000000000000000000000000000080 + plain=00000000000000000000000000000000 + cipher=946908F0BA87F9244FDD7585BA63D0C0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5EF187280DE7068BD8802744B06ECB85 + Iterated 1000 times=484888D8DAF95DE7852C2E449A970C34 + +Set 1, vector#121: + key=00000000000000000000000000000040 + plain=00000000000000000000000000000000 + cipher=3EF87BB9A6AF4F677CDE91D80C3BFB07 + decrypted=00000000000000000000000000000000 + Iterated 100 times=698CAA9531A208F25C083DA6D9EC0571 + Iterated 1000 times=80F2211FB204414387217AAF1C47BAFC + +Set 1, vector#122: + key=00000000000000000000000000000020 + plain=00000000000000000000000000000000 + cipher=ED8A09CD85C3F9F7FBFD64F4DF8FE6DA + decrypted=00000000000000000000000000000000 + Iterated 100 times=C24A3B6B6A0A2169EE84C3FDC6F907BC + Iterated 1000 times=7B6C1830B5080183B242E561F08700A2 + +Set 1, vector#123: + key=00000000000000000000000000000010 + plain=00000000000000000000000000000000 + cipher=18E834D3C550638711051C27711C09CD + decrypted=00000000000000000000000000000000 + Iterated 100 times=7E34B13F06DF0AC8AE1F3D1BE2955723 + Iterated 1000 times=7D24BF7685C5494E893AC76A0853411E + +Set 1, vector#124: + key=00000000000000000000000000000008 + plain=00000000000000000000000000000000 + cipher=1E1EDF9B214399FA826295A7B08BF8AD + decrypted=00000000000000000000000000000000 + Iterated 100 times=95047AF86E21A43B6DC1CF57BC0FE5CC + Iterated 1000 times=1FF9F255FB37A95303A3A34694CEC0A4 + +Set 1, vector#125: + key=00000000000000000000000000000004 + plain=00000000000000000000000000000000 + cipher=740723673B4B12B3848AA62B97AD9C99 + decrypted=00000000000000000000000000000000 + Iterated 100 times=CC7289CCAB6133536AC416FBE44AB704 + Iterated 1000 times=6B98B38C51E4D708561CB3CDC163FA6B + +Set 1, vector#126: + key=00000000000000000000000000000002 + plain=00000000000000000000000000000000 + cipher=7A0F5DD0718866966F5D5735DEBED2A4 + decrypted=00000000000000000000000000000000 + Iterated 100 times=FF9FB84445EE1C74CCCD0DC3FE34C98D + Iterated 1000 times=BEE970F35D17DD8FCFC4CF38A7CAAE0B + +Set 1, vector#127: + key=00000000000000000000000000000001 + plain=00000000000000000000000000000000 + cipher=8DC225F130BC838E7E51AF539DA52235 + decrypted=00000000000000000000000000000000 + Iterated 100 times=9098805A0B35C24BD3A681D24C66CB82 + Iterated 1000 times=8D12907C544B019921E774696AE06527 + +Test vectors -- set 2 +===================== + +Set 2, vector# 0: + key=00000000000000000000000000000000 + plain=80000000000000000000000000000000 + cipher=DA8F536C8A501B6EE343E42FCCAAD57C + decrypted=80000000000000000000000000000000 + Iterated 100 times=AF5760EFEDEAF2541B343702BFE22078 + Iterated 1000 times=E26C896F1786D66E1057BFDCD18582C6 + +Set 2, vector# 1: + key=00000000000000000000000000000000 + plain=40000000000000000000000000000000 + cipher=C750D33D1DDFD0F026133E9FF1CA1A6E + decrypted=40000000000000000000000000000000 + Iterated 100 times=CE10D5CD89B272ADF935E54DBC8F5EBE + Iterated 1000 times=D538C98D65D7E8C72D7A858DBFE58E27 + +Set 2, vector# 2: + key=00000000000000000000000000000000 + plain=20000000000000000000000000000000 + cipher=6EF5CF17A7F5517D6A96B3183279EF12 + decrypted=20000000000000000000000000000000 + Iterated 100 times=C6CB6AECF02583CB8DF439D2BF1A5CA5 + Iterated 1000 times=72A6078F40C659F23C0042B998B4EB04 + +Set 2, vector# 3: + key=00000000000000000000000000000000 + plain=10000000000000000000000000000000 + cipher=100C3F11C4E3AB278D97D3750802615A + decrypted=10000000000000000000000000000000 + Iterated 100 times=7ADCB59254CEB893F75B68BECA43B88E + Iterated 1000 times=DE917DA3D71838F5BE798C5F08B5D59B + +Set 2, vector# 4: + key=00000000000000000000000000000000 + plain=08000000000000000000000000000000 + cipher=34CC872CF2574ED57DA932F1A5C12A9C + decrypted=08000000000000000000000000000000 + Iterated 100 times=B3F694406D0C0D40993CA6F5CBE59C7C + Iterated 1000 times=959F0C385CE19853A51E4B9AE2D53655 + +Set 2, vector# 5: + key=00000000000000000000000000000000 + plain=04000000000000000000000000000000 + cipher=81AE57044ED88157E67D20A0482A82B9 + decrypted=04000000000000000000000000000000 + Iterated 100 times=EB198E523B6F8EAE6D9E885E22854E19 + Iterated 1000 times=450B5B22087858EC728888514203D3F3 + +Set 2, vector# 6: + key=00000000000000000000000000000000 + plain=02000000000000000000000000000000 + cipher=D792388B07A1DE0C4E526FE43E9586FF + decrypted=02000000000000000000000000000000 + Iterated 100 times=9CC0FEF3BA19F0B16893931828E5C0DD + Iterated 1000 times=B277F9C50203B91F7D590B6C65B7A4E8 + +Set 2, vector# 7: + key=00000000000000000000000000000000 + plain=01000000000000000000000000000000 + cipher=EC7F53E5717A100765CD476F4A677FBA + decrypted=01000000000000000000000000000000 + Iterated 100 times=7E159D191B2F592AFDC9B582ABB04F9F + Iterated 1000 times=C113C07EA5B8B5D29D824C08F6D4E5B5 + +Set 2, vector# 8: + key=00000000000000000000000000000000 + plain=00800000000000000000000000000000 + cipher=60072639C8DDAA1AE908BD5236F07047 + decrypted=00800000000000000000000000000000 + Iterated 100 times=8E0BCE0AB2C6B98727D5B34A63AEB825 + Iterated 1000 times=7EC6B56C0C8D776FD4E3F26134F82C8C + +Set 2, vector# 9: + key=00000000000000000000000000000000 + plain=00400000000000000000000000000000 + cipher=9EEAFAB9A24189C252D59C32B73349E4 + decrypted=00400000000000000000000000000000 + Iterated 100 times=B85E947FFD472044078310DA19717398 + Iterated 1000 times=466AF82CB8171D41C49845846B15D444 + +Set 2, vector# 10: + key=00000000000000000000000000000000 + plain=00200000000000000000000000000000 + cipher=4E85BF52F156557E05EE42E8B4F499EC + decrypted=00200000000000000000000000000000 + Iterated 100 times=DAC603B31638CCB9BDE7F5C4B8982326 + Iterated 1000 times=15E7BE016044F0E7F575A1467D565264 + +Set 2, vector# 11: + key=00000000000000000000000000000000 + plain=00100000000000000000000000000000 + cipher=A0AF97D0F14E31085DD753B42A36D429 + decrypted=00100000000000000000000000000000 + Iterated 100 times=621DB385FE73917B71BBD2C81262715D + Iterated 1000 times=24F78EA36446601E3704225647F94C39 + +Set 2, vector# 12: + key=00000000000000000000000000000000 + plain=00080000000000000000000000000000 + cipher=EEA11187ABD5FDD76E48EE7205A251D7 + decrypted=00080000000000000000000000000000 + Iterated 100 times=1C8D1A4BCAB82126979FD5655DED3B5E + Iterated 1000 times=48587B4CDEB9EB1977979616C423DB0D + +Set 2, vector# 13: + key=00000000000000000000000000000000 + plain=00040000000000000000000000000000 + cipher=F146AA6FA3E93E6647AC323D73408DD8 + decrypted=00040000000000000000000000000000 + Iterated 100 times=DF87FD2A821150C5AEBCF7BBF25B0612 + Iterated 1000 times=91907B34CBA27CC7F3A0D5340A79E257 + +Set 2, vector# 14: + key=00000000000000000000000000000000 + plain=00020000000000000000000000000000 + cipher=631D1C9E55C8647284CFA8B379838DBA + decrypted=00020000000000000000000000000000 + Iterated 100 times=98E17E4D1B0F2A9A4B2BAFD7113AAA81 + Iterated 1000 times=898485D5172A072DD5BE6F1801F621A8 + +Set 2, vector# 15: + key=00000000000000000000000000000000 + plain=00010000000000000000000000000000 + cipher=C4A33504D0460F43C725FA238D749D9A + decrypted=00010000000000000000000000000000 + Iterated 100 times=568BBA96819EB61948E9EEAAC33EC068 + Iterated 1000 times=6E15BD014C366389641F12C9D185CC9D + +Set 2, vector# 16: + key=00000000000000000000000000000000 + plain=00008000000000000000000000000000 + cipher=C3DB25F3444E71FD37C8196BA5CCCF43 + decrypted=00008000000000000000000000000000 + Iterated 100 times=0A3A4FA57DC2520D755D8F23064137DF + Iterated 1000 times=7E92EAAE25DA403058BE68DB51416AF2 + +Set 2, vector# 17: + key=00000000000000000000000000000000 + plain=00004000000000000000000000000000 + cipher=6EE34394B2C9727F95EF08A42FA36C31 + decrypted=00004000000000000000000000000000 + Iterated 100 times=2C171E4A5E4D59338D7E204D24B1A1D1 + Iterated 1000 times=5DC406323951213CAE64CD2A040853EE + +Set 2, vector# 18: + key=00000000000000000000000000000000 + plain=00002000000000000000000000000000 + cipher=1133BD4DC1B6C9847D6EF53F20791ECB + decrypted=00002000000000000000000000000000 + Iterated 100 times=4FEF3AFD2E812868BC0DB97A44D0A26A + Iterated 1000 times=C8CFD38E19D8C4826C133CF771C479DA + +Set 2, vector# 19: + key=00000000000000000000000000000000 + plain=00001000000000000000000000000000 + cipher=A7670D6173E24B183BC83BF6728C06C9 + decrypted=00001000000000000000000000000000 + Iterated 100 times=570B91D5DDBA8ADB736BA12C52EF6E0A + Iterated 1000 times=BA475AD5AC6A7B135076F6F883655EDB + +Set 2, vector# 20: + key=00000000000000000000000000000000 + plain=00000800000000000000000000000000 + cipher=096CEC30ACEE20842B80965DA0D42C6B + decrypted=00000800000000000000000000000000 + Iterated 100 times=B53ACC291BE97A34781D5A896580D353 + Iterated 1000 times=1A5BDED89A0C8729EDA37996ACB3CBB7 + +Set 2, vector# 21: + key=00000000000000000000000000000000 + plain=00000400000000000000000000000000 + cipher=936D547B21EA333B8FA2819D1B21495C + decrypted=00000400000000000000000000000000 + Iterated 100 times=597E92D08B3D4B3BF8A8FC88A262AE60 + Iterated 1000 times=8380E2EDBFD055A6316BF56956D6FCDF + +Set 2, vector# 22: + key=00000000000000000000000000000000 + plain=00000200000000000000000000000000 + cipher=4BF93E5B876105E2B1960E282E7E0722 + decrypted=00000200000000000000000000000000 + Iterated 100 times=AC9B6E25E69E6A308EC20D9455E0A4A5 + Iterated 1000 times=A158094FBB8ECDEDB46C0919DA109C52 + +Set 2, vector# 23: + key=00000000000000000000000000000000 + plain=00000100000000000000000000000000 + cipher=74D3D0824C460A5AEFB082DD94EB5337 + decrypted=00000100000000000000000000000000 + Iterated 100 times=CEC4C588A13CC92696668D9C580DF8DD + Iterated 1000 times=40F5EBB0182DBB5540F5EBA7D0B76A55 + +Set 2, vector# 24: + key=00000000000000000000000000000000 + plain=00000080000000000000000000000000 + cipher=EA42DEC40A41B540536F12DAB53C1D6D + decrypted=00000080000000000000000000000000 + Iterated 100 times=1E27C082633720D92A5F62593565F37E + Iterated 1000 times=BA77E04DF92FA2CB047E54C66ED07BB7 + +Set 2, vector# 25: + key=00000000000000000000000000000000 + plain=00000040000000000000000000000000 + cipher=E4DF15A55261CAA5C6711D5B1A6C277E + decrypted=00000040000000000000000000000000 + Iterated 100 times=2F357834FE3793B883BDBB0197486F43 + Iterated 1000 times=90A90C7D1E524130EFE74904156C71BF + +Set 2, vector# 26: + key=00000000000000000000000000000000 + plain=00000020000000000000000000000000 + cipher=02DB3B072E432BDE57444E9F86E1DD93 + decrypted=00000020000000000000000000000000 + Iterated 100 times=150842B13AEB13046CF41CCBBE99715D + Iterated 1000 times=BAEC4676392769731FE1DF22D4ED1435 + +Set 2, vector# 27: + key=00000000000000000000000000000000 + plain=00000010000000000000000000000000 + cipher=063E576CCD7AB76D011C0FC06A301895 + decrypted=00000010000000000000000000000000 + Iterated 100 times=DE39BE498135E30783C2F518A8472367 + Iterated 1000 times=E7BAAC7B6285D0EF1242CE17CCE6B0F2 + +Set 2, vector# 28: + key=00000000000000000000000000000000 + plain=00000008000000000000000000000000 + cipher=99FBDFD56F6C0816D042904A98ABE107 + decrypted=00000008000000000000000000000000 + Iterated 100 times=0EC003701188EB1402001DE9EEB00069 + Iterated 1000 times=322485065795A24FF202C828F0444B0C + +Set 2, vector# 29: + key=00000000000000000000000000000000 + plain=00000004000000000000000000000000 + cipher=6CAD32F6A3461E5B02C1EA2587A5B092 + decrypted=00000004000000000000000000000000 + Iterated 100 times=970E6B7BAA623895912CDA36E14404C3 + Iterated 1000 times=85A623BD285D0F5CF7097076BB3FB831 + +Set 2, vector# 30: + key=00000000000000000000000000000000 + plain=00000002000000000000000000000000 + cipher=C8B841954B377E3F820215D93A15E2FE + decrypted=00000002000000000000000000000000 + Iterated 100 times=79CC723680CFAF399C664CEA8DDC341F + Iterated 1000 times=2EE5A84328448DB7D320A3ED358412DB + +Set 2, vector# 31: + key=00000000000000000000000000000000 + plain=00000001000000000000000000000000 + cipher=C83EDAE374361E53C84D33C2A044A1CE + decrypted=00000001000000000000000000000000 + Iterated 100 times=C4CF44FBD4C93B31F14521A37D2AB381 + Iterated 1000 times=FFE04BFD734FD9B018A9B63EBA79269B + +Set 2, vector# 32: + key=00000000000000000000000000000000 + plain=00000000800000000000000000000000 + cipher=4734F0F6BF5C9B762D9B20A0F6E886C6 + decrypted=00000000800000000000000000000000 + Iterated 100 times=D0BA31387D771640425F6473FACAB492 + Iterated 1000 times=79B92B921A299CEDAE0CC0DD907737DF + +Set 2, vector# 33: + key=00000000000000000000000000000000 + plain=00000000400000000000000000000000 + cipher=5EE20F7AF80B0FCB39DDB8A5C4C8E6C2 + decrypted=00000000400000000000000000000000 + Iterated 100 times=8C4766CE09483E988AE530B52772039C + Iterated 1000 times=06654F11409744C387319401EA8DB835 + +Set 2, vector# 34: + key=00000000000000000000000000000000 + plain=00000000200000000000000000000000 + cipher=04498714579D26C022B52B7F8F5CC756 + decrypted=00000000200000000000000000000000 + Iterated 100 times=C25E3BB320862601FF7C19D5DACAED2B + Iterated 1000 times=A93D243DEDABFBEFD631AB9E52B2027E + +Set 2, vector# 35: + key=00000000000000000000000000000000 + plain=00000000100000000000000000000000 + cipher=7EBB7F991B0A022D4C9F008CE3C89135 + decrypted=00000000100000000000000000000000 + Iterated 100 times=CE78B9AA7B4AB9F0C2F814EACC2C6BBA + Iterated 1000 times=E9034BDB0628B45660665D688F744CD0 + +Set 2, vector# 36: + key=00000000000000000000000000000000 + plain=00000000080000000000000000000000 + cipher=2E0011FFADF98AB73094957F801C2592 + decrypted=00000000080000000000000000000000 + Iterated 100 times=41747423135C7E35289887B0084DB10D + Iterated 1000 times=465C0704B2E3E3B66B8047CBFD80F1D8 + +Set 2, vector# 37: + key=00000000000000000000000000000000 + plain=00000000040000000000000000000000 + cipher=476BD95B970481C3C45676033A26EDD8 + decrypted=00000000040000000000000000000000 + Iterated 100 times=93E311ABC7C06E44A063DDB6F3B9D364 + Iterated 1000 times=CEA8B14BFD0E3C57F0F6858B8996CCA5 + +Set 2, vector# 38: + key=00000000000000000000000000000000 + plain=00000000020000000000000000000000 + cipher=E00274BEDF588CF11268BC010223457B + decrypted=00000000020000000000000000000000 + Iterated 100 times=B042994D25E59E39E97CF83906DBD28A + Iterated 1000 times=E01C7B89927191AFD594E1FC3FC5B9C9 + +Set 2, vector# 39: + key=00000000000000000000000000000000 + plain=00000000010000000000000000000000 + cipher=73E073F8E28A5084E42F02CAA8125DE6 + decrypted=00000000010000000000000000000000 + Iterated 100 times=93C6454B17D615E5CA3165EE021A3E34 + Iterated 1000 times=AD82EC7BCEB25B1C0D8E4CDB55B7FAD6 + +Set 2, vector# 40: + key=00000000000000000000000000000000 + plain=00000000008000000000000000000000 + cipher=DA7FF8BE9C6CBB5209C97036929B4A91 + decrypted=00000000008000000000000000000000 + Iterated 100 times=D463AE29B95858DEFB4CE1A231E89AED + Iterated 1000 times=7917272ED295FE4325CA4DC48D17D9FB + +Set 2, vector# 41: + key=00000000000000000000000000000000 + plain=00000000004000000000000000000000 + cipher=415F278A2DACF4251625049342132BE8 + decrypted=00000000004000000000000000000000 + Iterated 100 times=F5A5B3444CD0F7BF5FDD8765F756B70C + Iterated 1000 times=F823D0FE2804AC0E0C748FA8870650BD + +Set 2, vector# 42: + key=00000000000000000000000000000000 + plain=00000000002000000000000000000000 + cipher=0434FECF0663D291B68E15D16C90EB7E + decrypted=00000000002000000000000000000000 + Iterated 100 times=FAE035823D4F0452E912A85020E4EAB6 + Iterated 1000 times=3A673776E77A0EB67144B4A5926AAAA3 + +Set 2, vector# 43: + key=00000000000000000000000000000000 + plain=00000000001000000000000000000000 + cipher=315EBDC8E9B350A3D82A81B2972E3729 + decrypted=00000000001000000000000000000000 + Iterated 100 times=D4AEBCD54C79D58C97A1ED86E4C56A8D + Iterated 1000 times=8F5613CAC1B8F016CF7DEB728A556E88 + +Set 2, vector# 44: + key=00000000000000000000000000000000 + plain=00000000000800000000000000000000 + cipher=1EDCB16EE425018E7F87567F3D1A21AC + decrypted=00000000000800000000000000000000 + Iterated 100 times=5FC79EC3B615DEC0786C17E65BF8531A + Iterated 1000 times=0670F2E13F0D5C273FD10A51CC2918A1 + +Set 2, vector# 45: + key=00000000000000000000000000000000 + plain=00000000000400000000000000000000 + cipher=BDDBD449CB884B8D3D32E63D1053766E + decrypted=00000000000400000000000000000000 + Iterated 100 times=CED20197D09B2953841ED7F7F2A54E80 + Iterated 1000 times=16FA56A2A5F9716997648BFB7486856E + +Set 2, vector# 46: + key=00000000000000000000000000000000 + plain=00000000000200000000000000000000 + cipher=B75321342A6A4C3372D497097880B986 + decrypted=00000000000200000000000000000000 + Iterated 100 times=5242E1E7A268E0C5C49BD6E8A227F29D + Iterated 1000 times=93C207B2B673CF79227547708AC52C51 + +Set 2, vector# 47: + key=00000000000000000000000000000000 + plain=00000000000100000000000000000000 + cipher=79E05AEC7AF864DD1C6FF66C01BB0DE2 + decrypted=00000000000100000000000000000000 + Iterated 100 times=0EFBB8157DA3AE909A1C1DE52160016A + Iterated 1000 times=B78F99DB1D582E64919AF6AF7D3A194B + +Set 2, vector# 48: + key=00000000000000000000000000000000 + plain=00000000000080000000000000000000 + cipher=B60739AEB9009A6A759712EA84C3702A + decrypted=00000000000080000000000000000000 + Iterated 100 times=2FD4691B244EFF4B54BACC1478106589 + Iterated 1000 times=52CBDBCE2AC63F5B72C900A3B1B9B7B6 + +Set 2, vector# 49: + key=00000000000000000000000000000000 + plain=00000000000040000000000000000000 + cipher=E58F321E50A13A27DA6B04EA6033AA97 + decrypted=00000000000040000000000000000000 + Iterated 100 times=D76FE75878C35F3E2FDE803A4116F66D + Iterated 1000 times=7C5D5B9366EAC9437A3528680758D2A0 + +Set 2, vector# 50: + key=00000000000000000000000000000000 + plain=00000000000020000000000000000000 + cipher=CB4B79974535A75568037938E7E49EBC + decrypted=00000000000020000000000000000000 + Iterated 100 times=B5B0F388894E29E8E8A35F2DC6680B69 + Iterated 1000 times=7510C3CC2756A9BA55F1C1A4111572F3 + +Set 2, vector# 51: + key=00000000000000000000000000000000 + plain=00000000000010000000000000000000 + cipher=54C68AECF50E3308E02BEBDE2516F5DF + decrypted=00000000000010000000000000000000 + Iterated 100 times=C890C460BC15803E4B1E83B3026F82E6 + Iterated 1000 times=AC2F83A92F8D2C45DDA1CC87022CAD6C + +Set 2, vector# 52: + key=00000000000000000000000000000000 + plain=00000000000008000000000000000000 + cipher=9FB5882E70F3DBB8D40DDD3BFB073494 + decrypted=00000000000008000000000000000000 + Iterated 100 times=FE383B84CB4EC11DD214FD4128F601D5 + Iterated 1000 times=5EC6656BDFCF6B85AC03C03D4FB91C15 + +Set 2, vector# 53: + key=00000000000000000000000000000000 + plain=00000000000004000000000000000000 + cipher=E7223C2BA0B8680F4E44A46DC4EDA24E + decrypted=00000000000004000000000000000000 + Iterated 100 times=A95C49B47AECDA269BC6A1E68B6073A0 + Iterated 1000 times=998214112737C87FDFA42F02F0D4F32F + +Set 2, vector# 54: + key=00000000000000000000000000000000 + plain=00000000000002000000000000000000 + cipher=408300AAD7B81B3C81910029E1B9D5A4 + decrypted=00000000000002000000000000000000 + Iterated 100 times=8842AB11E00618144757C6E106DB3C1C + Iterated 1000 times=D0D7C442AFE98B7A688F1EDBAA38A621 + +Set 2, vector# 55: + key=00000000000000000000000000000000 + plain=00000000000001000000000000000000 + cipher=4009FA408B2A725EE3BB19F42EC4DD61 + decrypted=00000000000001000000000000000000 + Iterated 100 times=5814841AB72BF4CB71285DD433B236AB + Iterated 1000 times=A48CE8ABBD698E84ED71C8373BB8C9B7 + +Set 2, vector# 56: + key=00000000000000000000000000000000 + plain=00000000000000800000000000000000 + cipher=872453DBA3F0FCAB458D000BE9030F76 + decrypted=00000000000000800000000000000000 + Iterated 100 times=FD364BFE4F59BD94FFFDF9BB2F2EADDA + Iterated 1000 times=D55BCF0351F200C38B77F274EF90BA07 + +Set 2, vector# 57: + key=00000000000000000000000000000000 + plain=00000000000000400000000000000000 + cipher=CA2FD2150800ED526C9CCA1BDC344331 + decrypted=00000000000000400000000000000000 + Iterated 100 times=B3B4C5D01D0A2C8115B27568CD2A118A + Iterated 1000 times=3D5B83EDA57D8B1F842377E26200CBEA + +Set 2, vector# 58: + key=00000000000000000000000000000000 + plain=00000000000000200000000000000000 + cipher=54BD5D18C6D93DB0AD13DD8283DE777D + decrypted=00000000000000200000000000000000 + Iterated 100 times=CA9DAADE6131962C709CC108FB07F182 + Iterated 1000 times=776F95F6B096F8F49CF6453051349DC4 + +Set 2, vector# 59: + key=00000000000000000000000000000000 + plain=00000000000000100000000000000000 + cipher=F668FF955605EBC3E1E5103C8360C89B + decrypted=00000000000000100000000000000000 + Iterated 100 times=B4C34FE41BDCBE296AE19D724A6C8963 + Iterated 1000 times=F223B52746C44A6D0181A2B1F50C7662 + +Set 2, vector# 60: + key=00000000000000000000000000000000 + plain=00000000000000080000000000000000 + cipher=276D564740CB5E8457DF20CEE9CF5907 + decrypted=00000000000000080000000000000000 + Iterated 100 times=6E38159919CD25E6F6AC4997B59CC842 + Iterated 1000 times=B87D1FC0680511938CAE4B9BA16B9AD9 + +Set 2, vector# 61: + key=00000000000000000000000000000000 + plain=00000000000000040000000000000000 + cipher=EF68344C5E5B34F7BC32CED49868C551 + decrypted=00000000000000040000000000000000 + Iterated 100 times=1964F0D3C44492B35B457177EB35F0D8 + Iterated 1000 times=E12F918A52ED06B0F0BF47B51EED73CA + +Set 2, vector# 62: + key=00000000000000000000000000000000 + plain=00000000000000020000000000000000 + cipher=D5F40F7573AF7907F7FDBF76CD252A26 + decrypted=00000000000000020000000000000000 + Iterated 100 times=A27F5D7A2BAD7168B2DDE258A21A07BF + Iterated 1000 times=BC40C0475DB968A691C017314B365136 + +Set 2, vector# 63: + key=00000000000000000000000000000000 + plain=00000000000000010000000000000000 + cipher=104A2B47D906F0DDEDBF7AFFED03F779 + decrypted=00000000000000010000000000000000 + Iterated 100 times=C08E0B58CFD8174F6D0675EE476215E2 + Iterated 1000 times=71D5403B8227B1D1ACF051A971F311B9 + +Set 2, vector# 64: + key=00000000000000000000000000000000 + plain=00000000000000008000000000000000 + cipher=ACB03AA9929251CC1E5B1E176C8D4A5A + decrypted=00000000000000008000000000000000 + Iterated 100 times=EBB170D0565E27A2212402AB94FBDED2 + Iterated 1000 times=D6606D97AB083DB9AF631A9C5EE0983F + +Set 2, vector# 65: + key=00000000000000000000000000000000 + plain=00000000000000004000000000000000 + cipher=A625702DB7D29631BF08A1BD61C14D67 + decrypted=00000000000000004000000000000000 + Iterated 100 times=BEEFAFD57626B03B377E982C68C10E99 + Iterated 1000 times=C61D90A8CE9222E5383380487735ABE4 + +Set 2, vector# 66: + key=00000000000000000000000000000000 + plain=00000000000000002000000000000000 + cipher=2BE637A51A4EC3F680746743A0814E2C + decrypted=00000000000000002000000000000000 + Iterated 100 times=A5860B6924FA3B6B6FCD6520E22F2C60 + Iterated 1000 times=1B0BA20EA0B1B0BA889C1E933AA54C15 + +Set 2, vector# 67: + key=00000000000000000000000000000000 + plain=00000000000000001000000000000000 + cipher=CD37DC01EF3F03C137DB089C0176E59C + decrypted=00000000000000001000000000000000 + Iterated 100 times=F60C280E16DCDF25C62C2F72E7F03C76 + Iterated 1000 times=B9208E30A997D8777B2543FE503B67A3 + +Set 2, vector# 68: + key=00000000000000000000000000000000 + plain=00000000000000000800000000000000 + cipher=5695316175AD12F78A5224A855ADD205 + decrypted=00000000000000000800000000000000 + Iterated 100 times=F99406A9A7F6AA4844C583FA97F53291 + Iterated 1000 times=670D9D90B6C031E779FED554C09C9BE9 + +Set 2, vector# 69: + key=00000000000000000000000000000000 + plain=00000000000000000400000000000000 + cipher=E6AB30B3CBE234F0EEAA36D766D868B6 + decrypted=00000000000000000400000000000000 + Iterated 100 times=270B292F8FF1F8D070EB96A1B85A0294 + Iterated 1000 times=101EB2F3E1B36FF603888FCB2F633ABB + +Set 2, vector# 70: + key=00000000000000000000000000000000 + plain=00000000000000000200000000000000 + cipher=D935BC1388AB203330913341CCB8CE83 + decrypted=00000000000000000200000000000000 + Iterated 100 times=F94984DC7F789BC9FB234B646FB2FEE3 + Iterated 1000 times=C362ED2BD640F922958F2A217B81D051 + +Set 2, vector# 71: + key=00000000000000000000000000000000 + plain=00000000000000000100000000000000 + cipher=135597CDB8D3EE3D6CBA3363C887D0A7 + decrypted=00000000000000000100000000000000 + Iterated 100 times=ED09399A9DCD584C64FD84AC10A06BF6 + Iterated 1000 times=DE523D3C20BB7B654326424DD36B770C + +Set 2, vector# 72: + key=00000000000000000000000000000000 + plain=00000000000000000080000000000000 + cipher=BA652965261E2D8AD07F5C44A1440062 + decrypted=00000000000000000080000000000000 + Iterated 100 times=A3E8B8C7751DAA2B9074AF5A574E515A + Iterated 1000 times=42EF0FA30611DD085129E15B16E2DEAF + +Set 2, vector# 73: + key=00000000000000000000000000000000 + plain=00000000000000000040000000000000 + cipher=548CE1164C1CA747A222ACF76BA64ACA + decrypted=00000000000000000040000000000000 + Iterated 100 times=D66D1A2E1083E93388FE9C85FC534EBC + Iterated 1000 times=4542E96BB854A3995C59C01622EF3041 + +Set 2, vector# 74: + key=00000000000000000000000000000000 + plain=00000000000000000020000000000000 + cipher=6E5B60F0C8FD3DAFD2321BCDB51D961A + decrypted=00000000000000000020000000000000 + Iterated 100 times=7CD69DB3E9FEDCE7A07221DFEA336787 + Iterated 1000 times=C15BDC477BFFE6EAF7A583313584746D + +Set 2, vector# 75: + key=00000000000000000000000000000000 + plain=00000000000000000010000000000000 + cipher=1B6DC517BDBAB56AC03DEF76A96E3AAA + decrypted=00000000000000000010000000000000 + Iterated 100 times=A61A6ECF055973A1A0F00216137956D1 + Iterated 1000 times=E49A9ACB0BF992E1B7CBE40E49B27A09 + +Set 2, vector# 76: + key=00000000000000000000000000000000 + plain=00000000000000000008000000000000 + cipher=FA6D7780F98EFDC3845E38444E5803BD + decrypted=00000000000000000008000000000000 + Iterated 100 times=98BFA5BE2E86FBCEAACCBFE968E2322A + Iterated 1000 times=DC117A9428C60EF0E76643198A18756D + +Set 2, vector# 77: + key=00000000000000000000000000000000 + plain=00000000000000000004000000000000 + cipher=22054B5E0DADADF01D6E466BB38240C5 + decrypted=00000000000000000004000000000000 + Iterated 100 times=65ECBE211DCEA1F641CB489CA95E3902 + Iterated 1000 times=1C75193771446CAF788D9FD4FD8D4988 + +Set 2, vector# 78: + key=00000000000000000000000000000000 + plain=00000000000000000002000000000000 + cipher=7301B50FAF7EAA768262E5998B971CE0 + decrypted=00000000000000000002000000000000 + Iterated 100 times=EB4FF4F4FC3245888D5C62F11955F306 + Iterated 1000 times=8A80CD5A68093A33C969AD5EAADB9B46 + +Set 2, vector# 79: + key=00000000000000000000000000000000 + plain=00000000000000000001000000000000 + cipher=570F0CE7EA7717F3A39F4CA7D97B3E66 + decrypted=00000000000000000001000000000000 + Iterated 100 times=85A4E3AC298BED188C6B69616EA04067 + Iterated 1000 times=AC7D4BCE907D28F0049F67BA5B6F5350 + +Set 2, vector# 80: + key=00000000000000000000000000000000 + plain=00000000000000000000800000000000 + cipher=E4FF07F841F45B08CD47FA49E90F523D + decrypted=00000000000000000000800000000000 + Iterated 100 times=26BA57230C4AE9FDA3F1ACF595A21FE6 + Iterated 1000 times=C670068D50DBF4C1A88AB95AEE191CAC + +Set 2, vector# 81: + key=00000000000000000000000000000000 + plain=00000000000000000000400000000000 + cipher=C7287CDF3FA030F589819E32701EDACA + decrypted=00000000000000000000400000000000 + Iterated 100 times=3FEE279E88CCA059AE83DC74DB090F58 + Iterated 1000 times=EB01FF5C33A40AEE768647FD2FF48839 + +Set 2, vector# 82: + key=00000000000000000000000000000000 + plain=00000000000000000000200000000000 + cipher=742C8FFBE3F986000F0F96CEFC6B4758 + decrypted=00000000000000000000200000000000 + Iterated 100 times=95367A93AFFEBF90268460800B179729 + Iterated 1000 times=AD442AADF61400CC85C37C9E9ED6EDC7 + +Set 2, vector# 83: + key=00000000000000000000000000000000 + plain=00000000000000000000100000000000 + cipher=B1397CBF83AEF406894DA05742FB7E6F + decrypted=00000000000000000000100000000000 + Iterated 100 times=2336C30B0C4356D16B1AE6F8060354EE + Iterated 1000 times=A1E534982463B89DF3CC0F559AF285D1 + +Set 2, vector# 84: + key=00000000000000000000000000000000 + plain=00000000000000000000080000000000 + cipher=4AF43644108AFE873EAC7D5011E382A9 + decrypted=00000000000000000000080000000000 + Iterated 100 times=59649418FED4ED24FC53EF3A06A31861 + Iterated 1000 times=C4D3ECEA325D22940C114DFBA2BB75EB + +Set 2, vector# 85: + key=00000000000000000000000000000000 + plain=00000000000000000000040000000000 + cipher=2C4BA1CF1B25FFA36AE8698A729CC204 + decrypted=00000000000000000000040000000000 + Iterated 100 times=355A56F5930FF225120CFF56A80FF73D + Iterated 1000 times=B77DCF4FE9A28EE1875078E2EC0EE271 + +Set 2, vector# 86: + key=00000000000000000000000000000000 + plain=00000000000000000000020000000000 + cipher=F1827A29858416DA5297C122FDF6806C + decrypted=00000000000000000000020000000000 + Iterated 100 times=E7C1585FEE7991D285B054D16D908E18 + Iterated 1000 times=D71EEE2141219C437CDDE19CC07D6C61 + +Set 2, vector# 87: + key=00000000000000000000000000000000 + plain=00000000000000000000010000000000 + cipher=FCDC379E9467BA801378EF2372B3EE86 + decrypted=00000000000000000000010000000000 + Iterated 100 times=813DB0196266726024029BB81D3B5187 + Iterated 1000 times=A5FDF9AEF970AE2F1A053832363595CF + +Set 2, vector# 88: + key=00000000000000000000000000000000 + plain=00000000000000000000008000000000 + cipher=BCB881D578A2082790D780092644F094 + decrypted=00000000000000000000008000000000 + Iterated 100 times=7513F0B5A4371B449438486FD44245DD + Iterated 1000 times=2E2C4434B9C36036382BF0C75EECA1B7 + +Set 2, vector# 89: + key=00000000000000000000000000000000 + plain=00000000000000000000004000000000 + cipher=D62B3266D6BE91B76817F3129421203A + decrypted=00000000000000000000004000000000 + Iterated 100 times=4E2B3B3A2287DFF7449B324B2CA3338E + Iterated 1000 times=1E7E82D706AC051EC05C0261E0F4CBEA + +Set 2, vector# 90: + key=00000000000000000000000000000000 + plain=00000000000000000000002000000000 + cipher=5D7B42FC0C41A95B560F4E861575C3A6 + decrypted=00000000000000000000002000000000 + Iterated 100 times=A64289210A4C29B75AFC9BCBD6B50AE9 + Iterated 1000 times=9827263F661F3D3AAB715B93322DFCBC + +Set 2, vector# 91: + key=00000000000000000000000000000000 + plain=00000000000000000000001000000000 + cipher=BBB0EF495D2C31901BED068386EE2943 + decrypted=00000000000000000000001000000000 + Iterated 100 times=81258E7E2326BA94F9B29FD10CC3C635 + Iterated 1000 times=48FA7A5990AAB63660400E8C175A1580 + +Set 2, vector# 92: + key=00000000000000000000000000000000 + plain=00000000000000000000000800000000 + cipher=69F735B5F2C0F5AF2905E7114F5D0D24 + decrypted=00000000000000000000000800000000 + Iterated 100 times=5D1D01C0E13691B5367834DCF7F1FAED + Iterated 1000 times=A38C90F5542965DCB89B351BEAF4A1CE + +Set 2, vector# 93: + key=00000000000000000000000000000000 + plain=00000000000000000000000400000000 + cipher=16D665144B6255F4627A1D085A760F78 + decrypted=00000000000000000000000400000000 + Iterated 100 times=59A0085C0D6553FFFE03EFCCCF311046 + Iterated 1000 times=A27AB3C53DF4DFE6C3750F45884006FF + +Set 2, vector# 94: + key=00000000000000000000000000000000 + plain=00000000000000000000000200000000 + cipher=26882958DDFDC8411392659E63466FFB + decrypted=00000000000000000000000200000000 + Iterated 100 times=194248490A77FFE7C9C7AEB4192BB6F5 + Iterated 1000 times=A9717443D5EC5893AF9863F8D2D24522 + +Set 2, vector# 95: + key=00000000000000000000000000000000 + plain=00000000000000000000000100000000 + cipher=42495AA0F08144303E13845C1CCF45DD + decrypted=00000000000000000000000100000000 + Iterated 100 times=332D099C2AECF4D70FCCABECFC4FD815 + Iterated 1000 times=793A9E679E8774F7E83080802BBE36C7 + +Set 2, vector# 96: + key=00000000000000000000000000000000 + plain=00000000000000000000000080000000 + cipher=2A3A8BEFF46D9F222F95C02B5E85505C + decrypted=00000000000000000000000080000000 + Iterated 100 times=B3FD5D4EA0BD19C40F6BAED6854E70AF + Iterated 1000 times=513A2FA4CD821F2D45EA3C7B8ED68E1E + +Set 2, vector# 97: + key=00000000000000000000000000000000 + plain=00000000000000000000000040000000 + cipher=AA6181A6ABC071AC205A48394104BDCB + decrypted=00000000000000000000000040000000 + Iterated 100 times=A96E06E8F6ECD8057C2461954CCC4520 + Iterated 1000 times=2AF1C9DA82CFC36AF932F4B71DCF3AC2 + +Set 2, vector# 98: + key=00000000000000000000000000000000 + plain=00000000000000000000000020000000 + cipher=38D209FA8B31D3B485146764A434616F + decrypted=00000000000000000000000020000000 + Iterated 100 times=44AE2A982DD7AD47FC6896FF7C6BB378 + Iterated 1000 times=695316882B13D04E5684DFD3946175BB + +Set 2, vector# 99: + key=00000000000000000000000000000000 + plain=00000000000000000000000010000000 + cipher=44743E45C8DB761AD52FAB91BEAF9AAC + decrypted=00000000000000000000000010000000 + Iterated 100 times=6244D6A14897D6D5B96A4F6011E73310 + Iterated 1000 times=E23174A1FF815DE43B115A98C55999E3 + +Set 2, vector#100: + key=00000000000000000000000000000000 + plain=00000000000000000000000008000000 + cipher=3AE707145A96DDBD3E420E138EBD3C3F + decrypted=00000000000000000000000008000000 + Iterated 100 times=6F9B476D7E766A35B802B0A0A47E3380 + Iterated 1000 times=82EA818EEC91FF7372189661462B82EA + +Set 2, vector#101: + key=00000000000000000000000000000000 + plain=00000000000000000000000004000000 + cipher=8EA781047E2D19735174FD4C042E69FE + decrypted=00000000000000000000000004000000 + Iterated 100 times=F7E787E181F6AB66B34362777E59E14F + Iterated 1000 times=9BEE7681810807FD524C4928207C2A31 + +Set 2, vector#102: + key=00000000000000000000000000000000 + plain=00000000000000000000000002000000 + cipher=BCE49982D5A048DECC816BDE57A180D5 + decrypted=00000000000000000000000002000000 + Iterated 100 times=0404BE59F19806C9BD75AC57B1D68601 + Iterated 1000 times=EE45D29B17F2B95154C0FA7E4F2BACA0 + +Set 2, vector#103: + key=00000000000000000000000000000000 + plain=00000000000000000000000001000000 + cipher=A9231CC123A6E1AE294EE219D9D8AC48 + decrypted=00000000000000000000000001000000 + Iterated 100 times=46D3F38103C6382F7A6FAEA7B71E5571 + Iterated 1000 times=31A2BD70FA82339DAA80673A4CE30DB9 + +Set 2, vector#104: + key=00000000000000000000000000000000 + plain=00000000000000000000000000800000 + cipher=80AAF92D632EBD2B0F08C76BD6AADCF7 + decrypted=00000000000000000000000000800000 + Iterated 100 times=9CE88952F1AB493E4CFB107C9A1C8E45 + Iterated 1000 times=B40EE8C5CDB14212ED8E74AB3F5EF4AB + +Set 2, vector#105: + key=00000000000000000000000000000000 + plain=00000000000000000000000000400000 + cipher=304237E42F8DE8718BF0AAA19CF1DCC0 + decrypted=00000000000000000000000000400000 + Iterated 100 times=0A70B9DB723DFF84AEA9B003B974D451 + Iterated 1000 times=85B7097C4CF042DB81E02B797C094D84 + +Set 2, vector#106: + key=00000000000000000000000000000000 + plain=00000000000000000000000000200000 + cipher=9E5776E6AD479C12425617E5B48E84A5 + decrypted=00000000000000000000000000200000 + Iterated 100 times=893DBDBE62D8ED865DD52C7D49F4E641 + Iterated 1000 times=DD1E0E541C78D585DDF72479C2C4794E + +Set 2, vector#107: + key=00000000000000000000000000000000 + plain=00000000000000000000000000100000 + cipher=6341D9F8DF78A7BDC99FB1A673064028 + decrypted=00000000000000000000000000100000 + Iterated 100 times=F026A4BD96F6204D6F1A7D3A863F56C9 + Iterated 1000 times=A7B0CE5949E68954E2A6E29F8C2B06C9 + +Set 2, vector#108: + key=00000000000000000000000000000000 + plain=00000000000000000000000000080000 + cipher=482AC764B89C7735EFA05E9C8338AD39 + decrypted=00000000000000000000000000080000 + Iterated 100 times=6B6E09F9F1F2C38CD5A1EBBF7072C6C6 + Iterated 1000 times=D8D14A4074D8A43D3934CB8E452450B5 + +Set 2, vector#109: + key=00000000000000000000000000000000 + plain=00000000000000000000000000040000 + cipher=D32811A27DA34E9C4AD1144EE04CC52F + decrypted=00000000000000000000000000040000 + Iterated 100 times=7C713B6AE60EDCD0881855F1B503DE03 + Iterated 1000 times=DB18A8FA7813734F1D3C10E89AC65473 + +Set 2, vector#110: + key=00000000000000000000000000000000 + plain=00000000000000000000000000020000 + cipher=2524E200220F6C1B8E52517A61BFBDCC + decrypted=00000000000000000000000000020000 + Iterated 100 times=DBE39A0B8A1AD2CF4DE430FA043CF7E5 + Iterated 1000 times=D1B903FD8E0D5639399007244F24BE7D + +Set 2, vector#111: + key=00000000000000000000000000000000 + plain=00000000000000000000000000010000 + cipher=745974EDCF60CB55CBC6D9D2628A9397 + decrypted=00000000000000000000000000010000 + Iterated 100 times=51DA3393F31195E1E6CE4D7306424531 + Iterated 1000 times=64A3819193F298ED37C55B07ADB5E908 + +Set 2, vector#112: + key=00000000000000000000000000000000 + plain=00000000000000000000000000008000 + cipher=4C44ED6F0ED9AA2D636D1A9E9EB40A46 + decrypted=00000000000000000000000000008000 + Iterated 100 times=D39C4F5A4E342B8FB57A5CDF49225369 + Iterated 1000 times=97704E0701F0A64AAF4547EA41D1507E + +Set 2, vector#113: + key=00000000000000000000000000000000 + plain=00000000000000000000000000004000 + cipher=5124F18D312076174AA74D35A48E260B + decrypted=00000000000000000000000000004000 + Iterated 100 times=05B2E0686ABADB48BE0D61B044B35C92 + Iterated 1000 times=70490E50E3E9FD9C6D1F8D11133C07FE + +Set 2, vector#114: + key=00000000000000000000000000000000 + plain=00000000000000000000000000002000 + cipher=94B31DD551CBCB8DB3F7F29DCE921221 + decrypted=00000000000000000000000000002000 + Iterated 100 times=034654BA5A4504CD69202C4428DDC190 + Iterated 1000 times=86A3385EE6012BD6102FF139A4A07268 + +Set 2, vector#115: + key=00000000000000000000000000000000 + plain=00000000000000000000000000001000 + cipher=E4486B9B9D3BD871436F1D68E9C9C08A + decrypted=00000000000000000000000000001000 + Iterated 100 times=C74E8E3267EA1D6FA46AB32ACE40BDC6 + Iterated 1000 times=7CFF9595B14E5D30B66216B5744A16B5 + +Set 2, vector#116: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000800 + cipher=7BCE3E7BF78B67DF17284983CC49AB0A + decrypted=00000000000000000000000000000800 + Iterated 100 times=9BEAB0A9F85ED76EE32C2DFE24462478 + Iterated 1000 times=D3E2B717E569ABDE68BC42CB35E1C472 + +Set 2, vector#117: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000400 + cipher=16704B64A6E63B9D599F1EC22135D489 + decrypted=00000000000000000000000000000400 + Iterated 100 times=A78214F2E44FEDA3C95A345CD073CE03 + Iterated 1000 times=1C1BE7E4912FBD1819ECC4771BC48D9D + +Set 2, vector#118: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000200 + cipher=2E30F49E91F9BF7B21D2DFBCBB18FAFC + decrypted=00000000000000000000000000000200 + Iterated 100 times=693E98744A52A60E6E8D03F99E91889C + Iterated 1000 times=37F01253A0C0CAB299CC188EBE3101EA + +Set 2, vector#119: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000100 + cipher=75F7BC91CFCB6644A0CDFADC0694DD86 + decrypted=00000000000000000000000000000100 + Iterated 100 times=575D5E2934A9411D08F3570A3A6BC2B3 + Iterated 1000 times=F1D895DFBCD02555E5313DA1488E47FF + +Set 2, vector#120: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000080 + cipher=B58DD10154C930D73A6A9EE2B82D5A15 + decrypted=00000000000000000000000000000080 + Iterated 100 times=B462A064B9F45F9F4BA2A1796EFA9DA2 + Iterated 1000 times=451D953E7010367EE1FC7C68C66149E1 + +Set 2, vector#121: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000040 + cipher=D12E4B6EEFE4AADD423C7615A93ACB6A + decrypted=00000000000000000000000000000040 + Iterated 100 times=4B731A934EBC5A0D433C9765893BD28A + Iterated 1000 times=9168184F4D06D364B20D416E5DCCC0B7 + +Set 2, vector#122: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000020 + cipher=7D1E9769F28D4613F095142E83BE8DAC + decrypted=00000000000000000000000000000020 + Iterated 100 times=8521EC2420F6E03C32CB41C8723B145F + Iterated 1000 times=964802B3592FD695DA0718A807D5517B + +Set 2, vector#123: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000010 + cipher=E28FEAB3D4B9C9524BA6D0CE58FBD756 + decrypted=00000000000000000000000000000010 + Iterated 100 times=41A0BA044FB419CB11B6CCC1D19E1CDD + Iterated 1000 times=EE4334A9A73EFE0F7E6E3A95ABD882D6 + +Set 2, vector#124: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000008 + cipher=2317393AC55AC2F8628AF17071453861 + decrypted=00000000000000000000000000000008 + Iterated 100 times=643AC9D01A8BE6A91B1A4B6EC9B8DE1E + Iterated 1000 times=47A790FCE4A709CEC2711E821FA2CB8E + +Set 2, vector#125: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000004 + cipher=FC723E7BCDF0580D52C6BC862D22028C + decrypted=00000000000000000000000000000004 + Iterated 100 times=CFE69E052B20EE8860D35963AF771A93 + Iterated 1000 times=D1D2BF7480B73A9C0EDBB395A2EB5B07 + +Set 2, vector#126: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000002 + cipher=58B491F14A8994554BD31A29B9E88D1B + decrypted=00000000000000000000000000000002 + Iterated 100 times=3CF02D451BF80081F459AB7149227544 + Iterated 1000 times=86CEC29D16E402BC138FB418A3D28236 + +Set 2, vector#127: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000001 + cipher=A809864319CBBE1AF28FDFB20B22C6D6 + decrypted=00000000000000000000000000000001 + Iterated 100 times=11C8847B307596EB5A90849FF2D8FACB + Iterated 1000 times=4584D3220895FF70050A73733F3C0421 + +Test vectors -- set 3 +===================== + +Set 3, vector# 0: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=90699DE47893701E7511196BE312AF92 + decrypted=00000000000000000000000000000000 + Iterated 100 times=7CEF3243E4587156DAE68FF42E88F8B7 + Iterated 1000 times=6D11BFB679CF114046967B2AE32CCBEB + +Set 3, vector# 1: + key=01010101010101010101010101010101 + plain=01010101010101010101010101010101 + cipher=A6A5F5A85850E263F951A71F431C73B6 + decrypted=01010101010101010101010101010101 + Iterated 100 times=4EC311A9D869223DD52AE125B60D034A + Iterated 1000 times=5EEB895F2BB6ABD42EE1A5008F72D6EF + +Set 3, vector# 2: + key=02020202020202020202020202020202 + plain=02020202020202020202020202020202 + cipher=CAD1F664D20832C89C0FB03E18C9F5B2 + decrypted=02020202020202020202020202020202 + Iterated 100 times=79C43F351FFA4AAD836E2360806BEAF5 + Iterated 1000 times=18DD2F220D58E06CA0CCC329B9983CB5 + +Set 3, vector# 3: + key=03030303030303030303030303030303 + plain=03030303030303030303030303030303 + cipher=7D49948A8FA85C66338074C76B2832AB + decrypted=03030303030303030303030303030303 + Iterated 100 times=956B7EF7C585E4D083DAC7A0B4232045 + Iterated 1000 times=0930F7366736FF02FD1D44832BAC5FC6 + +Set 3, vector# 4: + key=04040404040404040404040404040404 + plain=04040404040404040404040404040404 + cipher=D5E37FA6B2C1F1299696FE429D410B68 + decrypted=04040404040404040404040404040404 + Iterated 100 times=5055C97458CD16EB5A246BCBC6B4180E + Iterated 1000 times=81C4EC4BDD0CE1394207DC032389E04A + +Set 3, vector# 5: + key=05050505050505050505050505050505 + plain=05050505050505050505050505050505 + cipher=5D7ED93674A71234C6EF3768D96D9E52 + decrypted=05050505050505050505050505050505 + Iterated 100 times=0D4607605962AE8A4628A7F3A0CBAD13 + Iterated 1000 times=3160964C4BE49CA1BC82F86C4D54728D + +Set 3, vector# 6: + key=06060606060606060606060606060606 + plain=06060606060606060606060606060606 + cipher=86E641AF940D544F565C10C613A4B580 + decrypted=06060606060606060606060606060606 + Iterated 100 times=D435FC1FD206E9249185E78384EDA86F + Iterated 1000 times=E42E3BA79F3DD17BAE94AFAEC86D97D8 + +Set 3, vector# 7: + key=07070707070707070707070707070707 + plain=07070707070707070707070707070707 + cipher=7D0161C89FCD7179636DC37557BFBABA + decrypted=07070707070707070707070707070707 + Iterated 100 times=F5719FB1DCC8BF68C2B33790A5AC11A6 + Iterated 1000 times=69A3AA42FAFEB6F228236A2CFBF47FDF + +Set 3, vector# 8: + key=08080808080808080808080808080808 + plain=08080808080808080808080808080808 + cipher=26743CE30A6B2FACDDDCC0DF004B0E2B + decrypted=08080808080808080808080808080808 + Iterated 100 times=6D48A06C42E95BEF51E1822736B31A9A + Iterated 1000 times=F602A2E499A3C49617C0ED506AD5E592 + +Set 3, vector# 9: + key=09090909090909090909090909090909 + plain=09090909090909090909090909090909 + cipher=C13927B9AE16750F65AF29B6BA13C3F8 + decrypted=09090909090909090909090909090909 + Iterated 100 times=6074A148AB9BF900D3ABDA21EB91B016 + Iterated 1000 times=8742EA663ED5417CCCBA5F61EDAF9800 + +Set 3, vector# 10: + key=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + plain=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + cipher=7BFDAB97686D5DB9503889F2E11B06B7 + decrypted=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + Iterated 100 times=3FE8F96E70D02808D5B70F0E283F2F76 + Iterated 1000 times=E0919B1493258B5020F83C4CF075F80D + +Set 3, vector# 11: + key=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + plain=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + cipher=AFA00CB09AB03AEF6AFE5D341E2D052D + decrypted=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + Iterated 100 times=E4B4CBFECEC6DCB6E5F8C0804B8F9CCC + Iterated 1000 times=95ED59343EE7BE2759D423FA887243C9 + +Set 3, vector# 12: + key=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + plain=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + cipher=18BF07482AA3C56A15F6BB1722E38C3E + decrypted=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + Iterated 100 times=31306D8B5B8DB3F7665E88C04B5B0E5D + Iterated 1000 times=284E2AC17DEA4D45158E348759B6BA0B + +Set 3, vector# 13: + key=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + plain=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + cipher=81E111A0C38219A594BA9D6A3A3BC7CC + decrypted=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + Iterated 100 times=6C6815E6DD3EFAF57E8F136EC2F04323 + Iterated 1000 times=00F4202AD64D1707CE349EEED106309A + +Set 3, vector# 14: + key=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + plain=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + cipher=8296F2F1B007AB9D533FDEE35A9AD850 + decrypted=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + Iterated 100 times=971BE1504B011903AA4B9094DE1E41EE + Iterated 1000 times=6F7A023E121CBD2D8B6B19E282A6EEFB + +Set 3, vector# 15: + key=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + plain=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + cipher=9A2ED6E497817C090FFE84547B08A902 + decrypted=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + Iterated 100 times=C966E8A3F14D74063DD7DB50D82C9E28 + Iterated 1000 times=D44AFC9731533D3DB6C2263008904A76 + +Set 3, vector# 16: + key=10101010101010101010101010101010 + plain=10101010101010101010101010101010 + cipher=E95AA08B86DBE75F6BF7FDF474558B43 + decrypted=10101010101010101010101010101010 + Iterated 100 times=664BB67AE9FD91C86B93A0FA19A9ED67 + Iterated 1000 times=011A97CC378C67649AC3F391501690E5 + +Set 3, vector# 17: + key=11111111111111111111111111111111 + plain=11111111111111111111111111111111 + cipher=0A5428999FCBDB595159A006468134BE + decrypted=11111111111111111111111111111111 + Iterated 100 times=D3401F373B23A012F9530F0E71D09412 + Iterated 1000 times=C6E58A4ACBE1CB90EA6DABD3737F6B70 + +Set 3, vector# 18: + key=12121212121212121212121212121212 + plain=12121212121212121212121212121212 + cipher=49F762BBFA862C31006CA14FD29C08D7 + decrypted=12121212121212121212121212121212 + Iterated 100 times=866E3F05E08D449B4F98F9BEBCAAA46C + Iterated 1000 times=0D911005CC68974488492036639835FF + +Set 3, vector# 19: + key=13131313131313131313131313131313 + plain=13131313131313131313131313131313 + cipher=44B05EEC850AA2863B2948B81C3B1375 + decrypted=13131313131313131313131313131313 + Iterated 100 times=E882DD0FDF78FEFC6151795F96238AC5 + Iterated 1000 times=7DB217B04F226934A10EE0DE789649AB + +Set 3, vector# 20: + key=14141414141414141414141414141414 + plain=14141414141414141414141414141414 + cipher=1D2C078A816D4D7D5E07DF0AC42DDA42 + decrypted=14141414141414141414141414141414 + Iterated 100 times=7FD7B2C32AABE5A7D895A98CF717FA72 + Iterated 1000 times=1853048596CAFF2E58D7DB8D45C72C2B + +Set 3, vector# 21: + key=15151515151515151515151515151515 + plain=15151515151515151515151515151515 + cipher=791A14319AA12EB3754F85EB881044D5 + decrypted=15151515151515151515151515151515 + Iterated 100 times=065BFCE0EB85565F332C60B574BD7556 + Iterated 1000 times=29CB20F707B0A2C1E71F2288C020B72F + +Set 3, vector# 22: + key=16161616161616161616161616161616 + plain=16161616161616161616161616161616 + cipher=42EF4454FD1614C3CCA1A12AD2F7E1C8 + decrypted=16161616161616161616161616161616 + Iterated 100 times=F21857C838733CA832E2FFF866E9E99A + Iterated 1000 times=83172E546BFC7573F07B43CCAE8FDD4B + +Set 3, vector# 23: + key=17171717171717171717171717171717 + plain=17171717171717171717171717171717 + cipher=6067F884E595507E10394179211E5E63 + decrypted=17171717171717171717171717171717 + Iterated 100 times=F2F5E4E3F8A8465CBFA678E05274235E + Iterated 1000 times=B3CB753567E939DD9A2B529243467F8A + +Set 3, vector# 24: + key=18181818181818181818181818181818 + plain=18181818181818181818181818181818 + cipher=95223AC8C1D2BECBB58464596314D6F8 + decrypted=18181818181818181818181818181818 + Iterated 100 times=E6759875CA0371FA677E6C44456643AA + Iterated 1000 times=233828068973F38BD0A9B0608937CDFB + +Set 3, vector# 25: + key=19191919191919191919191919191919 + plain=19191919191919191919191919191919 + cipher=23AC4C041695C7661521FED3934EF78D + decrypted=19191919191919191919191919191919 + Iterated 100 times=412BFADCAAA28E46078135ABD4130EB0 + Iterated 1000 times=34038EF601BB00192843AE53521F9FC1 + +Set 3, vector# 26: + key=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + plain=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + cipher=8030C736E7C284F6B8B81E5A89C9A124 + decrypted=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + Iterated 100 times=8EEBD395B743114E4265ECC20562D801 + Iterated 1000 times=FFFAC8561347BAE2DA0D103FCBFB80D3 + +Set 3, vector# 27: + key=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + plain=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + cipher=39E61DC394B2D1361C55CA74771E43BD + decrypted=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + Iterated 100 times=68B99C52848FFD77FACBC74050841ED6 + Iterated 1000 times=DB4DDD8D319FBF2E4C7C80B3C44C59A4 + +Set 3, vector# 28: + key=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + plain=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + cipher=3AB621D9E45CC8B5E203AF67505F82F2 + decrypted=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + Iterated 100 times=237DCF7EAB02FB7D06893B6A020F031A + Iterated 1000 times=5020544E2B18E49747647E244AC86C04 + +Set 3, vector# 29: + key=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + plain=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + cipher=238EA76681ED0D3E6692B7D7EBEF1476 + decrypted=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + Iterated 100 times=5BC7FDB1DEB9334D7BF4C4194370D491 + Iterated 1000 times=DA5AEACAA0AF51DF3F8F65F7A043E3BF + +Set 3, vector# 30: + key=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + plain=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + cipher=5CF80ABC200E915FFC21BB20E5CCFACB + decrypted=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + Iterated 100 times=93313AD3A90733C93D153D5345573C42 + Iterated 1000 times=AA70D81D27E369DE007132F14EFDA501 + +Set 3, vector# 31: + key=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + plain=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + cipher=E87B8EA9260EB622A5A2F62192020454 + decrypted=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + Iterated 100 times=9C9F3EA2FF2A1214747AACE9EA6A9276 + Iterated 1000 times=B3FE03929C98C7C10A1AFE447FEDD624 + +Set 3, vector# 32: + key=20202020202020202020202020202020 + plain=20202020202020202020202020202020 + cipher=DABE94E619BD6628585A2FC2228E51F6 + decrypted=20202020202020202020202020202020 + Iterated 100 times=B3FBDA660DBD928F996F9E7AC5A06129 + Iterated 1000 times=838780B3FA568AF35AA8102F4443A184 + +Set 3, vector# 33: + key=21212121212121212121212121212121 + plain=21212121212121212121212121212121 + cipher=2D0D64C9E87A2885EAF07690AC59976C + decrypted=21212121212121212121212121212121 + Iterated 100 times=F2969122F1FF0E99AB2ADE59895B15FB + Iterated 1000 times=0A4E9AC9C92583EE8D2D3F356B52157E + +Set 3, vector# 34: + key=22222222222222222222222222222222 + plain=22222222222222222222222222222222 + cipher=903A1C88F3F2CDE20A4B7836EBF29B3F + decrypted=22222222222222222222222222222222 + Iterated 100 times=3A4B625326D6265E69780048DCC8ABC3 + Iterated 1000 times=2570DBC91C754D5C0C665D35D42D444A + +Set 3, vector# 35: + key=23232323232323232323232323232323 + plain=23232323232323232323232323232323 + cipher=F462C424C64E8063FFAF29ED2827E005 + decrypted=23232323232323232323232323232323 + Iterated 100 times=6807265C2E547FA5D35232EB4D1AEC6D + Iterated 1000 times=A01C7F723A71E875BF38A63916AFD832 + +Set 3, vector# 36: + key=24242424242424242424242424242424 + plain=24242424242424242424242424242424 + cipher=E67E65F8F0982E93699909534B0942E5 + decrypted=24242424242424242424242424242424 + Iterated 100 times=1D6D97ABC634AFEE60568372FCE1A915 + Iterated 1000 times=4CFA7FEB631DFBF8905E204C502FA7B9 + +Set 3, vector# 37: + key=25252525252525252525252525252525 + plain=25252525252525252525252525252525 + cipher=2A2A57102FC15B6C753ADEFCAF53C75B + decrypted=25252525252525252525252525252525 + Iterated 100 times=C957C7847F702151BBC4E21C2CF05B3D + Iterated 1000 times=EC5D4576592E32DFD92A6A7B0634FAF2 + +Set 3, vector# 38: + key=26262626262626262626262626262626 + plain=26262626262626262626262626262626 + cipher=B3D2BBD240E6378DF708D8C3891E7484 + decrypted=26262626262626262626262626262626 + Iterated 100 times=C28007BF96F32340C9954174FE8AC197 + Iterated 1000 times=BA2A53AE08B4303D3BBBF87B6D25FEFA + +Set 3, vector# 39: + key=27272727272727272727272727272727 + plain=27272727272727272727272727272727 + cipher=809DBC1AC520DAF3F69C9060528BE779 + decrypted=27272727272727272727272727272727 + Iterated 100 times=99B6880AE478BCC8800F57CD04E88CBB + Iterated 1000 times=4B4B33BE6B8324891F0394DFE2041B21 + +Set 3, vector# 40: + key=28282828282828282828282828282828 + plain=28282828282828282828282828282828 + cipher=F3C4BBBEE1DEA1C2372DCB92A0D89EEA + decrypted=28282828282828282828282828282828 + Iterated 100 times=7989DA6C8DE6F6691D275667464481C2 + Iterated 1000 times=FCB725E33E8687BA8CCD93ECCDD67BAE + +Set 3, vector# 41: + key=29292929292929292929292929292929 + plain=29292929292929292929292929292929 + cipher=456F72D7FEFBFF5846D13A8AD705D1F1 + decrypted=29292929292929292929292929292929 + Iterated 100 times=EED05D9749BC288FE670AF9A3283D2AD + Iterated 1000 times=29AA7A9F5FC4BFA6DE80CE893781A956 + +Set 3, vector# 42: + key=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + plain=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + cipher=EBB89ED9043398D4E4F506EBE1992F11 + decrypted=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + Iterated 100 times=F0530D8036EB01069848D630308365E9 + Iterated 1000 times=E93DCB8E4E86EB6310FC91D14914CE35 + +Set 3, vector# 43: + key=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + plain=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + cipher=BAC1D7F3EB6B0D273D22A328C4340EA3 + decrypted=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + Iterated 100 times=7B251A845A21A3FD32041CEC85DE9C44 + Iterated 1000 times=418C5D610D4FBE87AB60B3F0E540B60B + +Set 3, vector# 44: + key=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + plain=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + cipher=977492C59AA0696CF4CE6B14367BDA78 + decrypted=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + Iterated 100 times=7294D68D221C231F81ED1C1CF78457E0 + Iterated 1000 times=6E8504F0A7E692EC08A24A635A290284 + +Set 3, vector# 45: + key=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + plain=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + cipher=02EC9B238DCCA677D053DBBA77D8F84A + decrypted=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + Iterated 100 times=F0191F2D6206A597C01361CEA74495C7 + Iterated 1000 times=5AC5FCBF59C67C75D8158105F6B42042 + +Set 3, vector# 46: + key=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + plain=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + cipher=FCD196D980EEE141B18438CDFA9A7EF7 + decrypted=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + Iterated 100 times=BBF8743BE91FE030A49535A9E983049C + Iterated 1000 times=B57885B95CC1A4D4983D120FC0A02020 + +Set 3, vector# 47: + key=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + plain=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + cipher=8F7FE1F78D93E09DD796241EF5FA7642 + decrypted=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + Iterated 100 times=D8F82420EEF3B907B4EBF96FFF246269 + Iterated 1000 times=951803FF8E9CDEAE92C6896D99A4A659 + +Set 3, vector# 48: + key=30303030303030303030303030303030 + plain=30303030303030303030303030303030 + cipher=93ADDE5D5BCC705A78F255CB63DEADC6 + decrypted=30303030303030303030303030303030 + Iterated 100 times=774D70A85ED62860BD8D2110DF34C72A + Iterated 1000 times=0ECDDD3C5B75E8C00BE6D167FC929546 + +Set 3, vector# 49: + key=31313131313131313131313131313131 + plain=31313131313131313131313131313131 + cipher=A36759B9E4F81E049209A111CD09E4D6 + decrypted=31313131313131313131313131313131 + Iterated 100 times=96779AC72598C589DE6D9EEB856C3E41 + Iterated 1000 times=9449552B2BE2AE1CEED34C09748D6F0F + +Set 3, vector# 50: + key=32323232323232323232323232323232 + plain=32323232323232323232323232323232 + cipher=9C620EABF0E0A243E6C2A4E55E578CA3 + decrypted=32323232323232323232323232323232 + Iterated 100 times=98D2F0CEC65C6DC4AE1EFA45BC54D178 + Iterated 1000 times=A29137E1207AC2EB47AC35884728F503 + +Set 3, vector# 51: + key=33333333333333333333333333333333 + plain=33333333333333333333333333333333 + cipher=258EF672EFE94EC2FC0ABD2E956503CD + decrypted=33333333333333333333333333333333 + Iterated 100 times=D2F400ADF05ADC585A92236BF935B5FA + Iterated 1000 times=C29B4F8B969E45AAC7F5EE485ED480CC + +Set 3, vector# 52: + key=34343434343434343434343434343434 + plain=34343434343434343434343434343434 + cipher=38D8E5E70315A90B7083E63E990158A8 + decrypted=34343434343434343434343434343434 + Iterated 100 times=13AC73D2AF58BC5139026095A696D3DB + Iterated 1000 times=C16D87BCA988DA5DA6315051CA8E6E52 + +Set 3, vector# 53: + key=35353535353535353535353535353535 + plain=35353535353535353535353535353535 + cipher=84ED1996DBBB9C743CC75CCA5073D365 + decrypted=35353535353535353535353535353535 + Iterated 100 times=D4E0E84498DFD4F9CD6D95B7866C6A33 + Iterated 1000 times=D1F8D17A57AC3EF83F24BA92D6C2AB59 + +Set 3, vector# 54: + key=36363636363636363636363636363636 + plain=36363636363636363636363636363636 + cipher=2FE9C2C76B786A7C8D492997766C6D53 + decrypted=36363636363636363636363636363636 + Iterated 100 times=4B2F156A43D2E5E7AB31ADCC4BBE887E + Iterated 1000 times=CA2770A7CC99AE721FD69EB2B236922E + +Set 3, vector# 55: + key=37373737373737373737373737373737 + plain=37373737373737373737373737373737 + cipher=9BD32DEE59B0309899BEA2161AC24528 + decrypted=37373737373737373737373737373737 + Iterated 100 times=06F173D8C81C7FAEBF193F576D25AA0A + Iterated 1000 times=910246F700681D18D2636E2147DF9780 + +Set 3, vector# 56: + key=38383838383838383838383838383838 + plain=38383838383838383838383838383838 + cipher=2C26509645270E6774C73910EC83C150 + decrypted=38383838383838383838383838383838 + Iterated 100 times=94200909D8D1A58382C8254F07B01F15 + Iterated 1000 times=6113D72FC77226A14D9693DE0266C8F6 + +Set 3, vector# 57: + key=39393939393939393939393939393939 + plain=39393939393939393939393939393939 + cipher=AE80F4F36DE515541B0EF429A01AF6F5 + decrypted=39393939393939393939393939393939 + Iterated 100 times=01D7F60FB13706DFE8E7FB78E4E0C264 + Iterated 1000 times=E715BDAE51ECE59C824A77591C31DBC6 + +Set 3, vector# 58: + key=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + plain=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + cipher=886CC8AEB0998F1CC89A8AD5A8AF1DA4 + decrypted=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + Iterated 100 times=6CAEE147147EFFB3942CD7EA4347A430 + Iterated 1000 times=51FB7E33D26D706F51E3DBEBA8C0FD30 + +Set 3, vector# 59: + key=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + plain=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + cipher=6DCD3F708450D4D3EDB3AFF70A9D8A0F + decrypted=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + Iterated 100 times=E6936F1DA360375F1EE340466C23AEF3 + Iterated 1000 times=427312AB66170C64F6265C986C41D385 + +Set 3, vector# 60: + key=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + plain=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + cipher=44B6C45DB991664B0CC644AA18C27EAD + decrypted=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + Iterated 100 times=E629CF5A087CC427263A88EA70632FEC + Iterated 1000 times=FAA754D1C8A507636F5D561750897062 + +Set 3, vector# 61: + key=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + plain=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + cipher=9634EDA9D6DB4671FE7B94D39307E58E + decrypted=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + Iterated 100 times=90C5D7A2FFA57B51D425ADE2B08D1011 + Iterated 1000 times=C36F9570E98D7E28A0D4F7141FBC5B0D + +Set 3, vector# 62: + key=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + plain=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + cipher=5C7FFBF2B9D14EF4B4C945C86D507819 + decrypted=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + Iterated 100 times=2743AD194BB2E8379B7D6A9AFD2564E8 + Iterated 1000 times=0F4D80ED4C4ED9A326C6A1DAE7C3ECBB + +Set 3, vector# 63: + key=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + plain=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + cipher=CC2C61113CEF6D8AFCD88C6EF862E8D1 + decrypted=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + Iterated 100 times=DF4C102F41E1A5B8A3D8BF3E4618C1EB + Iterated 1000 times=92B737EAA05AB68FF34B8C57E39EC5A6 + +Set 3, vector# 64: + key=40404040404040404040404040404040 + plain=40404040404040404040404040404040 + cipher=B383737069D3294A439D9C9575A9ED58 + decrypted=40404040404040404040404040404040 + Iterated 100 times=B2E4786F588AC037C0344535566212B9 + Iterated 1000 times=E84266D2298E8947B877CDF3B000E213 + +Set 3, vector# 65: + key=41414141414141414141414141414141 + plain=41414141414141414141414141414141 + cipher=22B7BA30AA1A60D61CF7378C862309F6 + decrypted=41414141414141414141414141414141 + Iterated 100 times=F9D37E0FB858333E9F703D97A0C2FCC0 + Iterated 1000 times=9B02AFB6E6E450E5AF539DD98A46C20B + +Set 3, vector# 66: + key=42424242424242424242424242424242 + plain=42424242424242424242424242424242 + cipher=E0C8BC32CF3359EE83AE7C56CD4A2BC5 + decrypted=42424242424242424242424242424242 + Iterated 100 times=589B34B16A708BA65E24360AD61C3BE3 + Iterated 1000 times=601136E62BD3BCCF092FEF54BC1F915A + +Set 3, vector# 67: + key=43434343434343434343434343434343 + plain=43434343434343434343434343434343 + cipher=A9768B0A1AC992253596BB469EDD42D9 + decrypted=43434343434343434343434343434343 + Iterated 100 times=1B66F44A6143F23CDA56C8C389ECF7EB + Iterated 1000 times=3580DBEB397AA3471A0BF7B06F054129 + +Set 3, vector# 68: + key=44444444444444444444444444444444 + plain=44444444444444444444444444444444 + cipher=23957B46AA29849A89F5112A0E58C4A5 + decrypted=44444444444444444444444444444444 + Iterated 100 times=1163721E57A40010D1B90A23B8DF0F61 + Iterated 1000 times=A454067CB46E20CAC0CED2D05CDB5681 + +Set 3, vector# 69: + key=45454545454545454545454545454545 + plain=45454545454545454545454545454545 + cipher=E2414401FB44191E073E6372DF263B9E + decrypted=45454545454545454545454545454545 + Iterated 100 times=32FECD875073D06BFF22D5E7F7B656C9 + Iterated 1000 times=1A340A304072B8F32677CC6015578033 + +Set 3, vector# 70: + key=46464646464646464646464646464646 + plain=46464646464646464646464646464646 + cipher=3218714034EEC0CD45C69F4A6AFCD326 + decrypted=46464646464646464646464646464646 + Iterated 100 times=69BE4F009E514F998A02CA97E4D2261A + Iterated 1000 times=A9F59A2ACA637D411B6D89CF7766C128 + +Set 3, vector# 71: + key=47474747474747474747474747474747 + plain=47474747474747474747474747474747 + cipher=7A477C648B96F8D46706C90B53BE1DA4 + decrypted=47474747474747474747474747474747 + Iterated 100 times=A1C51739CC24276E4B45B8999068E082 + Iterated 1000 times=D2D21C6FA856FFCE37B142993882BA6D + +Set 3, vector# 72: + key=48484848484848484848484848484848 + plain=48484848484848484848484848484848 + cipher=0769F6296DA3D944EFDD7EB85DA9F9DD + decrypted=48484848484848484848484848484848 + Iterated 100 times=DA75C6C687891BF13156F1EA1B4D4BA8 + Iterated 1000 times=3202AB96D3084CF4687A9A353F556607 + +Set 3, vector# 73: + key=49494949494949494949494949494949 + plain=49494949494949494949494949494949 + cipher=64F9CE64F0B6436607E6C46C32658024 + decrypted=49494949494949494949494949494949 + Iterated 100 times=5BF50D5CBFFD4182CEA9EF016043473A + Iterated 1000 times=36F0F35B25292717C9910BE96681EDB5 + +Set 3, vector# 74: + key=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + plain=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + cipher=E820D9800E52C8F60F2FACC74763328D + decrypted=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + Iterated 100 times=AB097CC05C50FF1D047B75F9F528F5A5 + Iterated 1000 times=57BC4C5430941D0036998E0CE7FA70E5 + +Set 3, vector# 75: + key=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + plain=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + cipher=C29599E0FC8518CF6C72AB99C4531CE1 + decrypted=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + Iterated 100 times=965E5B8F3DE49AB950FE3E1752EFED54 + Iterated 1000 times=E8F9D97D20718D4667BE74E0C140A9AE + +Set 3, vector# 76: + key=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + plain=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + cipher=FEB89A5C22513AE95E3C66EA16F9CA21 + decrypted=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + Iterated 100 times=CFD9CCC9190B2A31843F4085901EB883 + Iterated 1000 times=6B156C65EA071B716085F20E1538AA8F + +Set 3, vector# 77: + key=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + plain=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + cipher=62840E9B6D79A148C1C2234FF79781AD + decrypted=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + Iterated 100 times=9F372CF05D140E09668EB860F01766F8 + Iterated 1000 times=AEEA4CF2F0B75FF09227180218A15D40 + +Set 3, vector# 78: + key=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + plain=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + cipher=1A8EA4C79EAF31C809C06F7803E919CC + decrypted=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + Iterated 100 times=26500F933832A72C0FB6B71276D90AA5 + Iterated 1000 times=5EEC4B2E175B39D19B19356468BD99F4 + +Set 3, vector# 79: + key=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + plain=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + cipher=35D5F249B6EBA0EBA463E0917A730739 + decrypted=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + Iterated 100 times=EFE9ED7DC6597A20FAD7E8C9C560B7CF + Iterated 1000 times=C12D4D4ABACD1D1F1182B8EAB40A478A + +Set 3, vector# 80: + key=50505050505050505050505050505050 + plain=50505050505050505050505050505050 + cipher=508246D9A314F533CA85E5C4551444F0 + decrypted=50505050505050505050505050505050 + Iterated 100 times=A153D7F051183C5DE622204240423472 + Iterated 1000 times=2DDAA45D5EBD6EF8E69E7ECB587C6204 + +Set 3, vector# 81: + key=51515151515151515151515151515151 + plain=51515151515151515151515151515151 + cipher=C39184E78369F0CFC93F2264FC2CAB4C + decrypted=51515151515151515151515151515151 + Iterated 100 times=558354D964F68DB016FBB19714C27902 + Iterated 1000 times=48365F9C6E955846F3665FBACD1CF01D + +Set 3, vector# 82: + key=52525252525252525252525252525252 + plain=52525252525252525252525252525252 + cipher=CBC5969C890D23FC55C5EA26EEE8A20B + decrypted=52525252525252525252525252525252 + Iterated 100 times=7E9B64B549CB81D9E0782E4FC89FD7F2 + Iterated 1000 times=361667013A3503BC56B301A003200E9D + +Set 3, vector# 83: + key=53535353535353535353535353535353 + plain=53535353535353535353535353535353 + cipher=8020E474C22F865D90D07FDEEFCEF6F6 + decrypted=53535353535353535353535353535353 + Iterated 100 times=297A01F40C7481A52EBA213CD46D6CF9 + Iterated 1000 times=AE005D069D86751C5F6B4D6D9DBBA302 + +Set 3, vector# 84: + key=54545454545454545454545454545454 + plain=54545454545454545454545454545454 + cipher=79BBEDBDBF02BE5DD698E102A8BF3E2B + decrypted=54545454545454545454545454545454 + Iterated 100 times=855BCB542B10E74CEEE23B89F9557C06 + Iterated 1000 times=044996B76DB81EFEE88BA9DEC53DD22E + +Set 3, vector# 85: + key=55555555555555555555555555555555 + plain=55555555555555555555555555555555 + cipher=E6A3834D4F451574B65AEB22379B4D65 + decrypted=55555555555555555555555555555555 + Iterated 100 times=FFCA1B9ACAC070C9753A70CA80AB5461 + Iterated 1000 times=B335483FF2005F9862ACD0CF4C417F96 + +Set 3, vector# 86: + key=56565656565656565656565656565656 + plain=56565656565656565656565656565656 + cipher=A3F450CC8BF93CDE7E744270F3A6DF9A + decrypted=56565656565656565656565656565656 + Iterated 100 times=573E2BAE66FBADFFB3A92D58D7C4332A + Iterated 1000 times=B9FAF46183207751473B0CB873713C46 + +Set 3, vector# 87: + key=57575757575757575757575757575757 + plain=57575757575757575757575757575757 + cipher=ADA6A53E1EA57346AEBCC4A1C4F9EE28 + decrypted=57575757575757575757575757575757 + Iterated 100 times=473FE225F0F758C1299763387355849C + Iterated 1000 times=C226465E38E138EFAE93FE537ADE7C3F + +Set 3, vector# 88: + key=58585858585858585858585858585858 + plain=58585858585858585858585858585858 + cipher=656A594D7632FDA5F683B0C269F0A77C + decrypted=58585858585858585858585858585858 + Iterated 100 times=49BC7D11E36E5DD608BA5BFF8458BBE8 + Iterated 1000 times=18D21F0EA79BCCAFBDE0ABABD9EE7D9A + +Set 3, vector# 89: + key=59595959595959595959595959595959 + plain=59595959595959595959595959595959 + cipher=81FFAA2DE743669157E8E94763D6DDB9 + decrypted=59595959595959595959595959595959 + Iterated 100 times=B93EA15732C3B935997958F0D8BC4737 + Iterated 1000 times=4D15A2AD2989C64499080D55E31758D5 + +Set 3, vector# 90: + key=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + plain=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + cipher=05D935140ED67562FE3CA7F9CFB39FF4 + decrypted=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + Iterated 100 times=630A68D0024A1554AB6709A97749B745 + Iterated 1000 times=D0557CEE9E9FAF0F9F6FCCE982716EE2 + +Set 3, vector# 91: + key=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + plain=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + cipher=AEE95B5394C72844EA8AE73751E51E94 + decrypted=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + Iterated 100 times=DD735F176F3A237963A07EC138B0ECCA + Iterated 1000 times=EB0A058106EE4DF8995DC35C6E87DFF1 + +Set 3, vector# 92: + key=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + plain=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + cipher=C47012BB93A4B600656EF74D77016BBD + decrypted=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + Iterated 100 times=DC056ABB160C33D2F989633CBE789E21 + Iterated 1000 times=6A32E371CE9E2CFC6994CEE9A748AD69 + +Set 3, vector# 93: + key=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + plain=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + cipher=29C99BBFE76F6EC9D9551C424C852285 + decrypted=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + Iterated 100 times=D639FF296C57DDBE5284782C6E3760C2 + Iterated 1000 times=85DA09DE347242E44BB081B1F267F1C9 + +Set 3, vector# 94: + key=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + plain=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + cipher=6A68920B67BAA7411AC41B49CF6A6B54 + decrypted=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + Iterated 100 times=39F82696295EC01FDF9602D1FE0A1C20 + Iterated 1000 times=42D229E4B09D88880D2D730562173731 + +Set 3, vector# 95: + key=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + plain=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + cipher=83E953ED2561A8B72250DD3A118EF979 + decrypted=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + Iterated 100 times=17737E01302BB961F9A4763BECD89968 + Iterated 1000 times=D244472BBCD046FA7EE0B378BE2B4D67 + +Set 3, vector# 96: + key=60606060606060606060606060606060 + plain=60606060606060606060606060606060 + cipher=E282DC2094C8D937409669BC53529097 + decrypted=60606060606060606060606060606060 + Iterated 100 times=61B98341B05F9FCDEC04B48433138C14 + Iterated 1000 times=BED6961D66DCBAC491CD69193056748E + +Set 3, vector# 97: + key=61616161616161616161616161616161 + plain=61616161616161616161616161616161 + cipher=845B0D3D5179FC82103BF8A8F682E300 + decrypted=61616161616161616161616161616161 + Iterated 100 times=154D4D9B4ED5F44C56D7BAA6D8DE57D8 + Iterated 1000 times=13FD8251FEF767E6B249A518DA1B365D + +Set 3, vector# 98: + key=62626262626262626262626262626262 + plain=62626262626262626262626262626262 + cipher=C5DA801ED5A9EBED35E0341915228A55 + decrypted=62626262626262626262626262626262 + Iterated 100 times=F7A1D801D2431007FA79D92F6687E632 + Iterated 1000 times=0AAD782C8791FD1ED5E9D6FE3371592F + +Set 3, vector# 99: + key=63636363636363636363636363636363 + plain=63636363636363636363636363636363 + cipher=BEE78729657FFE4DFE147C21A60E95FC + decrypted=63636363636363636363636363636363 + Iterated 100 times=ECCDC28E14A09D51F07D6AA6363B95E8 + Iterated 1000 times=E1CDDD429188694CDE3420C3AD2949B0 + +Set 3, vector#100: + key=64646464646464646464646464646464 + plain=64646464646464646464646464646464 + cipher=34E29F93771D60DAC50B127845198716 + decrypted=64646464646464646464646464646464 + Iterated 100 times=D613672B4DD533B0A94BE4A1C1A23E9D + Iterated 1000 times=C3B33BA1610793B3CC36049B1C06143A + +Set 3, vector#101: + key=65656565656565656565656565656565 + plain=65656565656565656565656565656565 + cipher=1286567EDC194597FAB851E4B90539C6 + decrypted=65656565656565656565656565656565 + Iterated 100 times=1CA2504AFBB525998FC0AE82AB41BCF5 + Iterated 1000 times=629AAC486633CF137A1304FCF8765002 + +Set 3, vector#102: + key=66666666666666666666666666666666 + plain=66666666666666666666666666666666 + cipher=F30455C59D04AA5B292A30FBDF9C6825 + decrypted=66666666666666666666666666666666 + Iterated 100 times=BB3CF616B7374222FF5CE5E15877D5D7 + Iterated 1000 times=FEE9B93F260C8F0D74FD49B27BFD5447 + +Set 3, vector#103: + key=67676767676767676767676767676767 + plain=67676767676767676767676767676767 + cipher=A111DA693F19EB648F6E38FF0E6CCC91 + decrypted=67676767676767676767676767676767 + Iterated 100 times=0204712736B7CC7F63518DDEE3EE7B59 + Iterated 1000 times=3BF37CF8431856662C2AF9BE0AE0465E + +Set 3, vector#104: + key=68686868686868686868686868686868 + plain=68686868686868686868686868686868 + cipher=8D8D1FEC2C62A8C902C02442491F159B + decrypted=68686868686868686868686868686868 + Iterated 100 times=8C1E07B28C1A0EA1671421249A6A6E82 + Iterated 1000 times=1C2541CC46D58AE2DCE101DAA2B87876 + +Set 3, vector#105: + key=69696969696969696969696969696969 + plain=69696969696969696969696969696969 + cipher=9644B45F8DB2C40F265CE403DEE46D2A + decrypted=69696969696969696969696969696969 + Iterated 100 times=9926655997936950A160A9A53EA03ABA + Iterated 1000 times=75304C12A36597EF900B7E730B83E59E + +Set 3, vector#106: + key=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + plain=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + cipher=B45D7328313BA8182B58DA108261A474 + decrypted=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + Iterated 100 times=4A3A1044F078C9DCF981217D0EB0E80D + Iterated 1000 times=24903DD8E4C60B42774CDB99710172A5 + +Set 3, vector#107: + key=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + plain=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + cipher=BBE61D8F51DD0A25F83BC5CBF6E55BDE + decrypted=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + Iterated 100 times=F8A758D114D16A86290B2D0251B7D7DF + Iterated 1000 times=D00987CDCF81A1FE10A02142C1BBCBAD + +Set 3, vector#108: + key=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + plain=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + cipher=BD0981313CC1EAE09E99EFE305869D02 + decrypted=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + Iterated 100 times=6830A2579C68F46BCC9CCF4788B16B26 + Iterated 1000 times=3957927468AD8707081F7174D02F66E8 + +Set 3, vector#109: + key=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + plain=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + cipher=360B97BEDE6FEA19ABADD7CC45778623 + decrypted=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + Iterated 100 times=C1A92BFF50AA6A82DA9D3924A8E5D72A + Iterated 1000 times=BF1CC2D0C12019B7C935DAB901DD6C9A + +Set 3, vector#110: + key=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + plain=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + cipher=BBDC3CC9421903A75CD4C40B654437EC + decrypted=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + Iterated 100 times=F2DDF604046BC2F92E142B7BBD352BC1 + Iterated 1000 times=2E10F3B9F7AD2A8DC907D67727AA344A + +Set 3, vector#111: + key=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + plain=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + cipher=E9656004887BC5B2A310BBE28EE67A19 + decrypted=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + Iterated 100 times=CAE8639C67E94074D84F04BD00498B4F + Iterated 1000 times=CE80EA5E415701FDA2EA0A367BDBA2E7 + +Set 3, vector#112: + key=70707070707070707070707070707070 + plain=70707070707070707070707070707070 + cipher=7D756A587EF8CF97366B2ABE4916867A + decrypted=70707070707070707070707070707070 + Iterated 100 times=FA41EB31FBA6889D5A246EDA7DB2711F + Iterated 1000 times=81A2408CF0BF9F7A517491DC6044C12E + +Set 3, vector#113: + key=71717171717171717171717171717171 + plain=71717171717171717171717171717171 + cipher=EE7DCFCD9C3BC3B56FCCE54B7FC24C98 + decrypted=71717171717171717171717171717171 + Iterated 100 times=5267EB28F2C937E5BF12281AD60CCD26 + Iterated 1000 times=4D553DB9945A5D62C8AF773AA4682E9B + +Set 3, vector#114: + key=72727272727272727272727272727272 + plain=72727272727272727272727272727272 + cipher=09B81E378035CC957F62149063A70CF3 + decrypted=72727272727272727272727272727272 + Iterated 100 times=9807C69715F4C046D99ECA8BD7E1432B + Iterated 1000 times=2E6025A5AED3273A4ED1104228F7B356 + +Set 3, vector#115: + key=73737373737373737373737373737373 + plain=73737373737373737373737373737373 + cipher=B6E09DFE4474CF7E0937D5F5EB01D74C + decrypted=73737373737373737373737373737373 + Iterated 100 times=D7B07F266B805E0F7CD71F73FCD6C65C + Iterated 1000 times=23D64837E9F860F4CD79F1D3B2650BA2 + +Set 3, vector#116: + key=74747474747474747474747474747474 + plain=74747474747474747474747474747474 + cipher=CCD21F5AD722D532414FC053765CB489 + decrypted=74747474747474747474747474747474 + Iterated 100 times=4068EFAB67F9FC2A5F044817FBCC69A1 + Iterated 1000 times=67DC2103758B14B05FB729414AE23A78 + +Set 3, vector#117: + key=75757575757575757575757575757575 + plain=75757575757575757575757575757575 + cipher=3187A45AADE481DC8362850A3D22A459 + decrypted=75757575757575757575757575757575 + Iterated 100 times=816FB9CE01D533E3AD6DE06CC49834DE + Iterated 1000 times=4DFEC60577D7C4608495F5BA694BF9DB + +Set 3, vector#118: + key=76767676767676767676767676767676 + plain=76767676767676767676767676767676 + cipher=D512B88C0BC274E1A2F7BCD9B70FBF08 + decrypted=76767676767676767676767676767676 + Iterated 100 times=D230C453E454F4397526311C33E72403 + Iterated 1000 times=876BC70D72C88887EFEB54992C33A6A3 + +Set 3, vector#119: + key=77777777777777777777777777777777 + plain=77777777777777777777777777777777 + cipher=0C86402A314AA469E8BBA201E988D9CE + decrypted=77777777777777777777777777777777 + Iterated 100 times=E23F28FA4772C0BDE63F817F67E48CFF + Iterated 1000 times=F3BE57375C6F05690646B2855401509F + +Set 3, vector#120: + key=78787878787878787878787878787878 + plain=78787878787878787878787878787878 + cipher=A5A1F2AA62BD27CA48BDA58BF86465D1 + decrypted=78787878787878787878787878787878 + Iterated 100 times=98570DBBE9DA98CD5349FFFD3AC8D29D + Iterated 1000 times=2DF0350DA354EAF33301EDC775A4C7F4 + +Set 3, vector#121: + key=79797979797979797979797979797979 + plain=79797979797979797979797979797979 + cipher=94D31ACFAFDFB0218A6FC962F62583DD + decrypted=79797979797979797979797979797979 + Iterated 100 times=681FF9B3D4E76E12D335F07260A66FB0 + Iterated 1000 times=182BBEAD804E4D0CC8E472B9A4408200 + +Set 3, vector#122: + key=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + plain=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + cipher=9FBA4A787275EB3FF570A820D04636ED + decrypted=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + Iterated 100 times=C24405A0C9D6DD8F8652B62B8793B143 + Iterated 1000 times=5668FDDBF3B9A604DA1C484C02B31832 + +Set 3, vector#123: + key=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + plain=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + cipher=765B15F7126B8F2F72D1E06A4C61C355 + decrypted=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + Iterated 100 times=B201AD1E787C6A6A523F89F504E46336 + Iterated 1000 times=B4C3D259A76C5256DA9C280A2867B898 + +Set 3, vector#124: + key=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + plain=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + cipher=CB29835E2B08061ADD98C04D33932BA6 + decrypted=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + Iterated 100 times=190F235D522932C654660AB8F6AB9CB7 + Iterated 1000 times=4014D38EE1EFB97824A823CE18CC192E + +Set 3, vector#125: + key=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + plain=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + cipher=1E13456FED1354D1B205696530457F85 + decrypted=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + Iterated 100 times=D8B7DB086820290BD3B567450ADF101C + Iterated 1000 times=CA87D21498B0E0BED9956B6238EFB72C + +Set 3, vector#126: + key=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + plain=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + cipher=7DBE27079ED09BA493B470139A0FF9B6 + decrypted=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + Iterated 100 times=0792D987FBEED606C270C2BCB0ABD10F + Iterated 1000 times=D33209B19E73A5D6CAB823051973AFE3 + +Set 3, vector#127: + key=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + plain=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + cipher=829B50EB69B068FC958AF08C0748B3BF + decrypted=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + Iterated 100 times=2ABB2809B705345A7B580DA2B6D9F488 + Iterated 1000 times=B4C238C4B0ABF59B6E8A42656428A8C2 + +Set 3, vector#128: + key=80808080808080808080808080808080 + plain=80808080808080808080808080808080 + cipher=F8CB33BB4F9A681EC4AE2D0945E26864 + decrypted=80808080808080808080808080808080 + Iterated 100 times=74036AB8096980BD1D308C88EF0B5B1E + Iterated 1000 times=6FFE7DD17CD06667F72DCF9E3D5D302B + +Set 3, vector#129: + key=81818181818181818181818181818181 + plain=81818181818181818181818181818181 + cipher=4F6107A714B2FC6A0ACBEF27E0075D2B + decrypted=81818181818181818181818181818181 + Iterated 100 times=78B6EF30F67651F2BDB45656F1BB8F8B + Iterated 1000 times=6B76890924D41C3E52124BEF26D7BF58 + +Set 3, vector#130: + key=82828282828282828282828282828282 + plain=82828282828282828282828282828282 + cipher=B0EB1466353D31447AC3BCA5BB0BC8A3 + decrypted=82828282828282828282828282828282 + Iterated 100 times=C3D34352DCF36B13C3ADCB84B2CDD9F6 + Iterated 1000 times=F1D1477AE6744287587DF71DC559255B + +Set 3, vector#131: + key=83838383838383838383838383838383 + plain=83838383838383838383838383838383 + cipher=66E43FD3DD78900B81790F6E5A08C519 + decrypted=83838383838383838383838383838383 + Iterated 100 times=0122AEF3EE1AD9731FBDF3D6833A618E + Iterated 1000 times=37479849A1DBEFA13DDAD8E3BA5D99E7 + +Set 3, vector#132: + key=84848484848484848484848484848484 + plain=84848484848484848484848484848484 + cipher=1FEF3C333F4450AEAD4C078210E00062 + decrypted=84848484848484848484848484848484 + Iterated 100 times=1CB8D88654931966A4EDB9324D4250C1 + Iterated 1000 times=580C805E4459CB21176FFB211C3EF23F + +Set 3, vector#133: + key=85858585858585858585858585858585 + plain=85858585858585858585858585858585 + cipher=0F24B7FDDBB3AB91D265CD3717F68C1B + decrypted=85858585858585858585858585858585 + Iterated 100 times=68911C96618BE72530EB55AE51B1A17C + Iterated 1000 times=8AC6B6987B64987C3244F449D9587B11 + +Set 3, vector#134: + key=86868686868686868686868686868686 + plain=86868686868686868686868686868686 + cipher=F507235CBF60D9FE6BB03CF4E590AC38 + decrypted=86868686868686868686868686868686 + Iterated 100 times=CCE7E0196C77F39722D5240475D044AD + Iterated 1000 times=B0F709DE1B20B61339198239D728A301 + +Set 3, vector#135: + key=87878787878787878787878787878787 + plain=87878787878787878787878787878787 + cipher=4A3D10F48D15D26B39891D2055FA0B62 + decrypted=87878787878787878787878787878787 + Iterated 100 times=6E37C9B821A79684B1259FB4C6E57420 + Iterated 1000 times=719EF418306EF6EE14EF7C7F4C164696 + +Set 3, vector#136: + key=88888888888888888888888888888888 + plain=88888888888888888888888888888888 + cipher=DB0E7716ECD8FA119AD4D34C1253898F + decrypted=88888888888888888888888888888888 + Iterated 100 times=543F308564B3381B0139E59819F56C92 + Iterated 1000 times=2D7C336A89A7B00487F3C10998380328 + +Set 3, vector#137: + key=89898989898989898989898989898989 + plain=89898989898989898989898989898989 + cipher=F5AE7D0F1B899D201DC4AF8FC466D407 + decrypted=89898989898989898989898989898989 + Iterated 100 times=0562428BCD4533DCA70131FEB32CBFA3 + Iterated 1000 times=5BC6770740D7B00C4A6534F35ACE9A44 + +Set 3, vector#138: + key=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + plain=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + cipher=543AACB5ACD014500AEC23E4B2FE7781 + decrypted=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + Iterated 100 times=09F0EAA38794AE7DA9E9B2F1A09C97A9 + Iterated 1000 times=D3220D418B8A913DF659582ED3AEB5AC + +Set 3, vector#139: + key=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + plain=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + cipher=0AC7B779592BB0AE7FD3FACF9A1EAC82 + decrypted=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + Iterated 100 times=D77CFC0BD955B66541C864A172632561 + Iterated 1000 times=400F25AE8FCFEE2690886E57A9BEF2C8 + +Set 3, vector#140: + key=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + plain=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + cipher=A9CE4B8F8C208F8A4DE21A1F6C4110A8 + decrypted=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + Iterated 100 times=0FC813B6E50BA41C62F3634C3F1DA919 + Iterated 1000 times=D550F919D1F57A2C8EDA4AC7BD5477A1 + +Set 3, vector#141: + key=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + plain=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + cipher=CC6D79F3C8EA6C9F1B73919142B3D512 + decrypted=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + Iterated 100 times=9BE1C252A66C34C3241C7E51DC61B1EC + Iterated 1000 times=7F4545E126D68021A7A28A04DB2E2898 + +Set 3, vector#142: + key=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + plain=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + cipher=71B235FC05CC41F81375FD13DC7CDD3D + decrypted=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + Iterated 100 times=5D1DEBA667DCE74AF99A1C15B7EFE11C + Iterated 1000 times=8B7E2D7915E3F81E08DF8C73588F7AD2 + +Set 3, vector#143: + key=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + plain=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + cipher=CB80544DBD9EC6C8C0425EC0119501DA + decrypted=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + Iterated 100 times=A2F525C40DAB74666990EDF4881744E6 + Iterated 1000 times=26AF5AD5D3AFC39ED62C27DB89D99C50 + +Set 3, vector#144: + key=90909090909090909090909090909090 + plain=90909090909090909090909090909090 + cipher=068245A076220FA6E3342D92F4880729 + decrypted=90909090909090909090909090909090 + Iterated 100 times=121179AA7AA3065B94F1C74366FEC4E7 + Iterated 1000 times=48441E6DF9200C13C2184077AE3AA241 + +Set 3, vector#145: + key=91919191919191919191919191919191 + plain=91919191919191919191919191919191 + cipher=1299AC05BEF2CEF3BFF7931CC00EEA25 + decrypted=91919191919191919191919191919191 + Iterated 100 times=A666668AA558A59EC5FD0DF6A4CD3A7A + Iterated 1000 times=3C1E2461A90F0F13A1C899622736B4EB + +Set 3, vector#146: + key=92929292929292929292929292929292 + plain=92929292929292929292929292929292 + cipher=9A456531E79B99A424DD15AD2E436745 + decrypted=92929292929292929292929292929292 + Iterated 100 times=D9E8ACC33643511A4F6C37392F16B19B + Iterated 1000 times=20F440166CBAB8EF24BBE3CDB2734258 + +Set 3, vector#147: + key=93939393939393939393939393939393 + plain=93939393939393939393939393939393 + cipher=3A902B9118AE9F1C852C7FB529205C8C + decrypted=93939393939393939393939393939393 + Iterated 100 times=5E05C41D755AAA5C3D70DE5359054749 + Iterated 1000 times=85BAD1EE009633F0727D62EB66BAC2B6 + +Set 3, vector#148: + key=94949494949494949494949494949494 + plain=94949494949494949494949494949494 + cipher=1FB47EB829BA0A94A84F91AF8D896253 + decrypted=94949494949494949494949494949494 + Iterated 100 times=F180E93125B589BA719316822B1EA4B9 + Iterated 1000 times=C81FF810C1743D36983076DA45B6341F + +Set 3, vector#149: + key=95959595959595959595959595959595 + plain=95959595959595959595959595959595 + cipher=9A71707337BCFC2992BF07170FF554F3 + decrypted=95959595959595959595959595959595 + Iterated 100 times=1266E996FB0F4297B5E5223CB7459745 + Iterated 1000 times=86A03CB51FCE5A3C200CB5A7D4F75F9B + +Set 3, vector#150: + key=96969696969696969696969696969696 + plain=96969696969696969696969696969696 + cipher=07496CD1D13B264CC0D2BB61D6774B61 + decrypted=96969696969696969696969696969696 + Iterated 100 times=5210BBBE314CC3EAAFFDF5CB1DC9D85D + Iterated 1000 times=DE7F966821D7E03FB15AB40E9348850B + +Set 3, vector#151: + key=97979797979797979797979797979797 + plain=97979797979797979797979797979797 + cipher=ADED2430509F7718E0F90698FAFB1F76 + decrypted=97979797979797979797979797979797 + Iterated 100 times=0890590C36C6C615CB3C95EF825E1621 + Iterated 1000 times=ED687F3CC929EAB0579777599C7774A1 + +Set 3, vector#152: + key=98989898989898989898989898989898 + plain=98989898989898989898989898989898 + cipher=ABB74982AD68D64F6D95BB80AB352A00 + decrypted=98989898989898989898989898989898 + Iterated 100 times=1613F312B5DD64631E4B0C71306BA468 + Iterated 1000 times=CC84E9E6321FA4248B80FF099B7FA672 + +Set 3, vector#153: + key=99999999999999999999999999999999 + plain=99999999999999999999999999999999 + cipher=CA7861CDC4C8BB74A1129409E3C79A20 + decrypted=99999999999999999999999999999999 + Iterated 100 times=E8AE7D7D18C183BF22DFE66B6333497E + Iterated 1000 times=B5975130484EE0EA0E29DF96D6597916 + +Set 3, vector#154: + key=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + plain=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + cipher=3532E956F373F653BBAF09934E9698C0 + decrypted=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + Iterated 100 times=1D5D0D20195218B95A6615D5B9C8F884 + Iterated 1000 times=C56DA8A7B3DA43D89C86E0EB4F06BF1E + +Set 3, vector#155: + key=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + plain=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + cipher=47749436B885FEFC39E1A8075BB0A44A + decrypted=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + Iterated 100 times=C04E2F445F2D3F5F9B3FDB2F32FD893A + Iterated 1000 times=865667C5545FFF2E84754517F09778F2 + +Set 3, vector#156: + key=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + plain=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + cipher=E94A32F8D91968B95E1B0DDADA9865CC + decrypted=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + Iterated 100 times=B34F52AD9A007EF4F3CC3810D7A51F27 + Iterated 1000 times=EAB801E973CB6B30C18BE2D4828BAAA0 + +Set 3, vector#157: + key=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + plain=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + cipher=879347BC44BDA1EA412051D0E33DEC97 + decrypted=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + Iterated 100 times=ADEF712962371C01C242047AF32105F1 + Iterated 1000 times=1C379504549F64F1ACF619EFF9726D8A + +Set 3, vector#158: + key=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + plain=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + cipher=45135198441A41734200580395821A49 + decrypted=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + Iterated 100 times=E71E389FAAD2DD6F13E88A35A0907415 + Iterated 1000 times=12268A60DF8CA040B6E123BB6C6749EC + +Set 3, vector#159: + key=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + plain=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + cipher=D4A360BBC13E1E161505B8B6802A9016 + decrypted=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + Iterated 100 times=D84AEE8C027B672E66A446AE2FD1B4DD + Iterated 1000 times=BEE338193859D62F22CE17F8DD6CD6DF + +Set 3, vector#160: + key=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + plain=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + cipher=0DCD189D422F2AF75395270848A4428D + decrypted=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + Iterated 100 times=76370886980FC49106EC6BFE69D47CE3 + Iterated 1000 times=E71E17B84C876F5127887641671B241F + +Set 3, vector#161: + key=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + plain=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + cipher=8C7AC16BBF6EAA13ECC46C67AC9E67FF + decrypted=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + Iterated 100 times=A49CB1D2D3FA8EF2A34ACCE448008663 + Iterated 1000 times=52B629F7841518F86AD0D362CB628EF7 + +Set 3, vector#162: + key=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + plain=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + cipher=E67874C454DF074A2BBBF93A8B01A4E0 + decrypted=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + Iterated 100 times=1B66A61F73917B007AAEFBC4221800B6 + Iterated 1000 times=483D9224BA45F29932269AC21F3550FA + +Set 3, vector#163: + key=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + plain=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + cipher=14D0378EB967574DC673929AF30A45C4 + decrypted=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + Iterated 100 times=377977D13528854214F9D3926623ED7C + Iterated 1000 times=FE3C21C2B21823D2D78CB4C71973721F + +Set 3, vector#164: + key=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + plain=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + cipher=82B3873B0A848E576D4E063074154D06 + decrypted=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + Iterated 100 times=FF9B8A1492E5758699BEF8DDCE583AF0 + Iterated 1000 times=F9BB7F604AF85B72899114848914A19F + +Set 3, vector#165: + key=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + plain=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + cipher=0FAE6126D69F214178493F107487AEF5 + decrypted=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + Iterated 100 times=92C7B8A1D34FF01C575EFB725168018F + Iterated 1000 times=F5995F205723615C82279B8ECA8B6323 + +Set 3, vector#166: + key=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + plain=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + cipher=9A5D1B55F03722EA1960B4916889C20B + decrypted=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + Iterated 100 times=84B376E64F67925701657303C0A05FFF + Iterated 1000 times=D29C08619B11CDDC0D65B9020C00D7AD + +Set 3, vector#167: + key=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + plain=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + cipher=89B7F3CFB19A562944A71C1AF06B359A + decrypted=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + Iterated 100 times=6ABBA086ABF3E4356D0AF9BB9EC9AF14 + Iterated 1000 times=570F5CBB050A23A3692985466B81BE97 + +Set 3, vector#168: + key=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + plain=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + cipher=F8304A08188BDE9DCECD9AE650FAFC3F + decrypted=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + Iterated 100 times=DEA84EE9C82A2B6B24782A78BA3196FA + Iterated 1000 times=4563B92D05607330507D7059773D04BE + +Set 3, vector#169: + key=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + plain=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + cipher=747BFBE8345127214AE6C615D65D90FF + decrypted=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + Iterated 100 times=78B4D12DD62F71237DF76A93BE20DFC0 + Iterated 1000 times=107C16B2BAB94C2398A48949930C463C + +Set 3, vector#170: + key=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + plain=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + cipher=F99899B807C220237E336AD9218FE52E + decrypted=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + Iterated 100 times=7A181D514251F755B4C9992D37578DCD + Iterated 1000 times=CC7CF000C5DD51D96F38EFF1BCABB749 + +Set 3, vector#171: + key=ABABABABABABABABABABABABABABABAB + plain=ABABABABABABABABABABABABABABABAB + cipher=B48589CE5D89056DB2CEA3FDE4A64DF7 + decrypted=ABABABABABABABABABABABABABABABAB + Iterated 100 times=78FD8B037585F38C0AD127D5C14841AE + Iterated 1000 times=F270C49452057016C3B4A6114FD72414 + +Set 3, vector#172: + key=ACACACACACACACACACACACACACACACAC + plain=ACACACACACACACACACACACACACACACAC + cipher=16514185A587FB5CF4DC6CC8FE5E0230 + decrypted=ACACACACACACACACACACACACACACACAC + Iterated 100 times=7B2D771F58CC91F66F86B3B808C327FE + Iterated 1000 times=AE46C7807B8C18A772190BFD66385272 + +Set 3, vector#173: + key=ADADADADADADADADADADADADADADADAD + plain=ADADADADADADADADADADADADADADADAD + cipher=8FEFD1FC45E5C7137DAF20E2EFFE5E29 + decrypted=ADADADADADADADADADADADADADADADAD + Iterated 100 times=0D3B4C41E2F0765F5434A83CA522293B + Iterated 1000 times=3E3D58559F6F847CD4BA5614B6440FB7 + +Set 3, vector#174: + key=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + plain=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + cipher=C3F662C3E2C02E584A89E53D1FA4419C + decrypted=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + Iterated 100 times=4AA15C4924D937E087EDE7432234771E + Iterated 1000 times=9CEF025469951F214EF63CC079B4F779 + +Set 3, vector#175: + key=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + plain=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + cipher=C832DA4E3B692DEE060139DEF94D4A1C + decrypted=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + Iterated 100 times=48EDF5D97089A90FA227A0A5A6288052 + Iterated 1000 times=1C1F31D046CF84A1D62CAECE0F07EC9E + +Set 3, vector#176: + key=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + plain=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + cipher=E92EE42C1D8065759C31E10943E82628 + decrypted=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + Iterated 100 times=28CE7A2339D902499BCB7C06E4B3B3ED + Iterated 1000 times=8BD78DB2DBDC3C271498CE21C8234058 + +Set 3, vector#177: + key=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + plain=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + cipher=FF21708FFDEA0E98CADE01E165C9C0B0 + decrypted=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + Iterated 100 times=4597464BF7FDB475ED814F1FAE56E607 + Iterated 1000 times=150A97B99DA2753F7418754C56E3F836 + +Set 3, vector#178: + key=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + plain=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + cipher=240F368085BCA6A5AF7ED172EA712A51 + decrypted=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + Iterated 100 times=F0291F19950403F5EB0EC34207B87862 + Iterated 1000 times=A5F70EE5A8984BEF5DF03F0BECE25A9F + +Set 3, vector#179: + key=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + plain=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + cipher=016DFFC0745F930322A48ECC0BB3DD5B + decrypted=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + Iterated 100 times=A1C20DA951296446BA72B7A209B502B8 + Iterated 1000 times=087B0826FA1442477034C199A824C8F5 + +Set 3, vector#180: + key=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + plain=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + cipher=43625AED5FABD25ED67603364CEDDCE7 + decrypted=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + Iterated 100 times=17E24F3A94D1B3B012914696B121D301 + Iterated 1000 times=422FCE66D33E7FC9C74D95C51F3BE3F2 + +Set 3, vector#181: + key=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + plain=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + cipher=DC80AC2135E0DCE4D3F63ABCCBF00F64 + decrypted=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + Iterated 100 times=5A9AE087891C5010EF8AB30A29B94D4D + Iterated 1000 times=11A63BFB45EFDD02751E2BBC7D8A4457 + +Set 3, vector#182: + key=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + plain=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + cipher=33DA0C4F7E1A2046472FFC9F9885D07E + decrypted=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + Iterated 100 times=1DCCC141DE475518139B361B60E8826C + Iterated 1000 times=BC43D69F79361B83ECE2EACDF12DDF24 + +Set 3, vector#183: + key=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + plain=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + cipher=533A80576FDD4651227532F7D071480C + decrypted=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + Iterated 100 times=DA181E3C4D8F1C114484291CAA654DD0 + Iterated 1000 times=22D57B3FFA7B1EB70163C9EE2E9640E6 + +Set 3, vector#184: + key=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + plain=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + cipher=C801BE09BA8DA2269D542BB7C985634C + decrypted=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + Iterated 100 times=EA7236809B38BA3A2C88A5128B4F1111 + Iterated 1000 times=659A398214CF709FA610C31D078AB313 + +Set 3, vector#185: + key=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + plain=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + cipher=147640563F113679468AE749112D6896 + decrypted=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + Iterated 100 times=DB969125281A3870306FAF898CB29DEF + Iterated 1000 times=7E9897A816586A143EEA27B1B7C4EA2A + +Set 3, vector#186: + key=BABABABABABABABABABABABABABABABA + plain=BABABABABABABABABABABABABABABABA + cipher=74F6D7F24210B4D5E21831C7F690C739 + decrypted=BABABABABABABABABABABABABABABABA + Iterated 100 times=C918B675A515ADAA7E63F18BF88FDFDE + Iterated 1000 times=448E5D5DEAC6A269023021730C72D51C + +Set 3, vector#187: + key=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + plain=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + cipher=A7DF2FAAB79CDC4AF646E4828CC09BD2 + decrypted=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + Iterated 100 times=01690CBCABF22E6BB7BD3950680D11A4 + Iterated 1000 times=BC92E47C413FBD8CFFD882AEB33BDF92 + +Set 3, vector#188: + key=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + plain=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + cipher=92E4E9CD660C72E47B48A83AE20E8F3F + decrypted=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + Iterated 100 times=E60F0517B311385371AC80341F109C6C + Iterated 1000 times=FD4CD03E87AFF53F3EBFB9D74B71175D + +Set 3, vector#189: + key=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + plain=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + cipher=8624DE65636CD9B8D19C9D1887237524 + decrypted=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + Iterated 100 times=34E2644FBC86FEBE841A361E83167AC4 + Iterated 1000 times=71B1A0CC5F0DC08941A0C262A3394CB0 + +Set 3, vector#190: + key=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + plain=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + cipher=63FC4D6FBD41D29E3BD12097193C2D39 + decrypted=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + Iterated 100 times=774DC2D49C82412FC7F9FA1CEB374958 + Iterated 1000 times=3080430BF78E7587A8B020AAC008CD99 + +Set 3, vector#191: + key=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + plain=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + cipher=10D604EB2F17677BBC54FFD2E5821B00 + decrypted=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + Iterated 100 times=ECD76582F62A74AF7A8901B7280D1A7F + Iterated 1000 times=3CF0C6C46F727C7D2EEF4565F32EA1A7 + +Set 3, vector#192: + key=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + plain=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + cipher=8758BD094B8FF1B65FFDF2BC914053FC + decrypted=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + Iterated 100 times=E078C55369C22CA80C611D9129F62A7B + Iterated 1000 times=8373FAC4ABAF61888B0F896B0674E36C + +Set 3, vector#193: + key=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + plain=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + cipher=D260A6038187BE8AC1C5D00FBEF92458 + decrypted=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + Iterated 100 times=8D41AEAC4055666E15A9838636B4A48C + Iterated 1000 times=479EFF1FABBA805965436FC5D6CAE626 + +Set 3, vector#194: + key=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + plain=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + cipher=629FBF3DDFFBA9A4D7CE795D3180D145 + decrypted=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + Iterated 100 times=4D38A4E42351D6E1C5B76CAE67C8A450 + Iterated 1000 times=F8EF5BDB4C0A8EE589E30C852705581E + +Set 3, vector#195: + key=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + plain=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + cipher=F0099BA9E682820688A3487D773AA722 + decrypted=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + Iterated 100 times=63F21AC3FED5B63E20886610442AB98E + Iterated 1000 times=84F549CB0897BA2A8E6C9983EA006BF3 + +Set 3, vector#196: + key=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + plain=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + cipher=32334DFB392F48B50FB60DD073505C99 + decrypted=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + Iterated 100 times=B96AA89507B086D76A46C0B471BD2F8A + Iterated 1000 times=6F862EE52201B6CBA0170664040C5889 + +Set 3, vector#197: + key=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + plain=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + cipher=CB9E2BF2821552793C9C82BB82343AA5 + decrypted=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + Iterated 100 times=430755BCA4BF883D839299E6573264C5 + Iterated 1000 times=5489B0CE7A13F267EBE759575F97923E + +Set 3, vector#198: + key=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + plain=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + cipher=4A2CCF974200D16BFB325CF52C25B811 + decrypted=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + Iterated 100 times=7F43DDC8D105E23FE70F1CEC3CC83CA7 + Iterated 1000 times=653D8E8C7E0AAB1EEF38B436EF14FEC4 + +Set 3, vector#199: + key=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + plain=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + cipher=FAB71DF8B02C5BAA86B2BE4A566E04A4 + decrypted=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + Iterated 100 times=2C6F6AFC23EA14A0F57E5812467DFA8A + Iterated 1000 times=EC4357D66039DF1EF681EF516A0F32F7 + +Set 3, vector#200: + key=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + plain=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + cipher=1063C5031EE90D479D7485ED16DF471F + decrypted=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + Iterated 100 times=BBC947F6B8E3F618311C28B5662264B4 + Iterated 1000 times=46E1D321FEDF7E22A9105BF19F4E3D55 + +Set 3, vector#201: + key=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + plain=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + cipher=BE35A08667DA47379DB452772C0E67FE + decrypted=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + Iterated 100 times=C969C57A8598DAC05881D0579077DE6B + Iterated 1000 times=06A160AF21B916A918F1B15990290A75 + +Set 3, vector#202: + key=CACACACACACACACACACACACACACACACA + plain=CACACACACACACACACACACACACACACACA + cipher=EEE8B8C872F912360A2A54CF9D4BD54D + decrypted=CACACACACACACACACACACACACACACACA + Iterated 100 times=5F24712984490CA5FCFF1B4A814E4C53 + Iterated 1000 times=105281EA013EB4E8FD483CD873B974B6 + +Set 3, vector#203: + key=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + plain=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + cipher=912EA68EA847E0D8A595B5BB6C82624C + decrypted=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + Iterated 100 times=E753D91E92B31924FD168BE1AD6F2811 + Iterated 1000 times=2F08077590E02945A746AC31A70EC45A + +Set 3, vector#204: + key=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + plain=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + cipher=E625875A9F4BCD9277BA0F442EAB2CFF + decrypted=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + Iterated 100 times=00BF1DD2F3B029F8A2ED96E58E39B985 + Iterated 1000 times=D34F68688D5DAA32798C2083F20647FE + +Set 3, vector#205: + key=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + plain=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + cipher=CF9CA4DC63022A43EB398A8EB90BAA6F + decrypted=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + Iterated 100 times=B0C1965F82251CB5A553FAAB5776FDF4 + Iterated 1000 times=6B12F0B11E6C5F1A21284C23541A4BD4 + +Set 3, vector#206: + key=CECECECECECECECECECECECECECECECE + plain=CECECECECECECECECECECECECECECECE + cipher=BF865C012D0C1C5CEFFDF8909A89BA66 + decrypted=CECECECECECECECECECECECECECECECE + Iterated 100 times=CF1A785944F974F689831AECE9E1FB78 + Iterated 1000 times=95E09CCD543CA12D77320F5BE62E3CEF + +Set 3, vector#207: + key=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + plain=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + cipher=FB0502C60B46EB2F38F9DD2C670C3052 + decrypted=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + Iterated 100 times=993562C636FE14F29A045AE583B821A6 + Iterated 1000 times=BE81127C9EA6C70DDAA61B1323336475 + +Set 3, vector#208: + key=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + plain=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + cipher=6013706AD148994A07CFEE83F35FD658 + decrypted=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + Iterated 100 times=A10A38DBF4C6D6D4B451F4A6B605AA22 + Iterated 1000 times=2959E9185FD239FE754E044E6EB42BD2 + +Set 3, vector#209: + key=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + plain=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + cipher=9D8D955E2E3B0DFCE635F7CE5BD3A510 + decrypted=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + Iterated 100 times=A294B195C076885B61438692D248C718 + Iterated 1000 times=D566C96E5F843F2631104859C4CF3061 + +Set 3, vector#210: + key=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + plain=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + cipher=9BA0A9A8CA74C48766EA36F20B1A1549 + decrypted=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + Iterated 100 times=105EDA35C257A528EEBB7B0BE108518E + Iterated 1000 times=2A9F352F58E8DB19B03F37021DD3868D + +Set 3, vector#211: + key=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + plain=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + cipher=247A996D66DE28BC91AAB7FCA7334206 + decrypted=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + Iterated 100 times=AD36E583C0EB8D383B3537A299CC5FC5 + Iterated 1000 times=80C1B450E17B66599F891690DF32482A + +Set 3, vector#212: + key=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + plain=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + cipher=A691313B4FCD5088C3CA6832BBAE847C + decrypted=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + Iterated 100 times=17945A3CA139F975339B1B9DB34DB578 + Iterated 1000 times=EADA643A77D23F24B400D2E7761F1D50 + +Set 3, vector#213: + key=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + plain=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + cipher=32688CD9AB98B456A4B3B6DB721C49B8 + decrypted=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + Iterated 100 times=9D70B30383B76ADFE24ABEBEC6F85D79 + Iterated 1000 times=D546715680D7DD00A4AA21C5880010A0 + +Set 3, vector#214: + key=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + plain=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + cipher=D1AF4946D90147FDCC61019ADFF1D8F5 + decrypted=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + Iterated 100 times=666943E4E47511FCC20EDE1F849EF541 + Iterated 1000 times=839B90ECCAF067FA32E105204246F461 + +Set 3, vector#215: + key=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + plain=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + cipher=A1CAD7115479D9249A30CC0100039722 + decrypted=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + Iterated 100 times=1E5F1C89AEEEE46390D0A4BE6E6E8339 + Iterated 1000 times=8A580C5E452C58F1D1F49ABD09F361CB + +Set 3, vector#216: + key=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + plain=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + cipher=BF6C984877B1F4963C106EC81EF7C52D + decrypted=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + Iterated 100 times=8EA54C63FF3A076028EB08BA028FDF05 + Iterated 1000 times=73A86C11814042C59CADBB56D0835DFF + +Set 3, vector#217: + key=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + plain=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + cipher=350E80AC0CCD82B1700FAD850F7AC92E + decrypted=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + Iterated 100 times=A433A01A0241DBFCCFF708EA072E2D80 + Iterated 1000 times=BBF61323605E750AF66BB7EFC3A528F8 + +Set 3, vector#218: + key=DADADADADADADADADADADADADADADADA + plain=DADADADADADADADADADADADADADADADA + cipher=B1C48D7D53CEE2008823FAB68EB09EBD + decrypted=DADADADADADADADADADADADADADADADA + Iterated 100 times=A2663CC170BF10F1597FDD27F0971F77 + Iterated 1000 times=D92432DD00263A0FBF51AEEE2EDF18BC + +Set 3, vector#219: + key=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + plain=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + cipher=6D73A048E139333EE4B5BFA969190821 + decrypted=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + Iterated 100 times=4287AF25C46C7C13DFAF7B71969A8DCF + Iterated 1000 times=95FFA0B6F7BC01550A1B975D9E053564 + +Set 3, vector#220: + key=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + plain=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + cipher=9C1B9C0B218E7D516D7B9DA4965B7C93 + decrypted=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + Iterated 100 times=CF85C2F2B60B44E51BAC02660D35C325 + Iterated 1000 times=2DC3B72BE92E5816AD1DEEA10411E03C + +Set 3, vector#221: + key=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + plain=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + cipher=2D73C9CFEA1BED0A2C0E96F18FB72347 + decrypted=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + Iterated 100 times=02557CFED9FC946B283570523550AD8D + Iterated 1000 times=4214DA4B3FBFCA9D03B9E05BFA3F731E + +Set 3, vector#222: + key=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + plain=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + cipher=E4AFF60F24DE071F65A7182C8B13F7DF + decrypted=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + Iterated 100 times=2CA38341779FF0801DB8CBA92E57A009 + Iterated 1000 times=01CB4F5B41D7C284A8E8DE176C239FA7 + +Set 3, vector#223: + key=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + plain=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + cipher=852F2F51BB50B68D4A2B3DBA5B6EB40B + decrypted=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + Iterated 100 times=6ADF252AE4AAADF6BB873EE2660A8CE4 + Iterated 1000 times=69442C6E5ADF049C5456B0783B41ABF1 + +Set 3, vector#224: + key=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + plain=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + cipher=2D4C9C7EA0FB7CFD8C52B27D15625338 + decrypted=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + Iterated 100 times=C0FCC0F9D09D723AC809E2635C11C6E2 + Iterated 1000 times=82DD900168F1E801A918A76700E68B0F + +Set 3, vector#225: + key=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + plain=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + cipher=D533654B29D9AF44A4912959641449AE + decrypted=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + Iterated 100 times=1B73B010DB0035C4F2A1D9950CB7FFD2 + Iterated 1000 times=DF2BF6FF262316B805251845BDB8AC90 + +Set 3, vector#226: + key=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + plain=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + cipher=C43B26B531EB1B6D36694EFE7C379786 + decrypted=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + Iterated 100 times=3382068613DFA99D2D2DFC4C8C717F32 + Iterated 1000 times=30B35ADE1EFED322B1FFEFE52A1B70B9 + +Set 3, vector#227: + key=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + plain=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + cipher=ACA6F1321BE54CFC7F924011518142E9 + decrypted=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + Iterated 100 times=0AF6CBEC8F626DA36B8650AD684004EC + Iterated 1000 times=48577FF51518C6822DD2DCF5A21591A0 + +Set 3, vector#228: + key=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + plain=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + cipher=B374405B0BE971B67AAFCD298A193F74 + decrypted=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + Iterated 100 times=33DA1DBAC69C0363E644FAB4C6C751DF + Iterated 1000 times=CB2DDF8C20C7AA9FBAB31A3A26ED0E79 + +Set 3, vector#229: + key=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + plain=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + cipher=3D2C9C3FCC4FD384BABEFB15EDB6D2B2 + decrypted=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + Iterated 100 times=EC4B098454BA270A42BC0C95CF59CCB4 + Iterated 1000 times=7D4DEFD0EDAFB13BE87EAA5662B78C37 + +Set 3, vector#230: + key=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + plain=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + cipher=58E8085B884B0179FA45F7E7C7F7732D + decrypted=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + Iterated 100 times=D2A37A231A7023551BBB1C53F991455A + Iterated 1000 times=DD88208B5B8EFA93BCF1E8D92391EE46 + +Set 3, vector#231: + key=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + plain=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + cipher=F0772CAA1C43E9583170A1027A538F7D + decrypted=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + Iterated 100 times=C8AD3C8327FA8B3652C68E7F4585D189 + Iterated 1000 times=7A0EFBCD25D1577E6024A78031A9D7F6 + +Set 3, vector#232: + key=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + plain=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + cipher=69C6A4D3A67BB1113756B9274FEB8B0B + decrypted=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + Iterated 100 times=50319428EFF20ABC5C26EE325C3B3EE8 + Iterated 1000 times=705D41404C5B4245D43238D0CD5B72CE + +Set 3, vector#233: + key=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + plain=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + cipher=D46328400A37F9C7EAD73E440180218E + decrypted=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + Iterated 100 times=D9B47705A27297EC78DE32116EA64DE5 + Iterated 1000 times=C5011E3CF429D5468C213105F8664C20 + +Set 3, vector#234: + key=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + plain=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + cipher=456D6E50EE227EA81E3A76E5D1996986 + decrypted=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + Iterated 100 times=5A48277B9AA26F49E0760E4B57907163 + Iterated 1000 times=494A14CFC520B033AAB2D3C99EC600FF + +Set 3, vector#235: + key=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + plain=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + cipher=ED86225D1E9B5F9A9FA4AC8A05997C47 + decrypted=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + Iterated 100 times=422DF3CDEC06A26551951BAAB858FD52 + Iterated 1000 times=3481EBEE113C577451F1673C280701EA + +Set 3, vector#236: + key=ECECECECECECECECECECECECECECECEC + plain=ECECECECECECECECECECECECECECECEC + cipher=A00F26C4264A08E9F0186BFD1F43BF7C + decrypted=ECECECECECECECECECECECECECECECEC + Iterated 100 times=C373EEC5DC76F1B705C3A6AF5ED62CD4 + Iterated 1000 times=277F80751BCFB9B2D1A6886A88A0CDC7 + +Set 3, vector#237: + key=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + plain=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + cipher=9CBF6F6BD1A2A4CF6A7789DA59B3C621 + decrypted=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + Iterated 100 times=B094D2A8768F53FCD5968AC6A450F5D1 + Iterated 1000 times=D637AC36F2C44ABAE5897E85A41BB2B8 + +Set 3, vector#238: + key=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + plain=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + cipher=74980613E14864667F0B82E5D58BDBD9 + decrypted=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + Iterated 100 times=39C728263D9D8BC0B2EC834B271EEF46 + Iterated 1000 times=537F65A2788685CF5B66BD7370997F9F + +Set 3, vector#239: + key=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + plain=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + cipher=036966217A344652A9E88DAE88A91096 + decrypted=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + Iterated 100 times=612A1E4A4183A13F7091DF28050A50E7 + Iterated 1000 times=F9683BDD4600A4A21343F26CAAF63C7C + +Set 3, vector#240: + key=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + plain=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + cipher=06AD8AD6398F622A0777879ADDC8D80D + decrypted=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + Iterated 100 times=0B25D6C5231FAFA87DD4DD333DD89E4A + Iterated 1000 times=929D57435A25B7A1795DD26A17947B12 + +Set 3, vector#241: + key=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + plain=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + cipher=6257C8134EDCCC15D67AAFA22739D2C0 + decrypted=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + Iterated 100 times=C4FEA4729EDDF7F37EF70DC5756BF9DE + Iterated 1000 times=49A363F72DBC082B38CB9A6A1B1926D9 + +Set 3, vector#242: + key=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + plain=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + cipher=2231DBAD06C9E1EF7CD9E67D00C63392 + decrypted=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + Iterated 100 times=CEE86C54910FF34C1C297BF354B6459C + Iterated 1000 times=CB9AE7CDF177204E4D2AD78F4AAC4F9D + +Set 3, vector#243: + key=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + plain=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + cipher=9209283A7CB2DB7EC784C0E83CACA084 + decrypted=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + Iterated 100 times=E870D2DA7C81D69A8BB90F6933DA10F0 + Iterated 1000 times=28299E93695FE42928C1419759806AE7 + +Set 3, vector#244: + key=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + plain=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + cipher=88BFD9355697DB8205D6E65CC2F29FD2 + decrypted=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + Iterated 100 times=7B88F4765DD4C69C5F3707EC4C2684AE + Iterated 1000 times=66EDB42FAE692F237FA03D11CC2B06AC + +Set 3, vector#245: + key=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + plain=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + cipher=459A39B0BC7129B400807AE7BECD77F7 + decrypted=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + Iterated 100 times=BC83BC0358BA2E75C9CCF13D1F93BB14 + Iterated 1000 times=76608F059F05D71AEE7CCC42B0E243B0 + +Set 3, vector#246: + key=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + plain=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + cipher=196F4F0484B8D2C89887B5D663D550A5 + decrypted=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + Iterated 100 times=63C8F77DCFA4DB8591B492A5BDF7C07C + Iterated 1000 times=C67A1C9A01643ADF641447A348C84E95 + +Set 3, vector#247: + key=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + plain=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + cipher=CB400150F021544E899B24907C177FF3 + decrypted=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + Iterated 100 times=6FA3FFC810A2446292B0D6C392B9C779 + Iterated 1000 times=9C3B893B4CB38997DBC904E485CEC6EB + +Set 3, vector#248: + key=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + plain=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + cipher=C95003A76D79D0E8FECAB7C90D81A3DA + decrypted=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + Iterated 100 times=6827215244EBA716F4598B146FC3B864 + Iterated 1000 times=9136000ADFAD827E7341FC6AC471AE27 + +Set 3, vector#249: + key=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + plain=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + cipher=14A1969EA49E4153A4C42CA5CCE60A29 + decrypted=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + Iterated 100 times=4085BC4CB150AA53752CE5C65EFD8ACD + Iterated 1000 times=9C30F18FF2A33776572965B6CD533408 + +Set 3, vector#250: + key=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + plain=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + cipher=6D74302568DFC2F97833A4A146B29C91 + decrypted=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + Iterated 100 times=316C9B0D86BE82E28138F7DF73AE0465 + Iterated 1000 times=09C7F12AAEC8D98A133EBCB5F59905DD + +Set 3, vector#251: + key=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + plain=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + cipher=189DF184251C1834D64742686033CC43 + decrypted=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + Iterated 100 times=42CC0F89F15B5AFDE07922C554528228 + Iterated 1000 times=1C0D913620B86DA66353E8B55FFEEB32 + +Set 3, vector#252: + key=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + plain=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + cipher=71A40B8A8F941DB3C4D9A3B1FDAAB3EB + decrypted=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + Iterated 100 times=73ADFAAED497FAFD38CFDC892CC71673 + Iterated 1000 times=A6EFFA3507B98C0EFE93EECF9D22C7EE + +Set 3, vector#253: + key=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + plain=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + cipher=BA3E03C35C8993F442CB56A463AFC894 + decrypted=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + Iterated 100 times=1C65F2751C1DB4BCBA0AB78F51FD5350 + Iterated 1000 times=D179CE0B0EC337CC3856EC0D58C5F957 + +Set 3, vector#254: + key=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + plain=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + cipher=C556F0092EEF8667BB76A61A58E1E3BB + decrypted=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + Iterated 100 times=56B703C9F1D3744D985CB4FAB47A0A55 + Iterated 1000 times=57E7837FE7880C131D294F4E494C28F5 + +Set 3, vector#255: + key=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + plain=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + cipher=BCB9E68BC5296B2B8E42FB4CF7A2B3CA + decrypted=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + Iterated 100 times=985C8290AC480BE3F5CD8340DF980800 + Iterated 1000 times=495A14C927077B73C84C47A8970B8D93 + +Test vectors -- set 4 +===================== + +Set 4, vector# 0: + key=000102030405060708090A0B0C0D0E0F + plain=00112233445566778899AABBCCDDEEFF + cipher=AF527210EB79C7A023ABF348E70C9045 + decrypted=00112233445566778899AABBCCDDEEFF + Iterated 100 times=654872818C5671F9F5507F8D159643A9 + Iterated 1000 times=E33E696530B7DB54A74084EE5E270A00 + +Set 4, vector# 1: + key=2BD6459F82C5B300952C49104881FF48 + plain=EA024714AD5C4D84EA024714AD5C4D84 + cipher=14AE1E10DDB7764BD7D6CD66717CAF76 + decrypted=EA024714AD5C4D84EA024714AD5C4D84 + Iterated 100 times=9D540A16200E18BB5CCEB7F1667558CE + Iterated 1000 times=858A2BD2C6ACA30A1B2B7F29ABD1EEAD + +Test vectors -- set 5 +===================== + +Set 5, vector# 0: + key=80000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=A5C104A60EAE75693C8E0BD6ACB40366 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 1: + key=40000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=C76B621AF59B68DD545D076D8F7A8650 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 2: + key=20000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=FBE6B31E60313F6085992EFFC603BD1E + encrypted=00000000000000000000000000000000 + +Set 5, vector# 3: + key=10000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=A0536689972E63115484864FF5661909 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 4: + key=08000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=E48016D6E7F9B7B583349BFEFA37BADA + encrypted=00000000000000000000000000000000 + +Set 5, vector# 5: + key=04000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=C6394ECE13CAA18901BCA5BB4A83F61E + encrypted=00000000000000000000000000000000 + +Set 5, vector# 6: + key=02000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=C109D27BD0BC1F25D7B5BD5E3621D593 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 7: + key=01000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=827CD7339DE8C9F951E4A437C50AB5A3 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 8: + key=00800000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=258A386CE16842C573C3B517CC471FE6 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 9: + key=00400000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=EB416F1189B42A4E01A8C88E6FE33AB9 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 10: + key=00200000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=A94B80E4B39AF21F5262B1FFE4FD05CD + encrypted=00000000000000000000000000000000 + +Set 5, vector# 11: + key=00100000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=B4E1C4A46351AC3F768B1CE81C2B1644 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 12: + key=00080000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=C97840F46219FF9C17AD3DBDCC82AF8E + encrypted=00000000000000000000000000000000 + +Set 5, vector# 13: + key=00040000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=93CED48088F989A6CD8A7E11D5A02951 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 14: + key=00020000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=F23E9E47C3B00B6EAA1808D3B43FF0D3 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 15: + key=00010000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=A51FDB6FDA8A41E93BBD344E4C5E5B7B + encrypted=00000000000000000000000000000000 + +Set 5, vector# 16: + key=00008000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=05C39893B6D40A03585F68E618205D38 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 17: + key=00004000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=3CB48912A492F73DD4D1BA36D064BFE9 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 18: + key=00002000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=08BA629FC97BD70D65F3E7BE3CD74092 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 19: + key=00001000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=2DCC5CAB782D4C0EA3CF6D79B6877626 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 20: + key=00000800000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=EF492755220C2EEA76BF2A3F57DBBA12 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 21: + key=00000400000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=8A08857781E532903CEC25EE9D9817F8 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 22: + key=00000200000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=6DF184572F366B9DE160712C675A84AB + encrypted=00000000000000000000000000000000 + +Set 5, vector# 23: + key=00000100000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=4E73DD3AFFDE62CE715555D08AFF5C24 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 24: + key=00000080000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=2C10C3C24986C23AC17358A3FEB8EFB0 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 25: + key=00000040000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=AC4A1B308D316F5F1C32E97E695FFDCB + encrypted=00000000000000000000000000000000 + +Set 5, vector# 26: + key=00000020000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=5036B21AF22E085CAD5B0E0A5200A38B + encrypted=00000000000000000000000000000000 + +Set 5, vector# 27: + key=00000010000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=38EA05C58E5EB216B5096E6C6817B782 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 28: + key=00000008000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=4D4857C79BC24099D7FD0E88047B088F + encrypted=00000000000000000000000000000000 + +Set 5, vector# 29: + key=00000004000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=5DFBCC995D33ED5F4F44CEEFB5C41AB1 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 30: + key=00000002000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=2BDB1B9A68DF36F56A66693B1D0569D8 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 31: + key=00000001000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=85409FADB767246B8415BCB76433E9D3 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 32: + key=00000000800000000000000000000000 + cipher=00000000000000000000000000000000 + plain=91EBE494E42F311956367A88B0ADA567 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 33: + key=00000000400000000000000000000000 + cipher=00000000000000000000000000000000 + plain=42D940169F23A39F5E65DD6614487E00 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 34: + key=00000000200000000000000000000000 + cipher=00000000000000000000000000000000 + plain=876E8402CF67BAC68DB30A6D9736B90F + encrypted=00000000000000000000000000000000 + +Set 5, vector# 35: + key=00000000100000000000000000000000 + cipher=00000000000000000000000000000000 + plain=2A3DEC002FEE1B5A80443608C203E783 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 36: + key=00000000080000000000000000000000 + cipher=00000000000000000000000000000000 + plain=653CC0F2CCBCD3FA0417C15C9D737EB7 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 37: + key=00000000040000000000000000000000 + cipher=00000000000000000000000000000000 + plain=5A639D04F16A0D43B83CF7707E6F8BE2 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 38: + key=00000000020000000000000000000000 + cipher=00000000000000000000000000000000 + plain=B7B69E499AC9C6D1C0460B9C29ADDB0E + encrypted=00000000000000000000000000000000 + +Set 5, vector# 39: + key=00000000010000000000000000000000 + cipher=00000000000000000000000000000000 + plain=2FE44BA29E9290B97AA1A537C503FC51 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 40: + key=00000000008000000000000000000000 + cipher=00000000000000000000000000000000 + plain=7ED733832EF85C2F25FB485FC3655244 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 41: + key=00000000004000000000000000000000 + cipher=00000000000000000000000000000000 + plain=5978FD60A756D7C3FC63121730699626 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 42: + key=00000000002000000000000000000000 + cipher=00000000000000000000000000000000 + plain=85E1A2EE787CD744C73287842C2EBA67 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 43: + key=00000000001000000000000000000000 + cipher=00000000000000000000000000000000 + plain=B9EB164A0D64F04E3D1C8833FED7FBCC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 44: + key=00000000000800000000000000000000 + cipher=00000000000000000000000000000000 + plain=B4CBA5C9E305B6F5F61B0E7B2CBE1B68 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 45: + key=00000000000400000000000000000000 + cipher=00000000000000000000000000000000 + plain=405E806F45B7F8A991014BA909F37528 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 46: + key=00000000000200000000000000000000 + cipher=00000000000000000000000000000000 + plain=FBE14226534D008CBA2FBE94297A2D75 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 47: + key=00000000000100000000000000000000 + cipher=00000000000000000000000000000000 + plain=612157738B5D91668395ED22E7E8C03A + encrypted=00000000000000000000000000000000 + +Set 5, vector# 48: + key=00000000000080000000000000000000 + cipher=00000000000000000000000000000000 + plain=4ABC45E3D9F8A6FE5FEB44606A844FE0 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 49: + key=00000000000040000000000000000000 + cipher=00000000000000000000000000000000 + plain=BCDDFDE1950B389450E794439E355314 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 50: + key=00000000000020000000000000000000 + cipher=00000000000000000000000000000000 + plain=217582E7B56F7F0286F50E573E979B52 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 51: + key=00000000000010000000000000000000 + cipher=00000000000000000000000000000000 + plain=8DF8F559F03D0491FF1B9ABADC038756 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 52: + key=00000000000008000000000000000000 + cipher=00000000000000000000000000000000 + plain=25A1DE8E697FFD8FF1A98FEFA0C00035 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 53: + key=00000000000004000000000000000000 + cipher=00000000000000000000000000000000 + plain=8D76AFC3E197D5E14B255190991D4CC8 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 54: + key=00000000000002000000000000000000 + cipher=00000000000000000000000000000000 + plain=20E90C093F58F24462CF259199E88B9B + encrypted=00000000000000000000000000000000 + +Set 5, vector# 55: + key=00000000000001000000000000000000 + cipher=00000000000000000000000000000000 + plain=260D8BBB3AB10E9C8E9728CC6ADB43DA + encrypted=00000000000000000000000000000000 + +Set 5, vector# 56: + key=00000000000000800000000000000000 + cipher=00000000000000000000000000000000 + plain=AB0D5B63F8A081C3AC6A2135C94969AD + encrypted=00000000000000000000000000000000 + +Set 5, vector# 57: + key=00000000000000400000000000000000 + cipher=00000000000000000000000000000000 + plain=7672DEA27EACA2DDB742216C32C55C5B + encrypted=00000000000000000000000000000000 + +Set 5, vector# 58: + key=00000000000000200000000000000000 + cipher=00000000000000000000000000000000 + plain=0C0551C7216A6B8F2C7A843E2C2990C9 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 59: + key=00000000000000100000000000000000 + cipher=00000000000000000000000000000000 + plain=E3DEE21E194ACA949410CA9370D023C7 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 60: + key=00000000000000080000000000000000 + cipher=00000000000000000000000000000000 + plain=B8A40E3D7CA0AC34867EF2626D21E916 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 61: + key=00000000000000040000000000000000 + cipher=00000000000000000000000000000000 + plain=558497F63E3B0B92C64466760A410429 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 62: + key=00000000000000020000000000000000 + cipher=00000000000000000000000000000000 + plain=D284811E1BF694A181146AD59730D789 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 63: + key=00000000000000010000000000000000 + cipher=00000000000000000000000000000000 + plain=93AC46016E07C2A0C6E1EBBD91DC1235 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 64: + key=00000000000000008000000000000000 + cipher=00000000000000000000000000000000 + plain=8C5F412D42C11D5B174E8E0B38A129C7 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 65: + key=00000000000000004000000000000000 + cipher=00000000000000000000000000000000 + plain=2B580EA4D2C4DEC48FE385F16EE05A85 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 66: + key=00000000000000002000000000000000 + cipher=00000000000000000000000000000000 + plain=F0DA5ECAE5B9B4A0F715E8CF5B64305E + encrypted=00000000000000000000000000000000 + +Set 5, vector# 67: + key=00000000000000001000000000000000 + cipher=00000000000000000000000000000000 + plain=211A7FB89F9C34896EDAC6A53A0C03AE + encrypted=00000000000000000000000000000000 + +Set 5, vector# 68: + key=00000000000000000800000000000000 + cipher=00000000000000000000000000000000 + plain=045C574B939A6CDCC01D9404F7BD3E62 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 69: + key=00000000000000000400000000000000 + cipher=00000000000000000000000000000000 + plain=6626EA379B25E0F75015FE8B94F28DC6 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 70: + key=00000000000000000200000000000000 + cipher=00000000000000000000000000000000 + plain=8A7835857C05569D4D23767A9D143AA7 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 71: + key=00000000000000000100000000000000 + cipher=00000000000000000000000000000000 + plain=42235BCA2080BD239561AC396CDCF10D + encrypted=00000000000000000000000000000000 + +Set 5, vector# 72: + key=00000000000000000080000000000000 + cipher=00000000000000000000000000000000 + plain=6417DD82D2E0EAE8AC29E5E13A1A4FB0 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 73: + key=00000000000000000040000000000000 + cipher=00000000000000000000000000000000 + plain=5433846EA590FC28749319748B9DDB30 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 74: + key=00000000000000000020000000000000 + cipher=00000000000000000000000000000000 + plain=E0CCFA30F43FCADBAD4F5E09A7BDB140 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 75: + key=00000000000000000010000000000000 + cipher=00000000000000000000000000000000 + plain=36C661C50E8A89B362A95531DF62306F + encrypted=00000000000000000000000000000000 + +Set 5, vector# 76: + key=00000000000000000008000000000000 + cipher=00000000000000000000000000000000 + plain=06FCB596B857D1C885689C27EACB8986 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 77: + key=00000000000000000004000000000000 + cipher=00000000000000000000000000000000 + plain=7D5B6C1CB6CD5A95CA1F1DD0C79CAC49 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 78: + key=00000000000000000002000000000000 + cipher=00000000000000000000000000000000 + plain=D45DCD09FA655E90D0C6031F874F4780 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 79: + key=00000000000000000001000000000000 + cipher=00000000000000000000000000000000 + plain=E1A6960FF9E77C630B2093F9BB8697BF + encrypted=00000000000000000000000000000000 + +Set 5, vector# 80: + key=00000000000000000000800000000000 + cipher=00000000000000000000000000000000 + plain=92D4A2D5E36535EADBBF937C6F6DB557 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 81: + key=00000000000000000000400000000000 + cipher=00000000000000000000000000000000 + plain=CF4ACCBB6D162BFCF02013551FD83A3B + encrypted=00000000000000000000000000000000 + +Set 5, vector# 82: + key=00000000000000000000200000000000 + cipher=00000000000000000000000000000000 + plain=6833EB17FA1D17A1666FA597407DA8A4 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 83: + key=00000000000000000000100000000000 + cipher=00000000000000000000000000000000 + plain=42EF822624B4A792955BBBBAEE2D94DC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 84: + key=00000000000000000000080000000000 + cipher=00000000000000000000000000000000 + plain=24A2C3ED66C93CE480F9D58B8EF7D90F + encrypted=00000000000000000000000000000000 + +Set 5, vector# 85: + key=00000000000000000000040000000000 + cipher=00000000000000000000000000000000 + plain=177AF0D025B644B700413F0AFCA18F09 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 86: + key=00000000000000000000020000000000 + cipher=00000000000000000000000000000000 + plain=E870760E652D35BC3C961E8D69CFFC46 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 87: + key=00000000000000000000010000000000 + cipher=00000000000000000000000000000000 + plain=8669491BBB9E9BCEE2B8C1425BAFC3B8 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 88: + key=00000000000000000000008000000000 + cipher=00000000000000000000000000000000 + plain=679DF47C98A62D31995491F00BDCCB5A + encrypted=00000000000000000000000000000000 + +Set 5, vector# 89: + key=00000000000000000000004000000000 + cipher=00000000000000000000000000000000 + plain=DD76C97F61238C20F0CB88415E600694 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 90: + key=00000000000000000000002000000000 + cipher=00000000000000000000000000000000 + plain=8562C34C36DFDD5D8908CE3464A1CB3F + encrypted=00000000000000000000000000000000 + +Set 5, vector# 91: + key=00000000000000000000001000000000 + cipher=00000000000000000000000000000000 + plain=B4D6D3E1A190FF5FD3AAEBCA360320D3 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 92: + key=00000000000000000000000800000000 + cipher=00000000000000000000000000000000 + plain=12DF700383F994203F3595E72550B5C3 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 93: + key=00000000000000000000000400000000 + cipher=00000000000000000000000000000000 + plain=B5F93F5B7B2F82BA9FB86240F7CAF40A + encrypted=00000000000000000000000000000000 + +Set 5, vector# 94: + key=00000000000000000000000200000000 + cipher=00000000000000000000000000000000 + plain=ED18066FF3BB0DD1D2CF2A6CEB3FD4E7 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 95: + key=00000000000000000000000100000000 + cipher=00000000000000000000000000000000 + plain=0B285B7441282BFB58059CF32D89853E + encrypted=00000000000000000000000000000000 + +Set 5, vector# 96: + key=00000000000000000000000080000000 + cipher=00000000000000000000000000000000 + plain=4F99F18EF50B6480B7C046AAABBC2643 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 97: + key=00000000000000000000000040000000 + cipher=00000000000000000000000000000000 + plain=8715EBFD3A587E25DC5A34FC2C887774 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 98: + key=00000000000000000000000020000000 + cipher=00000000000000000000000000000000 + plain=8C3A0D600042F824A8321344BCA0A3F0 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 99: + key=00000000000000000000000010000000 + cipher=00000000000000000000000000000000 + plain=3874457B546AEF97AFBF5E6B8F34F3BB + encrypted=00000000000000000000000000000000 + +Set 5, vector#100: + key=00000000000000000000000008000000 + cipher=00000000000000000000000000000000 + plain=61ED69AE58A763BDF242ED9C8C8BD971 + encrypted=00000000000000000000000000000000 + +Set 5, vector#101: + key=00000000000000000000000004000000 + cipher=00000000000000000000000000000000 + plain=AB1EE20D28A4BD07A9B8E21661B8F499 + encrypted=00000000000000000000000000000000 + +Set 5, vector#102: + key=00000000000000000000000002000000 + cipher=00000000000000000000000000000000 + plain=E62A840D756AA9A32193CF4DADC873CA + encrypted=00000000000000000000000000000000 + +Set 5, vector#103: + key=00000000000000000000000001000000 + cipher=00000000000000000000000000000000 + plain=C5B499BE92E865B6A39B75DA566C540F + encrypted=00000000000000000000000000000000 + +Set 5, vector#104: + key=00000000000000000000000000800000 + cipher=00000000000000000000000000000000 + plain=D2B9DA451BEBA3E481AFF842C6E8A3DE + encrypted=00000000000000000000000000000000 + +Set 5, vector#105: + key=00000000000000000000000000400000 + cipher=00000000000000000000000000000000 + plain=F662F24410D7F7387241E17D23660671 + encrypted=00000000000000000000000000000000 + +Set 5, vector#106: + key=00000000000000000000000000200000 + cipher=00000000000000000000000000000000 + plain=B6E1AEC37FA11AB4094BFCA82BD7305A + encrypted=00000000000000000000000000000000 + +Set 5, vector#107: + key=00000000000000000000000000100000 + cipher=00000000000000000000000000000000 + plain=D55AE9F973F18FC5085DDB98E6903671 + encrypted=00000000000000000000000000000000 + +Set 5, vector#108: + key=00000000000000000000000000080000 + cipher=00000000000000000000000000000000 + plain=CA1926B143C3C048D18C91831498977B + encrypted=00000000000000000000000000000000 + +Set 5, vector#109: + key=00000000000000000000000000040000 + cipher=00000000000000000000000000000000 + plain=A258CB582954AD1D7F7A83ED26AB6469 + encrypted=00000000000000000000000000000000 + +Set 5, vector#110: + key=00000000000000000000000000020000 + cipher=00000000000000000000000000000000 + plain=4DF91EFC82CE627990FEFC58A952329D + encrypted=00000000000000000000000000000000 + +Set 5, vector#111: + key=00000000000000000000000000010000 + cipher=00000000000000000000000000000000 + plain=6E737B4129AE35EEF92CCCEAA6143DE7 + encrypted=00000000000000000000000000000000 + +Set 5, vector#112: + key=00000000000000000000000000008000 + cipher=00000000000000000000000000000000 + plain=988240DDFB15D11CB80F8D28A78A1EB1 + encrypted=00000000000000000000000000000000 + +Set 5, vector#113: + key=00000000000000000000000000004000 + cipher=00000000000000000000000000000000 + plain=E0CB4F0D9CA16A3EE90BE59D96C3C186 + encrypted=00000000000000000000000000000000 + +Set 5, vector#114: + key=00000000000000000000000000002000 + cipher=00000000000000000000000000000000 + plain=BFAC959DA97419DA5B60959CD16388B7 + encrypted=00000000000000000000000000000000 + +Set 5, vector#115: + key=00000000000000000000000000001000 + cipher=00000000000000000000000000000000 + plain=EA963060AEAEBAB6F9443985A314491E + encrypted=00000000000000000000000000000000 + +Set 5, vector#116: + key=00000000000000000000000000000800 + cipher=00000000000000000000000000000000 + plain=CF779A68565998CE746B2DB57EB56A3B + encrypted=00000000000000000000000000000000 + +Set 5, vector#117: + key=00000000000000000000000000000400 + cipher=00000000000000000000000000000000 + plain=CB4BF3AFE75580E3B78D17922CC6EDEB + encrypted=00000000000000000000000000000000 + +Set 5, vector#118: + key=00000000000000000000000000000200 + cipher=00000000000000000000000000000000 + plain=0DA4251195FDED28BFFD3AC2F4DD2AE5 + encrypted=00000000000000000000000000000000 + +Set 5, vector#119: + key=00000000000000000000000000000100 + cipher=00000000000000000000000000000000 + plain=2FB50314D95B1F6FCDF08CAD3449BD0D + encrypted=00000000000000000000000000000000 + +Set 5, vector#120: + key=00000000000000000000000000000080 + cipher=00000000000000000000000000000000 + plain=D480941107360F391D87F90829FC582D + encrypted=00000000000000000000000000000000 + +Set 5, vector#121: + key=00000000000000000000000000000040 + cipher=00000000000000000000000000000000 + plain=3D9988B7FDA984DD5C4A950374E1F6A9 + encrypted=00000000000000000000000000000000 + +Set 5, vector#122: + key=00000000000000000000000000000020 + cipher=00000000000000000000000000000000 + plain=0AEA2F7E3D5B68563D3509D07C4B178B + encrypted=00000000000000000000000000000000 + +Set 5, vector#123: + key=00000000000000000000000000000010 + cipher=00000000000000000000000000000000 + plain=16013CEACF46CFE041F03CDF4B5153DA + encrypted=00000000000000000000000000000000 + +Set 5, vector#124: + key=00000000000000000000000000000008 + cipher=00000000000000000000000000000000 + plain=1AFE71FC790884F6CA909E147BCC57B3 + encrypted=00000000000000000000000000000000 + +Set 5, vector#125: + key=00000000000000000000000000000004 + cipher=00000000000000000000000000000000 + plain=7A4CA18E358A3D9C6465A6806D5E9AC8 + encrypted=00000000000000000000000000000000 + +Set 5, vector#126: + key=00000000000000000000000000000002 + cipher=00000000000000000000000000000000 + plain=EB798303D0892A0895C0BA6FD9E45C38 + encrypted=00000000000000000000000000000000 + +Set 5, vector#127: + key=00000000000000000000000000000001 + cipher=00000000000000000000000000000000 + plain=BF90F7AC47EA1ED9E96F879B862A8A78 + encrypted=00000000000000000000000000000000 + +Test vectors -- set 6 +===================== + +Set 6, vector# 0: + key=00000000000000000000000000000000 + cipher=80000000000000000000000000000000 + plain=018FC07BE4BC4E7DD83176947A3B16D2 + encrypted=80000000000000000000000000000000 + +Set 6, vector# 1: + key=00000000000000000000000000000000 + cipher=40000000000000000000000000000000 + plain=199D442FE7DAA39EF7906732FCEB0A68 + encrypted=40000000000000000000000000000000 + +Set 6, vector# 2: + key=00000000000000000000000000000000 + cipher=20000000000000000000000000000000 + plain=355B4B760B73A612897E6E9C724726EB + encrypted=20000000000000000000000000000000 + +Set 6, vector# 3: + key=00000000000000000000000000000000 + cipher=10000000000000000000000000000000 + plain=DD76B5A049A3E29A55F477DDC8519236 + encrypted=10000000000000000000000000000000 + +Set 6, vector# 4: + key=00000000000000000000000000000000 + cipher=08000000000000000000000000000000 + plain=5E7E39D06ADB10500B5B3162D1635241 + encrypted=08000000000000000000000000000000 + +Set 6, vector# 5: + key=00000000000000000000000000000000 + cipher=04000000000000000000000000000000 + plain=96D32322233BFB3A0A3CC315E9E08799 + encrypted=04000000000000000000000000000000 + +Set 6, vector# 6: + key=00000000000000000000000000000000 + cipher=02000000000000000000000000000000 + plain=4E9EA4CFB75A0A38DA08A3B597F3E045 + encrypted=02000000000000000000000000000000 + +Set 6, vector# 7: + key=00000000000000000000000000000000 + cipher=01000000000000000000000000000000 + plain=0618CBD3156DF0A2CFBBD07813041101 + encrypted=01000000000000000000000000000000 + +Set 6, vector# 8: + key=00000000000000000000000000000000 + cipher=00800000000000000000000000000000 + plain=1D32C7F6A8C986448D26C1B0F9CEFBCF + encrypted=00800000000000000000000000000000 + +Set 6, vector# 9: + key=00000000000000000000000000000000 + cipher=00400000000000000000000000000000 + plain=F22B4D162E44AC449DF3B25E4120877A + encrypted=00400000000000000000000000000000 + +Set 6, vector# 10: + key=00000000000000000000000000000000 + cipher=00200000000000000000000000000000 + plain=DDC2A9367DE1E356FC372D89155EED65 + encrypted=00200000000000000000000000000000 + +Set 6, vector# 11: + key=00000000000000000000000000000000 + cipher=00100000000000000000000000000000 + plain=05D525D5A3586737C39AA615DAF12180 + encrypted=00100000000000000000000000000000 + +Set 6, vector# 12: + key=00000000000000000000000000000000 + cipher=00080000000000000000000000000000 + plain=B73AA72C4E55827EAD1687DC4998393E + encrypted=00080000000000000000000000000000 + +Set 6, vector# 13: + key=00000000000000000000000000000000 + cipher=00040000000000000000000000000000 + plain=DEE0643B5EF00BCC71A980FF6C7EE064 + encrypted=00040000000000000000000000000000 + +Set 6, vector# 14: + key=00000000000000000000000000000000 + cipher=00020000000000000000000000000000 + plain=F4D125344D34FE2F04D0C500EAE63D4F + encrypted=00020000000000000000000000000000 + +Set 6, vector# 15: + key=00000000000000000000000000000000 + cipher=00010000000000000000000000000000 + plain=189B3E20298892A29400CCFD2BC89F63 + encrypted=00010000000000000000000000000000 + +Set 6, vector# 16: + key=00000000000000000000000000000000 + cipher=00008000000000000000000000000000 + plain=77562017722BC7B214776F2143648538 + encrypted=00008000000000000000000000000000 + +Set 6, vector# 17: + key=00000000000000000000000000000000 + cipher=00004000000000000000000000000000 + plain=063486B14CEF9D5AC26A772FAAAFF7A0 + encrypted=00004000000000000000000000000000 + +Set 6, vector# 18: + key=00000000000000000000000000000000 + cipher=00002000000000000000000000000000 + plain=3683A20177C47E7366454FEAB903B318 + encrypted=00002000000000000000000000000000 + +Set 6, vector# 19: + key=00000000000000000000000000000000 + cipher=00001000000000000000000000000000 + plain=0737B533495D56EC621AA475B51031F3 + encrypted=00001000000000000000000000000000 + +Set 6, vector# 20: + key=00000000000000000000000000000000 + cipher=00000800000000000000000000000000 + plain=B48FC73B1BAF313907AB0D659438B3D8 + encrypted=00000800000000000000000000000000 + +Set 6, vector# 21: + key=00000000000000000000000000000000 + cipher=00000400000000000000000000000000 + plain=B597248CB1CFFD6686F53F60C89C344D + encrypted=00000400000000000000000000000000 + +Set 6, vector# 22: + key=00000000000000000000000000000000 + cipher=00000200000000000000000000000000 + plain=CD297144F36A6FFC0A8F01A6FB0AAE2F + encrypted=00000200000000000000000000000000 + +Set 6, vector# 23: + key=00000000000000000000000000000000 + cipher=00000100000000000000000000000000 + plain=668158B16B29F1ED5D98D0BDFE1E2AD3 + encrypted=00000100000000000000000000000000 + +Set 6, vector# 24: + key=00000000000000000000000000000000 + cipher=00000080000000000000000000000000 + plain=AB55F23E58668CB9C4450568D8700253 + encrypted=00000080000000000000000000000000 + +Set 6, vector# 25: + key=00000000000000000000000000000000 + cipher=00000040000000000000000000000000 + plain=5711A7E214E24F54103CA10E80A88CE5 + encrypted=00000040000000000000000000000000 + +Set 6, vector# 26: + key=00000000000000000000000000000000 + cipher=00000020000000000000000000000000 + plain=2CD5575584121D98F28B4D51E7D1664A + encrypted=00000020000000000000000000000000 + +Set 6, vector# 27: + key=00000000000000000000000000000000 + cipher=00000010000000000000000000000000 + plain=09ADE0FD67FE9F8FA6AA6482D764BEBA + encrypted=00000010000000000000000000000000 + +Set 6, vector# 28: + key=00000000000000000000000000000000 + cipher=00000008000000000000000000000000 + plain=C4DB79B893E5EBB7C4F552181EA897BE + encrypted=00000008000000000000000000000000 + +Set 6, vector# 29: + key=00000000000000000000000000000000 + cipher=00000004000000000000000000000000 + plain=82CABEF13C4550026EF02AB51A0A1058 + encrypted=00000004000000000000000000000000 + +Set 6, vector# 30: + key=00000000000000000000000000000000 + cipher=00000002000000000000000000000000 + plain=626E18B280B699AA3A56E64E0C4B903C + encrypted=00000002000000000000000000000000 + +Set 6, vector# 31: + key=00000000000000000000000000000000 + cipher=00000001000000000000000000000000 + plain=63664AD838C5CC81371783FD39CC52C7 + encrypted=00000001000000000000000000000000 + +Set 6, vector# 32: + key=00000000000000000000000000000000 + cipher=00000000800000000000000000000000 + plain=3279AE402BFEC06C1644526D0A9631DA + encrypted=00000000800000000000000000000000 + +Set 6, vector# 33: + key=00000000000000000000000000000000 + cipher=00000000400000000000000000000000 + plain=6EAD4EABCBD71433CC6C0013FBBB4B5C + encrypted=00000000400000000000000000000000 + +Set 6, vector# 34: + key=00000000000000000000000000000000 + cipher=00000000200000000000000000000000 + plain=30D7B9124E4261467DEC289A9E14A64D + encrypted=00000000200000000000000000000000 + +Set 6, vector# 35: + key=00000000000000000000000000000000 + cipher=00000000100000000000000000000000 + plain=ADD5B2A7DAD5A4B8DCA424F34F31ADB3 + encrypted=00000000100000000000000000000000 + +Set 6, vector# 36: + key=00000000000000000000000000000000 + cipher=00000000080000000000000000000000 + plain=2A62DE8A083E05F9F6ADEA4B7D680DE8 + encrypted=00000000080000000000000000000000 + +Set 6, vector# 37: + key=00000000000000000000000000000000 + cipher=00000000040000000000000000000000 + plain=F6FD1BF7200204993DDB9A50E6AFE8A1 + encrypted=00000000040000000000000000000000 + +Set 6, vector# 38: + key=00000000000000000000000000000000 + cipher=00000000020000000000000000000000 + plain=144EE15623DA9873D654DF35236FDB7D + encrypted=00000000020000000000000000000000 + +Set 6, vector# 39: + key=00000000000000000000000000000000 + cipher=00000000010000000000000000000000 + plain=33509524A073447BC2C189A8BA91E971 + encrypted=00000000010000000000000000000000 + +Set 6, vector# 40: + key=00000000000000000000000000000000 + cipher=00000000008000000000000000000000 + plain=DB5CCBBF183302844E6C9F9579AE444F + encrypted=00000000008000000000000000000000 + +Set 6, vector# 41: + key=00000000000000000000000000000000 + cipher=00000000004000000000000000000000 + plain=FFC67F222524CFEBC9988439DFE90F00 + encrypted=00000000004000000000000000000000 + +Set 6, vector# 42: + key=00000000000000000000000000000000 + cipher=00000000002000000000000000000000 + plain=8076120C9D1C776AAE5854EAEA0D4541 + encrypted=00000000002000000000000000000000 + +Set 6, vector# 43: + key=00000000000000000000000000000000 + cipher=00000000001000000000000000000000 + plain=6D78E73FFD85689175076FA405E2A08A + encrypted=00000000001000000000000000000000 + +Set 6, vector# 44: + key=00000000000000000000000000000000 + cipher=00000000000800000000000000000000 + plain=D2EF37D12AC96A74EEDA3C386E6D0CD3 + encrypted=00000000000800000000000000000000 + +Set 6, vector# 45: + key=00000000000000000000000000000000 + cipher=00000000000400000000000000000000 + plain=F432EE6C9A9ECD90F207B753CD8070E2 + encrypted=00000000000400000000000000000000 + +Set 6, vector# 46: + key=00000000000000000000000000000000 + cipher=00000000000200000000000000000000 + plain=28CF5926019F6D3AFCC12FF36AED9CEC + encrypted=00000000000200000000000000000000 + +Set 6, vector# 47: + key=00000000000000000000000000000000 + cipher=00000000000100000000000000000000 + plain=EE525CD3D5C566DD2DBB24B28688D51C + encrypted=00000000000100000000000000000000 + +Set 6, vector# 48: + key=00000000000000000000000000000000 + cipher=00000000000080000000000000000000 + plain=94B624EA1E795EB1E383E12627962135 + encrypted=00000000000080000000000000000000 + +Set 6, vector# 49: + key=00000000000000000000000000000000 + cipher=00000000000040000000000000000000 + plain=174B3630F309806AF8F1FEB5506AB745 + encrypted=00000000000040000000000000000000 + +Set 6, vector# 50: + key=00000000000000000000000000000000 + cipher=00000000000020000000000000000000 + plain=B053E4A4FBEE02721973A192C73EDB9F + encrypted=00000000000020000000000000000000 + +Set 6, vector# 51: + key=00000000000000000000000000000000 + cipher=00000000000010000000000000000000 + plain=D9C03BED06D84F8CB503BA4B88324F89 + encrypted=00000000000010000000000000000000 + +Set 6, vector# 52: + key=00000000000000000000000000000000 + cipher=00000000000008000000000000000000 + plain=72213CF353C13DA49E14E239369A7F18 + encrypted=00000000000008000000000000000000 + +Set 6, vector# 53: + key=00000000000000000000000000000000 + cipher=00000000000004000000000000000000 + plain=BB4280A53656D3B9165A931A343AEC97 + encrypted=00000000000004000000000000000000 + +Set 6, vector# 54: + key=00000000000000000000000000000000 + cipher=00000000000002000000000000000000 + plain=42318CF078EEEEB741914F71F6830127 + encrypted=00000000000002000000000000000000 + +Set 6, vector# 55: + key=00000000000000000000000000000000 + cipher=00000000000001000000000000000000 + plain=17211B853D0456E94174CA57A831470D + encrypted=00000000000001000000000000000000 + +Set 6, vector# 56: + key=00000000000000000000000000000000 + cipher=00000000000000800000000000000000 + plain=D2BCF3C6C2D974D57613D62DF64923C5 + encrypted=00000000000000800000000000000000 + +Set 6, vector# 57: + key=00000000000000000000000000000000 + cipher=00000000000000400000000000000000 + plain=2984A18D52B048A878CA3BBD88301654 + encrypted=00000000000000400000000000000000 + +Set 6, vector# 58: + key=00000000000000000000000000000000 + cipher=00000000000000200000000000000000 + plain=60237CB8B7AFB91FB4E78C2E828E45D7 + encrypted=00000000000000200000000000000000 + +Set 6, vector# 59: + key=00000000000000000000000000000000 + cipher=00000000000000100000000000000000 + plain=33467B41F1925888C6172DE813D28D36 + encrypted=00000000000000100000000000000000 + +Set 6, vector# 60: + key=00000000000000000000000000000000 + cipher=00000000000000080000000000000000 + plain=922864A699F401D76BBA6493AED95503 + encrypted=00000000000000080000000000000000 + +Set 6, vector# 61: + key=00000000000000000000000000000000 + cipher=00000000000000040000000000000000 + plain=4D951B4EB93A2D53C042A36565FDE29C + encrypted=00000000000000040000000000000000 + +Set 6, vector# 62: + key=00000000000000000000000000000000 + cipher=00000000000000020000000000000000 + plain=6710D1FF4B28CA8DEB5101569F1D8460 + encrypted=00000000000000020000000000000000 + +Set 6, vector# 63: + key=00000000000000000000000000000000 + cipher=00000000000000010000000000000000 + plain=87BAE4DDE7E553CE3C2231EAE1CE0BBF + encrypted=00000000000000010000000000000000 + +Set 6, vector# 64: + key=00000000000000000000000000000000 + cipher=00000000000000008000000000000000 + plain=192B3778FC2FA4018B060221FDFB9E85 + encrypted=00000000000000008000000000000000 + +Set 6, vector# 65: + key=00000000000000000000000000000000 + cipher=00000000000000004000000000000000 + plain=15C72340B93625BCFE3D5FB2A1E646BC + encrypted=00000000000000004000000000000000 + +Set 6, vector# 66: + key=00000000000000000000000000000000 + cipher=00000000000000002000000000000000 + plain=76E1B591B5AF88A710A12E6720C304B9 + encrypted=00000000000000002000000000000000 + +Set 6, vector# 67: + key=00000000000000000000000000000000 + cipher=00000000000000001000000000000000 + plain=66457E14170F296AEF8EF85D09FC9690 + encrypted=00000000000000001000000000000000 + +Set 6, vector# 68: + key=00000000000000000000000000000000 + cipher=00000000000000000800000000000000 + plain=4667BECB5AF2D498CD2D4D6FC8070639 + encrypted=00000000000000000800000000000000 + +Set 6, vector# 69: + key=00000000000000000000000000000000 + cipher=00000000000000000400000000000000 + plain=E3A470F44AFC8F1BC3965D0E90986A9D + encrypted=00000000000000000400000000000000 + +Set 6, vector# 70: + key=00000000000000000000000000000000 + cipher=00000000000000000200000000000000 + plain=472C242133DBA991865A9133551DC693 + encrypted=00000000000000000200000000000000 + +Set 6, vector# 71: + key=00000000000000000000000000000000 + cipher=00000000000000000100000000000000 + plain=C3A154E879B0F02A99A2DFB1C10E40B2 + encrypted=00000000000000000100000000000000 + +Set 6, vector# 72: + key=00000000000000000000000000000000 + cipher=00000000000000000080000000000000 + plain=4142835E47D438D9FC123C29E6BEC5DC + encrypted=00000000000000000080000000000000 + +Set 6, vector# 73: + key=00000000000000000000000000000000 + cipher=00000000000000000040000000000000 + plain=6BF94819205488429C504C805DC1D89A + encrypted=00000000000000000040000000000000 + +Set 6, vector# 74: + key=00000000000000000000000000000000 + cipher=00000000000000000020000000000000 + plain=0799E875222800159DC714D21DA2F0E0 + encrypted=00000000000000000020000000000000 + +Set 6, vector# 75: + key=00000000000000000000000000000000 + cipher=00000000000000000010000000000000 + plain=FC7BD390EF41685BD0E023D2A0C1497F + encrypted=00000000000000000010000000000000 + +Set 6, vector# 76: + key=00000000000000000000000000000000 + cipher=00000000000000000008000000000000 + plain=E96B04068911CDCBB27ED5C4718B116C + encrypted=00000000000000000008000000000000 + +Set 6, vector# 77: + key=00000000000000000000000000000000 + cipher=00000000000000000004000000000000 + plain=BFD07F088D621EBD7D0FE1499ECCF1C0 + encrypted=00000000000000000004000000000000 + +Set 6, vector# 78: + key=00000000000000000000000000000000 + cipher=00000000000000000002000000000000 + plain=C5DE923EE3B23B2FE478C3B2F4336071 + encrypted=00000000000000000002000000000000 + +Set 6, vector# 79: + key=00000000000000000000000000000000 + cipher=00000000000000000001000000000000 + plain=5FAB5E3B800E91747FFFD247A47B60B0 + encrypted=00000000000000000001000000000000 + +Set 6, vector# 80: + key=00000000000000000000000000000000 + cipher=00000000000000000000800000000000 + plain=2E022DF51E0B711BB5944151DEF3F5CB + encrypted=00000000000000000000800000000000 + +Set 6, vector# 81: + key=00000000000000000000000000000000 + cipher=00000000000000000000400000000000 + plain=66642827058697F266E1A116868387F2 + encrypted=00000000000000000000400000000000 + +Set 6, vector# 82: + key=00000000000000000000000000000000 + cipher=00000000000000000000200000000000 + plain=7DCA5AE12289EFC6A22F69570C489B58 + encrypted=00000000000000000000200000000000 + +Set 6, vector# 83: + key=00000000000000000000000000000000 + cipher=00000000000000000000100000000000 + plain=5F064C843F8181CBE6ACD18844131DD4 + encrypted=00000000000000000000100000000000 + +Set 6, vector# 84: + key=00000000000000000000000000000000 + cipher=00000000000000000000080000000000 + plain=F4248BBE1BBEE1DFFEFB4EF67DB014CC + encrypted=00000000000000000000080000000000 + +Set 6, vector# 85: + key=00000000000000000000000000000000 + cipher=00000000000000000000040000000000 + plain=B6963C8B945BE69EBCD40135196D5884 + encrypted=00000000000000000000040000000000 + +Set 6, vector# 86: + key=00000000000000000000000000000000 + cipher=00000000000000000000020000000000 + plain=2D2CE710AB24355B79B0E046399C2C86 + encrypted=00000000000000000000020000000000 + +Set 6, vector# 87: + key=00000000000000000000000000000000 + cipher=00000000000000000000010000000000 + plain=2A7F4E4D9CDE88A9EE445A32C6CE9322 + encrypted=00000000000000000000010000000000 + +Set 6, vector# 88: + key=00000000000000000000000000000000 + cipher=00000000000000000000008000000000 + plain=06CF9FE655ED66BC3530B36167E1548A + encrypted=00000000000000000000008000000000 + +Set 6, vector# 89: + key=00000000000000000000000000000000 + cipher=00000000000000000000004000000000 + plain=3BDE21DDE60EFDCB20776536F2BE9BF4 + encrypted=00000000000000000000004000000000 + +Set 6, vector# 90: + key=00000000000000000000000000000000 + cipher=00000000000000000000002000000000 + plain=0AF3BFB87AFF3BEA9DB95284385DB621 + encrypted=00000000000000000000002000000000 + +Set 6, vector# 91: + key=00000000000000000000000000000000 + cipher=00000000000000000000001000000000 + plain=A240AA9C69228F988B5BD2D1A0F7EF32 + encrypted=00000000000000000000001000000000 + +Set 6, vector# 92: + key=00000000000000000000000000000000 + cipher=00000000000000000000000800000000 + plain=F4D57B4BAF95F6DA1915543E566135DE + encrypted=00000000000000000000000800000000 + +Set 6, vector# 93: + key=00000000000000000000000000000000 + cipher=00000000000000000000000400000000 + plain=8313CD6A26B39C3858DB4E647D12D97A + encrypted=00000000000000000000000400000000 + +Set 6, vector# 94: + key=00000000000000000000000000000000 + cipher=00000000000000000000000200000000 + plain=A870B894B1EF985A3A2A2001F42F90AA + encrypted=00000000000000000000000200000000 + +Set 6, vector# 95: + key=00000000000000000000000000000000 + cipher=00000000000000000000000100000000 + plain=1FDD2B3D34579FBD9E9D62EA63662AED + encrypted=00000000000000000000000100000000 + +Set 6, vector# 96: + key=00000000000000000000000000000000 + cipher=00000000000000000000000080000000 + plain=B3AE6D301C00E540EB247C78D0E0B2B2 + encrypted=00000000000000000000000080000000 + +Set 6, vector# 97: + key=00000000000000000000000000000000 + cipher=00000000000000000000000040000000 + plain=B2E9E6AE14B3C809021819D4AE61BDE7 + encrypted=00000000000000000000000040000000 + +Set 6, vector# 98: + key=00000000000000000000000000000000 + cipher=00000000000000000000000020000000 + plain=93189248FFFEEF99E29D4E26F7149BB4 + encrypted=00000000000000000000000020000000 + +Set 6, vector# 99: + key=00000000000000000000000000000000 + cipher=00000000000000000000000010000000 + plain=B0FECECA4B343D31A664535F8FCFC683 + encrypted=00000000000000000000000010000000 + +Set 6, vector#100: + key=00000000000000000000000000000000 + cipher=00000000000000000000000008000000 + plain=9FC3A393AA57DC995B4063062194C2AC + encrypted=00000000000000000000000008000000 + +Set 6, vector#101: + key=00000000000000000000000000000000 + cipher=00000000000000000000000004000000 + plain=0DE85E6642E0E97EE46152022F9CA036 + encrypted=00000000000000000000000004000000 + +Set 6, vector#102: + key=00000000000000000000000000000000 + cipher=00000000000000000000000002000000 + plain=99FD99846BA54B2760C66479FB637D08 + encrypted=00000000000000000000000002000000 + +Set 6, vector#103: + key=00000000000000000000000000000000 + cipher=00000000000000000000000001000000 + plain=1EC41074AB89246F88596C5913BC4A71 + encrypted=00000000000000000000000001000000 + +Set 6, vector#104: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000800000 + plain=CA55B0DD4662F69D75B173A940FA0961 + encrypted=00000000000000000000000000800000 + +Set 6, vector#105: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000400000 + plain=CDCE1CA0AC21C50A69636851D28B9731 + encrypted=00000000000000000000000000400000 + +Set 6, vector#106: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000200000 + plain=CBFD5A1D50629F3A5971E75DA72DCB81 + encrypted=00000000000000000000000000200000 + +Set 6, vector#107: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000100000 + plain=EC306CEA6E10130D689150B7A1672739 + encrypted=00000000000000000000000000100000 + +Set 6, vector#108: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000080000 + plain=9CC5143391DE844CE4131128494C77C3 + encrypted=00000000000000000000000000080000 + +Set 6, vector#109: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000040000 + plain=84D0389701AAC8D40B31512840F18ADA + encrypted=00000000000000000000000000040000 + +Set 6, vector#110: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000020000 + plain=831C9F9C92A8928DE00CD05CB5E262E2 + encrypted=00000000000000000000000000020000 + +Set 6, vector#111: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000010000 + plain=DF8BBE40B00D5735FC18BDD22C36B435 + encrypted=00000000000000000000000000010000 + +Set 6, vector#112: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000008000 + plain=81ECB55C7A865CEAD458EE5CBCFBAAFB + encrypted=00000000000000000000000000008000 + +Set 6, vector#113: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000004000 + plain=053606170236A3BBCF22CA46232F36A7 + encrypted=00000000000000000000000000004000 + +Set 6, vector#114: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000002000 + plain=30D01F45766742834A68A92EC1CB64B0 + encrypted=00000000000000000000000000002000 + +Set 6, vector#115: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000001000 + plain=F0CE9B39682AE505CC3E0F5BE65A131A + encrypted=00000000000000000000000000001000 + +Set 6, vector#116: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000800 + plain=604814BA7FA65B41CC288D4D605955A5 + encrypted=00000000000000000000000000000800 + +Set 6, vector#117: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000400 + plain=03010A14842A1EEE5FC4D42E428A0F89 + encrypted=00000000000000000000000000000400 + +Set 6, vector#118: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000200 + plain=8680F9F0CA296DE725CE4BB8B493E98B + encrypted=00000000000000000000000000000200 + +Set 6, vector#119: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000100 + plain=EEA6D9406D235AA948927781DEE4D9A3 + encrypted=00000000000000000000000000000100 + +Set 6, vector#120: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000080 + plain=F3CD02EFA2A7F01A2F243C0CB2E90AE3 + encrypted=00000000000000000000000000000080 + +Set 6, vector#121: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000040 + plain=ACADDBDC849F6863ED29E1B047CED7C2 + encrypted=00000000000000000000000000000040 + +Set 6, vector#122: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000020 + plain=63B1B472A6B5412E6C3D00E88AF38BAF + encrypted=00000000000000000000000000000020 + +Set 6, vector#123: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000010 + plain=45B8878A696EDBA74EC8FE6111FB0A90 + encrypted=00000000000000000000000000000010 + +Set 6, vector#124: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000008 + plain=8F8832F0A1E8FC36EB7BB22C0139DB74 + encrypted=00000000000000000000000000000008 + +Set 6, vector#125: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000004 + plain=D1AAAA7D2236DA7FE57A1B6613B920CB + encrypted=00000000000000000000000000000004 + +Set 6, vector#126: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000002 + plain=C3571247FFDDE3B88E02546F4CABA0E6 + encrypted=00000000000000000000000000000002 + +Set 6, vector#127: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000001 + plain=88B8DB2C039AA64B53ED981FD04ED416 + encrypted=00000000000000000000000000000001 + +Test vectors -- set 7 +===================== + +Set 7, vector# 0: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=F8A789CB32A5D79BE812BFB1FB1D633A + encrypted=00000000000000000000000000000000 + +Set 7, vector# 1: + key=01010101010101010101010101010101 + cipher=01010101010101010101010101010101 + plain=909C259605824CE809AA84D87851ED35 + encrypted=01010101010101010101010101010101 + +Set 7, vector# 2: + key=02020202020202020202020202020202 + cipher=02020202020202020202020202020202 + plain=BF763707276C461B86CB888890F5B4FF + encrypted=02020202020202020202020202020202 + +Set 7, vector# 3: + key=03030303030303030303030303030303 + cipher=03030303030303030303030303030303 + plain=F570A136AE3B28C28DB9BE5FE9DC8567 + encrypted=03030303030303030303030303030303 + +Set 7, vector# 4: + key=04040404040404040404040404040404 + cipher=04040404040404040404040404040404 + plain=AA3834F14DDF69E520463AA999C1303E + encrypted=04040404040404040404040404040404 + +Set 7, vector# 5: + key=05050505050505050505050505050505 + cipher=05050505050505050505050505050505 + plain=6856C641C86F0995A877F39EEC4F4DF8 + encrypted=05050505050505050505050505050505 + +Set 7, vector# 6: + key=06060606060606060606060606060606 + cipher=06060606060606060606060606060606 + plain=BAA71597CE75582442131193E26D4ED6 + encrypted=06060606060606060606060606060606 + +Set 7, vector# 7: + key=07070707070707070707070707070707 + cipher=07070707070707070707070707070707 + plain=9018CAF7BC2DF592B22131D81BC5A77A + encrypted=07070707070707070707070707070707 + +Set 7, vector# 8: + key=08080808080808080808080808080808 + cipher=08080808080808080808080808080808 + plain=3CD14C92AE568F1698BA8E5808097425 + encrypted=08080808080808080808080808080808 + +Set 7, vector# 9: + key=09090909090909090909090909090909 + cipher=09090909090909090909090909090909 + plain=E8A4D34B5F9AA4A223F11D584B667471 + encrypted=09090909090909090909090909090909 + +Set 7, vector# 10: + key=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + cipher=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + plain=BB94C877FD9360092E0CD5B2496CA186 + encrypted=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + +Set 7, vector# 11: + key=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + cipher=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + plain=6A6E1F9FDEE7DE67763A06612D9ACABA + encrypted=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + +Set 7, vector# 12: + key=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + cipher=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + plain=905684A5A9662A709B8BBB3B04802CF9 + encrypted=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + +Set 7, vector# 13: + key=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + cipher=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + plain=9B9F2BAED80B60136E67421AFE79FA22 + encrypted=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + +Set 7, vector# 14: + key=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + cipher=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + plain=679D44E8D249B9628D267DBCC6DB53F6 + encrypted=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + +Set 7, vector# 15: + key=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + cipher=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + plain=81FDC4C4D55B14E0931CD64074714F82 + encrypted=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + +Set 7, vector# 16: + key=10101010101010101010101010101010 + cipher=10101010101010101010101010101010 + plain=CE27BD5260D373FFC88805B889EDD28E + encrypted=10101010101010101010101010101010 + +Set 7, vector# 17: + key=11111111111111111111111111111111 + cipher=11111111111111111111111111111111 + plain=B2B62142606A981CC3A4C717204CDD37 + encrypted=11111111111111111111111111111111 + +Set 7, vector# 18: + key=12121212121212121212121212121212 + cipher=12121212121212121212121212121212 + plain=A2C79849D07AD6EB0165A9562345BFD0 + encrypted=12121212121212121212121212121212 + +Set 7, vector# 19: + key=13131313131313131313131313131313 + cipher=13131313131313131313131313131313 + plain=EA8E2A01CD66A46033EB06A844EFD563 + encrypted=13131313131313131313131313131313 + +Set 7, vector# 20: + key=14141414141414141414141414141414 + cipher=14141414141414141414141414141414 + plain=626C87E9811C148DE8A0FF46D5BCA9A5 + encrypted=14141414141414141414141414141414 + +Set 7, vector# 21: + key=15151515151515151515151515151515 + cipher=15151515151515151515151515151515 + plain=35C72125E0D05B0A10459D38FCFD7599 + encrypted=15151515151515151515151515151515 + +Set 7, vector# 22: + key=16161616161616161616161616161616 + cipher=16161616161616161616161616161616 + plain=2B89FF00455E414DC29E5AE6B8CA8B39 + encrypted=16161616161616161616161616161616 + +Set 7, vector# 23: + key=17171717171717171717171717171717 + cipher=17171717171717171717171717171717 + plain=9FD3583D273AF374DBEF5CE950FE9987 + encrypted=17171717171717171717171717171717 + +Set 7, vector# 24: + key=18181818181818181818181818181818 + cipher=18181818181818181818181818181818 + plain=C53B5023A1985061678E9F5C3603182A + encrypted=18181818181818181818181818181818 + +Set 7, vector# 25: + key=19191919191919191919191919191919 + cipher=19191919191919191919191919191919 + plain=A92D74DD68788A8D60C81F185EF6FA47 + encrypted=19191919191919191919191919191919 + +Set 7, vector# 26: + key=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + cipher=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + plain=52832B6D38D3F4F6B2CF17CDC9825A79 + encrypted=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + +Set 7, vector# 27: + key=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + cipher=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + plain=FFD83845958086B73868AB63E763E5DD + encrypted=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + +Set 7, vector# 28: + key=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + cipher=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + plain=71BA44335BB4E1392669950F905A48A6 + encrypted=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + +Set 7, vector# 29: + key=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + cipher=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + plain=9FA4F558BB7838A871ABB1BAE012F8F8 + encrypted=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + +Set 7, vector# 30: + key=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + cipher=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + plain=FAD2C95EC6C2203805B4E47FD70B10D3 + encrypted=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + +Set 7, vector# 31: + key=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + cipher=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + plain=683F4F610B9A25992E812B7CBD12C5EF + encrypted=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + +Set 7, vector# 32: + key=20202020202020202020202020202020 + cipher=20202020202020202020202020202020 + plain=A5C6AE3A749796B2ED6BB8FF1937F99D + encrypted=20202020202020202020202020202020 + +Set 7, vector# 33: + key=21212121212121212121212121212121 + cipher=21212121212121212121212121212121 + plain=883A9E0F51CF2C436AAD9DAC9C3DBAE3 + encrypted=21212121212121212121212121212121 + +Set 7, vector# 34: + key=22222222222222222222222222222222 + cipher=22222222222222222222222222222222 + plain=B0C2AB583527FCE037C7C4BBBC1D899B + encrypted=22222222222222222222222222222222 + +Set 7, vector# 35: + key=23232323232323232323232323232323 + cipher=23232323232323232323232323232323 + plain=C43F668AA64E60876ADEDE2574513BED + encrypted=23232323232323232323232323232323 + +Set 7, vector# 36: + key=24242424242424242424242424242424 + cipher=24242424242424242424242424242424 + plain=7F1A713EB9278C91DFE758A07CBAB636 + encrypted=24242424242424242424242424242424 + +Set 7, vector# 37: + key=25252525252525252525252525252525 + cipher=25252525252525252525252525252525 + plain=8AA66C9BB3F80121A54F1FCD53C05E76 + encrypted=25252525252525252525252525252525 + +Set 7, vector# 38: + key=26262626262626262626262626262626 + cipher=26262626262626262626262626262626 + plain=8A6995D7AE1BCC0C8D117E6CAB78DA6C + encrypted=26262626262626262626262626262626 + +Set 7, vector# 39: + key=27272727272727272727272727272727 + cipher=27272727272727272727272727272727 + plain=226D613311E885CE83DF8C8560C2A20B + encrypted=27272727272727272727272727272727 + +Set 7, vector# 40: + key=28282828282828282828282828282828 + cipher=28282828282828282828282828282828 + plain=D01C145B479BD7F1EBE5B2912C99224F + encrypted=28282828282828282828282828282828 + +Set 7, vector# 41: + key=29292929292929292929292929292929 + cipher=29292929292929292929292929292929 + plain=DD049162B825F91E0741DF0B014B7C15 + encrypted=29292929292929292929292929292929 + +Set 7, vector# 42: + key=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + cipher=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + plain=0A38448B63A6EAF8086256B4B8E8FA00 + encrypted=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + +Set 7, vector# 43: + key=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + cipher=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + plain=CE0CDBC533A8FD53EF6ECD095FBD5E94 + encrypted=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + +Set 7, vector# 44: + key=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + cipher=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + plain=969B2072D719D4F0249A7DE8AD743A56 + encrypted=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + +Set 7, vector# 45: + key=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + cipher=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + plain=31374064041676C9BD7F1FF0F867C849 + encrypted=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + +Set 7, vector# 46: + key=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + cipher=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + plain=714D8A9BCB64F7D286F10DF1BBA0A199 + encrypted=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + +Set 7, vector# 47: + key=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + cipher=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + plain=AD869CD8360D18E5C072861F9B01F599 + encrypted=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + +Set 7, vector# 48: + key=30303030303030303030303030303030 + cipher=30303030303030303030303030303030 + plain=E8C1B347A214EF3315EBC2709095A807 + encrypted=30303030303030303030303030303030 + +Set 7, vector# 49: + key=31313131313131313131313131313131 + cipher=31313131313131313131313131313131 + plain=E44AE72C1304E15DF5FDBAE49F46C30C + encrypted=31313131313131313131313131313131 + +Set 7, vector# 50: + key=32323232323232323232323232323232 + cipher=32323232323232323232323232323232 + plain=269DE1AE271AD17ABB26F05F95F174FF + encrypted=32323232323232323232323232323232 + +Set 7, vector# 51: + key=33333333333333333333333333333333 + cipher=33333333333333333333333333333333 + plain=F481636D574CDC48A4DF082A0FE44524 + encrypted=33333333333333333333333333333333 + +Set 7, vector# 52: + key=34343434343434343434343434343434 + cipher=34343434343434343434343434343434 + plain=7BC216548F2BDCDB55CD7AC1747A8A3E + encrypted=34343434343434343434343434343434 + +Set 7, vector# 53: + key=35353535353535353535353535353535 + cipher=35353535353535353535353535353535 + plain=EC9EEB83FADDDBC17724532F44670B8C + encrypted=35353535353535353535353535353535 + +Set 7, vector# 54: + key=36363636363636363636363636363636 + cipher=36363636363636363636363636363636 + plain=3114EC1EA55619B70CBB2A9D217FAFDE + encrypted=36363636363636363636363636363636 + +Set 7, vector# 55: + key=37373737373737373737373737373737 + cipher=37373737373737373737373737373737 + plain=CA8BA144B17EC358622A4ECECA48B9E6 + encrypted=37373737373737373737373737373737 + +Set 7, vector# 56: + key=38383838383838383838383838383838 + cipher=38383838383838383838383838383838 + plain=7DA7AAFFA16E056A38F4901054D80255 + encrypted=38383838383838383838383838383838 + +Set 7, vector# 57: + key=39393939393939393939393939393939 + cipher=39393939393939393939393939393939 + plain=0E12CFF4B1D23414210E7D99163016E6 + encrypted=39393939393939393939393939393939 + +Set 7, vector# 58: + key=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + cipher=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + plain=90DD09B37C6191E9835CFBF9CEE9793F + encrypted=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + +Set 7, vector# 59: + key=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + cipher=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + plain=92F40A367D4D6903CB927AB4198EE1AD + encrypted=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + +Set 7, vector# 60: + key=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + cipher=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + plain=2712433A4BB9AC3B4C95F33769E8BED7 + encrypted=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + +Set 7, vector# 61: + key=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + cipher=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + plain=781AFB62F9484A8C1C0CC49B65EE8B54 + encrypted=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + +Set 7, vector# 62: + key=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + cipher=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + plain=9B3E122CBB75F5BC5B548ED50811C3E0 + encrypted=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + +Set 7, vector# 63: + key=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + cipher=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + plain=402888196DED3C2C3D4D25270628051C + encrypted=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + +Set 7, vector# 64: + key=40404040404040404040404040404040 + cipher=40404040404040404040404040404040 + plain=2C45999B3041EB29E818F42C25E983B8 + encrypted=40404040404040404040404040404040 + +Set 7, vector# 65: + key=41414141414141414141414141414141 + cipher=41414141414141414141414141414141 + plain=22AE1748F0FA136F9AA8CA45A15ACF80 + encrypted=41414141414141414141414141414141 + +Set 7, vector# 66: + key=42424242424242424242424242424242 + cipher=42424242424242424242424242424242 + plain=669FC973716B21FEF8F27CF64BFB5690 + encrypted=42424242424242424242424242424242 + +Set 7, vector# 67: + key=43434343434343434343434343434343 + cipher=43434343434343434343434343434343 + plain=AFD24F6190AA088AE535BC2867130F5D + encrypted=43434343434343434343434343434343 + +Set 7, vector# 68: + key=44444444444444444444444444444444 + cipher=44444444444444444444444444444444 + plain=8E1E57A9A6631519A2A4A4CAA83508BE + encrypted=44444444444444444444444444444444 + +Set 7, vector# 69: + key=45454545454545454545454545454545 + cipher=45454545454545454545454545454545 + plain=208AC99559A1472F868A30D26F3ECC99 + encrypted=45454545454545454545454545454545 + +Set 7, vector# 70: + key=46464646464646464646464646464646 + cipher=46464646464646464646464646464646 + plain=E7C9BC1F96D52EE4EE7C82578B76B2F0 + encrypted=46464646464646464646464646464646 + +Set 7, vector# 71: + key=47474747474747474747474747474747 + cipher=47474747474747474747474747474747 + plain=88413B289540FD784C4A9B2679AF21B3 + encrypted=47474747474747474747474747474747 + +Set 7, vector# 72: + key=48484848484848484848484848484848 + cipher=48484848484848484848484848484848 + plain=485CC7E511AE4750EE895A93DB17DF55 + encrypted=48484848484848484848484848484848 + +Set 7, vector# 73: + key=49494949494949494949494949494949 + cipher=49494949494949494949494949494949 + plain=65D5DD975EB49EC86BFF479DAD7C7461 + encrypted=49494949494949494949494949494949 + +Set 7, vector# 74: + key=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + cipher=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + plain=C52B0EAAADB7B9FD40C86856D1C071A2 + encrypted=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + +Set 7, vector# 75: + key=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + cipher=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + plain=6878CB5A7565D5A67B63F5F1B9CF91D3 + encrypted=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + +Set 7, vector# 76: + key=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + cipher=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + plain=A8D2D7BD86F8C5AE935A04EA24DB271C + encrypted=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + +Set 7, vector# 77: + key=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + cipher=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + plain=2CE799AEF0A179474FAA959A592D2805 + encrypted=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + +Set 7, vector# 78: + key=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + cipher=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + plain=3165234DC1D2F33CBE2D2CD3AD778440 + encrypted=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + +Set 7, vector# 79: + key=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + cipher=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + plain=F8D6263F74A1DD1396F1B4830462C1A4 + encrypted=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + +Set 7, vector# 80: + key=50505050505050505050505050505050 + cipher=50505050505050505050505050505050 + plain=E6D4B62B85DA4203F899460335F98818 + encrypted=50505050505050505050505050505050 + +Set 7, vector# 81: + key=51515151515151515151515151515151 + cipher=51515151515151515151515151515151 + plain=93AC2066813574CE9A02FFA737463FCC + encrypted=51515151515151515151515151515151 + +Set 7, vector# 82: + key=52525252525252525252525252525252 + cipher=52525252525252525252525252525252 + plain=19336A286CC178DDB5A5093CD3600BA5 + encrypted=52525252525252525252525252525252 + +Set 7, vector# 83: + key=53535353535353535353535353535353 + cipher=53535353535353535353535353535353 + plain=6BFA14BC57720A7F9DF5253571DB7811 + encrypted=53535353535353535353535353535353 + +Set 7, vector# 84: + key=54545454545454545454545454545454 + cipher=54545454545454545454545454545454 + plain=78E46846BCD6925C0259F0E50DCBB32B + encrypted=54545454545454545454545454545454 + +Set 7, vector# 85: + key=55555555555555555555555555555555 + cipher=55555555555555555555555555555555 + plain=0B79EA395E13250B491F4E3D489D4930 + encrypted=55555555555555555555555555555555 + +Set 7, vector# 86: + key=56565656565656565656565656565656 + cipher=56565656565656565656565656565656 + plain=F83A2BEAB1822994A572505415A377FB + encrypted=56565656565656565656565656565656 + +Set 7, vector# 87: + key=57575757575757575757575757575757 + cipher=57575757575757575757575757575757 + plain=F430BCDB6068DE4943EEF1C909A0FC33 + encrypted=57575757575757575757575757575757 + +Set 7, vector# 88: + key=58585858585858585858585858585858 + cipher=58585858585858585858585858585858 + plain=E654B5FA3FFD73E9118960E107C7BAEF + encrypted=58585858585858585858585858585858 + +Set 7, vector# 89: + key=59595959595959595959595959595959 + cipher=59595959595959595959595959595959 + plain=652CE9E10CEEEAFB83CD4AA4ED33447C + encrypted=59595959595959595959595959595959 + +Set 7, vector# 90: + key=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + cipher=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + plain=1250C2892EF48AF8747290E1D4A84A75 + encrypted=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + +Set 7, vector# 91: + key=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + cipher=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + plain=EC59D4AC08E5D10AEF0EE68E23C78B99 + encrypted=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + +Set 7, vector# 92: + key=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + cipher=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + plain=F1DC15ACA4EB3AE8DF49A618340E6177 + encrypted=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + +Set 7, vector# 93: + key=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + cipher=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + plain=C264C4C5142B391DD53F21EB5BCD2F31 + encrypted=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + +Set 7, vector# 94: + key=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + cipher=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + plain=5D0C68A626862081A7B52C6CD5EA3814 + encrypted=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + +Set 7, vector# 95: + key=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + cipher=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + plain=92A0FF248472C60C0D9CF1F0DE10B0E9 + encrypted=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + +Set 7, vector# 96: + key=60606060606060606060606060606060 + cipher=60606060606060606060606060606060 + plain=EF9D3D8D82379618F042017A4DC1039C + encrypted=60606060606060606060606060606060 + +Set 7, vector# 97: + key=61616161616161616161616161616161 + cipher=61616161616161616161616161616161 + plain=6DF913DF49D4231E57285209F93B372D + encrypted=61616161616161616161616161616161 + +Set 7, vector# 98: + key=62626262626262626262626262626262 + cipher=62626262626262626262626262626262 + plain=CB238D1E1A6BAC4947EC08B3A0420432 + encrypted=62626262626262626262626262626262 + +Set 7, vector# 99: + key=63636363636363636363636363636363 + cipher=63636363636363636363636363636363 + plain=8AF9858067DA220F8AEF7888CC9BD07B + encrypted=63636363636363636363636363636363 + +Set 7, vector#100: + key=64646464646464646464646464646464 + cipher=64646464646464646464646464646464 + plain=329A707E4C0DE902E0530382AFC4B6B9 + encrypted=64646464646464646464646464646464 + +Set 7, vector#101: + key=65656565656565656565656565656565 + cipher=65656565656565656565656565656565 + plain=7D362B918A9E3BE68A17AC3C4C5B0C26 + encrypted=65656565656565656565656565656565 + +Set 7, vector#102: + key=66666666666666666666666666666666 + cipher=66666666666666666666666666666666 + plain=9BDAC7F46956299A377A345670F6ED73 + encrypted=66666666666666666666666666666666 + +Set 7, vector#103: + key=67676767676767676767676767676767 + cipher=67676767676767676767676767676767 + plain=B1A2A6B76BB796E08CDC5A8C0BE252C9 + encrypted=67676767676767676767676767676767 + +Set 7, vector#104: + key=68686868686868686868686868686868 + cipher=68686868686868686868686868686868 + plain=9A9BBFFE46963F7272FEB7586BEA3A8C + encrypted=68686868686868686868686868686868 + +Set 7, vector#105: + key=69696969696969696969696969696969 + cipher=69696969696969696969696969696969 + plain=443198DF411C7050CA61EDAB942BAF71 + encrypted=69696969696969696969696969696969 + +Set 7, vector#106: + key=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + cipher=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + plain=D7FFD8EB55D7DC5FA99064266B8F0A4D + encrypted=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + +Set 7, vector#107: + key=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + cipher=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + plain=1BB08C2285B6569971B00038E5D1F631 + encrypted=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + +Set 7, vector#108: + key=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + cipher=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + plain=B9DDBE1EA139C5FD42C011ED21CAF562 + encrypted=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + +Set 7, vector#109: + key=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + cipher=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + plain=E656534D98980B05398010520B44509D + encrypted=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + +Set 7, vector#110: + key=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + cipher=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + plain=DDC9F3ED5559184401F6E68907EFE546 + encrypted=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + +Set 7, vector#111: + key=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + cipher=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + plain=A57CB9187CD3CEBD021DA6FB016112CE + encrypted=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + +Set 7, vector#112: + key=70707070707070707070707070707070 + cipher=70707070707070707070707070707070 + plain=3111DA8F091BFF4B575ED0B0CF3094FC + encrypted=70707070707070707070707070707070 + +Set 7, vector#113: + key=71717171717171717171717171717171 + cipher=71717171717171717171717171717171 + plain=897BC39ECFB22163C9E172F0E8F9F2ED + encrypted=71717171717171717171717171717171 + +Set 7, vector#114: + key=72727272727272727272727272727272 + cipher=72727272727272727272727272727272 + plain=8F99D591D4D44F9DBECE15928D26F0D4 + encrypted=72727272727272727272727272727272 + +Set 7, vector#115: + key=73737373737373737373737373737373 + cipher=73737373737373737373737373737373 + plain=E49091B4E7D3C63189783962B62738F1 + encrypted=73737373737373737373737373737373 + +Set 7, vector#116: + key=74747474747474747474747474747474 + cipher=74747474747474747474747474747474 + plain=0F4F3828F3E78CBE255A950E5E4C7ABA + encrypted=74747474747474747474747474747474 + +Set 7, vector#117: + key=75757575757575757575757575757575 + cipher=75757575757575757575757575757575 + plain=43828D7167A05A12B6FC96A9FA60B052 + encrypted=75757575757575757575757575757575 + +Set 7, vector#118: + key=76767676767676767676767676767676 + cipher=76767676767676767676767676767676 + plain=FB76BCB2263700CA8A15FE1BB9E2EBAC + encrypted=76767676767676767676767676767676 + +Set 7, vector#119: + key=77777777777777777777777777777777 + cipher=77777777777777777777777777777777 + plain=AD5FA248E60BF5188FF23850AE339384 + encrypted=77777777777777777777777777777777 + +Set 7, vector#120: + key=78787878787878787878787878787878 + cipher=78787878787878787878787878787878 + plain=1FFD5F1A1788BBF57C10DBD976288F2F + encrypted=78787878787878787878787878787878 + +Set 7, vector#121: + key=79797979797979797979797979797979 + cipher=79797979797979797979797979797979 + plain=EDB1957F7C2976907A81B6AD375E79E2 + encrypted=79797979797979797979797979797979 + +Set 7, vector#122: + key=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + cipher=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + plain=F392D06119D346C381760BFA74ACD6E1 + encrypted=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + +Set 7, vector#123: + key=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + cipher=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + plain=21F92B2BED34A3C418BCB3A53B03BF05 + encrypted=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + +Set 7, vector#124: + key=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + cipher=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + plain=781B5374A7710C1FE9CBBD2D24AB2AB7 + encrypted=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + +Set 7, vector#125: + key=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + cipher=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + plain=E98C132FDCE64EFC948536326F4443EE + encrypted=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + +Set 7, vector#126: + key=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + cipher=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + plain=877782A55BEF1ACAC753EE5118D42455 + encrypted=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + +Set 7, vector#127: + key=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + cipher=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + plain=627ECB5E8CD2E0329EDB26A35C47030A + encrypted=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + +Set 7, vector#128: + key=80808080808080808080808080808080 + cipher=80808080808080808080808080808080 + plain=9410F03E8D687F95808E6A5DF449EE08 + encrypted=80808080808080808080808080808080 + +Set 7, vector#129: + key=81818181818181818181818181818181 + cipher=81818181818181818181818181818181 + plain=1D0DCF6CF07C6D02CE590B1E500F61A0 + encrypted=81818181818181818181818181818181 + +Set 7, vector#130: + key=82828282828282828282828282828282 + cipher=82828282828282828282828282828282 + plain=55A3647AF8C72F4ABD57D6DEDE21F80E + encrypted=82828282828282828282828282828282 + +Set 7, vector#131: + key=83838383838383838383838383838383 + cipher=83838383838383838383838383838383 + plain=44D575CDCCCED4F04910CDA2061BCD4C + encrypted=83838383838383838383838383838383 + +Set 7, vector#132: + key=84848484848484848484848484848484 + cipher=84848484848484848484848484848484 + plain=B22428B17F8422C08034B91D5D0F1228 + encrypted=84848484848484848484848484848484 + +Set 7, vector#133: + key=85858585858585858585858585858585 + cipher=85858585858585858585858585858585 + plain=FE75F7408D3932D933AAF0DAD65FEBFC + encrypted=85858585858585858585858585858585 + +Set 7, vector#134: + key=86868686868686868686868686868686 + cipher=86868686868686868686868686868686 + plain=84E6255D9D9F87FC7067459EC2BE9ABE + encrypted=86868686868686868686868686868686 + +Set 7, vector#135: + key=87878787878787878787878787878787 + cipher=87878787878787878787878787878787 + plain=68C7A939E0C7CDC613736CE2E26ED160 + encrypted=87878787878787878787878787878787 + +Set 7, vector#136: + key=88888888888888888888888888888888 + cipher=88888888888888888888888888888888 + plain=48CB9F1DE2832D9E8C9DDE7BA02309E8 + encrypted=88888888888888888888888888888888 + +Set 7, vector#137: + key=89898989898989898989898989898989 + cipher=89898989898989898989898989898989 + plain=27A51A23B1BF99DD2411105803DF8B51 + encrypted=89898989898989898989898989898989 + +Set 7, vector#138: + key=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + cipher=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + plain=7889961628E87CD9806BEEC1B68D9D16 + encrypted=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + +Set 7, vector#139: + key=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + cipher=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + plain=5FB18FC7E4DB83DBB7A96D1208153C77 + encrypted=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + +Set 7, vector#140: + key=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + cipher=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + plain=2212E4F9C2AF034B5CF534433A53DA14 + encrypted=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + +Set 7, vector#141: + key=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + cipher=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + plain=701A26197C7B452894FDF7E0CB47AA1A + encrypted=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + +Set 7, vector#142: + key=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + cipher=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + plain=B1A42A5CB81EF712AC82EA015A19F3E7 + encrypted=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + +Set 7, vector#143: + key=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + cipher=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + plain=2B2BCEA85CDC1F6F02A6934AF1120355 + encrypted=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + +Set 7, vector#144: + key=90909090909090909090909090909090 + cipher=90909090909090909090909090909090 + plain=C08DF132A4E388DD7C7A0A6BA652A56F + encrypted=90909090909090909090909090909090 + +Set 7, vector#145: + key=91919191919191919191919191919191 + cipher=91919191919191919191919191919191 + plain=DA4AE859FF3BFC3D082B65E0CFC2FA94 + encrypted=91919191919191919191919191919191 + +Set 7, vector#146: + key=92929292929292929292929292929292 + cipher=92929292929292929292929292929292 + plain=F4D3ED2B4F856D3F295E544991C18E3A + encrypted=92929292929292929292929292929292 + +Set 7, vector#147: + key=93939393939393939393939393939393 + cipher=93939393939393939393939393939393 + plain=1C0285AA3BBDCD8AAE9E20E84C2252D5 + encrypted=93939393939393939393939393939393 + +Set 7, vector#148: + key=94949494949494949494949494949494 + cipher=94949494949494949494949494949494 + plain=9E42E2CED8089530D34F28C2EAAA85EA + encrypted=94949494949494949494949494949494 + +Set 7, vector#149: + key=95959595959595959595959595959595 + cipher=95959595959595959595959595959595 + plain=D177836DB38C7D525DDAC04789DA3A82 + encrypted=95959595959595959595959595959595 + +Set 7, vector#150: + key=96969696969696969696969696969696 + cipher=96969696969696969696969696969696 + plain=5571D0BB6E2D0E68A6648BA20A72193F + encrypted=96969696969696969696969696969696 + +Set 7, vector#151: + key=97979797979797979797979797979797 + cipher=97979797979797979797979797979797 + plain=489931FECB597D2BA8E43114EE0F2BAA + encrypted=97979797979797979797979797979797 + +Set 7, vector#152: + key=98989898989898989898989898989898 + cipher=98989898989898989898989898989898 + plain=376B4BEEA1C3E6E74C184C38A8B3E544 + encrypted=98989898989898989898989898989898 + +Set 7, vector#153: + key=99999999999999999999999999999999 + cipher=99999999999999999999999999999999 + plain=32AA434D64339C618CBFC69AFA04549D + encrypted=99999999999999999999999999999999 + +Set 7, vector#154: + key=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + cipher=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + plain=DDCAD4221AEE1287B5619A8D7720FBAD + encrypted=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + +Set 7, vector#155: + key=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + cipher=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + plain=FD655CD9923601BDA3215319A9A757B2 + encrypted=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + +Set 7, vector#156: + key=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + cipher=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + plain=4CA0BB0630FC2187FB4BA27BC076E12D + encrypted=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + +Set 7, vector#157: + key=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + cipher=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + plain=22A3EE2F211AA013B856265C5E715412 + encrypted=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + +Set 7, vector#158: + key=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + cipher=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + plain=1EFB1FF9C5CDE032DE4EB01A92310F0C + encrypted=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + +Set 7, vector#159: + key=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + cipher=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + plain=F1B0D9B49B76284EBD956AB3E01A6C37 + encrypted=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + +Set 7, vector#160: + key=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + cipher=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + plain=024DA5AD353FD6BB9AD1AA05315A7BF6 + encrypted=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + +Set 7, vector#161: + key=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + cipher=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + plain=9A8B79584E49CFC5BF351815285DD836 + encrypted=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + +Set 7, vector#162: + key=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + cipher=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + plain=5E5BC97DFBF325511141A47E09F0F774 + encrypted=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + +Set 7, vector#163: + key=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + cipher=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + plain=F62B14C7DE5D07725F26CDAE5AED13A0 + encrypted=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + +Set 7, vector#164: + key=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + cipher=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + plain=AB1017E68EB91364110AA9904AB6BBA1 + encrypted=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + +Set 7, vector#165: + key=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + cipher=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + plain=5C09DEA94D617A97AC20698A673BB4B8 + encrypted=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + +Set 7, vector#166: + key=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + cipher=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + plain=3A203CD870E4957A08BF443A792513D0 + encrypted=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + +Set 7, vector#167: + key=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + cipher=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + plain=4571A5EB79A3608DA460395C290FA26E + encrypted=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + +Set 7, vector#168: + key=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + cipher=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + plain=E76FDB6A492C204DA9EE43325B2046AF + encrypted=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + +Set 7, vector#169: + key=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + cipher=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + plain=7D2A0489C8B78C2490C5A8A40F9E4678 + encrypted=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + +Set 7, vector#170: + key=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + cipher=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + plain=B76F44F2D5DF3EF92E5AFED3677A4192 + encrypted=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + +Set 7, vector#171: + key=ABABABABABABABABABABABABABABABAB + cipher=ABABABABABABABABABABABABABABABAB + plain=0B661D9E92247C92E3F4653523F6DB28 + encrypted=ABABABABABABABABABABABABABABABAB + +Set 7, vector#172: + key=ACACACACACACACACACACACACACACACAC + cipher=ACACACACACACACACACACACACACACACAC + plain=E178CB265ED36ECE7BCEF7B479E74A5C + encrypted=ACACACACACACACACACACACACACACACAC + +Set 7, vector#173: + key=ADADADADADADADADADADADADADADADAD + cipher=ADADADADADADADADADADADADADADADAD + plain=D843C343FD023CC8CEC1E9BF385CF280 + encrypted=ADADADADADADADADADADADADADADADAD + +Set 7, vector#174: + key=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + cipher=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + plain=5BC4693E9F4E2BFE5BE46C2556E5B33E + encrypted=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + +Set 7, vector#175: + key=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + cipher=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + plain=F688BCEFEF7ED8ABDAE100F48F8A8DF4 + encrypted=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + +Set 7, vector#176: + key=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + cipher=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + plain=A5242DEE085E8A54D3DBB0F9EF7A7628 + encrypted=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + +Set 7, vector#177: + key=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + cipher=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + plain=3511ED9CAE0978A214203ED596FAEAF0 + encrypted=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + +Set 7, vector#178: + key=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + cipher=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + plain=480EED034EBE594AA73F323D9D48ADB4 + encrypted=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + +Set 7, vector#179: + key=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + cipher=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + plain=4F32BBD527C97DB1E4B9FA3A11F54098 + encrypted=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + +Set 7, vector#180: + key=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + cipher=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + plain=20CDE0A7D5ED99F32019764C7BDDA18A + encrypted=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + +Set 7, vector#181: + key=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + cipher=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + plain=A4AC638362FA16E769B53B455260C615 + encrypted=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + +Set 7, vector#182: + key=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + cipher=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + plain=BCD731D376FAB00C2680B8FA3211D766 + encrypted=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + +Set 7, vector#183: + key=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + cipher=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + plain=489688588911C09FAF38AFDFB23F7FCE + encrypted=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + +Set 7, vector#184: + key=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + cipher=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + plain=2A47056300C2FA0D467082B9CDD93918 + encrypted=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + +Set 7, vector#185: + key=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + cipher=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + plain=52112F4376FBB7A5B6BF0CDAF08A5F52 + encrypted=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + +Set 7, vector#186: + key=BABABABABABABABABABABABABABABABA + cipher=BABABABABABABABABABABABABABABABA + plain=1ACF4D10CF516D6BDEFD9AF7AD390D37 + encrypted=BABABABABABABABABABABABABABABABA + +Set 7, vector#187: + key=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + cipher=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + plain=CDEC659E5D8FA50A51E86908EA0E2560 + encrypted=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + +Set 7, vector#188: + key=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + cipher=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + plain=FBE3517E86216B3F53B9C7D29D9DADB7 + encrypted=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + +Set 7, vector#189: + key=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + cipher=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + plain=39C6AE987D326BBE12F6430E1AF27E59 + encrypted=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + +Set 7, vector#190: + key=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + cipher=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + plain=B6E7D71A9CEE97058048421F1D419825 + encrypted=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + +Set 7, vector#191: + key=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + cipher=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + plain=80774D9E36163C1532B6E6C29D4317E7 + encrypted=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + +Set 7, vector#192: + key=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + cipher=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + plain=F6AE349F20F4D4FD4BAFEF92373CCA2B + encrypted=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + +Set 7, vector#193: + key=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + cipher=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + plain=178068BDB7C8F264B21ED3A87FE20B84 + encrypted=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + +Set 7, vector#194: + key=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + cipher=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + plain=411C9E9ADD6CA93FFA02D101F31DD280 + encrypted=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + +Set 7, vector#195: + key=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + cipher=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + plain=5169B273166CABC3884D7D1084DFDC33 + encrypted=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + +Set 7, vector#196: + key=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + cipher=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + plain=9F544C000A182D622DD3BAD6822ED1E1 + encrypted=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + +Set 7, vector#197: + key=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + cipher=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + plain=712EFFDE7719BA7FB7E65F310F269D1E + encrypted=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + +Set 7, vector#198: + key=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + cipher=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + plain=810D8DD56FDEBB71CC878C2620BAFA39 + encrypted=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + +Set 7, vector#199: + key=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + cipher=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + plain=52E65BC4D8C892CEB3B79554A8369328 + encrypted=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + +Set 7, vector#200: + key=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + cipher=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + plain=E2852E170F11CF54D495BBC49394E922 + encrypted=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + +Set 7, vector#201: + key=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + cipher=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + plain=B4AE54349B98AE40C590C0D54EFE24E0 + encrypted=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + +Set 7, vector#202: + key=CACACACACACACACACACACACACACACACA + cipher=CACACACACACACACACACACACACACACACA + plain=8AF6DB3614A1C95C824317DA8425BD9C + encrypted=CACACACACACACACACACACACACACACACA + +Set 7, vector#203: + key=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + cipher=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + plain=A5EA5B4FA49C5343E3492F88FA563814 + encrypted=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + +Set 7, vector#204: + key=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + cipher=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + plain=BDEA1C11D412F4B41C1595900CC9ACD0 + encrypted=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + +Set 7, vector#205: + key=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + cipher=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + plain=3439A663BFA3C6E049220D77F54F4FC4 + encrypted=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + +Set 7, vector#206: + key=CECECECECECECECECECECECECECECECE + cipher=CECECECECECECECECECECECECECECECE + plain=341031FFEB2632DC3506D4531E0C3E0D + encrypted=CECECECECECECECECECECECECECECECE + +Set 7, vector#207: + key=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + cipher=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + plain=62102A41D63CA2072FF8800219BE5E02 + encrypted=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + +Set 7, vector#208: + key=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + cipher=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + plain=89692F839E01A4486930DD0B231E1D74 + encrypted=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + +Set 7, vector#209: + key=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + cipher=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + plain=A9D07607EBEB517CE246D648E854E967 + encrypted=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + +Set 7, vector#210: + key=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + cipher=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + plain=A057FC1EC66334290F74958E0E1DCB5F + encrypted=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + +Set 7, vector#211: + key=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + cipher=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + plain=D239BCA47A96AA27D2FFDD53C11EB895 + encrypted=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + +Set 7, vector#212: + key=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + cipher=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + plain=928230C6A45AD9CF48C53C07C968E2EA + encrypted=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + +Set 7, vector#213: + key=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + cipher=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + plain=0738767E07AF5763D260479191DC2010 + encrypted=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + +Set 7, vector#214: + key=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + cipher=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + plain=793CF6868D05B888DF7F0D82E0454EEA + encrypted=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + +Set 7, vector#215: + key=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + cipher=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + plain=89BD226E93494D5FF9638859AEC618A3 + encrypted=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + +Set 7, vector#216: + key=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + cipher=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + plain=0A6F5AEBF838440DC60AFC5187552A66 + encrypted=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + +Set 7, vector#217: + key=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + cipher=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + plain=7F2427493BDF83AD0AFB2C1AB4A9D257 + encrypted=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + +Set 7, vector#218: + key=DADADADADADADADADADADADADADADADA + cipher=DADADADADADADADADADADADADADADADA + plain=70F53AF027C6CA6D0C1845DC91F52D6C + encrypted=DADADADADADADADADADADADADADADADA + +Set 7, vector#219: + key=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + cipher=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + plain=AB251D5FE190A85841F4FEEC83D5D155 + encrypted=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + +Set 7, vector#220: + key=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + cipher=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + plain=D8CAEBE41C5E59CEEC371A2715E397E2 + encrypted=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + +Set 7, vector#221: + key=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + cipher=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + plain=50B2F51E47CE9B8EE3388F12F42B9E66 + encrypted=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + +Set 7, vector#222: + key=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + cipher=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + plain=902ADA17D70A9AC98EA1E033A2812B91 + encrypted=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + +Set 7, vector#223: + key=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + cipher=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + plain=C36DBEB0B319A898D14B41EDE207EE71 + encrypted=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + +Set 7, vector#224: + key=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + cipher=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + plain=A9CCF9DA6D362118932DA4AF208EBA06 + encrypted=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + +Set 7, vector#225: + key=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + cipher=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + plain=63AF3BE6B2A4C49CDADCF6108E6F7449 + encrypted=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + +Set 7, vector#226: + key=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + cipher=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + plain=07038EED41272FCED7E7FFFF1F32E71C + encrypted=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + +Set 7, vector#227: + key=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + cipher=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + plain=4EFD5755CCEB8AB68EE7B534F6142009 + encrypted=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + +Set 7, vector#228: + key=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + cipher=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + plain=845A2CC5B850A51D496794D4233A1FB6 + encrypted=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + +Set 7, vector#229: + key=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + cipher=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + plain=C6E284E34391C7926B527856F2ECFF9C + encrypted=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + +Set 7, vector#230: + key=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + cipher=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + plain=5A7BC1F861E2909F08B95E01508D576F + encrypted=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + +Set 7, vector#231: + key=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + cipher=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + plain=1128B5BED0BD7AD13C74BF306EEB8E11 + encrypted=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + +Set 7, vector#232: + key=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + cipher=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + plain=87BD5AF2E065CC5DCE74559B07752D73 + encrypted=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + +Set 7, vector#233: + key=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + cipher=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + plain=AF9F9A88B2D0117A7A1CA523A79D4B11 + encrypted=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + +Set 7, vector#234: + key=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + cipher=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + plain=92A117EBE5C9A659214EE3A66DFEDC5F + encrypted=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + +Set 7, vector#235: + key=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + cipher=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + plain=88ECDEF827F69C9319D93B8FB9C2A421 + encrypted=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + +Set 7, vector#236: + key=ECECECECECECECECECECECECECECECEC + cipher=ECECECECECECECECECECECECECECECEC + plain=BA443CA399B414F8F443C98A0834D167 + encrypted=ECECECECECECECECECECECECECECECEC + +Set 7, vector#237: + key=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + cipher=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + plain=5108B593A2F421A4351877F5D7C9BEBB + encrypted=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + +Set 7, vector#238: + key=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + cipher=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + plain=E2DB13208B1FBD13B99F06FADC53E21D + encrypted=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + +Set 7, vector#239: + key=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + cipher=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + plain=C49DE69CBA3F01541FC0846D87633A12 + encrypted=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + +Set 7, vector#240: + key=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + cipher=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + plain=6102611A17338CF4EB752A7FE0CADDB7 + encrypted=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + +Set 7, vector#241: + key=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + cipher=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + plain=93751EDFF3D34921EF826C58EA177FA3 + encrypted=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + +Set 7, vector#242: + key=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + cipher=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + plain=FF6FE6C8B61E4B8F5A48D219603F5DEB + encrypted=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + +Set 7, vector#243: + key=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + cipher=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + plain=A52E050488CBACA9C99397BE5C800983 + encrypted=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + +Set 7, vector#244: + key=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + cipher=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + plain=50C934264995A8516B88BFE69A441F0E + encrypted=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + +Set 7, vector#245: + key=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + cipher=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + plain=DF30D3FE5CFC000AEACD56727B6BA8CF + encrypted=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + +Set 7, vector#246: + key=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + cipher=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + plain=160D685C6D94CB31B5F6731E881222EA + encrypted=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + +Set 7, vector#247: + key=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + cipher=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + plain=A438496E312E080630E37F0A41152E6D + encrypted=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + +Set 7, vector#248: + key=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + cipher=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + plain=0957F3F462A7F13734A2E0408D48EE53 + encrypted=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + +Set 7, vector#249: + key=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + cipher=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + plain=9D4F0029CEACA63E7E8CCB14389407CF + encrypted=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + +Set 7, vector#250: + key=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + cipher=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + plain=D1BF5C1F648C4E38EC2A2F398BF8ADCC + encrypted=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + +Set 7, vector#251: + key=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + cipher=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + plain=74A002FD1866B1D0EA2B0074952760A9 + encrypted=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + +Set 7, vector#252: + key=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + cipher=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + plain=E4DE5914A12411A880999B7CB57B5A9F + encrypted=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + +Set 7, vector#253: + key=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + cipher=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + plain=37F6C797911E32C99E2DECA5EDEDF2FD + encrypted=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + +Set 7, vector#254: + key=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + cipher=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + plain=89712F4C14A64BB721240BDB2019E8EC + encrypted=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + +Set 7, vector#255: + key=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + cipher=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + plain=AB76DDC0DABEA4328D509436FD7F4988 + encrypted=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + +Test vectors -- set 8 +===================== + +Set 8, vector# 0: + key=000102030405060708090A0B0C0D0E0F + cipher=00112233445566778899AABBCCDDEEFF + plain=4E5EB514821A9AA560A7D4AB9A692254 + encrypted=00112233445566778899AABBCCDDEEFF + +Set 8, vector# 1: + key=2BD6459F82C5B300952C49104881FF48 + cipher=EA024714AD5C4D84EA024714AD5C4D84 + plain=1374ADA31F8E5AED78016C40E6AAA735 + encrypted=EA024714AD5C4D84EA024714AD5C4D84 + + + +End of test vectors