From c3885c4a83156d5603c48afb57562531b7b256b7 Mon Sep 17 00:00:00 2001 From: bg Date: Fri, 4 Feb 2011 15:15:51 +0100 Subject: [PATCH] Adding DES and Triple-DES --- bcal/bcal_des.c | 9 +- bcal/bcal_des.h | 1 - bcal/bcal_serpent.c | 9 +- bcal/bcal_serpent.h | 1 - bcal/bcal_tdes.c | 16 +- bcal/bcal_tdes.h | 1 - bcal/bcal_tdes2.c | 22 +- bcal/bcal_tdes2.h | 1 - des/des.c | 384 + des/des.h | 100 + mkfiles/des.mk | 13 + mkfiles/tdes.mk | 13 + test_src/main-des-test.c | 122 + test_src/main-tdes-test.c | 123 + testvectors/Des-64-64.test-vectors | 5440 +++++++++++++ ...e-Des-2-Key-128-64.unverified.test-vectors | 6336 +++++++++++++++ ...e-Des-3-Key-192-64.unverified.test-vectors | 7232 +++++++++++++++++ 17 files changed, 19788 insertions(+), 35 deletions(-) create mode 100644 des/des.c create mode 100644 des/des.h create mode 100644 mkfiles/des.mk create mode 100644 mkfiles/tdes.mk create mode 100644 test_src/main-des-test.c create mode 100644 test_src/main-tdes-test.c create mode 100644 testvectors/Des-64-64.test-vectors create mode 100644 testvectors/Triple-Des-2-Key-128-64.unverified.test-vectors create mode 100644 testvectors/Triple-Des-3-Key-192-64.unverified.test-vectors diff --git a/bcal/bcal_des.c b/bcal/bcal_des.c index 737e1d9..ed8dadd 100644 --- a/bcal/bcal_des.c +++ b/bcal/bcal_des.c @@ -25,16 +25,15 @@ * */ -#include #include #include "blockcipher_descriptor.h" #include "des.h" #include "keysize_descriptor.h" -const char des_str[] PROGMEM = "DES"; +const char des_str[] = "DES"; -const uint8_t des_keysize_desc[] PROGMEM = { KS_TYPE_LIST, 1, KS_INT(64), - KS_TYPE_TERMINATOR }; +const uint8_t des_keysize_desc[] = { KS_TYPE_LIST, 1, KS_INT(64), + KS_TYPE_TERMINATOR }; static void des_dummy_enc(void* block, void* key){ des_enc(block, block, key); @@ -45,7 +44,7 @@ void des_dummy_dec(void* block, void* key){ des_dec(block, block, key); } -const bcdesc_t des_desc PROGMEM = { +const bcdesc_t des_desc = { BCDESC_TYPE_BLOCKCIPHER, BC_INIT_TYPE_1, des_str, diff --git a/bcal/bcal_des.h b/bcal/bcal_des.h index a53e40d..7c07b1d 100644 --- a/bcal/bcal_des.h +++ b/bcal/bcal_des.h @@ -25,7 +25,6 @@ * */ -#include #include "blockcipher_descriptor.h" #include "des.h" #include "keysize_descriptor.h" diff --git a/bcal/bcal_serpent.c b/bcal/bcal_serpent.c index 50bb799..4fea462 100644 --- a/bcal/bcal_serpent.c +++ b/bcal/bcal_serpent.c @@ -25,18 +25,17 @@ * */ -#include #include #include "blockcipher_descriptor.h" #include "serpent.h" #include "keysize_descriptor.h" -const char serpent_str[] PROGMEM = "serpent"; +const char serpent_str[] = "serpent"; -const uint8_t serpent_keysize_desc[] PROGMEM = { KS_TYPE_RANGE, KS_INT(1), KS_INT(256), - KS_TYPE_TERMINATOR }; +const uint8_t serpent_keysize_desc[] = { KS_TYPE_RANGE, KS_INT(1), KS_INT(256), + KS_TYPE_TERMINATOR }; -const bcdesc_t serpent_desc PROGMEM = { +const bcdesc_t serpent_desc = { BCDESC_TYPE_BLOCKCIPHER, BC_INIT_TYPE_2, serpent_str, diff --git a/bcal/bcal_serpent.h b/bcal/bcal_serpent.h index 39cccbc..5d9e630 100644 --- a/bcal/bcal_serpent.h +++ b/bcal/bcal_serpent.h @@ -25,7 +25,6 @@ * */ -#include #include "blockcipher_descriptor.h" #include "serpent.h" #include "keysize_descriptor.h" diff --git a/bcal/bcal_tdes.c b/bcal/bcal_tdes.c index 914a1f0..0fc26e1 100644 --- a/bcal/bcal_tdes.c +++ b/bcal/bcal_tdes.c @@ -25,28 +25,26 @@ * */ -#include #include #include "blockcipher_descriptor.h" #include "des.h" #include "keysize_descriptor.h" -const char tdes_str[] PROGMEM = "TDES"; +const char tdes_str[] = "TDES"; -const uint8_t tdes_keysize_desc[] PROGMEM = { KS_TYPE_LIST, 1, KS_INT(192), - KS_TYPE_TERMINATOR }; +const uint8_t tdes_keysize_desc[] = { KS_TYPE_LIST, 1, KS_INT(192), + KS_TYPE_TERMINATOR }; -static -void tdes_dummy_enc(void* block, void* key){ + +void tdes_dummy_enc(void* block, const void* key){ tdes_enc(block, block, key); } -static -void tdes_dummy_dec(void* block, void* key){ +void tdes_dummy_dec(void* block, const void* key){ tdes_dec(block, block, key); } -const bcdesc_t tdes_desc PROGMEM = { +const bcdesc_t tdes_desc = { BCDESC_TYPE_BLOCKCIPHER, BC_INIT_TYPE_1, tdes_str, diff --git a/bcal/bcal_tdes.h b/bcal/bcal_tdes.h index 00a00fe..3971ac1 100644 --- a/bcal/bcal_tdes.h +++ b/bcal/bcal_tdes.h @@ -25,7 +25,6 @@ * */ -#include #include "blockcipher_descriptor.h" #include "des.h" #include "keysize_descriptor.h" diff --git a/bcal/bcal_tdes2.c b/bcal/bcal_tdes2.c index 7c70cf0..dbfc4a8 100644 --- a/bcal/bcal_tdes2.c +++ b/bcal/bcal_tdes2.c @@ -25,28 +25,26 @@ * */ -#include #include #include "blockcipher_descriptor.h" #include "des.h" #include "keysize_descriptor.h" -const char tdes2_str[] PROGMEM = "TDES-2"; +#include -const uint8_t tdes2_keysize_desc[] PROGMEM = { KS_TYPE_LIST, 1, KS_INT(128), - KS_TYPE_TERMINATOR }; +const char tdes2_str[] = "TDES-2"; -static -void tdes_dummy_enc(void* block, void* key){ +const uint8_t tdes2_keysize_desc[] = { KS_TYPE_LIST, 1, KS_INT(128), + KS_TYPE_TERMINATOR }; + +void tdes2_dummy_enc(void* block, const void* key){ tdes_enc(block, block, key); } -static -void tdes_dummy_dec(void* block, void* key){ +void tdes2_dummy_dec(void* block, const void* key){ tdes_dec(block, block, key); } -static void tdes2_init(void* key, void* ctx){ memcpy(ctx, key, 16); memcpy((uint8_t*)ctx+16, key, 8); @@ -54,15 +52,15 @@ void tdes2_init(void* key, void* ctx){ -const bcdesc_t tdes2_desc PROGMEM = { +const bcdesc_t tdes2_desc = { BCDESC_TYPE_BLOCKCIPHER, BC_INIT_TYPE_1, tdes2_str, 24, 64, {(void_fpt)tdes2_init}, - {(void_fpt)tdes_dummy_enc}, - {(void_fpt)tdes_dummy_dec}, + {(void_fpt)tdes2_dummy_enc}, + {(void_fpt)tdes2_dummy_dec}, (bc_free_fpt)NULL, tdes2_keysize_desc }; diff --git a/bcal/bcal_tdes2.h b/bcal/bcal_tdes2.h index beec984..d015d36 100644 --- a/bcal/bcal_tdes2.h +++ b/bcal/bcal_tdes2.h @@ -28,7 +28,6 @@ #ifndef BCAL_TDES2_H_ #define BCAL_TDES2_H_ -#include #include "blockcipher_descriptor.h" #include "des.h" #include "keysize_descriptor.h" diff --git a/des/des.c b/des/des.c new file mode 100644 index 0000000..f7b9952 --- /dev/null +++ b/des/des.c @@ -0,0 +1,384 @@ +/* des.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 des.c + * \author Daniel Otte + * \email daniel.otte@rub.de + * \date 2007-06-16 + * \brief DES and EDE-DES implementation + * \license GPLv3 or later + * + */ +#include +#include + +const uint8_t sbox[256] = { + /* S-box 1 */ + 0xE4, 0xD1, 0x2F, 0xB8, 0x3A, 0x6C, 0x59, 0x07, + 0x0F, 0x74, 0xE2, 0xD1, 0xA6, 0xCB, 0x95, 0x38, + 0x41, 0xE8, 0xD6, 0x2B, 0xFC, 0x97, 0x3A, 0x50, + 0xFC, 0x82, 0x49, 0x17, 0x5B, 0x3E, 0xA0, 0x6D, + /* S-box 2 */ + 0xF1, 0x8E, 0x6B, 0x34, 0x97, 0x2D, 0xC0, 0x5A, + 0x3D, 0x47, 0xF2, 0x8E, 0xC0, 0x1A, 0x69, 0xB5, + 0x0E, 0x7B, 0xA4, 0xD1, 0x58, 0xC6, 0x93, 0x2F, + 0xD8, 0xA1, 0x3F, 0x42, 0xB6, 0x7C, 0x05, 0xE9, + /* S-box 3 */ + 0xA0, 0x9E, 0x63, 0xF5, 0x1D, 0xC7, 0xB4, 0x28, + 0xD7, 0x09, 0x34, 0x6A, 0x28, 0x5E, 0xCB, 0xF1, + 0xD6, 0x49, 0x8F, 0x30, 0xB1, 0x2C, 0x5A, 0xE7, + 0x1A, 0xD0, 0x69, 0x87, 0x4F, 0xE3, 0xB5, 0x2C, + /* S-box 4 */ + 0x7D, 0xE3, 0x06, 0x9A, 0x12, 0x85, 0xBC, 0x4F, + 0xD8, 0xB5, 0x6F, 0x03, 0x47, 0x2C, 0x1A, 0xE9, + 0xA6, 0x90, 0xCB, 0x7D, 0xF1, 0x3E, 0x52, 0x84, + 0x3F, 0x06, 0xA1, 0xD8, 0x94, 0x5B, 0xC7, 0x2E, + /* S-box 5 */ + 0x2C, 0x41, 0x7A, 0xB6, 0x85, 0x3F, 0xD0, 0xE9, + 0xEB, 0x2C, 0x47, 0xD1, 0x50, 0xFA, 0x39, 0x86, + 0x42, 0x1B, 0xAD, 0x78, 0xF9, 0xC5, 0x63, 0x0E, + 0xB8, 0xC7, 0x1E, 0x2D, 0x6F, 0x09, 0xA4, 0x53, + /* S-box 6 */ + 0xC1, 0xAF, 0x92, 0x68, 0x0D, 0x34, 0xE7, 0x5B, + 0xAF, 0x42, 0x7C, 0x95, 0x61, 0xDE, 0x0B, 0x38, + 0x9E, 0xF5, 0x28, 0xC3, 0x70, 0x4A, 0x1D, 0xB6, + 0x43, 0x2C, 0x95, 0xFA, 0xBE, 0x17, 0x60, 0x8D, + /* S-box 7 */ + 0x4B, 0x2E, 0xF0, 0x8D, 0x3C, 0x97, 0x5A, 0x61, + 0xD0, 0xB7, 0x49, 0x1A, 0xE3, 0x5C, 0x2F, 0x86, + 0x14, 0xBD, 0xC3, 0x7E, 0xAF, 0x68, 0x05, 0x92, + 0x6B, 0xD8, 0x14, 0xA7, 0x95, 0x0F, 0xE2, 0x3C, + /* S-box 8 */ + 0xD2, 0x84, 0x6F, 0xB1, 0xA9, 0x3E, 0x50, 0xC7, + 0x1F, 0xD8, 0xA3, 0x74, 0xC5, 0x6B, 0x0E, 0x92, + 0x7B, 0x41, 0x9C, 0xE2, 0x06, 0xAD, 0xF3, 0x58, + 0x21, 0xE7, 0x4A, 0x8D, 0xFC, 0x90, 0x35, 0x6B +}; + +const uint8_t e_permtab[] ={ + 4, 6, /* 4 bytes in 6 bytes out*/ + 32, 1, 2, 3, 4, 5, + 4, 5, 6, 7, 8, 9, + 8, 9, 10, 11, 12, 13, + 12, 13, 14, 15, 16, 17, + 16, 17, 18, 19, 20, 21, + 20, 21, 22, 23, 24, 25, + 24, 25, 26, 27, 28, 29, + 28, 29, 30, 31, 32, 1 +}; + +const uint8_t p_permtab[] ={ + 4, 4, /* 32 bit -> 32 bit */ + 16, 7, 20, 21, + 29, 12, 28, 17, + 1, 15, 23, 26, + 5, 18, 31, 10, + 2, 8, 24, 14, + 32, 27, 3, 9, + 19, 13, 30, 6, + 22, 11, 4, 25 +}; + +const uint8_t ip_permtab[] ={ + 8, 8, /* 64 bit -> 64 bit */ + 58, 50, 42, 34, 26, 18, 10, 2, + 60, 52, 44, 36, 28, 20, 12, 4, + 62, 54, 46, 38, 30, 22, 14, 6, + 64, 56, 48, 40, 32, 24, 16, 8, + 57, 49, 41, 33, 25, 17, 9, 1, + 59, 51, 43, 35, 27, 19, 11, 3, + 61, 53, 45, 37, 29, 21, 13, 5, + 63, 55, 47, 39, 31, 23, 15, 7 +}; + +const uint8_t inv_ip_permtab[] ={ + 8, 8, /* 64 bit -> 64 bit */ + 40, 8, 48, 16, 56, 24, 64, 32, + 39, 7, 47, 15, 55, 23, 63, 31, + 38, 6, 46, 14, 54, 22, 62, 30, + 37, 5, 45, 13, 53, 21, 61, 29, + 36, 4, 44, 12, 52, 20, 60, 28, + 35, 3, 43, 11, 51, 19, 59, 27, + 34, 2, 42, 10, 50, 18, 58, 26, + 33, 1, 41, 9, 49, 17, 57, 25 +}; + +const uint8_t pc1_permtab[] ={ + 8, 7, /* 64 bit -> 56 bit*/ + 57, 49, 41, 33, 25, 17, 9, + 1, 58, 50, 42, 34, 26, 18, + 10, 2, 59, 51, 43, 35, 27, + 19, 11, 3, 60, 52, 44, 36, + 63, 55, 47, 39, 31, 23, 15, + 7, 62, 54, 46, 38, 30, 22, + 14, 6, 61, 53, 45, 37, 29, + 21, 13, 5, 28, 20, 12, 4 +}; + +const uint8_t pc2_permtab[] ={ + 7, 6, /* 56 bit -> 48 bit */ + 14, 17, 11, 24, 1, 5, + 3, 28, 15, 6, 21, 10, + 23, 19, 12, 4, 26, 8, + 16, 7, 27, 20, 13, 2, + 41, 52, 31, 37, 47, 55, + 30, 40, 51, 45, 33, 48, + 44, 49, 39, 56, 34, 53, + 46, 42, 50, 36, 29, 32 +}; + +const uint8_t splitin6bitword_permtab[] = { + 8, 8, /* 64 bit -> 64 bit */ + 64, 64, 1, 6, 2, 3, 4, 5, + 64, 64, 7, 12, 8, 9, 10, 11, + 64, 64, 13, 18, 14, 15, 16, 17, + 64, 64, 19, 24, 20, 21, 22, 23, + 64, 64, 25, 30, 26, 27, 28, 29, + 64, 64, 31, 36, 32, 33, 34, 35, + 64, 64, 37, 42, 38, 39, 40, 41, + 64, 64, 43, 48, 44, 45, 46, 47 +}; + +const uint8_t shiftkey_permtab[] = { + 7, 7, /* 56 bit -> 56 bit */ + 2, 3, 4, 5, 6, 7, 8, 9, + 10, 11, 12, 13, 14, 15, 16, 17, + 18, 19, 20, 21, 22, 23, 24, 25, + 26, 27, 28, 1, + 30, 31, 32, 33, 34, 35, 36, 37, + 38, 39, 40, 41, 42, 43, 44, 45, + 46, 47, 48, 49, 50, 51, 52, 53, + 54, 55, 56, 29 +}; + +const uint8_t shiftkeyinv_permtab[] = { + 7, 7, + 28, 1, 2, 3, 4, 5, 6, 7, + 8, 9, 10, 11, 12, 13, 14, 15, + 16, 17, 18, 19, 20, 21, 22, 23, + 24, 25, 26, 27, + 56, 29, 30, 31, 32, 33, 34, 35, + 36, 37, 38, 39, 40, 41, 42, 43, + 44, 45, 46, 47, 48, 49, 50, 51, + 52, 53, 54, 55 +}; + +/* +1 0 +1 0 +2 1 +2 1 +2 1 +2 1 +2 1 +2 1 +---- +1 0 +2 1 +2 1 +2 1 +2 1 +2 1 +2 1 +1 0 +*/ +#define ROTTABLE 0x7EFC +#define ROTTABLE_INV 0x3F7E +/******************************************************************************/ + +void permute(uint8_t *ptable, const uint8_t *in, uint8_t *out){ + uint8_t ib, ob; /* in-bytes and out-bytes */ + uint8_t byte, bit; /* counter for bit and byte */ + ib = ptable[0]; + ob = ptable[1]; + ptable = &(ptable[2]); + for(byte=0; byte>(x%8)) ){ + t|=0x01; + } + } + out[byte]=t; + } +} + +/******************************************************************************/ + +void changeendian32(uint32_t * a){ + *a = (*a & 0x000000FF) << 24 | + (*a & 0x0000FF00) << 8 | + (*a & 0x00FF0000) >> 8 | + (*a & 0xFF000000) >> 24; +} + +/******************************************************************************/ +static inline +void shiftkey(uint8_t *key){ + uint8_t k[7]; + memcpy(k, key, 7); + permute((uint8_t*)shiftkey_permtab, k, key); +} + +/******************************************************************************/ +static inline +void shiftkey_inv(uint8_t *key){ + uint8_t k[7]; + memcpy(k, key, 7); + permute((uint8_t*)shiftkeyinv_permtab, k, key); + +} + +/******************************************************************************/ +static inline +uint64_t splitin6bitwords(uint64_t a){ + uint64_t ret=0; + a &= 0x0000ffffffffffffLL; + permute((uint8_t*)splitin6bitword_permtab, (uint8_t*)&a, (uint8_t*)&ret); + return ret; +} + +/******************************************************************************/ + +static inline +uint8_t substitute(uint8_t a, uint8_t * sbp){ + uint8_t x; + x = sbp[a>>1]; + x = (a&1)?x&0x0F:x>>4; + return x; + +} + +/******************************************************************************/ + +uint32_t des_f(uint32_t r, uint8_t* kr){ + uint8_t i; + uint32_t t=0,ret; + uint64_t data; + uint8_t *sbp; /* sboxpointer */ + permute((uint8_t*)e_permtab, (uint8_t*)&r, (uint8_t*)&data); + for(i=0; i<7; ++i) + ((uint8_t*)&data)[i] ^= kr[i]; + + /* Sbox substitution */ + data = splitin6bitwords(data); + sbp=(uint8_t*)sbox; + for(i=0; i<8; ++i){ + uint8_t x; + x = substitute(((uint8_t*)&data)[i], sbp); + t<<=4; + t |= x; + sbp += 32; + } + changeendian32(&t); + + permute((uint8_t*)p_permtab,(uint8_t*)&t, (uint8_t*)&ret); + + return ret; +} + +/******************************************************************************/ + +void des_enc(void* out, const void* in, const void* key){ +#define R *((uint32_t*)&(data[4])) +#define L *((uint32_t*)&(data[0])) + + uint8_t data[8],kr[6],k[7]; + uint8_t i; + + permute((uint8_t*)ip_permtab, (uint8_t*)in, data); + permute((uint8_t*)pc1_permtab, (const uint8_t*)key, k); + for(i=0; i<8; ++i){ + shiftkey(k); + if(ROTTABLE&((1<<((i<<1)+0))) ) + shiftkey(k); + permute((uint8_t*)pc2_permtab, k, kr); + L ^= des_f(R, kr); + + shiftkey(k); + if(ROTTABLE&((1<<((i<<1)+1))) ) + shiftkey(k); + permute((uint8_t*)pc2_permtab, k, kr); + R ^= des_f(L, kr); + + } + /* L <-> R*/ + R ^= L; + L ^= R; + R ^= L; + + permute((uint8_t*)inv_ip_permtab, data, (uint8_t*)out); +} + +/******************************************************************************/ + +void des_dec(void* out, const void* in, const uint8_t* key){ +#define R *((uint32_t*)&(data[4])) +#define L *((uint32_t*)&(data[0])) + + uint8_t data[8],kr[6],k[7]; + int8_t i; + permute((uint8_t*)ip_permtab, (uint8_t*)in, data); + permute((uint8_t*)pc1_permtab, (const uint8_t*)key, k); + for(i=7; i>=0; --i){ + + permute((uint8_t*)pc2_permtab, k, kr); + L ^= des_f(R, kr); + shiftkey_inv(k); + if(ROTTABLE&((1<<((i<<1)+1))) ){ + shiftkey_inv(k); + } + + permute((uint8_t*)pc2_permtab, k, kr); + R ^= des_f(L, kr); + shiftkey_inv(k); + if(ROTTABLE&((1<<((i<<1)+0))) ){ + shiftkey_inv(k); + } + + } + /* L <-> R*/ + R ^= L; + L ^= R; + R ^= L; + + permute((uint8_t*)inv_ip_permtab, data, (uint8_t*)out); +} + +/******************************************************************************/ + +void tdes_enc(void* out, void* in, const void* key){ + des_enc(out, in, (uint8_t*)key + 0); + des_dec(out, out, (uint8_t*)key + 8); + des_enc(out, out, (uint8_t*)key +16); +} + +/******************************************************************************/ + +void tdes_dec(void* out, void* in, const uint8_t* key){ + des_dec(out, in, (uint8_t*)key +16); + des_enc(out, out, (uint8_t*)key + 8); + des_dec(out, out, (uint8_t*)key + 0); +} + +/******************************************************************************/ + + diff --git a/des/des.h b/des/des.h new file mode 100644 index 0000000..03fc122 --- /dev/null +++ b/des/des.h @@ -0,0 +1,100 @@ +/* des.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 des.h + * \author Daniel Otte + * \date 2007-06-16 + * \brief des and tdes declarations + * \license GPLv3 or later + * + */ +#ifndef DES_H_ +#define DES_H_ + +/* the FIPS 46-3 (1999-10-25) name for triple DES is triple data encryption algorithm so TDEA. + * Also we only implement the three key mode */ + +/** \def tdea_enc + * \brief defining an alias for void tdes_enc(void* out, const void* in, const void* key) + */ + +/** \def tdea_dec + * \brief defining an alias for void tdes_dec(void* out, const void* in, const void* key) + */ + +#define tdea_enc tdes_enc +#define tdea_dec tdes_dec + +/** \fn void des_enc(void* out, const void* in, const void* key) + * \brief encrypt a block with DES + * + * This function encrypts a block of 64 bits (8 bytes) with the DES algorithm. + * Key expansion is done automatically. The key is 64 bits long, but note that + * only 56 bits are used (the LSB of each byte is dropped). The input and output + * blocks may overlap. + * + * \param out pointer to the block (64 bit = 8 byte) where the ciphertext is written to + * \param in pointer to the block (64 bit = 8 byte) where the plaintext is read from + * \param key pointer to the key (64 bit = 8 byte) + */ +void des_enc(void* out, const void* in, const void* key); + +/** \fn void des_dec(void* out, const void* in, const void* key) + * \brief decrypt a block with DES + * + * This function decrypts a block of 64 bits (8 bytes) with the DES algorithm. + * Key expansion is done automatically. The key is 64 bits long, but note that + * only 56 bits are used (the LSB of each byte is dropped). The input and output + * blocks may overlap. + * + * \param out pointer to the block (64 bit = 8 byte) where the plaintext is written to + * \param in pointer to the block (64 bit = 8 byte) where the ciphertext is read from + * \param key pointer to the key (64 bit = 8 byte) + */ +void des_dec(void* out, const void* in, const void* key); + +/** \fn void tdes_enc(void* out, const void* in, const void* key) + * \brief encrypt a block with Tripple-DES + * + * This function encrypts a block of 64 bits (8 bytes) with the Tripple-DES (EDE) + * algorithm. Key expansion is done automatically. The key is 192 bits long, but + * note that only 178 bits are used (the LSB of each byte is dropped). The input + * and output blocks may overlap. + * + * \param out pointer to the block (64 bit = 8 byte) where the ciphertext is written to + * \param in pointer to the block (64 bit = 8 byte) where the plaintext is read from + * \param key pointer to the key (192 bit = 24 byte) + */ +void tdes_enc(void* out, const void* in, const void* key); + +/** \fn void tdes_dec(void* out, const void* in, const void* key) + * \brief decrypt a block with Tripple-DES + * + * This function decrypts a block of 64 bits (8 bytes) with the Tripple-DES (EDE) + * algorithm. Key expansion is done automatically. The key is 192 bits long, but + * note that only 178 bits are used (the LSB of each byte is dropped). The input + * and output blocks may overlap. + * + * \param out pointer to the block (64 bit = 8 byte) where the plaintext is written to + * \param in pointer to the block (64 bit = 8 byte) where the ciphertext is read from + * \param key pointer to the key (192 bit = 24 byte) + */ + void tdes_dec(void* out, const void* in, const void* key); + +#endif /*DES_H_*/ diff --git a/mkfiles/des.mk b/mkfiles/des.mk new file mode 100644 index 0000000..1390d75 --- /dev/null +++ b/mkfiles/des.mk @@ -0,0 +1,13 @@ +# Makefile for DES +ALGO_NAME := DES + +# comment out the following line for removement of DES from the build process +BLOCK_CIPHERS += $(ALGO_NAME) + +$(ALGO_NAME)_DIR := des/ +$(ALGO_NAME)_OBJ := des.o +$(ALGO_NAME)_INCDIR := bcal/ +$(ALGO_NAME)_TEST_BIN := main-des-test.o bcal_des.o $(CLI_STD) $(BCAL_STD) +$(ALGO_NAME)_NESSIE_TEST := "nessie" +$(ALGO_NAME)_PERFORMANCE_TEST := "performance" + diff --git a/mkfiles/tdes.mk b/mkfiles/tdes.mk new file mode 100644 index 0000000..c772210 --- /dev/null +++ b/mkfiles/tdes.mk @@ -0,0 +1,13 @@ +# Makefile for Triple-DES +ALGO_NAME := TDES + +# comment out the following line for removement of Triple-DES from the build process +BLOCK_CIPHERS += $(ALGO_NAME) + +$(ALGO_NAME)_DIR := des/ +$(ALGO_NAME)_OBJ := des.o +$(ALGO_NAME)_INCDIR := bcal/ +$(ALGO_NAME)_TEST_BIN := main-tdes-test.o bcal_tdes.o bcal_tdes2.o $(CLI_STD) $(BCAL_STD) +$(ALGO_NAME)_NESSIE_TEST := "nessie" +$(ALGO_NAME)_PERFORMANCE_TEST := "performance" + diff --git a/test_src/main-des-test.c b/test_src/main-des-test.c new file mode 100644 index 0000000..4f634e4 --- /dev/null +++ b/test_src/main-des-test.c @@ -0,0 +1,122 @@ +/* main-des-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 . +*/ +/* + * des test-suit + * +*/ + +#include +#include +#include +#include "config.h" +#include "cli.h" +#include "dump.h" +#include "uart_lowlevel.h" +#include "sysclock.h" +#include "hw_gptm.h" + +#include "des.h" +#include "nessie_bc_test.h" +#include "performance_test.h" +#include "bcal-performance.h" +#include "bcal_des.h" + +char* algo_name = "DES"; + +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*)&des_desc, + NULL +}; +/***************************************************************************** + * additional validation-functions * + *****************************************************************************/ +void des_init_dummy(const void* key, uint16_t keysize_b, void* ctx){ + memcpy(ctx, key, 8); +} + +void des_enc_dummy(void* buffer, void* ctx){ + des_enc(buffer, buffer, ctx); +} + +void des_dec_dummy(void* buffer, void* ctx){ + des_dec(buffer, buffer, ctx); +} + +void testrun_nessie_des(void){ + nessie_bc_init(); + nessie_bc_ctx.blocksize_B = 8; + nessie_bc_ctx.keysize_b = 64; + nessie_bc_ctx.name = algo_name; + nessie_bc_ctx.ctx_size_B = 8; + nessie_bc_ctx.cipher_enc = (nessie_bc_enc_fpt)des_enc_dummy; + nessie_bc_ctx.cipher_dec = (nessie_bc_dec_fpt)des_dec_dummy; + nessie_bc_ctx.cipher_genctx = (nessie_bc_gen_fpt)des_init_dummy; + + nessie_bc_run(); +} + + +void testrun_performance_des(void){ + bcal_performance_multiple(algolist); +} +/***************************************************************************** + * 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_des }, + { test_str, NULL, testrun_nessie_des }, + { performance_str, NULL, testrun_performance_des}, + { 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/test_src/main-tdes-test.c b/test_src/main-tdes-test.c new file mode 100644 index 0000000..4c92fbc --- /dev/null +++ b/test_src/main-tdes-test.c @@ -0,0 +1,123 @@ +/* main-tdes-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 . +*/ +/* + * tdes test-suit + * +*/ +#include +#include +#include +#include "config.h" +#include "cli.h" +#include "dump.h" +#include "uart_lowlevel.h" +#include "sysclock.h" +#include "hw_gptm.h" + +#include "nessie_bc_test.h" +#include "performance_test.h" +#include "bcal-performance.h" +#include "bcal_tdes.h" +#include "bcal_tdes2.h" + +char* algo_name = "TDES"; + +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*)&tdes_desc, + (bcdesc_t*)&tdes2_desc, + NULL +}; + +/***************************************************************************** + * additional validation-functions * + *****************************************************************************/ +void tdes_init_dummy(const void* key, uint16_t keysize_b, void* ctx){ + memcpy(ctx, key, 8*3); +} + +void tdes_enc_dummy(void* buffer, void* ctx){ + tdes_enc(buffer, buffer, ctx); +} + +void tdes_dec_dummy(void* buffer, void* ctx){ + tdes_dec(buffer, buffer, ctx); +} + +void testrun_nessie_tdes(void){ + nessie_bc_init(); + nessie_bc_ctx.blocksize_B = 8; + nessie_bc_ctx.keysize_b = 192; + nessie_bc_ctx.name = algo_name; + nessie_bc_ctx.ctx_size_B = 8*3; + nessie_bc_ctx.cipher_enc = (nessie_bc_enc_fpt)tdes_enc_dummy; + nessie_bc_ctx.cipher_dec = (nessie_bc_dec_fpt)tdes_dec_dummy; + nessie_bc_ctx.cipher_genctx = (nessie_bc_gen_fpt)tdes_init_dummy; + + nessie_bc_run(); +} + + +void testrun_performance_tdes(void){ + bcal_performance_multiple(algolist); +} +/***************************************************************************** + * 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_tdes}, + { test_str, NULL, testrun_nessie_tdes}, + { performance_str, NULL, testrun_performance_tdes}, + { 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/Des-64-64.test-vectors b/testvectors/Des-64-64.test-vectors new file mode 100644 index 0000000..330765d --- /dev/null +++ b/testvectors/Des-64-64.test-vectors @@ -0,0 +1,5440 @@ +******************************************************************************** +*Project NESSIE - New European Schemes for Signature, Integrity, and Encryption* +******************************************************************************** + +Primitive Name: Des +=================== +Key size: 64 bits +Block size: 64 bits + +Test vectors -- set 1 +===================== + +Set 1, vector# 0: + key=8000000000000000 + plain=0000000000000000 + cipher=95A8D72813DAA94D + decrypted=0000000000000000 + Iterated 100 times=F749E1F8DEFAF605 + Iterated 1000 times=F396DD0B33D04244 + +Set 1, vector# 1: + key=4000000000000000 + plain=0000000000000000 + cipher=0EEC1487DD8C26D5 + decrypted=0000000000000000 + Iterated 100 times=E5BEE86B600F3B48 + Iterated 1000 times=1D5931D700EF4E15 + +Set 1, vector# 2: + key=2000000000000000 + plain=0000000000000000 + cipher=7AD16FFB79C45926 + decrypted=0000000000000000 + Iterated 100 times=C4B51BB0A1E0DF57 + Iterated 1000 times=B2D1B91E994BA5FF + +Set 1, vector# 3: + key=1000000000000000 + plain=0000000000000000 + cipher=D3746294CA6A6CF3 + decrypted=0000000000000000 + Iterated 100 times=0008AEE9CDC85FC6 + Iterated 1000 times=984080D72E08BB81 + +Set 1, vector# 4: + key=0800000000000000 + plain=0000000000000000 + cipher=809F5F873C1FD761 + decrypted=0000000000000000 + Iterated 100 times=30C31E1B78DEF2FA + Iterated 1000 times=17FD838EC9AAE568 + +Set 1, vector# 5: + key=0400000000000000 + plain=0000000000000000 + cipher=C02FAFFEC989D1FC + decrypted=0000000000000000 + Iterated 100 times=712D9B9482FFA66E + Iterated 1000 times=7D50B7C12F4EE231 + +Set 1, vector# 6: + key=0200000000000000 + plain=0000000000000000 + cipher=4615AA1D33E72F10 + decrypted=0000000000000000 + Iterated 100 times=8D19263ED8C900E9 + Iterated 1000 times=4BEB4AAC95FEC41C + +Set 1, vector# 7: + key=0100000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 8: + key=0080000000000000 + plain=0000000000000000 + cipher=2055123350C00858 + decrypted=0000000000000000 + Iterated 100 times=B36B590CD5B96C7A + Iterated 1000 times=27096529FD13E6D8 + +Set 1, vector# 9: + key=0040000000000000 + plain=0000000000000000 + cipher=DF3B99D6577397C8 + decrypted=0000000000000000 + Iterated 100 times=F39EADDACB2F57DE + Iterated 1000 times=38C1A175C83C43D5 + +Set 1, vector# 10: + key=0020000000000000 + plain=0000000000000000 + cipher=31FE17369B5288C9 + decrypted=0000000000000000 + Iterated 100 times=148BE77FD6464AB1 + Iterated 1000 times=79594476AE766731 + +Set 1, vector# 11: + key=0010000000000000 + plain=0000000000000000 + cipher=DFDD3CC64DAE1642 + decrypted=0000000000000000 + Iterated 100 times=F778BB09A9867BA9 + Iterated 1000 times=D3EB89C029543B2A + +Set 1, vector# 12: + key=0008000000000000 + plain=0000000000000000 + cipher=178C83CE2B399D94 + decrypted=0000000000000000 + Iterated 100 times=73EED5A7A0F4934D + Iterated 1000 times=49438FF2A3AFCB5B + +Set 1, vector# 13: + key=0004000000000000 + plain=0000000000000000 + cipher=50F636324A9B7F80 + decrypted=0000000000000000 + Iterated 100 times=2FAFD56439DE7A02 + Iterated 1000 times=CCC8DE0B9AA79C66 + +Set 1, vector# 14: + key=0002000000000000 + plain=0000000000000000 + cipher=A8468EE3BC18F06D + decrypted=0000000000000000 + Iterated 100 times=EFAE2347FDDEFA73 + Iterated 1000 times=B4023FD4512F7716 + +Set 1, vector# 15: + key=0001000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 16: + key=0000800000000000 + plain=0000000000000000 + cipher=A2DC9E92FD3CDE92 + decrypted=0000000000000000 + Iterated 100 times=73BE6AB337CEEEB0 + Iterated 1000 times=968DF24C0DE982AD + +Set 1, vector# 17: + key=0000400000000000 + plain=0000000000000000 + cipher=CAC09F797D031287 + decrypted=0000000000000000 + Iterated 100 times=59328B21110941BC + Iterated 1000 times=F67397BCC966E6DF + +Set 1, vector# 18: + key=0000200000000000 + plain=0000000000000000 + cipher=90BA680B22AEB525 + decrypted=0000000000000000 + Iterated 100 times=9BCFFB98514CB6A6 + Iterated 1000 times=727968AF8BEF52FD + +Set 1, vector# 19: + key=0000100000000000 + plain=0000000000000000 + cipher=CE7A24F350E280B6 + decrypted=0000000000000000 + Iterated 100 times=4BC0954F4B535598 + Iterated 1000 times=4E234ADDF4122BDA + +Set 1, vector# 20: + key=0000080000000000 + plain=0000000000000000 + cipher=882BFF0AA01A0B87 + decrypted=0000000000000000 + Iterated 100 times=96B0B8C60D11C9CF + Iterated 1000 times=9289CC8834F34C4F + +Set 1, vector# 21: + key=0000040000000000 + plain=0000000000000000 + cipher=25610288924511C2 + decrypted=0000000000000000 + Iterated 100 times=5E0F10609C9F8FD8 + Iterated 1000 times=6A0EF0F876ACA153 + +Set 1, vector# 22: + key=0000020000000000 + plain=0000000000000000 + cipher=C71516C29C75D170 + decrypted=0000000000000000 + Iterated 100 times=6103866AB65CFCAC + Iterated 1000 times=47A58CC7E3BEE809 + +Set 1, vector# 23: + key=0000010000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 24: + key=0000008000000000 + plain=0000000000000000 + cipher=5199C29A52C9F059 + decrypted=0000000000000000 + Iterated 100 times=30F72222BDE34AFA + Iterated 1000 times=7BF7933841FFC21F + +Set 1, vector# 25: + key=0000004000000000 + plain=0000000000000000 + cipher=C22F0A294A71F29F + decrypted=0000000000000000 + Iterated 100 times=72CE2A0D94EBD9D6 + Iterated 1000 times=AE674E8993690593 + +Set 1, vector# 26: + key=0000002000000000 + plain=0000000000000000 + cipher=EE371483714C02EA + decrypted=0000000000000000 + Iterated 100 times=0BCAE5EBB65B0D89 + Iterated 1000 times=E50314779BB752B8 + +Set 1, vector# 27: + key=0000001000000000 + plain=0000000000000000 + cipher=A81FBD448F9E522F + decrypted=0000000000000000 + Iterated 100 times=C29BF0411F9FB1FF + Iterated 1000 times=3A7956A60F0D3870 + +Set 1, vector# 28: + key=0000000800000000 + plain=0000000000000000 + cipher=4F644C92E192DFED + decrypted=0000000000000000 + Iterated 100 times=8179CEDCF9747E20 + Iterated 1000 times=02B15BDF54EFC971 + +Set 1, vector# 29: + key=0000000400000000 + plain=0000000000000000 + cipher=1AFA9A66A6DF92AE + decrypted=0000000000000000 + Iterated 100 times=55E55F1C8360A9C8 + Iterated 1000 times=FA2DF6016FB97F6B + +Set 1, vector# 30: + key=0000000200000000 + plain=0000000000000000 + cipher=B3C1CC715CB879D8 + decrypted=0000000000000000 + Iterated 100 times=7AF4FF1DD1C6DCB6 + Iterated 1000 times=A40E0A841437BC1F + +Set 1, vector# 31: + key=0000000100000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 32: + key=0000000080000000 + plain=0000000000000000 + cipher=19D032E64AB0BD8B + decrypted=0000000000000000 + Iterated 100 times=65F1F8A4BC3DA5B7 + Iterated 1000 times=9A4928B72076A579 + +Set 1, vector# 33: + key=0000000040000000 + plain=0000000000000000 + cipher=3CFAA7A7DC8720DC + decrypted=0000000000000000 + Iterated 100 times=418883502E606905 + Iterated 1000 times=0CAECC8814864F05 + +Set 1, vector# 34: + key=0000000020000000 + plain=0000000000000000 + cipher=B7265F7F447AC6F3 + decrypted=0000000000000000 + Iterated 100 times=17A6FDC0827E427A + Iterated 1000 times=7B22AE8457C37D3A + +Set 1, vector# 35: + key=0000000010000000 + plain=0000000000000000 + cipher=9DB73B3C0D163F54 + decrypted=0000000000000000 + Iterated 100 times=03FDCA66095EFB4A + Iterated 1000 times=F856FF043BCCF2C3 + +Set 1, vector# 36: + key=0000000008000000 + plain=0000000000000000 + cipher=8181B65BABF4A975 + decrypted=0000000000000000 + Iterated 100 times=733C14A3503555E1 + Iterated 1000 times=7472E191346264F3 + +Set 1, vector# 37: + key=0000000004000000 + plain=0000000000000000 + cipher=93C9B64042EAA240 + decrypted=0000000000000000 + Iterated 100 times=3429B46392177D73 + Iterated 1000 times=7D71912081998047 + +Set 1, vector# 38: + key=0000000002000000 + plain=0000000000000000 + cipher=5570530829705592 + decrypted=0000000000000000 + Iterated 100 times=399B7400B0F18B6E + Iterated 1000 times=F3B76BAC729C96A2 + +Set 1, vector# 39: + key=0000000001000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 40: + key=0000000000800000 + plain=0000000000000000 + cipher=8638809E878787A0 + decrypted=0000000000000000 + Iterated 100 times=9DAF9D5B8F881E6D + Iterated 1000 times=59C63C6CE254A415 + +Set 1, vector# 41: + key=0000000000400000 + plain=0000000000000000 + cipher=41B9A79AF79AC208 + decrypted=0000000000000000 + Iterated 100 times=3093349F22C1D915 + Iterated 1000 times=57A373A06C2B824E + +Set 1, vector# 42: + key=0000000000200000 + plain=0000000000000000 + cipher=7A9BE42F2009A892 + decrypted=0000000000000000 + Iterated 100 times=979D68265D0444BF + Iterated 1000 times=08951924006F2275 + +Set 1, vector# 43: + key=0000000000100000 + plain=0000000000000000 + cipher=29038D56BA6D2745 + decrypted=0000000000000000 + Iterated 100 times=2502186BE1E6227E + Iterated 1000 times=42C30EB4AA62D0C5 + +Set 1, vector# 44: + key=0000000000080000 + plain=0000000000000000 + cipher=5495C6ABF1E5DF51 + decrypted=0000000000000000 + Iterated 100 times=5D098A0B0F96B856 + Iterated 1000 times=BA7ECC30012C1485 + +Set 1, vector# 45: + key=0000000000040000 + plain=0000000000000000 + cipher=AE13DBD561488933 + decrypted=0000000000000000 + Iterated 100 times=DF591EF05C4A31CC + Iterated 1000 times=F3EC672B2A45F7DC + +Set 1, vector# 46: + key=0000000000020000 + plain=0000000000000000 + cipher=024D1FFA8904E389 + decrypted=0000000000000000 + Iterated 100 times=F775ED6299B76BA2 + Iterated 1000 times=E0F70281F7185E9B + +Set 1, vector# 47: + key=0000000000010000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 48: + key=0000000000008000 + plain=0000000000000000 + cipher=D1399712F99BF02E + decrypted=0000000000000000 + Iterated 100 times=E62D98EB4E760474 + Iterated 1000 times=AA4CF8BE8AAE16F3 + +Set 1, vector# 49: + key=0000000000004000 + plain=0000000000000000 + cipher=14C1D7C1CFFEC79E + decrypted=0000000000000000 + Iterated 100 times=FC592EFDB0299379 + Iterated 1000 times=611C65187BEEB354 + +Set 1, vector# 50: + key=0000000000002000 + plain=0000000000000000 + cipher=1DE5279DAE3BED6F + decrypted=0000000000000000 + Iterated 100 times=D02A61ECB45A8E86 + Iterated 1000 times=CD161A355055F9EC + +Set 1, vector# 51: + key=0000000000001000 + plain=0000000000000000 + cipher=E941A33F85501303 + decrypted=0000000000000000 + Iterated 100 times=AC7BA601AA1DFBB4 + Iterated 1000 times=08B0ECF58BA2F737 + +Set 1, vector# 52: + key=0000000000000800 + plain=0000000000000000 + cipher=DA99DBBC9A03F379 + decrypted=0000000000000000 + Iterated 100 times=8CA9ADB9AB5F9E22 + Iterated 1000 times=6BD06DD1AC2DB53F + +Set 1, vector# 53: + key=0000000000000400 + plain=0000000000000000 + cipher=B7FC92F91D8E92E9 + decrypted=0000000000000000 + Iterated 100 times=0A46AEFEA0586C99 + Iterated 1000 times=4D279FC5E7775E3C + +Set 1, vector# 54: + key=0000000000000200 + plain=0000000000000000 + cipher=AE8E5CAA3CA04E85 + decrypted=0000000000000000 + Iterated 100 times=29455C0AB803FEBC + Iterated 1000 times=25E3A6CB1EEA5103 + +Set 1, vector# 55: + key=0000000000000100 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 56: + key=0000000000000080 + plain=0000000000000000 + cipher=9CC62DF43B6EED74 + decrypted=0000000000000000 + Iterated 100 times=70D81B693DE59BFE + Iterated 1000 times=C0691B4F4C6FD5D4 + +Set 1, vector# 57: + key=0000000000000040 + plain=0000000000000000 + cipher=D863DBB5C59A91A0 + decrypted=0000000000000000 + Iterated 100 times=9E8FC8F352C5A827 + Iterated 1000 times=939032E8CC65BDA6 + +Set 1, vector# 58: + key=0000000000000020 + plain=0000000000000000 + cipher=A1AB2190545B91D7 + decrypted=0000000000000000 + Iterated 100 times=11E55B3845D4D37E + Iterated 1000 times=D0AE7310EFBB4423 + +Set 1, vector# 59: + key=0000000000000010 + plain=0000000000000000 + cipher=0875041E64C570F7 + decrypted=0000000000000000 + Iterated 100 times=B8E98D072C0EC3B0 + Iterated 1000 times=1C2529CFA50BEEF5 + +Set 1, vector# 60: + key=0000000000000008 + plain=0000000000000000 + cipher=5A594528BEBEF1CC + decrypted=0000000000000000 + Iterated 100 times=4591DEF0F1BCA860 + Iterated 1000 times=EB7F094DCCA72284 + +Set 1, vector# 61: + key=0000000000000004 + plain=0000000000000000 + cipher=FCDB3291DE21F0C0 + decrypted=0000000000000000 + Iterated 100 times=9B2F3C7C4CC05F30 + Iterated 1000 times=A2628423B0719F91 + +Set 1, vector# 62: + key=0000000000000002 + plain=0000000000000000 + cipher=869EFD7F9F265A09 + decrypted=0000000000000000 + Iterated 100 times=2812AC2768B3750E + Iterated 1000 times=DADBDABB5C5BA665 + +Set 1, vector# 63: + key=0000000000000001 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Test vectors -- set 2 +===================== + +Set 2, vector# 0: + key=0000000000000000 + plain=8000000000000000 + cipher=95F8A5E5DD31D900 + decrypted=8000000000000000 + Iterated 100 times=8000000000000000 + Iterated 1000 times=8000000000000000 + +Set 2, vector# 1: + key=0000000000000000 + plain=4000000000000000 + cipher=DD7F121CA5015619 + decrypted=4000000000000000 + Iterated 100 times=4000000000000000 + Iterated 1000 times=4000000000000000 + +Set 2, vector# 2: + key=0000000000000000 + plain=2000000000000000 + cipher=2E8653104F3834EA + decrypted=2000000000000000 + Iterated 100 times=2000000000000000 + Iterated 1000 times=2000000000000000 + +Set 2, vector# 3: + key=0000000000000000 + plain=1000000000000000 + cipher=4BD388FF6CD81D4F + decrypted=1000000000000000 + Iterated 100 times=1000000000000000 + Iterated 1000 times=1000000000000000 + +Set 2, vector# 4: + key=0000000000000000 + plain=0800000000000000 + cipher=20B9E767B2FB1456 + decrypted=0800000000000000 + Iterated 100 times=0800000000000000 + Iterated 1000 times=0800000000000000 + +Set 2, vector# 5: + key=0000000000000000 + plain=0400000000000000 + cipher=55579380D77138EF + decrypted=0400000000000000 + Iterated 100 times=0400000000000000 + Iterated 1000 times=0400000000000000 + +Set 2, vector# 6: + key=0000000000000000 + plain=0200000000000000 + cipher=6CC5DEFAAF04512F + decrypted=0200000000000000 + Iterated 100 times=0200000000000000 + Iterated 1000 times=0200000000000000 + +Set 2, vector# 7: + key=0000000000000000 + plain=0100000000000000 + cipher=0D9F279BA5D87260 + decrypted=0100000000000000 + Iterated 100 times=0100000000000000 + Iterated 1000 times=0100000000000000 + +Set 2, vector# 8: + key=0000000000000000 + plain=0080000000000000 + cipher=D9031B0271BD5A0A + decrypted=0080000000000000 + Iterated 100 times=0080000000000000 + Iterated 1000 times=0080000000000000 + +Set 2, vector# 9: + key=0000000000000000 + plain=0040000000000000 + cipher=424250B37C3DD951 + decrypted=0040000000000000 + Iterated 100 times=0040000000000000 + Iterated 1000 times=0040000000000000 + +Set 2, vector# 10: + key=0000000000000000 + plain=0020000000000000 + cipher=B8061B7ECD9A21E5 + decrypted=0020000000000000 + Iterated 100 times=0020000000000000 + Iterated 1000 times=0020000000000000 + +Set 2, vector# 11: + key=0000000000000000 + plain=0010000000000000 + cipher=F15D0F286B65BD28 + decrypted=0010000000000000 + Iterated 100 times=0010000000000000 + Iterated 1000 times=0010000000000000 + +Set 2, vector# 12: + key=0000000000000000 + plain=0008000000000000 + cipher=ADD0CC8D6E5DEBA1 + decrypted=0008000000000000 + Iterated 100 times=0008000000000000 + Iterated 1000 times=0008000000000000 + +Set 2, vector# 13: + key=0000000000000000 + plain=0004000000000000 + cipher=E6D5F82752AD63D1 + decrypted=0004000000000000 + Iterated 100 times=0004000000000000 + Iterated 1000 times=0004000000000000 + +Set 2, vector# 14: + key=0000000000000000 + plain=0002000000000000 + cipher=ECBFE3BD3F591A5E + decrypted=0002000000000000 + Iterated 100 times=0002000000000000 + Iterated 1000 times=0002000000000000 + +Set 2, vector# 15: + key=0000000000000000 + plain=0001000000000000 + cipher=F356834379D165CD + decrypted=0001000000000000 + Iterated 100 times=0001000000000000 + Iterated 1000 times=0001000000000000 + +Set 2, vector# 16: + key=0000000000000000 + plain=0000800000000000 + cipher=2B9F982F20037FA9 + decrypted=0000800000000000 + Iterated 100 times=0000800000000000 + Iterated 1000 times=0000800000000000 + +Set 2, vector# 17: + key=0000000000000000 + plain=0000400000000000 + cipher=889DE068A16F0BE6 + decrypted=0000400000000000 + Iterated 100 times=0000400000000000 + Iterated 1000 times=0000400000000000 + +Set 2, vector# 18: + key=0000000000000000 + plain=0000200000000000 + cipher=E19E275D846A1298 + decrypted=0000200000000000 + Iterated 100 times=0000200000000000 + Iterated 1000 times=0000200000000000 + +Set 2, vector# 19: + key=0000000000000000 + plain=0000100000000000 + cipher=329A8ED523D71AEC + decrypted=0000100000000000 + Iterated 100 times=0000100000000000 + Iterated 1000 times=0000100000000000 + +Set 2, vector# 20: + key=0000000000000000 + plain=0000080000000000 + cipher=E7FCE22557D23C97 + decrypted=0000080000000000 + Iterated 100 times=0000080000000000 + Iterated 1000 times=0000080000000000 + +Set 2, vector# 21: + key=0000000000000000 + plain=0000040000000000 + cipher=12A9F5817FF2D65D + decrypted=0000040000000000 + Iterated 100 times=0000040000000000 + Iterated 1000 times=0000040000000000 + +Set 2, vector# 22: + key=0000000000000000 + plain=0000020000000000 + cipher=A484C3AD38DC9C19 + decrypted=0000020000000000 + Iterated 100 times=0000020000000000 + Iterated 1000 times=0000020000000000 + +Set 2, vector# 23: + key=0000000000000000 + plain=0000010000000000 + cipher=FBE00A8A1EF8AD72 + decrypted=0000010000000000 + Iterated 100 times=0000010000000000 + Iterated 1000 times=0000010000000000 + +Set 2, vector# 24: + key=0000000000000000 + plain=0000008000000000 + cipher=750D079407521363 + decrypted=0000008000000000 + Iterated 100 times=0000008000000000 + Iterated 1000 times=0000008000000000 + +Set 2, vector# 25: + key=0000000000000000 + plain=0000004000000000 + cipher=64FEED9C724C2FAF + decrypted=0000004000000000 + Iterated 100 times=0000004000000000 + Iterated 1000 times=0000004000000000 + +Set 2, vector# 26: + key=0000000000000000 + plain=0000002000000000 + cipher=F02B263B328E2B60 + decrypted=0000002000000000 + Iterated 100 times=0000002000000000 + Iterated 1000 times=0000002000000000 + +Set 2, vector# 27: + key=0000000000000000 + plain=0000001000000000 + cipher=9D64555A9A10B852 + decrypted=0000001000000000 + Iterated 100 times=0000001000000000 + Iterated 1000 times=0000001000000000 + +Set 2, vector# 28: + key=0000000000000000 + plain=0000000800000000 + cipher=D106FF0BED5255D7 + decrypted=0000000800000000 + Iterated 100 times=0000000800000000 + Iterated 1000 times=0000000800000000 + +Set 2, vector# 29: + key=0000000000000000 + plain=0000000400000000 + cipher=E1652C6B138C64A5 + decrypted=0000000400000000 + Iterated 100 times=0000000400000000 + Iterated 1000 times=0000000400000000 + +Set 2, vector# 30: + key=0000000000000000 + plain=0000000200000000 + cipher=E428581186EC8F46 + decrypted=0000000200000000 + Iterated 100 times=0000000200000000 + Iterated 1000 times=0000000200000000 + +Set 2, vector# 31: + key=0000000000000000 + plain=0000000100000000 + cipher=AEB5F5EDE22D1A36 + decrypted=0000000100000000 + Iterated 100 times=0000000100000000 + Iterated 1000 times=0000000100000000 + +Set 2, vector# 32: + key=0000000000000000 + plain=0000000080000000 + cipher=E943D7568AEC0C5C + decrypted=0000000080000000 + Iterated 100 times=0000000080000000 + Iterated 1000 times=0000000080000000 + +Set 2, vector# 33: + key=0000000000000000 + plain=0000000040000000 + cipher=DF98C8276F54B04B + decrypted=0000000040000000 + Iterated 100 times=0000000040000000 + Iterated 1000 times=0000000040000000 + +Set 2, vector# 34: + key=0000000000000000 + plain=0000000020000000 + cipher=B160E4680F6C696F + decrypted=0000000020000000 + Iterated 100 times=0000000020000000 + Iterated 1000 times=0000000020000000 + +Set 2, vector# 35: + key=0000000000000000 + plain=0000000010000000 + cipher=FA0752B07D9C4AB8 + decrypted=0000000010000000 + Iterated 100 times=0000000010000000 + Iterated 1000 times=0000000010000000 + +Set 2, vector# 36: + key=0000000000000000 + plain=0000000008000000 + cipher=CA3A2B036DBC8502 + decrypted=0000000008000000 + Iterated 100 times=0000000008000000 + Iterated 1000 times=0000000008000000 + +Set 2, vector# 37: + key=0000000000000000 + plain=0000000004000000 + cipher=5E0905517BB59BCF + decrypted=0000000004000000 + Iterated 100 times=0000000004000000 + Iterated 1000 times=0000000004000000 + +Set 2, vector# 38: + key=0000000000000000 + plain=0000000002000000 + cipher=814EEB3B91D90726 + decrypted=0000000002000000 + Iterated 100 times=0000000002000000 + Iterated 1000 times=0000000002000000 + +Set 2, vector# 39: + key=0000000000000000 + plain=0000000001000000 + cipher=4D49DB1532919C9F + decrypted=0000000001000000 + Iterated 100 times=0000000001000000 + Iterated 1000 times=0000000001000000 + +Set 2, vector# 40: + key=0000000000000000 + plain=0000000000800000 + cipher=25EB5FC3F8CF0621 + decrypted=0000000000800000 + Iterated 100 times=0000000000800000 + Iterated 1000 times=0000000000800000 + +Set 2, vector# 41: + key=0000000000000000 + plain=0000000000400000 + cipher=AB6A20C0620D1C6F + decrypted=0000000000400000 + Iterated 100 times=0000000000400000 + Iterated 1000 times=0000000000400000 + +Set 2, vector# 42: + key=0000000000000000 + plain=0000000000200000 + cipher=79E90DBC98F92CCA + decrypted=0000000000200000 + Iterated 100 times=0000000000200000 + Iterated 1000 times=0000000000200000 + +Set 2, vector# 43: + key=0000000000000000 + plain=0000000000100000 + cipher=866ECEDD8072BB0E + decrypted=0000000000100000 + Iterated 100 times=0000000000100000 + Iterated 1000 times=0000000000100000 + +Set 2, vector# 44: + key=0000000000000000 + plain=0000000000080000 + cipher=8B54536F2F3E64A8 + decrypted=0000000000080000 + Iterated 100 times=0000000000080000 + Iterated 1000 times=0000000000080000 + +Set 2, vector# 45: + key=0000000000000000 + plain=0000000000040000 + cipher=EA51D3975595B86B + decrypted=0000000000040000 + Iterated 100 times=0000000000040000 + Iterated 1000 times=0000000000040000 + +Set 2, vector# 46: + key=0000000000000000 + plain=0000000000020000 + cipher=CAFFC6AC4542DE31 + decrypted=0000000000020000 + Iterated 100 times=0000000000020000 + Iterated 1000 times=0000000000020000 + +Set 2, vector# 47: + key=0000000000000000 + plain=0000000000010000 + cipher=8DD45A2DDF90796C + decrypted=0000000000010000 + Iterated 100 times=0000000000010000 + Iterated 1000 times=0000000000010000 + +Set 2, vector# 48: + key=0000000000000000 + plain=0000000000008000 + cipher=1029D55E880EC2D0 + decrypted=0000000000008000 + Iterated 100 times=0000000000008000 + Iterated 1000 times=0000000000008000 + +Set 2, vector# 49: + key=0000000000000000 + plain=0000000000004000 + cipher=5D86CB23639DBEA9 + decrypted=0000000000004000 + Iterated 100 times=0000000000004000 + Iterated 1000 times=0000000000004000 + +Set 2, vector# 50: + key=0000000000000000 + plain=0000000000002000 + cipher=1D1CA853AE7C0C5F + decrypted=0000000000002000 + Iterated 100 times=0000000000002000 + Iterated 1000 times=0000000000002000 + +Set 2, vector# 51: + key=0000000000000000 + plain=0000000000001000 + cipher=CE332329248F3228 + decrypted=0000000000001000 + Iterated 100 times=0000000000001000 + Iterated 1000 times=0000000000001000 + +Set 2, vector# 52: + key=0000000000000000 + plain=0000000000000800 + cipher=8405D1ABE24FB942 + decrypted=0000000000000800 + Iterated 100 times=0000000000000800 + Iterated 1000 times=0000000000000800 + +Set 2, vector# 53: + key=0000000000000000 + plain=0000000000000400 + cipher=E643D78090CA4207 + decrypted=0000000000000400 + Iterated 100 times=0000000000000400 + Iterated 1000 times=0000000000000400 + +Set 2, vector# 54: + key=0000000000000000 + plain=0000000000000200 + cipher=48221B9937748A23 + decrypted=0000000000000200 + Iterated 100 times=0000000000000200 + Iterated 1000 times=0000000000000200 + +Set 2, vector# 55: + key=0000000000000000 + plain=0000000000000100 + cipher=DD7C0BBD61FAFD54 + decrypted=0000000000000100 + Iterated 100 times=0000000000000100 + Iterated 1000 times=0000000000000100 + +Set 2, vector# 56: + key=0000000000000000 + plain=0000000000000080 + cipher=2FBC291A570DB5C4 + decrypted=0000000000000080 + Iterated 100 times=0000000000000080 + Iterated 1000 times=0000000000000080 + +Set 2, vector# 57: + key=0000000000000000 + plain=0000000000000040 + cipher=E07C30D7E4E26E12 + decrypted=0000000000000040 + Iterated 100 times=0000000000000040 + Iterated 1000 times=0000000000000040 + +Set 2, vector# 58: + key=0000000000000000 + plain=0000000000000020 + cipher=0953E2258E8E90A1 + decrypted=0000000000000020 + Iterated 100 times=0000000000000020 + Iterated 1000 times=0000000000000020 + +Set 2, vector# 59: + key=0000000000000000 + plain=0000000000000010 + cipher=5B711BC4CEEBF2EE + decrypted=0000000000000010 + Iterated 100 times=0000000000000010 + Iterated 1000 times=0000000000000010 + +Set 2, vector# 60: + key=0000000000000000 + plain=0000000000000008 + cipher=CC083F1E6D9E85F6 + decrypted=0000000000000008 + Iterated 100 times=0000000000000008 + Iterated 1000 times=0000000000000008 + +Set 2, vector# 61: + key=0000000000000000 + plain=0000000000000004 + cipher=D2FD8867D50D2DFE + decrypted=0000000000000004 + Iterated 100 times=0000000000000004 + Iterated 1000 times=0000000000000004 + +Set 2, vector# 62: + key=0000000000000000 + plain=0000000000000002 + cipher=06E7EA22CE92708F + decrypted=0000000000000002 + Iterated 100 times=0000000000000002 + Iterated 1000 times=0000000000000002 + +Set 2, vector# 63: + key=0000000000000000 + plain=0000000000000001 + cipher=166B40B44ABA4BD6 + decrypted=0000000000000001 + Iterated 100 times=0000000000000001 + Iterated 1000 times=0000000000000001 + +Test vectors -- set 3 +===================== + +Set 3, vector# 0: + key=0000000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 3, vector# 1: + key=0101010101010101 + plain=0101010101010101 + cipher=994D4DC157B96C52 + decrypted=0101010101010101 + Iterated 100 times=0101010101010101 + Iterated 1000 times=0101010101010101 + +Set 3, vector# 2: + key=0202020202020202 + plain=0202020202020202 + cipher=E127C2B61D98E6E2 + decrypted=0202020202020202 + Iterated 100 times=B575F7E036BBDE72 + Iterated 1000 times=EF66EB1095238FBB + +Set 3, vector# 3: + key=0303030303030303 + plain=0303030303030303 + cipher=984C91D78A269CE3 + decrypted=0303030303030303 + Iterated 100 times=F46D7FEC491D049B + Iterated 1000 times=1B54D2349C80B4F2 + +Set 3, vector# 4: + key=0404040404040404 + plain=0404040404040404 + cipher=1F4570BB77550683 + decrypted=0404040404040404 + Iterated 100 times=C95FC0A6EF6E8ED6 + Iterated 1000 times=373ADDEBEBA0E681 + +Set 3, vector# 5: + key=0505050505050505 + plain=0505050505050505 + cipher=3990ABF98D672B16 + decrypted=0505050505050505 + Iterated 100 times=FE4AA77EFE851A58 + Iterated 1000 times=434D8AC87CAF59AF + +Set 3, vector# 6: + key=0606060606060606 + plain=0606060606060606 + cipher=3F5150BBA081D585 + decrypted=0606060606060606 + Iterated 100 times=D1C5600E7B186BB1 + Iterated 1000 times=275229B5D2536536 + +Set 3, vector# 7: + key=0707070707070707 + plain=0707070707070707 + cipher=C65242248C9CF6F2 + decrypted=0707070707070707 + Iterated 100 times=DE3A1731A1D3324B + Iterated 1000 times=C9BC25D7BD6E4D43 + +Set 3, vector# 8: + key=0808080808080808 + plain=0808080808080808 + cipher=10772D40FAD24257 + decrypted=0808080808080808 + Iterated 100 times=DB3214AD3B35C572 + Iterated 1000 times=4E8A406CA4FEBC52 + +Set 3, vector# 9: + key=0909090909090909 + plain=0909090909090909 + cipher=F0139440647A6E7B + decrypted=0909090909090909 + Iterated 100 times=BD34ED357BC3938B + Iterated 1000 times=3944A4F231239FC9 + +Set 3, vector# 10: + key=0A0A0A0A0A0A0A0A + plain=0A0A0A0A0A0A0A0A + cipher=0A288603044D740C + decrypted=0A0A0A0A0A0A0A0A + Iterated 100 times=C4CB008E3A0A62A9 + Iterated 1000 times=BF8FB60063D373AE + +Set 3, vector# 11: + key=0B0B0B0B0B0B0B0B + plain=0B0B0B0B0B0B0B0B + cipher=6359916942F7438F + decrypted=0B0B0B0B0B0B0B0B + Iterated 100 times=74F7B3F057E53E49 + Iterated 1000 times=DDCCFBDA8C53A472 + +Set 3, vector# 12: + key=0C0C0C0C0C0C0C0C + plain=0C0C0C0C0C0C0C0C + cipher=934316AE443CF08B + decrypted=0C0C0C0C0C0C0C0C + Iterated 100 times=ED62660F284343CD + Iterated 1000 times=3DB428FE2867D620 + +Set 3, vector# 13: + key=0D0D0D0D0D0D0D0D + plain=0D0D0D0D0D0D0D0D + cipher=E3F56D7F1130A2B7 + decrypted=0D0D0D0D0D0D0D0D + Iterated 100 times=70EC69AF05EC4476 + Iterated 1000 times=64F1F4B38665C7ED + +Set 3, vector# 14: + key=0E0E0E0E0E0E0E0E + plain=0E0E0E0E0E0E0E0E + cipher=A2E4705087C6B6B4 + decrypted=0E0E0E0E0E0E0E0E + Iterated 100 times=08006AE1A9F8798B + Iterated 1000 times=2F8DBD285D5353C7 + +Set 3, vector# 15: + key=0F0F0F0F0F0F0F0F + plain=0F0F0F0F0F0F0F0F + cipher=D5D76E09A447E8C3 + decrypted=0F0F0F0F0F0F0F0F + Iterated 100 times=2804106DB462431F + Iterated 1000 times=2614F4610CF0A42F + +Set 3, vector# 16: + key=1010101010101010 + plain=1010101010101010 + cipher=DD7515F2BFC17F85 + decrypted=1010101010101010 + Iterated 100 times=59E4B20A2B9E13A4 + Iterated 1000 times=532E34B260E171B8 + +Set 3, vector# 17: + key=1111111111111111 + plain=1111111111111111 + cipher=F40379AB9E0EC533 + decrypted=1111111111111111 + Iterated 100 times=78A1257D2332D471 + Iterated 1000 times=3D9D7B0A4E0E3576 + +Set 3, vector# 18: + key=1212121212121212 + plain=1212121212121212 + cipher=96CD27784D1563E5 + decrypted=1212121212121212 + Iterated 100 times=A7712A48A287D855 + Iterated 1000 times=365B0126EB87A873 + +Set 3, vector# 19: + key=1313131313131313 + plain=1313131313131313 + cipher=2911CF5E94D33FE1 + decrypted=1313131313131313 + Iterated 100 times=B56D216335FBC5E9 + Iterated 1000 times=8019AFAEF257D470 + +Set 3, vector# 20: + key=1414141414141414 + plain=1414141414141414 + cipher=377B7F7CA3E5BBB3 + decrypted=1414141414141414 + Iterated 100 times=FA555D286B1156F2 + Iterated 1000 times=4727FE29150A7F16 + +Set 3, vector# 21: + key=1515151515151515 + plain=1515151515151515 + cipher=701AA63832905A92 + decrypted=1515151515151515 + Iterated 100 times=0675C352CB6B268C + Iterated 1000 times=11773ECEFE3411F3 + +Set 3, vector# 22: + key=1616161616161616 + plain=1616161616161616 + cipher=2006E716C4252D6D + decrypted=1616161616161616 + Iterated 100 times=F3714D29ACEDE2DC + Iterated 1000 times=F98398EA8B2AC1C2 + +Set 3, vector# 23: + key=1717171717171717 + plain=1717171717171717 + cipher=452C1197422469F8 + decrypted=1717171717171717 + Iterated 100 times=207E4B61863A19A9 + Iterated 1000 times=0E09BEBEA09D939F + +Set 3, vector# 24: + key=1818181818181818 + plain=1818181818181818 + cipher=C33FD1EB49CB64DA + decrypted=1818181818181818 + Iterated 100 times=06D0D308437682BF + Iterated 1000 times=957391D4A8E6E210 + +Set 3, vector# 25: + key=1919191919191919 + plain=1919191919191919 + cipher=7572278F364EB50D + decrypted=1919191919191919 + Iterated 100 times=3BDA68891F411E27 + Iterated 1000 times=ADF735FD0804EBD2 + +Set 3, vector# 26: + key=1A1A1A1A1A1A1A1A + plain=1A1A1A1A1A1A1A1A + cipher=69E51488403EF4C3 + decrypted=1A1A1A1A1A1A1A1A + Iterated 100 times=B19C00E014F96E7B + Iterated 1000 times=DAE7603FB12C479E + +Set 3, vector# 27: + key=1B1B1B1B1B1B1B1B + plain=1B1B1B1B1B1B1B1B + cipher=FF847E0ADF192825 + decrypted=1B1B1B1B1B1B1B1B + Iterated 100 times=CEF52AA0F6041207 + Iterated 1000 times=450A50776FE1D52D + +Set 3, vector# 28: + key=1C1C1C1C1C1C1C1C + plain=1C1C1C1C1C1C1C1C + cipher=521B7FB3B41BB791 + decrypted=1C1C1C1C1C1C1C1C + Iterated 100 times=F9115CB99EE29D17 + Iterated 1000 times=4306B2FAC11DD0D5 + +Set 3, vector# 29: + key=1D1D1D1D1D1D1D1D + plain=1D1D1D1D1D1D1D1D + cipher=26059A6A0F3F6B35 + decrypted=1D1D1D1D1D1D1D1D + Iterated 100 times=F83B8693D0A61969 + Iterated 1000 times=9313A53C6051BDB3 + +Set 3, vector# 30: + key=1E1E1E1E1E1E1E1E + plain=1E1E1E1E1E1E1E1E + cipher=F24A8D2231C77538 + decrypted=1E1E1E1E1E1E1E1E + Iterated 100 times=5A4F39F8F17C06C7 + Iterated 1000 times=53827EDCF52A6FDC + +Set 3, vector# 31: + key=1F1F1F1F1F1F1F1F + plain=1F1F1F1F1F1F1F1F + cipher=4FD96EC0D3304EF6 + decrypted=1F1F1F1F1F1F1F1F + Iterated 100 times=148D2605CC9E58F7 + Iterated 1000 times=BBFB81EE0E3EBE94 + +Set 3, vector# 32: + key=2020202020202020 + plain=2020202020202020 + cipher=18A9D580A900B699 + decrypted=2020202020202020 + Iterated 100 times=DEE7754452402184 + Iterated 1000 times=B8DD4D82B55F134B + +Set 3, vector# 33: + key=2121212121212121 + plain=2121212121212121 + cipher=88586E1D755B9B5A + decrypted=2121212121212121 + Iterated 100 times=53D24793D7540BEF + Iterated 1000 times=E4E7306C87527A86 + +Set 3, vector# 34: + key=2222222222222222 + plain=2222222222222222 + cipher=0F8ADFFB11DC2784 + decrypted=2222222222222222 + Iterated 100 times=07D5A975DFA30B40 + Iterated 1000 times=C94BE627ADD4C1F4 + +Set 3, vector# 35: + key=2323232323232323 + plain=2323232323232323 + cipher=2F30446C8312404A + decrypted=2323232323232323 + Iterated 100 times=5FEFB92AF665633A + Iterated 1000 times=9165CECAD1563F6F + +Set 3, vector# 36: + key=2424242424242424 + plain=2424242424242424 + cipher=0BA03D9E6C196511 + decrypted=2424242424242424 + Iterated 100 times=AEF52947F908450A + Iterated 1000 times=2607FBF97EC24B5F + +Set 3, vector# 37: + key=2525252525252525 + plain=2525252525252525 + cipher=3E55E997611E4B7D + decrypted=2525252525252525 + Iterated 100 times=1223E578868C1EF6 + Iterated 1000 times=E7287D8FE0A4383E + +Set 3, vector# 38: + key=2626262626262626 + plain=2626262626262626 + cipher=B2522FB5F158F0DF + decrypted=2626262626262626 + Iterated 100 times=0ABA5827280C32B8 + Iterated 1000 times=A1B49DCD07B91030 + +Set 3, vector# 39: + key=2727272727272727 + plain=2727272727272727 + cipher=2109425935406AB8 + decrypted=2727272727272727 + Iterated 100 times=06267445D6A2B26C + Iterated 1000 times=98F3E5792D5976B1 + +Set 3, vector# 40: + key=2828282828282828 + plain=2828282828282828 + cipher=11A16028F310FF16 + decrypted=2828282828282828 + Iterated 100 times=C87E6AA7024AA25D + Iterated 1000 times=AB5D4716E4461939 + +Set 3, vector# 41: + key=2929292929292929 + plain=2929292929292929 + cipher=73F0C45F379FE67F + decrypted=2929292929292929 + Iterated 100 times=C6146414D7439A59 + Iterated 1000 times=481411E80BA14CAC + +Set 3, vector# 42: + key=2A2A2A2A2A2A2A2A + plain=2A2A2A2A2A2A2A2A + cipher=DCAD4338F7523816 + decrypted=2A2A2A2A2A2A2A2A + Iterated 100 times=E17F92BFECD0AB5D + Iterated 1000 times=803ABFDA91580AC1 + +Set 3, vector# 43: + key=2B2B2B2B2B2B2B2B + plain=2B2B2B2B2B2B2B2B + cipher=B81634C1CEAB298C + decrypted=2B2B2B2B2B2B2B2B + Iterated 100 times=5DE00ED35CDC7428 + Iterated 1000 times=DE19633E77F4DB1F + +Set 3, vector# 44: + key=2C2C2C2C2C2C2C2C + plain=2C2C2C2C2C2C2C2C + cipher=DD2CCB29B6C4C349 + decrypted=2C2C2C2C2C2C2C2C + Iterated 100 times=D3B6F9A1BD8B6B15 + Iterated 1000 times=1A847AE704BAE175 + +Set 3, vector# 45: + key=2D2D2D2D2D2D2D2D + plain=2D2D2D2D2D2D2D2D + cipher=7D07A77A2ABD50A7 + decrypted=2D2D2D2D2D2D2D2D + Iterated 100 times=2BBEE289FFF55C85 + Iterated 1000 times=501C267C682280B5 + +Set 3, vector# 46: + key=2E2E2E2E2E2E2E2E + plain=2E2E2E2E2E2E2E2E + cipher=30C1B0C1FD91D371 + decrypted=2E2E2E2E2E2E2E2E + Iterated 100 times=51A76271AD0E3A5F + Iterated 1000 times=D3DFC683AB67D88B + +Set 3, vector# 47: + key=2F2F2F2F2F2F2F2F + plain=2F2F2F2F2F2F2F2F + cipher=C4427B31AC61973B + decrypted=2F2F2F2F2F2F2F2F + Iterated 100 times=5E95FF4A1B470C9D + Iterated 1000 times=F895F6404407A911 + +Set 3, vector# 48: + key=3030303030303030 + plain=3030303030303030 + cipher=F47BB46273B15EB5 + decrypted=3030303030303030 + Iterated 100 times=76BF3C2C0D1C4BD0 + Iterated 1000 times=3CBDCFABC1F321D7 + +Set 3, vector# 49: + key=3131313131313131 + plain=3131313131313131 + cipher=655EA628CF62585F + decrypted=3131313131313131 + Iterated 100 times=E1F5527AAA65DF2B + Iterated 1000 times=3F8E6EB07693959F + +Set 3, vector# 50: + key=3232323232323232 + plain=3232323232323232 + cipher=AC978C247863388F + decrypted=3232323232323232 + Iterated 100 times=353E49075AC19356 + Iterated 1000 times=74986B6B48A70B9B + +Set 3, vector# 51: + key=3333333333333333 + plain=3333333333333333 + cipher=0432ED386F2DE328 + decrypted=3333333333333333 + Iterated 100 times=8D6B18F726B5BD30 + Iterated 1000 times=FDB76D63EF051ADD + +Set 3, vector# 52: + key=3434343434343434 + plain=3434343434343434 + cipher=D254014CB986B3C2 + decrypted=3434343434343434 + Iterated 100 times=085509B51C375B80 + Iterated 1000 times=31E9566BB30E081E + +Set 3, vector# 53: + key=3535353535353535 + plain=3535353535353535 + cipher=B256E34BEDB49801 + decrypted=3535353535353535 + Iterated 100 times=E42078571072F66E + Iterated 1000 times=D6DACEDE04CA0A34 + +Set 3, vector# 54: + key=3636363636363636 + plain=3636363636363636 + cipher=37F8759EB77E7BFC + decrypted=3636363636363636 + Iterated 100 times=AFEC7EB983086E29 + Iterated 1000 times=13DC451CC0899787 + +Set 3, vector# 55: + key=3737373737373737 + plain=3737373737373737 + cipher=5013CA4F62C9CEA0 + decrypted=3737373737373737 + Iterated 100 times=C618B626D7F59D7E + Iterated 1000 times=2400481DFA1DBB2B + +Set 3, vector# 56: + key=3838383838383838 + plain=3838383838383838 + cipher=8940F7B3EACA5939 + decrypted=3838383838383838 + Iterated 100 times=50E8C2DEA98D747A + Iterated 1000 times=F48E40812BCEDECB + +Set 3, vector# 57: + key=3939393939393939 + plain=3939393939393939 + cipher=E22B19A55086774B + decrypted=3939393939393939 + Iterated 100 times=D580DC51FE300229 + Iterated 1000 times=9B062BA3FCBCFDA7 + +Set 3, vector# 58: + key=3A3A3A3A3A3A3A3A + plain=3A3A3A3A3A3A3A3A + cipher=B04A2AAC925ABB0B + decrypted=3A3A3A3A3A3A3A3A + Iterated 100 times=5ED71B36898C8267 + Iterated 1000 times=274E36B383DF6DC9 + +Set 3, vector# 59: + key=3B3B3B3B3B3B3B3B + plain=3B3B3B3B3B3B3B3B + cipher=8D250D58361597FC + decrypted=3B3B3B3B3B3B3B3B + Iterated 100 times=BC6F4D8E8A214F7F + Iterated 1000 times=FB73E01779F65CC9 + +Set 3, vector# 60: + key=3C3C3C3C3C3C3C3C + plain=3C3C3C3C3C3C3C3C + cipher=51F0114FB6A6CD37 + decrypted=3C3C3C3C3C3C3C3C + Iterated 100 times=30F373AE7D7D79FB + Iterated 1000 times=0FB0B4E51CB476F4 + +Set 3, vector# 61: + key=3D3D3D3D3D3D3D3D + plain=3D3D3D3D3D3D3D3D + cipher=9D0BB4DB830ECB73 + decrypted=3D3D3D3D3D3D3D3D + Iterated 100 times=A1F3CEA4B3D9CC9A + Iterated 1000 times=1AEF567D7490EC78 + +Set 3, vector# 62: + key=3E3E3E3E3E3E3E3E + plain=3E3E3E3E3E3E3E3E + cipher=E96089D6368F3E1A + decrypted=3E3E3E3E3E3E3E3E + Iterated 100 times=542B44C055BB9634 + Iterated 1000 times=6E977FDBC5E79034 + +Set 3, vector# 63: + key=3F3F3F3F3F3F3F3F + plain=3F3F3F3F3F3F3F3F + cipher=5C4CA877A4E1E92D + decrypted=3F3F3F3F3F3F3F3F + Iterated 100 times=A1A31BF7C8CAB9E0 + Iterated 1000 times=F7E4B7B1E23510C1 + +Set 3, vector# 64: + key=4040404040404040 + plain=4040404040404040 + cipher=6D55DDBC8DEA95FF + decrypted=4040404040404040 + Iterated 100 times=B25D93C2AB05A407 + Iterated 1000 times=E9B4FEB769DC5164 + +Set 3, vector# 65: + key=4141414141414141 + plain=4141414141414141 + cipher=19DF84AC95551003 + decrypted=4141414141414141 + Iterated 100 times=F3B7B874D651B0C1 + Iterated 1000 times=CEAD31BFB196EC40 + +Set 3, vector# 66: + key=4242424242424242 + plain=4242424242424242 + cipher=724E7332696D08A7 + decrypted=4242424242424242 + Iterated 100 times=230408DE94AF4851 + Iterated 1000 times=18833E5C5ED786D6 + +Set 3, vector# 67: + key=4343434343434343 + plain=4343434343434343 + cipher=B91810B8CDC58FE2 + decrypted=4343434343434343 + Iterated 100 times=23A07A213051D1E8 + Iterated 1000 times=C916B9FCDA721A6A + +Set 3, vector# 68: + key=4444444444444444 + plain=4444444444444444 + cipher=06E23526EDCCD0C4 + decrypted=4444444444444444 + Iterated 100 times=B618703EC9F61F9C + Iterated 1000 times=995DE7AB92F8F80E + +Set 3, vector# 69: + key=4545454545454545 + plain=4545454545454545 + cipher=EF52491D5468D441 + decrypted=4545454545454545 + Iterated 100 times=C1B909D856C5FFEC + Iterated 1000 times=6535B033E837EF13 + +Set 3, vector# 70: + key=4646464646464646 + plain=4646464646464646 + cipher=48019C59E39B90C5 + decrypted=4646464646464646 + Iterated 100 times=2099304DE58AB09A + Iterated 1000 times=D3AA7DEEB598209F + +Set 3, vector# 71: + key=4747474747474747 + plain=4747474747474747 + cipher=0544083FB902D8C0 + decrypted=4747474747474747 + Iterated 100 times=78F4BF46C9C74AD1 + Iterated 1000 times=D4E42FC7A708DD03 + +Set 3, vector# 72: + key=4848484848484848 + plain=4848484848484848 + cipher=63B15CADA668CE12 + decrypted=4848484848484848 + Iterated 100 times=14361721CBE46E6D + Iterated 1000 times=C4C055F1AB2E1499 + +Set 3, vector# 73: + key=4949494949494949 + plain=4949494949494949 + cipher=EACC0C1264171071 + decrypted=4949494949494949 + Iterated 100 times=13E767AD4E4B1953 + Iterated 1000 times=7570779E94106132 + +Set 3, vector# 74: + key=4A4A4A4A4A4A4A4A + plain=4A4A4A4A4A4A4A4A + cipher=9D2B8C0AC605F274 + decrypted=4A4A4A4A4A4A4A4A + Iterated 100 times=E60E8AC0EFC62DB0 + Iterated 1000 times=66676C8CBA146CC6 + +Set 3, vector# 75: + key=4B4B4B4B4B4B4B4B + plain=4B4B4B4B4B4B4B4B + cipher=C90F2F4C98A8FB2A + decrypted=4B4B4B4B4B4B4B4B + Iterated 100 times=BA52C22AC74C50CD + Iterated 1000 times=197A6690469A3027 + +Set 3, vector# 76: + key=4C4C4C4C4C4C4C4C + plain=4C4C4C4C4C4C4C4C + cipher=03481B4828FD1D04 + decrypted=4C4C4C4C4C4C4C4C + Iterated 100 times=8CE5269DA1F0110E + Iterated 1000 times=19A581FD31EC8B62 + +Set 3, vector# 77: + key=4D4D4D4D4D4D4D4D + plain=4D4D4D4D4D4D4D4D + cipher=C78FC45A1DCEA2E2 + decrypted=4D4D4D4D4D4D4D4D + Iterated 100 times=773E66FD6C2E08A6 + Iterated 1000 times=E8F7A9B6AC18C81F + +Set 3, vector# 78: + key=4E4E4E4E4E4E4E4E + plain=4E4E4E4E4E4E4E4E + cipher=DB96D88C3460D801 + decrypted=4E4E4E4E4E4E4E4E + Iterated 100 times=7917869634D54BBB + Iterated 1000 times=16C6AE839E2774BC + +Set 3, vector# 79: + key=4F4F4F4F4F4F4F4F + plain=4F4F4F4F4F4F4F4F + cipher=6C69E720F5105518 + decrypted=4F4F4F4F4F4F4F4F + Iterated 100 times=6EA272483DFF7B5C + Iterated 1000 times=F5B13670596DAF2F + +Set 3, vector# 80: + key=5050505050505050 + plain=5050505050505050 + cipher=0D262E418BC893F3 + decrypted=5050505050505050 + Iterated 100 times=416B6966D60870FB + Iterated 1000 times=08FF56D93754D6D0 + +Set 3, vector# 81: + key=5151515151515151 + plain=5151515151515151 + cipher=6AD84FD7848A0A5C + decrypted=5151515151515151 + Iterated 100 times=2B018AF9843D6D73 + Iterated 1000 times=5826597362AAB623 + +Set 3, vector# 82: + key=5252525252525252 + plain=5252525252525252 + cipher=C365CB35B34B6114 + decrypted=5252525252525252 + Iterated 100 times=70D6A1812318FA52 + Iterated 1000 times=7323A5995C42FB69 + +Set 3, vector# 83: + key=5353535353535353 + plain=5353535353535353 + cipher=1155392E877F42A9 + decrypted=5353535353535353 + Iterated 100 times=A7B55CCAA2E6553C + Iterated 1000 times=9C290E630C976E43 + +Set 3, vector# 84: + key=5454545454545454 + plain=5454545454545454 + cipher=531BE5F9405DA715 + decrypted=5454545454545454 + Iterated 100 times=B3B5D3FEBDDA3981 + Iterated 1000 times=B0D39C349104E27E + +Set 3, vector# 85: + key=5555555555555555 + plain=5555555555555555 + cipher=3BCDD41E6165A5E8 + decrypted=5555555555555555 + Iterated 100 times=186FEF7B7A7283A1 + Iterated 1000 times=D83AB81A85A8046E + +Set 3, vector# 86: + key=5656565656565656 + plain=5656565656565656 + cipher=2B1FF5610A19270C + decrypted=5656565656565656 + Iterated 100 times=50953DA8CED81BFB + Iterated 1000 times=F16D0717BEEC9DCF + +Set 3, vector# 87: + key=5757575757575757 + plain=5757575757575757 + cipher=D90772CF3F047CFD + decrypted=5757575757575757 + Iterated 100 times=F03447F802AA1DD4 + Iterated 1000 times=F0F8F7D232F0184E + +Set 3, vector# 88: + key=5858585858585858 + plain=5858585858585858 + cipher=1BEA27FFB72457B7 + decrypted=5858585858585858 + Iterated 100 times=8707BB9950390709 + Iterated 1000 times=55DFD7E8CAC23EF4 + +Set 3, vector# 89: + key=5959595959595959 + plain=5959595959595959 + cipher=85C3E0C429F34C27 + decrypted=5959595959595959 + Iterated 100 times=582111E687076FA8 + Iterated 1000 times=276D78F9EAFB523F + +Set 3, vector# 90: + key=5A5A5A5A5A5A5A5A + plain=5A5A5A5A5A5A5A5A + cipher=F9038021E37C7618 + decrypted=5A5A5A5A5A5A5A5A + Iterated 100 times=3EBAF74BCA504FDC + Iterated 1000 times=248C7EE503B0C31C + +Set 3, vector# 91: + key=5B5B5B5B5B5B5B5B + plain=5B5B5B5B5B5B5B5B + cipher=35BC6FF838DBA32F + decrypted=5B5B5B5B5B5B5B5B + Iterated 100 times=657C416FDD97CE7A + Iterated 1000 times=BDF93AEA60AF226A + +Set 3, vector# 92: + key=5C5C5C5C5C5C5C5C + plain=5C5C5C5C5C5C5C5C + cipher=4927ACC8CE45ECE7 + decrypted=5C5C5C5C5C5C5C5C + Iterated 100 times=A22D60CC973E4E08 + Iterated 1000 times=48F5C04736EF8365 + +Set 3, vector# 93: + key=5D5D5D5D5D5D5D5D + plain=5D5D5D5D5D5D5D5D + cipher=E812EE6E3572985C + decrypted=5D5D5D5D5D5D5D5D + Iterated 100 times=9F5BA471E525635A + Iterated 1000 times=87A04AA69F8B46A2 + +Set 3, vector# 94: + key=5E5E5E5E5E5E5E5E + plain=5E5E5E5E5E5E5E5E + cipher=9BB93A89627BF65F + decrypted=5E5E5E5E5E5E5E5E + Iterated 100 times=EAFA7F35095F910E + Iterated 1000 times=1B48BCB25C51A005 + +Set 3, vector# 95: + key=5F5F5F5F5F5F5F5F + plain=5F5F5F5F5F5F5F5F + cipher=EF12476884CB74CA + decrypted=5F5F5F5F5F5F5F5F + Iterated 100 times=7DB85A3FF7275567 + Iterated 1000 times=DB161940B8063D88 + +Set 3, vector# 96: + key=6060606060606060 + plain=6060606060606060 + cipher=1BF17E00C09E7CBF + decrypted=6060606060606060 + Iterated 100 times=60A4B4FFEDD8D09D + Iterated 1000 times=029A5E7D28389D02 + +Set 3, vector# 97: + key=6161616161616161 + plain=6161616161616161 + cipher=29932350C098DB5D + decrypted=6161616161616161 + Iterated 100 times=ED8650926D5BE408 + Iterated 1000 times=D005DE4058AA8EE0 + +Set 3, vector# 98: + key=6262626262626262 + plain=6262626262626262 + cipher=B476E6499842AC54 + decrypted=6262626262626262 + Iterated 100 times=51124BFBDA8C6C4D + Iterated 1000 times=947748735067EE8E + +Set 3, vector# 99: + key=6363636363636363 + plain=6363636363636363 + cipher=5C662C29C1E96056 + decrypted=6363636363636363 + Iterated 100 times=9127F446AFA01F90 + Iterated 1000 times=5FD86B7379C536EC + +Set 3, vector#100: + key=6464646464646464 + plain=6464646464646464 + cipher=3AF1703D76442789 + decrypted=6464646464646464 + Iterated 100 times=FA4A770BAFF12B9D + Iterated 1000 times=BE1D0835966297C5 + +Set 3, vector#101: + key=6565656565656565 + plain=6565656565656565 + cipher=86405D9B425A8C8C + decrypted=6565656565656565 + Iterated 100 times=A968CE8D91FAED99 + Iterated 1000 times=6CFC8EA18C1B4BB5 + +Set 3, vector#102: + key=6666666666666666 + plain=6666666666666666 + cipher=EBBF4810619C2C55 + decrypted=6666666666666666 + Iterated 100 times=4DC02B7CB96869BB + Iterated 1000 times=DFC74FA334B18C6F + +Set 3, vector#103: + key=6767676767676767 + plain=6767676767676767 + cipher=F8D1CD7367B21B5D + decrypted=6767676767676767 + Iterated 100 times=0037E1E9B97EF9C3 + Iterated 1000 times=EEFD10CAF2F18319 + +Set 3, vector#104: + key=6868686868686868 + plain=6868686868686868 + cipher=9EE703142BF8D7E2 + decrypted=6868686868686868 + Iterated 100 times=4E13D13ABC20616C + Iterated 1000 times=B7019E19F678AEAD + +Set 3, vector#105: + key=6969696969696969 + plain=6969696969696969 + cipher=5FDFFFC3AAAB0CB3 + decrypted=6969696969696969 + Iterated 100 times=1F7C5F4EEB57E2C5 + Iterated 1000 times=D23964427BC4C2E8 + +Set 3, vector#106: + key=6A6A6A6A6A6A6A6A + plain=6A6A6A6A6A6A6A6A + cipher=26C940AB13574231 + decrypted=6A6A6A6A6A6A6A6A + Iterated 100 times=E77E2ED0A869672C + Iterated 1000 times=DAF3214A731AEAE0 + +Set 3, vector#107: + key=6B6B6B6B6B6B6B6B + plain=6B6B6B6B6B6B6B6B + cipher=1E2DC77E36A84693 + decrypted=6B6B6B6B6B6B6B6B + Iterated 100 times=DEE6CE5A343AAD73 + Iterated 1000 times=A14CA4D7D4E7A5BC + +Set 3, vector#108: + key=6C6C6C6C6C6C6C6C + plain=6C6C6C6C6C6C6C6C + cipher=0F4FF4D9BC7E2244 + decrypted=6C6C6C6C6C6C6C6C + Iterated 100 times=5DFD406F86064F9D + Iterated 1000 times=6903ECE350FB0EF8 + +Set 3, vector#109: + key=6D6D6D6D6D6D6D6D + plain=6D6D6D6D6D6D6D6D + cipher=A4C9A0D04D3280CD + decrypted=6D6D6D6D6D6D6D6D + Iterated 100 times=940C9CCDC211FA4B + Iterated 1000 times=16C2877110368D1A + +Set 3, vector#110: + key=6E6E6E6E6E6E6E6E + plain=6E6E6E6E6E6E6E6E + cipher=9FAF2C96FE84919D + decrypted=6E6E6E6E6E6E6E6E + Iterated 100 times=79CEC2D4828E2714 + Iterated 1000 times=D5964F85A6E7B786 + +Set 3, vector#111: + key=6F6F6F6F6F6F6F6F + plain=6F6F6F6F6F6F6F6F + cipher=115DBC965E6096C8 + decrypted=6F6F6F6F6F6F6F6F + Iterated 100 times=8BA557D0AF10030F + Iterated 1000 times=F8C9D394FC0DC07D + +Set 3, vector#112: + key=7070707070707070 + plain=7070707070707070 + cipher=AF531E9520994017 + decrypted=7070707070707070 + Iterated 100 times=A30EA6C2CBE21FCB + Iterated 1000 times=9AAE92F061E2D684 + +Set 3, vector#113: + key=7171717171717171 + plain=7171717171717171 + cipher=B971ADE70E5C89EE + decrypted=7171717171717171 + Iterated 100 times=ACE97DAB7556DC0B + Iterated 1000 times=0F3FBCD85D262DAD + +Set 3, vector#114: + key=7272727272727272 + plain=7272727272727272 + cipher=415D81C86AF9C376 + decrypted=7272727272727272 + Iterated 100 times=D9C604DDAA99EDB9 + Iterated 1000 times=E1BAEA2A9C12F809 + +Set 3, vector#115: + key=7373737373737373 + plain=7373737373737373 + cipher=8DFB864FDB3C6811 + decrypted=7373737373737373 + Iterated 100 times=681DB6359D38B291 + Iterated 1000 times=B3F74991E4F22FB3 + +Set 3, vector#116: + key=7474747474747474 + plain=7474747474747474 + cipher=10B1C170E3398F91 + decrypted=7474747474747474 + Iterated 100 times=E74C05FE35DD3D57 + Iterated 1000 times=35DBF69F914F6667 + +Set 3, vector#117: + key=7575757575757575 + plain=7575757575757575 + cipher=CFEF7A1C0218DB1E + decrypted=7575757575757575 + Iterated 100 times=E7CA1157351E69FD + Iterated 1000 times=213D47FF935F29BC + +Set 3, vector#118: + key=7676767676767676 + plain=7676767676767676 + cipher=DBAC30A2A40B1B9C + decrypted=7676767676767676 + Iterated 100 times=671DEAD46E44823C + Iterated 1000 times=EDC55E5C2D3247E2 + +Set 3, vector#119: + key=7777777777777777 + plain=7777777777777777 + cipher=89D3BF37052162E9 + decrypted=7777777777777777 + Iterated 100 times=8E5B48A6A3BFFC8B + Iterated 1000 times=0B740BCC8FF4BFCF + +Set 3, vector#120: + key=7878787878787878 + plain=7878787878787878 + cipher=80D9230BDAEB67DC + decrypted=7878787878787878 + Iterated 100 times=F2C537E049166044 + Iterated 1000 times=CA6B600339E48829 + +Set 3, vector#121: + key=7979797979797979 + plain=7979797979797979 + cipher=3440911019AD68D7 + decrypted=7979797979797979 + Iterated 100 times=538F431DB2B41F67 + Iterated 1000 times=34A250D956BF8D45 + +Set 3, vector#122: + key=7A7A7A7A7A7A7A7A + plain=7A7A7A7A7A7A7A7A + cipher=9626FE57596E199E + decrypted=7A7A7A7A7A7A7A7A + Iterated 100 times=4603F97E8B4951C4 + Iterated 1000 times=7ADBC621DF6F4B19 + +Set 3, vector#123: + key=7B7B7B7B7B7B7B7B + plain=7B7B7B7B7B7B7B7B + cipher=DEA0B796624BB5BA + decrypted=7B7B7B7B7B7B7B7B + Iterated 100 times=C7EE24A41267ED74 + Iterated 1000 times=0A34B1517C7C4618 + +Set 3, vector#124: + key=7C7C7C7C7C7C7C7C + plain=7C7C7C7C7C7C7C7C + cipher=E9E40542BDDB3E9D + decrypted=7C7C7C7C7C7C7C7C + Iterated 100 times=277C8F43A5E0A077 + Iterated 1000 times=E4CE03A6753F2BC4 + +Set 3, vector#125: + key=7D7D7D7D7D7D7D7D + plain=7D7D7D7D7D7D7D7D + cipher=8AD99914B354B911 + decrypted=7D7D7D7D7D7D7D7D + Iterated 100 times=6AA910EA596A4386 + Iterated 1000 times=839EAD5AB5187F54 + +Set 3, vector#126: + key=7E7E7E7E7E7E7E7E + plain=7E7E7E7E7E7E7E7E + cipher=6F85B98DD12CB13B + decrypted=7E7E7E7E7E7E7E7E + Iterated 100 times=ECD3B2B72EB3BB15 + Iterated 1000 times=1ED87FEAF3F24593 + +Set 3, vector#127: + key=7F7F7F7F7F7F7F7F + plain=7F7F7F7F7F7F7F7F + cipher=10130DA3C3A23924 + decrypted=7F7F7F7F7F7F7F7F + Iterated 100 times=1EDB5BE02B8D688A + Iterated 1000 times=092CE7D5D91A870C + +Set 3, vector#128: + key=8080808080808080 + plain=8080808080808080 + cipher=EFECF25C3C5DC6DB + decrypted=8080808080808080 + Iterated 100 times=E124A41FD4729775 + Iterated 1000 times=F6D3182A26E578F3 + +Set 3, vector#129: + key=8181818181818181 + plain=8181818181818181 + cipher=907A46722ED34EC4 + decrypted=8181818181818181 + Iterated 100 times=132C4D48D14C44EA + Iterated 1000 times=E12780150C0DBA6C + +Set 3, vector#130: + key=8282828282828282 + plain=8282828282828282 + cipher=752666EB4CAB46EE + decrypted=8282828282828282 + Iterated 100 times=9556EF15A695BC79 + Iterated 1000 times=7C6152A54AE780AB + +Set 3, vector#131: + key=8383838383838383 + plain=8383838383838383 + cipher=161BFABD4224C162 + decrypted=8383838383838383 + Iterated 100 times=D88370BC5A1F5F88 + Iterated 1000 times=1B31FC598AC0D43B + +Set 3, vector#132: + key=8484848484848484 + plain=8484848484848484 + cipher=215F48699DB44A45 + decrypted=8484848484848484 + Iterated 100 times=3811DB5BED98128B + Iterated 1000 times=F5CB4EAE8383B9E7 + +Set 3, vector#133: + key=8585858585858585 + plain=8585858585858585 + cipher=69D901A8A691E661 + decrypted=8585858585858585 + Iterated 100 times=B9FC068174B6AE3B + Iterated 1000 times=852439DE2090B4E6 + +Set 3, vector#134: + key=8686868686868686 + plain=8686868686868686 + cipher=CBBF6EEFE6529728 + decrypted=8686868686868686 + Iterated 100 times=AC70BCE24D4BE098 + Iterated 1000 times=CB5DAF26A94072BA + +Set 3, vector#135: + key=8787878787878787 + plain=8787878787878787 + cipher=7F26DCF425149823 + decrypted=8787878787878787 + Iterated 100 times=0D3AC81FB6E99FBB + Iterated 1000 times=35949FFCC61B77D6 + +Set 3, vector#136: + key=8888888888888888 + plain=8888888888888888 + cipher=762C40C8FADE9D16 + decrypted=8888888888888888 + Iterated 100 times=71A4B7595C400374 + Iterated 1000 times=F48BF433700B4030 + +Set 3, vector#137: + key=8989898989898989 + plain=8989898989898989 + cipher=2453CF5D5BF4E463 + decrypted=8989898989898989 + Iterated 100 times=98E2152B91BB7DC3 + Iterated 1000 times=123AA1A3D2CDB81D + +Set 3, vector#138: + key=8A8A8A8A8A8A8A8A + plain=8A8A8A8A8A8A8A8A + cipher=301085E3FDE724E1 + decrypted=8A8A8A8A8A8A8A8A + Iterated 100 times=1835EEA8CAE19602 + Iterated 1000 times=DEC2B8006CA0D643 + +Set 3, vector#139: + key=8B8B8B8B8B8B8B8B + plain=8B8B8B8B8B8B8B8B + cipher=EF4E3E8F1CC6706E + decrypted=8B8B8B8B8B8B8B8B + Iterated 100 times=18B3FA01CA22C2A8 + Iterated 1000 times=CA2409606EB09998 + +Set 3, vector#140: + key=8C8C8C8C8C8C8C8C + plain=8C8C8C8C8C8C8C8C + cipher=720479B024C397EE + decrypted=8C8C8C8C8C8C8C8C + Iterated 100 times=97E249CA62C74D6E + Iterated 1000 times=4C08B66E1B0DD04C + +Set 3, vector#141: + key=8D8D8D8D8D8D8D8D + plain=8D8D8D8D8D8D8D8D + cipher=BEA27E3795063C89 + decrypted=8D8D8D8D8D8D8D8D + Iterated 100 times=2639FB2255661246 + Iterated 1000 times=1E4515D563ED07F6 + +Set 3, vector#142: + key=8E8E8E8E8E8E8E8E + plain=8E8E8E8E8E8E8E8E + cipher=468E5218F1A37611 + decrypted=8E8E8E8E8E8E8E8E + Iterated 100 times=531682548AA923F4 + Iterated 1000 times=F0C04327A2D9D252 + +Set 3, vector#143: + key=8F8F8F8F8F8F8F8F + plain=8F8F8F8F8F8F8F8F + cipher=50ACE16ADF66BFE8 + decrypted=8F8F8F8F8F8F8F8F + Iterated 100 times=5CF1593D341DE034 + Iterated 1000 times=65516D0F9E1D297B + +Set 3, vector#144: + key=9090909090909090 + plain=9090909090909090 + cipher=EEA24369A19F6937 + decrypted=9090909090909090 + Iterated 100 times=745AA82F50EFFCF0 + Iterated 1000 times=07362C6B03F23F82 + +Set 3, vector#145: + key=9191919191919191 + plain=9191919191919191 + cipher=6050D369017B6E62 + decrypted=9191919191919191 + Iterated 100 times=86313D2B7D71D8EB + Iterated 1000 times=2A69B07A59184879 + +Set 3, vector#146: + key=9292929292929292 + plain=9292929292929292 + cipher=5B365F2FB2CD7F32 + decrypted=9292929292929292 + Iterated 100 times=6BF363323DEE05B4 + Iterated 1000 times=E93D788EEFC972E5 + +Set 3, vector#147: + key=9393939393939393 + plain=9393939393939393 + cipher=F0B00B264381DDBB + decrypted=9393939393939393 + Iterated 100 times=A202BF9079F9B062 + Iterated 1000 times=96FC131CAF04F107 + +Set 3, vector#148: + key=9494949494949494 + plain=9494949494949494 + cipher=E1D23881C957B96C + decrypted=9494949494949494 + Iterated 100 times=211931A5CBC5528C + Iterated 1000 times=5EB35B282B185A43 + +Set 3, vector#149: + key=9595959595959595 + plain=9595959595959595 + cipher=D936BF54ECA8BDCE + decrypted=9595959595959595 + Iterated 100 times=1881D12F579698D3 + Iterated 1000 times=250CDEB58CE5151F + +Set 3, vector#150: + key=9696969696969696 + plain=9696969696969696 + cipher=A020003C5554F34C + decrypted=9696969696969696 + Iterated 100 times=E083A0B114A81D3A + Iterated 1000 times=2DC69BBD843B3D17 + +Set 3, vector#151: + key=9797979797979797 + plain=9797979797979797 + cipher=6118FCEBD407281D + decrypted=9797979797979797 + Iterated 100 times=B1EC2EC543DF9E93 + Iterated 1000 times=48FE61E609875152 + +Set 3, vector#152: + key=9898989898989898 + plain=9898989898989898 + cipher=072E328C984DE4A2 + decrypted=9898989898989898 + Iterated 100 times=FFC81E164681063C + Iterated 1000 times=1102EF350D0E7CE6 + +Set 3, vector#153: + key=9999999999999999 + plain=9999999999999999 + cipher=1440B7EF9E63D3AA + decrypted=9999999999999999 + Iterated 100 times=B23FD48346979644 + Iterated 1000 times=2038B05CCB4E7390 + +Set 3, vector#154: + key=9A9A9A9A9A9A9A9A + plain=9A9A9A9A9A9A9A9A + cipher=79BFA264BDA57373 + decrypted=9A9A9A9A9A9A9A9A + Iterated 100 times=569731726E051266 + Iterated 1000 times=9303715E73E4B44A + +Set 3, vector#155: + key=9B9B9B9B9B9B9B9B + plain=9B9B9B9B9B9B9B9B + cipher=C50E8FC289BBD876 + decrypted=9B9B9B9B9B9B9B9B + Iterated 100 times=05B588F4500ED462 + Iterated 1000 times=41E2F7CA699D683A + +Set 3, vector#156: + key=9C9C9C9C9C9C9C9C + plain=9C9C9C9C9C9C9C9C + cipher=A399D3D63E169FA9 + decrypted=9C9C9C9C9C9C9C9C + Iterated 100 times=6ED80BB9505FE06F + Iterated 1000 times=A027948C863AC913 + +Set 3, vector#157: + key=9D9D9D9D9D9D9D9D + plain=9D9D9D9D9D9D9D9D + cipher=4B8919B667BD53AB + decrypted=9D9D9D9D9D9D9D9D + Iterated 100 times=AEEDB404257393B2 + Iterated 1000 times=6B88B78CAF981171 + +Set 3, vector#158: + key=9E9E9E9E9E9E9E9E + plain=9E9E9E9E9E9E9E9E + cipher=D66CDCAF3F6724A2 + decrypted=9E9E9E9E9E9E9E9E + Iterated 100 times=1279AF6D92A41BF7 + Iterated 1000 times=2FFA21BFA755711F + +Set 3, vector#159: + key=9F9F9F9F9F9F9F9F + plain=9F9F9F9F9F9F9F9F + cipher=E40E81FF3F618340 + decrypted=9F9F9F9F9F9F9F9F + Iterated 100 times=9F5B4B0012272F62 + Iterated 1000 times=FD65A182D7C762FD + +Set 3, vector#160: + key=A0A0A0A0A0A0A0A0 + plain=A0A0A0A0A0A0A0A0 + cipher=10EDB8977B348B35 + decrypted=A0A0A0A0A0A0A0A0 + Iterated 100 times=8247A5C008D8AA98 + Iterated 1000 times=24E9E6BF47F9C277 + +Set 3, vector#161: + key=A1A1A1A1A1A1A1A1 + plain=A1A1A1A1A1A1A1A1 + cipher=6446C5769D8409A0 + decrypted=A1A1A1A1A1A1A1A1 + Iterated 100 times=150580CAF6A06EF1 + Iterated 1000 times=E4B7434DA3AE5FFA + +Set 3, vector#162: + key=A2A2A2A2A2A2A2A2 + plain=A2A2A2A2A2A2A2A2 + cipher=17ED1191CA8D67A3 + decrypted=A2A2A2A2A2A2A2A2 + Iterated 100 times=60A45B8E1ADA9CA5 + Iterated 1000 times=785FB5596074B95D + +Set 3, vector#163: + key=A3A3A3A3A3A3A3A3 + plain=A3A3A3A3A3A3A3A3 + cipher=B6D8533731BA1318 + decrypted=A3A3A3A3A3A3A3A3 + Iterated 100 times=5DD29F3368C1B1F7 + Iterated 1000 times=B70A3FB8C9107C9A + +Set 3, vector#164: + key=A4A4A4A4A4A4A4A4 + plain=A4A4A4A4A4A4A4A4 + cipher=CA439007C7245CD0 + decrypted=A4A4A4A4A4A4A4A4 + Iterated 100 times=9A83BE9022683185 + Iterated 1000 times=4206C5159F50DD95 + +Set 3, vector#165: + key=A5A5A5A5A5A5A5A5 + plain=A5A5A5A5A5A5A5A5 + cipher=06FC7FDE1C8389E7 + decrypted=A5A5A5A5A5A5A5A5 + Iterated 100 times=C14508B435AFB023 + Iterated 1000 times=DB73811AFC4F3CE3 + +Set 3, vector#166: + key=A6A6A6A6A6A6A6A6 + plain=A6A6A6A6A6A6A6A6 + cipher=7A3C1F3BD60CB3D8 + decrypted=A6A6A6A6A6A6A6A6 + Iterated 100 times=A7DEEE1978F89057 + Iterated 1000 times=D89287061504ADC0 + +Set 3, vector#167: + key=A7A7A7A7A7A7A7A7 + plain=A7A7A7A7A7A7A7A7 + cipher=E415D80048DBA848 + decrypted=A7A7A7A7A7A7A7A7 + Iterated 100 times=78F84466AFC6F8F6 + Iterated 1000 times=AA202817353DC10B + +Set 3, vector#168: + key=A8A8A8A8A8A8A8A8 + plain=A8A8A8A8A8A8A8A8 + cipher=26F88D30C0FB8302 + decrypted=A8A8A8A8A8A8A8A8 + Iterated 100 times=0FCBB807FD55E22B + Iterated 1000 times=0F07082DCD0FE7B1 + +Set 3, vector#169: + key=A9A9A9A9A9A9A9A9 + plain=A9A9A9A9A9A9A9A9 + cipher=D4E00A9EF5E6D8F3 + decrypted=A9A9A9A9A9A9A9A9 + Iterated 100 times=AF6AC2573127E404 + Iterated 1000 times=0E92F8E841136230 + +Set 3, vector#170: + key=AAAAAAAAAAAAAAAA + plain=AAAAAAAAAAAAAAAA + cipher=C4322BE19E9A5A17 + decrypted=AAAAAAAAAAAAAAAA + Iterated 100 times=E7901084858D7C5E + Iterated 1000 times=27C547E57A57FB91 + +Set 3, vector#171: + key=ABABABABABABABAB + plain=ABABABABABABABAB + cipher=ACE41A06BFA258EA + decrypted=ABABABABABABABAB + Iterated 100 times=4C4A2C014225C67E + Iterated 1000 times=4F2C63CB6EFB1D81 + +Set 3, vector#172: + key=ACACACACACACACAC + plain=ACACACACACACACAC + cipher=EEAAC6D17880BD56 + decrypted=ACACACACACACACAC + Iterated 100 times=584AA3355D19AAC3 + Iterated 1000 times=63D6F19CF36891BC + +Set 3, vector#173: + key=ADADADADADADADAD + plain=ADADADADADADADAD + cipher=3C9A34CA4CB49EEB + decrypted=ADADADADADADADAD + Iterated 100 times=8F295E7EDCE705AD + Iterated 1000 times=8CDC5A66A3BD0496 + +Set 3, vector#174: + key=AEAEAEAEAEAEAEAE + plain=AEAEAEAEAEAEAEAE + cipher=9527B0287B75F5A3 + decrypted=AEAEAEAEAEAEAEAE + Iterated 100 times=D4FE75067BC2928C + Iterated 1000 times=A7D9A68C9D5549DC + +Set 3, vector#175: + key=AFAFAFAFAFAFAFAF + plain=AFAFAFAFAFAFAFAF + cipher=F2D9D1BE74376C0C + decrypted=AFAFAFAFAFAFAFAF + Iterated 100 times=BE94969929F78F04 + Iterated 1000 times=F700A926C8AB292F + +Set 3, vector#176: + key=B0B0B0B0B0B0B0B0 + plain=B0B0B0B0B0B0B0B0 + cipher=939618DF0AEFAAE7 + decrypted=B0B0B0B0B0B0B0B0 + Iterated 100 times=915D8DB7C20084A3 + Iterated 1000 times=0A4EC98FA69250D0 + +Set 3, vector#177: + key=B1B1B1B1B1B1B1B1 + plain=B1B1B1B1B1B1B1B1 + cipher=24692773CB9F27FE + decrypted=B1B1B1B1B1B1B1B1 + Iterated 100 times=86E87969CB2AB444 + Iterated 1000 times=E939517C61D88B43 + +Set 3, vector#178: + key=B2B2B2B2B2B2B2B2 + plain=B2B2B2B2B2B2B2B2 + cipher=38703BA5E2315D1D + decrypted=B2B2B2B2B2B2B2B2 + Iterated 100 times=88C1990293D1F759 + Iterated 1000 times=1708564953E737E0 + +Set 3, vector#179: + key=B3B3B3B3B3B3B3B3 + plain=B3B3B3B3B3B3B3B3 + cipher=FCB7E4B7D702E2FB + decrypted=B3B3B3B3B3B3B3B3 + Iterated 100 times=731AD9625E0FEEF1 + Iterated 1000 times=E65A7E02CE13749D + +Set 3, vector#180: + key=B4B4B4B4B4B4B4B4 + plain=B4B4B4B4B4B4B4B4 + cipher=36F0D0B3675704D5 + decrypted=B4B4B4B4B4B4B4B4 + Iterated 100 times=45AD3DD538B3AF32 + Iterated 1000 times=E685996FB965CFD8 + +Set 3, vector#181: + key=B5B5B5B5B5B5B5B5 + plain=B5B5B5B5B5B5B5B5 + cipher=62D473F539FA0D8B + decrypted=B5B5B5B5B5B5B5B5 + Iterated 100 times=19F1753F1039D24F + Iterated 1000 times=9998937345EB9339 + +Set 3, vector#182: + key=B6B6B6B6B6B6B6B6 + plain=B6B6B6B6B6B6B6B6 + cipher=1533F3ED9BE8EF8E + decrypted=B6B6B6B6B6B6B6B6 + Iterated 100 times=EC189852B1B4E6AC + Iterated 1000 times=8A8F88616BEF9ECD + +Set 3, vector#183: + key=B7B7B7B7B7B7B7B7 + plain=B7B7B7B7B7B7B7B7 + cipher=9C4EA352599731ED + decrypted=B7B7B7B7B7B7B7B7 + Iterated 100 times=EBC9E8DE341B9192 + Iterated 1000 times=3B3FAA0E54D1EB66 + +Set 3, vector#184: + key=B8B8B8B8B8B8B8B8 + plain=B8B8B8B8B8B8B8B8 + cipher=FABBF7C046FD273F + decrypted=B8B8B8B8B8B8B8B8 + Iterated 100 times=870B40B93638B52E + Iterated 1000 times=2B1BD03858F722FC + +Set 3, vector#185: + key=B9B9B9B9B9B9B9B9 + plain=B9B9B9B9B9B9B9B9 + cipher=B7FE63A61C646F3A + decrypted=B9B9B9B9B9B9B9B9 + Iterated 100 times=DF66CFB21A754F65 + Iterated 1000 times=2C5582114A67DF60 + +Set 3, vector#186: + key=BABABABABABABABA + plain=BABABABABABABABA + cipher=10ADB6E2AB972BBE + decrypted=BABABABABABABABA + Iterated 100 times=3E46F627A93A0013 + Iterated 1000 times=9ACA4FCC17C810EC + +Set 3, vector#187: + key=BBBBBBBBBBBBBBBB + plain=BBBBBBBBBBBBBBBB + cipher=F91DCAD912332F3B + decrypted=BBBBBBBBBBBBBBBB + Iterated 100 times=49E78FC13609E063 + Iterated 1000 times=66A218546D0707F1 + +Set 3, vector#188: + key=BCBCBCBCBCBCBCBC + plain=BCBCBCBCBCBCBCBC + cipher=46E7EF47323A701D + decrypted=BCBCBCBCBCBCBCBC + Iterated 100 times=DC5F85DECFAE2E17 + Iterated 1000 times=36E94603258DE595 + +Set 3, vector#189: + key=BDBDBDBDBDBDBDBD + plain=BDBDBDBDBDBDBDBD + cipher=8DB18CCD9692F758 + decrypted=BDBDBDBDBDBDBDBD + Iterated 100 times=DCFBF7216B50B7AE + Iterated 1000 times=E77CC1A3A1287929 + +Set 3, vector#190: + key=BEBEBEBEBEBEBEBE + plain=BEBEBEBEBEBEBEBE + cipher=E6207B536AAAEFFC + decrypted=BEBEBEBEBEBEBEBE + Iterated 100 times=0C48478B29AE4F3E + Iterated 1000 times=3152CE404E6913BF + +Set 3, vector#191: + key=BFBFBFBFBFBFBFBF + plain=BFBFBFBFBFBFBFBF + cipher=92AA224372156A00 + decrypted=BFBFBFBFBFBFBFBF + Iterated 100 times=4DA26C3D54FA5BF8 + Iterated 1000 times=164B01489623AE9B + +Set 3, vector#192: + key=C0C0C0C0C0C0C0C0 + plain=C0C0C0C0C0C0C0C0 + cipher=A3B357885B1E16D2 + decrypted=C0C0C0C0C0C0C0C0 + Iterated 100 times=5E5CE4083735461F + Iterated 1000 times=081B484E1DCAEF3E + +Set 3, vector#193: + key=C1C1C1C1C1C1C1C1 + plain=C1C1C1C1C1C1C1C1 + cipher=169F7629C970C1E5 + decrypted=C1C1C1C1C1C1C1C1 + Iterated 100 times=ABD4BB3FAA4469CB + Iterated 1000 times=916880243A186FCB + +Set 3, vector#194: + key=C2C2C2C2C2C2C2C2 + plain=C2C2C2C2C2C2C2C2 + cipher=62F44B247CF1348C + decrypted=C2C2C2C2C2C2C2C2 + Iterated 100 times=5E0C315B4C263365 + Iterated 1000 times=E510A9828B6F1387 + +Set 3, vector#195: + key=C3C3C3C3C3C3C3C3 + plain=C3C3C3C3C3C3C3C3 + cipher=AE0FEEB0495932C8 + decrypted=C3C3C3C3C3C3C3C3 + Iterated 100 times=CF0C8C5182828604 + Iterated 1000 times=F04F4B1AE34B890B + +Set 3, vector#196: + key=C4C4C4C4C4C4C4C4 + plain=C4C4C4C4C4C4C4C4 + cipher=72DAF2A7C9EA6803 + decrypted=C4C4C4C4C4C4C4C4 + Iterated 100 times=4390B27175DEB080 + Iterated 1000 times=048C1FE88609A336 + +Set 3, vector#197: + key=C5C5C5C5C5C5C5C5 + plain=C5C5C5C5C5C5C5C5 + cipher=4FB5D5536DA544F4 + decrypted=C5C5C5C5C5C5C5C5 + Iterated 100 times=A128E4C976737D98 + Iterated 1000 times=D8B1C94C7C209236 + +Set 3, vector#198: + key=C6C6C6C6C6C6C6C6 + plain=C6C6C6C6C6C6C6C6 + cipher=1DD4E65AAF7988B4 + decrypted=C6C6C6C6C6C6C6C6 + Iterated 100 times=2A7F23AE01CFFDD6 + Iterated 1000 times=64F9D45C03430258 + +Set 3, vector#199: + key=C7C7C7C7C7C7C7C7 + plain=C7C7C7C7C7C7C7C7 + cipher=76BF084C1535A6C6 + decrypted=C7C7C7C7C7C7C7C7 + Iterated 100 times=AF173D2156728B85 + Iterated 1000 times=0B71BF7ED4312134 + +Set 3, vector#200: + key=C8C8C8C8C8C8C8C8 + plain=C8C8C8C8C8C8C8C8 + cipher=AFEC35B09D36315F + decrypted=C8C8C8C8C8C8C8C8 + Iterated 100 times=39E749D9280A6281 + Iterated 1000 times=DBFFB7E205E244D4 + +Set 3, vector#201: + key=C9C9C9C9C9C9C9C9 + plain=C9C9C9C9C9C9C9C9 + cipher=C8078A6148818403 + decrypted=C9C9C9C9C9C9C9C9 + Iterated 100 times=501381467CF791D6 + Iterated 1000 times=EC23BAE33F766878 + +Set 3, vector#202: + key=CACACACACACACACA + plain=CACACACACACACACA + cipher=4DA91CB4124B67FE + decrypted=CACACACACACACACA + Iterated 100 times=1BDF87A8EF8D0991 + Iterated 1000 times=29253121FB35F5CB + +Set 3, vector#203: + key=CBCBCBCBCBCBCBCB + plain=CBCBCBCBCBCBCBCB + cipher=2DABFEB346794C3D + decrypted=CBCBCBCBCBCBCBCB + Iterated 100 times=F7AAF64AE3C8A47F + Iterated 1000 times=CE16A9944CF1F7E1 + +Set 3, vector#204: + key=CCCCCCCCCCCCCCCC + plain=CCCCCCCCCCCCCCCC + cipher=FBCD12C790D21CD7 + decrypted=CCCCCCCCCCCCCCCC + Iterated 100 times=7294E708D94A42CF + Iterated 1000 times=0248929C10FAE522 + +Set 3, vector#205: + key=CDCDCDCDCDCDCDCD + plain=CDCDCDCDCDCDCDCD + cipher=536873DB879CC770 + decrypted=CDCDCDCDCDCDCDCD + Iterated 100 times=CAC1B6F8A53E6CA9 + Iterated 1000 times=8B679494B758F464 + +Set 3, vector#206: + key=CECECECECECECECE + plain=CECECECECECECECE + cipher=9AA159D7309DA7A0 + decrypted=CECECECECECECECE + Iterated 100 times=1E0AAD85559A20D4 + Iterated 1000 times=C071914F896C6A60 + +Set 3, vector#207: + key=CFCFCFCFCFCFCFCF + plain=CFCFCFCFCFCFCFCF + cipher=0B844B9D8C4EA14A + decrypted=CFCFCFCFCFCFCFCF + Iterated 100 times=8940C3D3F2E3B42F + Iterated 1000 times=C34230543E0CDE28 + +Set 3, vector#208: + key=D0D0D0D0D0D0D0D0 + plain=D0D0D0D0D0D0D0D0 + cipher=3BBD84CE539E68C4 + decrypted=D0D0D0D0D0D0D0D0 + Iterated 100 times=A16A00B5E4B8F362 + Iterated 1000 times=076A09BFBBF856EE + +Set 3, vector#209: + key=D1D1D1D1D1D1D1D1 + plain=D1D1D1D1D1D1D1D1 + cipher=CF3E4F3E026E2C8E + decrypted=D1D1D1D1D1D1D1D1 + Iterated 100 times=AE589D8E52F1C5A0 + Iterated 1000 times=2C20397C54982774 + +Set 3, vector#210: + key=D2D2D2D2D2D2D2D2 + plain=D2D2D2D2D2D2D2D2 + cipher=82F85885D542AF58 + decrypted=D2D2D2D2D2D2D2D2 + Iterated 100 times=D4411D76000AA37A + Iterated 1000 times=AFE3D98397DD7F4A + +Set 3, vector#211: + key=D3D3D3D3D3D3D3D3 + plain=D3D3D3D3D3D3D3D3 + cipher=22D334D6493B3CB6 + decrypted=D3D3D3D3D3D3D3D3 + Iterated 100 times=2C49065E427494EA + Iterated 1000 times=E57B8518FB451E8A + +Set 3, vector#212: + key=D4D4D4D4D4D4D4D4 + plain=D4D4D4D4D4D4D4D4 + cipher=47E9CB3E3154D673 + decrypted=D4D4D4D4D4D4D4D4 + Iterated 100 times=A21FF12CA3238BD7 + Iterated 1000 times=21E69CC1880B24E0 + +Set 3, vector#213: + key=D5D5D5D5D5D5D5D5 + plain=D5D5D5D5D5D5D5D5 + cipher=2352BCC708ADC7E9 + decrypted=D5D5D5D5D5D5D5D5 + Iterated 100 times=1E806D40132F54A2 + Iterated 1000 times=7FC540256EA7F53E + +Set 3, vector#214: + key=D6D6D6D6D6D6D6D6 + plain=D6D6D6D6D6D6D6D6 + cipher=8C0F3BA0C8601980 + decrypted=D6D6D6D6D6D6D6D6 + Iterated 100 times=39EB9BEB28BC65A6 + Iterated 1000 times=B7EBEE17F45EB353 + +Set 3, vector#215: + key=D7D7D7D7D7D7D7D7 + plain=D7D7D7D7D7D7D7D7 + cipher=EE5E9FD70CEF00E9 + decrypted=D7D7D7D7D7D7D7D7 + Iterated 100 times=37819558FDB55DA2 + Iterated 1000 times=54A2B8E91BB9E6C6 + +Set 3, vector#216: + key=D8D8D8D8D8D8D8D8 + plain=D8D8D8D8D8D8D8D8 + cipher=DEF6BDA6CABF9547 + decrypted=D8D8D8D8D8D8D8D8 + Iterated 100 times=F9D98BBA295D4D93 + Iterated 1000 times=670C1A86D2A6894E + +Set 3, vector#217: + key=D9D9D9D9D9D9D9D9 + plain=D9D9D9D9D9D9D9D9 + cipher=4DADD04A0EA70F20 + decrypted=D9D9D9D9D9D9D9D9 + Iterated 100 times=F545A7D8D7F3CD47 + Iterated 1000 times=5E4B6232F846EFCF + +Set 3, vector#218: + key=DADADADADADADADA + plain=DADADADADADADADA + cipher=C1AA16689EE1B482 + decrypted=DADADADADADADADA + Iterated 100 times=EDDC1A877973E109 + Iterated 1000 times=18D782701F5BC7C1 + +Set 3, vector#219: + key=DBDBDBDBDBDBDBDB + plain=DBDBDBDBDBDBDBDB + cipher=F45FC26193E69AEE + decrypted=DBDBDBDBDBDBDBDB + Iterated 100 times=510AD6B806F7BAF5 + Iterated 1000 times=D9F80406813DB4A0 + +Set 3, vector#220: + key=DCDCDCDCDCDCDCDC + plain=DCDCDCDCDCDCDCDC + cipher=D0CFBB937CEDBFB5 + decrypted=DCDCDCDCDCDCDCDC + Iterated 100 times=A01046D5099A9CC5 + Iterated 1000 times=6E9A31352EA9C090 + +Set 3, vector#221: + key=DDDDDDDDDDDDDDDD + plain=DDDDDDDDDDDDDDDD + cipher=F0752004EE23D87B + decrypted=DDDDDDDDDDDDDDDD + Iterated 100 times=F82A568A205CF4BF + Iterated 1000 times=36B419D8522B3E0B + +Set 3, vector#222: + key=DEDEDEDEDEDEDEDE + plain=DEDEDEDEDEDEDEDE + cipher=77A791E28AA464A5 + decrypted=DEDEDEDEDEDEDEDE + Iterated 100 times=AC2DB86C28ABF410 + Iterated 1000 times=1B18CF9378AD8579 + +Set 3, vector#223: + key=DFDFDFDFDFDFDFDF + plain=DFDFDFDFDFDFDFDF + cipher=E7562A7F56FF4966 + decrypted=DFDFDFDFDFDFDFDF + Iterated 100 times=21188ABBADBFDE7B + Iterated 1000 times=4722B27D4AA0ECB4 + +Set 3, vector#224: + key=E0E0E0E0E0E0E0E0 + plain=E0E0E0E0E0E0E0E0 + cipher=B026913F2CCFB109 + decrypted=E0E0E0E0E0E0E0E0 + Iterated 100 times=EB72D9FA3361A708 + Iterated 1000 times=44047E11F1C1416B + +Set 3, vector#225: + key=E1E1E1E1E1E1E1E1 + plain=E1E1E1E1E1E1E1E1 + cipher=0DB572DDCE388AC7 + decrypted=E1E1E1E1E1E1E1E1 + Iterated 100 times=A5B0C6070E83F938 + Iterated 1000 times=AC7D81230AD59023 + +Set 3, vector#226: + key=E2E2E2E2E2E2E2E2 + plain=E2E2E2E2E2E2E2E2 + cipher=D9FA6595F0C094CA + decrypted=E2E2E2E2E2E2E2E2 + Iterated 100 times=07C4796C2F59E696 + Iterated 1000 times=6CEC5AC39FAE424C + +Set 3, vector#227: + key=E3E3E3E3E3E3E3E3 + plain=E3E3E3E3E3E3E3E3 + cipher=ADE4804C4BE4486E + decrypted=E3E3E3E3E3E3E3E3 + Iterated 100 times=06EEA346611D62E8 + Iterated 1000 times=BCF94D053EE22F2A + +Set 3, vector#228: + key=E4E4E4E4E4E4E4E4 + plain=E4E4E4E4E4E4E4E4 + cipher=007B81F520E6D7DA + decrypted=E4E4E4E4E4E4E4E4 + Iterated 100 times=310AD55F09FBEDF8 + Iterated 1000 times=BAF5AF88901E2AD2 + +Set 3, vector#229: + key=E5E5E5E5E5E5E5E5 + plain=E5E5E5E5E5E5E5E5 + cipher=961AEB77BFC10B3C + decrypted=E5E5E5E5E5E5E5E5 + Iterated 100 times=4E63FF1FEB069184 + Iterated 1000 times=25189FC04ED3B861 + +Set 3, vector#230: + key=E6E6E6E6E6E6E6E6 + plain=E6E6E6E6E6E6E6E6 + cipher=8A8DD870C9B14AF2 + decrypted=E6E6E6E6E6E6E6E6 + Iterated 100 times=C4259776E0BEE1D8 + Iterated 1000 times=5208CA02F7FB142D + +Set 3, vector#231: + key=E7E7E7E7E7E7E7E7 + plain=E7E7E7E7E7E7E7E7 + cipher=3CC02E14B6349B25 + decrypted=E7E7E7E7E7E7E7E7 + Iterated 100 times=F92F2CF7BC897D40 + Iterated 1000 times=6A8C6E2B57191DEF + +Set 3, vector#232: + key=E8E8E8E8E8E8E8E8 + plain=E8E8E8E8E8E8E8E8 + cipher=BAD3EE68BDDB9607 + decrypted=E8E8E8E8E8E8E8E8 + Iterated 100 times=DF81B49E79C5E656 + Iterated 1000 times=F1F641415F626C60 + +Set 3, vector#233: + key=E9E9E9E9E9E9E9E9 + plain=E9E9E9E9E9E9E9E9 + cipher=DFF918E93BDAD292 + decrypted=E9E9E9E9E9E9E9E9 + Iterated 100 times=0C8EB2D653121D23 + Iterated 1000 times=067C671574D53E3D + +Set 3, vector#234: + key=EAEAEAEAEAEAEAEA + plain=EAEAEAEAEAEAEAEA + cipher=8FE559C7CD6FA56D + decrypted=EAEAEAEAEAEAEAEA + Iterated 100 times=F98A3CAD3494D973 + Iterated 1000 times=EE88C13101CBEE0C + +Set 3, vector#235: + key=EBEBEBEBEBEBEBEB + plain=EBEBEBEBEBEBEBEB + cipher=C88480835C1A444C + decrypted=EBEBEBEBEBEBEBEB + Iterated 100 times=05AAA2D794EEA90D + Iterated 1000 times=B8D801D6EAF580E9 + +Set 3, vector#236: + key=ECECECECECECECEC + plain=ECECECECECECECEC + cipher=D6EE30A16B2CC01E + decrypted=ECECECECECECECEC + Iterated 100 times=4A92DE9CCA043A16 + Iterated 1000 times=7FE650510DA82B8F + +Set 3, vector#237: + key=EDEDEDEDEDEDEDED + plain=EDEDEDEDEDEDEDED + cipher=6932D887B2EA9C1A + decrypted=EDEDEDEDEDEDEDED + Iterated 100 times=588ED5B75D7827AA + Iterated 1000 times=C9A4FED91478578C + +Set 3, vector#238: + key=EEEEEEEEEEEEEEEE + plain=EEEEEEEEEEEEEEEE + cipher=0BFC865461F13ACC + decrypted=EEEEEEEEEEEEEEEE + Iterated 100 times=875EDA82DCCD2B8E + Iterated 1000 times=C26284F5B1F1CA89 + +Set 3, vector#239: + key=EFEFEFEFEFEFEFEF + plain=EFEFEFEFEFEFEFEF + cipher=228AEA0D403E807A + decrypted=EFEFEFEFEFEFEFEF + Iterated 100 times=A61B4DF5D461EC5B + Iterated 1000 times=ACD1CB4D9F1E8E47 + +Set 3, vector#240: + key=F0F0F0F0F0F0F0F0 + plain=F0F0F0F0F0F0F0F0 + cipher=2A2891F65BB8173C + decrypted=F0F0F0F0F0F0F0F0 + Iterated 100 times=D7FBEF924B9DBCE0 + Iterated 1000 times=D9EB0B9EF30F5BD0 + +Set 3, vector#241: + key=F1F1F1F1F1F1F1F1 + plain=F1F1F1F1F1F1F1F1 + cipher=5D1B8FAF7839494B + decrypted=F1F1F1F1F1F1F1F1 + Iterated 100 times=F7FF951E56078674 + Iterated 1000 times=D07242D7A2ACAC38 + +Set 3, vector#242: + key=F2F2F2F2F2F2F2F2 + plain=F2F2F2F2F2F2F2F2 + cipher=1C0A9280EECF5D48 + decrypted=F2F2F2F2F2F2F2F2 + Iterated 100 times=8F139650FA13BB89 + Iterated 1000 times=9B0E0B4C799A3812 + +Set 3, vector#243: + key=F3F3F3F3F3F3F3F3 + plain=F3F3F3F3F3F3F3F3 + cipher=6CBCE951BBC30F74 + decrypted=F3F3F3F3F3F3F3F3 + Iterated 100 times=129D99F0D7BCBC32 + Iterated 1000 times=C24BD701D79829DF + +Set 3, vector#244: + key=F4F4F4F4F4F4F4F4 + plain=F4F4F4F4F4F4F4F4 + cipher=9CA66E96BD08BC70 + decrypted=F4F4F4F4F4F4F4F4 + Iterated 100 times=8B084C0FA81AC1B6 + Iterated 1000 times=2233042573AC5B8D + +Set 3, vector#245: + key=F5F5F5F5F5F5F5F5 + plain=F5F5F5F5F5F5F5F5 + cipher=F5D779FCFBB28BF3 + decrypted=F5F5F5F5F5F5F5F5 + Iterated 100 times=3B34FF71C5F59D56 + Iterated 1000 times=407049FF9C2C8C51 + +Set 3, vector#246: + key=F6F6F6F6F6F6F6F6 + plain=F6F6F6F6F6F6F6F6 + cipher=0FEC6BBF9B859184 + decrypted=F6F6F6F6F6F6F6F6 + Iterated 100 times=42CB12CA843C6C74 + Iterated 1000 times=C6BB5B0DCEDC6036 + +Set 3, vector#247: + key=F7F7F7F7F7F7F7F7 + plain=F7F7F7F7F7F7F7F7 + cipher=EF88D2BF052DBDA8 + decrypted=F7F7F7F7F7F7F7F7 + Iterated 100 times=24CDEB52C4CA3A8D + Iterated 1000 times=B175BF935B0143AD + +Set 3, vector#248: + key=F8F8F8F8F8F8F8F8 + plain=F8F8F8F8F8F8F8F8 + cipher=39ADBDDB7363090D + decrypted=F8F8F8F8F8F8F8F8 + Iterated 100 times=21C5E8CE5E2CCDB4 + Iterated 1000 times=3643DA284291B2BC + +Set 3, vector#249: + key=F9F9F9F9F9F9F9F9 + plain=F9F9F9F9F9F9F9F9 + cipher=C0AEAF445F7E2A7A + decrypted=F9F9F9F9F9F9F9F9 + Iterated 100 times=2E3A9FF184E7944E + Iterated 1000 times=D8ADD64A2DAC9AC9 + +Set 3, vector#250: + key=FAFAFAFAFAFAFAFA + plain=FAFAFAFAFAFAFAFA + cipher=C66F54067298D4E9 + decrypted=FAFAFAFAFAFAFAFA + Iterated 100 times=01B55881017AE5A7 + Iterated 1000 times=BCB275378350A650 + +Set 3, vector#251: + key=FBFBFBFBFBFBFBFB + plain=FBFBFBFBFBFBFBFB + cipher=E0BA8F4488AAF97C + decrypted=FBFBFBFBFBFBFBFB + Iterated 100 times=36A03F5910917129 + Iterated 1000 times=C8C52214145F197E + +Set 3, vector#252: + key=FCFCFCFCFCFCFCFC + plain=FCFCFCFCFCFCFCFC + cipher=67B36E2875D9631C + decrypted=FCFCFCFCFCFCFCFC + Iterated 100 times=0B928013B6E2FB64 + Iterated 1000 times=E4AB2DCB637F4B0D + +Set 3, vector#253: + key=FDFDFDFDFDFDFDFD + plain=FDFDFDFDFDFDFDFD + cipher=1ED83D49E267191D + decrypted=FDFDFDFDFDFDFDFD + Iterated 100 times=4A8A081FC944218D + Iterated 1000 times=109914EF6ADC7044 + +Set 3, vector#254: + key=FEFEFEFEFEFEFEFE + plain=FEFEFEFEFEFEFEFE + cipher=66B2B23EA84693AD + decrypted=FEFEFEFEFEFEFEFE + Iterated 100 times=FEFEFEFEFEFEFEFE + Iterated 1000 times=FEFEFEFEFEFEFEFE + +Set 3, vector#255: + key=FFFFFFFFFFFFFFFF + plain=FFFFFFFFFFFFFFFF + cipher=7359B2163E4EDC58 + decrypted=FFFFFFFFFFFFFFFF + Iterated 100 times=FFFFFFFFFFFFFFFF + Iterated 1000 times=FFFFFFFFFFFFFFFF + +Test vectors -- set 4 +===================== + +Set 4, vector# 0: + key=0001020304050607 + plain=0011223344556677 + cipher=3EF0A891CF8ED990 + decrypted=0011223344556677 + Iterated 100 times=197A7BD2A46DAD16 + Iterated 1000 times=12535CB0F77EE77C + +Set 4, vector# 1: + key=2BD6459F82C5B300 + plain=EA024714AD5C4D84 + cipher=126EFE8ED312190A + decrypted=EA024714AD5C4D84 + Iterated 100 times=C19434F73864A3F6 + Iterated 1000 times=CC3FD23E36545FAE + +Test vectors -- set 5 +===================== + +Set 5, vector# 0: + key=8000000000000000 + cipher=0000000000000000 + plain=1C29EEE68829F666 + encrypted=0000000000000000 + +Set 5, vector# 1: + key=4000000000000000 + cipher=0000000000000000 + plain=1EBAA7E2844108D1 + encrypted=0000000000000000 + +Set 5, vector# 2: + key=2000000000000000 + cipher=0000000000000000 + plain=DD75FF6DD1D07407 + encrypted=0000000000000000 + +Set 5, vector# 3: + key=1000000000000000 + cipher=0000000000000000 + plain=6C0D0366D7FC1E93 + encrypted=0000000000000000 + +Set 5, vector# 4: + key=0800000000000000 + cipher=0000000000000000 + plain=65FB4EDB3731E927 + encrypted=0000000000000000 + +Set 5, vector# 5: + key=0400000000000000 + cipher=0000000000000000 + plain=1A4795892BD82629 + encrypted=0000000000000000 + +Set 5, vector# 6: + key=0200000000000000 + cipher=0000000000000000 + plain=6E228A9F47A31527 + encrypted=0000000000000000 + +Set 5, vector# 7: + key=0100000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 8: + key=0080000000000000 + cipher=0000000000000000 + plain=5A01EA0528FE4DBC + encrypted=0000000000000000 + +Set 5, vector# 9: + key=0040000000000000 + cipher=0000000000000000 + plain=2AA7048B7F843ACC + encrypted=0000000000000000 + +Set 5, vector# 10: + key=0020000000000000 + cipher=0000000000000000 + plain=FB1426125A5AE00F + encrypted=0000000000000000 + +Set 5, vector# 11: + key=0010000000000000 + cipher=0000000000000000 + plain=3ACC2A83D9FE0CF8 + encrypted=0000000000000000 + +Set 5, vector# 12: + key=0008000000000000 + cipher=0000000000000000 + plain=2616451A5426B97D + encrypted=0000000000000000 + +Set 5, vector# 13: + key=0004000000000000 + cipher=0000000000000000 + plain=B85395BAA402FFB9 + encrypted=0000000000000000 + +Set 5, vector# 14: + key=0002000000000000 + cipher=0000000000000000 + plain=D02182A2E8E573A1 + encrypted=0000000000000000 + +Set 5, vector# 15: + key=0001000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 16: + key=0000800000000000 + cipher=0000000000000000 + plain=C6ED12A06A4CC156 + encrypted=0000000000000000 + +Set 5, vector# 17: + key=0000400000000000 + cipher=0000000000000000 + plain=64EEA4A26D381E26 + encrypted=0000000000000000 + +Set 5, vector# 18: + key=0000200000000000 + cipher=0000000000000000 + plain=4EA9D5AA0C2C3C4E + encrypted=0000000000000000 + +Set 5, vector# 19: + key=0000100000000000 + cipher=0000000000000000 + plain=8D8661C34C6F4D21 + encrypted=0000000000000000 + +Set 5, vector# 20: + key=0000080000000000 + cipher=0000000000000000 + plain=E3FF48ACC26B8A33 + encrypted=0000000000000000 + +Set 5, vector# 21: + key=0000040000000000 + cipher=0000000000000000 + plain=C57374F43AF34F17 + encrypted=0000000000000000 + +Set 5, vector# 22: + key=0000020000000000 + cipher=0000000000000000 + plain=857FB4722F85F57F + encrypted=0000000000000000 + +Set 5, vector# 23: + key=0000010000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 24: + key=0000008000000000 + cipher=0000000000000000 + plain=D86AFF1EE01AAA00 + encrypted=0000000000000000 + +Set 5, vector# 25: + key=0000004000000000 + cipher=0000000000000000 + plain=7B4937859794FC5E + encrypted=0000000000000000 + +Set 5, vector# 26: + key=0000002000000000 + cipher=0000000000000000 + plain=05EF338303C238D9 + encrypted=0000000000000000 + +Set 5, vector# 27: + key=0000001000000000 + cipher=0000000000000000 + plain=0E2F05283A7DD2B2 + encrypted=0000000000000000 + +Set 5, vector# 28: + key=0000000800000000 + cipher=0000000000000000 + plain=661502A71B53EAD4 + encrypted=0000000000000000 + +Set 5, vector# 29: + key=0000000400000000 + cipher=0000000000000000 + plain=1EBBFCECD36FA671 + encrypted=0000000000000000 + +Set 5, vector# 30: + key=0000000200000000 + cipher=0000000000000000 + plain=6800E59AF69486CD + encrypted=0000000000000000 + +Set 5, vector# 31: + key=0000000100000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 32: + key=0000000080000000 + cipher=0000000000000000 + plain=82453A94E658B38D + encrypted=0000000000000000 + +Set 5, vector# 33: + key=0000000040000000 + cipher=0000000000000000 + plain=BD0622EBC5E34C41 + encrypted=0000000000000000 + +Set 5, vector# 34: + key=0000000020000000 + cipher=0000000000000000 + plain=4C3E34B8BE70C9F2 + encrypted=0000000000000000 + +Set 5, vector# 35: + key=0000000010000000 + cipher=0000000000000000 + plain=1027E471BF185728 + encrypted=0000000000000000 + +Set 5, vector# 36: + key=0000000008000000 + cipher=0000000000000000 + plain=39DE1CB6FE1959A4 + encrypted=0000000000000000 + +Set 5, vector# 37: + key=0000000004000000 + cipher=0000000000000000 + plain=E3C3CC1A68B58E5D + encrypted=0000000000000000 + +Set 5, vector# 38: + key=0000000002000000 + cipher=0000000000000000 + plain=B60F05703D5012FA + encrypted=0000000000000000 + +Set 5, vector# 39: + key=0000000001000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 40: + key=0000000000800000 + cipher=0000000000000000 + plain=D19667C59D94D4F7 + encrypted=0000000000000000 + +Set 5, vector# 41: + key=0000000000400000 + cipher=0000000000000000 + plain=3CA5963292ED8725 + encrypted=0000000000000000 + +Set 5, vector# 42: + key=0000000000200000 + cipher=0000000000000000 + plain=1F2B2104BF62E510 + encrypted=0000000000000000 + +Set 5, vector# 43: + key=0000000000100000 + cipher=0000000000000000 + plain=322D5F2AD1F6C3F8 + encrypted=0000000000000000 + +Set 5, vector# 44: + key=0000000000080000 + cipher=0000000000000000 + plain=202D8D2E16C3DE65 + encrypted=0000000000000000 + +Set 5, vector# 45: + key=0000000000040000 + cipher=0000000000000000 + plain=10B71036AF979F7A + encrypted=0000000000000000 + +Set 5, vector# 46: + key=0000000000020000 + cipher=0000000000000000 + plain=980048358ADB5189 + encrypted=0000000000000000 + +Set 5, vector# 47: + key=0000000000010000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 48: + key=0000000000008000 + cipher=0000000000000000 + plain=737589DC3ADDB4D5 + encrypted=0000000000000000 + +Set 5, vector# 49: + key=0000000000004000 + cipher=0000000000000000 + plain=F7900FD046800D04 + encrypted=0000000000000000 + +Set 5, vector# 50: + key=0000000000002000 + cipher=0000000000000000 + plain=95BE3F4238740526 + encrypted=0000000000000000 + +Set 5, vector# 51: + key=0000000000001000 + cipher=0000000000000000 + plain=656F2445A164F9E1 + encrypted=0000000000000000 + +Set 5, vector# 52: + key=0000000000000800 + cipher=0000000000000000 + plain=6C77909A14006365 + encrypted=0000000000000000 + +Set 5, vector# 53: + key=0000000000000400 + cipher=0000000000000000 + plain=B3524D3045B44663 + encrypted=0000000000000000 + +Set 5, vector# 54: + key=0000000000000200 + cipher=0000000000000000 + plain=4BFE8E87CFF074F7 + encrypted=0000000000000000 + +Set 5, vector# 55: + key=0000000000000100 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 56: + key=0000000000000080 + cipher=0000000000000000 + plain=0EBFE2B0D89F9EC3 + encrypted=0000000000000000 + +Set 5, vector# 57: + key=0000000000000040 + cipher=0000000000000000 + plain=A34785BBA566D0D5 + encrypted=0000000000000000 + +Set 5, vector# 58: + key=0000000000000020 + cipher=0000000000000000 + plain=F2B12EA4CF8F6FC2 + encrypted=0000000000000000 + +Set 5, vector# 59: + key=0000000000000010 + cipher=0000000000000000 + plain=5D65F4BD79E2AD83 + encrypted=0000000000000000 + +Set 5, vector# 60: + key=0000000000000008 + cipher=0000000000000000 + plain=6D2D1CC9A52139BD + encrypted=0000000000000000 + +Set 5, vector# 61: + key=0000000000000004 + cipher=0000000000000000 + plain=6CB9F25ABAAA9DDD + encrypted=0000000000000000 + +Set 5, vector# 62: + key=0000000000000002 + cipher=0000000000000000 + plain=2F3F20C13DEF464C + encrypted=0000000000000000 + +Set 5, vector# 63: + key=0000000000000001 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Test vectors -- set 6 +===================== + +Set 6, vector# 0: + key=0000000000000000 + cipher=8000000000000000 + plain=95F8A5E5DD31D900 + encrypted=8000000000000000 + +Set 6, vector# 1: + key=0000000000000000 + cipher=4000000000000000 + plain=DD7F121CA5015619 + encrypted=4000000000000000 + +Set 6, vector# 2: + key=0000000000000000 + cipher=2000000000000000 + plain=2E8653104F3834EA + encrypted=2000000000000000 + +Set 6, vector# 3: + key=0000000000000000 + cipher=1000000000000000 + plain=4BD388FF6CD81D4F + encrypted=1000000000000000 + +Set 6, vector# 4: + key=0000000000000000 + cipher=0800000000000000 + plain=20B9E767B2FB1456 + encrypted=0800000000000000 + +Set 6, vector# 5: + key=0000000000000000 + cipher=0400000000000000 + plain=55579380D77138EF + encrypted=0400000000000000 + +Set 6, vector# 6: + key=0000000000000000 + cipher=0200000000000000 + plain=6CC5DEFAAF04512F + encrypted=0200000000000000 + +Set 6, vector# 7: + key=0000000000000000 + cipher=0100000000000000 + plain=0D9F279BA5D87260 + encrypted=0100000000000000 + +Set 6, vector# 8: + key=0000000000000000 + cipher=0080000000000000 + plain=D9031B0271BD5A0A + encrypted=0080000000000000 + +Set 6, vector# 9: + key=0000000000000000 + cipher=0040000000000000 + plain=424250B37C3DD951 + encrypted=0040000000000000 + +Set 6, vector# 10: + key=0000000000000000 + cipher=0020000000000000 + plain=B8061B7ECD9A21E5 + encrypted=0020000000000000 + +Set 6, vector# 11: + key=0000000000000000 + cipher=0010000000000000 + plain=F15D0F286B65BD28 + encrypted=0010000000000000 + +Set 6, vector# 12: + key=0000000000000000 + cipher=0008000000000000 + plain=ADD0CC8D6E5DEBA1 + encrypted=0008000000000000 + +Set 6, vector# 13: + key=0000000000000000 + cipher=0004000000000000 + plain=E6D5F82752AD63D1 + encrypted=0004000000000000 + +Set 6, vector# 14: + key=0000000000000000 + cipher=0002000000000000 + plain=ECBFE3BD3F591A5E + encrypted=0002000000000000 + +Set 6, vector# 15: + key=0000000000000000 + cipher=0001000000000000 + plain=F356834379D165CD + encrypted=0001000000000000 + +Set 6, vector# 16: + key=0000000000000000 + cipher=0000800000000000 + plain=2B9F982F20037FA9 + encrypted=0000800000000000 + +Set 6, vector# 17: + key=0000000000000000 + cipher=0000400000000000 + plain=889DE068A16F0BE6 + encrypted=0000400000000000 + +Set 6, vector# 18: + key=0000000000000000 + cipher=0000200000000000 + plain=E19E275D846A1298 + encrypted=0000200000000000 + +Set 6, vector# 19: + key=0000000000000000 + cipher=0000100000000000 + plain=329A8ED523D71AEC + encrypted=0000100000000000 + +Set 6, vector# 20: + key=0000000000000000 + cipher=0000080000000000 + plain=E7FCE22557D23C97 + encrypted=0000080000000000 + +Set 6, vector# 21: + key=0000000000000000 + cipher=0000040000000000 + plain=12A9F5817FF2D65D + encrypted=0000040000000000 + +Set 6, vector# 22: + key=0000000000000000 + cipher=0000020000000000 + plain=A484C3AD38DC9C19 + encrypted=0000020000000000 + +Set 6, vector# 23: + key=0000000000000000 + cipher=0000010000000000 + plain=FBE00A8A1EF8AD72 + encrypted=0000010000000000 + +Set 6, vector# 24: + key=0000000000000000 + cipher=0000008000000000 + plain=750D079407521363 + encrypted=0000008000000000 + +Set 6, vector# 25: + key=0000000000000000 + cipher=0000004000000000 + plain=64FEED9C724C2FAF + encrypted=0000004000000000 + +Set 6, vector# 26: + key=0000000000000000 + cipher=0000002000000000 + plain=F02B263B328E2B60 + encrypted=0000002000000000 + +Set 6, vector# 27: + key=0000000000000000 + cipher=0000001000000000 + plain=9D64555A9A10B852 + encrypted=0000001000000000 + +Set 6, vector# 28: + key=0000000000000000 + cipher=0000000800000000 + plain=D106FF0BED5255D7 + encrypted=0000000800000000 + +Set 6, vector# 29: + key=0000000000000000 + cipher=0000000400000000 + plain=E1652C6B138C64A5 + encrypted=0000000400000000 + +Set 6, vector# 30: + key=0000000000000000 + cipher=0000000200000000 + plain=E428581186EC8F46 + encrypted=0000000200000000 + +Set 6, vector# 31: + key=0000000000000000 + cipher=0000000100000000 + plain=AEB5F5EDE22D1A36 + encrypted=0000000100000000 + +Set 6, vector# 32: + key=0000000000000000 + cipher=0000000080000000 + plain=E943D7568AEC0C5C + encrypted=0000000080000000 + +Set 6, vector# 33: + key=0000000000000000 + cipher=0000000040000000 + plain=DF98C8276F54B04B + encrypted=0000000040000000 + +Set 6, vector# 34: + key=0000000000000000 + cipher=0000000020000000 + plain=B160E4680F6C696F + encrypted=0000000020000000 + +Set 6, vector# 35: + key=0000000000000000 + cipher=0000000010000000 + plain=FA0752B07D9C4AB8 + encrypted=0000000010000000 + +Set 6, vector# 36: + key=0000000000000000 + cipher=0000000008000000 + plain=CA3A2B036DBC8502 + encrypted=0000000008000000 + +Set 6, vector# 37: + key=0000000000000000 + cipher=0000000004000000 + plain=5E0905517BB59BCF + encrypted=0000000004000000 + +Set 6, vector# 38: + key=0000000000000000 + cipher=0000000002000000 + plain=814EEB3B91D90726 + encrypted=0000000002000000 + +Set 6, vector# 39: + key=0000000000000000 + cipher=0000000001000000 + plain=4D49DB1532919C9F + encrypted=0000000001000000 + +Set 6, vector# 40: + key=0000000000000000 + cipher=0000000000800000 + plain=25EB5FC3F8CF0621 + encrypted=0000000000800000 + +Set 6, vector# 41: + key=0000000000000000 + cipher=0000000000400000 + plain=AB6A20C0620D1C6F + encrypted=0000000000400000 + +Set 6, vector# 42: + key=0000000000000000 + cipher=0000000000200000 + plain=79E90DBC98F92CCA + encrypted=0000000000200000 + +Set 6, vector# 43: + key=0000000000000000 + cipher=0000000000100000 + plain=866ECEDD8072BB0E + encrypted=0000000000100000 + +Set 6, vector# 44: + key=0000000000000000 + cipher=0000000000080000 + plain=8B54536F2F3E64A8 + encrypted=0000000000080000 + +Set 6, vector# 45: + key=0000000000000000 + cipher=0000000000040000 + plain=EA51D3975595B86B + encrypted=0000000000040000 + +Set 6, vector# 46: + key=0000000000000000 + cipher=0000000000020000 + plain=CAFFC6AC4542DE31 + encrypted=0000000000020000 + +Set 6, vector# 47: + key=0000000000000000 + cipher=0000000000010000 + plain=8DD45A2DDF90796C + encrypted=0000000000010000 + +Set 6, vector# 48: + key=0000000000000000 + cipher=0000000000008000 + plain=1029D55E880EC2D0 + encrypted=0000000000008000 + +Set 6, vector# 49: + key=0000000000000000 + cipher=0000000000004000 + plain=5D86CB23639DBEA9 + encrypted=0000000000004000 + +Set 6, vector# 50: + key=0000000000000000 + cipher=0000000000002000 + plain=1D1CA853AE7C0C5F + encrypted=0000000000002000 + +Set 6, vector# 51: + key=0000000000000000 + cipher=0000000000001000 + plain=CE332329248F3228 + encrypted=0000000000001000 + +Set 6, vector# 52: + key=0000000000000000 + cipher=0000000000000800 + plain=8405D1ABE24FB942 + encrypted=0000000000000800 + +Set 6, vector# 53: + key=0000000000000000 + cipher=0000000000000400 + plain=E643D78090CA4207 + encrypted=0000000000000400 + +Set 6, vector# 54: + key=0000000000000000 + cipher=0000000000000200 + plain=48221B9937748A23 + encrypted=0000000000000200 + +Set 6, vector# 55: + key=0000000000000000 + cipher=0000000000000100 + plain=DD7C0BBD61FAFD54 + encrypted=0000000000000100 + +Set 6, vector# 56: + key=0000000000000000 + cipher=0000000000000080 + plain=2FBC291A570DB5C4 + encrypted=0000000000000080 + +Set 6, vector# 57: + key=0000000000000000 + cipher=0000000000000040 + plain=E07C30D7E4E26E12 + encrypted=0000000000000040 + +Set 6, vector# 58: + key=0000000000000000 + cipher=0000000000000020 + plain=0953E2258E8E90A1 + encrypted=0000000000000020 + +Set 6, vector# 59: + key=0000000000000000 + cipher=0000000000000010 + plain=5B711BC4CEEBF2EE + encrypted=0000000000000010 + +Set 6, vector# 60: + key=0000000000000000 + cipher=0000000000000008 + plain=CC083F1E6D9E85F6 + encrypted=0000000000000008 + +Set 6, vector# 61: + key=0000000000000000 + cipher=0000000000000004 + plain=D2FD8867D50D2DFE + encrypted=0000000000000004 + +Set 6, vector# 62: + key=0000000000000000 + cipher=0000000000000002 + plain=06E7EA22CE92708F + encrypted=0000000000000002 + +Set 6, vector# 63: + key=0000000000000000 + cipher=0000000000000001 + plain=166B40B44ABA4BD6 + encrypted=0000000000000001 + +Test vectors -- set 7 +===================== + +Set 7, vector# 0: + key=0000000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 7, vector# 1: + key=0101010101010101 + cipher=0101010101010101 + plain=994D4DC157B96C52 + encrypted=0101010101010101 + +Set 7, vector# 2: + key=0202020202020202 + cipher=0202020202020202 + plain=F09FA63CCDFA2BAD + encrypted=0202020202020202 + +Set 7, vector# 3: + key=0303030303030303 + cipher=0303030303030303 + plain=918C7AEFF893AD51 + encrypted=0303030303030303 + +Set 7, vector# 4: + key=0404040404040404 + cipher=0404040404040404 + plain=8991C0C48CF0AF81 + encrypted=0404040404040404 + +Set 7, vector# 5: + key=0505050505050505 + cipher=0505050505050505 + plain=25676954529031CB + encrypted=0505050505050505 + +Set 7, vector# 6: + key=0606060606060606 + cipher=0606060606060606 + plain=AAEF9DD11DE74546 + encrypted=0606060606060606 + +Set 7, vector# 7: + key=0707070707070707 + cipher=0707070707070707 + plain=8DFFA9A0B2F2548B + encrypted=0707070707070707 + +Set 7, vector# 8: + key=0808080808080808 + cipher=0808080808080808 + plain=D932847445DA4FD8 + encrypted=0808080808080808 + +Set 7, vector# 9: + key=0909090909090909 + cipher=0909090909090909 + plain=5110E59AAEC7335B + encrypted=0909090909090909 + +Set 7, vector# 10: + key=0A0A0A0A0A0A0A0A + cipher=0A0A0A0A0A0A0A0A + plain=CE681111BA3B7B11 + encrypted=0A0A0A0A0A0A0A0A + +Set 7, vector# 11: + key=0B0B0B0B0B0B0B0B + cipher=0B0B0B0B0B0B0B0B + plain=B5AD1C8C49965CCA + encrypted=0B0B0B0B0B0B0B0B + +Set 7, vector# 12: + key=0C0C0C0C0C0C0C0C + cipher=0C0C0C0C0C0C0C0C + plain=9F9958F3E2767EA7 + encrypted=0C0C0C0C0C0C0C0C + +Set 7, vector# 13: + key=0D0D0D0D0D0D0D0D + cipher=0D0D0D0D0D0D0D0D + plain=149D6492A0D809EE + encrypted=0D0D0D0D0D0D0D0D + +Set 7, vector# 14: + key=0E0E0E0E0E0E0E0E + cipher=0E0E0E0E0E0E0E0E + plain=F1EDC5B1F98F6313 + encrypted=0E0E0E0E0E0E0E0E + +Set 7, vector# 15: + key=0F0F0F0F0F0F0F0F + cipher=0F0F0F0F0F0F0F0F + plain=57057A2B85367BED + encrypted=0F0F0F0F0F0F0F0F + +Set 7, vector# 16: + key=1010101010101010 + cipher=1010101010101010 + plain=B376C874E6F987D0 + encrypted=1010101010101010 + +Set 7, vector# 17: + key=1111111111111111 + cipher=1111111111111111 + plain=237B2304C393D3AC + encrypted=1111111111111111 + +Set 7, vector# 18: + key=1212121212121212 + cipher=1212121212121212 + plain=A2F68A96740E3F2D + encrypted=1212121212121212 + +Set 7, vector# 19: + key=1313131313131313 + cipher=1313131313131313 + plain=1D779D8AB79E89EF + encrypted=1313131313131313 + +Set 7, vector# 20: + key=1414141414141414 + cipher=1414141414141414 + plain=1E59064FFEA191EF + encrypted=1414141414141414 + +Set 7, vector# 21: + key=1515151515151515 + cipher=1515151515151515 + plain=53B4DAE06761FFA1 + encrypted=1515151515151515 + +Set 7, vector# 22: + key=1616161616161616 + cipher=1616161616161616 + plain=550FB1A5507A49ED + encrypted=1616161616161616 + +Set 7, vector# 23: + key=1717171717171717 + cipher=1717171717171717 + plain=64FFAFFBB608B002 + encrypted=1717171717171717 + +Set 7, vector# 24: + key=1818181818181818 + cipher=1818181818181818 + plain=2EF928E663986E1C + encrypted=1818181818181818 + +Set 7, vector# 25: + key=1919191919191919 + cipher=1919191919191919 + plain=9C7EB95CB182233E + encrypted=1919191919191919 + +Set 7, vector# 26: + key=1A1A1A1A1A1A1A1A + cipher=1A1A1A1A1A1A1A1A + plain=B62CFEB46DD18577 + encrypted=1A1A1A1A1A1A1A1A + +Set 7, vector# 27: + key=1B1B1B1B1B1B1B1B + cipher=1B1B1B1B1B1B1B1B + plain=8F9F498CBA6DF908 + encrypted=1B1B1B1B1B1B1B1B + +Set 7, vector# 28: + key=1C1C1C1C1C1C1C1C + cipher=1C1C1C1C1C1C1C1C + plain=3017633FB8197C95 + encrypted=1C1C1C1C1C1C1C1C + +Set 7, vector# 29: + key=1D1D1D1D1D1D1D1D + cipher=1D1D1D1D1D1D1D1D + plain=079FA37ED80BA064 + encrypted=1D1D1D1D1D1D1D1D + +Set 7, vector# 30: + key=1E1E1E1E1E1E1E1E + cipher=1E1E1E1E1E1E1E1E + plain=C8040684A207D1B5 + encrypted=1E1E1E1E1E1E1E1E + +Set 7, vector# 31: + key=1F1F1F1F1F1F1F1F + cipher=1F1F1F1F1F1F1F1F + plain=61B145D97C491523 + encrypted=1F1F1F1F1F1F1F1F + +Set 7, vector# 32: + key=2020202020202020 + cipher=2020202020202020 + plain=9073C79790306F7D + encrypted=2020202020202020 + +Set 7, vector# 33: + key=2121212121212121 + cipher=2121212121212121 + plain=A80B2BFEBE10A4DA + encrypted=2121212121212121 + +Set 7, vector# 34: + key=2222222222222222 + cipher=2222222222222222 + plain=D105F93010B3B6F5 + encrypted=2222222222222222 + +Set 7, vector# 35: + key=2323232323232323 + cipher=2323232323232323 + plain=8F521B75483A0B94 + encrypted=2323232323232323 + +Set 7, vector# 36: + key=2424242424242424 + cipher=2424242424242424 + plain=C8F028A3EE60B289 + encrypted=2424242424242424 + +Set 7, vector# 37: + key=2525252525252525 + cipher=2525252525252525 + plain=DC8D45D7517FB58C + encrypted=2525252525252525 + +Set 7, vector# 38: + key=2626262626262626 + cipher=2626262626262626 + plain=A827E72CD184555E + encrypted=2626262626262626 + +Set 7, vector# 39: + key=2727272727272727 + cipher=2727272727272727 + plain=11A586CDC15F4B62 + encrypted=2727272727272727 + +Set 7, vector# 40: + key=2828282828282828 + cipher=2828282828282828 + plain=6066EF85FF1F8A46 + encrypted=2828282828282828 + +Set 7, vector# 41: + key=2929292929292929 + cipher=2929292929292929 + plain=64F017F35A3F50D1 + encrypted=2929292929292929 + +Set 7, vector# 42: + key=2A2A2A2A2A2A2A2A + cipher=2A2A2A2A2A2A2A2A + plain=19D9B4C305AB5AC4 + encrypted=2A2A2A2A2A2A2A2A + +Set 7, vector# 43: + key=2B2B2B2B2B2B2B2B + cipher=2B2B2B2B2B2B2B2B + plain=D13BE446B15397C0 + encrypted=2B2B2B2B2B2B2B2B + +Set 7, vector# 44: + key=2C2C2C2C2C2C2C2C + cipher=2C2C2C2C2C2C2C2C + plain=A1AAAC9B6D3DAB0A + encrypted=2C2C2C2C2C2C2C2C + +Set 7, vector# 45: + key=2D2D2D2D2D2D2D2D + cipher=2D2D2D2D2D2D2D2D + plain=60EF54CED063EEAC + encrypted=2D2D2D2D2D2D2D2D + +Set 7, vector# 46: + key=2E2E2E2E2E2E2E2E + cipher=2E2E2E2E2E2E2E2E + plain=659EF16E9EFFC16D + encrypted=2E2E2E2E2E2E2E2E + +Set 7, vector# 47: + key=2F2F2F2F2F2F2F2F + cipher=2F2F2F2F2F2F2F2F + plain=7F991C35E71F8D95 + encrypted=2F2F2F2F2F2F2F2F + +Set 7, vector# 48: + key=3030303030303030 + cipher=3030303030303030 + plain=335AC5E54AA4C5FA + encrypted=3030303030303030 + +Set 7, vector# 49: + key=3131313131313131 + cipher=3131313131313131 + plain=6D0A7ECC98A019A6 + encrypted=3131313131313131 + +Set 7, vector# 50: + key=3232323232323232 + cipher=3232323232323232 + plain=DB71F2F904CE4467 + encrypted=3232323232323232 + +Set 7, vector# 51: + key=3333333333333333 + cipher=3333333333333333 + plain=19B6A607F49D7EBF + encrypted=3333333333333333 + +Set 7, vector# 52: + key=3434343434343434 + cipher=3434343434343434 + plain=086DA2A46819B2EC + encrypted=3434343434343434 + +Set 7, vector# 53: + key=3535353535353535 + cipher=3535353535353535 + plain=BFBEB4BB6C8BA8D3 + encrypted=3535353535353535 + +Set 7, vector# 54: + key=3636363636363636 + cipher=3636363636363636 + plain=C0EA975A16621073 + encrypted=3636363636363636 + +Set 7, vector# 55: + key=3737373737373737 + cipher=3737373737373737 + plain=B53D58A1CAD79864 + encrypted=3737373737373737 + +Set 7, vector# 56: + key=3838383838383838 + cipher=3838383838383838 + plain=B7F074CB09D21987 + encrypted=3838383838383838 + +Set 7, vector# 57: + key=3939393939393939 + cipher=3939393939393939 + plain=E6F6D6E5DCCAFBAF + encrypted=3939393939393939 + +Set 7, vector# 58: + key=3A3A3A3A3A3A3A3A + cipher=3A3A3A3A3A3A3A3A + plain=428395367157DB18 + encrypted=3A3A3A3A3A3A3A3A + +Set 7, vector# 59: + key=3B3B3B3B3B3B3B3B + cipher=3B3B3B3B3B3B3B3B + plain=B71F8389C32F928E + encrypted=3B3B3B3B3B3B3B3B + +Set 7, vector# 60: + key=3C3C3C3C3C3C3C3C + cipher=3C3C3C3C3C3C3C3C + plain=290DDC00BAFBF6C0 + encrypted=3C3C3C3C3C3C3C3C + +Set 7, vector# 61: + key=3D3D3D3D3D3D3D3D + cipher=3D3D3D3D3D3D3D3D + plain=96F8EC19C7C00F69 + encrypted=3D3D3D3D3D3D3D3D + +Set 7, vector# 62: + key=3E3E3E3E3E3E3E3E + cipher=3E3E3E3E3E3E3E3E + plain=E1E2B92BEC7B6EDA + encrypted=3E3E3E3E3E3E3E3E + +Set 7, vector# 63: + key=3F3F3F3F3F3F3F3F + cipher=3F3F3F3F3F3F3F3F + plain=4FCD12FF1A0F4828 + encrypted=3F3F3F3F3F3F3F3F + +Set 7, vector# 64: + key=4040404040404040 + cipher=4040404040404040 + plain=FDA1AEAC4103BEC7 + encrypted=4040404040404040 + +Set 7, vector# 65: + key=4141414141414141 + cipher=4141414141414141 + plain=C023018BB50973DF + encrypted=4141414141414141 + +Set 7, vector# 66: + key=4242424242424242 + cipher=4242424242424242 + plain=2F17AB3C4EF47CED + encrypted=4242424242424242 + +Set 7, vector# 67: + key=4343434343434343 + cipher=4343434343434343 + plain=403E4F9726A43E2B + encrypted=4343434343434343 + +Set 7, vector# 68: + key=4444444444444444 + cipher=4444444444444444 + plain=300FB94913B09D9F + encrypted=4444444444444444 + +Set 7, vector# 69: + key=4545454545454545 + cipher=4545454545454545 + plain=CC3368EE3DD10A86 + encrypted=4545454545454545 + +Set 7, vector# 70: + key=4646464646464646 + cipher=4646464646464646 + plain=4047149B98541E84 + encrypted=4646464646464646 + +Set 7, vector# 71: + key=4747474747474747 + cipher=4747474747474747 + plain=6F50E18DA9045F21 + encrypted=4747474747474747 + +Set 7, vector# 72: + key=4848484848484848 + cipher=4848484848484848 + plain=8714D44CAC7D0D14 + encrypted=4848484848484848 + +Set 7, vector# 73: + key=4949494949494949 + cipher=4949494949494949 + plain=83829CFFC32CED9B + encrypted=4949494949494949 + +Set 7, vector# 74: + key=4A4A4A4A4A4A4A4A + cipher=4A4A4A4A4A4A4A4A + plain=16044259F6FEEF2A + encrypted=4A4A4A4A4A4A4A4A + +Set 7, vector# 75: + key=4B4B4B4B4B4B4B4B + cipher=4B4B4B4B4B4B4B4B + plain=DAEB0CCC9F9C02A7 + encrypted=4B4B4B4B4B4B4B4B + +Set 7, vector# 76: + key=4C4C4C4C4C4C4C4C + cipher=4C4C4C4C4C4C4C4C + plain=1F9442EA265CB749 + encrypted=4C4C4C4C4C4C4C4C + +Set 7, vector# 77: + key=4D4D4D4D4D4D4D4D + cipher=4D4D4D4D4D4D4D4D + plain=E4911A6B657A86BE + encrypted=4D4D4D4D4D4D4D4D + +Set 7, vector# 78: + key=4E4E4E4E4E4E4E4E + cipher=4E4E4E4E4E4E4E4E + plain=67464D8D5A2822CF + encrypted=4E4E4E4E4E4E4E4E + +Set 7, vector# 79: + key=4F4F4F4F4F4F4F4F + cipher=4F4F4F4F4F4F4F4F + plain=C1419997381C7DA3 + encrypted=4F4F4F4F4F4F4F4F + +Set 7, vector# 80: + key=5050505050505050 + cipher=5050505050505050 + plain=599A5CD62A06D027 + encrypted=5050505050505050 + +Set 7, vector# 81: + key=5151515151515151 + cipher=5151515151515151 + plain=88FD236C41B3BB51 + encrypted=5151515151515151 + +Set 7, vector# 82: + key=5252525252525252 + cipher=5252525252525252 + plain=41CC247560605B0B + encrypted=5252525252525252 + +Set 7, vector# 83: + key=5353535353535353 + cipher=5353535353535353 + plain=0F91178929EF4AA1 + encrypted=5353535353535353 + +Set 7, vector# 84: + key=5454545454545454 + cipher=5454545454545454 + plain=DC644E7A6FAA6446 + encrypted=5454545454545454 + +Set 7, vector# 85: + key=5555555555555555 + cipher=5555555555555555 + plain=27BDEAC7848061C2 + encrypted=5555555555555555 + +Set 7, vector# 86: + key=5656565656565656 + cipher=5656565656565656 + plain=51115EC4EBDDE14E + encrypted=5656565656565656 + +Set 7, vector# 87: + key=5757575757575757 + cipher=5757575757575757 + plain=A1731C55A4FB1B12 + encrypted=5757575757575757 + +Set 7, vector# 88: + key=5858585858585858 + cipher=5858585858585858 + plain=883D1CB568FA4AF6 + encrypted=5858585858585858 + +Set 7, vector# 89: + key=5959595959595959 + cipher=5959595959595959 + plain=EE21D431F34E89A5 + encrypted=5959595959595959 + +Set 7, vector# 90: + key=5A5A5A5A5A5A5A5A + cipher=5A5A5A5A5A5A5A5A + plain=8ED4FA5DF0B7BAA9 + encrypted=5A5A5A5A5A5A5A5A + +Set 7, vector# 91: + key=5B5B5B5B5B5B5B5B + cipher=5B5B5B5B5B5B5B5B + plain=8AA3372D4A4CF54D + encrypted=5B5B5B5B5B5B5B5B + +Set 7, vector# 92: + key=5C5C5C5C5C5C5C5C + cipher=5C5C5C5C5C5C5C5C + plain=6E9D4FF9DE08AAD1 + encrypted=5C5C5C5C5C5C5C5C + +Set 7, vector# 93: + key=5D5D5D5D5D5D5D5D + cipher=5D5D5D5D5D5D5D5D + plain=302DE41DFAE50C3E + encrypted=5D5D5D5D5D5D5D5D + +Set 7, vector# 94: + key=5E5E5E5E5E5E5E5E + cipher=5E5E5E5E5E5E5E5E + plain=15238624D6D73121 + encrypted=5E5E5E5E5E5E5E5E + +Set 7, vector# 95: + key=5F5F5F5F5F5F5F5F + cipher=5F5F5F5F5F5F5F5F + plain=960ADA6F022E3019 + encrypted=5F5F5F5F5F5F5F5F + +Set 7, vector# 96: + key=6060606060606060 + cipher=6060606060606060 + plain=CAF3211A707960D6 + encrypted=6060606060606060 + +Set 7, vector# 97: + key=6161616161616161 + cipher=6161616161616161 + plain=F7E458FA7081BE7D + encrypted=6161616161616161 + +Set 7, vector# 98: + key=6262626262626262 + cipher=6262626262626262 + plain=5FAB0E843C6E5BA9 + encrypted=6262626262626262 + +Set 7, vector# 99: + key=6363636363636363 + cipher=6363636363636363 + plain=7CF40025EB32B66F + encrypted=6363636363636363 + +Set 7, vector#100: + key=6464646464646464 + cipher=6464646464646464 + plain=1D3FF19CA208D2B2 + encrypted=6464646464646464 + +Set 7, vector#101: + key=6565656565656565 + cipher=6565656565656565 + plain=BDFBCA399EB932A0 + encrypted=6565656565656565 + +Set 7, vector#102: + key=6666666666666666 + cipher=6666666666666666 + plain=29CE12AFEA960B70 + encrypted=6666666666666666 + +Set 7, vector#103: + key=6767676767676767 + cipher=6767676767676767 + plain=82F8FB5140014B85 + encrypted=6767676767676767 + +Set 7, vector#104: + key=6868686868686868 + cipher=6868686868686868 + plain=7B3C0F4E34F9D1E9 + encrypted=6868686868686868 + +Set 7, vector#105: + key=6969696969696969 + cipher=6969696969696969 + plain=8F7B0EAD94E39A13 + encrypted=6969696969696969 + +Set 7, vector#106: + key=6A6A6A6A6A6A6A6A + cipher=6A6A6A6A6A6A6A6A + plain=6D3F31C7778EAD8A + encrypted=6A6A6A6A6A6A6A6A + +Set 7, vector#107: + key=6B6B6B6B6B6B6B6B + cipher=6B6B6B6B6B6B6B6B + plain=37B18B3906BAB3A8 + encrypted=6B6B6B6B6B6B6B6B + +Set 7, vector#108: + key=6C6C6C6C6C6C6C6C + cipher=6C6C6C6C6C6C6C6C + plain=12B4CB7A4CBE767B + encrypted=6C6C6C6C6C6C6C6C + +Set 7, vector#109: + key=6D6D6D6D6D6D6D6D + cipher=6D6D6D6D6D6D6D6D + plain=2420B66A1055C0E9 + encrypted=6D6D6D6D6D6D6D6D + +Set 7, vector#110: + key=6E6E6E6E6E6E6E6E + cipher=6E6E6E6E6E6E6E6E + plain=7E8E816788C6D588 + encrypted=6E6E6E6E6E6E6E6E + +Set 7, vector#111: + key=6F6F6F6F6F6F6F6F + cipher=6F6F6F6F6F6F6F6F + plain=C24105E33E184FF6 + encrypted=6F6F6F6F6F6F6F6F + +Set 7, vector#112: + key=7070707070707070 + cipher=7070707070707070 + plain=E4A18C1C24EBFBB9 + encrypted=7070707070707070 + +Set 7, vector#113: + key=7171717171717171 + cipher=7171717171717171 + plain=89BDBD3DE031EED6 + encrypted=7171717171717171 + +Set 7, vector#114: + key=7272727272727272 + cipher=7272727272727272 + plain=DBB840AF153D42DC + encrypted=7272727272727272 + +Set 7, vector#115: + key=7373737373737373 + cipher=7373737373737373 + plain=5198BB48B85D9073 + encrypted=7373737373737373 + +Set 7, vector#116: + key=7474747474747474 + cipher=7474747474747474 + plain=EF91577024209D96 + encrypted=7474747474747474 + +Set 7, vector#117: + key=7575757575757575 + cipher=7575757575757575 + plain=862D09602D08F4AF + encrypted=7575757575757575 + +Set 7, vector#118: + key=7676767676767676 + cipher=7676767676767676 + plain=DF8FDD3DA8BE381C + encrypted=7676767676767676 + +Set 7, vector#119: + key=7777777777777777 + cipher=7777777777777777 + plain=F4FA92CAF1EA65C8 + encrypted=7777777777777777 + +Set 7, vector#120: + key=7878787878787878 + cipher=7878787878787878 + plain=6C51D39A736AB06E + encrypted=7878787878787878 + +Set 7, vector#121: + key=7979797979797979 + cipher=7979797979797979 + plain=CA78FA0F8940CDB6 + encrypted=7979797979797979 + +Set 7, vector#122: + key=7A7A7A7A7A7A7A7A + cipher=7A7A7A7A7A7A7A7A + plain=E32531D4F4783A94 + encrypted=7A7A7A7A7A7A7A7A + +Set 7, vector#123: + key=7B7B7B7B7B7B7B7B + cipher=7B7B7B7B7B7B7B7B + plain=C983F15CAE1DEB86 + encrypted=7B7B7B7B7B7B7B7B + +Set 7, vector#124: + key=7C7C7C7C7C7C7C7C + cipher=7C7C7C7C7C7C7C7C + plain=F8895BF6515436F3 + encrypted=7C7C7C7C7C7C7C7C + +Set 7, vector#125: + key=7D7D7D7D7D7D7D7D + cipher=7D7D7D7D7D7D7D7D + plain=0B679E5008B5B69B + encrypted=7D7D7D7D7D7D7D7D + +Set 7, vector#126: + key=7E7E7E7E7E7E7E7E + cipher=7E7E7E7E7E7E7E7E + plain=909D89361F819432 + encrypted=7E7E7E7E7E7E7E7E + +Set 7, vector#127: + key=7F7F7F7F7F7F7F7F + cipher=7F7F7F7F7F7F7F7F + plain=C8FCD27001B95D10 + encrypted=7F7F7F7F7F7F7F7F + +Set 7, vector#128: + key=8080808080808080 + cipher=8080808080808080 + plain=37032D8FFE46A2EF + encrypted=8080808080808080 + +Set 7, vector#129: + key=8181818181818181 + cipher=8181818181818181 + plain=6F6276C9E07E6BCD + encrypted=8181818181818181 + +Set 7, vector#130: + key=8282828282828282 + cipher=8282828282828282 + plain=F49861AFF74A4964 + encrypted=8282828282828282 + +Set 7, vector#131: + key=8383838383838383 + cipher=8383838383838383 + plain=0776A409AEABC90C + encrypted=8383838383838383 + +Set 7, vector#132: + key=8484848484848484 + cipher=8484848484848484 + plain=367C0EA351E21479 + encrypted=8484848484848484 + +Set 7, vector#133: + key=8585858585858585 + cipher=8585858585858585 + plain=1CDACE2B0B87C56B + encrypted=8585858585858585 + +Set 7, vector#134: + key=8686868686868686 + cipher=8686868686868686 + plain=358705F076BF3249 + encrypted=8686868686868686 + +Set 7, vector#135: + key=8787878787878787 + cipher=8787878787878787 + plain=93AE2C658C954F91 + encrypted=8787878787878787 + +Set 7, vector#136: + key=8888888888888888 + cipher=8888888888888888 + plain=0B056D350E159A37 + encrypted=8888888888888888 + +Set 7, vector#137: + key=8989898989898989 + cipher=8989898989898989 + plain=207022C25741C7E3 + encrypted=8989898989898989 + +Set 7, vector#138: + key=8A8A8A8A8A8A8A8A + cipher=8A8A8A8A8A8A8A8A + plain=79D2F69FD2F70B50 + encrypted=8A8A8A8A8A8A8A8A + +Set 7, vector#139: + key=8B8B8B8B8B8B8B8B + cipher=8B8B8B8B8B8B8B8B + plain=106EA88FDBDF6269 + encrypted=8B8B8B8B8B8B8B8B + +Set 7, vector#140: + key=8C8C8C8C8C8C8C8C + cipher=8C8C8C8C8C8C8C8C + plain=AE6744B747A26F8C + encrypted=8C8C8C8C8C8C8C8C + +Set 7, vector#141: + key=8D8D8D8D8D8D8D8D + cipher=8D8D8D8D8D8D8D8D + plain=2447BF50EAC2BD23 + encrypted=8D8D8D8D8D8D8D8D + +Set 7, vector#142: + key=8E8E8E8E8E8E8E8E + cipher=8E8E8E8E8E8E8E8E + plain=764242C21FCE1129 + encrypted=8E8E8E8E8E8E8E8E + +Set 7, vector#143: + key=8F8F8F8F8F8F8F8F + cipher=8F8F8F8F8F8F8F8F + plain=1B5E73E3DB140446 + encrypted=8F8F8F8F8F8F8F8F + +Set 7, vector#144: + key=9090909090909090 + cipher=9090909090909090 + plain=3DBEFA1CC1E7B009 + encrypted=9090909090909090 + +Set 7, vector#145: + key=9191919191919191 + cipher=9191919191919191 + plain=81717E9877392A77 + encrypted=9191919191919191 + +Set 7, vector#146: + key=9292929292929292 + cipher=9292929292929292 + plain=DBDF4995EFAA3F16 + encrypted=9292929292929292 + +Set 7, vector#147: + key=9393939393939393 + cipher=9393939393939393 + plain=ED4B3485B3418984 + encrypted=9393939393939393 + +Set 7, vector#148: + key=9494949494949494 + cipher=9494949494949494 + plain=C84E74C6F9454C57 + encrypted=9494949494949494 + +Set 7, vector#149: + key=9595959595959595 + cipher=9595959595959595 + plain=92C0CE3888715275 + encrypted=9595959595959595 + +Set 7, vector#150: + key=9696969696969696 + cipher=9696969696969696 + plain=7084F1526B1C65EC + encrypted=9696969696969696 + +Set 7, vector#151: + key=9797979797979797 + cipher=9797979797979797 + plain=84C3F0B1CB062E16 + encrypted=9797979797979797 + +Set 7, vector#152: + key=9898989898989898 + cipher=9898989898989898 + plain=7D0704AEBFFEB47A + encrypted=9898989898989898 + +Set 7, vector#153: + key=9999999999999999 + cipher=9999999999999999 + plain=D631ED501569F48F + encrypted=9999999999999999 + +Set 7, vector#154: + key=9A9A9A9A9A9A9A9A + cipher=9A9A9A9A9A9A9A9A + plain=420435C66146CD5F + encrypted=9A9A9A9A9A9A9A9A + +Set 7, vector#155: + key=9B9B9B9B9B9B9B9B + cipher=9B9B9B9B9B9B9B9B + plain=E2C00E635DF72D4D + encrypted=9B9B9B9B9B9B9B9B + +Set 7, vector#156: + key=9C9C9C9C9C9C9C9C + cipher=9C9C9C9C9C9C9C9C + plain=830BFFDA14CD4990 + encrypted=9C9C9C9C9C9C9C9C + +Set 7, vector#157: + key=9D9D9D9D9D9D9D9D + cipher=9D9D9D9D9D9D9D9D + plain=A054F17BC391A456 + encrypted=9D9D9D9D9D9D9D9D + +Set 7, vector#158: + key=9E9E9E9E9E9E9E9E + cipher=9E9E9E9E9E9E9E9E + plain=081BA7058F7E4182 + encrypted=9E9E9E9E9E9E9E9E + +Set 7, vector#159: + key=9F9F9F9F9F9F9F9F + cipher=9F9F9F9F9F9F9F9F + plain=350CDEE58F869F29 + encrypted=9F9F9F9F9F9F9F9F + +Set 7, vector#160: + key=A0A0A0A0A0A0A0A0 + cipher=A0A0A0A0A0A0A0A0 + plain=69F52590FDD1CFE6 + encrypted=A0A0A0A0A0A0A0A0 + +Set 7, vector#161: + key=A1A1A1A1A1A1A1A1 + cipher=A1A1A1A1A1A1A1A1 + plain=EADC79DB2928CEDE + encrypted=A1A1A1A1A1A1A1A1 + +Set 7, vector#162: + key=A2A2A2A2A2A2A2A2 + cipher=A2A2A2A2A2A2A2A2 + plain=CFD21BE2051AF3C1 + encrypted=A2A2A2A2A2A2A2A2 + +Set 7, vector#163: + key=A3A3A3A3A3A3A3A3 + cipher=A3A3A3A3A3A3A3A3 + plain=9162B00621F7552E + encrypted=A3A3A3A3A3A3A3A3 + +Set 7, vector#164: + key=A4A4A4A4A4A4A4A4 + cipher=A4A4A4A4A4A4A4A4 + plain=755CC8D2B5B30AB2 + encrypted=A4A4A4A4A4A4A4A4 + +Set 7, vector#165: + key=A5A5A5A5A5A5A5A5 + cipher=A5A5A5A5A5A5A5A5 + plain=712B05A20F484556 + encrypted=A5A5A5A5A5A5A5A5 + +Set 7, vector#166: + key=A6A6A6A6A6A6A6A6 + cipher=A6A6A6A6A6A6A6A6 + plain=11DE2BCE0CB1765A + encrypted=A6A6A6A6A6A6A6A6 + +Set 7, vector#167: + key=A7A7A7A7A7A7A7A7 + cipher=A7A7A7A7A7A7A7A7 + plain=77C2E34A9705B509 + encrypted=A7A7A7A7A7A7A7A7 + +Set 7, vector#168: + key=A8A8A8A8A8A8A8A8 + cipher=A8A8A8A8A8A8A8A8 + plain=5E8CE3AA5B04E4ED + encrypted=A8A8A8A8A8A8A8A8 + +Set 7, vector#169: + key=A9A9A9A9A9A9A9A9 + cipher=A9A9A9A9A9A9A9A9 + plain=AEEEA13B14221EB1 + encrypted=A9A9A9A9A9A9A9A9 + +Set 7, vector#170: + key=AAAAAAAAAAAAAAAA + cipher=AAAAAAAAAAAAAAAA + plain=D84215387B7F9E3D + encrypted=AAAAAAAAAAAAAAAA + +Set 7, vector#171: + key=ABABABABABABABAB + cipher=ABABABABABABABAB + plain=239BB18590559BB9 + encrypted=ABABABABABABABAB + +Set 7, vector#172: + key=ACACACACACACACAC + cipher=ACACACACACACACAC + plain=F06EE876D610B55E + encrypted=ACACACACACACACAC + +Set 7, vector#173: + key=ADADADADADADADAD + cipher=ADADADADADADADAD + plain=BE33DB8A9F9FA4F4 + encrypted=ADADADADADADADAD + +Set 7, vector#174: + key=AEAEAEAEAEAEAEAE + cipher=AEAEAEAEAEAEAEAE + plain=7702DC93BE4C44AE + encrypted=AEAEAEAEAEAEAEAE + +Set 7, vector#175: + key=AFAFAFAFAFAFAFAF + cipher=AFAFAFAFAFAFAFAF + plain=A665A329D5F92FD8 + encrypted=AFAFAFAFAFAFAFAF + +Set 7, vector#176: + key=B0B0B0B0B0B0B0B0 + cipher=B0B0B0B0B0B0B0B0 + plain=3EBE6668C7E3825C + encrypted=B0B0B0B0B0B0B0B0 + +Set 7, vector#177: + key=B1B1B1B1B1B1B1B1 + cipher=B1B1B1B1B1B1B1B1 + plain=98B9B272A5D7DD30 + encrypted=B1B1B1B1B1B1B1B1 + +Set 7, vector#178: + key=B2B2B2B2B2B2B2B2 + cipher=B2B2B2B2B2B2B2B2 + plain=1B6EE5949A857941 + encrypted=B2B2B2B2B2B2B2B2 + +Set 7, vector#179: + key=B3B3B3B3B3B3B3B3 + cipher=B3B3B3B3B3B3B3B3 + plain=E06BBD15D9A348B6 + encrypted=B3B3B3B3B3B3B3B3 + +Set 7, vector#180: + key=B4B4B4B4B4B4B4B4 + cipher=B4B4B4B4B4B4B4B4 + plain=2514F3336063FD58 + encrypted=B4B4B4B4B4B4B4B4 + +Set 7, vector#181: + key=B5B5B5B5B5B5B5B5 + cipher=B5B5B5B5B5B5B5B5 + plain=E9FBBDA6090110D5 + encrypted=B5B5B5B5B5B5B5B5 + +Set 7, vector#182: + key=B6B6B6B6B6B6B6B6 + cipher=B6B6B6B6B6B6B6B6 + plain=7C7D63003CD31264 + encrypted=B6B6B6B6B6B6B6B6 + +Set 7, vector#183: + key=B7B7B7B7B7B7B7B7 + cipher=B7B7B7B7B7B7B7B7 + plain=78EB2BB35382F2EB + encrypted=B7B7B7B7B7B7B7B7 + +Set 7, vector#184: + key=B8B8B8B8B8B8B8B8 + cipher=B8B8B8B8B8B8B8B8 + plain=90AF1E7256FBA0DE + encrypted=B8B8B8B8B8B8B8B8 + +Set 7, vector#185: + key=B9B9B9B9B9B9B9B9 + cipher=B9B9B9B9B9B9B9B9 + plain=BFB8EB6467ABE17B + encrypted=B9B9B9B9B9B9B9B9 + +Set 7, vector#186: + key=BABABABABABABABA + cipher=BABABABABABABABA + plain=33CC9711C22EF579 + encrypted=BABABABABABABABA + +Set 7, vector#187: + key=BBBBBBBBBBBBBBBB + cipher=BBBBBBBBBBBBBBBB + plain=CFF046B6EC4F6260 + encrypted=BBBBBBBBBBBBBBBB + +Set 7, vector#188: + key=BCBCBCBCBCBCBCBC + cipher=BCBCBCBCBCBCBCBC + plain=BFC1B068D95BC1D4 + encrypted=BCBCBCBCBCBCBCBC + +Set 7, vector#189: + key=BDBDBDBDBDBDBDBD + cipher=BDBDBDBDBDBDBDBD + plain=D0E854C3B10B8312 + encrypted=BDBDBDBDBDBDBDBD + +Set 7, vector#190: + key=BEBEBEBEBEBEBEBE + cipher=BEBEBEBEBEBEBEBE + plain=3FDCFE744AF68C20 + encrypted=BEBEBEBEBEBEBEBE + +Set 7, vector#191: + key=BFBFBFBFBFBFBFBF + cipher=BFBFBFBFBFBFBFBF + plain=025E5153BEFC4138 + encrypted=BFBFBFBFBFBFBFBF + +Set 7, vector#192: + key=C0C0C0C0C0C0C0C0 + cipher=C0C0C0C0C0C0C0C0 + plain=B032ED00E5F0B7D7 + encrypted=C0C0C0C0C0C0C0C0 + +Set 7, vector#193: + key=C1C1C1C1C1C1C1C1 + cipher=C1C1C1C1C1C1C1C1 + plain=1E1D46D413849125 + encrypted=C1C1C1C1C1C1C1C1 + +Set 7, vector#194: + key=C2C2C2C2C2C2C2C2 + cipher=C2C2C2C2C2C2C2C2 + plain=690713E6383FF096 + encrypted=C2C2C2C2C2C2C2C2 + +Set 7, vector#195: + key=C3C3C3C3C3C3C3C3 + cipher=C3C3C3C3C3C3C3C3 + plain=D6F223FF4504093F + encrypted=C3C3C3C3C3C3C3C3 + +Set 7, vector#196: + key=C4C4C4C4C4C4C4C4 + cipher=C4C4C4C4C4C4C4C4 + plain=48E07C763CD06D71 + encrypted=C4C4C4C4C4C4C4C4 + +Set 7, vector#197: + key=C5C5C5C5C5C5C5C5 + cipher=C5C5C5C5C5C5C5C5 + plain=BD7C6AC98EA824E7 + encrypted=C5C5C5C5C5C5C5C5 + +Set 7, vector#198: + key=C6C6C6C6C6C6C6C6 + cipher=C6C6C6C6C6C6C6C6 + plain=1909291A23350450 + encrypted=C6C6C6C6C6C6C6C6 + +Set 7, vector#199: + key=C7C7C7C7C7C7C7C7 + cipher=C7C7C7C7C7C7C7C7 + plain=480F8B34F62DE678 + encrypted=C7C7C7C7C7C7C7C7 + +Set 7, vector#200: + key=C8C8C8C8C8C8C8C8 + cipher=C8C8C8C8C8C8C8C8 + plain=4AC2A75E3528679B + encrypted=C8C8C8C8C8C8C8C8 + +Set 7, vector#201: + key=C9C9C9C9C9C9C9C9 + cipher=C9C9C9C9C9C9C9C9 + plain=3F1568A5E99DEF8C + encrypted=C9C9C9C9C9C9C9C9 + +Set 7, vector#202: + key=CACACACACACACACA + cipher=CACACACACACACACA + plain=40414B449374572C + encrypted=CACACACACACACACA + +Set 7, vector#203: + key=CBCBCBCBCBCBCBCB + cipher=CBCBCBCBCBCBCBCB + plain=F7925D5B97E64D13 + encrypted=CBCBCBCBCBCBCBCB + +Set 7, vector#204: + key=CCCCCCCCCCCCCCCC + cipher=CCCCCCCCCCCCCCCC + plain=E64959F80B628140 + encrypted=CCCCCCCCCCCCCCCC + +Set 7, vector#205: + key=CDCDCDCDCDCDCDCD + cipher=CDCDCDCDCDCDCDCD + plain=248E0D06FB31BB98 + encrypted=CDCDCDCDCDCDCDCD + +Set 7, vector#206: + key=CECECECECECECECE + cipher=CECECECECECECECE + plain=92F58133675FE659 + encrypted=CECECECECECECECE + +Set 7, vector#207: + key=CFCFCFCFCFCFCFCF + cipher=CFCFCFCFCFCFCFCF + plain=CCA53A1AB55B3A05 + encrypted=CFCFCFCFCFCFCFCF + +Set 7, vector#208: + key=D0D0D0D0D0D0D0D0 + cipher=D0D0D0D0D0D0D0D0 + plain=8066E3CA18E0726A + encrypted=D0D0D0D0D0D0D0D0 + +Set 7, vector#209: + key=D1D1D1D1D1D1D1D1 + cipher=D1D1D1D1D1D1D1D1 + plain=9A610E9161003E92 + encrypted=D1D1D1D1D1D1D1D1 + +Set 7, vector#210: + key=D2D2D2D2D2D2D2D2 + cipher=D2D2D2D2D2D2D2D2 + plain=9F10AB312F9C1153 + encrypted=D2D2D2D2D2D2D2D2 + +Set 7, vector#211: + key=D3D3D3D3D3D3D3D3 + cipher=D3D3D3D3D3D3D3D3 + plain=5E55536492C254F5 + encrypted=D3D3D3D3D3D3D3D3 + +Set 7, vector#212: + key=D4D4D4D4D4D4D4D4 + cipher=D4D4D4D4D4D4D4D4 + plain=2EC41BB94EAC683F + encrypted=D4D4D4D4D4D4D4D4 + +Set 7, vector#213: + key=D5D5D5D5D5D5D5D5 + cipher=D5D5D5D5D5D5D5D5 + plain=E6264B3CFA54A53B + encrypted=D5D5D5D5D5D5D5D5 + +Set 7, vector#214: + key=D6D6D6D6D6D6D6D6 + cipher=D6D6D6D6D6D6D6D6 + plain=9B0FE80CA5C0AF2E + encrypted=D6D6D6D6D6D6D6D6 + +Set 7, vector#215: + key=D7D7D7D7D7D7D7D7 + cipher=D7D7D7D7D7D7D7D7 + plain=9F99107A00E075B9 + encrypted=D7D7D7D7D7D7D7D7 + +Set 7, vector#216: + key=D8D8D8D8D8D8D8D8 + cipher=D8D8D8D8D8D8D8D8 + plain=EE5A79323EA0B49D + encrypted=D8D8D8D8D8D8D8D8 + +Set 7, vector#217: + key=D9D9D9D9D9D9D9D9 + cipher=D9D9D9D9D9D9D9D9 + plain=57D818D32E7BAAA1 + encrypted=D9D9D9D9D9D9D9D9 + +Set 7, vector#218: + key=DADADADADADADADA + cipher=DADADADADADADADA + plain=2372BA28AE804A73 + encrypted=DADADADADADADADA + +Set 7, vector#219: + key=DBDBDBDBDBDBDBDB + cipher=DBDBDBDBDBDBDBDB + plain=370FD75C119F4D76 + encrypted=DBDBDBDBDBDBDBDB + +Set 7, vector#220: + key=DCDCDCDCDCDCDCDC + cipher=DCDCDCDCDCDCDCDC + plain=70ADE48AB7C5F46B + encrypted=DCDCDCDCDCDCDCDC + +Set 7, vector#221: + key=DDDDDDDDDDDDDDDD + cipher=DDDDDDDDDDDDDDDD + plain=2EFA06CFEF4C490A + encrypted=DDDDDDDDDDDDDDDD + +Set 7, vector#222: + key=DEDEDEDEDEDEDEDE + cipher=DEDEDEDEDEDEDEDE + plain=57F4D40141EF5B25 + encrypted=DEDEDEDEDEDEDEDE + +Set 7, vector#223: + key=DFDFDFDFDFDFDFDF + cipher=DFDFDFDFDFDFDFDF + plain=6F8C38686FCF9082 + encrypted=DFDFDFDFDFDFDFDF + +Set 7, vector#224: + key=E0E0E0E0E0E0E0E0 + cipher=E0E0E0E0E0E0E0E0 + plain=9E4EBA2683B6EADC + encrypted=E0E0E0E0E0E0E0E0 + +Set 7, vector#225: + key=E1E1E1E1E1E1E1E1 + cipher=E1E1E1E1E1E1E1E1 + plain=37FBF97B5DF82E4A + encrypted=E1E1E1E1E1E1E1E1 + +Set 7, vector#226: + key=E2E2E2E2E2E2E2E2 + cipher=E2E2E2E2E2E2E2E2 + plain=F8605C8127F45F9B + encrypted=E2E2E2E2E2E2E2E2 + +Set 7, vector#227: + key=E3E3E3E3E3E3E3E3 + cipher=E3E3E3E3E3E3E3E3 + plain=CFE89CC047E6836A + encrypted=E3E3E3E3E3E3E3E3 + +Set 7, vector#228: + key=E4E4E4E4E4E4E4E4 + cipher=E4E4E4E4E4E4E4E4 + plain=7060B673459206F7 + encrypted=E4E4E4E4E4E4E4E4 + +Set 7, vector#229: + key=E5E5E5E5E5E5E5E5 + cipher=E5E5E5E5E5E5E5E5 + plain=49D3014B922E7A88 + encrypted=E5E5E5E5E5E5E5E5 + +Set 7, vector#230: + key=E6E6E6E6E6E6E6E6 + cipher=E6E6E6E6E6E6E6E6 + plain=638146A34E7DDCC1 + encrypted=E6E6E6E6E6E6E6E6 + +Set 7, vector#231: + key=E7E7E7E7E7E7E7E7 + cipher=E7E7E7E7E7E7E7E7 + plain=D106D7199C6791E3 + encrypted=E7E7E7E7E7E7E7E7 + +Set 7, vector#232: + key=E8E8E8E8E8E8E8E8 + cipher=E8E8E8E8E8E8E8E8 + plain=9B00500449F74FFD + encrypted=E8E8E8E8E8E8E8E8 + +Set 7, vector#233: + key=E9E9E9E9E9E9E9E9 + cipher=E9E9E9E9E9E9E9E9 + plain=AAF04E5AAF85B612 + encrypted=E9E9E9E9E9E9E9E9 + +Set 7, vector#234: + key=EAEAEAEAEAEAEAEA + cipher=EAEAEAEAEAEAEAEA + plain=AC4B251F989E005E + encrypted=EAEAEAEAEAEAEAEA + +Set 7, vector#235: + key=EBEBEBEBEBEBEBEB + cipher=EBEBEBEBEBEBEBEB + plain=E1A6F9B0015E6E10 + encrypted=EBEBEBEBEBEBEBEB + +Set 7, vector#236: + key=ECECECECECECECEC + cipher=ECECECECECECECEC + plain=E288627548617610 + encrypted=ECECECECECECECEC + +Set 7, vector#237: + key=EDEDEDEDEDEDEDED + cipher=EDEDEDEDEDEDEDED + plain=5D0975698BF1C0D2 + encrypted=EDEDEDEDEDEDEDED + +Set 7, vector#238: + key=EEEEEEEEEEEEEEEE + cipher=EEEEEEEEEEEEEEEE + plain=DC84DCFB3C6C2C53 + encrypted=EEEEEEEEEEEEEEEE + +Set 7, vector#239: + key=EFEFEFEFEFEFEFEF + cipher=EFEFEFEFEFEFEFEF + plain=4C89378B1906782F + encrypted=EFEFEFEFEFEFEFEF + +Set 7, vector#240: + key=F0F0F0F0F0F0F0F0 + cipher=F0F0F0F0F0F0F0F0 + plain=A8FA85D47AC98412 + encrypted=F0F0F0F0F0F0F0F0 + +Set 7, vector#241: + key=F1F1F1F1F1F1F1F1 + cipher=F1F1F1F1F1F1F1F1 + plain=0E123A4E06709CEC + encrypted=F1F1F1F1F1F1F1F1 + +Set 7, vector#242: + key=F2F2F2F2F2F2F2F2 + cipher=F2F2F2F2F2F2F2F2 + plain=EB629B6D5F27F611 + encrypted=F2F2F2F2F2F2F2F2 + +Set 7, vector#243: + key=F3F3F3F3F3F3F3F3 + cipher=F3F3F3F3F3F3F3F3 + plain=6066A70C1D898158 + encrypted=F3F3F3F3F3F3F3F3 + +Set 7, vector#244: + key=F4F4F4F4F4F4F4F4 + cipher=F4F4F4F4F4F4F4F4 + plain=4A52E373B669A335 + encrypted=F4F4F4F4F4F4F4F4 + +Set 7, vector#245: + key=F5F5F5F5F5F5F5F5 + cipher=F5F5F5F5F5F5F5F5 + plain=3197EEEE45C484EE + encrypted=F5F5F5F5F5F5F5F5 + +Set 7, vector#246: + key=F6F6F6F6F6F6F6F6 + cipher=F6F6F6F6F6F6F6F6 + plain=AEEF1A655138CCA4 + encrypted=F6F6F6F6F6F6F6F6 + +Set 7, vector#247: + key=F7F7F7F7F7F7F7F7 + cipher=F7F7F7F7F7F7F7F7 + plain=26CD7B8BBA25B027 + encrypted=F7F7F7F7F7F7F7F7 + +Set 7, vector#248: + key=F8F8F8F8F8F8F8F8 + cipher=F8F8F8F8F8F8F8F8 + plain=7200565F4D0DAB74 + encrypted=F8F8F8F8F8F8F8F8 + +Set 7, vector#249: + key=F9F9F9F9F9F9F9F9 + cipher=F9F9F9F9F9F9F9F9 + plain=5510622EE218BAB9 + encrypted=F9F9F9F9F9F9F9F9 + +Set 7, vector#250: + key=FAFAFAFAFAFAFAFA + cipher=FAFAFAFAFAFAFAFA + plain=DA9896ABAD6FCE34 + encrypted=FAFAFAFAFAFAFAFA + +Set 7, vector#251: + key=FBFBFBFBFBFBFBFB + cipher=FBFBFBFBFBFBFBFB + plain=766E3F3B730F507E + encrypted=FBFBFBFBFBFBFBFB + +Set 7, vector#252: + key=FCFCFCFCFCFCFCFC + cipher=FCFCFCFCFCFCFCFC + plain=6E738510076C52AE + encrypted=FCFCFCFCFCFCFCFC + +Set 7, vector#253: + key=FDFDFDFDFDFDFDFD + cipher=FDFDFDFDFDFDFDFD + plain=0F6059C33205D452 + encrypted=FDFDFDFDFDFDFDFD + +Set 7, vector#254: + key=FEFEFEFEFEFEFEFE + cipher=FEFEFEFEFEFEFEFE + plain=66B2B23EA84693AD + encrypted=FEFEFEFEFEFEFEFE + +Set 7, vector#255: + key=FFFFFFFFFFFFFFFF + cipher=FFFFFFFFFFFFFFFF + plain=7359B2163E4EDC58 + encrypted=FFFFFFFFFFFFFFFF + +Test vectors -- set 8 +===================== + +Set 8, vector# 0: + key=0001020304050607 + cipher=0011223344556677 + plain=41AD068548809D02 + encrypted=0011223344556677 + +Set 8, vector# 1: + key=2BD6459F82C5B300 + cipher=EA024714AD5C4D84 + plain=B10F843097A0F932 + encrypted=EA024714AD5C4D84 + + + +End of test vectors diff --git a/testvectors/Triple-Des-2-Key-128-64.unverified.test-vectors b/testvectors/Triple-Des-2-Key-128-64.unverified.test-vectors new file mode 100644 index 0000000..8ea5703 --- /dev/null +++ b/testvectors/Triple-Des-2-Key-128-64.unverified.test-vectors @@ -0,0 +1,6336 @@ +******************************************************************************** +*Project NESSIE - New European Schemes for Signature, Integrity, and Encryption* +******************************************************************************** + +Primitive Name: Triple-Des (2-Key) +================================== +Key size: 128 bits +Block size: 64 bits + +Test vectors -- set 1 +===================== + +Set 1, vector# 0: + key=80000000000000000000000000000000 + plain=0000000000000000 + cipher=FAFD5084374FCE34 + decrypted=0000000000000000 + Iterated 100 times=01EA5B8A6C2FB1C0 + Iterated 1000 times=ACEE9B10C53F4754 + +Set 1, vector# 1: + key=40000000000000000000000000000000 + plain=0000000000000000 + cipher=60CC37B7B537A1DC + decrypted=0000000000000000 + Iterated 100 times=2F152081D6E98061 + Iterated 1000 times=129F660736F1DA96 + +Set 1, vector# 2: + key=20000000000000000000000000000000 + plain=0000000000000000 + cipher=BE3E7304FE92C2BC + decrypted=0000000000000000 + Iterated 100 times=9BD7D49B9B986043 + Iterated 1000 times=98C611CDCB072DBB + +Set 1, vector# 3: + key=10000000000000000000000000000000 + plain=0000000000000000 + cipher=49F9E7A60C406DBF + decrypted=0000000000000000 + Iterated 100 times=33C64026FE212FCB + Iterated 1000 times=413DDD57566F4733 + +Set 1, vector# 4: + key=08000000000000000000000000000000 + plain=0000000000000000 + cipher=794FE1DC2F80CD38 + decrypted=0000000000000000 + Iterated 100 times=3B6FA1898E01DCCB + Iterated 1000 times=FCE723D83DC0364D + +Set 1, vector# 5: + key=04000000000000000000000000000000 + plain=0000000000000000 + cipher=15052BCDF21A1F1E + decrypted=0000000000000000 + Iterated 100 times=02CE8628930FB073 + Iterated 1000 times=FA91065ACF6CCB24 + +Set 1, vector# 6: + key=02000000000000000000000000000000 + plain=0000000000000000 + cipher=3A830D0BDA044EBB + decrypted=0000000000000000 + Iterated 100 times=D5BF484ED18728EF + Iterated 1000 times=C98D06E7BEFE5C95 + +Set 1, vector# 7: + key=01000000000000000000000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 8: + key=00800000000000000000000000000000 + plain=0000000000000000 + cipher=0C1971C6874548E2 + decrypted=0000000000000000 + Iterated 100 times=D479B16D046ADC8F + Iterated 1000 times=5859463C78ABF07D + +Set 1, vector# 9: + key=00400000000000000000000000000000 + plain=0000000000000000 + cipher=52C2F3FF100668BC + decrypted=0000000000000000 + Iterated 100 times=2138A5847F49FDBB + Iterated 1000 times=04FE71E89FEAC6E1 + +Set 1, vector# 10: + key=00200000000000000000000000000000 + plain=0000000000000000 + cipher=7B1C09D39C205B7B + decrypted=0000000000000000 + Iterated 100 times=832CDC1FB0B291CB + Iterated 1000 times=9967B837FEA2B03C + +Set 1, vector# 11: + key=00100000000000000000000000000000 + plain=0000000000000000 + cipher=7C940466050ADBAE + decrypted=0000000000000000 + Iterated 100 times=602619729AA67AF4 + Iterated 1000 times=A696F0E4ED298880 + +Set 1, vector# 12: + key=00080000000000000000000000000000 + plain=0000000000000000 + cipher=7B6456C45945CCA3 + decrypted=0000000000000000 + Iterated 100 times=7FA20C8C7AEF1B1D + Iterated 1000 times=07ACEB03F3357261 + +Set 1, vector# 13: + key=00040000000000000000000000000000 + plain=0000000000000000 + cipher=076B2C8A7ADDFE68 + decrypted=0000000000000000 + Iterated 100 times=2CF0BE6BD04EE4B8 + Iterated 1000 times=3DE31F8519AF8A84 + +Set 1, vector# 14: + key=00020000000000000000000000000000 + plain=0000000000000000 + cipher=1885BEE3774FF50B + decrypted=0000000000000000 + Iterated 100 times=BE729D5B7E2AC40E + Iterated 1000 times=77AEC5AB4C05A0AB + +Set 1, vector# 15: + key=00010000000000000000000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 16: + key=00008000000000000000000000000000 + plain=0000000000000000 + cipher=A286DE6C7ABCE306 + decrypted=0000000000000000 + Iterated 100 times=4889AA865C770FDC + Iterated 1000 times=68137113F5BE3D6F + +Set 1, vector# 17: + key=00004000000000000000000000000000 + plain=0000000000000000 + cipher=A19DB1122136903C + decrypted=0000000000000000 + Iterated 100 times=BFFDDAB4A331FDEE + Iterated 1000 times=CF8B41E06FD28143 + +Set 1, vector# 18: + key=00002000000000000000000000000000 + plain=0000000000000000 + cipher=A77F2F3085DC2D16 + decrypted=0000000000000000 + Iterated 100 times=FCD6EEC7DE6003ED + Iterated 1000 times=4F8922C0FA4672CC + +Set 1, vector# 19: + key=00001000000000000000000000000000 + plain=0000000000000000 + cipher=B39C1E6C3C65E45A + decrypted=0000000000000000 + Iterated 100 times=87F93A3DE7C4EFA4 + Iterated 1000 times=EF43DE92D1E82EFB + +Set 1, vector# 20: + key=00000800000000000000000000000000 + plain=0000000000000000 + cipher=E90963FB7F2B1193 + decrypted=0000000000000000 + Iterated 100 times=6BD994A0EB50FB51 + Iterated 1000 times=A453277CE14174DB + +Set 1, vector# 21: + key=00000400000000000000000000000000 + plain=0000000000000000 + cipher=743C3DBD464ABE66 + decrypted=0000000000000000 + Iterated 100 times=65FEE6AA8BE180AF + Iterated 1000 times=30EFFD24C7E2D8D4 + +Set 1, vector# 22: + key=00000200000000000000000000000000 + plain=0000000000000000 + cipher=E954174CC0C75C5D + decrypted=0000000000000000 + Iterated 100 times=8830419C56935C15 + Iterated 1000 times=86C4326F69A69929 + +Set 1, vector# 23: + key=00000100000000000000000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 24: + key=00000080000000000000000000000000 + plain=0000000000000000 + cipher=E788FF69D915395A + decrypted=0000000000000000 + Iterated 100 times=B0EDDE3DD6E19963 + Iterated 1000 times=B6607D5382AB20BF + +Set 1, vector# 25: + key=00000040000000000000000000000000 + plain=0000000000000000 + cipher=DA518384A7F98F8F + decrypted=0000000000000000 + Iterated 100 times=57BFF3393C8E9C06 + Iterated 1000 times=9AD867D6B033B317 + +Set 1, vector# 26: + key=00000020000000000000000000000000 + plain=0000000000000000 + cipher=71986C565B7A4697 + decrypted=0000000000000000 + Iterated 100 times=2A35E09676B58B48 + Iterated 1000 times=7912D02193F9E7EC + +Set 1, vector# 27: + key=00000010000000000000000000000000 + plain=0000000000000000 + cipher=5A015BF03B8FF6D2 + decrypted=0000000000000000 + Iterated 100 times=3CB5DAAD76BB3545 + Iterated 1000 times=D42A1246CBE6AB91 + +Set 1, vector# 28: + key=00000008000000000000000000000000 + plain=0000000000000000 + cipher=DD311EB7A3202393 + decrypted=0000000000000000 + Iterated 100 times=ED41BC06A4FE935A + Iterated 1000 times=9C117DD8EEBCF7EC + +Set 1, vector# 29: + key=00000004000000000000000000000000 + plain=0000000000000000 + cipher=0DC6A2C01EADE617 + decrypted=0000000000000000 + Iterated 100 times=40C2859623BF2337 + Iterated 1000 times=72DD65ED2C71929C + +Set 1, vector# 30: + key=00000002000000000000000000000000 + plain=0000000000000000 + cipher=D1EAE0F689C433DE + decrypted=0000000000000000 + Iterated 100 times=6A3161E70D87C885 + Iterated 1000 times=A8AA7D9536D0EA30 + +Set 1, vector# 31: + key=00000001000000000000000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 32: + key=00000000800000000000000000000000 + plain=0000000000000000 + cipher=833803AFBCE49177 + decrypted=0000000000000000 + Iterated 100 times=802F0644409813D5 + Iterated 1000 times=BA44110DF56F031E + +Set 1, vector# 33: + key=00000000400000000000000000000000 + plain=0000000000000000 + cipher=94EBB684C7C41EF5 + decrypted=0000000000000000 + Iterated 100 times=1F7E42B71E9875E8 + Iterated 1000 times=146C1205B54CBB24 + +Set 1, vector# 34: + key=00000000200000000000000000000000 + plain=0000000000000000 + cipher=D42EF0A1B9BC4392 + decrypted=0000000000000000 + Iterated 100 times=802C198469E19439 + Iterated 1000 times=A55A7BCFBDBF9431 + +Set 1, vector# 35: + key=00000000100000000000000000000000 + plain=0000000000000000 + cipher=9E1D42F406FE0387 + decrypted=0000000000000000 + Iterated 100 times=CE4816E1B753A79B + Iterated 1000 times=F6F5912FECDD574C + +Set 1, vector# 36: + key=00000000080000000000000000000000 + plain=0000000000000000 + cipher=8DB9EE4A1773C8FE + decrypted=0000000000000000 + Iterated 100 times=0524483409FAF2D4 + Iterated 1000 times=C55D89F2A3FD1B84 + +Set 1, vector# 37: + key=00000000040000000000000000000000 + plain=0000000000000000 + cipher=8195C0ED7D066F6B + decrypted=0000000000000000 + Iterated 100 times=C8947377272F4371 + Iterated 1000 times=398DD17D9DDDA56C + +Set 1, vector# 38: + key=00000000020000000000000000000000 + plain=0000000000000000 + cipher=FB3B39E43C76D53D + decrypted=0000000000000000 + Iterated 100 times=9476D4AE03375E33 + Iterated 1000 times=5793AFE07F6A7A6B + +Set 1, vector# 39: + key=00000000010000000000000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 40: + key=00000000008000000000000000000000 + plain=0000000000000000 + cipher=E21113D2C6870FBE + decrypted=0000000000000000 + Iterated 100 times=9D82E81F41739F9B + Iterated 1000 times=C641EABC15F7D618 + +Set 1, vector# 41: + key=00000000004000000000000000000000 + plain=0000000000000000 + cipher=D1CF3B57F6294D0E + decrypted=0000000000000000 + Iterated 100 times=38A45E841F12D323 + Iterated 1000 times=19C0C308012C0E2F + +Set 1, vector# 42: + key=00000000002000000000000000000000 + plain=0000000000000000 + cipher=8990AAB2362CCE0F + decrypted=0000000000000000 + Iterated 100 times=00B019D498B87DC5 + Iterated 1000 times=4D4A7C21E1388E37 + +Set 1, vector# 43: + key=00000000001000000000000000000000 + plain=0000000000000000 + cipher=198774D2FC7A641B + decrypted=0000000000000000 + Iterated 100 times=CFC1C2C48128CFD9 + Iterated 1000 times=DD01CF29D04648E5 + +Set 1, vector# 44: + key=00000000000800000000000000000000 + plain=0000000000000000 + cipher=F3AC68FDC060AE6E + decrypted=0000000000000000 + Iterated 100 times=24DA8026AC2DCABF + Iterated 1000 times=43C24BA6BBCD0657 + +Set 1, vector# 45: + key=00000000000400000000000000000000 + plain=0000000000000000 + cipher=A854715C1EE8B311 + decrypted=0000000000000000 + Iterated 100 times=FC0AE107CED5130E + Iterated 1000 times=216117747649DE64 + +Set 1, vector# 46: + key=00000000000200000000000000000000 + plain=0000000000000000 + cipher=D140934E0D5171DB + decrypted=0000000000000000 + Iterated 100 times=B67F6EB4FCFD7617 + Iterated 1000 times=91EBC170B83AB8F0 + +Set 1, vector# 47: + key=00000000000100000000000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 48: + key=00000000000080000000000000000000 + plain=0000000000000000 + cipher=F3B2D1D19B852861 + decrypted=0000000000000000 + Iterated 100 times=5C755C73488422C5 + Iterated 1000 times=A55A3D891AFD5989 + +Set 1, vector# 49: + key=00000000000040000000000000000000 + plain=0000000000000000 + cipher=EE8DC918A74545F1 + decrypted=0000000000000000 + Iterated 100 times=03FE42DF7DC68B18 + Iterated 1000 times=1DC9B32625647CDD + +Set 1, vector# 50: + key=00000000000020000000000000000000 + plain=0000000000000000 + cipher=99B2175DCE3D348C + decrypted=0000000000000000 + Iterated 100 times=0F722DA7E1E626EC + Iterated 1000 times=CE070926D5A01986 + +Set 1, vector# 51: + key=00000000000010000000000000000000 + plain=0000000000000000 + cipher=73AE9A4A6376637E + decrypted=0000000000000000 + Iterated 100 times=122CF3179D24D0D0 + Iterated 1000 times=C3F2F4A92E344D3D + +Set 1, vector# 52: + key=00000000000008000000000000000000 + plain=0000000000000000 + cipher=C55C05072C072CBE + decrypted=0000000000000000 + Iterated 100 times=34851555778A6979 + Iterated 1000 times=A4D500FA3AA1877E + +Set 1, vector# 53: + key=00000000000004000000000000000000 + plain=0000000000000000 + cipher=FB4808530D49FFD3 + decrypted=0000000000000000 + Iterated 100 times=DC996B780F4514B2 + Iterated 1000 times=626CFD24994DBE15 + +Set 1, vector# 54: + key=00000000000002000000000000000000 + plain=0000000000000000 + cipher=3C1B66BD5170F2A1 + decrypted=0000000000000000 + Iterated 100 times=F8352D6E06F2952E + Iterated 1000 times=A4656FFECEEA7921 + +Set 1, vector# 55: + key=00000000000001000000000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 56: + key=00000000000000800000000000000000 + plain=0000000000000000 + cipher=A38DC58A5AEF3CAA + decrypted=0000000000000000 + Iterated 100 times=C40D4177B8337AA7 + Iterated 1000 times=D79320469077CF40 + +Set 1, vector# 57: + key=00000000000000400000000000000000 + plain=0000000000000000 + cipher=4F29AB3449FBA969 + decrypted=0000000000000000 + Iterated 100 times=FDE2B216EA579507 + Iterated 1000 times=B60F404DB6B1913D + +Set 1, vector# 58: + key=00000000000000200000000000000000 + plain=0000000000000000 + cipher=F75ACF1692C115D2 + decrypted=0000000000000000 + Iterated 100 times=3B2F6E5C4ED87C8C + Iterated 1000 times=8B2694877BE4070F + +Set 1, vector# 59: + key=00000000000000100000000000000000 + plain=0000000000000000 + cipher=5A448A95522AF894 + decrypted=0000000000000000 + Iterated 100 times=C1963EE1136FAD1B + Iterated 1000 times=1F324B394763B077 + +Set 1, vector# 60: + key=00000000000000080000000000000000 + plain=0000000000000000 + cipher=FEEA19D1125CEB53 + decrypted=0000000000000000 + Iterated 100 times=3E149AFDC5BD6610 + Iterated 1000 times=F1AE30EEECB987DF + +Set 1, vector# 61: + key=00000000000000040000000000000000 + plain=0000000000000000 + cipher=7A7907DEB712DD81 + decrypted=0000000000000000 + Iterated 100 times=625BD23C65391DFC + Iterated 1000 times=CB371D3378320BEE + +Set 1, vector# 62: + key=00000000000000020000000000000000 + plain=0000000000000000 + cipher=41792F90E798B8E2 + decrypted=0000000000000000 + Iterated 100 times=CA78DA921B604F96 + Iterated 1000 times=77EB8FD4D9F6BC09 + +Set 1, vector# 63: + key=00000000000000010000000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 64: + key=00000000000000008000000000000000 + plain=0000000000000000 + cipher=C2A4DD96151453C2 + decrypted=0000000000000000 + Iterated 100 times=4BF6EDF0EEF3F8D5 + Iterated 1000 times=6C4E8DA34D7D9E82 + +Set 1, vector# 65: + key=00000000000000004000000000000000 + plain=0000000000000000 + cipher=5E87809F6B8A7ED5 + decrypted=0000000000000000 + Iterated 100 times=570D2932193BE196 + Iterated 1000 times=EDCC5FF4673AC398 + +Set 1, vector# 66: + key=00000000000000002000000000000000 + plain=0000000000000000 + cipher=81B838A1E9CD59B3 + decrypted=0000000000000000 + Iterated 100 times=843153B4A6D111BD + Iterated 1000 times=79F4BF6A316445E5 + +Set 1, vector# 67: + key=00000000000000001000000000000000 + plain=0000000000000000 + cipher=DED028F0C1F5A774 + decrypted=0000000000000000 + Iterated 100 times=75F004AED4890939 + Iterated 1000 times=745E80444134C667 + +Set 1, vector# 68: + key=00000000000000000800000000000000 + plain=0000000000000000 + cipher=48C983815809FC87 + decrypted=0000000000000000 + Iterated 100 times=2827B9A8D8A8029C + Iterated 1000 times=498A17FFC1413B26 + +Set 1, vector# 69: + key=00000000000000000400000000000000 + plain=0000000000000000 + cipher=C1A75845F22BE951 + decrypted=0000000000000000 + Iterated 100 times=F95C649AEC4E7E7D + Iterated 1000 times=3AE5B1210D363CE9 + +Set 1, vector# 70: + key=00000000000000000200000000000000 + plain=0000000000000000 + cipher=C60F823E8E994489 + decrypted=0000000000000000 + Iterated 100 times=8847DAE18A517CA3 + Iterated 1000 times=66D9D886306F9F37 + +Set 1, vector# 71: + key=00000000000000000100000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 72: + key=00000000000000000080000000000000 + plain=0000000000000000 + cipher=709F8FCB044172FE + decrypted=0000000000000000 + Iterated 100 times=E3933DDC4ED3C500 + Iterated 1000 times=F9ADC2B3F1961C0C + +Set 1, vector# 73: + key=00000000000000000040000000000000 + plain=0000000000000000 + cipher=26BC2DE634BFFFD4 + decrypted=0000000000000000 + Iterated 100 times=CCF7F563E14DA1B3 + Iterated 1000 times=0951F3B78ED7E6E7 + +Set 1, vector# 74: + key=00000000000000000020000000000000 + plain=0000000000000000 + cipher=D98126355C2E03E6 + decrypted=0000000000000000 + Iterated 100 times=A63311B7238C5A1C + Iterated 1000 times=A440E792E9503080 + +Set 1, vector# 75: + key=00000000000000000010000000000000 + plain=0000000000000000 + cipher=49AAA91B49345137 + decrypted=0000000000000000 + Iterated 100 times=4A4C9748608AF789 + Iterated 1000 times=09E4439FBE27170C + +Set 1, vector# 76: + key=00000000000000000008000000000000 + plain=0000000000000000 + cipher=A59854DCE009126D + decrypted=0000000000000000 + Iterated 100 times=A3FC9F823025A2DC + Iterated 1000 times=8E9DBB095FED1DDA + +Set 1, vector# 77: + key=00000000000000000004000000000000 + plain=0000000000000000 + cipher=21C46B9FDE5CD36B + decrypted=0000000000000000 + Iterated 100 times=7B640A700AAD8FBA + Iterated 1000 times=0418A685C1BB9486 + +Set 1, vector# 78: + key=00000000000000000002000000000000 + plain=0000000000000000 + cipher=DEB4AE36E07BC053 + decrypted=0000000000000000 + Iterated 100 times=170E4F7E300F116C + Iterated 1000 times=4BF5AA8CB01B405B + +Set 1, vector# 79: + key=00000000000000000001000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 80: + key=00000000000000000000800000000000 + plain=0000000000000000 + cipher=D47ADF8B94CACA7A + decrypted=0000000000000000 + Iterated 100 times=71DFC47A01600E1C + Iterated 1000 times=7276D5E31E934610 + +Set 1, vector# 81: + key=00000000000000000000400000000000 + plain=0000000000000000 + cipher=D26D9656F91A1EE2 + decrypted=0000000000000000 + Iterated 100 times=DE132A19945DA3D5 + Iterated 1000 times=9302B6B91862A3C6 + +Set 1, vector# 82: + key=00000000000000000000200000000000 + plain=0000000000000000 + cipher=EE31B8E767C9B337 + decrypted=0000000000000000 + Iterated 100 times=F9BE76C880232D45 + Iterated 1000 times=CECD16A22B7F95E2 + +Set 1, vector# 83: + key=00000000000000000000100000000000 + plain=0000000000000000 + cipher=D19BA61DD59CE9A1 + decrypted=0000000000000000 + Iterated 100 times=684D894542AB77B6 + Iterated 1000 times=140076687F719A24 + +Set 1, vector# 84: + key=00000000000000000000080000000000 + plain=0000000000000000 + cipher=482863934D17804B + decrypted=0000000000000000 + Iterated 100 times=3615EC2B1CF8F2A4 + Iterated 1000 times=2F3EB0A713CF4A35 + +Set 1, vector# 85: + key=00000000000000000000040000000000 + plain=0000000000000000 + cipher=78C8CBCAC3B7FD35 + decrypted=0000000000000000 + Iterated 100 times=7EDA79C9CF0880C2 + Iterated 1000 times=AB74C6E868E08AE2 + +Set 1, vector# 86: + key=00000000000000000000020000000000 + plain=0000000000000000 + cipher=7B8B051E6C8AA8B6 + decrypted=0000000000000000 + Iterated 100 times=B7F949D8C9837246 + Iterated 1000 times=6FB4F85312EC790D + +Set 1, vector# 87: + key=00000000000000000000010000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 88: + key=00000000000000000000008000000000 + plain=0000000000000000 + cipher=8CCFCD2418E85750 + decrypted=0000000000000000 + Iterated 100 times=F7B0CFC8DDEDC0E2 + Iterated 1000 times=81C908F991F609D8 + +Set 1, vector# 89: + key=00000000000000000000004000000000 + plain=0000000000000000 + cipher=E74CA11808ED17A3 + decrypted=0000000000000000 + Iterated 100 times=063A730543365612 + Iterated 1000 times=FD6DBCC4340469F1 + +Set 1, vector# 90: + key=00000000000000000000002000000000 + plain=0000000000000000 + cipher=0A634C7A69897F35 + decrypted=0000000000000000 + Iterated 100 times=76D9351AC3DF24DA + Iterated 1000 times=222D7577C8B7128F + +Set 1, vector# 91: + key=00000000000000000000001000000000 + plain=0000000000000000 + cipher=6C2C0F27E973CE29 + decrypted=0000000000000000 + Iterated 100 times=92918782E98DF1BA + Iterated 1000 times=04676B8032FB884A + +Set 1, vector# 92: + key=00000000000000000000000800000000 + plain=0000000000000000 + cipher=AD5F11ED913E918C + decrypted=0000000000000000 + Iterated 100 times=A5104FE5E95E2309 + Iterated 1000 times=C1BA44F5DFAE373D + +Set 1, vector# 93: + key=00000000000000000000000400000000 + plain=0000000000000000 + cipher=3CE4B119BC1FC701 + decrypted=0000000000000000 + Iterated 100 times=3DEF816F2D3BBFF8 + Iterated 1000 times=855D27FA1CB4D70A + +Set 1, vector# 94: + key=00000000000000000000000200000000 + plain=0000000000000000 + cipher=7E6C8995AA52D298 + decrypted=0000000000000000 + Iterated 100 times=CF0D6507C0D59FFF + Iterated 1000 times=AEBBC2DDB266E383 + +Set 1, vector# 95: + key=00000000000000000000000100000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 96: + key=00000000000000000000000080000000 + plain=0000000000000000 + cipher=A9FE6341C8621918 + decrypted=0000000000000000 + Iterated 100 times=EB8935470DFC82C7 + Iterated 1000 times=FD6BF181D4BD2C2C + +Set 1, vector# 97: + key=00000000000000000000000040000000 + plain=0000000000000000 + cipher=CE99FD5D50B22CEF + decrypted=0000000000000000 + Iterated 100 times=5AFAE990CCFECB8A + Iterated 1000 times=66FC3858033A8E48 + +Set 1, vector# 98: + key=00000000000000000000000020000000 + plain=0000000000000000 + cipher=83E55C4A19ABCB56 + decrypted=0000000000000000 + Iterated 100 times=8536FA3CC939C062 + Iterated 1000 times=A5A7C54F003B6971 + +Set 1, vector# 99: + key=00000000000000000000000010000000 + plain=0000000000000000 + cipher=96E6A993443B9DD4 + decrypted=0000000000000000 + Iterated 100 times=96BC9D6EA99147E5 + Iterated 1000 times=E5BFD8A98C8F9104 + +Set 1, vector#100: + key=00000000000000000000000008000000 + plain=0000000000000000 + cipher=6781B65D74A6B9FB + decrypted=0000000000000000 + Iterated 100 times=4FAC62E01B0561B3 + Iterated 1000 times=99B43F794D52ABB7 + +Set 1, vector#101: + key=00000000000000000000000004000000 + plain=0000000000000000 + cipher=D9EF04E272D1A78A + decrypted=0000000000000000 + Iterated 100 times=C34938C9E938B1C2 + Iterated 1000 times=9934B4B9ECA778E0 + +Set 1, vector#102: + key=00000000000000000000000002000000 + plain=0000000000000000 + cipher=AC8B09EC3153D57B + decrypted=0000000000000000 + Iterated 100 times=4FB6023272B9E214 + Iterated 1000 times=37EDA451A22635F1 + +Set 1, vector#103: + key=00000000000000000000000001000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector#104: + key=00000000000000000000000000800000 + plain=0000000000000000 + cipher=60B4B8E3A8F5CBEC + decrypted=0000000000000000 + Iterated 100 times=595FA54FD1F5CA76 + Iterated 1000 times=E06978BCDC0996D3 + +Set 1, vector#105: + key=00000000000000000000000000400000 + plain=0000000000000000 + cipher=A5AB6F6EB66057A9 + decrypted=0000000000000000 + Iterated 100 times=92D00D5764CA36E3 + Iterated 1000 times=172DED3F97D27C44 + +Set 1, vector#106: + key=00000000000000000000000000200000 + plain=0000000000000000 + cipher=FF7B0E870FB1FD0B + decrypted=0000000000000000 + Iterated 100 times=F1EDEA2ECEB165E8 + Iterated 1000 times=73F60415570B6D1F + +Set 1, vector#107: + key=00000000000000000000000000100000 + plain=0000000000000000 + cipher=7497A098AA651D00 + decrypted=0000000000000000 + Iterated 100 times=122D45AC039D7580 + Iterated 1000 times=A8C291804DBFBE71 + +Set 1, vector#108: + key=00000000000000000000000000080000 + plain=0000000000000000 + cipher=270A943BEABEA8EC + decrypted=0000000000000000 + Iterated 100 times=12B4D009A9961F94 + Iterated 1000 times=C8479A36DF1151DA + +Set 1, vector#109: + key=00000000000000000000000000040000 + plain=0000000000000000 + cipher=67DB327ED5DF89E3 + decrypted=0000000000000000 + Iterated 100 times=C7A8D2108FAF5F63 + Iterated 1000 times=C06490BAFEA16BA9 + +Set 1, vector#110: + key=00000000000000000000000000020000 + plain=0000000000000000 + cipher=4871C3B7436121DE + decrypted=0000000000000000 + Iterated 100 times=9EC1BCFD2B5A4D71 + Iterated 1000 times=58CB2B258A231AF8 + +Set 1, vector#111: + key=00000000000000000000000000010000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector#112: + key=00000000000000000000000000008000 + plain=0000000000000000 + cipher=41BBC8EF36654838 + decrypted=0000000000000000 + Iterated 100 times=7869226251B7596F + Iterated 1000 times=F24702C9D2751B02 + +Set 1, vector#113: + key=00000000000000000000000000004000 + plain=0000000000000000 + cipher=FCBD166CA0EA87E2 + decrypted=0000000000000000 + Iterated 100 times=11D9FF0706F5370A + Iterated 1000 times=9F52CE105448FB58 + +Set 1, vector#114: + key=00000000000000000000000000002000 + plain=0000000000000000 + cipher=9DFFC6EE9751B5CF + decrypted=0000000000000000 + Iterated 100 times=9B4ADE2784370012 + Iterated 1000 times=68CF62D650EAD7D7 + +Set 1, vector#115: + key=00000000000000000000000000001000 + plain=0000000000000000 + cipher=C01B7878EBCE8DD3 + decrypted=0000000000000000 + Iterated 100 times=4E92759348F9DD36 + Iterated 1000 times=5A6F05496BC98AF7 + +Set 1, vector#116: + key=00000000000000000000000000000800 + plain=0000000000000000 + cipher=357E5A4DC162D715 + decrypted=0000000000000000 + Iterated 100 times=7073C2BE07C15271 + Iterated 1000 times=6FC97B54C68117FD + +Set 1, vector#117: + key=00000000000000000000000000000400 + plain=0000000000000000 + cipher=268F93CAEB248E2E + decrypted=0000000000000000 + Iterated 100 times=96A49175710A377E + Iterated 1000 times=93BB382B13D32755 + +Set 1, vector#118: + key=00000000000000000000000000000200 + plain=0000000000000000 + cipher=A5D4174744B84E7D + decrypted=0000000000000000 + Iterated 100 times=F9E07D361D35E054 + Iterated 1000 times=7EA70D549BC2F045 + +Set 1, vector#119: + key=00000000000000000000000000000100 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector#120: + key=00000000000000000000000000000080 + plain=0000000000000000 + cipher=46F5E7077CB869A8 + decrypted=0000000000000000 + Iterated 100 times=17CA33957B5A914F + Iterated 1000 times=D96E405125B892CA + +Set 1, vector#121: + key=00000000000000000000000000000040 + plain=0000000000000000 + cipher=502CD2BF4FC0B793 + decrypted=0000000000000000 + Iterated 100 times=68184D5C2BDE3D83 + Iterated 1000 times=F7738FCBA6116EB9 + +Set 1, vector#122: + key=00000000000000000000000000000020 + plain=0000000000000000 + cipher=C0278007230589E4 + decrypted=0000000000000000 + Iterated 100 times=E082A6A1B459DB26 + Iterated 1000 times=0AA75BD0BF54BF86 + +Set 1, vector#123: + key=00000000000000000000000000000010 + plain=0000000000000000 + cipher=52710C55818FAF52 + decrypted=0000000000000000 + Iterated 100 times=F46F634865F08E3A + Iterated 1000 times=C8A47624D730A39C + +Set 1, vector#124: + key=00000000000000000000000000000008 + plain=0000000000000000 + cipher=DF4A77123610F2B1 + decrypted=0000000000000000 + Iterated 100 times=4E74EC39F8C6A8C0 + Iterated 1000 times=0566C951F35BBC70 + +Set 1, vector#125: + key=00000000000000000000000000000004 + plain=0000000000000000 + cipher=EF840B00DA448234 + decrypted=0000000000000000 + Iterated 100 times=84D4AB45A6B8F187 + Iterated 1000 times=C3B69C3ADAFDDC17 + +Set 1, vector#126: + key=00000000000000000000000000000002 + plain=0000000000000000 + cipher=FFCCC32A699CB7C5 + decrypted=0000000000000000 + Iterated 100 times=F5F1BC85025F34FE + Iterated 1000 times=0B81D787B6A934FF + +Set 1, vector#127: + key=00000000000000000000000000000001 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Test vectors -- set 2 +===================== + +Set 2, vector# 0: + key=00000000000000000000000000000000 + plain=8000000000000000 + cipher=95F8A5E5DD31D900 + decrypted=8000000000000000 + Iterated 100 times=8000000000000000 + Iterated 1000 times=8000000000000000 + +Set 2, vector# 1: + key=00000000000000000000000000000000 + plain=4000000000000000 + cipher=DD7F121CA5015619 + decrypted=4000000000000000 + Iterated 100 times=4000000000000000 + Iterated 1000 times=4000000000000000 + +Set 2, vector# 2: + key=00000000000000000000000000000000 + plain=2000000000000000 + cipher=2E8653104F3834EA + decrypted=2000000000000000 + Iterated 100 times=2000000000000000 + Iterated 1000 times=2000000000000000 + +Set 2, vector# 3: + key=00000000000000000000000000000000 + plain=1000000000000000 + cipher=4BD388FF6CD81D4F + decrypted=1000000000000000 + Iterated 100 times=1000000000000000 + Iterated 1000 times=1000000000000000 + +Set 2, vector# 4: + key=00000000000000000000000000000000 + plain=0800000000000000 + cipher=20B9E767B2FB1456 + decrypted=0800000000000000 + Iterated 100 times=0800000000000000 + Iterated 1000 times=0800000000000000 + +Set 2, vector# 5: + key=00000000000000000000000000000000 + plain=0400000000000000 + cipher=55579380D77138EF + decrypted=0400000000000000 + Iterated 100 times=0400000000000000 + Iterated 1000 times=0400000000000000 + +Set 2, vector# 6: + key=00000000000000000000000000000000 + plain=0200000000000000 + cipher=6CC5DEFAAF04512F + decrypted=0200000000000000 + Iterated 100 times=0200000000000000 + Iterated 1000 times=0200000000000000 + +Set 2, vector# 7: + key=00000000000000000000000000000000 + plain=0100000000000000 + cipher=0D9F279BA5D87260 + decrypted=0100000000000000 + Iterated 100 times=0100000000000000 + Iterated 1000 times=0100000000000000 + +Set 2, vector# 8: + key=00000000000000000000000000000000 + plain=0080000000000000 + cipher=D9031B0271BD5A0A + decrypted=0080000000000000 + Iterated 100 times=0080000000000000 + Iterated 1000 times=0080000000000000 + +Set 2, vector# 9: + key=00000000000000000000000000000000 + plain=0040000000000000 + cipher=424250B37C3DD951 + decrypted=0040000000000000 + Iterated 100 times=0040000000000000 + Iterated 1000 times=0040000000000000 + +Set 2, vector# 10: + key=00000000000000000000000000000000 + plain=0020000000000000 + cipher=B8061B7ECD9A21E5 + decrypted=0020000000000000 + Iterated 100 times=0020000000000000 + Iterated 1000 times=0020000000000000 + +Set 2, vector# 11: + key=00000000000000000000000000000000 + plain=0010000000000000 + cipher=F15D0F286B65BD28 + decrypted=0010000000000000 + Iterated 100 times=0010000000000000 + Iterated 1000 times=0010000000000000 + +Set 2, vector# 12: + key=00000000000000000000000000000000 + plain=0008000000000000 + cipher=ADD0CC8D6E5DEBA1 + decrypted=0008000000000000 + Iterated 100 times=0008000000000000 + Iterated 1000 times=0008000000000000 + +Set 2, vector# 13: + key=00000000000000000000000000000000 + plain=0004000000000000 + cipher=E6D5F82752AD63D1 + decrypted=0004000000000000 + Iterated 100 times=0004000000000000 + Iterated 1000 times=0004000000000000 + +Set 2, vector# 14: + key=00000000000000000000000000000000 + plain=0002000000000000 + cipher=ECBFE3BD3F591A5E + decrypted=0002000000000000 + Iterated 100 times=0002000000000000 + Iterated 1000 times=0002000000000000 + +Set 2, vector# 15: + key=00000000000000000000000000000000 + plain=0001000000000000 + cipher=F356834379D165CD + decrypted=0001000000000000 + Iterated 100 times=0001000000000000 + Iterated 1000 times=0001000000000000 + +Set 2, vector# 16: + key=00000000000000000000000000000000 + plain=0000800000000000 + cipher=2B9F982F20037FA9 + decrypted=0000800000000000 + Iterated 100 times=0000800000000000 + Iterated 1000 times=0000800000000000 + +Set 2, vector# 17: + key=00000000000000000000000000000000 + plain=0000400000000000 + cipher=889DE068A16F0BE6 + decrypted=0000400000000000 + Iterated 100 times=0000400000000000 + Iterated 1000 times=0000400000000000 + +Set 2, vector# 18: + key=00000000000000000000000000000000 + plain=0000200000000000 + cipher=E19E275D846A1298 + decrypted=0000200000000000 + Iterated 100 times=0000200000000000 + Iterated 1000 times=0000200000000000 + +Set 2, vector# 19: + key=00000000000000000000000000000000 + plain=0000100000000000 + cipher=329A8ED523D71AEC + decrypted=0000100000000000 + Iterated 100 times=0000100000000000 + Iterated 1000 times=0000100000000000 + +Set 2, vector# 20: + key=00000000000000000000000000000000 + plain=0000080000000000 + cipher=E7FCE22557D23C97 + decrypted=0000080000000000 + Iterated 100 times=0000080000000000 + Iterated 1000 times=0000080000000000 + +Set 2, vector# 21: + key=00000000000000000000000000000000 + plain=0000040000000000 + cipher=12A9F5817FF2D65D + decrypted=0000040000000000 + Iterated 100 times=0000040000000000 + Iterated 1000 times=0000040000000000 + +Set 2, vector# 22: + key=00000000000000000000000000000000 + plain=0000020000000000 + cipher=A484C3AD38DC9C19 + decrypted=0000020000000000 + Iterated 100 times=0000020000000000 + Iterated 1000 times=0000020000000000 + +Set 2, vector# 23: + key=00000000000000000000000000000000 + plain=0000010000000000 + cipher=FBE00A8A1EF8AD72 + decrypted=0000010000000000 + Iterated 100 times=0000010000000000 + Iterated 1000 times=0000010000000000 + +Set 2, vector# 24: + key=00000000000000000000000000000000 + plain=0000008000000000 + cipher=750D079407521363 + decrypted=0000008000000000 + Iterated 100 times=0000008000000000 + Iterated 1000 times=0000008000000000 + +Set 2, vector# 25: + key=00000000000000000000000000000000 + plain=0000004000000000 + cipher=64FEED9C724C2FAF + decrypted=0000004000000000 + Iterated 100 times=0000004000000000 + Iterated 1000 times=0000004000000000 + +Set 2, vector# 26: + key=00000000000000000000000000000000 + plain=0000002000000000 + cipher=F02B263B328E2B60 + decrypted=0000002000000000 + Iterated 100 times=0000002000000000 + Iterated 1000 times=0000002000000000 + +Set 2, vector# 27: + key=00000000000000000000000000000000 + plain=0000001000000000 + cipher=9D64555A9A10B852 + decrypted=0000001000000000 + Iterated 100 times=0000001000000000 + Iterated 1000 times=0000001000000000 + +Set 2, vector# 28: + key=00000000000000000000000000000000 + plain=0000000800000000 + cipher=D106FF0BED5255D7 + decrypted=0000000800000000 + Iterated 100 times=0000000800000000 + Iterated 1000 times=0000000800000000 + +Set 2, vector# 29: + key=00000000000000000000000000000000 + plain=0000000400000000 + cipher=E1652C6B138C64A5 + decrypted=0000000400000000 + Iterated 100 times=0000000400000000 + Iterated 1000 times=0000000400000000 + +Set 2, vector# 30: + key=00000000000000000000000000000000 + plain=0000000200000000 + cipher=E428581186EC8F46 + decrypted=0000000200000000 + Iterated 100 times=0000000200000000 + Iterated 1000 times=0000000200000000 + +Set 2, vector# 31: + key=00000000000000000000000000000000 + plain=0000000100000000 + cipher=AEB5F5EDE22D1A36 + decrypted=0000000100000000 + Iterated 100 times=0000000100000000 + Iterated 1000 times=0000000100000000 + +Set 2, vector# 32: + key=00000000000000000000000000000000 + plain=0000000080000000 + cipher=E943D7568AEC0C5C + decrypted=0000000080000000 + Iterated 100 times=0000000080000000 + Iterated 1000 times=0000000080000000 + +Set 2, vector# 33: + key=00000000000000000000000000000000 + plain=0000000040000000 + cipher=DF98C8276F54B04B + decrypted=0000000040000000 + Iterated 100 times=0000000040000000 + Iterated 1000 times=0000000040000000 + +Set 2, vector# 34: + key=00000000000000000000000000000000 + plain=0000000020000000 + cipher=B160E4680F6C696F + decrypted=0000000020000000 + Iterated 100 times=0000000020000000 + Iterated 1000 times=0000000020000000 + +Set 2, vector# 35: + key=00000000000000000000000000000000 + plain=0000000010000000 + cipher=FA0752B07D9C4AB8 + decrypted=0000000010000000 + Iterated 100 times=0000000010000000 + Iterated 1000 times=0000000010000000 + +Set 2, vector# 36: + key=00000000000000000000000000000000 + plain=0000000008000000 + cipher=CA3A2B036DBC8502 + decrypted=0000000008000000 + Iterated 100 times=0000000008000000 + Iterated 1000 times=0000000008000000 + +Set 2, vector# 37: + key=00000000000000000000000000000000 + plain=0000000004000000 + cipher=5E0905517BB59BCF + decrypted=0000000004000000 + Iterated 100 times=0000000004000000 + Iterated 1000 times=0000000004000000 + +Set 2, vector# 38: + key=00000000000000000000000000000000 + plain=0000000002000000 + cipher=814EEB3B91D90726 + decrypted=0000000002000000 + Iterated 100 times=0000000002000000 + Iterated 1000 times=0000000002000000 + +Set 2, vector# 39: + key=00000000000000000000000000000000 + plain=0000000001000000 + cipher=4D49DB1532919C9F + decrypted=0000000001000000 + Iterated 100 times=0000000001000000 + Iterated 1000 times=0000000001000000 + +Set 2, vector# 40: + key=00000000000000000000000000000000 + plain=0000000000800000 + cipher=25EB5FC3F8CF0621 + decrypted=0000000000800000 + Iterated 100 times=0000000000800000 + Iterated 1000 times=0000000000800000 + +Set 2, vector# 41: + key=00000000000000000000000000000000 + plain=0000000000400000 + cipher=AB6A20C0620D1C6F + decrypted=0000000000400000 + Iterated 100 times=0000000000400000 + Iterated 1000 times=0000000000400000 + +Set 2, vector# 42: + key=00000000000000000000000000000000 + plain=0000000000200000 + cipher=79E90DBC98F92CCA + decrypted=0000000000200000 + Iterated 100 times=0000000000200000 + Iterated 1000 times=0000000000200000 + +Set 2, vector# 43: + key=00000000000000000000000000000000 + plain=0000000000100000 + cipher=866ECEDD8072BB0E + decrypted=0000000000100000 + Iterated 100 times=0000000000100000 + Iterated 1000 times=0000000000100000 + +Set 2, vector# 44: + key=00000000000000000000000000000000 + plain=0000000000080000 + cipher=8B54536F2F3E64A8 + decrypted=0000000000080000 + Iterated 100 times=0000000000080000 + Iterated 1000 times=0000000000080000 + +Set 2, vector# 45: + key=00000000000000000000000000000000 + plain=0000000000040000 + cipher=EA51D3975595B86B + decrypted=0000000000040000 + Iterated 100 times=0000000000040000 + Iterated 1000 times=0000000000040000 + +Set 2, vector# 46: + key=00000000000000000000000000000000 + plain=0000000000020000 + cipher=CAFFC6AC4542DE31 + decrypted=0000000000020000 + Iterated 100 times=0000000000020000 + Iterated 1000 times=0000000000020000 + +Set 2, vector# 47: + key=00000000000000000000000000000000 + plain=0000000000010000 + cipher=8DD45A2DDF90796C + decrypted=0000000000010000 + Iterated 100 times=0000000000010000 + Iterated 1000 times=0000000000010000 + +Set 2, vector# 48: + key=00000000000000000000000000000000 + plain=0000000000008000 + cipher=1029D55E880EC2D0 + decrypted=0000000000008000 + Iterated 100 times=0000000000008000 + Iterated 1000 times=0000000000008000 + +Set 2, vector# 49: + key=00000000000000000000000000000000 + plain=0000000000004000 + cipher=5D86CB23639DBEA9 + decrypted=0000000000004000 + Iterated 100 times=0000000000004000 + Iterated 1000 times=0000000000004000 + +Set 2, vector# 50: + key=00000000000000000000000000000000 + plain=0000000000002000 + cipher=1D1CA853AE7C0C5F + decrypted=0000000000002000 + Iterated 100 times=0000000000002000 + Iterated 1000 times=0000000000002000 + +Set 2, vector# 51: + key=00000000000000000000000000000000 + plain=0000000000001000 + cipher=CE332329248F3228 + decrypted=0000000000001000 + Iterated 100 times=0000000000001000 + Iterated 1000 times=0000000000001000 + +Set 2, vector# 52: + key=00000000000000000000000000000000 + plain=0000000000000800 + cipher=8405D1ABE24FB942 + decrypted=0000000000000800 + Iterated 100 times=0000000000000800 + Iterated 1000 times=0000000000000800 + +Set 2, vector# 53: + key=00000000000000000000000000000000 + plain=0000000000000400 + cipher=E643D78090CA4207 + decrypted=0000000000000400 + Iterated 100 times=0000000000000400 + Iterated 1000 times=0000000000000400 + +Set 2, vector# 54: + key=00000000000000000000000000000000 + plain=0000000000000200 + cipher=48221B9937748A23 + decrypted=0000000000000200 + Iterated 100 times=0000000000000200 + Iterated 1000 times=0000000000000200 + +Set 2, vector# 55: + key=00000000000000000000000000000000 + plain=0000000000000100 + cipher=DD7C0BBD61FAFD54 + decrypted=0000000000000100 + Iterated 100 times=0000000000000100 + Iterated 1000 times=0000000000000100 + +Set 2, vector# 56: + key=00000000000000000000000000000000 + plain=0000000000000080 + cipher=2FBC291A570DB5C4 + decrypted=0000000000000080 + Iterated 100 times=0000000000000080 + Iterated 1000 times=0000000000000080 + +Set 2, vector# 57: + key=00000000000000000000000000000000 + plain=0000000000000040 + cipher=E07C30D7E4E26E12 + decrypted=0000000000000040 + Iterated 100 times=0000000000000040 + Iterated 1000 times=0000000000000040 + +Set 2, vector# 58: + key=00000000000000000000000000000000 + plain=0000000000000020 + cipher=0953E2258E8E90A1 + decrypted=0000000000000020 + Iterated 100 times=0000000000000020 + Iterated 1000 times=0000000000000020 + +Set 2, vector# 59: + key=00000000000000000000000000000000 + plain=0000000000000010 + cipher=5B711BC4CEEBF2EE + decrypted=0000000000000010 + Iterated 100 times=0000000000000010 + Iterated 1000 times=0000000000000010 + +Set 2, vector# 60: + key=00000000000000000000000000000000 + plain=0000000000000008 + cipher=CC083F1E6D9E85F6 + decrypted=0000000000000008 + Iterated 100 times=0000000000000008 + Iterated 1000 times=0000000000000008 + +Set 2, vector# 61: + key=00000000000000000000000000000000 + plain=0000000000000004 + cipher=D2FD8867D50D2DFE + decrypted=0000000000000004 + Iterated 100 times=0000000000000004 + Iterated 1000 times=0000000000000004 + +Set 2, vector# 62: + key=00000000000000000000000000000000 + plain=0000000000000002 + cipher=06E7EA22CE92708F + decrypted=0000000000000002 + Iterated 100 times=0000000000000002 + Iterated 1000 times=0000000000000002 + +Set 2, vector# 63: + key=00000000000000000000000000000000 + plain=0000000000000001 + cipher=166B40B44ABA4BD6 + decrypted=0000000000000001 + Iterated 100 times=0000000000000001 + Iterated 1000 times=0000000000000001 + +Test vectors -- set 3 +===================== + +Set 3, vector# 0: + key=00000000000000000000000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 3, vector# 1: + key=01010101010101010101010101010101 + plain=0101010101010101 + cipher=994D4DC157B96C52 + decrypted=0101010101010101 + Iterated 100 times=0101010101010101 + Iterated 1000 times=0101010101010101 + +Set 3, vector# 2: + key=02020202020202020202020202020202 + plain=0202020202020202 + cipher=E127C2B61D98E6E2 + decrypted=0202020202020202 + Iterated 100 times=B575F7E036BBDE72 + Iterated 1000 times=EF66EB1095238FBB + +Set 3, vector# 3: + key=03030303030303030303030303030303 + plain=0303030303030303 + cipher=984C91D78A269CE3 + decrypted=0303030303030303 + Iterated 100 times=F46D7FEC491D049B + Iterated 1000 times=1B54D2349C80B4F2 + +Set 3, vector# 4: + key=04040404040404040404040404040404 + plain=0404040404040404 + cipher=1F4570BB77550683 + decrypted=0404040404040404 + Iterated 100 times=C95FC0A6EF6E8ED6 + Iterated 1000 times=373ADDEBEBA0E681 + +Set 3, vector# 5: + key=05050505050505050505050505050505 + plain=0505050505050505 + cipher=3990ABF98D672B16 + decrypted=0505050505050505 + Iterated 100 times=FE4AA77EFE851A58 + Iterated 1000 times=434D8AC87CAF59AF + +Set 3, vector# 6: + key=06060606060606060606060606060606 + plain=0606060606060606 + cipher=3F5150BBA081D585 + decrypted=0606060606060606 + Iterated 100 times=D1C5600E7B186BB1 + Iterated 1000 times=275229B5D2536536 + +Set 3, vector# 7: + key=07070707070707070707070707070707 + plain=0707070707070707 + cipher=C65242248C9CF6F2 + decrypted=0707070707070707 + Iterated 100 times=DE3A1731A1D3324B + Iterated 1000 times=C9BC25D7BD6E4D43 + +Set 3, vector# 8: + key=08080808080808080808080808080808 + plain=0808080808080808 + cipher=10772D40FAD24257 + decrypted=0808080808080808 + Iterated 100 times=DB3214AD3B35C572 + Iterated 1000 times=4E8A406CA4FEBC52 + +Set 3, vector# 9: + key=09090909090909090909090909090909 + plain=0909090909090909 + cipher=F0139440647A6E7B + decrypted=0909090909090909 + Iterated 100 times=BD34ED357BC3938B + Iterated 1000 times=3944A4F231239FC9 + +Set 3, vector# 10: + key=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + plain=0A0A0A0A0A0A0A0A + cipher=0A288603044D740C + decrypted=0A0A0A0A0A0A0A0A + Iterated 100 times=C4CB008E3A0A62A9 + Iterated 1000 times=BF8FB60063D373AE + +Set 3, vector# 11: + key=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + plain=0B0B0B0B0B0B0B0B + cipher=6359916942F7438F + decrypted=0B0B0B0B0B0B0B0B + Iterated 100 times=74F7B3F057E53E49 + Iterated 1000 times=DDCCFBDA8C53A472 + +Set 3, vector# 12: + key=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + plain=0C0C0C0C0C0C0C0C + cipher=934316AE443CF08B + decrypted=0C0C0C0C0C0C0C0C + Iterated 100 times=ED62660F284343CD + Iterated 1000 times=3DB428FE2867D620 + +Set 3, vector# 13: + key=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + plain=0D0D0D0D0D0D0D0D + cipher=E3F56D7F1130A2B7 + decrypted=0D0D0D0D0D0D0D0D + Iterated 100 times=70EC69AF05EC4476 + Iterated 1000 times=64F1F4B38665C7ED + +Set 3, vector# 14: + key=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + plain=0E0E0E0E0E0E0E0E + cipher=A2E4705087C6B6B4 + decrypted=0E0E0E0E0E0E0E0E + Iterated 100 times=08006AE1A9F8798B + Iterated 1000 times=2F8DBD285D5353C7 + +Set 3, vector# 15: + key=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + plain=0F0F0F0F0F0F0F0F + cipher=D5D76E09A447E8C3 + decrypted=0F0F0F0F0F0F0F0F + Iterated 100 times=2804106DB462431F + Iterated 1000 times=2614F4610CF0A42F + +Set 3, vector# 16: + key=10101010101010101010101010101010 + plain=1010101010101010 + cipher=DD7515F2BFC17F85 + decrypted=1010101010101010 + Iterated 100 times=59E4B20A2B9E13A4 + Iterated 1000 times=532E34B260E171B8 + +Set 3, vector# 17: + key=11111111111111111111111111111111 + plain=1111111111111111 + cipher=F40379AB9E0EC533 + decrypted=1111111111111111 + Iterated 100 times=78A1257D2332D471 + Iterated 1000 times=3D9D7B0A4E0E3576 + +Set 3, vector# 18: + key=12121212121212121212121212121212 + plain=1212121212121212 + cipher=96CD27784D1563E5 + decrypted=1212121212121212 + Iterated 100 times=A7712A48A287D855 + Iterated 1000 times=365B0126EB87A873 + +Set 3, vector# 19: + key=13131313131313131313131313131313 + plain=1313131313131313 + cipher=2911CF5E94D33FE1 + decrypted=1313131313131313 + Iterated 100 times=B56D216335FBC5E9 + Iterated 1000 times=8019AFAEF257D470 + +Set 3, vector# 20: + key=14141414141414141414141414141414 + plain=1414141414141414 + cipher=377B7F7CA3E5BBB3 + decrypted=1414141414141414 + Iterated 100 times=FA555D286B1156F2 + Iterated 1000 times=4727FE29150A7F16 + +Set 3, vector# 21: + key=15151515151515151515151515151515 + plain=1515151515151515 + cipher=701AA63832905A92 + decrypted=1515151515151515 + Iterated 100 times=0675C352CB6B268C + Iterated 1000 times=11773ECEFE3411F3 + +Set 3, vector# 22: + key=16161616161616161616161616161616 + plain=1616161616161616 + cipher=2006E716C4252D6D + decrypted=1616161616161616 + Iterated 100 times=F3714D29ACEDE2DC + Iterated 1000 times=F98398EA8B2AC1C2 + +Set 3, vector# 23: + key=17171717171717171717171717171717 + plain=1717171717171717 + cipher=452C1197422469F8 + decrypted=1717171717171717 + Iterated 100 times=207E4B61863A19A9 + Iterated 1000 times=0E09BEBEA09D939F + +Set 3, vector# 24: + key=18181818181818181818181818181818 + plain=1818181818181818 + cipher=C33FD1EB49CB64DA + decrypted=1818181818181818 + Iterated 100 times=06D0D308437682BF + Iterated 1000 times=957391D4A8E6E210 + +Set 3, vector# 25: + key=19191919191919191919191919191919 + plain=1919191919191919 + cipher=7572278F364EB50D + decrypted=1919191919191919 + Iterated 100 times=3BDA68891F411E27 + Iterated 1000 times=ADF735FD0804EBD2 + +Set 3, vector# 26: + key=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + plain=1A1A1A1A1A1A1A1A + cipher=69E51488403EF4C3 + decrypted=1A1A1A1A1A1A1A1A + Iterated 100 times=B19C00E014F96E7B + Iterated 1000 times=DAE7603FB12C479E + +Set 3, vector# 27: + key=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + plain=1B1B1B1B1B1B1B1B + cipher=FF847E0ADF192825 + decrypted=1B1B1B1B1B1B1B1B + Iterated 100 times=CEF52AA0F6041207 + Iterated 1000 times=450A50776FE1D52D + +Set 3, vector# 28: + key=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + plain=1C1C1C1C1C1C1C1C + cipher=521B7FB3B41BB791 + decrypted=1C1C1C1C1C1C1C1C + Iterated 100 times=F9115CB99EE29D17 + Iterated 1000 times=4306B2FAC11DD0D5 + +Set 3, vector# 29: + key=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + plain=1D1D1D1D1D1D1D1D + cipher=26059A6A0F3F6B35 + decrypted=1D1D1D1D1D1D1D1D + Iterated 100 times=F83B8693D0A61969 + Iterated 1000 times=9313A53C6051BDB3 + +Set 3, vector# 30: + key=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + plain=1E1E1E1E1E1E1E1E + cipher=F24A8D2231C77538 + decrypted=1E1E1E1E1E1E1E1E + Iterated 100 times=5A4F39F8F17C06C7 + Iterated 1000 times=53827EDCF52A6FDC + +Set 3, vector# 31: + key=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + plain=1F1F1F1F1F1F1F1F + cipher=4FD96EC0D3304EF6 + decrypted=1F1F1F1F1F1F1F1F + Iterated 100 times=148D2605CC9E58F7 + Iterated 1000 times=BBFB81EE0E3EBE94 + +Set 3, vector# 32: + key=20202020202020202020202020202020 + plain=2020202020202020 + cipher=18A9D580A900B699 + decrypted=2020202020202020 + Iterated 100 times=DEE7754452402184 + Iterated 1000 times=B8DD4D82B55F134B + +Set 3, vector# 33: + key=21212121212121212121212121212121 + plain=2121212121212121 + cipher=88586E1D755B9B5A + decrypted=2121212121212121 + Iterated 100 times=53D24793D7540BEF + Iterated 1000 times=E4E7306C87527A86 + +Set 3, vector# 34: + key=22222222222222222222222222222222 + plain=2222222222222222 + cipher=0F8ADFFB11DC2784 + decrypted=2222222222222222 + Iterated 100 times=07D5A975DFA30B40 + Iterated 1000 times=C94BE627ADD4C1F4 + +Set 3, vector# 35: + key=23232323232323232323232323232323 + plain=2323232323232323 + cipher=2F30446C8312404A + decrypted=2323232323232323 + Iterated 100 times=5FEFB92AF665633A + Iterated 1000 times=9165CECAD1563F6F + +Set 3, vector# 36: + key=24242424242424242424242424242424 + plain=2424242424242424 + cipher=0BA03D9E6C196511 + decrypted=2424242424242424 + Iterated 100 times=AEF52947F908450A + Iterated 1000 times=2607FBF97EC24B5F + +Set 3, vector# 37: + key=25252525252525252525252525252525 + plain=2525252525252525 + cipher=3E55E997611E4B7D + decrypted=2525252525252525 + Iterated 100 times=1223E578868C1EF6 + Iterated 1000 times=E7287D8FE0A4383E + +Set 3, vector# 38: + key=26262626262626262626262626262626 + plain=2626262626262626 + cipher=B2522FB5F158F0DF + decrypted=2626262626262626 + Iterated 100 times=0ABA5827280C32B8 + Iterated 1000 times=A1B49DCD07B91030 + +Set 3, vector# 39: + key=27272727272727272727272727272727 + plain=2727272727272727 + cipher=2109425935406AB8 + decrypted=2727272727272727 + Iterated 100 times=06267445D6A2B26C + Iterated 1000 times=98F3E5792D5976B1 + +Set 3, vector# 40: + key=28282828282828282828282828282828 + plain=2828282828282828 + cipher=11A16028F310FF16 + decrypted=2828282828282828 + Iterated 100 times=C87E6AA7024AA25D + Iterated 1000 times=AB5D4716E4461939 + +Set 3, vector# 41: + key=29292929292929292929292929292929 + plain=2929292929292929 + cipher=73F0C45F379FE67F + decrypted=2929292929292929 + Iterated 100 times=C6146414D7439A59 + Iterated 1000 times=481411E80BA14CAC + +Set 3, vector# 42: + key=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + plain=2A2A2A2A2A2A2A2A + cipher=DCAD4338F7523816 + decrypted=2A2A2A2A2A2A2A2A + Iterated 100 times=E17F92BFECD0AB5D + Iterated 1000 times=803ABFDA91580AC1 + +Set 3, vector# 43: + key=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + plain=2B2B2B2B2B2B2B2B + cipher=B81634C1CEAB298C + decrypted=2B2B2B2B2B2B2B2B + Iterated 100 times=5DE00ED35CDC7428 + Iterated 1000 times=DE19633E77F4DB1F + +Set 3, vector# 44: + key=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + plain=2C2C2C2C2C2C2C2C + cipher=DD2CCB29B6C4C349 + decrypted=2C2C2C2C2C2C2C2C + Iterated 100 times=D3B6F9A1BD8B6B15 + Iterated 1000 times=1A847AE704BAE175 + +Set 3, vector# 45: + key=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + plain=2D2D2D2D2D2D2D2D + cipher=7D07A77A2ABD50A7 + decrypted=2D2D2D2D2D2D2D2D + Iterated 100 times=2BBEE289FFF55C85 + Iterated 1000 times=501C267C682280B5 + +Set 3, vector# 46: + key=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + plain=2E2E2E2E2E2E2E2E + cipher=30C1B0C1FD91D371 + decrypted=2E2E2E2E2E2E2E2E + Iterated 100 times=51A76271AD0E3A5F + Iterated 1000 times=D3DFC683AB67D88B + +Set 3, vector# 47: + key=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + plain=2F2F2F2F2F2F2F2F + cipher=C4427B31AC61973B + decrypted=2F2F2F2F2F2F2F2F + Iterated 100 times=5E95FF4A1B470C9D + Iterated 1000 times=F895F6404407A911 + +Set 3, vector# 48: + key=30303030303030303030303030303030 + plain=3030303030303030 + cipher=F47BB46273B15EB5 + decrypted=3030303030303030 + Iterated 100 times=76BF3C2C0D1C4BD0 + Iterated 1000 times=3CBDCFABC1F321D7 + +Set 3, vector# 49: + key=31313131313131313131313131313131 + plain=3131313131313131 + cipher=655EA628CF62585F + decrypted=3131313131313131 + Iterated 100 times=E1F5527AAA65DF2B + Iterated 1000 times=3F8E6EB07693959F + +Set 3, vector# 50: + key=32323232323232323232323232323232 + plain=3232323232323232 + cipher=AC978C247863388F + decrypted=3232323232323232 + Iterated 100 times=353E49075AC19356 + Iterated 1000 times=74986B6B48A70B9B + +Set 3, vector# 51: + key=33333333333333333333333333333333 + plain=3333333333333333 + cipher=0432ED386F2DE328 + decrypted=3333333333333333 + Iterated 100 times=8D6B18F726B5BD30 + Iterated 1000 times=FDB76D63EF051ADD + +Set 3, vector# 52: + key=34343434343434343434343434343434 + plain=3434343434343434 + cipher=D254014CB986B3C2 + decrypted=3434343434343434 + Iterated 100 times=085509B51C375B80 + Iterated 1000 times=31E9566BB30E081E + +Set 3, vector# 53: + key=35353535353535353535353535353535 + plain=3535353535353535 + cipher=B256E34BEDB49801 + decrypted=3535353535353535 + Iterated 100 times=E42078571072F66E + Iterated 1000 times=D6DACEDE04CA0A34 + +Set 3, vector# 54: + key=36363636363636363636363636363636 + plain=3636363636363636 + cipher=37F8759EB77E7BFC + decrypted=3636363636363636 + Iterated 100 times=AFEC7EB983086E29 + Iterated 1000 times=13DC451CC0899787 + +Set 3, vector# 55: + key=37373737373737373737373737373737 + plain=3737373737373737 + cipher=5013CA4F62C9CEA0 + decrypted=3737373737373737 + Iterated 100 times=C618B626D7F59D7E + Iterated 1000 times=2400481DFA1DBB2B + +Set 3, vector# 56: + key=38383838383838383838383838383838 + plain=3838383838383838 + cipher=8940F7B3EACA5939 + decrypted=3838383838383838 + Iterated 100 times=50E8C2DEA98D747A + Iterated 1000 times=F48E40812BCEDECB + +Set 3, vector# 57: + key=39393939393939393939393939393939 + plain=3939393939393939 + cipher=E22B19A55086774B + decrypted=3939393939393939 + Iterated 100 times=D580DC51FE300229 + Iterated 1000 times=9B062BA3FCBCFDA7 + +Set 3, vector# 58: + key=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + plain=3A3A3A3A3A3A3A3A + cipher=B04A2AAC925ABB0B + decrypted=3A3A3A3A3A3A3A3A + Iterated 100 times=5ED71B36898C8267 + Iterated 1000 times=274E36B383DF6DC9 + +Set 3, vector# 59: + key=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + plain=3B3B3B3B3B3B3B3B + cipher=8D250D58361597FC + decrypted=3B3B3B3B3B3B3B3B + Iterated 100 times=BC6F4D8E8A214F7F + Iterated 1000 times=FB73E01779F65CC9 + +Set 3, vector# 60: + key=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + plain=3C3C3C3C3C3C3C3C + cipher=51F0114FB6A6CD37 + decrypted=3C3C3C3C3C3C3C3C + Iterated 100 times=30F373AE7D7D79FB + Iterated 1000 times=0FB0B4E51CB476F4 + +Set 3, vector# 61: + key=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + plain=3D3D3D3D3D3D3D3D + cipher=9D0BB4DB830ECB73 + decrypted=3D3D3D3D3D3D3D3D + Iterated 100 times=A1F3CEA4B3D9CC9A + Iterated 1000 times=1AEF567D7490EC78 + +Set 3, vector# 62: + key=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + plain=3E3E3E3E3E3E3E3E + cipher=E96089D6368F3E1A + decrypted=3E3E3E3E3E3E3E3E + Iterated 100 times=542B44C055BB9634 + Iterated 1000 times=6E977FDBC5E79034 + +Set 3, vector# 63: + key=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + plain=3F3F3F3F3F3F3F3F + cipher=5C4CA877A4E1E92D + decrypted=3F3F3F3F3F3F3F3F + Iterated 100 times=A1A31BF7C8CAB9E0 + Iterated 1000 times=F7E4B7B1E23510C1 + +Set 3, vector# 64: + key=40404040404040404040404040404040 + plain=4040404040404040 + cipher=6D55DDBC8DEA95FF + decrypted=4040404040404040 + Iterated 100 times=B25D93C2AB05A407 + Iterated 1000 times=E9B4FEB769DC5164 + +Set 3, vector# 65: + key=41414141414141414141414141414141 + plain=4141414141414141 + cipher=19DF84AC95551003 + decrypted=4141414141414141 + Iterated 100 times=F3B7B874D651B0C1 + Iterated 1000 times=CEAD31BFB196EC40 + +Set 3, vector# 66: + key=42424242424242424242424242424242 + plain=4242424242424242 + cipher=724E7332696D08A7 + decrypted=4242424242424242 + Iterated 100 times=230408DE94AF4851 + Iterated 1000 times=18833E5C5ED786D6 + +Set 3, vector# 67: + key=43434343434343434343434343434343 + plain=4343434343434343 + cipher=B91810B8CDC58FE2 + decrypted=4343434343434343 + Iterated 100 times=23A07A213051D1E8 + Iterated 1000 times=C916B9FCDA721A6A + +Set 3, vector# 68: + key=44444444444444444444444444444444 + plain=4444444444444444 + cipher=06E23526EDCCD0C4 + decrypted=4444444444444444 + Iterated 100 times=B618703EC9F61F9C + Iterated 1000 times=995DE7AB92F8F80E + +Set 3, vector# 69: + key=45454545454545454545454545454545 + plain=4545454545454545 + cipher=EF52491D5468D441 + decrypted=4545454545454545 + Iterated 100 times=C1B909D856C5FFEC + Iterated 1000 times=6535B033E837EF13 + +Set 3, vector# 70: + key=46464646464646464646464646464646 + plain=4646464646464646 + cipher=48019C59E39B90C5 + decrypted=4646464646464646 + Iterated 100 times=2099304DE58AB09A + Iterated 1000 times=D3AA7DEEB598209F + +Set 3, vector# 71: + key=47474747474747474747474747474747 + plain=4747474747474747 + cipher=0544083FB902D8C0 + decrypted=4747474747474747 + Iterated 100 times=78F4BF46C9C74AD1 + Iterated 1000 times=D4E42FC7A708DD03 + +Set 3, vector# 72: + key=48484848484848484848484848484848 + plain=4848484848484848 + cipher=63B15CADA668CE12 + decrypted=4848484848484848 + Iterated 100 times=14361721CBE46E6D + Iterated 1000 times=C4C055F1AB2E1499 + +Set 3, vector# 73: + key=49494949494949494949494949494949 + plain=4949494949494949 + cipher=EACC0C1264171071 + decrypted=4949494949494949 + Iterated 100 times=13E767AD4E4B1953 + Iterated 1000 times=7570779E94106132 + +Set 3, vector# 74: + key=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + plain=4A4A4A4A4A4A4A4A + cipher=9D2B8C0AC605F274 + decrypted=4A4A4A4A4A4A4A4A + Iterated 100 times=E60E8AC0EFC62DB0 + Iterated 1000 times=66676C8CBA146CC6 + +Set 3, vector# 75: + key=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + plain=4B4B4B4B4B4B4B4B + cipher=C90F2F4C98A8FB2A + decrypted=4B4B4B4B4B4B4B4B + Iterated 100 times=BA52C22AC74C50CD + Iterated 1000 times=197A6690469A3027 + +Set 3, vector# 76: + key=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + plain=4C4C4C4C4C4C4C4C + cipher=03481B4828FD1D04 + decrypted=4C4C4C4C4C4C4C4C + Iterated 100 times=8CE5269DA1F0110E + Iterated 1000 times=19A581FD31EC8B62 + +Set 3, vector# 77: + key=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + plain=4D4D4D4D4D4D4D4D + cipher=C78FC45A1DCEA2E2 + decrypted=4D4D4D4D4D4D4D4D + Iterated 100 times=773E66FD6C2E08A6 + Iterated 1000 times=E8F7A9B6AC18C81F + +Set 3, vector# 78: + key=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + plain=4E4E4E4E4E4E4E4E + cipher=DB96D88C3460D801 + decrypted=4E4E4E4E4E4E4E4E + Iterated 100 times=7917869634D54BBB + Iterated 1000 times=16C6AE839E2774BC + +Set 3, vector# 79: + key=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + plain=4F4F4F4F4F4F4F4F + cipher=6C69E720F5105518 + decrypted=4F4F4F4F4F4F4F4F + Iterated 100 times=6EA272483DFF7B5C + Iterated 1000 times=F5B13670596DAF2F + +Set 3, vector# 80: + key=50505050505050505050505050505050 + plain=5050505050505050 + cipher=0D262E418BC893F3 + decrypted=5050505050505050 + Iterated 100 times=416B6966D60870FB + Iterated 1000 times=08FF56D93754D6D0 + +Set 3, vector# 81: + key=51515151515151515151515151515151 + plain=5151515151515151 + cipher=6AD84FD7848A0A5C + decrypted=5151515151515151 + Iterated 100 times=2B018AF9843D6D73 + Iterated 1000 times=5826597362AAB623 + +Set 3, vector# 82: + key=52525252525252525252525252525252 + plain=5252525252525252 + cipher=C365CB35B34B6114 + decrypted=5252525252525252 + Iterated 100 times=70D6A1812318FA52 + Iterated 1000 times=7323A5995C42FB69 + +Set 3, vector# 83: + key=53535353535353535353535353535353 + plain=5353535353535353 + cipher=1155392E877F42A9 + decrypted=5353535353535353 + Iterated 100 times=A7B55CCAA2E6553C + Iterated 1000 times=9C290E630C976E43 + +Set 3, vector# 84: + key=54545454545454545454545454545454 + plain=5454545454545454 + cipher=531BE5F9405DA715 + decrypted=5454545454545454 + Iterated 100 times=B3B5D3FEBDDA3981 + Iterated 1000 times=B0D39C349104E27E + +Set 3, vector# 85: + key=55555555555555555555555555555555 + plain=5555555555555555 + cipher=3BCDD41E6165A5E8 + decrypted=5555555555555555 + Iterated 100 times=186FEF7B7A7283A1 + Iterated 1000 times=D83AB81A85A8046E + +Set 3, vector# 86: + key=56565656565656565656565656565656 + plain=5656565656565656 + cipher=2B1FF5610A19270C + decrypted=5656565656565656 + Iterated 100 times=50953DA8CED81BFB + Iterated 1000 times=F16D0717BEEC9DCF + +Set 3, vector# 87: + key=57575757575757575757575757575757 + plain=5757575757575757 + cipher=D90772CF3F047CFD + decrypted=5757575757575757 + Iterated 100 times=F03447F802AA1DD4 + Iterated 1000 times=F0F8F7D232F0184E + +Set 3, vector# 88: + key=58585858585858585858585858585858 + plain=5858585858585858 + cipher=1BEA27FFB72457B7 + decrypted=5858585858585858 + Iterated 100 times=8707BB9950390709 + Iterated 1000 times=55DFD7E8CAC23EF4 + +Set 3, vector# 89: + key=59595959595959595959595959595959 + plain=5959595959595959 + cipher=85C3E0C429F34C27 + decrypted=5959595959595959 + Iterated 100 times=582111E687076FA8 + Iterated 1000 times=276D78F9EAFB523F + +Set 3, vector# 90: + key=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + plain=5A5A5A5A5A5A5A5A + cipher=F9038021E37C7618 + decrypted=5A5A5A5A5A5A5A5A + Iterated 100 times=3EBAF74BCA504FDC + Iterated 1000 times=248C7EE503B0C31C + +Set 3, vector# 91: + key=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + plain=5B5B5B5B5B5B5B5B + cipher=35BC6FF838DBA32F + decrypted=5B5B5B5B5B5B5B5B + Iterated 100 times=657C416FDD97CE7A + Iterated 1000 times=BDF93AEA60AF226A + +Set 3, vector# 92: + key=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + plain=5C5C5C5C5C5C5C5C + cipher=4927ACC8CE45ECE7 + decrypted=5C5C5C5C5C5C5C5C + Iterated 100 times=A22D60CC973E4E08 + Iterated 1000 times=48F5C04736EF8365 + +Set 3, vector# 93: + key=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + plain=5D5D5D5D5D5D5D5D + cipher=E812EE6E3572985C + decrypted=5D5D5D5D5D5D5D5D + Iterated 100 times=9F5BA471E525635A + Iterated 1000 times=87A04AA69F8B46A2 + +Set 3, vector# 94: + key=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + plain=5E5E5E5E5E5E5E5E + cipher=9BB93A89627BF65F + decrypted=5E5E5E5E5E5E5E5E + Iterated 100 times=EAFA7F35095F910E + Iterated 1000 times=1B48BCB25C51A005 + +Set 3, vector# 95: + key=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + plain=5F5F5F5F5F5F5F5F + cipher=EF12476884CB74CA + decrypted=5F5F5F5F5F5F5F5F + Iterated 100 times=7DB85A3FF7275567 + Iterated 1000 times=DB161940B8063D88 + +Set 3, vector# 96: + key=60606060606060606060606060606060 + plain=6060606060606060 + cipher=1BF17E00C09E7CBF + decrypted=6060606060606060 + Iterated 100 times=60A4B4FFEDD8D09D + Iterated 1000 times=029A5E7D28389D02 + +Set 3, vector# 97: + key=61616161616161616161616161616161 + plain=6161616161616161 + cipher=29932350C098DB5D + decrypted=6161616161616161 + Iterated 100 times=ED8650926D5BE408 + Iterated 1000 times=D005DE4058AA8EE0 + +Set 3, vector# 98: + key=62626262626262626262626262626262 + plain=6262626262626262 + cipher=B476E6499842AC54 + decrypted=6262626262626262 + Iterated 100 times=51124BFBDA8C6C4D + Iterated 1000 times=947748735067EE8E + +Set 3, vector# 99: + key=63636363636363636363636363636363 + plain=6363636363636363 + cipher=5C662C29C1E96056 + decrypted=6363636363636363 + Iterated 100 times=9127F446AFA01F90 + Iterated 1000 times=5FD86B7379C536EC + +Set 3, vector#100: + key=64646464646464646464646464646464 + plain=6464646464646464 + cipher=3AF1703D76442789 + decrypted=6464646464646464 + Iterated 100 times=FA4A770BAFF12B9D + Iterated 1000 times=BE1D0835966297C5 + +Set 3, vector#101: + key=65656565656565656565656565656565 + plain=6565656565656565 + cipher=86405D9B425A8C8C + decrypted=6565656565656565 + Iterated 100 times=A968CE8D91FAED99 + Iterated 1000 times=6CFC8EA18C1B4BB5 + +Set 3, vector#102: + key=66666666666666666666666666666666 + plain=6666666666666666 + cipher=EBBF4810619C2C55 + decrypted=6666666666666666 + Iterated 100 times=4DC02B7CB96869BB + Iterated 1000 times=DFC74FA334B18C6F + +Set 3, vector#103: + key=67676767676767676767676767676767 + plain=6767676767676767 + cipher=F8D1CD7367B21B5D + decrypted=6767676767676767 + Iterated 100 times=0037E1E9B97EF9C3 + Iterated 1000 times=EEFD10CAF2F18319 + +Set 3, vector#104: + key=68686868686868686868686868686868 + plain=6868686868686868 + cipher=9EE703142BF8D7E2 + decrypted=6868686868686868 + Iterated 100 times=4E13D13ABC20616C + Iterated 1000 times=B7019E19F678AEAD + +Set 3, vector#105: + key=69696969696969696969696969696969 + plain=6969696969696969 + cipher=5FDFFFC3AAAB0CB3 + decrypted=6969696969696969 + Iterated 100 times=1F7C5F4EEB57E2C5 + Iterated 1000 times=D23964427BC4C2E8 + +Set 3, vector#106: + key=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + plain=6A6A6A6A6A6A6A6A + cipher=26C940AB13574231 + decrypted=6A6A6A6A6A6A6A6A + Iterated 100 times=E77E2ED0A869672C + Iterated 1000 times=DAF3214A731AEAE0 + +Set 3, vector#107: + key=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + plain=6B6B6B6B6B6B6B6B + cipher=1E2DC77E36A84693 + decrypted=6B6B6B6B6B6B6B6B + Iterated 100 times=DEE6CE5A343AAD73 + Iterated 1000 times=A14CA4D7D4E7A5BC + +Set 3, vector#108: + key=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + plain=6C6C6C6C6C6C6C6C + cipher=0F4FF4D9BC7E2244 + decrypted=6C6C6C6C6C6C6C6C + Iterated 100 times=5DFD406F86064F9D + Iterated 1000 times=6903ECE350FB0EF8 + +Set 3, vector#109: + key=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + plain=6D6D6D6D6D6D6D6D + cipher=A4C9A0D04D3280CD + decrypted=6D6D6D6D6D6D6D6D + Iterated 100 times=940C9CCDC211FA4B + Iterated 1000 times=16C2877110368D1A + +Set 3, vector#110: + key=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + plain=6E6E6E6E6E6E6E6E + cipher=9FAF2C96FE84919D + decrypted=6E6E6E6E6E6E6E6E + Iterated 100 times=79CEC2D4828E2714 + Iterated 1000 times=D5964F85A6E7B786 + +Set 3, vector#111: + key=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + plain=6F6F6F6F6F6F6F6F + cipher=115DBC965E6096C8 + decrypted=6F6F6F6F6F6F6F6F + Iterated 100 times=8BA557D0AF10030F + Iterated 1000 times=F8C9D394FC0DC07D + +Set 3, vector#112: + key=70707070707070707070707070707070 + plain=7070707070707070 + cipher=AF531E9520994017 + decrypted=7070707070707070 + Iterated 100 times=A30EA6C2CBE21FCB + Iterated 1000 times=9AAE92F061E2D684 + +Set 3, vector#113: + key=71717171717171717171717171717171 + plain=7171717171717171 + cipher=B971ADE70E5C89EE + decrypted=7171717171717171 + Iterated 100 times=ACE97DAB7556DC0B + Iterated 1000 times=0F3FBCD85D262DAD + +Set 3, vector#114: + key=72727272727272727272727272727272 + plain=7272727272727272 + cipher=415D81C86AF9C376 + decrypted=7272727272727272 + Iterated 100 times=D9C604DDAA99EDB9 + Iterated 1000 times=E1BAEA2A9C12F809 + +Set 3, vector#115: + key=73737373737373737373737373737373 + plain=7373737373737373 + cipher=8DFB864FDB3C6811 + decrypted=7373737373737373 + Iterated 100 times=681DB6359D38B291 + Iterated 1000 times=B3F74991E4F22FB3 + +Set 3, vector#116: + key=74747474747474747474747474747474 + plain=7474747474747474 + cipher=10B1C170E3398F91 + decrypted=7474747474747474 + Iterated 100 times=E74C05FE35DD3D57 + Iterated 1000 times=35DBF69F914F6667 + +Set 3, vector#117: + key=75757575757575757575757575757575 + plain=7575757575757575 + cipher=CFEF7A1C0218DB1E + decrypted=7575757575757575 + Iterated 100 times=E7CA1157351E69FD + Iterated 1000 times=213D47FF935F29BC + +Set 3, vector#118: + key=76767676767676767676767676767676 + plain=7676767676767676 + cipher=DBAC30A2A40B1B9C + decrypted=7676767676767676 + Iterated 100 times=671DEAD46E44823C + Iterated 1000 times=EDC55E5C2D3247E2 + +Set 3, vector#119: + key=77777777777777777777777777777777 + plain=7777777777777777 + cipher=89D3BF37052162E9 + decrypted=7777777777777777 + Iterated 100 times=8E5B48A6A3BFFC8B + Iterated 1000 times=0B740BCC8FF4BFCF + +Set 3, vector#120: + key=78787878787878787878787878787878 + plain=7878787878787878 + cipher=80D9230BDAEB67DC + decrypted=7878787878787878 + Iterated 100 times=F2C537E049166044 + Iterated 1000 times=CA6B600339E48829 + +Set 3, vector#121: + key=79797979797979797979797979797979 + plain=7979797979797979 + cipher=3440911019AD68D7 + decrypted=7979797979797979 + Iterated 100 times=538F431DB2B41F67 + Iterated 1000 times=34A250D956BF8D45 + +Set 3, vector#122: + key=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + plain=7A7A7A7A7A7A7A7A + cipher=9626FE57596E199E + decrypted=7A7A7A7A7A7A7A7A + Iterated 100 times=4603F97E8B4951C4 + Iterated 1000 times=7ADBC621DF6F4B19 + +Set 3, vector#123: + key=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + plain=7B7B7B7B7B7B7B7B + cipher=DEA0B796624BB5BA + decrypted=7B7B7B7B7B7B7B7B + Iterated 100 times=C7EE24A41267ED74 + Iterated 1000 times=0A34B1517C7C4618 + +Set 3, vector#124: + key=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + plain=7C7C7C7C7C7C7C7C + cipher=E9E40542BDDB3E9D + decrypted=7C7C7C7C7C7C7C7C + Iterated 100 times=277C8F43A5E0A077 + Iterated 1000 times=E4CE03A6753F2BC4 + +Set 3, vector#125: + key=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + plain=7D7D7D7D7D7D7D7D + cipher=8AD99914B354B911 + decrypted=7D7D7D7D7D7D7D7D + Iterated 100 times=6AA910EA596A4386 + Iterated 1000 times=839EAD5AB5187F54 + +Set 3, vector#126: + key=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + plain=7E7E7E7E7E7E7E7E + cipher=6F85B98DD12CB13B + decrypted=7E7E7E7E7E7E7E7E + Iterated 100 times=ECD3B2B72EB3BB15 + Iterated 1000 times=1ED87FEAF3F24593 + +Set 3, vector#127: + key=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + plain=7F7F7F7F7F7F7F7F + cipher=10130DA3C3A23924 + decrypted=7F7F7F7F7F7F7F7F + Iterated 100 times=1EDB5BE02B8D688A + Iterated 1000 times=092CE7D5D91A870C + +Set 3, vector#128: + key=80808080808080808080808080808080 + plain=8080808080808080 + cipher=EFECF25C3C5DC6DB + decrypted=8080808080808080 + Iterated 100 times=E124A41FD4729775 + Iterated 1000 times=F6D3182A26E578F3 + +Set 3, vector#129: + key=81818181818181818181818181818181 + plain=8181818181818181 + cipher=907A46722ED34EC4 + decrypted=8181818181818181 + Iterated 100 times=132C4D48D14C44EA + Iterated 1000 times=E12780150C0DBA6C + +Set 3, vector#130: + key=82828282828282828282828282828282 + plain=8282828282828282 + cipher=752666EB4CAB46EE + decrypted=8282828282828282 + Iterated 100 times=9556EF15A695BC79 + Iterated 1000 times=7C6152A54AE780AB + +Set 3, vector#131: + key=83838383838383838383838383838383 + plain=8383838383838383 + cipher=161BFABD4224C162 + decrypted=8383838383838383 + Iterated 100 times=D88370BC5A1F5F88 + Iterated 1000 times=1B31FC598AC0D43B + +Set 3, vector#132: + key=84848484848484848484848484848484 + plain=8484848484848484 + cipher=215F48699DB44A45 + decrypted=8484848484848484 + Iterated 100 times=3811DB5BED98128B + Iterated 1000 times=F5CB4EAE8383B9E7 + +Set 3, vector#133: + key=85858585858585858585858585858585 + plain=8585858585858585 + cipher=69D901A8A691E661 + decrypted=8585858585858585 + Iterated 100 times=B9FC068174B6AE3B + Iterated 1000 times=852439DE2090B4E6 + +Set 3, vector#134: + key=86868686868686868686868686868686 + plain=8686868686868686 + cipher=CBBF6EEFE6529728 + decrypted=8686868686868686 + Iterated 100 times=AC70BCE24D4BE098 + Iterated 1000 times=CB5DAF26A94072BA + +Set 3, vector#135: + key=87878787878787878787878787878787 + plain=8787878787878787 + cipher=7F26DCF425149823 + decrypted=8787878787878787 + Iterated 100 times=0D3AC81FB6E99FBB + Iterated 1000 times=35949FFCC61B77D6 + +Set 3, vector#136: + key=88888888888888888888888888888888 + plain=8888888888888888 + cipher=762C40C8FADE9D16 + decrypted=8888888888888888 + Iterated 100 times=71A4B7595C400374 + Iterated 1000 times=F48BF433700B4030 + +Set 3, vector#137: + key=89898989898989898989898989898989 + plain=8989898989898989 + cipher=2453CF5D5BF4E463 + decrypted=8989898989898989 + Iterated 100 times=98E2152B91BB7DC3 + Iterated 1000 times=123AA1A3D2CDB81D + +Set 3, vector#138: + key=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + plain=8A8A8A8A8A8A8A8A + cipher=301085E3FDE724E1 + decrypted=8A8A8A8A8A8A8A8A + Iterated 100 times=1835EEA8CAE19602 + Iterated 1000 times=DEC2B8006CA0D643 + +Set 3, vector#139: + key=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + plain=8B8B8B8B8B8B8B8B + cipher=EF4E3E8F1CC6706E + decrypted=8B8B8B8B8B8B8B8B + Iterated 100 times=18B3FA01CA22C2A8 + Iterated 1000 times=CA2409606EB09998 + +Set 3, vector#140: + key=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + plain=8C8C8C8C8C8C8C8C + cipher=720479B024C397EE + decrypted=8C8C8C8C8C8C8C8C + Iterated 100 times=97E249CA62C74D6E + Iterated 1000 times=4C08B66E1B0DD04C + +Set 3, vector#141: + key=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + plain=8D8D8D8D8D8D8D8D + cipher=BEA27E3795063C89 + decrypted=8D8D8D8D8D8D8D8D + Iterated 100 times=2639FB2255661246 + Iterated 1000 times=1E4515D563ED07F6 + +Set 3, vector#142: + key=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + plain=8E8E8E8E8E8E8E8E + cipher=468E5218F1A37611 + decrypted=8E8E8E8E8E8E8E8E + Iterated 100 times=531682548AA923F4 + Iterated 1000 times=F0C04327A2D9D252 + +Set 3, vector#143: + key=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + plain=8F8F8F8F8F8F8F8F + cipher=50ACE16ADF66BFE8 + decrypted=8F8F8F8F8F8F8F8F + Iterated 100 times=5CF1593D341DE034 + Iterated 1000 times=65516D0F9E1D297B + +Set 3, vector#144: + key=90909090909090909090909090909090 + plain=9090909090909090 + cipher=EEA24369A19F6937 + decrypted=9090909090909090 + Iterated 100 times=745AA82F50EFFCF0 + Iterated 1000 times=07362C6B03F23F82 + +Set 3, vector#145: + key=91919191919191919191919191919191 + plain=9191919191919191 + cipher=6050D369017B6E62 + decrypted=9191919191919191 + Iterated 100 times=86313D2B7D71D8EB + Iterated 1000 times=2A69B07A59184879 + +Set 3, vector#146: + key=92929292929292929292929292929292 + plain=9292929292929292 + cipher=5B365F2FB2CD7F32 + decrypted=9292929292929292 + Iterated 100 times=6BF363323DEE05B4 + Iterated 1000 times=E93D788EEFC972E5 + +Set 3, vector#147: + key=93939393939393939393939393939393 + plain=9393939393939393 + cipher=F0B00B264381DDBB + decrypted=9393939393939393 + Iterated 100 times=A202BF9079F9B062 + Iterated 1000 times=96FC131CAF04F107 + +Set 3, vector#148: + key=94949494949494949494949494949494 + plain=9494949494949494 + cipher=E1D23881C957B96C + decrypted=9494949494949494 + Iterated 100 times=211931A5CBC5528C + Iterated 1000 times=5EB35B282B185A43 + +Set 3, vector#149: + key=95959595959595959595959595959595 + plain=9595959595959595 + cipher=D936BF54ECA8BDCE + decrypted=9595959595959595 + Iterated 100 times=1881D12F579698D3 + Iterated 1000 times=250CDEB58CE5151F + +Set 3, vector#150: + key=96969696969696969696969696969696 + plain=9696969696969696 + cipher=A020003C5554F34C + decrypted=9696969696969696 + Iterated 100 times=E083A0B114A81D3A + Iterated 1000 times=2DC69BBD843B3D17 + +Set 3, vector#151: + key=97979797979797979797979797979797 + plain=9797979797979797 + cipher=6118FCEBD407281D + decrypted=9797979797979797 + Iterated 100 times=B1EC2EC543DF9E93 + Iterated 1000 times=48FE61E609875152 + +Set 3, vector#152: + key=98989898989898989898989898989898 + plain=9898989898989898 + cipher=072E328C984DE4A2 + decrypted=9898989898989898 + Iterated 100 times=FFC81E164681063C + Iterated 1000 times=1102EF350D0E7CE6 + +Set 3, vector#153: + key=99999999999999999999999999999999 + plain=9999999999999999 + cipher=1440B7EF9E63D3AA + decrypted=9999999999999999 + Iterated 100 times=B23FD48346979644 + Iterated 1000 times=2038B05CCB4E7390 + +Set 3, vector#154: + key=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + plain=9A9A9A9A9A9A9A9A + cipher=79BFA264BDA57373 + decrypted=9A9A9A9A9A9A9A9A + Iterated 100 times=569731726E051266 + Iterated 1000 times=9303715E73E4B44A + +Set 3, vector#155: + key=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + plain=9B9B9B9B9B9B9B9B + cipher=C50E8FC289BBD876 + decrypted=9B9B9B9B9B9B9B9B + Iterated 100 times=05B588F4500ED462 + Iterated 1000 times=41E2F7CA699D683A + +Set 3, vector#156: + key=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + plain=9C9C9C9C9C9C9C9C + cipher=A399D3D63E169FA9 + decrypted=9C9C9C9C9C9C9C9C + Iterated 100 times=6ED80BB9505FE06F + Iterated 1000 times=A027948C863AC913 + +Set 3, vector#157: + key=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + plain=9D9D9D9D9D9D9D9D + cipher=4B8919B667BD53AB + decrypted=9D9D9D9D9D9D9D9D + Iterated 100 times=AEEDB404257393B2 + Iterated 1000 times=6B88B78CAF981171 + +Set 3, vector#158: + key=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + plain=9E9E9E9E9E9E9E9E + cipher=D66CDCAF3F6724A2 + decrypted=9E9E9E9E9E9E9E9E + Iterated 100 times=1279AF6D92A41BF7 + Iterated 1000 times=2FFA21BFA755711F + +Set 3, vector#159: + key=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + plain=9F9F9F9F9F9F9F9F + cipher=E40E81FF3F618340 + decrypted=9F9F9F9F9F9F9F9F + Iterated 100 times=9F5B4B0012272F62 + Iterated 1000 times=FD65A182D7C762FD + +Set 3, vector#160: + key=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + plain=A0A0A0A0A0A0A0A0 + cipher=10EDB8977B348B35 + decrypted=A0A0A0A0A0A0A0A0 + Iterated 100 times=8247A5C008D8AA98 + Iterated 1000 times=24E9E6BF47F9C277 + +Set 3, vector#161: + key=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + plain=A1A1A1A1A1A1A1A1 + cipher=6446C5769D8409A0 + decrypted=A1A1A1A1A1A1A1A1 + Iterated 100 times=150580CAF6A06EF1 + Iterated 1000 times=E4B7434DA3AE5FFA + +Set 3, vector#162: + key=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + plain=A2A2A2A2A2A2A2A2 + cipher=17ED1191CA8D67A3 + decrypted=A2A2A2A2A2A2A2A2 + Iterated 100 times=60A45B8E1ADA9CA5 + Iterated 1000 times=785FB5596074B95D + +Set 3, vector#163: + key=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + plain=A3A3A3A3A3A3A3A3 + cipher=B6D8533731BA1318 + decrypted=A3A3A3A3A3A3A3A3 + Iterated 100 times=5DD29F3368C1B1F7 + Iterated 1000 times=B70A3FB8C9107C9A + +Set 3, vector#164: + key=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + plain=A4A4A4A4A4A4A4A4 + cipher=CA439007C7245CD0 + decrypted=A4A4A4A4A4A4A4A4 + Iterated 100 times=9A83BE9022683185 + Iterated 1000 times=4206C5159F50DD95 + +Set 3, vector#165: + key=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + plain=A5A5A5A5A5A5A5A5 + cipher=06FC7FDE1C8389E7 + decrypted=A5A5A5A5A5A5A5A5 + Iterated 100 times=C14508B435AFB023 + Iterated 1000 times=DB73811AFC4F3CE3 + +Set 3, vector#166: + key=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + plain=A6A6A6A6A6A6A6A6 + cipher=7A3C1F3BD60CB3D8 + decrypted=A6A6A6A6A6A6A6A6 + Iterated 100 times=A7DEEE1978F89057 + Iterated 1000 times=D89287061504ADC0 + +Set 3, vector#167: + key=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + plain=A7A7A7A7A7A7A7A7 + cipher=E415D80048DBA848 + decrypted=A7A7A7A7A7A7A7A7 + Iterated 100 times=78F84466AFC6F8F6 + Iterated 1000 times=AA202817353DC10B + +Set 3, vector#168: + key=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + plain=A8A8A8A8A8A8A8A8 + cipher=26F88D30C0FB8302 + decrypted=A8A8A8A8A8A8A8A8 + Iterated 100 times=0FCBB807FD55E22B + Iterated 1000 times=0F07082DCD0FE7B1 + +Set 3, vector#169: + key=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + plain=A9A9A9A9A9A9A9A9 + cipher=D4E00A9EF5E6D8F3 + decrypted=A9A9A9A9A9A9A9A9 + Iterated 100 times=AF6AC2573127E404 + Iterated 1000 times=0E92F8E841136230 + +Set 3, vector#170: + key=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + plain=AAAAAAAAAAAAAAAA + cipher=C4322BE19E9A5A17 + decrypted=AAAAAAAAAAAAAAAA + Iterated 100 times=E7901084858D7C5E + Iterated 1000 times=27C547E57A57FB91 + +Set 3, vector#171: + key=ABABABABABABABABABABABABABABABAB + plain=ABABABABABABABAB + cipher=ACE41A06BFA258EA + decrypted=ABABABABABABABAB + Iterated 100 times=4C4A2C014225C67E + Iterated 1000 times=4F2C63CB6EFB1D81 + +Set 3, vector#172: + key=ACACACACACACACACACACACACACACACAC + plain=ACACACACACACACAC + cipher=EEAAC6D17880BD56 + decrypted=ACACACACACACACAC + Iterated 100 times=584AA3355D19AAC3 + Iterated 1000 times=63D6F19CF36891BC + +Set 3, vector#173: + key=ADADADADADADADADADADADADADADADAD + plain=ADADADADADADADAD + cipher=3C9A34CA4CB49EEB + decrypted=ADADADADADADADAD + Iterated 100 times=8F295E7EDCE705AD + Iterated 1000 times=8CDC5A66A3BD0496 + +Set 3, vector#174: + key=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + plain=AEAEAEAEAEAEAEAE + cipher=9527B0287B75F5A3 + decrypted=AEAEAEAEAEAEAEAE + Iterated 100 times=D4FE75067BC2928C + Iterated 1000 times=A7D9A68C9D5549DC + +Set 3, vector#175: + key=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + plain=AFAFAFAFAFAFAFAF + cipher=F2D9D1BE74376C0C + decrypted=AFAFAFAFAFAFAFAF + Iterated 100 times=BE94969929F78F04 + Iterated 1000 times=F700A926C8AB292F + +Set 3, vector#176: + key=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + plain=B0B0B0B0B0B0B0B0 + cipher=939618DF0AEFAAE7 + decrypted=B0B0B0B0B0B0B0B0 + Iterated 100 times=915D8DB7C20084A3 + Iterated 1000 times=0A4EC98FA69250D0 + +Set 3, vector#177: + key=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + plain=B1B1B1B1B1B1B1B1 + cipher=24692773CB9F27FE + decrypted=B1B1B1B1B1B1B1B1 + Iterated 100 times=86E87969CB2AB444 + Iterated 1000 times=E939517C61D88B43 + +Set 3, vector#178: + key=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + plain=B2B2B2B2B2B2B2B2 + cipher=38703BA5E2315D1D + decrypted=B2B2B2B2B2B2B2B2 + Iterated 100 times=88C1990293D1F759 + Iterated 1000 times=1708564953E737E0 + +Set 3, vector#179: + key=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + plain=B3B3B3B3B3B3B3B3 + cipher=FCB7E4B7D702E2FB + decrypted=B3B3B3B3B3B3B3B3 + Iterated 100 times=731AD9625E0FEEF1 + Iterated 1000 times=E65A7E02CE13749D + +Set 3, vector#180: + key=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + plain=B4B4B4B4B4B4B4B4 + cipher=36F0D0B3675704D5 + decrypted=B4B4B4B4B4B4B4B4 + Iterated 100 times=45AD3DD538B3AF32 + Iterated 1000 times=E685996FB965CFD8 + +Set 3, vector#181: + key=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + plain=B5B5B5B5B5B5B5B5 + cipher=62D473F539FA0D8B + decrypted=B5B5B5B5B5B5B5B5 + Iterated 100 times=19F1753F1039D24F + Iterated 1000 times=9998937345EB9339 + +Set 3, vector#182: + key=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + plain=B6B6B6B6B6B6B6B6 + cipher=1533F3ED9BE8EF8E + decrypted=B6B6B6B6B6B6B6B6 + Iterated 100 times=EC189852B1B4E6AC + Iterated 1000 times=8A8F88616BEF9ECD + +Set 3, vector#183: + key=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + plain=B7B7B7B7B7B7B7B7 + cipher=9C4EA352599731ED + decrypted=B7B7B7B7B7B7B7B7 + Iterated 100 times=EBC9E8DE341B9192 + Iterated 1000 times=3B3FAA0E54D1EB66 + +Set 3, vector#184: + key=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + plain=B8B8B8B8B8B8B8B8 + cipher=FABBF7C046FD273F + decrypted=B8B8B8B8B8B8B8B8 + Iterated 100 times=870B40B93638B52E + Iterated 1000 times=2B1BD03858F722FC + +Set 3, vector#185: + key=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + plain=B9B9B9B9B9B9B9B9 + cipher=B7FE63A61C646F3A + decrypted=B9B9B9B9B9B9B9B9 + Iterated 100 times=DF66CFB21A754F65 + Iterated 1000 times=2C5582114A67DF60 + +Set 3, vector#186: + key=BABABABABABABABABABABABABABABABA + plain=BABABABABABABABA + cipher=10ADB6E2AB972BBE + decrypted=BABABABABABABABA + Iterated 100 times=3E46F627A93A0013 + Iterated 1000 times=9ACA4FCC17C810EC + +Set 3, vector#187: + key=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + plain=BBBBBBBBBBBBBBBB + cipher=F91DCAD912332F3B + decrypted=BBBBBBBBBBBBBBBB + Iterated 100 times=49E78FC13609E063 + Iterated 1000 times=66A218546D0707F1 + +Set 3, vector#188: + key=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + plain=BCBCBCBCBCBCBCBC + cipher=46E7EF47323A701D + decrypted=BCBCBCBCBCBCBCBC + Iterated 100 times=DC5F85DECFAE2E17 + Iterated 1000 times=36E94603258DE595 + +Set 3, vector#189: + key=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + plain=BDBDBDBDBDBDBDBD + cipher=8DB18CCD9692F758 + decrypted=BDBDBDBDBDBDBDBD + Iterated 100 times=DCFBF7216B50B7AE + Iterated 1000 times=E77CC1A3A1287929 + +Set 3, vector#190: + key=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + plain=BEBEBEBEBEBEBEBE + cipher=E6207B536AAAEFFC + decrypted=BEBEBEBEBEBEBEBE + Iterated 100 times=0C48478B29AE4F3E + Iterated 1000 times=3152CE404E6913BF + +Set 3, vector#191: + key=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + plain=BFBFBFBFBFBFBFBF + cipher=92AA224372156A00 + decrypted=BFBFBFBFBFBFBFBF + Iterated 100 times=4DA26C3D54FA5BF8 + Iterated 1000 times=164B01489623AE9B + +Set 3, vector#192: + key=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + plain=C0C0C0C0C0C0C0C0 + cipher=A3B357885B1E16D2 + decrypted=C0C0C0C0C0C0C0C0 + Iterated 100 times=5E5CE4083735461F + Iterated 1000 times=081B484E1DCAEF3E + +Set 3, vector#193: + key=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + plain=C1C1C1C1C1C1C1C1 + cipher=169F7629C970C1E5 + decrypted=C1C1C1C1C1C1C1C1 + Iterated 100 times=ABD4BB3FAA4469CB + Iterated 1000 times=916880243A186FCB + +Set 3, vector#194: + key=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + plain=C2C2C2C2C2C2C2C2 + cipher=62F44B247CF1348C + decrypted=C2C2C2C2C2C2C2C2 + Iterated 100 times=5E0C315B4C263365 + Iterated 1000 times=E510A9828B6F1387 + +Set 3, vector#195: + key=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + plain=C3C3C3C3C3C3C3C3 + cipher=AE0FEEB0495932C8 + decrypted=C3C3C3C3C3C3C3C3 + Iterated 100 times=CF0C8C5182828604 + Iterated 1000 times=F04F4B1AE34B890B + +Set 3, vector#196: + key=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + plain=C4C4C4C4C4C4C4C4 + cipher=72DAF2A7C9EA6803 + decrypted=C4C4C4C4C4C4C4C4 + Iterated 100 times=4390B27175DEB080 + Iterated 1000 times=048C1FE88609A336 + +Set 3, vector#197: + key=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + plain=C5C5C5C5C5C5C5C5 + cipher=4FB5D5536DA544F4 + decrypted=C5C5C5C5C5C5C5C5 + Iterated 100 times=A128E4C976737D98 + Iterated 1000 times=D8B1C94C7C209236 + +Set 3, vector#198: + key=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + plain=C6C6C6C6C6C6C6C6 + cipher=1DD4E65AAF7988B4 + decrypted=C6C6C6C6C6C6C6C6 + Iterated 100 times=2A7F23AE01CFFDD6 + Iterated 1000 times=64F9D45C03430258 + +Set 3, vector#199: + key=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + plain=C7C7C7C7C7C7C7C7 + cipher=76BF084C1535A6C6 + decrypted=C7C7C7C7C7C7C7C7 + Iterated 100 times=AF173D2156728B85 + Iterated 1000 times=0B71BF7ED4312134 + +Set 3, vector#200: + key=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + plain=C8C8C8C8C8C8C8C8 + cipher=AFEC35B09D36315F + decrypted=C8C8C8C8C8C8C8C8 + Iterated 100 times=39E749D9280A6281 + Iterated 1000 times=DBFFB7E205E244D4 + +Set 3, vector#201: + key=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + plain=C9C9C9C9C9C9C9C9 + cipher=C8078A6148818403 + decrypted=C9C9C9C9C9C9C9C9 + Iterated 100 times=501381467CF791D6 + Iterated 1000 times=EC23BAE33F766878 + +Set 3, vector#202: + key=CACACACACACACACACACACACACACACACA + plain=CACACACACACACACA + cipher=4DA91CB4124B67FE + decrypted=CACACACACACACACA + Iterated 100 times=1BDF87A8EF8D0991 + Iterated 1000 times=29253121FB35F5CB + +Set 3, vector#203: + key=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + plain=CBCBCBCBCBCBCBCB + cipher=2DABFEB346794C3D + decrypted=CBCBCBCBCBCBCBCB + Iterated 100 times=F7AAF64AE3C8A47F + Iterated 1000 times=CE16A9944CF1F7E1 + +Set 3, vector#204: + key=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + plain=CCCCCCCCCCCCCCCC + cipher=FBCD12C790D21CD7 + decrypted=CCCCCCCCCCCCCCCC + Iterated 100 times=7294E708D94A42CF + Iterated 1000 times=0248929C10FAE522 + +Set 3, vector#205: + key=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + plain=CDCDCDCDCDCDCDCD + cipher=536873DB879CC770 + decrypted=CDCDCDCDCDCDCDCD + Iterated 100 times=CAC1B6F8A53E6CA9 + Iterated 1000 times=8B679494B758F464 + +Set 3, vector#206: + key=CECECECECECECECECECECECECECECECE + plain=CECECECECECECECE + cipher=9AA159D7309DA7A0 + decrypted=CECECECECECECECE + Iterated 100 times=1E0AAD85559A20D4 + Iterated 1000 times=C071914F896C6A60 + +Set 3, vector#207: + key=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + plain=CFCFCFCFCFCFCFCF + cipher=0B844B9D8C4EA14A + decrypted=CFCFCFCFCFCFCFCF + Iterated 100 times=8940C3D3F2E3B42F + Iterated 1000 times=C34230543E0CDE28 + +Set 3, vector#208: + key=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + plain=D0D0D0D0D0D0D0D0 + cipher=3BBD84CE539E68C4 + decrypted=D0D0D0D0D0D0D0D0 + Iterated 100 times=A16A00B5E4B8F362 + Iterated 1000 times=076A09BFBBF856EE + +Set 3, vector#209: + key=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + plain=D1D1D1D1D1D1D1D1 + cipher=CF3E4F3E026E2C8E + decrypted=D1D1D1D1D1D1D1D1 + Iterated 100 times=AE589D8E52F1C5A0 + Iterated 1000 times=2C20397C54982774 + +Set 3, vector#210: + key=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + plain=D2D2D2D2D2D2D2D2 + cipher=82F85885D542AF58 + decrypted=D2D2D2D2D2D2D2D2 + Iterated 100 times=D4411D76000AA37A + Iterated 1000 times=AFE3D98397DD7F4A + +Set 3, vector#211: + key=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + plain=D3D3D3D3D3D3D3D3 + cipher=22D334D6493B3CB6 + decrypted=D3D3D3D3D3D3D3D3 + Iterated 100 times=2C49065E427494EA + Iterated 1000 times=E57B8518FB451E8A + +Set 3, vector#212: + key=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + plain=D4D4D4D4D4D4D4D4 + cipher=47E9CB3E3154D673 + decrypted=D4D4D4D4D4D4D4D4 + Iterated 100 times=A21FF12CA3238BD7 + Iterated 1000 times=21E69CC1880B24E0 + +Set 3, vector#213: + key=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + plain=D5D5D5D5D5D5D5D5 + cipher=2352BCC708ADC7E9 + decrypted=D5D5D5D5D5D5D5D5 + Iterated 100 times=1E806D40132F54A2 + Iterated 1000 times=7FC540256EA7F53E + +Set 3, vector#214: + key=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + plain=D6D6D6D6D6D6D6D6 + cipher=8C0F3BA0C8601980 + decrypted=D6D6D6D6D6D6D6D6 + Iterated 100 times=39EB9BEB28BC65A6 + Iterated 1000 times=B7EBEE17F45EB353 + +Set 3, vector#215: + key=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + plain=D7D7D7D7D7D7D7D7 + cipher=EE5E9FD70CEF00E9 + decrypted=D7D7D7D7D7D7D7D7 + Iterated 100 times=37819558FDB55DA2 + Iterated 1000 times=54A2B8E91BB9E6C6 + +Set 3, vector#216: + key=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + plain=D8D8D8D8D8D8D8D8 + cipher=DEF6BDA6CABF9547 + decrypted=D8D8D8D8D8D8D8D8 + Iterated 100 times=F9D98BBA295D4D93 + Iterated 1000 times=670C1A86D2A6894E + +Set 3, vector#217: + key=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + plain=D9D9D9D9D9D9D9D9 + cipher=4DADD04A0EA70F20 + decrypted=D9D9D9D9D9D9D9D9 + Iterated 100 times=F545A7D8D7F3CD47 + Iterated 1000 times=5E4B6232F846EFCF + +Set 3, vector#218: + key=DADADADADADADADADADADADADADADADA + plain=DADADADADADADADA + cipher=C1AA16689EE1B482 + decrypted=DADADADADADADADA + Iterated 100 times=EDDC1A877973E109 + Iterated 1000 times=18D782701F5BC7C1 + +Set 3, vector#219: + key=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + plain=DBDBDBDBDBDBDBDB + cipher=F45FC26193E69AEE + decrypted=DBDBDBDBDBDBDBDB + Iterated 100 times=510AD6B806F7BAF5 + Iterated 1000 times=D9F80406813DB4A0 + +Set 3, vector#220: + key=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + plain=DCDCDCDCDCDCDCDC + cipher=D0CFBB937CEDBFB5 + decrypted=DCDCDCDCDCDCDCDC + Iterated 100 times=A01046D5099A9CC5 + Iterated 1000 times=6E9A31352EA9C090 + +Set 3, vector#221: + key=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + plain=DDDDDDDDDDDDDDDD + cipher=F0752004EE23D87B + decrypted=DDDDDDDDDDDDDDDD + Iterated 100 times=F82A568A205CF4BF + Iterated 1000 times=36B419D8522B3E0B + +Set 3, vector#222: + key=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + plain=DEDEDEDEDEDEDEDE + cipher=77A791E28AA464A5 + decrypted=DEDEDEDEDEDEDEDE + Iterated 100 times=AC2DB86C28ABF410 + Iterated 1000 times=1B18CF9378AD8579 + +Set 3, vector#223: + key=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + plain=DFDFDFDFDFDFDFDF + cipher=E7562A7F56FF4966 + decrypted=DFDFDFDFDFDFDFDF + Iterated 100 times=21188ABBADBFDE7B + Iterated 1000 times=4722B27D4AA0ECB4 + +Set 3, vector#224: + key=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + plain=E0E0E0E0E0E0E0E0 + cipher=B026913F2CCFB109 + decrypted=E0E0E0E0E0E0E0E0 + Iterated 100 times=EB72D9FA3361A708 + Iterated 1000 times=44047E11F1C1416B + +Set 3, vector#225: + key=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + plain=E1E1E1E1E1E1E1E1 + cipher=0DB572DDCE388AC7 + decrypted=E1E1E1E1E1E1E1E1 + Iterated 100 times=A5B0C6070E83F938 + Iterated 1000 times=AC7D81230AD59023 + +Set 3, vector#226: + key=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + plain=E2E2E2E2E2E2E2E2 + cipher=D9FA6595F0C094CA + decrypted=E2E2E2E2E2E2E2E2 + Iterated 100 times=07C4796C2F59E696 + Iterated 1000 times=6CEC5AC39FAE424C + +Set 3, vector#227: + key=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + plain=E3E3E3E3E3E3E3E3 + cipher=ADE4804C4BE4486E + decrypted=E3E3E3E3E3E3E3E3 + Iterated 100 times=06EEA346611D62E8 + Iterated 1000 times=BCF94D053EE22F2A + +Set 3, vector#228: + key=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + plain=E4E4E4E4E4E4E4E4 + cipher=007B81F520E6D7DA + decrypted=E4E4E4E4E4E4E4E4 + Iterated 100 times=310AD55F09FBEDF8 + Iterated 1000 times=BAF5AF88901E2AD2 + +Set 3, vector#229: + key=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + plain=E5E5E5E5E5E5E5E5 + cipher=961AEB77BFC10B3C + decrypted=E5E5E5E5E5E5E5E5 + Iterated 100 times=4E63FF1FEB069184 + Iterated 1000 times=25189FC04ED3B861 + +Set 3, vector#230: + key=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + plain=E6E6E6E6E6E6E6E6 + cipher=8A8DD870C9B14AF2 + decrypted=E6E6E6E6E6E6E6E6 + Iterated 100 times=C4259776E0BEE1D8 + Iterated 1000 times=5208CA02F7FB142D + +Set 3, vector#231: + key=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + plain=E7E7E7E7E7E7E7E7 + cipher=3CC02E14B6349B25 + decrypted=E7E7E7E7E7E7E7E7 + Iterated 100 times=F92F2CF7BC897D40 + Iterated 1000 times=6A8C6E2B57191DEF + +Set 3, vector#232: + key=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + plain=E8E8E8E8E8E8E8E8 + cipher=BAD3EE68BDDB9607 + decrypted=E8E8E8E8E8E8E8E8 + Iterated 100 times=DF81B49E79C5E656 + Iterated 1000 times=F1F641415F626C60 + +Set 3, vector#233: + key=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + plain=E9E9E9E9E9E9E9E9 + cipher=DFF918E93BDAD292 + decrypted=E9E9E9E9E9E9E9E9 + Iterated 100 times=0C8EB2D653121D23 + Iterated 1000 times=067C671574D53E3D + +Set 3, vector#234: + key=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + plain=EAEAEAEAEAEAEAEA + cipher=8FE559C7CD6FA56D + decrypted=EAEAEAEAEAEAEAEA + Iterated 100 times=F98A3CAD3494D973 + Iterated 1000 times=EE88C13101CBEE0C + +Set 3, vector#235: + key=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + plain=EBEBEBEBEBEBEBEB + cipher=C88480835C1A444C + decrypted=EBEBEBEBEBEBEBEB + Iterated 100 times=05AAA2D794EEA90D + Iterated 1000 times=B8D801D6EAF580E9 + +Set 3, vector#236: + key=ECECECECECECECECECECECECECECECEC + plain=ECECECECECECECEC + cipher=D6EE30A16B2CC01E + decrypted=ECECECECECECECEC + Iterated 100 times=4A92DE9CCA043A16 + Iterated 1000 times=7FE650510DA82B8F + +Set 3, vector#237: + key=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + plain=EDEDEDEDEDEDEDED + cipher=6932D887B2EA9C1A + decrypted=EDEDEDEDEDEDEDED + Iterated 100 times=588ED5B75D7827AA + Iterated 1000 times=C9A4FED91478578C + +Set 3, vector#238: + key=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + plain=EEEEEEEEEEEEEEEE + cipher=0BFC865461F13ACC + decrypted=EEEEEEEEEEEEEEEE + Iterated 100 times=875EDA82DCCD2B8E + Iterated 1000 times=C26284F5B1F1CA89 + +Set 3, vector#239: + key=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + plain=EFEFEFEFEFEFEFEF + cipher=228AEA0D403E807A + decrypted=EFEFEFEFEFEFEFEF + Iterated 100 times=A61B4DF5D461EC5B + Iterated 1000 times=ACD1CB4D9F1E8E47 + +Set 3, vector#240: + key=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + plain=F0F0F0F0F0F0F0F0 + cipher=2A2891F65BB8173C + decrypted=F0F0F0F0F0F0F0F0 + Iterated 100 times=D7FBEF924B9DBCE0 + Iterated 1000 times=D9EB0B9EF30F5BD0 + +Set 3, vector#241: + key=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + plain=F1F1F1F1F1F1F1F1 + cipher=5D1B8FAF7839494B + decrypted=F1F1F1F1F1F1F1F1 + Iterated 100 times=F7FF951E56078674 + Iterated 1000 times=D07242D7A2ACAC38 + +Set 3, vector#242: + key=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + plain=F2F2F2F2F2F2F2F2 + cipher=1C0A9280EECF5D48 + decrypted=F2F2F2F2F2F2F2F2 + Iterated 100 times=8F139650FA13BB89 + Iterated 1000 times=9B0E0B4C799A3812 + +Set 3, vector#243: + key=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + plain=F3F3F3F3F3F3F3F3 + cipher=6CBCE951BBC30F74 + decrypted=F3F3F3F3F3F3F3F3 + Iterated 100 times=129D99F0D7BCBC32 + Iterated 1000 times=C24BD701D79829DF + +Set 3, vector#244: + key=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + plain=F4F4F4F4F4F4F4F4 + cipher=9CA66E96BD08BC70 + decrypted=F4F4F4F4F4F4F4F4 + Iterated 100 times=8B084C0FA81AC1B6 + Iterated 1000 times=2233042573AC5B8D + +Set 3, vector#245: + key=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + plain=F5F5F5F5F5F5F5F5 + cipher=F5D779FCFBB28BF3 + decrypted=F5F5F5F5F5F5F5F5 + Iterated 100 times=3B34FF71C5F59D56 + Iterated 1000 times=407049FF9C2C8C51 + +Set 3, vector#246: + key=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + plain=F6F6F6F6F6F6F6F6 + cipher=0FEC6BBF9B859184 + decrypted=F6F6F6F6F6F6F6F6 + Iterated 100 times=42CB12CA843C6C74 + Iterated 1000 times=C6BB5B0DCEDC6036 + +Set 3, vector#247: + key=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + plain=F7F7F7F7F7F7F7F7 + cipher=EF88D2BF052DBDA8 + decrypted=F7F7F7F7F7F7F7F7 + Iterated 100 times=24CDEB52C4CA3A8D + Iterated 1000 times=B175BF935B0143AD + +Set 3, vector#248: + key=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + plain=F8F8F8F8F8F8F8F8 + cipher=39ADBDDB7363090D + decrypted=F8F8F8F8F8F8F8F8 + Iterated 100 times=21C5E8CE5E2CCDB4 + Iterated 1000 times=3643DA284291B2BC + +Set 3, vector#249: + key=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + plain=F9F9F9F9F9F9F9F9 + cipher=C0AEAF445F7E2A7A + decrypted=F9F9F9F9F9F9F9F9 + Iterated 100 times=2E3A9FF184E7944E + Iterated 1000 times=D8ADD64A2DAC9AC9 + +Set 3, vector#250: + key=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + plain=FAFAFAFAFAFAFAFA + cipher=C66F54067298D4E9 + decrypted=FAFAFAFAFAFAFAFA + Iterated 100 times=01B55881017AE5A7 + Iterated 1000 times=BCB275378350A650 + +Set 3, vector#251: + key=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + plain=FBFBFBFBFBFBFBFB + cipher=E0BA8F4488AAF97C + decrypted=FBFBFBFBFBFBFBFB + Iterated 100 times=36A03F5910917129 + Iterated 1000 times=C8C52214145F197E + +Set 3, vector#252: + key=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + plain=FCFCFCFCFCFCFCFC + cipher=67B36E2875D9631C + decrypted=FCFCFCFCFCFCFCFC + Iterated 100 times=0B928013B6E2FB64 + Iterated 1000 times=E4AB2DCB637F4B0D + +Set 3, vector#253: + key=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + plain=FDFDFDFDFDFDFDFD + cipher=1ED83D49E267191D + decrypted=FDFDFDFDFDFDFDFD + Iterated 100 times=4A8A081FC944218D + Iterated 1000 times=109914EF6ADC7044 + +Set 3, vector#254: + key=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + plain=FEFEFEFEFEFEFEFE + cipher=66B2B23EA84693AD + decrypted=FEFEFEFEFEFEFEFE + Iterated 100 times=FEFEFEFEFEFEFEFE + Iterated 1000 times=FEFEFEFEFEFEFEFE + +Set 3, vector#255: + key=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + plain=FFFFFFFFFFFFFFFF + cipher=7359B2163E4EDC58 + decrypted=FFFFFFFFFFFFFFFF + Iterated 100 times=FFFFFFFFFFFFFFFF + Iterated 1000 times=FFFFFFFFFFFFFFFF + +Test vectors -- set 4 +===================== + +Set 4, vector# 0: + key=000102030405060708090A0B0C0D0E0F + plain=0011223344556677 + cipher=D117BD6373549FAA + decrypted=0011223344556677 + Iterated 100 times=705BB45A5AD8C981 + Iterated 1000 times=04F4032EDBF3A82E + +Set 4, vector# 1: + key=2BD6459F82C5B300952C49104881FF48 + plain=EA024714AD5C4D84 + cipher=C616ACE843958247 + decrypted=EA024714AD5C4D84 + Iterated 100 times=722DC5D81027B931 + Iterated 1000 times=B76BBEBC4AF4E909 + +Test vectors -- set 5 +===================== + +Set 5, vector# 0: + key=80000000000000000000000000000000 + cipher=0000000000000000 + plain=DA57FF9FEB5B0FD8 + encrypted=0000000000000000 + +Set 5, vector# 1: + key=40000000000000000000000000000000 + cipher=0000000000000000 + plain=5795D061F2419F90 + encrypted=0000000000000000 + +Set 5, vector# 2: + key=20000000000000000000000000000000 + cipher=0000000000000000 + plain=9D066810D8D6D84D + encrypted=0000000000000000 + +Set 5, vector# 3: + key=10000000000000000000000000000000 + cipher=0000000000000000 + plain=F39C7D0D8B2FF44A + encrypted=0000000000000000 + +Set 5, vector# 4: + key=08000000000000000000000000000000 + cipher=0000000000000000 + plain=566B6F52151F776A + encrypted=0000000000000000 + +Set 5, vector# 5: + key=04000000000000000000000000000000 + cipher=0000000000000000 + plain=E4A9EEA6CFDB9917 + encrypted=0000000000000000 + +Set 5, vector# 6: + key=02000000000000000000000000000000 + cipher=0000000000000000 + plain=FF983B14FCD6ADE9 + encrypted=0000000000000000 + +Set 5, vector# 7: + key=01000000000000000000000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 8: + key=00800000000000000000000000000000 + cipher=0000000000000000 + plain=DFF79393B4580F80 + encrypted=0000000000000000 + +Set 5, vector# 9: + key=00400000000000000000000000000000 + cipher=0000000000000000 + plain=84C0A40ED8441427 + encrypted=0000000000000000 + +Set 5, vector# 10: + key=00200000000000000000000000000000 + cipher=0000000000000000 + plain=411B9A6087DFE219 + encrypted=0000000000000000 + +Set 5, vector# 11: + key=00100000000000000000000000000000 + cipher=0000000000000000 + plain=907AD63DBFB7571A + encrypted=0000000000000000 + +Set 5, vector# 12: + key=00080000000000000000000000000000 + cipher=0000000000000000 + plain=826418106CF88347 + encrypted=0000000000000000 + +Set 5, vector# 13: + key=00040000000000000000000000000000 + cipher=0000000000000000 + plain=6F3CED87D699B9AC + encrypted=0000000000000000 + +Set 5, vector# 14: + key=00020000000000000000000000000000 + cipher=0000000000000000 + plain=76DB52A37405FA99 + encrypted=0000000000000000 + +Set 5, vector# 15: + key=00010000000000000000000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 16: + key=00008000000000000000000000000000 + cipher=0000000000000000 + plain=9857AEFDF8ABDBE9 + encrypted=0000000000000000 + +Set 5, vector# 17: + key=00004000000000000000000000000000 + cipher=0000000000000000 + plain=D3B617EE70B888CD + encrypted=0000000000000000 + +Set 5, vector# 18: + key=00002000000000000000000000000000 + cipher=0000000000000000 + plain=85B0F41BCA5D7B75 + encrypted=0000000000000000 + +Set 5, vector# 19: + key=00001000000000000000000000000000 + cipher=0000000000000000 + plain=CD929B702651D431 + encrypted=0000000000000000 + +Set 5, vector# 20: + key=00000800000000000000000000000000 + cipher=0000000000000000 + plain=AD1906D9F499035C + encrypted=0000000000000000 + +Set 5, vector# 21: + key=00000400000000000000000000000000 + cipher=0000000000000000 + plain=640B4F0D0E3354DD + encrypted=0000000000000000 + +Set 5, vector# 22: + key=00000200000000000000000000000000 + cipher=0000000000000000 + plain=C30DE1A80A534B43 + encrypted=0000000000000000 + +Set 5, vector# 23: + key=00000100000000000000000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 24: + key=00000080000000000000000000000000 + cipher=0000000000000000 + plain=025F9F9ABC4803B7 + encrypted=0000000000000000 + +Set 5, vector# 25: + key=00000040000000000000000000000000 + cipher=0000000000000000 + plain=9286C0BCE786EFA5 + encrypted=0000000000000000 + +Set 5, vector# 26: + key=00000020000000000000000000000000 + cipher=0000000000000000 + plain=AA561B54DA693658 + encrypted=0000000000000000 + +Set 5, vector# 27: + key=00000010000000000000000000000000 + cipher=0000000000000000 + plain=31F134A9EFE427C6 + encrypted=0000000000000000 + +Set 5, vector# 28: + key=00000008000000000000000000000000 + cipher=0000000000000000 + plain=D7A9580DE0825B86 + encrypted=0000000000000000 + +Set 5, vector# 29: + key=00000004000000000000000000000000 + cipher=0000000000000000 + plain=F7686E3721BD658F + encrypted=0000000000000000 + +Set 5, vector# 30: + key=00000002000000000000000000000000 + cipher=0000000000000000 + plain=D99C3AB7F0DB3D26 + encrypted=0000000000000000 + +Set 5, vector# 31: + key=00000001000000000000000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 32: + key=00000000800000000000000000000000 + cipher=0000000000000000 + plain=C1CC299FE90AB2CD + encrypted=0000000000000000 + +Set 5, vector# 33: + key=00000000400000000000000000000000 + cipher=0000000000000000 + plain=1AE7A240B92D3168 + encrypted=0000000000000000 + +Set 5, vector# 34: + key=00000000200000000000000000000000 + cipher=0000000000000000 + plain=45A6900BE2CB4960 + encrypted=0000000000000000 + +Set 5, vector# 35: + key=00000000100000000000000000000000 + cipher=0000000000000000 + plain=16856E3A57B30C78 + encrypted=0000000000000000 + +Set 5, vector# 36: + key=00000000080000000000000000000000 + cipher=0000000000000000 + plain=4325026E0F7ED453 + encrypted=0000000000000000 + +Set 5, vector# 37: + key=00000000040000000000000000000000 + cipher=0000000000000000 + plain=302A70968C71F276 + encrypted=0000000000000000 + +Set 5, vector# 38: + key=00000000020000000000000000000000 + cipher=0000000000000000 + plain=B184084C644A99AC + encrypted=0000000000000000 + +Set 5, vector# 39: + key=00000000010000000000000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 40: + key=00000000008000000000000000000000 + cipher=0000000000000000 + plain=70D43D03A10574B0 + encrypted=0000000000000000 + +Set 5, vector# 41: + key=00000000004000000000000000000000 + cipher=0000000000000000 + plain=D5678F354638E045 + encrypted=0000000000000000 + +Set 5, vector# 42: + key=00000000002000000000000000000000 + cipher=0000000000000000 + plain=C342F56A0D0FD0C2 + encrypted=0000000000000000 + +Set 5, vector# 43: + key=00000000001000000000000000000000 + cipher=0000000000000000 + plain=560EE41CA74C17F1 + encrypted=0000000000000000 + +Set 5, vector# 44: + key=00000000000800000000000000000000 + cipher=0000000000000000 + plain=DAE4E8F08141BD10 + encrypted=0000000000000000 + +Set 5, vector# 45: + key=00000000000400000000000000000000 + cipher=0000000000000000 + plain=502B2013C61EDA52 + encrypted=0000000000000000 + +Set 5, vector# 46: + key=00000000000200000000000000000000 + cipher=0000000000000000 + plain=96431510AEC954A4 + encrypted=0000000000000000 + +Set 5, vector# 47: + key=00000000000100000000000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 48: + key=00000000000080000000000000000000 + cipher=0000000000000000 + plain=2121A67D6EFF7F5A + encrypted=0000000000000000 + +Set 5, vector# 49: + key=00000000000040000000000000000000 + cipher=0000000000000000 + plain=048C710E6DA7EF8C + encrypted=0000000000000000 + +Set 5, vector# 50: + key=00000000000020000000000000000000 + cipher=0000000000000000 + plain=5BFBC53A54764ED7 + encrypted=0000000000000000 + +Set 5, vector# 51: + key=00000000000010000000000000000000 + cipher=0000000000000000 + plain=158D435E220C922C + encrypted=0000000000000000 + +Set 5, vector# 52: + key=00000000000008000000000000000000 + cipher=0000000000000000 + plain=B7D8D74C49E0660D + encrypted=0000000000000000 + +Set 5, vector# 53: + key=00000000000004000000000000000000 + cipher=0000000000000000 + plain=E2D94E707BE75A54 + encrypted=0000000000000000 + +Set 5, vector# 54: + key=00000000000002000000000000000000 + cipher=0000000000000000 + plain=E1A1509DC541834D + encrypted=0000000000000000 + +Set 5, vector# 55: + key=00000000000001000000000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 56: + key=00000000000000800000000000000000 + cipher=0000000000000000 + plain=6720D8EEAFE5C6B1 + encrypted=0000000000000000 + +Set 5, vector# 57: + key=00000000000000400000000000000000 + cipher=0000000000000000 + plain=213A31DDC879A70B + encrypted=0000000000000000 + +Set 5, vector# 58: + key=00000000000000200000000000000000 + cipher=0000000000000000 + plain=D2A56646A4826E3A + encrypted=0000000000000000 + +Set 5, vector# 59: + key=00000000000000100000000000000000 + cipher=0000000000000000 + plain=D05B5E2242F778E6 + encrypted=0000000000000000 + +Set 5, vector# 60: + key=00000000000000080000000000000000 + cipher=0000000000000000 + plain=2EE9B36ED024A286 + encrypted=0000000000000000 + +Set 5, vector# 61: + key=00000000000000040000000000000000 + cipher=0000000000000000 + plain=D3718332FB54B325 + encrypted=0000000000000000 + +Set 5, vector# 62: + key=00000000000000020000000000000000 + cipher=0000000000000000 + plain=F4E8E8506BFC10CD + encrypted=0000000000000000 + +Set 5, vector# 63: + key=00000000000000010000000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 64: + key=00000000000000008000000000000000 + cipher=0000000000000000 + plain=7605108FE800BFC2 + encrypted=0000000000000000 + +Set 5, vector# 65: + key=00000000000000004000000000000000 + cipher=0000000000000000 + plain=BEF26554A87D31CA + encrypted=0000000000000000 + +Set 5, vector# 66: + key=00000000000000002000000000000000 + cipher=0000000000000000 + plain=C8792977908537AE + encrypted=0000000000000000 + +Set 5, vector# 67: + key=00000000000000001000000000000000 + cipher=0000000000000000 + plain=E1B4F21640B32E2B + encrypted=0000000000000000 + +Set 5, vector# 68: + key=00000000000000000800000000000000 + cipher=0000000000000000 + plain=BECAF85030732B4E + encrypted=0000000000000000 + +Set 5, vector# 69: + key=00000000000000000400000000000000 + cipher=0000000000000000 + plain=4751B42D141F293A + encrypted=0000000000000000 + +Set 5, vector# 70: + key=00000000000000000200000000000000 + cipher=0000000000000000 + plain=CB1128D74ACDAB97 + encrypted=0000000000000000 + +Set 5, vector# 71: + key=00000000000000000100000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 72: + key=00000000000000000080000000000000 + cipher=0000000000000000 + plain=E91AE7393E513596 + encrypted=0000000000000000 + +Set 5, vector# 73: + key=00000000000000000040000000000000 + cipher=0000000000000000 + plain=B13EE720E82DEFEB + encrypted=0000000000000000 + +Set 5, vector# 74: + key=00000000000000000020000000000000 + cipher=0000000000000000 + plain=1611EF717656607F + encrypted=0000000000000000 + +Set 5, vector# 75: + key=00000000000000000010000000000000 + cipher=0000000000000000 + plain=F089A10E9D373457 + encrypted=0000000000000000 + +Set 5, vector# 76: + key=00000000000000000008000000000000 + cipher=0000000000000000 + plain=C8F04A7D88668F6E + encrypted=0000000000000000 + +Set 5, vector# 77: + key=00000000000000000004000000000000 + cipher=0000000000000000 + plain=F13BC69B4C7559D6 + encrypted=0000000000000000 + +Set 5, vector# 78: + key=00000000000000000002000000000000 + cipher=0000000000000000 + plain=40904F7CFEAEA62A + encrypted=0000000000000000 + +Set 5, vector# 79: + key=00000000000000000001000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 80: + key=00000000000000000000800000000000 + cipher=0000000000000000 + plain=7FA2CF7AD245761C + encrypted=0000000000000000 + +Set 5, vector# 81: + key=00000000000000000000400000000000 + cipher=0000000000000000 + plain=6BB22B78C880B54A + encrypted=0000000000000000 + +Set 5, vector# 82: + key=00000000000000000000200000000000 + cipher=0000000000000000 + plain=E06DAF6A4D6EF17C + encrypted=0000000000000000 + +Set 5, vector# 83: + key=00000000000000000000100000000000 + cipher=0000000000000000 + plain=48CCB9AD15162786 + encrypted=0000000000000000 + +Set 5, vector# 84: + key=00000000000000000000080000000000 + cipher=0000000000000000 + plain=CD09EC71D4C1C022 + encrypted=0000000000000000 + +Set 5, vector# 85: + key=00000000000000000000040000000000 + cipher=0000000000000000 + plain=BBAB47104D24C033 + encrypted=0000000000000000 + +Set 5, vector# 86: + key=00000000000000000000020000000000 + cipher=0000000000000000 + plain=ED32808EAD1A266E + encrypted=0000000000000000 + +Set 5, vector# 87: + key=00000000000000000000010000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 88: + key=00000000000000000000008000000000 + cipher=0000000000000000 + plain=0CCC05B14F27F987 + encrypted=0000000000000000 + +Set 5, vector# 89: + key=00000000000000000000004000000000 + cipher=0000000000000000 + plain=FE6BEBEF858AF1A1 + encrypted=0000000000000000 + +Set 5, vector# 90: + key=00000000000000000000002000000000 + cipher=0000000000000000 + plain=FD1F5F8EA5A190BA + encrypted=0000000000000000 + +Set 5, vector# 91: + key=00000000000000000000001000000000 + cipher=0000000000000000 + plain=4637FC1BC98F25F0 + encrypted=0000000000000000 + +Set 5, vector# 92: + key=00000000000000000000000800000000 + cipher=0000000000000000 + plain=3FE6F6AD18ACF6E7 + encrypted=0000000000000000 + +Set 5, vector# 93: + key=00000000000000000000000400000000 + cipher=0000000000000000 + plain=889D25FF79A0D480 + encrypted=0000000000000000 + +Set 5, vector# 94: + key=00000000000000000000000200000000 + cipher=0000000000000000 + plain=8111AA14058A7B4F + encrypted=0000000000000000 + +Set 5, vector# 95: + key=00000000000000000000000100000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 96: + key=00000000000000000000000080000000 + cipher=0000000000000000 + plain=FB9EA4EFC5CBAB46 + encrypted=0000000000000000 + +Set 5, vector# 97: + key=00000000000000000000000040000000 + cipher=0000000000000000 + plain=1A3EB35BB8BD9A96 + encrypted=0000000000000000 + +Set 5, vector# 98: + key=00000000000000000000000020000000 + cipher=0000000000000000 + plain=04C23519844CE732 + encrypted=0000000000000000 + +Set 5, vector# 99: + key=00000000000000000000000010000000 + cipher=0000000000000000 + plain=514C0AF6D4C4A583 + encrypted=0000000000000000 + +Set 5, vector#100: + key=00000000000000000000000008000000 + cipher=0000000000000000 + plain=E5A9E38003A5A0FD + encrypted=0000000000000000 + +Set 5, vector#101: + key=00000000000000000000000004000000 + cipher=0000000000000000 + plain=51761B01FECA876D + encrypted=0000000000000000 + +Set 5, vector#102: + key=00000000000000000000000002000000 + cipher=0000000000000000 + plain=F722F923F9F6C622 + encrypted=0000000000000000 + +Set 5, vector#103: + key=00000000000000000000000001000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector#104: + key=00000000000000000000000000800000 + cipher=0000000000000000 + plain=A12BED08CE68B298 + encrypted=0000000000000000 + +Set 5, vector#105: + key=00000000000000000000000000400000 + cipher=0000000000000000 + plain=A2BA3FA2C1EFEAB4 + encrypted=0000000000000000 + +Set 5, vector#106: + key=00000000000000000000000000200000 + cipher=0000000000000000 + plain=286759B4F8ED50F6 + encrypted=0000000000000000 + +Set 5, vector#107: + key=00000000000000000000000000100000 + cipher=0000000000000000 + plain=2FDE94B161738560 + encrypted=0000000000000000 + +Set 5, vector#108: + key=00000000000000000000000000080000 + cipher=0000000000000000 + plain=50B43ACBA1FD9286 + encrypted=0000000000000000 + +Set 5, vector#109: + key=00000000000000000000000000040000 + cipher=0000000000000000 + plain=EC731D4BC5AB33B1 + encrypted=0000000000000000 + +Set 5, vector#110: + key=00000000000000000000000000020000 + cipher=0000000000000000 + plain=F44F61B48A20F1C2 + encrypted=0000000000000000 + +Set 5, vector#111: + key=00000000000000000000000000010000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector#112: + key=00000000000000000000000000008000 + cipher=0000000000000000 + plain=29DF89DF50CDFB80 + encrypted=0000000000000000 + +Set 5, vector#113: + key=00000000000000000000000000004000 + cipher=0000000000000000 + plain=D6727FB1F7C408AE + encrypted=0000000000000000 + +Set 5, vector#114: + key=00000000000000000000000000002000 + cipher=0000000000000000 + plain=690BBFF89A03A095 + encrypted=0000000000000000 + +Set 5, vector#115: + key=00000000000000000000000000001000 + cipher=0000000000000000 + plain=5B6396188ED174B2 + encrypted=0000000000000000 + +Set 5, vector#116: + key=00000000000000000000000000000800 + cipher=0000000000000000 + plain=6EA871DAF2FDC6C1 + encrypted=0000000000000000 + +Set 5, vector#117: + key=00000000000000000000000000000400 + cipher=0000000000000000 + plain=3090CC5A5C023A02 + encrypted=0000000000000000 + +Set 5, vector#118: + key=00000000000000000000000000000200 + cipher=0000000000000000 + plain=8325ABACB401D8EF + encrypted=0000000000000000 + +Set 5, vector#119: + key=00000000000000000000000000000100 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector#120: + key=00000000000000000000000000000080 + cipher=0000000000000000 + plain=D456C7E236A5207D + encrypted=0000000000000000 + +Set 5, vector#121: + key=00000000000000000000000000000040 + cipher=0000000000000000 + plain=6094342BC1112F3F + encrypted=0000000000000000 + +Set 5, vector#122: + key=00000000000000000000000000000020 + cipher=0000000000000000 + plain=718003D196BA774F + encrypted=0000000000000000 + +Set 5, vector#123: + key=00000000000000000000000000000010 + cipher=0000000000000000 + plain=62F73BD59C8EC040 + encrypted=0000000000000000 + +Set 5, vector#124: + key=00000000000000000000000000000008 + cipher=0000000000000000 + plain=823D33ED9FACA0F8 + encrypted=0000000000000000 + +Set 5, vector#125: + key=00000000000000000000000000000004 + cipher=0000000000000000 + plain=C995FB36D9080235 + encrypted=0000000000000000 + +Set 5, vector#126: + key=00000000000000000000000000000002 + cipher=0000000000000000 + plain=45E6CDE8BDF9980E + encrypted=0000000000000000 + +Set 5, vector#127: + key=00000000000000000000000000000001 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Test vectors -- set 6 +===================== + +Set 6, vector# 0: + key=00000000000000000000000000000000 + cipher=8000000000000000 + plain=95F8A5E5DD31D900 + encrypted=8000000000000000 + +Set 6, vector# 1: + key=00000000000000000000000000000000 + cipher=4000000000000000 + plain=DD7F121CA5015619 + encrypted=4000000000000000 + +Set 6, vector# 2: + key=00000000000000000000000000000000 + cipher=2000000000000000 + plain=2E8653104F3834EA + encrypted=2000000000000000 + +Set 6, vector# 3: + key=00000000000000000000000000000000 + cipher=1000000000000000 + plain=4BD388FF6CD81D4F + encrypted=1000000000000000 + +Set 6, vector# 4: + key=00000000000000000000000000000000 + cipher=0800000000000000 + plain=20B9E767B2FB1456 + encrypted=0800000000000000 + +Set 6, vector# 5: + key=00000000000000000000000000000000 + cipher=0400000000000000 + plain=55579380D77138EF + encrypted=0400000000000000 + +Set 6, vector# 6: + key=00000000000000000000000000000000 + cipher=0200000000000000 + plain=6CC5DEFAAF04512F + encrypted=0200000000000000 + +Set 6, vector# 7: + key=00000000000000000000000000000000 + cipher=0100000000000000 + plain=0D9F279BA5D87260 + encrypted=0100000000000000 + +Set 6, vector# 8: + key=00000000000000000000000000000000 + cipher=0080000000000000 + plain=D9031B0271BD5A0A + encrypted=0080000000000000 + +Set 6, vector# 9: + key=00000000000000000000000000000000 + cipher=0040000000000000 + plain=424250B37C3DD951 + encrypted=0040000000000000 + +Set 6, vector# 10: + key=00000000000000000000000000000000 + cipher=0020000000000000 + plain=B8061B7ECD9A21E5 + encrypted=0020000000000000 + +Set 6, vector# 11: + key=00000000000000000000000000000000 + cipher=0010000000000000 + plain=F15D0F286B65BD28 + encrypted=0010000000000000 + +Set 6, vector# 12: + key=00000000000000000000000000000000 + cipher=0008000000000000 + plain=ADD0CC8D6E5DEBA1 + encrypted=0008000000000000 + +Set 6, vector# 13: + key=00000000000000000000000000000000 + cipher=0004000000000000 + plain=E6D5F82752AD63D1 + encrypted=0004000000000000 + +Set 6, vector# 14: + key=00000000000000000000000000000000 + cipher=0002000000000000 + plain=ECBFE3BD3F591A5E + encrypted=0002000000000000 + +Set 6, vector# 15: + key=00000000000000000000000000000000 + cipher=0001000000000000 + plain=F356834379D165CD + encrypted=0001000000000000 + +Set 6, vector# 16: + key=00000000000000000000000000000000 + cipher=0000800000000000 + plain=2B9F982F20037FA9 + encrypted=0000800000000000 + +Set 6, vector# 17: + key=00000000000000000000000000000000 + cipher=0000400000000000 + plain=889DE068A16F0BE6 + encrypted=0000400000000000 + +Set 6, vector# 18: + key=00000000000000000000000000000000 + cipher=0000200000000000 + plain=E19E275D846A1298 + encrypted=0000200000000000 + +Set 6, vector# 19: + key=00000000000000000000000000000000 + cipher=0000100000000000 + plain=329A8ED523D71AEC + encrypted=0000100000000000 + +Set 6, vector# 20: + key=00000000000000000000000000000000 + cipher=0000080000000000 + plain=E7FCE22557D23C97 + encrypted=0000080000000000 + +Set 6, vector# 21: + key=00000000000000000000000000000000 + cipher=0000040000000000 + plain=12A9F5817FF2D65D + encrypted=0000040000000000 + +Set 6, vector# 22: + key=00000000000000000000000000000000 + cipher=0000020000000000 + plain=A484C3AD38DC9C19 + encrypted=0000020000000000 + +Set 6, vector# 23: + key=00000000000000000000000000000000 + cipher=0000010000000000 + plain=FBE00A8A1EF8AD72 + encrypted=0000010000000000 + +Set 6, vector# 24: + key=00000000000000000000000000000000 + cipher=0000008000000000 + plain=750D079407521363 + encrypted=0000008000000000 + +Set 6, vector# 25: + key=00000000000000000000000000000000 + cipher=0000004000000000 + plain=64FEED9C724C2FAF + encrypted=0000004000000000 + +Set 6, vector# 26: + key=00000000000000000000000000000000 + cipher=0000002000000000 + plain=F02B263B328E2B60 + encrypted=0000002000000000 + +Set 6, vector# 27: + key=00000000000000000000000000000000 + cipher=0000001000000000 + plain=9D64555A9A10B852 + encrypted=0000001000000000 + +Set 6, vector# 28: + key=00000000000000000000000000000000 + cipher=0000000800000000 + plain=D106FF0BED5255D7 + encrypted=0000000800000000 + +Set 6, vector# 29: + key=00000000000000000000000000000000 + cipher=0000000400000000 + plain=E1652C6B138C64A5 + encrypted=0000000400000000 + +Set 6, vector# 30: + key=00000000000000000000000000000000 + cipher=0000000200000000 + plain=E428581186EC8F46 + encrypted=0000000200000000 + +Set 6, vector# 31: + key=00000000000000000000000000000000 + cipher=0000000100000000 + plain=AEB5F5EDE22D1A36 + encrypted=0000000100000000 + +Set 6, vector# 32: + key=00000000000000000000000000000000 + cipher=0000000080000000 + plain=E943D7568AEC0C5C + encrypted=0000000080000000 + +Set 6, vector# 33: + key=00000000000000000000000000000000 + cipher=0000000040000000 + plain=DF98C8276F54B04B + encrypted=0000000040000000 + +Set 6, vector# 34: + key=00000000000000000000000000000000 + cipher=0000000020000000 + plain=B160E4680F6C696F + encrypted=0000000020000000 + +Set 6, vector# 35: + key=00000000000000000000000000000000 + cipher=0000000010000000 + plain=FA0752B07D9C4AB8 + encrypted=0000000010000000 + +Set 6, vector# 36: + key=00000000000000000000000000000000 + cipher=0000000008000000 + plain=CA3A2B036DBC8502 + encrypted=0000000008000000 + +Set 6, vector# 37: + key=00000000000000000000000000000000 + cipher=0000000004000000 + plain=5E0905517BB59BCF + encrypted=0000000004000000 + +Set 6, vector# 38: + key=00000000000000000000000000000000 + cipher=0000000002000000 + plain=814EEB3B91D90726 + encrypted=0000000002000000 + +Set 6, vector# 39: + key=00000000000000000000000000000000 + cipher=0000000001000000 + plain=4D49DB1532919C9F + encrypted=0000000001000000 + +Set 6, vector# 40: + key=00000000000000000000000000000000 + cipher=0000000000800000 + plain=25EB5FC3F8CF0621 + encrypted=0000000000800000 + +Set 6, vector# 41: + key=00000000000000000000000000000000 + cipher=0000000000400000 + plain=AB6A20C0620D1C6F + encrypted=0000000000400000 + +Set 6, vector# 42: + key=00000000000000000000000000000000 + cipher=0000000000200000 + plain=79E90DBC98F92CCA + encrypted=0000000000200000 + +Set 6, vector# 43: + key=00000000000000000000000000000000 + cipher=0000000000100000 + plain=866ECEDD8072BB0E + encrypted=0000000000100000 + +Set 6, vector# 44: + key=00000000000000000000000000000000 + cipher=0000000000080000 + plain=8B54536F2F3E64A8 + encrypted=0000000000080000 + +Set 6, vector# 45: + key=00000000000000000000000000000000 + cipher=0000000000040000 + plain=EA51D3975595B86B + encrypted=0000000000040000 + +Set 6, vector# 46: + key=00000000000000000000000000000000 + cipher=0000000000020000 + plain=CAFFC6AC4542DE31 + encrypted=0000000000020000 + +Set 6, vector# 47: + key=00000000000000000000000000000000 + cipher=0000000000010000 + plain=8DD45A2DDF90796C + encrypted=0000000000010000 + +Set 6, vector# 48: + key=00000000000000000000000000000000 + cipher=0000000000008000 + plain=1029D55E880EC2D0 + encrypted=0000000000008000 + +Set 6, vector# 49: + key=00000000000000000000000000000000 + cipher=0000000000004000 + plain=5D86CB23639DBEA9 + encrypted=0000000000004000 + +Set 6, vector# 50: + key=00000000000000000000000000000000 + cipher=0000000000002000 + plain=1D1CA853AE7C0C5F + encrypted=0000000000002000 + +Set 6, vector# 51: + key=00000000000000000000000000000000 + cipher=0000000000001000 + plain=CE332329248F3228 + encrypted=0000000000001000 + +Set 6, vector# 52: + key=00000000000000000000000000000000 + cipher=0000000000000800 + plain=8405D1ABE24FB942 + encrypted=0000000000000800 + +Set 6, vector# 53: + key=00000000000000000000000000000000 + cipher=0000000000000400 + plain=E643D78090CA4207 + encrypted=0000000000000400 + +Set 6, vector# 54: + key=00000000000000000000000000000000 + cipher=0000000000000200 + plain=48221B9937748A23 + encrypted=0000000000000200 + +Set 6, vector# 55: + key=00000000000000000000000000000000 + cipher=0000000000000100 + plain=DD7C0BBD61FAFD54 + encrypted=0000000000000100 + +Set 6, vector# 56: + key=00000000000000000000000000000000 + cipher=0000000000000080 + plain=2FBC291A570DB5C4 + encrypted=0000000000000080 + +Set 6, vector# 57: + key=00000000000000000000000000000000 + cipher=0000000000000040 + plain=E07C30D7E4E26E12 + encrypted=0000000000000040 + +Set 6, vector# 58: + key=00000000000000000000000000000000 + cipher=0000000000000020 + plain=0953E2258E8E90A1 + encrypted=0000000000000020 + +Set 6, vector# 59: + key=00000000000000000000000000000000 + cipher=0000000000000010 + plain=5B711BC4CEEBF2EE + encrypted=0000000000000010 + +Set 6, vector# 60: + key=00000000000000000000000000000000 + cipher=0000000000000008 + plain=CC083F1E6D9E85F6 + encrypted=0000000000000008 + +Set 6, vector# 61: + key=00000000000000000000000000000000 + cipher=0000000000000004 + plain=D2FD8867D50D2DFE + encrypted=0000000000000004 + +Set 6, vector# 62: + key=00000000000000000000000000000000 + cipher=0000000000000002 + plain=06E7EA22CE92708F + encrypted=0000000000000002 + +Set 6, vector# 63: + key=00000000000000000000000000000000 + cipher=0000000000000001 + plain=166B40B44ABA4BD6 + encrypted=0000000000000001 + +Test vectors -- set 7 +===================== + +Set 7, vector# 0: + key=00000000000000000000000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 7, vector# 1: + key=01010101010101010101010101010101 + cipher=0101010101010101 + plain=994D4DC157B96C52 + encrypted=0101010101010101 + +Set 7, vector# 2: + key=02020202020202020202020202020202 + cipher=0202020202020202 + plain=F09FA63CCDFA2BAD + encrypted=0202020202020202 + +Set 7, vector# 3: + key=03030303030303030303030303030303 + cipher=0303030303030303 + plain=918C7AEFF893AD51 + encrypted=0303030303030303 + +Set 7, vector# 4: + key=04040404040404040404040404040404 + cipher=0404040404040404 + plain=8991C0C48CF0AF81 + encrypted=0404040404040404 + +Set 7, vector# 5: + key=05050505050505050505050505050505 + cipher=0505050505050505 + plain=25676954529031CB + encrypted=0505050505050505 + +Set 7, vector# 6: + key=06060606060606060606060606060606 + cipher=0606060606060606 + plain=AAEF9DD11DE74546 + encrypted=0606060606060606 + +Set 7, vector# 7: + key=07070707070707070707070707070707 + cipher=0707070707070707 + plain=8DFFA9A0B2F2548B + encrypted=0707070707070707 + +Set 7, vector# 8: + key=08080808080808080808080808080808 + cipher=0808080808080808 + plain=D932847445DA4FD8 + encrypted=0808080808080808 + +Set 7, vector# 9: + key=09090909090909090909090909090909 + cipher=0909090909090909 + plain=5110E59AAEC7335B + encrypted=0909090909090909 + +Set 7, vector# 10: + key=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + cipher=0A0A0A0A0A0A0A0A + plain=CE681111BA3B7B11 + encrypted=0A0A0A0A0A0A0A0A + +Set 7, vector# 11: + key=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + cipher=0B0B0B0B0B0B0B0B + plain=B5AD1C8C49965CCA + encrypted=0B0B0B0B0B0B0B0B + +Set 7, vector# 12: + key=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + cipher=0C0C0C0C0C0C0C0C + plain=9F9958F3E2767EA7 + encrypted=0C0C0C0C0C0C0C0C + +Set 7, vector# 13: + key=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + cipher=0D0D0D0D0D0D0D0D + plain=149D6492A0D809EE + encrypted=0D0D0D0D0D0D0D0D + +Set 7, vector# 14: + key=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + cipher=0E0E0E0E0E0E0E0E + plain=F1EDC5B1F98F6313 + encrypted=0E0E0E0E0E0E0E0E + +Set 7, vector# 15: + key=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + cipher=0F0F0F0F0F0F0F0F + plain=57057A2B85367BED + encrypted=0F0F0F0F0F0F0F0F + +Set 7, vector# 16: + key=10101010101010101010101010101010 + cipher=1010101010101010 + plain=B376C874E6F987D0 + encrypted=1010101010101010 + +Set 7, vector# 17: + key=11111111111111111111111111111111 + cipher=1111111111111111 + plain=237B2304C393D3AC + encrypted=1111111111111111 + +Set 7, vector# 18: + key=12121212121212121212121212121212 + cipher=1212121212121212 + plain=A2F68A96740E3F2D + encrypted=1212121212121212 + +Set 7, vector# 19: + key=13131313131313131313131313131313 + cipher=1313131313131313 + plain=1D779D8AB79E89EF + encrypted=1313131313131313 + +Set 7, vector# 20: + key=14141414141414141414141414141414 + cipher=1414141414141414 + plain=1E59064FFEA191EF + encrypted=1414141414141414 + +Set 7, vector# 21: + key=15151515151515151515151515151515 + cipher=1515151515151515 + plain=53B4DAE06761FFA1 + encrypted=1515151515151515 + +Set 7, vector# 22: + key=16161616161616161616161616161616 + cipher=1616161616161616 + plain=550FB1A5507A49ED + encrypted=1616161616161616 + +Set 7, vector# 23: + key=17171717171717171717171717171717 + cipher=1717171717171717 + plain=64FFAFFBB608B002 + encrypted=1717171717171717 + +Set 7, vector# 24: + key=18181818181818181818181818181818 + cipher=1818181818181818 + plain=2EF928E663986E1C + encrypted=1818181818181818 + +Set 7, vector# 25: + key=19191919191919191919191919191919 + cipher=1919191919191919 + plain=9C7EB95CB182233E + encrypted=1919191919191919 + +Set 7, vector# 26: + key=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + cipher=1A1A1A1A1A1A1A1A + plain=B62CFEB46DD18577 + encrypted=1A1A1A1A1A1A1A1A + +Set 7, vector# 27: + key=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + cipher=1B1B1B1B1B1B1B1B + plain=8F9F498CBA6DF908 + encrypted=1B1B1B1B1B1B1B1B + +Set 7, vector# 28: + key=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + cipher=1C1C1C1C1C1C1C1C + plain=3017633FB8197C95 + encrypted=1C1C1C1C1C1C1C1C + +Set 7, vector# 29: + key=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + cipher=1D1D1D1D1D1D1D1D + plain=079FA37ED80BA064 + encrypted=1D1D1D1D1D1D1D1D + +Set 7, vector# 30: + key=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + cipher=1E1E1E1E1E1E1E1E + plain=C8040684A207D1B5 + encrypted=1E1E1E1E1E1E1E1E + +Set 7, vector# 31: + key=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + cipher=1F1F1F1F1F1F1F1F + plain=61B145D97C491523 + encrypted=1F1F1F1F1F1F1F1F + +Set 7, vector# 32: + key=20202020202020202020202020202020 + cipher=2020202020202020 + plain=9073C79790306F7D + encrypted=2020202020202020 + +Set 7, vector# 33: + key=21212121212121212121212121212121 + cipher=2121212121212121 + plain=A80B2BFEBE10A4DA + encrypted=2121212121212121 + +Set 7, vector# 34: + key=22222222222222222222222222222222 + cipher=2222222222222222 + plain=D105F93010B3B6F5 + encrypted=2222222222222222 + +Set 7, vector# 35: + key=23232323232323232323232323232323 + cipher=2323232323232323 + plain=8F521B75483A0B94 + encrypted=2323232323232323 + +Set 7, vector# 36: + key=24242424242424242424242424242424 + cipher=2424242424242424 + plain=C8F028A3EE60B289 + encrypted=2424242424242424 + +Set 7, vector# 37: + key=25252525252525252525252525252525 + cipher=2525252525252525 + plain=DC8D45D7517FB58C + encrypted=2525252525252525 + +Set 7, vector# 38: + key=26262626262626262626262626262626 + cipher=2626262626262626 + plain=A827E72CD184555E + encrypted=2626262626262626 + +Set 7, vector# 39: + key=27272727272727272727272727272727 + cipher=2727272727272727 + plain=11A586CDC15F4B62 + encrypted=2727272727272727 + +Set 7, vector# 40: + key=28282828282828282828282828282828 + cipher=2828282828282828 + plain=6066EF85FF1F8A46 + encrypted=2828282828282828 + +Set 7, vector# 41: + key=29292929292929292929292929292929 + cipher=2929292929292929 + plain=64F017F35A3F50D1 + encrypted=2929292929292929 + +Set 7, vector# 42: + key=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + cipher=2A2A2A2A2A2A2A2A + plain=19D9B4C305AB5AC4 + encrypted=2A2A2A2A2A2A2A2A + +Set 7, vector# 43: + key=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + cipher=2B2B2B2B2B2B2B2B + plain=D13BE446B15397C0 + encrypted=2B2B2B2B2B2B2B2B + +Set 7, vector# 44: + key=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + cipher=2C2C2C2C2C2C2C2C + plain=A1AAAC9B6D3DAB0A + encrypted=2C2C2C2C2C2C2C2C + +Set 7, vector# 45: + key=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + cipher=2D2D2D2D2D2D2D2D + plain=60EF54CED063EEAC + encrypted=2D2D2D2D2D2D2D2D + +Set 7, vector# 46: + key=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + cipher=2E2E2E2E2E2E2E2E + plain=659EF16E9EFFC16D + encrypted=2E2E2E2E2E2E2E2E + +Set 7, vector# 47: + key=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + cipher=2F2F2F2F2F2F2F2F + plain=7F991C35E71F8D95 + encrypted=2F2F2F2F2F2F2F2F + +Set 7, vector# 48: + key=30303030303030303030303030303030 + cipher=3030303030303030 + plain=335AC5E54AA4C5FA + encrypted=3030303030303030 + +Set 7, vector# 49: + key=31313131313131313131313131313131 + cipher=3131313131313131 + plain=6D0A7ECC98A019A6 + encrypted=3131313131313131 + +Set 7, vector# 50: + key=32323232323232323232323232323232 + cipher=3232323232323232 + plain=DB71F2F904CE4467 + encrypted=3232323232323232 + +Set 7, vector# 51: + key=33333333333333333333333333333333 + cipher=3333333333333333 + plain=19B6A607F49D7EBF + encrypted=3333333333333333 + +Set 7, vector# 52: + key=34343434343434343434343434343434 + cipher=3434343434343434 + plain=086DA2A46819B2EC + encrypted=3434343434343434 + +Set 7, vector# 53: + key=35353535353535353535353535353535 + cipher=3535353535353535 + plain=BFBEB4BB6C8BA8D3 + encrypted=3535353535353535 + +Set 7, vector# 54: + key=36363636363636363636363636363636 + cipher=3636363636363636 + plain=C0EA975A16621073 + encrypted=3636363636363636 + +Set 7, vector# 55: + key=37373737373737373737373737373737 + cipher=3737373737373737 + plain=B53D58A1CAD79864 + encrypted=3737373737373737 + +Set 7, vector# 56: + key=38383838383838383838383838383838 + cipher=3838383838383838 + plain=B7F074CB09D21987 + encrypted=3838383838383838 + +Set 7, vector# 57: + key=39393939393939393939393939393939 + cipher=3939393939393939 + plain=E6F6D6E5DCCAFBAF + encrypted=3939393939393939 + +Set 7, vector# 58: + key=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + cipher=3A3A3A3A3A3A3A3A + plain=428395367157DB18 + encrypted=3A3A3A3A3A3A3A3A + +Set 7, vector# 59: + key=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + cipher=3B3B3B3B3B3B3B3B + plain=B71F8389C32F928E + encrypted=3B3B3B3B3B3B3B3B + +Set 7, vector# 60: + key=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + cipher=3C3C3C3C3C3C3C3C + plain=290DDC00BAFBF6C0 + encrypted=3C3C3C3C3C3C3C3C + +Set 7, vector# 61: + key=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + cipher=3D3D3D3D3D3D3D3D + plain=96F8EC19C7C00F69 + encrypted=3D3D3D3D3D3D3D3D + +Set 7, vector# 62: + key=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + cipher=3E3E3E3E3E3E3E3E + plain=E1E2B92BEC7B6EDA + encrypted=3E3E3E3E3E3E3E3E + +Set 7, vector# 63: + key=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + cipher=3F3F3F3F3F3F3F3F + plain=4FCD12FF1A0F4828 + encrypted=3F3F3F3F3F3F3F3F + +Set 7, vector# 64: + key=40404040404040404040404040404040 + cipher=4040404040404040 + plain=FDA1AEAC4103BEC7 + encrypted=4040404040404040 + +Set 7, vector# 65: + key=41414141414141414141414141414141 + cipher=4141414141414141 + plain=C023018BB50973DF + encrypted=4141414141414141 + +Set 7, vector# 66: + key=42424242424242424242424242424242 + cipher=4242424242424242 + plain=2F17AB3C4EF47CED + encrypted=4242424242424242 + +Set 7, vector# 67: + key=43434343434343434343434343434343 + cipher=4343434343434343 + plain=403E4F9726A43E2B + encrypted=4343434343434343 + +Set 7, vector# 68: + key=44444444444444444444444444444444 + cipher=4444444444444444 + plain=300FB94913B09D9F + encrypted=4444444444444444 + +Set 7, vector# 69: + key=45454545454545454545454545454545 + cipher=4545454545454545 + plain=CC3368EE3DD10A86 + encrypted=4545454545454545 + +Set 7, vector# 70: + key=46464646464646464646464646464646 + cipher=4646464646464646 + plain=4047149B98541E84 + encrypted=4646464646464646 + +Set 7, vector# 71: + key=47474747474747474747474747474747 + cipher=4747474747474747 + plain=6F50E18DA9045F21 + encrypted=4747474747474747 + +Set 7, vector# 72: + key=48484848484848484848484848484848 + cipher=4848484848484848 + plain=8714D44CAC7D0D14 + encrypted=4848484848484848 + +Set 7, vector# 73: + key=49494949494949494949494949494949 + cipher=4949494949494949 + plain=83829CFFC32CED9B + encrypted=4949494949494949 + +Set 7, vector# 74: + key=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + cipher=4A4A4A4A4A4A4A4A + plain=16044259F6FEEF2A + encrypted=4A4A4A4A4A4A4A4A + +Set 7, vector# 75: + key=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + cipher=4B4B4B4B4B4B4B4B + plain=DAEB0CCC9F9C02A7 + encrypted=4B4B4B4B4B4B4B4B + +Set 7, vector# 76: + key=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + cipher=4C4C4C4C4C4C4C4C + plain=1F9442EA265CB749 + encrypted=4C4C4C4C4C4C4C4C + +Set 7, vector# 77: + key=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + cipher=4D4D4D4D4D4D4D4D + plain=E4911A6B657A86BE + encrypted=4D4D4D4D4D4D4D4D + +Set 7, vector# 78: + key=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + cipher=4E4E4E4E4E4E4E4E + plain=67464D8D5A2822CF + encrypted=4E4E4E4E4E4E4E4E + +Set 7, vector# 79: + key=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + cipher=4F4F4F4F4F4F4F4F + plain=C1419997381C7DA3 + encrypted=4F4F4F4F4F4F4F4F + +Set 7, vector# 80: + key=50505050505050505050505050505050 + cipher=5050505050505050 + plain=599A5CD62A06D027 + encrypted=5050505050505050 + +Set 7, vector# 81: + key=51515151515151515151515151515151 + cipher=5151515151515151 + plain=88FD236C41B3BB51 + encrypted=5151515151515151 + +Set 7, vector# 82: + key=52525252525252525252525252525252 + cipher=5252525252525252 + plain=41CC247560605B0B + encrypted=5252525252525252 + +Set 7, vector# 83: + key=53535353535353535353535353535353 + cipher=5353535353535353 + plain=0F91178929EF4AA1 + encrypted=5353535353535353 + +Set 7, vector# 84: + key=54545454545454545454545454545454 + cipher=5454545454545454 + plain=DC644E7A6FAA6446 + encrypted=5454545454545454 + +Set 7, vector# 85: + key=55555555555555555555555555555555 + cipher=5555555555555555 + plain=27BDEAC7848061C2 + encrypted=5555555555555555 + +Set 7, vector# 86: + key=56565656565656565656565656565656 + cipher=5656565656565656 + plain=51115EC4EBDDE14E + encrypted=5656565656565656 + +Set 7, vector# 87: + key=57575757575757575757575757575757 + cipher=5757575757575757 + plain=A1731C55A4FB1B12 + encrypted=5757575757575757 + +Set 7, vector# 88: + key=58585858585858585858585858585858 + cipher=5858585858585858 + plain=883D1CB568FA4AF6 + encrypted=5858585858585858 + +Set 7, vector# 89: + key=59595959595959595959595959595959 + cipher=5959595959595959 + plain=EE21D431F34E89A5 + encrypted=5959595959595959 + +Set 7, vector# 90: + key=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + cipher=5A5A5A5A5A5A5A5A + plain=8ED4FA5DF0B7BAA9 + encrypted=5A5A5A5A5A5A5A5A + +Set 7, vector# 91: + key=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + cipher=5B5B5B5B5B5B5B5B + plain=8AA3372D4A4CF54D + encrypted=5B5B5B5B5B5B5B5B + +Set 7, vector# 92: + key=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + cipher=5C5C5C5C5C5C5C5C + plain=6E9D4FF9DE08AAD1 + encrypted=5C5C5C5C5C5C5C5C + +Set 7, vector# 93: + key=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + cipher=5D5D5D5D5D5D5D5D + plain=302DE41DFAE50C3E + encrypted=5D5D5D5D5D5D5D5D + +Set 7, vector# 94: + key=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + cipher=5E5E5E5E5E5E5E5E + plain=15238624D6D73121 + encrypted=5E5E5E5E5E5E5E5E + +Set 7, vector# 95: + key=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + cipher=5F5F5F5F5F5F5F5F + plain=960ADA6F022E3019 + encrypted=5F5F5F5F5F5F5F5F + +Set 7, vector# 96: + key=60606060606060606060606060606060 + cipher=6060606060606060 + plain=CAF3211A707960D6 + encrypted=6060606060606060 + +Set 7, vector# 97: + key=61616161616161616161616161616161 + cipher=6161616161616161 + plain=F7E458FA7081BE7D + encrypted=6161616161616161 + +Set 7, vector# 98: + key=62626262626262626262626262626262 + cipher=6262626262626262 + plain=5FAB0E843C6E5BA9 + encrypted=6262626262626262 + +Set 7, vector# 99: + key=63636363636363636363636363636363 + cipher=6363636363636363 + plain=7CF40025EB32B66F + encrypted=6363636363636363 + +Set 7, vector#100: + key=64646464646464646464646464646464 + cipher=6464646464646464 + plain=1D3FF19CA208D2B2 + encrypted=6464646464646464 + +Set 7, vector#101: + key=65656565656565656565656565656565 + cipher=6565656565656565 + plain=BDFBCA399EB932A0 + encrypted=6565656565656565 + +Set 7, vector#102: + key=66666666666666666666666666666666 + cipher=6666666666666666 + plain=29CE12AFEA960B70 + encrypted=6666666666666666 + +Set 7, vector#103: + key=67676767676767676767676767676767 + cipher=6767676767676767 + plain=82F8FB5140014B85 + encrypted=6767676767676767 + +Set 7, vector#104: + key=68686868686868686868686868686868 + cipher=6868686868686868 + plain=7B3C0F4E34F9D1E9 + encrypted=6868686868686868 + +Set 7, vector#105: + key=69696969696969696969696969696969 + cipher=6969696969696969 + plain=8F7B0EAD94E39A13 + encrypted=6969696969696969 + +Set 7, vector#106: + key=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + cipher=6A6A6A6A6A6A6A6A + plain=6D3F31C7778EAD8A + encrypted=6A6A6A6A6A6A6A6A + +Set 7, vector#107: + key=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + cipher=6B6B6B6B6B6B6B6B + plain=37B18B3906BAB3A8 + encrypted=6B6B6B6B6B6B6B6B + +Set 7, vector#108: + key=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + cipher=6C6C6C6C6C6C6C6C + plain=12B4CB7A4CBE767B + encrypted=6C6C6C6C6C6C6C6C + +Set 7, vector#109: + key=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + cipher=6D6D6D6D6D6D6D6D + plain=2420B66A1055C0E9 + encrypted=6D6D6D6D6D6D6D6D + +Set 7, vector#110: + key=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + cipher=6E6E6E6E6E6E6E6E + plain=7E8E816788C6D588 + encrypted=6E6E6E6E6E6E6E6E + +Set 7, vector#111: + key=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + cipher=6F6F6F6F6F6F6F6F + plain=C24105E33E184FF6 + encrypted=6F6F6F6F6F6F6F6F + +Set 7, vector#112: + key=70707070707070707070707070707070 + cipher=7070707070707070 + plain=E4A18C1C24EBFBB9 + encrypted=7070707070707070 + +Set 7, vector#113: + key=71717171717171717171717171717171 + cipher=7171717171717171 + plain=89BDBD3DE031EED6 + encrypted=7171717171717171 + +Set 7, vector#114: + key=72727272727272727272727272727272 + cipher=7272727272727272 + plain=DBB840AF153D42DC + encrypted=7272727272727272 + +Set 7, vector#115: + key=73737373737373737373737373737373 + cipher=7373737373737373 + plain=5198BB48B85D9073 + encrypted=7373737373737373 + +Set 7, vector#116: + key=74747474747474747474747474747474 + cipher=7474747474747474 + plain=EF91577024209D96 + encrypted=7474747474747474 + +Set 7, vector#117: + key=75757575757575757575757575757575 + cipher=7575757575757575 + plain=862D09602D08F4AF + encrypted=7575757575757575 + +Set 7, vector#118: + key=76767676767676767676767676767676 + cipher=7676767676767676 + plain=DF8FDD3DA8BE381C + encrypted=7676767676767676 + +Set 7, vector#119: + key=77777777777777777777777777777777 + cipher=7777777777777777 + plain=F4FA92CAF1EA65C8 + encrypted=7777777777777777 + +Set 7, vector#120: + key=78787878787878787878787878787878 + cipher=7878787878787878 + plain=6C51D39A736AB06E + encrypted=7878787878787878 + +Set 7, vector#121: + key=79797979797979797979797979797979 + cipher=7979797979797979 + plain=CA78FA0F8940CDB6 + encrypted=7979797979797979 + +Set 7, vector#122: + key=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + cipher=7A7A7A7A7A7A7A7A + plain=E32531D4F4783A94 + encrypted=7A7A7A7A7A7A7A7A + +Set 7, vector#123: + key=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + cipher=7B7B7B7B7B7B7B7B + plain=C983F15CAE1DEB86 + encrypted=7B7B7B7B7B7B7B7B + +Set 7, vector#124: + key=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + cipher=7C7C7C7C7C7C7C7C + plain=F8895BF6515436F3 + encrypted=7C7C7C7C7C7C7C7C + +Set 7, vector#125: + key=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + cipher=7D7D7D7D7D7D7D7D + plain=0B679E5008B5B69B + encrypted=7D7D7D7D7D7D7D7D + +Set 7, vector#126: + key=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + cipher=7E7E7E7E7E7E7E7E + plain=909D89361F819432 + encrypted=7E7E7E7E7E7E7E7E + +Set 7, vector#127: + key=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + cipher=7F7F7F7F7F7F7F7F + plain=C8FCD27001B95D10 + encrypted=7F7F7F7F7F7F7F7F + +Set 7, vector#128: + key=80808080808080808080808080808080 + cipher=8080808080808080 + plain=37032D8FFE46A2EF + encrypted=8080808080808080 + +Set 7, vector#129: + key=81818181818181818181818181818181 + cipher=8181818181818181 + plain=6F6276C9E07E6BCD + encrypted=8181818181818181 + +Set 7, vector#130: + key=82828282828282828282828282828282 + cipher=8282828282828282 + plain=F49861AFF74A4964 + encrypted=8282828282828282 + +Set 7, vector#131: + key=83838383838383838383838383838383 + cipher=8383838383838383 + plain=0776A409AEABC90C + encrypted=8383838383838383 + +Set 7, vector#132: + key=84848484848484848484848484848484 + cipher=8484848484848484 + plain=367C0EA351E21479 + encrypted=8484848484848484 + +Set 7, vector#133: + key=85858585858585858585858585858585 + cipher=8585858585858585 + plain=1CDACE2B0B87C56B + encrypted=8585858585858585 + +Set 7, vector#134: + key=86868686868686868686868686868686 + cipher=8686868686868686 + plain=358705F076BF3249 + encrypted=8686868686868686 + +Set 7, vector#135: + key=87878787878787878787878787878787 + cipher=8787878787878787 + plain=93AE2C658C954F91 + encrypted=8787878787878787 + +Set 7, vector#136: + key=88888888888888888888888888888888 + cipher=8888888888888888 + plain=0B056D350E159A37 + encrypted=8888888888888888 + +Set 7, vector#137: + key=89898989898989898989898989898989 + cipher=8989898989898989 + plain=207022C25741C7E3 + encrypted=8989898989898989 + +Set 7, vector#138: + key=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + cipher=8A8A8A8A8A8A8A8A + plain=79D2F69FD2F70B50 + encrypted=8A8A8A8A8A8A8A8A + +Set 7, vector#139: + key=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + cipher=8B8B8B8B8B8B8B8B + plain=106EA88FDBDF6269 + encrypted=8B8B8B8B8B8B8B8B + +Set 7, vector#140: + key=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + cipher=8C8C8C8C8C8C8C8C + plain=AE6744B747A26F8C + encrypted=8C8C8C8C8C8C8C8C + +Set 7, vector#141: + key=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + cipher=8D8D8D8D8D8D8D8D + plain=2447BF50EAC2BD23 + encrypted=8D8D8D8D8D8D8D8D + +Set 7, vector#142: + key=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + cipher=8E8E8E8E8E8E8E8E + plain=764242C21FCE1129 + encrypted=8E8E8E8E8E8E8E8E + +Set 7, vector#143: + key=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + cipher=8F8F8F8F8F8F8F8F + plain=1B5E73E3DB140446 + encrypted=8F8F8F8F8F8F8F8F + +Set 7, vector#144: + key=90909090909090909090909090909090 + cipher=9090909090909090 + plain=3DBEFA1CC1E7B009 + encrypted=9090909090909090 + +Set 7, vector#145: + key=91919191919191919191919191919191 + cipher=9191919191919191 + plain=81717E9877392A77 + encrypted=9191919191919191 + +Set 7, vector#146: + key=92929292929292929292929292929292 + cipher=9292929292929292 + plain=DBDF4995EFAA3F16 + encrypted=9292929292929292 + +Set 7, vector#147: + key=93939393939393939393939393939393 + cipher=9393939393939393 + plain=ED4B3485B3418984 + encrypted=9393939393939393 + +Set 7, vector#148: + key=94949494949494949494949494949494 + cipher=9494949494949494 + plain=C84E74C6F9454C57 + encrypted=9494949494949494 + +Set 7, vector#149: + key=95959595959595959595959595959595 + cipher=9595959595959595 + plain=92C0CE3888715275 + encrypted=9595959595959595 + +Set 7, vector#150: + key=96969696969696969696969696969696 + cipher=9696969696969696 + plain=7084F1526B1C65EC + encrypted=9696969696969696 + +Set 7, vector#151: + key=97979797979797979797979797979797 + cipher=9797979797979797 + plain=84C3F0B1CB062E16 + encrypted=9797979797979797 + +Set 7, vector#152: + key=98989898989898989898989898989898 + cipher=9898989898989898 + plain=7D0704AEBFFEB47A + encrypted=9898989898989898 + +Set 7, vector#153: + key=99999999999999999999999999999999 + cipher=9999999999999999 + plain=D631ED501569F48F + encrypted=9999999999999999 + +Set 7, vector#154: + key=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + cipher=9A9A9A9A9A9A9A9A + plain=420435C66146CD5F + encrypted=9A9A9A9A9A9A9A9A + +Set 7, vector#155: + key=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + cipher=9B9B9B9B9B9B9B9B + plain=E2C00E635DF72D4D + encrypted=9B9B9B9B9B9B9B9B + +Set 7, vector#156: + key=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + cipher=9C9C9C9C9C9C9C9C + plain=830BFFDA14CD4990 + encrypted=9C9C9C9C9C9C9C9C + +Set 7, vector#157: + key=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + cipher=9D9D9D9D9D9D9D9D + plain=A054F17BC391A456 + encrypted=9D9D9D9D9D9D9D9D + +Set 7, vector#158: + key=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + cipher=9E9E9E9E9E9E9E9E + plain=081BA7058F7E4182 + encrypted=9E9E9E9E9E9E9E9E + +Set 7, vector#159: + key=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + cipher=9F9F9F9F9F9F9F9F + plain=350CDEE58F869F29 + encrypted=9F9F9F9F9F9F9F9F + +Set 7, vector#160: + key=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + cipher=A0A0A0A0A0A0A0A0 + plain=69F52590FDD1CFE6 + encrypted=A0A0A0A0A0A0A0A0 + +Set 7, vector#161: + key=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + cipher=A1A1A1A1A1A1A1A1 + plain=EADC79DB2928CEDE + encrypted=A1A1A1A1A1A1A1A1 + +Set 7, vector#162: + key=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + cipher=A2A2A2A2A2A2A2A2 + plain=CFD21BE2051AF3C1 + encrypted=A2A2A2A2A2A2A2A2 + +Set 7, vector#163: + key=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + cipher=A3A3A3A3A3A3A3A3 + plain=9162B00621F7552E + encrypted=A3A3A3A3A3A3A3A3 + +Set 7, vector#164: + key=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + cipher=A4A4A4A4A4A4A4A4 + plain=755CC8D2B5B30AB2 + encrypted=A4A4A4A4A4A4A4A4 + +Set 7, vector#165: + key=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + cipher=A5A5A5A5A5A5A5A5 + plain=712B05A20F484556 + encrypted=A5A5A5A5A5A5A5A5 + +Set 7, vector#166: + key=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + cipher=A6A6A6A6A6A6A6A6 + plain=11DE2BCE0CB1765A + encrypted=A6A6A6A6A6A6A6A6 + +Set 7, vector#167: + key=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + cipher=A7A7A7A7A7A7A7A7 + plain=77C2E34A9705B509 + encrypted=A7A7A7A7A7A7A7A7 + +Set 7, vector#168: + key=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + cipher=A8A8A8A8A8A8A8A8 + plain=5E8CE3AA5B04E4ED + encrypted=A8A8A8A8A8A8A8A8 + +Set 7, vector#169: + key=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + cipher=A9A9A9A9A9A9A9A9 + plain=AEEEA13B14221EB1 + encrypted=A9A9A9A9A9A9A9A9 + +Set 7, vector#170: + key=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + cipher=AAAAAAAAAAAAAAAA + plain=D84215387B7F9E3D + encrypted=AAAAAAAAAAAAAAAA + +Set 7, vector#171: + key=ABABABABABABABABABABABABABABABAB + cipher=ABABABABABABABAB + plain=239BB18590559BB9 + encrypted=ABABABABABABABAB + +Set 7, vector#172: + key=ACACACACACACACACACACACACACACACAC + cipher=ACACACACACACACAC + plain=F06EE876D610B55E + encrypted=ACACACACACACACAC + +Set 7, vector#173: + key=ADADADADADADADADADADADADADADADAD + cipher=ADADADADADADADAD + plain=BE33DB8A9F9FA4F4 + encrypted=ADADADADADADADAD + +Set 7, vector#174: + key=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + cipher=AEAEAEAEAEAEAEAE + plain=7702DC93BE4C44AE + encrypted=AEAEAEAEAEAEAEAE + +Set 7, vector#175: + key=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + cipher=AFAFAFAFAFAFAFAF + plain=A665A329D5F92FD8 + encrypted=AFAFAFAFAFAFAFAF + +Set 7, vector#176: + key=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + cipher=B0B0B0B0B0B0B0B0 + plain=3EBE6668C7E3825C + encrypted=B0B0B0B0B0B0B0B0 + +Set 7, vector#177: + key=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + cipher=B1B1B1B1B1B1B1B1 + plain=98B9B272A5D7DD30 + encrypted=B1B1B1B1B1B1B1B1 + +Set 7, vector#178: + key=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + cipher=B2B2B2B2B2B2B2B2 + plain=1B6EE5949A857941 + encrypted=B2B2B2B2B2B2B2B2 + +Set 7, vector#179: + key=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + cipher=B3B3B3B3B3B3B3B3 + plain=E06BBD15D9A348B6 + encrypted=B3B3B3B3B3B3B3B3 + +Set 7, vector#180: + key=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + cipher=B4B4B4B4B4B4B4B4 + plain=2514F3336063FD58 + encrypted=B4B4B4B4B4B4B4B4 + +Set 7, vector#181: + key=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + cipher=B5B5B5B5B5B5B5B5 + plain=E9FBBDA6090110D5 + encrypted=B5B5B5B5B5B5B5B5 + +Set 7, vector#182: + key=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + cipher=B6B6B6B6B6B6B6B6 + plain=7C7D63003CD31264 + encrypted=B6B6B6B6B6B6B6B6 + +Set 7, vector#183: + key=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + cipher=B7B7B7B7B7B7B7B7 + plain=78EB2BB35382F2EB + encrypted=B7B7B7B7B7B7B7B7 + +Set 7, vector#184: + key=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + cipher=B8B8B8B8B8B8B8B8 + plain=90AF1E7256FBA0DE + encrypted=B8B8B8B8B8B8B8B8 + +Set 7, vector#185: + key=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + cipher=B9B9B9B9B9B9B9B9 + plain=BFB8EB6467ABE17B + encrypted=B9B9B9B9B9B9B9B9 + +Set 7, vector#186: + key=BABABABABABABABABABABABABABABABA + cipher=BABABABABABABABA + plain=33CC9711C22EF579 + encrypted=BABABABABABABABA + +Set 7, vector#187: + key=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + cipher=BBBBBBBBBBBBBBBB + plain=CFF046B6EC4F6260 + encrypted=BBBBBBBBBBBBBBBB + +Set 7, vector#188: + key=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + cipher=BCBCBCBCBCBCBCBC + plain=BFC1B068D95BC1D4 + encrypted=BCBCBCBCBCBCBCBC + +Set 7, vector#189: + key=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + cipher=BDBDBDBDBDBDBDBD + plain=D0E854C3B10B8312 + encrypted=BDBDBDBDBDBDBDBD + +Set 7, vector#190: + key=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + cipher=BEBEBEBEBEBEBEBE + plain=3FDCFE744AF68C20 + encrypted=BEBEBEBEBEBEBEBE + +Set 7, vector#191: + key=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + cipher=BFBFBFBFBFBFBFBF + plain=025E5153BEFC4138 + encrypted=BFBFBFBFBFBFBFBF + +Set 7, vector#192: + key=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + cipher=C0C0C0C0C0C0C0C0 + plain=B032ED00E5F0B7D7 + encrypted=C0C0C0C0C0C0C0C0 + +Set 7, vector#193: + key=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + cipher=C1C1C1C1C1C1C1C1 + plain=1E1D46D413849125 + encrypted=C1C1C1C1C1C1C1C1 + +Set 7, vector#194: + key=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + cipher=C2C2C2C2C2C2C2C2 + plain=690713E6383FF096 + encrypted=C2C2C2C2C2C2C2C2 + +Set 7, vector#195: + key=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + cipher=C3C3C3C3C3C3C3C3 + plain=D6F223FF4504093F + encrypted=C3C3C3C3C3C3C3C3 + +Set 7, vector#196: + key=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + cipher=C4C4C4C4C4C4C4C4 + plain=48E07C763CD06D71 + encrypted=C4C4C4C4C4C4C4C4 + +Set 7, vector#197: + key=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + cipher=C5C5C5C5C5C5C5C5 + plain=BD7C6AC98EA824E7 + encrypted=C5C5C5C5C5C5C5C5 + +Set 7, vector#198: + key=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + cipher=C6C6C6C6C6C6C6C6 + plain=1909291A23350450 + encrypted=C6C6C6C6C6C6C6C6 + +Set 7, vector#199: + key=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + cipher=C7C7C7C7C7C7C7C7 + plain=480F8B34F62DE678 + encrypted=C7C7C7C7C7C7C7C7 + +Set 7, vector#200: + key=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + cipher=C8C8C8C8C8C8C8C8 + plain=4AC2A75E3528679B + encrypted=C8C8C8C8C8C8C8C8 + +Set 7, vector#201: + key=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + cipher=C9C9C9C9C9C9C9C9 + plain=3F1568A5E99DEF8C + encrypted=C9C9C9C9C9C9C9C9 + +Set 7, vector#202: + key=CACACACACACACACACACACACACACACACA + cipher=CACACACACACACACA + plain=40414B449374572C + encrypted=CACACACACACACACA + +Set 7, vector#203: + key=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + cipher=CBCBCBCBCBCBCBCB + plain=F7925D5B97E64D13 + encrypted=CBCBCBCBCBCBCBCB + +Set 7, vector#204: + key=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + cipher=CCCCCCCCCCCCCCCC + plain=E64959F80B628140 + encrypted=CCCCCCCCCCCCCCCC + +Set 7, vector#205: + key=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + cipher=CDCDCDCDCDCDCDCD + plain=248E0D06FB31BB98 + encrypted=CDCDCDCDCDCDCDCD + +Set 7, vector#206: + key=CECECECECECECECECECECECECECECECE + cipher=CECECECECECECECE + plain=92F58133675FE659 + encrypted=CECECECECECECECE + +Set 7, vector#207: + key=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + cipher=CFCFCFCFCFCFCFCF + plain=CCA53A1AB55B3A05 + encrypted=CFCFCFCFCFCFCFCF + +Set 7, vector#208: + key=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + cipher=D0D0D0D0D0D0D0D0 + plain=8066E3CA18E0726A + encrypted=D0D0D0D0D0D0D0D0 + +Set 7, vector#209: + key=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + cipher=D1D1D1D1D1D1D1D1 + plain=9A610E9161003E92 + encrypted=D1D1D1D1D1D1D1D1 + +Set 7, vector#210: + key=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + cipher=D2D2D2D2D2D2D2D2 + plain=9F10AB312F9C1153 + encrypted=D2D2D2D2D2D2D2D2 + +Set 7, vector#211: + key=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + cipher=D3D3D3D3D3D3D3D3 + plain=5E55536492C254F5 + encrypted=D3D3D3D3D3D3D3D3 + +Set 7, vector#212: + key=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + cipher=D4D4D4D4D4D4D4D4 + plain=2EC41BB94EAC683F + encrypted=D4D4D4D4D4D4D4D4 + +Set 7, vector#213: + key=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + cipher=D5D5D5D5D5D5D5D5 + plain=E6264B3CFA54A53B + encrypted=D5D5D5D5D5D5D5D5 + +Set 7, vector#214: + key=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + cipher=D6D6D6D6D6D6D6D6 + plain=9B0FE80CA5C0AF2E + encrypted=D6D6D6D6D6D6D6D6 + +Set 7, vector#215: + key=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + cipher=D7D7D7D7D7D7D7D7 + plain=9F99107A00E075B9 + encrypted=D7D7D7D7D7D7D7D7 + +Set 7, vector#216: + key=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + cipher=D8D8D8D8D8D8D8D8 + plain=EE5A79323EA0B49D + encrypted=D8D8D8D8D8D8D8D8 + +Set 7, vector#217: + key=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + cipher=D9D9D9D9D9D9D9D9 + plain=57D818D32E7BAAA1 + encrypted=D9D9D9D9D9D9D9D9 + +Set 7, vector#218: + key=DADADADADADADADADADADADADADADADA + cipher=DADADADADADADADA + plain=2372BA28AE804A73 + encrypted=DADADADADADADADA + +Set 7, vector#219: + key=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + cipher=DBDBDBDBDBDBDBDB + plain=370FD75C119F4D76 + encrypted=DBDBDBDBDBDBDBDB + +Set 7, vector#220: + key=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + cipher=DCDCDCDCDCDCDCDC + plain=70ADE48AB7C5F46B + encrypted=DCDCDCDCDCDCDCDC + +Set 7, vector#221: + key=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + cipher=DDDDDDDDDDDDDDDD + plain=2EFA06CFEF4C490A + encrypted=DDDDDDDDDDDDDDDD + +Set 7, vector#222: + key=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + cipher=DEDEDEDEDEDEDEDE + plain=57F4D40141EF5B25 + encrypted=DEDEDEDEDEDEDEDE + +Set 7, vector#223: + key=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + cipher=DFDFDFDFDFDFDFDF + plain=6F8C38686FCF9082 + encrypted=DFDFDFDFDFDFDFDF + +Set 7, vector#224: + key=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + cipher=E0E0E0E0E0E0E0E0 + plain=9E4EBA2683B6EADC + encrypted=E0E0E0E0E0E0E0E0 + +Set 7, vector#225: + key=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + cipher=E1E1E1E1E1E1E1E1 + plain=37FBF97B5DF82E4A + encrypted=E1E1E1E1E1E1E1E1 + +Set 7, vector#226: + key=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + cipher=E2E2E2E2E2E2E2E2 + plain=F8605C8127F45F9B + encrypted=E2E2E2E2E2E2E2E2 + +Set 7, vector#227: + key=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + cipher=E3E3E3E3E3E3E3E3 + plain=CFE89CC047E6836A + encrypted=E3E3E3E3E3E3E3E3 + +Set 7, vector#228: + key=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + cipher=E4E4E4E4E4E4E4E4 + plain=7060B673459206F7 + encrypted=E4E4E4E4E4E4E4E4 + +Set 7, vector#229: + key=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + cipher=E5E5E5E5E5E5E5E5 + plain=49D3014B922E7A88 + encrypted=E5E5E5E5E5E5E5E5 + +Set 7, vector#230: + key=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + cipher=E6E6E6E6E6E6E6E6 + plain=638146A34E7DDCC1 + encrypted=E6E6E6E6E6E6E6E6 + +Set 7, vector#231: + key=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + cipher=E7E7E7E7E7E7E7E7 + plain=D106D7199C6791E3 + encrypted=E7E7E7E7E7E7E7E7 + +Set 7, vector#232: + key=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + cipher=E8E8E8E8E8E8E8E8 + plain=9B00500449F74FFD + encrypted=E8E8E8E8E8E8E8E8 + +Set 7, vector#233: + key=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + cipher=E9E9E9E9E9E9E9E9 + plain=AAF04E5AAF85B612 + encrypted=E9E9E9E9E9E9E9E9 + +Set 7, vector#234: + key=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + cipher=EAEAEAEAEAEAEAEA + plain=AC4B251F989E005E + encrypted=EAEAEAEAEAEAEAEA + +Set 7, vector#235: + key=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + cipher=EBEBEBEBEBEBEBEB + plain=E1A6F9B0015E6E10 + encrypted=EBEBEBEBEBEBEBEB + +Set 7, vector#236: + key=ECECECECECECECECECECECECECECECEC + cipher=ECECECECECECECEC + plain=E288627548617610 + encrypted=ECECECECECECECEC + +Set 7, vector#237: + key=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + cipher=EDEDEDEDEDEDEDED + plain=5D0975698BF1C0D2 + encrypted=EDEDEDEDEDEDEDED + +Set 7, vector#238: + key=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + cipher=EEEEEEEEEEEEEEEE + plain=DC84DCFB3C6C2C53 + encrypted=EEEEEEEEEEEEEEEE + +Set 7, vector#239: + key=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + cipher=EFEFEFEFEFEFEFEF + plain=4C89378B1906782F + encrypted=EFEFEFEFEFEFEFEF + +Set 7, vector#240: + key=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + cipher=F0F0F0F0F0F0F0F0 + plain=A8FA85D47AC98412 + encrypted=F0F0F0F0F0F0F0F0 + +Set 7, vector#241: + key=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + cipher=F1F1F1F1F1F1F1F1 + plain=0E123A4E06709CEC + encrypted=F1F1F1F1F1F1F1F1 + +Set 7, vector#242: + key=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + cipher=F2F2F2F2F2F2F2F2 + plain=EB629B6D5F27F611 + encrypted=F2F2F2F2F2F2F2F2 + +Set 7, vector#243: + key=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + cipher=F3F3F3F3F3F3F3F3 + plain=6066A70C1D898158 + encrypted=F3F3F3F3F3F3F3F3 + +Set 7, vector#244: + key=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + cipher=F4F4F4F4F4F4F4F4 + plain=4A52E373B669A335 + encrypted=F4F4F4F4F4F4F4F4 + +Set 7, vector#245: + key=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + cipher=F5F5F5F5F5F5F5F5 + plain=3197EEEE45C484EE + encrypted=F5F5F5F5F5F5F5F5 + +Set 7, vector#246: + key=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + cipher=F6F6F6F6F6F6F6F6 + plain=AEEF1A655138CCA4 + encrypted=F6F6F6F6F6F6F6F6 + +Set 7, vector#247: + key=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + cipher=F7F7F7F7F7F7F7F7 + plain=26CD7B8BBA25B027 + encrypted=F7F7F7F7F7F7F7F7 + +Set 7, vector#248: + key=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + cipher=F8F8F8F8F8F8F8F8 + plain=7200565F4D0DAB74 + encrypted=F8F8F8F8F8F8F8F8 + +Set 7, vector#249: + key=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + cipher=F9F9F9F9F9F9F9F9 + plain=5510622EE218BAB9 + encrypted=F9F9F9F9F9F9F9F9 + +Set 7, vector#250: + key=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + cipher=FAFAFAFAFAFAFAFA + plain=DA9896ABAD6FCE34 + encrypted=FAFAFAFAFAFAFAFA + +Set 7, vector#251: + key=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + cipher=FBFBFBFBFBFBFBFB + plain=766E3F3B730F507E + encrypted=FBFBFBFBFBFBFBFB + +Set 7, vector#252: + key=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + cipher=FCFCFCFCFCFCFCFC + plain=6E738510076C52AE + encrypted=FCFCFCFCFCFCFCFC + +Set 7, vector#253: + key=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + cipher=FDFDFDFDFDFDFDFD + plain=0F6059C33205D452 + encrypted=FDFDFDFDFDFDFDFD + +Set 7, vector#254: + key=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + cipher=FEFEFEFEFEFEFEFE + plain=66B2B23EA84693AD + encrypted=FEFEFEFEFEFEFEFE + +Set 7, vector#255: + key=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + cipher=FFFFFFFFFFFFFFFF + plain=7359B2163E4EDC58 + encrypted=FFFFFFFFFFFFFFFF + +Test vectors -- set 8 +===================== + +Set 8, vector# 0: + key=000102030405060708090A0B0C0D0E0F + cipher=0011223344556677 + plain=E4FC19D69463B783 + encrypted=0011223344556677 + +Set 8, vector# 1: + key=2BD6459F82C5B300952C49104881FF48 + cipher=EA024714AD5C4D84 + plain=8598538A8ECF117D + encrypted=EA024714AD5C4D84 + + + +End of test vectors diff --git a/testvectors/Triple-Des-3-Key-192-64.unverified.test-vectors b/testvectors/Triple-Des-3-Key-192-64.unverified.test-vectors new file mode 100644 index 0000000..8de30ce --- /dev/null +++ b/testvectors/Triple-Des-3-Key-192-64.unverified.test-vectors @@ -0,0 +1,7232 @@ +******************************************************************************** +*Project NESSIE - New European Schemes for Signature, Integrity, and Encryption* +******************************************************************************** + +Primitive Name: Triple-Des (3-Key) +================================== +Key size: 192 bits +Block size: 64 bits + +Test vectors -- set 1 +===================== + +Set 1, vector# 0: + key=800000000000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=95A8D72813DAA94D + decrypted=0000000000000000 + Iterated 100 times=F749E1F8DEFAF605 + Iterated 1000 times=F396DD0B33D04244 + +Set 1, vector# 1: + key=400000000000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=0EEC1487DD8C26D5 + decrypted=0000000000000000 + Iterated 100 times=E5BEE86B600F3B48 + Iterated 1000 times=1D5931D700EF4E15 + +Set 1, vector# 2: + key=200000000000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=7AD16FFB79C45926 + decrypted=0000000000000000 + Iterated 100 times=C4B51BB0A1E0DF57 + Iterated 1000 times=B2D1B91E994BA5FF + +Set 1, vector# 3: + key=100000000000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=D3746294CA6A6CF3 + decrypted=0000000000000000 + Iterated 100 times=0008AEE9CDC85FC6 + Iterated 1000 times=984080D72E08BB81 + +Set 1, vector# 4: + key=080000000000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=809F5F873C1FD761 + decrypted=0000000000000000 + Iterated 100 times=30C31E1B78DEF2FA + Iterated 1000 times=17FD838EC9AAE568 + +Set 1, vector# 5: + key=040000000000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=C02FAFFEC989D1FC + decrypted=0000000000000000 + Iterated 100 times=712D9B9482FFA66E + Iterated 1000 times=7D50B7C12F4EE231 + +Set 1, vector# 6: + key=020000000000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=4615AA1D33E72F10 + decrypted=0000000000000000 + Iterated 100 times=8D19263ED8C900E9 + Iterated 1000 times=4BEB4AAC95FEC41C + +Set 1, vector# 7: + key=010000000000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 8: + key=008000000000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=2055123350C00858 + decrypted=0000000000000000 + Iterated 100 times=B36B590CD5B96C7A + Iterated 1000 times=27096529FD13E6D8 + +Set 1, vector# 9: + key=004000000000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=DF3B99D6577397C8 + decrypted=0000000000000000 + Iterated 100 times=F39EADDACB2F57DE + Iterated 1000 times=38C1A175C83C43D5 + +Set 1, vector# 10: + key=002000000000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=31FE17369B5288C9 + decrypted=0000000000000000 + Iterated 100 times=148BE77FD6464AB1 + Iterated 1000 times=79594476AE766731 + +Set 1, vector# 11: + key=001000000000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=DFDD3CC64DAE1642 + decrypted=0000000000000000 + Iterated 100 times=F778BB09A9867BA9 + Iterated 1000 times=D3EB89C029543B2A + +Set 1, vector# 12: + key=000800000000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=178C83CE2B399D94 + decrypted=0000000000000000 + Iterated 100 times=73EED5A7A0F4934D + Iterated 1000 times=49438FF2A3AFCB5B + +Set 1, vector# 13: + key=000400000000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=50F636324A9B7F80 + decrypted=0000000000000000 + Iterated 100 times=2FAFD56439DE7A02 + Iterated 1000 times=CCC8DE0B9AA79C66 + +Set 1, vector# 14: + key=000200000000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=A8468EE3BC18F06D + decrypted=0000000000000000 + Iterated 100 times=EFAE2347FDDEFA73 + Iterated 1000 times=B4023FD4512F7716 + +Set 1, vector# 15: + key=000100000000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 16: + key=000080000000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=A2DC9E92FD3CDE92 + decrypted=0000000000000000 + Iterated 100 times=73BE6AB337CEEEB0 + Iterated 1000 times=968DF24C0DE982AD + +Set 1, vector# 17: + key=000040000000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=CAC09F797D031287 + decrypted=0000000000000000 + Iterated 100 times=59328B21110941BC + Iterated 1000 times=F67397BCC966E6DF + +Set 1, vector# 18: + key=000020000000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=90BA680B22AEB525 + decrypted=0000000000000000 + Iterated 100 times=9BCFFB98514CB6A6 + Iterated 1000 times=727968AF8BEF52FD + +Set 1, vector# 19: + key=000010000000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=CE7A24F350E280B6 + decrypted=0000000000000000 + Iterated 100 times=4BC0954F4B535598 + Iterated 1000 times=4E234ADDF4122BDA + +Set 1, vector# 20: + key=000008000000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=882BFF0AA01A0B87 + decrypted=0000000000000000 + Iterated 100 times=96B0B8C60D11C9CF + Iterated 1000 times=9289CC8834F34C4F + +Set 1, vector# 21: + key=000004000000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=25610288924511C2 + decrypted=0000000000000000 + Iterated 100 times=5E0F10609C9F8FD8 + Iterated 1000 times=6A0EF0F876ACA153 + +Set 1, vector# 22: + key=000002000000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=C71516C29C75D170 + decrypted=0000000000000000 + Iterated 100 times=6103866AB65CFCAC + Iterated 1000 times=47A58CC7E3BEE809 + +Set 1, vector# 23: + key=000001000000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 24: + key=000000800000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=5199C29A52C9F059 + decrypted=0000000000000000 + Iterated 100 times=30F72222BDE34AFA + Iterated 1000 times=7BF7933841FFC21F + +Set 1, vector# 25: + key=000000400000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=C22F0A294A71F29F + decrypted=0000000000000000 + Iterated 100 times=72CE2A0D94EBD9D6 + Iterated 1000 times=AE674E8993690593 + +Set 1, vector# 26: + key=000000200000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=EE371483714C02EA + decrypted=0000000000000000 + Iterated 100 times=0BCAE5EBB65B0D89 + Iterated 1000 times=E50314779BB752B8 + +Set 1, vector# 27: + key=000000100000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=A81FBD448F9E522F + decrypted=0000000000000000 + Iterated 100 times=C29BF0411F9FB1FF + Iterated 1000 times=3A7956A60F0D3870 + +Set 1, vector# 28: + key=000000080000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=4F644C92E192DFED + decrypted=0000000000000000 + Iterated 100 times=8179CEDCF9747E20 + Iterated 1000 times=02B15BDF54EFC971 + +Set 1, vector# 29: + key=000000040000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=1AFA9A66A6DF92AE + decrypted=0000000000000000 + Iterated 100 times=55E55F1C8360A9C8 + Iterated 1000 times=FA2DF6016FB97F6B + +Set 1, vector# 30: + key=000000020000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=B3C1CC715CB879D8 + decrypted=0000000000000000 + Iterated 100 times=7AF4FF1DD1C6DCB6 + Iterated 1000 times=A40E0A841437BC1F + +Set 1, vector# 31: + key=000000010000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 32: + key=000000008000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=19D032E64AB0BD8B + decrypted=0000000000000000 + Iterated 100 times=65F1F8A4BC3DA5B7 + Iterated 1000 times=9A4928B72076A579 + +Set 1, vector# 33: + key=000000004000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=3CFAA7A7DC8720DC + decrypted=0000000000000000 + Iterated 100 times=418883502E606905 + Iterated 1000 times=0CAECC8814864F05 + +Set 1, vector# 34: + key=000000002000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=B7265F7F447AC6F3 + decrypted=0000000000000000 + Iterated 100 times=17A6FDC0827E427A + Iterated 1000 times=7B22AE8457C37D3A + +Set 1, vector# 35: + key=000000001000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=9DB73B3C0D163F54 + decrypted=0000000000000000 + Iterated 100 times=03FDCA66095EFB4A + Iterated 1000 times=F856FF043BCCF2C3 + +Set 1, vector# 36: + key=000000000800000000000000000000000000000000000000 + plain=0000000000000000 + cipher=8181B65BABF4A975 + decrypted=0000000000000000 + Iterated 100 times=733C14A3503555E1 + Iterated 1000 times=7472E191346264F3 + +Set 1, vector# 37: + key=000000000400000000000000000000000000000000000000 + plain=0000000000000000 + cipher=93C9B64042EAA240 + decrypted=0000000000000000 + Iterated 100 times=3429B46392177D73 + Iterated 1000 times=7D71912081998047 + +Set 1, vector# 38: + key=000000000200000000000000000000000000000000000000 + plain=0000000000000000 + cipher=5570530829705592 + decrypted=0000000000000000 + Iterated 100 times=399B7400B0F18B6E + Iterated 1000 times=F3B76BAC729C96A2 + +Set 1, vector# 39: + key=000000000100000000000000000000000000000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 40: + key=000000000080000000000000000000000000000000000000 + plain=0000000000000000 + cipher=8638809E878787A0 + decrypted=0000000000000000 + Iterated 100 times=9DAF9D5B8F881E6D + Iterated 1000 times=59C63C6CE254A415 + +Set 1, vector# 41: + key=000000000040000000000000000000000000000000000000 + plain=0000000000000000 + cipher=41B9A79AF79AC208 + decrypted=0000000000000000 + Iterated 100 times=3093349F22C1D915 + Iterated 1000 times=57A373A06C2B824E + +Set 1, vector# 42: + key=000000000020000000000000000000000000000000000000 + plain=0000000000000000 + cipher=7A9BE42F2009A892 + decrypted=0000000000000000 + Iterated 100 times=979D68265D0444BF + Iterated 1000 times=08951924006F2275 + +Set 1, vector# 43: + key=000000000010000000000000000000000000000000000000 + plain=0000000000000000 + cipher=29038D56BA6D2745 + decrypted=0000000000000000 + Iterated 100 times=2502186BE1E6227E + Iterated 1000 times=42C30EB4AA62D0C5 + +Set 1, vector# 44: + key=000000000008000000000000000000000000000000000000 + plain=0000000000000000 + cipher=5495C6ABF1E5DF51 + decrypted=0000000000000000 + Iterated 100 times=5D098A0B0F96B856 + Iterated 1000 times=BA7ECC30012C1485 + +Set 1, vector# 45: + key=000000000004000000000000000000000000000000000000 + plain=0000000000000000 + cipher=AE13DBD561488933 + decrypted=0000000000000000 + Iterated 100 times=DF591EF05C4A31CC + Iterated 1000 times=F3EC672B2A45F7DC + +Set 1, vector# 46: + key=000000000002000000000000000000000000000000000000 + plain=0000000000000000 + cipher=024D1FFA8904E389 + decrypted=0000000000000000 + Iterated 100 times=F775ED6299B76BA2 + Iterated 1000 times=E0F70281F7185E9B + +Set 1, vector# 47: + key=000000000001000000000000000000000000000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 48: + key=000000000000800000000000000000000000000000000000 + plain=0000000000000000 + cipher=D1399712F99BF02E + decrypted=0000000000000000 + Iterated 100 times=E62D98EB4E760474 + Iterated 1000 times=AA4CF8BE8AAE16F3 + +Set 1, vector# 49: + key=000000000000400000000000000000000000000000000000 + plain=0000000000000000 + cipher=14C1D7C1CFFEC79E + decrypted=0000000000000000 + Iterated 100 times=FC592EFDB0299379 + Iterated 1000 times=611C65187BEEB354 + +Set 1, vector# 50: + key=000000000000200000000000000000000000000000000000 + plain=0000000000000000 + cipher=1DE5279DAE3BED6F + decrypted=0000000000000000 + Iterated 100 times=D02A61ECB45A8E86 + Iterated 1000 times=CD161A355055F9EC + +Set 1, vector# 51: + key=000000000000100000000000000000000000000000000000 + plain=0000000000000000 + cipher=E941A33F85501303 + decrypted=0000000000000000 + Iterated 100 times=AC7BA601AA1DFBB4 + Iterated 1000 times=08B0ECF58BA2F737 + +Set 1, vector# 52: + key=000000000000080000000000000000000000000000000000 + plain=0000000000000000 + cipher=DA99DBBC9A03F379 + decrypted=0000000000000000 + Iterated 100 times=8CA9ADB9AB5F9E22 + Iterated 1000 times=6BD06DD1AC2DB53F + +Set 1, vector# 53: + key=000000000000040000000000000000000000000000000000 + plain=0000000000000000 + cipher=B7FC92F91D8E92E9 + decrypted=0000000000000000 + Iterated 100 times=0A46AEFEA0586C99 + Iterated 1000 times=4D279FC5E7775E3C + +Set 1, vector# 54: + key=000000000000020000000000000000000000000000000000 + plain=0000000000000000 + cipher=AE8E5CAA3CA04E85 + decrypted=0000000000000000 + Iterated 100 times=29455C0AB803FEBC + Iterated 1000 times=25E3A6CB1EEA5103 + +Set 1, vector# 55: + key=000000000000010000000000000000000000000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 56: + key=000000000000008000000000000000000000000000000000 + plain=0000000000000000 + cipher=9CC62DF43B6EED74 + decrypted=0000000000000000 + Iterated 100 times=70D81B693DE59BFE + Iterated 1000 times=C0691B4F4C6FD5D4 + +Set 1, vector# 57: + key=000000000000004000000000000000000000000000000000 + plain=0000000000000000 + cipher=D863DBB5C59A91A0 + decrypted=0000000000000000 + Iterated 100 times=9E8FC8F352C5A827 + Iterated 1000 times=939032E8CC65BDA6 + +Set 1, vector# 58: + key=000000000000002000000000000000000000000000000000 + plain=0000000000000000 + cipher=A1AB2190545B91D7 + decrypted=0000000000000000 + Iterated 100 times=11E55B3845D4D37E + Iterated 1000 times=D0AE7310EFBB4423 + +Set 1, vector# 59: + key=000000000000001000000000000000000000000000000000 + plain=0000000000000000 + cipher=0875041E64C570F7 + decrypted=0000000000000000 + Iterated 100 times=B8E98D072C0EC3B0 + Iterated 1000 times=1C2529CFA50BEEF5 + +Set 1, vector# 60: + key=000000000000000800000000000000000000000000000000 + plain=0000000000000000 + cipher=5A594528BEBEF1CC + decrypted=0000000000000000 + Iterated 100 times=4591DEF0F1BCA860 + Iterated 1000 times=EB7F094DCCA72284 + +Set 1, vector# 61: + key=000000000000000400000000000000000000000000000000 + plain=0000000000000000 + cipher=FCDB3291DE21F0C0 + decrypted=0000000000000000 + Iterated 100 times=9B2F3C7C4CC05F30 + Iterated 1000 times=A2628423B0719F91 + +Set 1, vector# 62: + key=000000000000000200000000000000000000000000000000 + plain=0000000000000000 + cipher=869EFD7F9F265A09 + decrypted=0000000000000000 + Iterated 100 times=2812AC2768B3750E + Iterated 1000 times=DADBDABB5C5BA665 + +Set 1, vector# 63: + key=000000000000000100000000000000000000000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 64: + key=000000000000000080000000000000000000000000000000 + plain=0000000000000000 + cipher=C2A4DD96151453C2 + decrypted=0000000000000000 + Iterated 100 times=4BF6EDF0EEF3F8D5 + Iterated 1000 times=6C4E8DA34D7D9E82 + +Set 1, vector# 65: + key=000000000000000040000000000000000000000000000000 + plain=0000000000000000 + cipher=5E87809F6B8A7ED5 + decrypted=0000000000000000 + Iterated 100 times=570D2932193BE196 + Iterated 1000 times=EDCC5FF4673AC398 + +Set 1, vector# 66: + key=000000000000000020000000000000000000000000000000 + plain=0000000000000000 + cipher=81B838A1E9CD59B3 + decrypted=0000000000000000 + Iterated 100 times=843153B4A6D111BD + Iterated 1000 times=79F4BF6A316445E5 + +Set 1, vector# 67: + key=000000000000000010000000000000000000000000000000 + plain=0000000000000000 + cipher=DED028F0C1F5A774 + decrypted=0000000000000000 + Iterated 100 times=75F004AED4890939 + Iterated 1000 times=745E80444134C667 + +Set 1, vector# 68: + key=000000000000000008000000000000000000000000000000 + plain=0000000000000000 + cipher=48C983815809FC87 + decrypted=0000000000000000 + Iterated 100 times=2827B9A8D8A8029C + Iterated 1000 times=498A17FFC1413B26 + +Set 1, vector# 69: + key=000000000000000004000000000000000000000000000000 + plain=0000000000000000 + cipher=C1A75845F22BE951 + decrypted=0000000000000000 + Iterated 100 times=F95C649AEC4E7E7D + Iterated 1000 times=3AE5B1210D363CE9 + +Set 1, vector# 70: + key=000000000000000002000000000000000000000000000000 + plain=0000000000000000 + cipher=C60F823E8E994489 + decrypted=0000000000000000 + Iterated 100 times=8847DAE18A517CA3 + Iterated 1000 times=66D9D886306F9F37 + +Set 1, vector# 71: + key=000000000000000001000000000000000000000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 72: + key=000000000000000000800000000000000000000000000000 + plain=0000000000000000 + cipher=709F8FCB044172FE + decrypted=0000000000000000 + Iterated 100 times=E3933DDC4ED3C500 + Iterated 1000 times=F9ADC2B3F1961C0C + +Set 1, vector# 73: + key=000000000000000000400000000000000000000000000000 + plain=0000000000000000 + cipher=26BC2DE634BFFFD4 + decrypted=0000000000000000 + Iterated 100 times=CCF7F563E14DA1B3 + Iterated 1000 times=0951F3B78ED7E6E7 + +Set 1, vector# 74: + key=000000000000000000200000000000000000000000000000 + plain=0000000000000000 + cipher=D98126355C2E03E6 + decrypted=0000000000000000 + Iterated 100 times=A63311B7238C5A1C + Iterated 1000 times=A440E792E9503080 + +Set 1, vector# 75: + key=000000000000000000100000000000000000000000000000 + plain=0000000000000000 + cipher=49AAA91B49345137 + decrypted=0000000000000000 + Iterated 100 times=4A4C9748608AF789 + Iterated 1000 times=09E4439FBE27170C + +Set 1, vector# 76: + key=000000000000000000080000000000000000000000000000 + plain=0000000000000000 + cipher=A59854DCE009126D + decrypted=0000000000000000 + Iterated 100 times=A3FC9F823025A2DC + Iterated 1000 times=8E9DBB095FED1DDA + +Set 1, vector# 77: + key=000000000000000000040000000000000000000000000000 + plain=0000000000000000 + cipher=21C46B9FDE5CD36B + decrypted=0000000000000000 + Iterated 100 times=7B640A700AAD8FBA + Iterated 1000 times=0418A685C1BB9486 + +Set 1, vector# 78: + key=000000000000000000020000000000000000000000000000 + plain=0000000000000000 + cipher=DEB4AE36E07BC053 + decrypted=0000000000000000 + Iterated 100 times=170E4F7E300F116C + Iterated 1000 times=4BF5AA8CB01B405B + +Set 1, vector# 79: + key=000000000000000000010000000000000000000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 80: + key=000000000000000000008000000000000000000000000000 + plain=0000000000000000 + cipher=D47ADF8B94CACA7A + decrypted=0000000000000000 + Iterated 100 times=71DFC47A01600E1C + Iterated 1000 times=7276D5E31E934610 + +Set 1, vector# 81: + key=000000000000000000004000000000000000000000000000 + plain=0000000000000000 + cipher=D26D9656F91A1EE2 + decrypted=0000000000000000 + Iterated 100 times=DE132A19945DA3D5 + Iterated 1000 times=9302B6B91862A3C6 + +Set 1, vector# 82: + key=000000000000000000002000000000000000000000000000 + plain=0000000000000000 + cipher=EE31B8E767C9B337 + decrypted=0000000000000000 + Iterated 100 times=F9BE76C880232D45 + Iterated 1000 times=CECD16A22B7F95E2 + +Set 1, vector# 83: + key=000000000000000000001000000000000000000000000000 + plain=0000000000000000 + cipher=D19BA61DD59CE9A1 + decrypted=0000000000000000 + Iterated 100 times=684D894542AB77B6 + Iterated 1000 times=140076687F719A24 + +Set 1, vector# 84: + key=000000000000000000000800000000000000000000000000 + plain=0000000000000000 + cipher=482863934D17804B + decrypted=0000000000000000 + Iterated 100 times=3615EC2B1CF8F2A4 + Iterated 1000 times=2F3EB0A713CF4A35 + +Set 1, vector# 85: + key=000000000000000000000400000000000000000000000000 + plain=0000000000000000 + cipher=78C8CBCAC3B7FD35 + decrypted=0000000000000000 + Iterated 100 times=7EDA79C9CF0880C2 + Iterated 1000 times=AB74C6E868E08AE2 + +Set 1, vector# 86: + key=000000000000000000000200000000000000000000000000 + plain=0000000000000000 + cipher=7B8B051E6C8AA8B6 + decrypted=0000000000000000 + Iterated 100 times=B7F949D8C9837246 + Iterated 1000 times=6FB4F85312EC790D + +Set 1, vector# 87: + key=000000000000000000000100000000000000000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 88: + key=000000000000000000000080000000000000000000000000 + plain=0000000000000000 + cipher=8CCFCD2418E85750 + decrypted=0000000000000000 + Iterated 100 times=F7B0CFC8DDEDC0E2 + Iterated 1000 times=81C908F991F609D8 + +Set 1, vector# 89: + key=000000000000000000000040000000000000000000000000 + plain=0000000000000000 + cipher=E74CA11808ED17A3 + decrypted=0000000000000000 + Iterated 100 times=063A730543365612 + Iterated 1000 times=FD6DBCC4340469F1 + +Set 1, vector# 90: + key=000000000000000000000020000000000000000000000000 + plain=0000000000000000 + cipher=0A634C7A69897F35 + decrypted=0000000000000000 + Iterated 100 times=76D9351AC3DF24DA + Iterated 1000 times=222D7577C8B7128F + +Set 1, vector# 91: + key=000000000000000000000010000000000000000000000000 + plain=0000000000000000 + cipher=6C2C0F27E973CE29 + decrypted=0000000000000000 + Iterated 100 times=92918782E98DF1BA + Iterated 1000 times=04676B8032FB884A + +Set 1, vector# 92: + key=000000000000000000000008000000000000000000000000 + plain=0000000000000000 + cipher=AD5F11ED913E918C + decrypted=0000000000000000 + Iterated 100 times=A5104FE5E95E2309 + Iterated 1000 times=C1BA44F5DFAE373D + +Set 1, vector# 93: + key=000000000000000000000004000000000000000000000000 + plain=0000000000000000 + cipher=3CE4B119BC1FC701 + decrypted=0000000000000000 + Iterated 100 times=3DEF816F2D3BBFF8 + Iterated 1000 times=855D27FA1CB4D70A + +Set 1, vector# 94: + key=000000000000000000000002000000000000000000000000 + plain=0000000000000000 + cipher=7E6C8995AA52D298 + decrypted=0000000000000000 + Iterated 100 times=CF0D6507C0D59FFF + Iterated 1000 times=AEBBC2DDB266E383 + +Set 1, vector# 95: + key=000000000000000000000001000000000000000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector# 96: + key=000000000000000000000000800000000000000000000000 + plain=0000000000000000 + cipher=A9FE6341C8621918 + decrypted=0000000000000000 + Iterated 100 times=EB8935470DFC82C7 + Iterated 1000 times=FD6BF181D4BD2C2C + +Set 1, vector# 97: + key=000000000000000000000000400000000000000000000000 + plain=0000000000000000 + cipher=CE99FD5D50B22CEF + decrypted=0000000000000000 + Iterated 100 times=5AFAE990CCFECB8A + Iterated 1000 times=66FC3858033A8E48 + +Set 1, vector# 98: + key=000000000000000000000000200000000000000000000000 + plain=0000000000000000 + cipher=83E55C4A19ABCB56 + decrypted=0000000000000000 + Iterated 100 times=8536FA3CC939C062 + Iterated 1000 times=A5A7C54F003B6971 + +Set 1, vector# 99: + key=000000000000000000000000100000000000000000000000 + plain=0000000000000000 + cipher=96E6A993443B9DD4 + decrypted=0000000000000000 + Iterated 100 times=96BC9D6EA99147E5 + Iterated 1000 times=E5BFD8A98C8F9104 + +Set 1, vector#100: + key=000000000000000000000000080000000000000000000000 + plain=0000000000000000 + cipher=6781B65D74A6B9FB + decrypted=0000000000000000 + Iterated 100 times=4FAC62E01B0561B3 + Iterated 1000 times=99B43F794D52ABB7 + +Set 1, vector#101: + key=000000000000000000000000040000000000000000000000 + plain=0000000000000000 + cipher=D9EF04E272D1A78A + decrypted=0000000000000000 + Iterated 100 times=C34938C9E938B1C2 + Iterated 1000 times=9934B4B9ECA778E0 + +Set 1, vector#102: + key=000000000000000000000000020000000000000000000000 + plain=0000000000000000 + cipher=AC8B09EC3153D57B + decrypted=0000000000000000 + Iterated 100 times=4FB6023272B9E214 + Iterated 1000 times=37EDA451A22635F1 + +Set 1, vector#103: + key=000000000000000000000000010000000000000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector#104: + key=000000000000000000000000008000000000000000000000 + plain=0000000000000000 + cipher=60B4B8E3A8F5CBEC + decrypted=0000000000000000 + Iterated 100 times=595FA54FD1F5CA76 + Iterated 1000 times=E06978BCDC0996D3 + +Set 1, vector#105: + key=000000000000000000000000004000000000000000000000 + plain=0000000000000000 + cipher=A5AB6F6EB66057A9 + decrypted=0000000000000000 + Iterated 100 times=92D00D5764CA36E3 + Iterated 1000 times=172DED3F97D27C44 + +Set 1, vector#106: + key=000000000000000000000000002000000000000000000000 + plain=0000000000000000 + cipher=FF7B0E870FB1FD0B + decrypted=0000000000000000 + Iterated 100 times=F1EDEA2ECEB165E8 + Iterated 1000 times=73F60415570B6D1F + +Set 1, vector#107: + key=000000000000000000000000001000000000000000000000 + plain=0000000000000000 + cipher=7497A098AA651D00 + decrypted=0000000000000000 + Iterated 100 times=122D45AC039D7580 + Iterated 1000 times=A8C291804DBFBE71 + +Set 1, vector#108: + key=000000000000000000000000000800000000000000000000 + plain=0000000000000000 + cipher=270A943BEABEA8EC + decrypted=0000000000000000 + Iterated 100 times=12B4D009A9961F94 + Iterated 1000 times=C8479A36DF1151DA + +Set 1, vector#109: + key=000000000000000000000000000400000000000000000000 + plain=0000000000000000 + cipher=67DB327ED5DF89E3 + decrypted=0000000000000000 + Iterated 100 times=C7A8D2108FAF5F63 + Iterated 1000 times=C06490BAFEA16BA9 + +Set 1, vector#110: + key=000000000000000000000000000200000000000000000000 + plain=0000000000000000 + cipher=4871C3B7436121DE + decrypted=0000000000000000 + Iterated 100 times=9EC1BCFD2B5A4D71 + Iterated 1000 times=58CB2B258A231AF8 + +Set 1, vector#111: + key=000000000000000000000000000100000000000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector#112: + key=000000000000000000000000000080000000000000000000 + plain=0000000000000000 + cipher=41BBC8EF36654838 + decrypted=0000000000000000 + Iterated 100 times=7869226251B7596F + Iterated 1000 times=F24702C9D2751B02 + +Set 1, vector#113: + key=000000000000000000000000000040000000000000000000 + plain=0000000000000000 + cipher=FCBD166CA0EA87E2 + decrypted=0000000000000000 + Iterated 100 times=11D9FF0706F5370A + Iterated 1000 times=9F52CE105448FB58 + +Set 1, vector#114: + key=000000000000000000000000000020000000000000000000 + plain=0000000000000000 + cipher=9DFFC6EE9751B5CF + decrypted=0000000000000000 + Iterated 100 times=9B4ADE2784370012 + Iterated 1000 times=68CF62D650EAD7D7 + +Set 1, vector#115: + key=000000000000000000000000000010000000000000000000 + plain=0000000000000000 + cipher=C01B7878EBCE8DD3 + decrypted=0000000000000000 + Iterated 100 times=4E92759348F9DD36 + Iterated 1000 times=5A6F05496BC98AF7 + +Set 1, vector#116: + key=000000000000000000000000000008000000000000000000 + plain=0000000000000000 + cipher=357E5A4DC162D715 + decrypted=0000000000000000 + Iterated 100 times=7073C2BE07C15271 + Iterated 1000 times=6FC97B54C68117FD + +Set 1, vector#117: + key=000000000000000000000000000004000000000000000000 + plain=0000000000000000 + cipher=268F93CAEB248E2E + decrypted=0000000000000000 + Iterated 100 times=96A49175710A377E + Iterated 1000 times=93BB382B13D32755 + +Set 1, vector#118: + key=000000000000000000000000000002000000000000000000 + plain=0000000000000000 + cipher=A5D4174744B84E7D + decrypted=0000000000000000 + Iterated 100 times=F9E07D361D35E054 + Iterated 1000 times=7EA70D549BC2F045 + +Set 1, vector#119: + key=000000000000000000000000000001000000000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector#120: + key=000000000000000000000000000000800000000000000000 + plain=0000000000000000 + cipher=46F5E7077CB869A8 + decrypted=0000000000000000 + Iterated 100 times=17CA33957B5A914F + Iterated 1000 times=D96E405125B892CA + +Set 1, vector#121: + key=000000000000000000000000000000400000000000000000 + plain=0000000000000000 + cipher=502CD2BF4FC0B793 + decrypted=0000000000000000 + Iterated 100 times=68184D5C2BDE3D83 + Iterated 1000 times=F7738FCBA6116EB9 + +Set 1, vector#122: + key=000000000000000000000000000000200000000000000000 + plain=0000000000000000 + cipher=C0278007230589E4 + decrypted=0000000000000000 + Iterated 100 times=E082A6A1B459DB26 + Iterated 1000 times=0AA75BD0BF54BF86 + +Set 1, vector#123: + key=000000000000000000000000000000100000000000000000 + plain=0000000000000000 + cipher=52710C55818FAF52 + decrypted=0000000000000000 + Iterated 100 times=F46F634865F08E3A + Iterated 1000 times=C8A47624D730A39C + +Set 1, vector#124: + key=000000000000000000000000000000080000000000000000 + plain=0000000000000000 + cipher=DF4A77123610F2B1 + decrypted=0000000000000000 + Iterated 100 times=4E74EC39F8C6A8C0 + Iterated 1000 times=0566C951F35BBC70 + +Set 1, vector#125: + key=000000000000000000000000000000040000000000000000 + plain=0000000000000000 + cipher=EF840B00DA448234 + decrypted=0000000000000000 + Iterated 100 times=84D4AB45A6B8F187 + Iterated 1000 times=C3B69C3ADAFDDC17 + +Set 1, vector#126: + key=000000000000000000000000000000020000000000000000 + plain=0000000000000000 + cipher=FFCCC32A699CB7C5 + decrypted=0000000000000000 + Iterated 100 times=F5F1BC85025F34FE + Iterated 1000 times=0B81D787B6A934FF + +Set 1, vector#127: + key=000000000000000000000000000000010000000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector#128: + key=000000000000000000000000000000008000000000000000 + plain=0000000000000000 + cipher=95A8D72813DAA94D + decrypted=0000000000000000 + Iterated 100 times=F749E1F8DEFAF605 + Iterated 1000 times=F396DD0B33D04244 + +Set 1, vector#129: + key=000000000000000000000000000000004000000000000000 + plain=0000000000000000 + cipher=0EEC1487DD8C26D5 + decrypted=0000000000000000 + Iterated 100 times=E5BEE86B600F3B48 + Iterated 1000 times=1D5931D700EF4E15 + +Set 1, vector#130: + key=000000000000000000000000000000002000000000000000 + plain=0000000000000000 + cipher=7AD16FFB79C45926 + decrypted=0000000000000000 + Iterated 100 times=C4B51BB0A1E0DF57 + Iterated 1000 times=B2D1B91E994BA5FF + +Set 1, vector#131: + key=000000000000000000000000000000001000000000000000 + plain=0000000000000000 + cipher=D3746294CA6A6CF3 + decrypted=0000000000000000 + Iterated 100 times=0008AEE9CDC85FC6 + Iterated 1000 times=984080D72E08BB81 + +Set 1, vector#132: + key=000000000000000000000000000000000800000000000000 + plain=0000000000000000 + cipher=809F5F873C1FD761 + decrypted=0000000000000000 + Iterated 100 times=30C31E1B78DEF2FA + Iterated 1000 times=17FD838EC9AAE568 + +Set 1, vector#133: + key=000000000000000000000000000000000400000000000000 + plain=0000000000000000 + cipher=C02FAFFEC989D1FC + decrypted=0000000000000000 + Iterated 100 times=712D9B9482FFA66E + Iterated 1000 times=7D50B7C12F4EE231 + +Set 1, vector#134: + key=000000000000000000000000000000000200000000000000 + plain=0000000000000000 + cipher=4615AA1D33E72F10 + decrypted=0000000000000000 + Iterated 100 times=8D19263ED8C900E9 + Iterated 1000 times=4BEB4AAC95FEC41C + +Set 1, vector#135: + key=000000000000000000000000000000000100000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector#136: + key=000000000000000000000000000000000080000000000000 + plain=0000000000000000 + cipher=2055123350C00858 + decrypted=0000000000000000 + Iterated 100 times=B36B590CD5B96C7A + Iterated 1000 times=27096529FD13E6D8 + +Set 1, vector#137: + key=000000000000000000000000000000000040000000000000 + plain=0000000000000000 + cipher=DF3B99D6577397C8 + decrypted=0000000000000000 + Iterated 100 times=F39EADDACB2F57DE + Iterated 1000 times=38C1A175C83C43D5 + +Set 1, vector#138: + key=000000000000000000000000000000000020000000000000 + plain=0000000000000000 + cipher=31FE17369B5288C9 + decrypted=0000000000000000 + Iterated 100 times=148BE77FD6464AB1 + Iterated 1000 times=79594476AE766731 + +Set 1, vector#139: + key=000000000000000000000000000000000010000000000000 + plain=0000000000000000 + cipher=DFDD3CC64DAE1642 + decrypted=0000000000000000 + Iterated 100 times=F778BB09A9867BA9 + Iterated 1000 times=D3EB89C029543B2A + +Set 1, vector#140: + key=000000000000000000000000000000000008000000000000 + plain=0000000000000000 + cipher=178C83CE2B399D94 + decrypted=0000000000000000 + Iterated 100 times=73EED5A7A0F4934D + Iterated 1000 times=49438FF2A3AFCB5B + +Set 1, vector#141: + key=000000000000000000000000000000000004000000000000 + plain=0000000000000000 + cipher=50F636324A9B7F80 + decrypted=0000000000000000 + Iterated 100 times=2FAFD56439DE7A02 + Iterated 1000 times=CCC8DE0B9AA79C66 + +Set 1, vector#142: + key=000000000000000000000000000000000002000000000000 + plain=0000000000000000 + cipher=A8468EE3BC18F06D + decrypted=0000000000000000 + Iterated 100 times=EFAE2347FDDEFA73 + Iterated 1000 times=B4023FD4512F7716 + +Set 1, vector#143: + key=000000000000000000000000000000000001000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector#144: + key=000000000000000000000000000000000000800000000000 + plain=0000000000000000 + cipher=A2DC9E92FD3CDE92 + decrypted=0000000000000000 + Iterated 100 times=73BE6AB337CEEEB0 + Iterated 1000 times=968DF24C0DE982AD + +Set 1, vector#145: + key=000000000000000000000000000000000000400000000000 + plain=0000000000000000 + cipher=CAC09F797D031287 + decrypted=0000000000000000 + Iterated 100 times=59328B21110941BC + Iterated 1000 times=F67397BCC966E6DF + +Set 1, vector#146: + key=000000000000000000000000000000000000200000000000 + plain=0000000000000000 + cipher=90BA680B22AEB525 + decrypted=0000000000000000 + Iterated 100 times=9BCFFB98514CB6A6 + Iterated 1000 times=727968AF8BEF52FD + +Set 1, vector#147: + key=000000000000000000000000000000000000100000000000 + plain=0000000000000000 + cipher=CE7A24F350E280B6 + decrypted=0000000000000000 + Iterated 100 times=4BC0954F4B535598 + Iterated 1000 times=4E234ADDF4122BDA + +Set 1, vector#148: + key=000000000000000000000000000000000000080000000000 + plain=0000000000000000 + cipher=882BFF0AA01A0B87 + decrypted=0000000000000000 + Iterated 100 times=96B0B8C60D11C9CF + Iterated 1000 times=9289CC8834F34C4F + +Set 1, vector#149: + key=000000000000000000000000000000000000040000000000 + plain=0000000000000000 + cipher=25610288924511C2 + decrypted=0000000000000000 + Iterated 100 times=5E0F10609C9F8FD8 + Iterated 1000 times=6A0EF0F876ACA153 + +Set 1, vector#150: + key=000000000000000000000000000000000000020000000000 + plain=0000000000000000 + cipher=C71516C29C75D170 + decrypted=0000000000000000 + Iterated 100 times=6103866AB65CFCAC + Iterated 1000 times=47A58CC7E3BEE809 + +Set 1, vector#151: + key=000000000000000000000000000000000000010000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector#152: + key=000000000000000000000000000000000000008000000000 + plain=0000000000000000 + cipher=5199C29A52C9F059 + decrypted=0000000000000000 + Iterated 100 times=30F72222BDE34AFA + Iterated 1000 times=7BF7933841FFC21F + +Set 1, vector#153: + key=000000000000000000000000000000000000004000000000 + plain=0000000000000000 + cipher=C22F0A294A71F29F + decrypted=0000000000000000 + Iterated 100 times=72CE2A0D94EBD9D6 + Iterated 1000 times=AE674E8993690593 + +Set 1, vector#154: + key=000000000000000000000000000000000000002000000000 + plain=0000000000000000 + cipher=EE371483714C02EA + decrypted=0000000000000000 + Iterated 100 times=0BCAE5EBB65B0D89 + Iterated 1000 times=E50314779BB752B8 + +Set 1, vector#155: + key=000000000000000000000000000000000000001000000000 + plain=0000000000000000 + cipher=A81FBD448F9E522F + decrypted=0000000000000000 + Iterated 100 times=C29BF0411F9FB1FF + Iterated 1000 times=3A7956A60F0D3870 + +Set 1, vector#156: + key=000000000000000000000000000000000000000800000000 + plain=0000000000000000 + cipher=4F644C92E192DFED + decrypted=0000000000000000 + Iterated 100 times=8179CEDCF9747E20 + Iterated 1000 times=02B15BDF54EFC971 + +Set 1, vector#157: + key=000000000000000000000000000000000000000400000000 + plain=0000000000000000 + cipher=1AFA9A66A6DF92AE + decrypted=0000000000000000 + Iterated 100 times=55E55F1C8360A9C8 + Iterated 1000 times=FA2DF6016FB97F6B + +Set 1, vector#158: + key=000000000000000000000000000000000000000200000000 + plain=0000000000000000 + cipher=B3C1CC715CB879D8 + decrypted=0000000000000000 + Iterated 100 times=7AF4FF1DD1C6DCB6 + Iterated 1000 times=A40E0A841437BC1F + +Set 1, vector#159: + key=000000000000000000000000000000000000000100000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector#160: + key=000000000000000000000000000000000000000080000000 + plain=0000000000000000 + cipher=19D032E64AB0BD8B + decrypted=0000000000000000 + Iterated 100 times=65F1F8A4BC3DA5B7 + Iterated 1000 times=9A4928B72076A579 + +Set 1, vector#161: + key=000000000000000000000000000000000000000040000000 + plain=0000000000000000 + cipher=3CFAA7A7DC8720DC + decrypted=0000000000000000 + Iterated 100 times=418883502E606905 + Iterated 1000 times=0CAECC8814864F05 + +Set 1, vector#162: + key=000000000000000000000000000000000000000020000000 + plain=0000000000000000 + cipher=B7265F7F447AC6F3 + decrypted=0000000000000000 + Iterated 100 times=17A6FDC0827E427A + Iterated 1000 times=7B22AE8457C37D3A + +Set 1, vector#163: + key=000000000000000000000000000000000000000010000000 + plain=0000000000000000 + cipher=9DB73B3C0D163F54 + decrypted=0000000000000000 + Iterated 100 times=03FDCA66095EFB4A + Iterated 1000 times=F856FF043BCCF2C3 + +Set 1, vector#164: + key=000000000000000000000000000000000000000008000000 + plain=0000000000000000 + cipher=8181B65BABF4A975 + decrypted=0000000000000000 + Iterated 100 times=733C14A3503555E1 + Iterated 1000 times=7472E191346264F3 + +Set 1, vector#165: + key=000000000000000000000000000000000000000004000000 + plain=0000000000000000 + cipher=93C9B64042EAA240 + decrypted=0000000000000000 + Iterated 100 times=3429B46392177D73 + Iterated 1000 times=7D71912081998047 + +Set 1, vector#166: + key=000000000000000000000000000000000000000002000000 + plain=0000000000000000 + cipher=5570530829705592 + decrypted=0000000000000000 + Iterated 100 times=399B7400B0F18B6E + Iterated 1000 times=F3B76BAC729C96A2 + +Set 1, vector#167: + key=000000000000000000000000000000000000000001000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector#168: + key=000000000000000000000000000000000000000000800000 + plain=0000000000000000 + cipher=8638809E878787A0 + decrypted=0000000000000000 + Iterated 100 times=9DAF9D5B8F881E6D + Iterated 1000 times=59C63C6CE254A415 + +Set 1, vector#169: + key=000000000000000000000000000000000000000000400000 + plain=0000000000000000 + cipher=41B9A79AF79AC208 + decrypted=0000000000000000 + Iterated 100 times=3093349F22C1D915 + Iterated 1000 times=57A373A06C2B824E + +Set 1, vector#170: + key=000000000000000000000000000000000000000000200000 + plain=0000000000000000 + cipher=7A9BE42F2009A892 + decrypted=0000000000000000 + Iterated 100 times=979D68265D0444BF + Iterated 1000 times=08951924006F2275 + +Set 1, vector#171: + key=000000000000000000000000000000000000000000100000 + plain=0000000000000000 + cipher=29038D56BA6D2745 + decrypted=0000000000000000 + Iterated 100 times=2502186BE1E6227E + Iterated 1000 times=42C30EB4AA62D0C5 + +Set 1, vector#172: + key=000000000000000000000000000000000000000000080000 + plain=0000000000000000 + cipher=5495C6ABF1E5DF51 + decrypted=0000000000000000 + Iterated 100 times=5D098A0B0F96B856 + Iterated 1000 times=BA7ECC30012C1485 + +Set 1, vector#173: + key=000000000000000000000000000000000000000000040000 + plain=0000000000000000 + cipher=AE13DBD561488933 + decrypted=0000000000000000 + Iterated 100 times=DF591EF05C4A31CC + Iterated 1000 times=F3EC672B2A45F7DC + +Set 1, vector#174: + key=000000000000000000000000000000000000000000020000 + plain=0000000000000000 + cipher=024D1FFA8904E389 + decrypted=0000000000000000 + Iterated 100 times=F775ED6299B76BA2 + Iterated 1000 times=E0F70281F7185E9B + +Set 1, vector#175: + key=000000000000000000000000000000000000000000010000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector#176: + key=000000000000000000000000000000000000000000008000 + plain=0000000000000000 + cipher=D1399712F99BF02E + decrypted=0000000000000000 + Iterated 100 times=E62D98EB4E760474 + Iterated 1000 times=AA4CF8BE8AAE16F3 + +Set 1, vector#177: + key=000000000000000000000000000000000000000000004000 + plain=0000000000000000 + cipher=14C1D7C1CFFEC79E + decrypted=0000000000000000 + Iterated 100 times=FC592EFDB0299379 + Iterated 1000 times=611C65187BEEB354 + +Set 1, vector#178: + key=000000000000000000000000000000000000000000002000 + plain=0000000000000000 + cipher=1DE5279DAE3BED6F + decrypted=0000000000000000 + Iterated 100 times=D02A61ECB45A8E86 + Iterated 1000 times=CD161A355055F9EC + +Set 1, vector#179: + key=000000000000000000000000000000000000000000001000 + plain=0000000000000000 + cipher=E941A33F85501303 + decrypted=0000000000000000 + Iterated 100 times=AC7BA601AA1DFBB4 + Iterated 1000 times=08B0ECF58BA2F737 + +Set 1, vector#180: + key=000000000000000000000000000000000000000000000800 + plain=0000000000000000 + cipher=DA99DBBC9A03F379 + decrypted=0000000000000000 + Iterated 100 times=8CA9ADB9AB5F9E22 + Iterated 1000 times=6BD06DD1AC2DB53F + +Set 1, vector#181: + key=000000000000000000000000000000000000000000000400 + plain=0000000000000000 + cipher=B7FC92F91D8E92E9 + decrypted=0000000000000000 + Iterated 100 times=0A46AEFEA0586C99 + Iterated 1000 times=4D279FC5E7775E3C + +Set 1, vector#182: + key=000000000000000000000000000000000000000000000200 + plain=0000000000000000 + cipher=AE8E5CAA3CA04E85 + decrypted=0000000000000000 + Iterated 100 times=29455C0AB803FEBC + Iterated 1000 times=25E3A6CB1EEA5103 + +Set 1, vector#183: + key=000000000000000000000000000000000000000000000100 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 1, vector#184: + key=000000000000000000000000000000000000000000000080 + plain=0000000000000000 + cipher=9CC62DF43B6EED74 + decrypted=0000000000000000 + Iterated 100 times=70D81B693DE59BFE + Iterated 1000 times=C0691B4F4C6FD5D4 + +Set 1, vector#185: + key=000000000000000000000000000000000000000000000040 + plain=0000000000000000 + cipher=D863DBB5C59A91A0 + decrypted=0000000000000000 + Iterated 100 times=9E8FC8F352C5A827 + Iterated 1000 times=939032E8CC65BDA6 + +Set 1, vector#186: + key=000000000000000000000000000000000000000000000020 + plain=0000000000000000 + cipher=A1AB2190545B91D7 + decrypted=0000000000000000 + Iterated 100 times=11E55B3845D4D37E + Iterated 1000 times=D0AE7310EFBB4423 + +Set 1, vector#187: + key=000000000000000000000000000000000000000000000010 + plain=0000000000000000 + cipher=0875041E64C570F7 + decrypted=0000000000000000 + Iterated 100 times=B8E98D072C0EC3B0 + Iterated 1000 times=1C2529CFA50BEEF5 + +Set 1, vector#188: + key=000000000000000000000000000000000000000000000008 + plain=0000000000000000 + cipher=5A594528BEBEF1CC + decrypted=0000000000000000 + Iterated 100 times=4591DEF0F1BCA860 + Iterated 1000 times=EB7F094DCCA72284 + +Set 1, vector#189: + key=000000000000000000000000000000000000000000000004 + plain=0000000000000000 + cipher=FCDB3291DE21F0C0 + decrypted=0000000000000000 + Iterated 100 times=9B2F3C7C4CC05F30 + Iterated 1000 times=A2628423B0719F91 + +Set 1, vector#190: + key=000000000000000000000000000000000000000000000002 + plain=0000000000000000 + cipher=869EFD7F9F265A09 + decrypted=0000000000000000 + Iterated 100 times=2812AC2768B3750E + Iterated 1000 times=DADBDABB5C5BA665 + +Set 1, vector#191: + key=000000000000000000000000000000000000000000000001 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Test vectors -- set 2 +===================== + +Set 2, vector# 0: + key=000000000000000000000000000000000000000000000000 + plain=8000000000000000 + cipher=95F8A5E5DD31D900 + decrypted=8000000000000000 + Iterated 100 times=8000000000000000 + Iterated 1000 times=8000000000000000 + +Set 2, vector# 1: + key=000000000000000000000000000000000000000000000000 + plain=4000000000000000 + cipher=DD7F121CA5015619 + decrypted=4000000000000000 + Iterated 100 times=4000000000000000 + Iterated 1000 times=4000000000000000 + +Set 2, vector# 2: + key=000000000000000000000000000000000000000000000000 + plain=2000000000000000 + cipher=2E8653104F3834EA + decrypted=2000000000000000 + Iterated 100 times=2000000000000000 + Iterated 1000 times=2000000000000000 + +Set 2, vector# 3: + key=000000000000000000000000000000000000000000000000 + plain=1000000000000000 + cipher=4BD388FF6CD81D4F + decrypted=1000000000000000 + Iterated 100 times=1000000000000000 + Iterated 1000 times=1000000000000000 + +Set 2, vector# 4: + key=000000000000000000000000000000000000000000000000 + plain=0800000000000000 + cipher=20B9E767B2FB1456 + decrypted=0800000000000000 + Iterated 100 times=0800000000000000 + Iterated 1000 times=0800000000000000 + +Set 2, vector# 5: + key=000000000000000000000000000000000000000000000000 + plain=0400000000000000 + cipher=55579380D77138EF + decrypted=0400000000000000 + Iterated 100 times=0400000000000000 + Iterated 1000 times=0400000000000000 + +Set 2, vector# 6: + key=000000000000000000000000000000000000000000000000 + plain=0200000000000000 + cipher=6CC5DEFAAF04512F + decrypted=0200000000000000 + Iterated 100 times=0200000000000000 + Iterated 1000 times=0200000000000000 + +Set 2, vector# 7: + key=000000000000000000000000000000000000000000000000 + plain=0100000000000000 + cipher=0D9F279BA5D87260 + decrypted=0100000000000000 + Iterated 100 times=0100000000000000 + Iterated 1000 times=0100000000000000 + +Set 2, vector# 8: + key=000000000000000000000000000000000000000000000000 + plain=0080000000000000 + cipher=D9031B0271BD5A0A + decrypted=0080000000000000 + Iterated 100 times=0080000000000000 + Iterated 1000 times=0080000000000000 + +Set 2, vector# 9: + key=000000000000000000000000000000000000000000000000 + plain=0040000000000000 + cipher=424250B37C3DD951 + decrypted=0040000000000000 + Iterated 100 times=0040000000000000 + Iterated 1000 times=0040000000000000 + +Set 2, vector# 10: + key=000000000000000000000000000000000000000000000000 + plain=0020000000000000 + cipher=B8061B7ECD9A21E5 + decrypted=0020000000000000 + Iterated 100 times=0020000000000000 + Iterated 1000 times=0020000000000000 + +Set 2, vector# 11: + key=000000000000000000000000000000000000000000000000 + plain=0010000000000000 + cipher=F15D0F286B65BD28 + decrypted=0010000000000000 + Iterated 100 times=0010000000000000 + Iterated 1000 times=0010000000000000 + +Set 2, vector# 12: + key=000000000000000000000000000000000000000000000000 + plain=0008000000000000 + cipher=ADD0CC8D6E5DEBA1 + decrypted=0008000000000000 + Iterated 100 times=0008000000000000 + Iterated 1000 times=0008000000000000 + +Set 2, vector# 13: + key=000000000000000000000000000000000000000000000000 + plain=0004000000000000 + cipher=E6D5F82752AD63D1 + decrypted=0004000000000000 + Iterated 100 times=0004000000000000 + Iterated 1000 times=0004000000000000 + +Set 2, vector# 14: + key=000000000000000000000000000000000000000000000000 + plain=0002000000000000 + cipher=ECBFE3BD3F591A5E + decrypted=0002000000000000 + Iterated 100 times=0002000000000000 + Iterated 1000 times=0002000000000000 + +Set 2, vector# 15: + key=000000000000000000000000000000000000000000000000 + plain=0001000000000000 + cipher=F356834379D165CD + decrypted=0001000000000000 + Iterated 100 times=0001000000000000 + Iterated 1000 times=0001000000000000 + +Set 2, vector# 16: + key=000000000000000000000000000000000000000000000000 + plain=0000800000000000 + cipher=2B9F982F20037FA9 + decrypted=0000800000000000 + Iterated 100 times=0000800000000000 + Iterated 1000 times=0000800000000000 + +Set 2, vector# 17: + key=000000000000000000000000000000000000000000000000 + plain=0000400000000000 + cipher=889DE068A16F0BE6 + decrypted=0000400000000000 + Iterated 100 times=0000400000000000 + Iterated 1000 times=0000400000000000 + +Set 2, vector# 18: + key=000000000000000000000000000000000000000000000000 + plain=0000200000000000 + cipher=E19E275D846A1298 + decrypted=0000200000000000 + Iterated 100 times=0000200000000000 + Iterated 1000 times=0000200000000000 + +Set 2, vector# 19: + key=000000000000000000000000000000000000000000000000 + plain=0000100000000000 + cipher=329A8ED523D71AEC + decrypted=0000100000000000 + Iterated 100 times=0000100000000000 + Iterated 1000 times=0000100000000000 + +Set 2, vector# 20: + key=000000000000000000000000000000000000000000000000 + plain=0000080000000000 + cipher=E7FCE22557D23C97 + decrypted=0000080000000000 + Iterated 100 times=0000080000000000 + Iterated 1000 times=0000080000000000 + +Set 2, vector# 21: + key=000000000000000000000000000000000000000000000000 + plain=0000040000000000 + cipher=12A9F5817FF2D65D + decrypted=0000040000000000 + Iterated 100 times=0000040000000000 + Iterated 1000 times=0000040000000000 + +Set 2, vector# 22: + key=000000000000000000000000000000000000000000000000 + plain=0000020000000000 + cipher=A484C3AD38DC9C19 + decrypted=0000020000000000 + Iterated 100 times=0000020000000000 + Iterated 1000 times=0000020000000000 + +Set 2, vector# 23: + key=000000000000000000000000000000000000000000000000 + plain=0000010000000000 + cipher=FBE00A8A1EF8AD72 + decrypted=0000010000000000 + Iterated 100 times=0000010000000000 + Iterated 1000 times=0000010000000000 + +Set 2, vector# 24: + key=000000000000000000000000000000000000000000000000 + plain=0000008000000000 + cipher=750D079407521363 + decrypted=0000008000000000 + Iterated 100 times=0000008000000000 + Iterated 1000 times=0000008000000000 + +Set 2, vector# 25: + key=000000000000000000000000000000000000000000000000 + plain=0000004000000000 + cipher=64FEED9C724C2FAF + decrypted=0000004000000000 + Iterated 100 times=0000004000000000 + Iterated 1000 times=0000004000000000 + +Set 2, vector# 26: + key=000000000000000000000000000000000000000000000000 + plain=0000002000000000 + cipher=F02B263B328E2B60 + decrypted=0000002000000000 + Iterated 100 times=0000002000000000 + Iterated 1000 times=0000002000000000 + +Set 2, vector# 27: + key=000000000000000000000000000000000000000000000000 + plain=0000001000000000 + cipher=9D64555A9A10B852 + decrypted=0000001000000000 + Iterated 100 times=0000001000000000 + Iterated 1000 times=0000001000000000 + +Set 2, vector# 28: + key=000000000000000000000000000000000000000000000000 + plain=0000000800000000 + cipher=D106FF0BED5255D7 + decrypted=0000000800000000 + Iterated 100 times=0000000800000000 + Iterated 1000 times=0000000800000000 + +Set 2, vector# 29: + key=000000000000000000000000000000000000000000000000 + plain=0000000400000000 + cipher=E1652C6B138C64A5 + decrypted=0000000400000000 + Iterated 100 times=0000000400000000 + Iterated 1000 times=0000000400000000 + +Set 2, vector# 30: + key=000000000000000000000000000000000000000000000000 + plain=0000000200000000 + cipher=E428581186EC8F46 + decrypted=0000000200000000 + Iterated 100 times=0000000200000000 + Iterated 1000 times=0000000200000000 + +Set 2, vector# 31: + key=000000000000000000000000000000000000000000000000 + plain=0000000100000000 + cipher=AEB5F5EDE22D1A36 + decrypted=0000000100000000 + Iterated 100 times=0000000100000000 + Iterated 1000 times=0000000100000000 + +Set 2, vector# 32: + key=000000000000000000000000000000000000000000000000 + plain=0000000080000000 + cipher=E943D7568AEC0C5C + decrypted=0000000080000000 + Iterated 100 times=0000000080000000 + Iterated 1000 times=0000000080000000 + +Set 2, vector# 33: + key=000000000000000000000000000000000000000000000000 + plain=0000000040000000 + cipher=DF98C8276F54B04B + decrypted=0000000040000000 + Iterated 100 times=0000000040000000 + Iterated 1000 times=0000000040000000 + +Set 2, vector# 34: + key=000000000000000000000000000000000000000000000000 + plain=0000000020000000 + cipher=B160E4680F6C696F + decrypted=0000000020000000 + Iterated 100 times=0000000020000000 + Iterated 1000 times=0000000020000000 + +Set 2, vector# 35: + key=000000000000000000000000000000000000000000000000 + plain=0000000010000000 + cipher=FA0752B07D9C4AB8 + decrypted=0000000010000000 + Iterated 100 times=0000000010000000 + Iterated 1000 times=0000000010000000 + +Set 2, vector# 36: + key=000000000000000000000000000000000000000000000000 + plain=0000000008000000 + cipher=CA3A2B036DBC8502 + decrypted=0000000008000000 + Iterated 100 times=0000000008000000 + Iterated 1000 times=0000000008000000 + +Set 2, vector# 37: + key=000000000000000000000000000000000000000000000000 + plain=0000000004000000 + cipher=5E0905517BB59BCF + decrypted=0000000004000000 + Iterated 100 times=0000000004000000 + Iterated 1000 times=0000000004000000 + +Set 2, vector# 38: + key=000000000000000000000000000000000000000000000000 + plain=0000000002000000 + cipher=814EEB3B91D90726 + decrypted=0000000002000000 + Iterated 100 times=0000000002000000 + Iterated 1000 times=0000000002000000 + +Set 2, vector# 39: + key=000000000000000000000000000000000000000000000000 + plain=0000000001000000 + cipher=4D49DB1532919C9F + decrypted=0000000001000000 + Iterated 100 times=0000000001000000 + Iterated 1000 times=0000000001000000 + +Set 2, vector# 40: + key=000000000000000000000000000000000000000000000000 + plain=0000000000800000 + cipher=25EB5FC3F8CF0621 + decrypted=0000000000800000 + Iterated 100 times=0000000000800000 + Iterated 1000 times=0000000000800000 + +Set 2, vector# 41: + key=000000000000000000000000000000000000000000000000 + plain=0000000000400000 + cipher=AB6A20C0620D1C6F + decrypted=0000000000400000 + Iterated 100 times=0000000000400000 + Iterated 1000 times=0000000000400000 + +Set 2, vector# 42: + key=000000000000000000000000000000000000000000000000 + plain=0000000000200000 + cipher=79E90DBC98F92CCA + decrypted=0000000000200000 + Iterated 100 times=0000000000200000 + Iterated 1000 times=0000000000200000 + +Set 2, vector# 43: + key=000000000000000000000000000000000000000000000000 + plain=0000000000100000 + cipher=866ECEDD8072BB0E + decrypted=0000000000100000 + Iterated 100 times=0000000000100000 + Iterated 1000 times=0000000000100000 + +Set 2, vector# 44: + key=000000000000000000000000000000000000000000000000 + plain=0000000000080000 + cipher=8B54536F2F3E64A8 + decrypted=0000000000080000 + Iterated 100 times=0000000000080000 + Iterated 1000 times=0000000000080000 + +Set 2, vector# 45: + key=000000000000000000000000000000000000000000000000 + plain=0000000000040000 + cipher=EA51D3975595B86B + decrypted=0000000000040000 + Iterated 100 times=0000000000040000 + Iterated 1000 times=0000000000040000 + +Set 2, vector# 46: + key=000000000000000000000000000000000000000000000000 + plain=0000000000020000 + cipher=CAFFC6AC4542DE31 + decrypted=0000000000020000 + Iterated 100 times=0000000000020000 + Iterated 1000 times=0000000000020000 + +Set 2, vector# 47: + key=000000000000000000000000000000000000000000000000 + plain=0000000000010000 + cipher=8DD45A2DDF90796C + decrypted=0000000000010000 + Iterated 100 times=0000000000010000 + Iterated 1000 times=0000000000010000 + +Set 2, vector# 48: + key=000000000000000000000000000000000000000000000000 + plain=0000000000008000 + cipher=1029D55E880EC2D0 + decrypted=0000000000008000 + Iterated 100 times=0000000000008000 + Iterated 1000 times=0000000000008000 + +Set 2, vector# 49: + key=000000000000000000000000000000000000000000000000 + plain=0000000000004000 + cipher=5D86CB23639DBEA9 + decrypted=0000000000004000 + Iterated 100 times=0000000000004000 + Iterated 1000 times=0000000000004000 + +Set 2, vector# 50: + key=000000000000000000000000000000000000000000000000 + plain=0000000000002000 + cipher=1D1CA853AE7C0C5F + decrypted=0000000000002000 + Iterated 100 times=0000000000002000 + Iterated 1000 times=0000000000002000 + +Set 2, vector# 51: + key=000000000000000000000000000000000000000000000000 + plain=0000000000001000 + cipher=CE332329248F3228 + decrypted=0000000000001000 + Iterated 100 times=0000000000001000 + Iterated 1000 times=0000000000001000 + +Set 2, vector# 52: + key=000000000000000000000000000000000000000000000000 + plain=0000000000000800 + cipher=8405D1ABE24FB942 + decrypted=0000000000000800 + Iterated 100 times=0000000000000800 + Iterated 1000 times=0000000000000800 + +Set 2, vector# 53: + key=000000000000000000000000000000000000000000000000 + plain=0000000000000400 + cipher=E643D78090CA4207 + decrypted=0000000000000400 + Iterated 100 times=0000000000000400 + Iterated 1000 times=0000000000000400 + +Set 2, vector# 54: + key=000000000000000000000000000000000000000000000000 + plain=0000000000000200 + cipher=48221B9937748A23 + decrypted=0000000000000200 + Iterated 100 times=0000000000000200 + Iterated 1000 times=0000000000000200 + +Set 2, vector# 55: + key=000000000000000000000000000000000000000000000000 + plain=0000000000000100 + cipher=DD7C0BBD61FAFD54 + decrypted=0000000000000100 + Iterated 100 times=0000000000000100 + Iterated 1000 times=0000000000000100 + +Set 2, vector# 56: + key=000000000000000000000000000000000000000000000000 + plain=0000000000000080 + cipher=2FBC291A570DB5C4 + decrypted=0000000000000080 + Iterated 100 times=0000000000000080 + Iterated 1000 times=0000000000000080 + +Set 2, vector# 57: + key=000000000000000000000000000000000000000000000000 + plain=0000000000000040 + cipher=E07C30D7E4E26E12 + decrypted=0000000000000040 + Iterated 100 times=0000000000000040 + Iterated 1000 times=0000000000000040 + +Set 2, vector# 58: + key=000000000000000000000000000000000000000000000000 + plain=0000000000000020 + cipher=0953E2258E8E90A1 + decrypted=0000000000000020 + Iterated 100 times=0000000000000020 + Iterated 1000 times=0000000000000020 + +Set 2, vector# 59: + key=000000000000000000000000000000000000000000000000 + plain=0000000000000010 + cipher=5B711BC4CEEBF2EE + decrypted=0000000000000010 + Iterated 100 times=0000000000000010 + Iterated 1000 times=0000000000000010 + +Set 2, vector# 60: + key=000000000000000000000000000000000000000000000000 + plain=0000000000000008 + cipher=CC083F1E6D9E85F6 + decrypted=0000000000000008 + Iterated 100 times=0000000000000008 + Iterated 1000 times=0000000000000008 + +Set 2, vector# 61: + key=000000000000000000000000000000000000000000000000 + plain=0000000000000004 + cipher=D2FD8867D50D2DFE + decrypted=0000000000000004 + Iterated 100 times=0000000000000004 + Iterated 1000 times=0000000000000004 + +Set 2, vector# 62: + key=000000000000000000000000000000000000000000000000 + plain=0000000000000002 + cipher=06E7EA22CE92708F + decrypted=0000000000000002 + Iterated 100 times=0000000000000002 + Iterated 1000 times=0000000000000002 + +Set 2, vector# 63: + key=000000000000000000000000000000000000000000000000 + plain=0000000000000001 + cipher=166B40B44ABA4BD6 + decrypted=0000000000000001 + Iterated 100 times=0000000000000001 + Iterated 1000 times=0000000000000001 + +Test vectors -- set 3 +===================== + +Set 3, vector# 0: + key=000000000000000000000000000000000000000000000000 + plain=0000000000000000 + cipher=8CA64DE9C1B123A7 + decrypted=0000000000000000 + Iterated 100 times=0000000000000000 + Iterated 1000 times=0000000000000000 + +Set 3, vector# 1: + key=010101010101010101010101010101010101010101010101 + plain=0101010101010101 + cipher=994D4DC157B96C52 + decrypted=0101010101010101 + Iterated 100 times=0101010101010101 + Iterated 1000 times=0101010101010101 + +Set 3, vector# 2: + key=020202020202020202020202020202020202020202020202 + plain=0202020202020202 + cipher=E127C2B61D98E6E2 + decrypted=0202020202020202 + Iterated 100 times=B575F7E036BBDE72 + Iterated 1000 times=EF66EB1095238FBB + +Set 3, vector# 3: + key=030303030303030303030303030303030303030303030303 + plain=0303030303030303 + cipher=984C91D78A269CE3 + decrypted=0303030303030303 + Iterated 100 times=F46D7FEC491D049B + Iterated 1000 times=1B54D2349C80B4F2 + +Set 3, vector# 4: + key=040404040404040404040404040404040404040404040404 + plain=0404040404040404 + cipher=1F4570BB77550683 + decrypted=0404040404040404 + Iterated 100 times=C95FC0A6EF6E8ED6 + Iterated 1000 times=373ADDEBEBA0E681 + +Set 3, vector# 5: + key=050505050505050505050505050505050505050505050505 + plain=0505050505050505 + cipher=3990ABF98D672B16 + decrypted=0505050505050505 + Iterated 100 times=FE4AA77EFE851A58 + Iterated 1000 times=434D8AC87CAF59AF + +Set 3, vector# 6: + key=060606060606060606060606060606060606060606060606 + plain=0606060606060606 + cipher=3F5150BBA081D585 + decrypted=0606060606060606 + Iterated 100 times=D1C5600E7B186BB1 + Iterated 1000 times=275229B5D2536536 + +Set 3, vector# 7: + key=070707070707070707070707070707070707070707070707 + plain=0707070707070707 + cipher=C65242248C9CF6F2 + decrypted=0707070707070707 + Iterated 100 times=DE3A1731A1D3324B + Iterated 1000 times=C9BC25D7BD6E4D43 + +Set 3, vector# 8: + key=080808080808080808080808080808080808080808080808 + plain=0808080808080808 + cipher=10772D40FAD24257 + decrypted=0808080808080808 + Iterated 100 times=DB3214AD3B35C572 + Iterated 1000 times=4E8A406CA4FEBC52 + +Set 3, vector# 9: + key=090909090909090909090909090909090909090909090909 + plain=0909090909090909 + cipher=F0139440647A6E7B + decrypted=0909090909090909 + Iterated 100 times=BD34ED357BC3938B + Iterated 1000 times=3944A4F231239FC9 + +Set 3, vector# 10: + key=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + plain=0A0A0A0A0A0A0A0A + cipher=0A288603044D740C + decrypted=0A0A0A0A0A0A0A0A + Iterated 100 times=C4CB008E3A0A62A9 + Iterated 1000 times=BF8FB60063D373AE + +Set 3, vector# 11: + key=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + plain=0B0B0B0B0B0B0B0B + cipher=6359916942F7438F + decrypted=0B0B0B0B0B0B0B0B + Iterated 100 times=74F7B3F057E53E49 + Iterated 1000 times=DDCCFBDA8C53A472 + +Set 3, vector# 12: + key=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + plain=0C0C0C0C0C0C0C0C + cipher=934316AE443CF08B + decrypted=0C0C0C0C0C0C0C0C + Iterated 100 times=ED62660F284343CD + Iterated 1000 times=3DB428FE2867D620 + +Set 3, vector# 13: + key=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + plain=0D0D0D0D0D0D0D0D + cipher=E3F56D7F1130A2B7 + decrypted=0D0D0D0D0D0D0D0D + Iterated 100 times=70EC69AF05EC4476 + Iterated 1000 times=64F1F4B38665C7ED + +Set 3, vector# 14: + key=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + plain=0E0E0E0E0E0E0E0E + cipher=A2E4705087C6B6B4 + decrypted=0E0E0E0E0E0E0E0E + Iterated 100 times=08006AE1A9F8798B + Iterated 1000 times=2F8DBD285D5353C7 + +Set 3, vector# 15: + key=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + plain=0F0F0F0F0F0F0F0F + cipher=D5D76E09A447E8C3 + decrypted=0F0F0F0F0F0F0F0F + Iterated 100 times=2804106DB462431F + Iterated 1000 times=2614F4610CF0A42F + +Set 3, vector# 16: + key=101010101010101010101010101010101010101010101010 + plain=1010101010101010 + cipher=DD7515F2BFC17F85 + decrypted=1010101010101010 + Iterated 100 times=59E4B20A2B9E13A4 + Iterated 1000 times=532E34B260E171B8 + +Set 3, vector# 17: + key=111111111111111111111111111111111111111111111111 + plain=1111111111111111 + cipher=F40379AB9E0EC533 + decrypted=1111111111111111 + Iterated 100 times=78A1257D2332D471 + Iterated 1000 times=3D9D7B0A4E0E3576 + +Set 3, vector# 18: + key=121212121212121212121212121212121212121212121212 + plain=1212121212121212 + cipher=96CD27784D1563E5 + decrypted=1212121212121212 + Iterated 100 times=A7712A48A287D855 + Iterated 1000 times=365B0126EB87A873 + +Set 3, vector# 19: + key=131313131313131313131313131313131313131313131313 + plain=1313131313131313 + cipher=2911CF5E94D33FE1 + decrypted=1313131313131313 + Iterated 100 times=B56D216335FBC5E9 + Iterated 1000 times=8019AFAEF257D470 + +Set 3, vector# 20: + key=141414141414141414141414141414141414141414141414 + plain=1414141414141414 + cipher=377B7F7CA3E5BBB3 + decrypted=1414141414141414 + Iterated 100 times=FA555D286B1156F2 + Iterated 1000 times=4727FE29150A7F16 + +Set 3, vector# 21: + key=151515151515151515151515151515151515151515151515 + plain=1515151515151515 + cipher=701AA63832905A92 + decrypted=1515151515151515 + Iterated 100 times=0675C352CB6B268C + Iterated 1000 times=11773ECEFE3411F3 + +Set 3, vector# 22: + key=161616161616161616161616161616161616161616161616 + plain=1616161616161616 + cipher=2006E716C4252D6D + decrypted=1616161616161616 + Iterated 100 times=F3714D29ACEDE2DC + Iterated 1000 times=F98398EA8B2AC1C2 + +Set 3, vector# 23: + key=171717171717171717171717171717171717171717171717 + plain=1717171717171717 + cipher=452C1197422469F8 + decrypted=1717171717171717 + Iterated 100 times=207E4B61863A19A9 + Iterated 1000 times=0E09BEBEA09D939F + +Set 3, vector# 24: + key=181818181818181818181818181818181818181818181818 + plain=1818181818181818 + cipher=C33FD1EB49CB64DA + decrypted=1818181818181818 + Iterated 100 times=06D0D308437682BF + Iterated 1000 times=957391D4A8E6E210 + +Set 3, vector# 25: + key=191919191919191919191919191919191919191919191919 + plain=1919191919191919 + cipher=7572278F364EB50D + decrypted=1919191919191919 + Iterated 100 times=3BDA68891F411E27 + Iterated 1000 times=ADF735FD0804EBD2 + +Set 3, vector# 26: + key=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + plain=1A1A1A1A1A1A1A1A + cipher=69E51488403EF4C3 + decrypted=1A1A1A1A1A1A1A1A + Iterated 100 times=B19C00E014F96E7B + Iterated 1000 times=DAE7603FB12C479E + +Set 3, vector# 27: + key=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + plain=1B1B1B1B1B1B1B1B + cipher=FF847E0ADF192825 + decrypted=1B1B1B1B1B1B1B1B + Iterated 100 times=CEF52AA0F6041207 + Iterated 1000 times=450A50776FE1D52D + +Set 3, vector# 28: + key=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + plain=1C1C1C1C1C1C1C1C + cipher=521B7FB3B41BB791 + decrypted=1C1C1C1C1C1C1C1C + Iterated 100 times=F9115CB99EE29D17 + Iterated 1000 times=4306B2FAC11DD0D5 + +Set 3, vector# 29: + key=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + plain=1D1D1D1D1D1D1D1D + cipher=26059A6A0F3F6B35 + decrypted=1D1D1D1D1D1D1D1D + Iterated 100 times=F83B8693D0A61969 + Iterated 1000 times=9313A53C6051BDB3 + +Set 3, vector# 30: + key=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + plain=1E1E1E1E1E1E1E1E + cipher=F24A8D2231C77538 + decrypted=1E1E1E1E1E1E1E1E + Iterated 100 times=5A4F39F8F17C06C7 + Iterated 1000 times=53827EDCF52A6FDC + +Set 3, vector# 31: + key=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + plain=1F1F1F1F1F1F1F1F + cipher=4FD96EC0D3304EF6 + decrypted=1F1F1F1F1F1F1F1F + Iterated 100 times=148D2605CC9E58F7 + Iterated 1000 times=BBFB81EE0E3EBE94 + +Set 3, vector# 32: + key=202020202020202020202020202020202020202020202020 + plain=2020202020202020 + cipher=18A9D580A900B699 + decrypted=2020202020202020 + Iterated 100 times=DEE7754452402184 + Iterated 1000 times=B8DD4D82B55F134B + +Set 3, vector# 33: + key=212121212121212121212121212121212121212121212121 + plain=2121212121212121 + cipher=88586E1D755B9B5A + decrypted=2121212121212121 + Iterated 100 times=53D24793D7540BEF + Iterated 1000 times=E4E7306C87527A86 + +Set 3, vector# 34: + key=222222222222222222222222222222222222222222222222 + plain=2222222222222222 + cipher=0F8ADFFB11DC2784 + decrypted=2222222222222222 + Iterated 100 times=07D5A975DFA30B40 + Iterated 1000 times=C94BE627ADD4C1F4 + +Set 3, vector# 35: + key=232323232323232323232323232323232323232323232323 + plain=2323232323232323 + cipher=2F30446C8312404A + decrypted=2323232323232323 + Iterated 100 times=5FEFB92AF665633A + Iterated 1000 times=9165CECAD1563F6F + +Set 3, vector# 36: + key=242424242424242424242424242424242424242424242424 + plain=2424242424242424 + cipher=0BA03D9E6C196511 + decrypted=2424242424242424 + Iterated 100 times=AEF52947F908450A + Iterated 1000 times=2607FBF97EC24B5F + +Set 3, vector# 37: + key=252525252525252525252525252525252525252525252525 + plain=2525252525252525 + cipher=3E55E997611E4B7D + decrypted=2525252525252525 + Iterated 100 times=1223E578868C1EF6 + Iterated 1000 times=E7287D8FE0A4383E + +Set 3, vector# 38: + key=262626262626262626262626262626262626262626262626 + plain=2626262626262626 + cipher=B2522FB5F158F0DF + decrypted=2626262626262626 + Iterated 100 times=0ABA5827280C32B8 + Iterated 1000 times=A1B49DCD07B91030 + +Set 3, vector# 39: + key=272727272727272727272727272727272727272727272727 + plain=2727272727272727 + cipher=2109425935406AB8 + decrypted=2727272727272727 + Iterated 100 times=06267445D6A2B26C + Iterated 1000 times=98F3E5792D5976B1 + +Set 3, vector# 40: + key=282828282828282828282828282828282828282828282828 + plain=2828282828282828 + cipher=11A16028F310FF16 + decrypted=2828282828282828 + Iterated 100 times=C87E6AA7024AA25D + Iterated 1000 times=AB5D4716E4461939 + +Set 3, vector# 41: + key=292929292929292929292929292929292929292929292929 + plain=2929292929292929 + cipher=73F0C45F379FE67F + decrypted=2929292929292929 + Iterated 100 times=C6146414D7439A59 + Iterated 1000 times=481411E80BA14CAC + +Set 3, vector# 42: + key=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + plain=2A2A2A2A2A2A2A2A + cipher=DCAD4338F7523816 + decrypted=2A2A2A2A2A2A2A2A + Iterated 100 times=E17F92BFECD0AB5D + Iterated 1000 times=803ABFDA91580AC1 + +Set 3, vector# 43: + key=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + plain=2B2B2B2B2B2B2B2B + cipher=B81634C1CEAB298C + decrypted=2B2B2B2B2B2B2B2B + Iterated 100 times=5DE00ED35CDC7428 + Iterated 1000 times=DE19633E77F4DB1F + +Set 3, vector# 44: + key=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + plain=2C2C2C2C2C2C2C2C + cipher=DD2CCB29B6C4C349 + decrypted=2C2C2C2C2C2C2C2C + Iterated 100 times=D3B6F9A1BD8B6B15 + Iterated 1000 times=1A847AE704BAE175 + +Set 3, vector# 45: + key=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + plain=2D2D2D2D2D2D2D2D + cipher=7D07A77A2ABD50A7 + decrypted=2D2D2D2D2D2D2D2D + Iterated 100 times=2BBEE289FFF55C85 + Iterated 1000 times=501C267C682280B5 + +Set 3, vector# 46: + key=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + plain=2E2E2E2E2E2E2E2E + cipher=30C1B0C1FD91D371 + decrypted=2E2E2E2E2E2E2E2E + Iterated 100 times=51A76271AD0E3A5F + Iterated 1000 times=D3DFC683AB67D88B + +Set 3, vector# 47: + key=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + plain=2F2F2F2F2F2F2F2F + cipher=C4427B31AC61973B + decrypted=2F2F2F2F2F2F2F2F + Iterated 100 times=5E95FF4A1B470C9D + Iterated 1000 times=F895F6404407A911 + +Set 3, vector# 48: + key=303030303030303030303030303030303030303030303030 + plain=3030303030303030 + cipher=F47BB46273B15EB5 + decrypted=3030303030303030 + Iterated 100 times=76BF3C2C0D1C4BD0 + Iterated 1000 times=3CBDCFABC1F321D7 + +Set 3, vector# 49: + key=313131313131313131313131313131313131313131313131 + plain=3131313131313131 + cipher=655EA628CF62585F + decrypted=3131313131313131 + Iterated 100 times=E1F5527AAA65DF2B + Iterated 1000 times=3F8E6EB07693959F + +Set 3, vector# 50: + key=323232323232323232323232323232323232323232323232 + plain=3232323232323232 + cipher=AC978C247863388F + decrypted=3232323232323232 + Iterated 100 times=353E49075AC19356 + Iterated 1000 times=74986B6B48A70B9B + +Set 3, vector# 51: + key=333333333333333333333333333333333333333333333333 + plain=3333333333333333 + cipher=0432ED386F2DE328 + decrypted=3333333333333333 + Iterated 100 times=8D6B18F726B5BD30 + Iterated 1000 times=FDB76D63EF051ADD + +Set 3, vector# 52: + key=343434343434343434343434343434343434343434343434 + plain=3434343434343434 + cipher=D254014CB986B3C2 + decrypted=3434343434343434 + Iterated 100 times=085509B51C375B80 + Iterated 1000 times=31E9566BB30E081E + +Set 3, vector# 53: + key=353535353535353535353535353535353535353535353535 + plain=3535353535353535 + cipher=B256E34BEDB49801 + decrypted=3535353535353535 + Iterated 100 times=E42078571072F66E + Iterated 1000 times=D6DACEDE04CA0A34 + +Set 3, vector# 54: + key=363636363636363636363636363636363636363636363636 + plain=3636363636363636 + cipher=37F8759EB77E7BFC + decrypted=3636363636363636 + Iterated 100 times=AFEC7EB983086E29 + Iterated 1000 times=13DC451CC0899787 + +Set 3, vector# 55: + key=373737373737373737373737373737373737373737373737 + plain=3737373737373737 + cipher=5013CA4F62C9CEA0 + decrypted=3737373737373737 + Iterated 100 times=C618B626D7F59D7E + Iterated 1000 times=2400481DFA1DBB2B + +Set 3, vector# 56: + key=383838383838383838383838383838383838383838383838 + plain=3838383838383838 + cipher=8940F7B3EACA5939 + decrypted=3838383838383838 + Iterated 100 times=50E8C2DEA98D747A + Iterated 1000 times=F48E40812BCEDECB + +Set 3, vector# 57: + key=393939393939393939393939393939393939393939393939 + plain=3939393939393939 + cipher=E22B19A55086774B + decrypted=3939393939393939 + Iterated 100 times=D580DC51FE300229 + Iterated 1000 times=9B062BA3FCBCFDA7 + +Set 3, vector# 58: + key=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + plain=3A3A3A3A3A3A3A3A + cipher=B04A2AAC925ABB0B + decrypted=3A3A3A3A3A3A3A3A + Iterated 100 times=5ED71B36898C8267 + Iterated 1000 times=274E36B383DF6DC9 + +Set 3, vector# 59: + key=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + plain=3B3B3B3B3B3B3B3B + cipher=8D250D58361597FC + decrypted=3B3B3B3B3B3B3B3B + Iterated 100 times=BC6F4D8E8A214F7F + Iterated 1000 times=FB73E01779F65CC9 + +Set 3, vector# 60: + key=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + plain=3C3C3C3C3C3C3C3C + cipher=51F0114FB6A6CD37 + decrypted=3C3C3C3C3C3C3C3C + Iterated 100 times=30F373AE7D7D79FB + Iterated 1000 times=0FB0B4E51CB476F4 + +Set 3, vector# 61: + key=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + plain=3D3D3D3D3D3D3D3D + cipher=9D0BB4DB830ECB73 + decrypted=3D3D3D3D3D3D3D3D + Iterated 100 times=A1F3CEA4B3D9CC9A + Iterated 1000 times=1AEF567D7490EC78 + +Set 3, vector# 62: + key=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + plain=3E3E3E3E3E3E3E3E + cipher=E96089D6368F3E1A + decrypted=3E3E3E3E3E3E3E3E + Iterated 100 times=542B44C055BB9634 + Iterated 1000 times=6E977FDBC5E79034 + +Set 3, vector# 63: + key=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + plain=3F3F3F3F3F3F3F3F + cipher=5C4CA877A4E1E92D + decrypted=3F3F3F3F3F3F3F3F + Iterated 100 times=A1A31BF7C8CAB9E0 + Iterated 1000 times=F7E4B7B1E23510C1 + +Set 3, vector# 64: + key=404040404040404040404040404040404040404040404040 + plain=4040404040404040 + cipher=6D55DDBC8DEA95FF + decrypted=4040404040404040 + Iterated 100 times=B25D93C2AB05A407 + Iterated 1000 times=E9B4FEB769DC5164 + +Set 3, vector# 65: + key=414141414141414141414141414141414141414141414141 + plain=4141414141414141 + cipher=19DF84AC95551003 + decrypted=4141414141414141 + Iterated 100 times=F3B7B874D651B0C1 + Iterated 1000 times=CEAD31BFB196EC40 + +Set 3, vector# 66: + key=424242424242424242424242424242424242424242424242 + plain=4242424242424242 + cipher=724E7332696D08A7 + decrypted=4242424242424242 + Iterated 100 times=230408DE94AF4851 + Iterated 1000 times=18833E5C5ED786D6 + +Set 3, vector# 67: + key=434343434343434343434343434343434343434343434343 + plain=4343434343434343 + cipher=B91810B8CDC58FE2 + decrypted=4343434343434343 + Iterated 100 times=23A07A213051D1E8 + Iterated 1000 times=C916B9FCDA721A6A + +Set 3, vector# 68: + key=444444444444444444444444444444444444444444444444 + plain=4444444444444444 + cipher=06E23526EDCCD0C4 + decrypted=4444444444444444 + Iterated 100 times=B618703EC9F61F9C + Iterated 1000 times=995DE7AB92F8F80E + +Set 3, vector# 69: + key=454545454545454545454545454545454545454545454545 + plain=4545454545454545 + cipher=EF52491D5468D441 + decrypted=4545454545454545 + Iterated 100 times=C1B909D856C5FFEC + Iterated 1000 times=6535B033E837EF13 + +Set 3, vector# 70: + key=464646464646464646464646464646464646464646464646 + plain=4646464646464646 + cipher=48019C59E39B90C5 + decrypted=4646464646464646 + Iterated 100 times=2099304DE58AB09A + Iterated 1000 times=D3AA7DEEB598209F + +Set 3, vector# 71: + key=474747474747474747474747474747474747474747474747 + plain=4747474747474747 + cipher=0544083FB902D8C0 + decrypted=4747474747474747 + Iterated 100 times=78F4BF46C9C74AD1 + Iterated 1000 times=D4E42FC7A708DD03 + +Set 3, vector# 72: + key=484848484848484848484848484848484848484848484848 + plain=4848484848484848 + cipher=63B15CADA668CE12 + decrypted=4848484848484848 + Iterated 100 times=14361721CBE46E6D + Iterated 1000 times=C4C055F1AB2E1499 + +Set 3, vector# 73: + key=494949494949494949494949494949494949494949494949 + plain=4949494949494949 + cipher=EACC0C1264171071 + decrypted=4949494949494949 + Iterated 100 times=13E767AD4E4B1953 + Iterated 1000 times=7570779E94106132 + +Set 3, vector# 74: + key=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + plain=4A4A4A4A4A4A4A4A + cipher=9D2B8C0AC605F274 + decrypted=4A4A4A4A4A4A4A4A + Iterated 100 times=E60E8AC0EFC62DB0 + Iterated 1000 times=66676C8CBA146CC6 + +Set 3, vector# 75: + key=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + plain=4B4B4B4B4B4B4B4B + cipher=C90F2F4C98A8FB2A + decrypted=4B4B4B4B4B4B4B4B + Iterated 100 times=BA52C22AC74C50CD + Iterated 1000 times=197A6690469A3027 + +Set 3, vector# 76: + key=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + plain=4C4C4C4C4C4C4C4C + cipher=03481B4828FD1D04 + decrypted=4C4C4C4C4C4C4C4C + Iterated 100 times=8CE5269DA1F0110E + Iterated 1000 times=19A581FD31EC8B62 + +Set 3, vector# 77: + key=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + plain=4D4D4D4D4D4D4D4D + cipher=C78FC45A1DCEA2E2 + decrypted=4D4D4D4D4D4D4D4D + Iterated 100 times=773E66FD6C2E08A6 + Iterated 1000 times=E8F7A9B6AC18C81F + +Set 3, vector# 78: + key=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + plain=4E4E4E4E4E4E4E4E + cipher=DB96D88C3460D801 + decrypted=4E4E4E4E4E4E4E4E + Iterated 100 times=7917869634D54BBB + Iterated 1000 times=16C6AE839E2774BC + +Set 3, vector# 79: + key=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + plain=4F4F4F4F4F4F4F4F + cipher=6C69E720F5105518 + decrypted=4F4F4F4F4F4F4F4F + Iterated 100 times=6EA272483DFF7B5C + Iterated 1000 times=F5B13670596DAF2F + +Set 3, vector# 80: + key=505050505050505050505050505050505050505050505050 + plain=5050505050505050 + cipher=0D262E418BC893F3 + decrypted=5050505050505050 + Iterated 100 times=416B6966D60870FB + Iterated 1000 times=08FF56D93754D6D0 + +Set 3, vector# 81: + key=515151515151515151515151515151515151515151515151 + plain=5151515151515151 + cipher=6AD84FD7848A0A5C + decrypted=5151515151515151 + Iterated 100 times=2B018AF9843D6D73 + Iterated 1000 times=5826597362AAB623 + +Set 3, vector# 82: + key=525252525252525252525252525252525252525252525252 + plain=5252525252525252 + cipher=C365CB35B34B6114 + decrypted=5252525252525252 + Iterated 100 times=70D6A1812318FA52 + Iterated 1000 times=7323A5995C42FB69 + +Set 3, vector# 83: + key=535353535353535353535353535353535353535353535353 + plain=5353535353535353 + cipher=1155392E877F42A9 + decrypted=5353535353535353 + Iterated 100 times=A7B55CCAA2E6553C + Iterated 1000 times=9C290E630C976E43 + +Set 3, vector# 84: + key=545454545454545454545454545454545454545454545454 + plain=5454545454545454 + cipher=531BE5F9405DA715 + decrypted=5454545454545454 + Iterated 100 times=B3B5D3FEBDDA3981 + Iterated 1000 times=B0D39C349104E27E + +Set 3, vector# 85: + key=555555555555555555555555555555555555555555555555 + plain=5555555555555555 + cipher=3BCDD41E6165A5E8 + decrypted=5555555555555555 + Iterated 100 times=186FEF7B7A7283A1 + Iterated 1000 times=D83AB81A85A8046E + +Set 3, vector# 86: + key=565656565656565656565656565656565656565656565656 + plain=5656565656565656 + cipher=2B1FF5610A19270C + decrypted=5656565656565656 + Iterated 100 times=50953DA8CED81BFB + Iterated 1000 times=F16D0717BEEC9DCF + +Set 3, vector# 87: + key=575757575757575757575757575757575757575757575757 + plain=5757575757575757 + cipher=D90772CF3F047CFD + decrypted=5757575757575757 + Iterated 100 times=F03447F802AA1DD4 + Iterated 1000 times=F0F8F7D232F0184E + +Set 3, vector# 88: + key=585858585858585858585858585858585858585858585858 + plain=5858585858585858 + cipher=1BEA27FFB72457B7 + decrypted=5858585858585858 + Iterated 100 times=8707BB9950390709 + Iterated 1000 times=55DFD7E8CAC23EF4 + +Set 3, vector# 89: + key=595959595959595959595959595959595959595959595959 + plain=5959595959595959 + cipher=85C3E0C429F34C27 + decrypted=5959595959595959 + Iterated 100 times=582111E687076FA8 + Iterated 1000 times=276D78F9EAFB523F + +Set 3, vector# 90: + key=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + plain=5A5A5A5A5A5A5A5A + cipher=F9038021E37C7618 + decrypted=5A5A5A5A5A5A5A5A + Iterated 100 times=3EBAF74BCA504FDC + Iterated 1000 times=248C7EE503B0C31C + +Set 3, vector# 91: + key=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + plain=5B5B5B5B5B5B5B5B + cipher=35BC6FF838DBA32F + decrypted=5B5B5B5B5B5B5B5B + Iterated 100 times=657C416FDD97CE7A + Iterated 1000 times=BDF93AEA60AF226A + +Set 3, vector# 92: + key=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + plain=5C5C5C5C5C5C5C5C + cipher=4927ACC8CE45ECE7 + decrypted=5C5C5C5C5C5C5C5C + Iterated 100 times=A22D60CC973E4E08 + Iterated 1000 times=48F5C04736EF8365 + +Set 3, vector# 93: + key=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + plain=5D5D5D5D5D5D5D5D + cipher=E812EE6E3572985C + decrypted=5D5D5D5D5D5D5D5D + Iterated 100 times=9F5BA471E525635A + Iterated 1000 times=87A04AA69F8B46A2 + +Set 3, vector# 94: + key=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + plain=5E5E5E5E5E5E5E5E + cipher=9BB93A89627BF65F + decrypted=5E5E5E5E5E5E5E5E + Iterated 100 times=EAFA7F35095F910E + Iterated 1000 times=1B48BCB25C51A005 + +Set 3, vector# 95: + key=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + plain=5F5F5F5F5F5F5F5F + cipher=EF12476884CB74CA + decrypted=5F5F5F5F5F5F5F5F + Iterated 100 times=7DB85A3FF7275567 + Iterated 1000 times=DB161940B8063D88 + +Set 3, vector# 96: + key=606060606060606060606060606060606060606060606060 + plain=6060606060606060 + cipher=1BF17E00C09E7CBF + decrypted=6060606060606060 + Iterated 100 times=60A4B4FFEDD8D09D + Iterated 1000 times=029A5E7D28389D02 + +Set 3, vector# 97: + key=616161616161616161616161616161616161616161616161 + plain=6161616161616161 + cipher=29932350C098DB5D + decrypted=6161616161616161 + Iterated 100 times=ED8650926D5BE408 + Iterated 1000 times=D005DE4058AA8EE0 + +Set 3, vector# 98: + key=626262626262626262626262626262626262626262626262 + plain=6262626262626262 + cipher=B476E6499842AC54 + decrypted=6262626262626262 + Iterated 100 times=51124BFBDA8C6C4D + Iterated 1000 times=947748735067EE8E + +Set 3, vector# 99: + key=636363636363636363636363636363636363636363636363 + plain=6363636363636363 + cipher=5C662C29C1E96056 + decrypted=6363636363636363 + Iterated 100 times=9127F446AFA01F90 + Iterated 1000 times=5FD86B7379C536EC + +Set 3, vector#100: + key=646464646464646464646464646464646464646464646464 + plain=6464646464646464 + cipher=3AF1703D76442789 + decrypted=6464646464646464 + Iterated 100 times=FA4A770BAFF12B9D + Iterated 1000 times=BE1D0835966297C5 + +Set 3, vector#101: + key=656565656565656565656565656565656565656565656565 + plain=6565656565656565 + cipher=86405D9B425A8C8C + decrypted=6565656565656565 + Iterated 100 times=A968CE8D91FAED99 + Iterated 1000 times=6CFC8EA18C1B4BB5 + +Set 3, vector#102: + key=666666666666666666666666666666666666666666666666 + plain=6666666666666666 + cipher=EBBF4810619C2C55 + decrypted=6666666666666666 + Iterated 100 times=4DC02B7CB96869BB + Iterated 1000 times=DFC74FA334B18C6F + +Set 3, vector#103: + key=676767676767676767676767676767676767676767676767 + plain=6767676767676767 + cipher=F8D1CD7367B21B5D + decrypted=6767676767676767 + Iterated 100 times=0037E1E9B97EF9C3 + Iterated 1000 times=EEFD10CAF2F18319 + +Set 3, vector#104: + key=686868686868686868686868686868686868686868686868 + plain=6868686868686868 + cipher=9EE703142BF8D7E2 + decrypted=6868686868686868 + Iterated 100 times=4E13D13ABC20616C + Iterated 1000 times=B7019E19F678AEAD + +Set 3, vector#105: + key=696969696969696969696969696969696969696969696969 + plain=6969696969696969 + cipher=5FDFFFC3AAAB0CB3 + decrypted=6969696969696969 + Iterated 100 times=1F7C5F4EEB57E2C5 + Iterated 1000 times=D23964427BC4C2E8 + +Set 3, vector#106: + key=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + plain=6A6A6A6A6A6A6A6A + cipher=26C940AB13574231 + decrypted=6A6A6A6A6A6A6A6A + Iterated 100 times=E77E2ED0A869672C + Iterated 1000 times=DAF3214A731AEAE0 + +Set 3, vector#107: + key=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + plain=6B6B6B6B6B6B6B6B + cipher=1E2DC77E36A84693 + decrypted=6B6B6B6B6B6B6B6B + Iterated 100 times=DEE6CE5A343AAD73 + Iterated 1000 times=A14CA4D7D4E7A5BC + +Set 3, vector#108: + key=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + plain=6C6C6C6C6C6C6C6C + cipher=0F4FF4D9BC7E2244 + decrypted=6C6C6C6C6C6C6C6C + Iterated 100 times=5DFD406F86064F9D + Iterated 1000 times=6903ECE350FB0EF8 + +Set 3, vector#109: + key=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + plain=6D6D6D6D6D6D6D6D + cipher=A4C9A0D04D3280CD + decrypted=6D6D6D6D6D6D6D6D + Iterated 100 times=940C9CCDC211FA4B + Iterated 1000 times=16C2877110368D1A + +Set 3, vector#110: + key=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + plain=6E6E6E6E6E6E6E6E + cipher=9FAF2C96FE84919D + decrypted=6E6E6E6E6E6E6E6E + Iterated 100 times=79CEC2D4828E2714 + Iterated 1000 times=D5964F85A6E7B786 + +Set 3, vector#111: + key=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + plain=6F6F6F6F6F6F6F6F + cipher=115DBC965E6096C8 + decrypted=6F6F6F6F6F6F6F6F + Iterated 100 times=8BA557D0AF10030F + Iterated 1000 times=F8C9D394FC0DC07D + +Set 3, vector#112: + key=707070707070707070707070707070707070707070707070 + plain=7070707070707070 + cipher=AF531E9520994017 + decrypted=7070707070707070 + Iterated 100 times=A30EA6C2CBE21FCB + Iterated 1000 times=9AAE92F061E2D684 + +Set 3, vector#113: + key=717171717171717171717171717171717171717171717171 + plain=7171717171717171 + cipher=B971ADE70E5C89EE + decrypted=7171717171717171 + Iterated 100 times=ACE97DAB7556DC0B + Iterated 1000 times=0F3FBCD85D262DAD + +Set 3, vector#114: + key=727272727272727272727272727272727272727272727272 + plain=7272727272727272 + cipher=415D81C86AF9C376 + decrypted=7272727272727272 + Iterated 100 times=D9C604DDAA99EDB9 + Iterated 1000 times=E1BAEA2A9C12F809 + +Set 3, vector#115: + key=737373737373737373737373737373737373737373737373 + plain=7373737373737373 + cipher=8DFB864FDB3C6811 + decrypted=7373737373737373 + Iterated 100 times=681DB6359D38B291 + Iterated 1000 times=B3F74991E4F22FB3 + +Set 3, vector#116: + key=747474747474747474747474747474747474747474747474 + plain=7474747474747474 + cipher=10B1C170E3398F91 + decrypted=7474747474747474 + Iterated 100 times=E74C05FE35DD3D57 + Iterated 1000 times=35DBF69F914F6667 + +Set 3, vector#117: + key=757575757575757575757575757575757575757575757575 + plain=7575757575757575 + cipher=CFEF7A1C0218DB1E + decrypted=7575757575757575 + Iterated 100 times=E7CA1157351E69FD + Iterated 1000 times=213D47FF935F29BC + +Set 3, vector#118: + key=767676767676767676767676767676767676767676767676 + plain=7676767676767676 + cipher=DBAC30A2A40B1B9C + decrypted=7676767676767676 + Iterated 100 times=671DEAD46E44823C + Iterated 1000 times=EDC55E5C2D3247E2 + +Set 3, vector#119: + key=777777777777777777777777777777777777777777777777 + plain=7777777777777777 + cipher=89D3BF37052162E9 + decrypted=7777777777777777 + Iterated 100 times=8E5B48A6A3BFFC8B + Iterated 1000 times=0B740BCC8FF4BFCF + +Set 3, vector#120: + key=787878787878787878787878787878787878787878787878 + plain=7878787878787878 + cipher=80D9230BDAEB67DC + decrypted=7878787878787878 + Iterated 100 times=F2C537E049166044 + Iterated 1000 times=CA6B600339E48829 + +Set 3, vector#121: + key=797979797979797979797979797979797979797979797979 + plain=7979797979797979 + cipher=3440911019AD68D7 + decrypted=7979797979797979 + Iterated 100 times=538F431DB2B41F67 + Iterated 1000 times=34A250D956BF8D45 + +Set 3, vector#122: + key=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + plain=7A7A7A7A7A7A7A7A + cipher=9626FE57596E199E + decrypted=7A7A7A7A7A7A7A7A + Iterated 100 times=4603F97E8B4951C4 + Iterated 1000 times=7ADBC621DF6F4B19 + +Set 3, vector#123: + key=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + plain=7B7B7B7B7B7B7B7B + cipher=DEA0B796624BB5BA + decrypted=7B7B7B7B7B7B7B7B + Iterated 100 times=C7EE24A41267ED74 + Iterated 1000 times=0A34B1517C7C4618 + +Set 3, vector#124: + key=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + plain=7C7C7C7C7C7C7C7C + cipher=E9E40542BDDB3E9D + decrypted=7C7C7C7C7C7C7C7C + Iterated 100 times=277C8F43A5E0A077 + Iterated 1000 times=E4CE03A6753F2BC4 + +Set 3, vector#125: + key=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + plain=7D7D7D7D7D7D7D7D + cipher=8AD99914B354B911 + decrypted=7D7D7D7D7D7D7D7D + Iterated 100 times=6AA910EA596A4386 + Iterated 1000 times=839EAD5AB5187F54 + +Set 3, vector#126: + key=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + plain=7E7E7E7E7E7E7E7E + cipher=6F85B98DD12CB13B + decrypted=7E7E7E7E7E7E7E7E + Iterated 100 times=ECD3B2B72EB3BB15 + Iterated 1000 times=1ED87FEAF3F24593 + +Set 3, vector#127: + key=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + plain=7F7F7F7F7F7F7F7F + cipher=10130DA3C3A23924 + decrypted=7F7F7F7F7F7F7F7F + Iterated 100 times=1EDB5BE02B8D688A + Iterated 1000 times=092CE7D5D91A870C + +Set 3, vector#128: + key=808080808080808080808080808080808080808080808080 + plain=8080808080808080 + cipher=EFECF25C3C5DC6DB + decrypted=8080808080808080 + Iterated 100 times=E124A41FD4729775 + Iterated 1000 times=F6D3182A26E578F3 + +Set 3, vector#129: + key=818181818181818181818181818181818181818181818181 + plain=8181818181818181 + cipher=907A46722ED34EC4 + decrypted=8181818181818181 + Iterated 100 times=132C4D48D14C44EA + Iterated 1000 times=E12780150C0DBA6C + +Set 3, vector#130: + key=828282828282828282828282828282828282828282828282 + plain=8282828282828282 + cipher=752666EB4CAB46EE + decrypted=8282828282828282 + Iterated 100 times=9556EF15A695BC79 + Iterated 1000 times=7C6152A54AE780AB + +Set 3, vector#131: + key=838383838383838383838383838383838383838383838383 + plain=8383838383838383 + cipher=161BFABD4224C162 + decrypted=8383838383838383 + Iterated 100 times=D88370BC5A1F5F88 + Iterated 1000 times=1B31FC598AC0D43B + +Set 3, vector#132: + key=848484848484848484848484848484848484848484848484 + plain=8484848484848484 + cipher=215F48699DB44A45 + decrypted=8484848484848484 + Iterated 100 times=3811DB5BED98128B + Iterated 1000 times=F5CB4EAE8383B9E7 + +Set 3, vector#133: + key=858585858585858585858585858585858585858585858585 + plain=8585858585858585 + cipher=69D901A8A691E661 + decrypted=8585858585858585 + Iterated 100 times=B9FC068174B6AE3B + Iterated 1000 times=852439DE2090B4E6 + +Set 3, vector#134: + key=868686868686868686868686868686868686868686868686 + plain=8686868686868686 + cipher=CBBF6EEFE6529728 + decrypted=8686868686868686 + Iterated 100 times=AC70BCE24D4BE098 + Iterated 1000 times=CB5DAF26A94072BA + +Set 3, vector#135: + key=878787878787878787878787878787878787878787878787 + plain=8787878787878787 + cipher=7F26DCF425149823 + decrypted=8787878787878787 + Iterated 100 times=0D3AC81FB6E99FBB + Iterated 1000 times=35949FFCC61B77D6 + +Set 3, vector#136: + key=888888888888888888888888888888888888888888888888 + plain=8888888888888888 + cipher=762C40C8FADE9D16 + decrypted=8888888888888888 + Iterated 100 times=71A4B7595C400374 + Iterated 1000 times=F48BF433700B4030 + +Set 3, vector#137: + key=898989898989898989898989898989898989898989898989 + plain=8989898989898989 + cipher=2453CF5D5BF4E463 + decrypted=8989898989898989 + Iterated 100 times=98E2152B91BB7DC3 + Iterated 1000 times=123AA1A3D2CDB81D + +Set 3, vector#138: + key=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + plain=8A8A8A8A8A8A8A8A + cipher=301085E3FDE724E1 + decrypted=8A8A8A8A8A8A8A8A + Iterated 100 times=1835EEA8CAE19602 + Iterated 1000 times=DEC2B8006CA0D643 + +Set 3, vector#139: + key=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + plain=8B8B8B8B8B8B8B8B + cipher=EF4E3E8F1CC6706E + decrypted=8B8B8B8B8B8B8B8B + Iterated 100 times=18B3FA01CA22C2A8 + Iterated 1000 times=CA2409606EB09998 + +Set 3, vector#140: + key=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + plain=8C8C8C8C8C8C8C8C + cipher=720479B024C397EE + decrypted=8C8C8C8C8C8C8C8C + Iterated 100 times=97E249CA62C74D6E + Iterated 1000 times=4C08B66E1B0DD04C + +Set 3, vector#141: + key=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + plain=8D8D8D8D8D8D8D8D + cipher=BEA27E3795063C89 + decrypted=8D8D8D8D8D8D8D8D + Iterated 100 times=2639FB2255661246 + Iterated 1000 times=1E4515D563ED07F6 + +Set 3, vector#142: + key=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + plain=8E8E8E8E8E8E8E8E + cipher=468E5218F1A37611 + decrypted=8E8E8E8E8E8E8E8E + Iterated 100 times=531682548AA923F4 + Iterated 1000 times=F0C04327A2D9D252 + +Set 3, vector#143: + key=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + plain=8F8F8F8F8F8F8F8F + cipher=50ACE16ADF66BFE8 + decrypted=8F8F8F8F8F8F8F8F + Iterated 100 times=5CF1593D341DE034 + Iterated 1000 times=65516D0F9E1D297B + +Set 3, vector#144: + key=909090909090909090909090909090909090909090909090 + plain=9090909090909090 + cipher=EEA24369A19F6937 + decrypted=9090909090909090 + Iterated 100 times=745AA82F50EFFCF0 + Iterated 1000 times=07362C6B03F23F82 + +Set 3, vector#145: + key=919191919191919191919191919191919191919191919191 + plain=9191919191919191 + cipher=6050D369017B6E62 + decrypted=9191919191919191 + Iterated 100 times=86313D2B7D71D8EB + Iterated 1000 times=2A69B07A59184879 + +Set 3, vector#146: + key=929292929292929292929292929292929292929292929292 + plain=9292929292929292 + cipher=5B365F2FB2CD7F32 + decrypted=9292929292929292 + Iterated 100 times=6BF363323DEE05B4 + Iterated 1000 times=E93D788EEFC972E5 + +Set 3, vector#147: + key=939393939393939393939393939393939393939393939393 + plain=9393939393939393 + cipher=F0B00B264381DDBB + decrypted=9393939393939393 + Iterated 100 times=A202BF9079F9B062 + Iterated 1000 times=96FC131CAF04F107 + +Set 3, vector#148: + key=949494949494949494949494949494949494949494949494 + plain=9494949494949494 + cipher=E1D23881C957B96C + decrypted=9494949494949494 + Iterated 100 times=211931A5CBC5528C + Iterated 1000 times=5EB35B282B185A43 + +Set 3, vector#149: + key=959595959595959595959595959595959595959595959595 + plain=9595959595959595 + cipher=D936BF54ECA8BDCE + decrypted=9595959595959595 + Iterated 100 times=1881D12F579698D3 + Iterated 1000 times=250CDEB58CE5151F + +Set 3, vector#150: + key=969696969696969696969696969696969696969696969696 + plain=9696969696969696 + cipher=A020003C5554F34C + decrypted=9696969696969696 + Iterated 100 times=E083A0B114A81D3A + Iterated 1000 times=2DC69BBD843B3D17 + +Set 3, vector#151: + key=979797979797979797979797979797979797979797979797 + plain=9797979797979797 + cipher=6118FCEBD407281D + decrypted=9797979797979797 + Iterated 100 times=B1EC2EC543DF9E93 + Iterated 1000 times=48FE61E609875152 + +Set 3, vector#152: + key=989898989898989898989898989898989898989898989898 + plain=9898989898989898 + cipher=072E328C984DE4A2 + decrypted=9898989898989898 + Iterated 100 times=FFC81E164681063C + Iterated 1000 times=1102EF350D0E7CE6 + +Set 3, vector#153: + key=999999999999999999999999999999999999999999999999 + plain=9999999999999999 + cipher=1440B7EF9E63D3AA + decrypted=9999999999999999 + Iterated 100 times=B23FD48346979644 + Iterated 1000 times=2038B05CCB4E7390 + +Set 3, vector#154: + key=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + plain=9A9A9A9A9A9A9A9A + cipher=79BFA264BDA57373 + decrypted=9A9A9A9A9A9A9A9A + Iterated 100 times=569731726E051266 + Iterated 1000 times=9303715E73E4B44A + +Set 3, vector#155: + key=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + plain=9B9B9B9B9B9B9B9B + cipher=C50E8FC289BBD876 + decrypted=9B9B9B9B9B9B9B9B + Iterated 100 times=05B588F4500ED462 + Iterated 1000 times=41E2F7CA699D683A + +Set 3, vector#156: + key=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + plain=9C9C9C9C9C9C9C9C + cipher=A399D3D63E169FA9 + decrypted=9C9C9C9C9C9C9C9C + Iterated 100 times=6ED80BB9505FE06F + Iterated 1000 times=A027948C863AC913 + +Set 3, vector#157: + key=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + plain=9D9D9D9D9D9D9D9D + cipher=4B8919B667BD53AB + decrypted=9D9D9D9D9D9D9D9D + Iterated 100 times=AEEDB404257393B2 + Iterated 1000 times=6B88B78CAF981171 + +Set 3, vector#158: + key=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + plain=9E9E9E9E9E9E9E9E + cipher=D66CDCAF3F6724A2 + decrypted=9E9E9E9E9E9E9E9E + Iterated 100 times=1279AF6D92A41BF7 + Iterated 1000 times=2FFA21BFA755711F + +Set 3, vector#159: + key=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + plain=9F9F9F9F9F9F9F9F + cipher=E40E81FF3F618340 + decrypted=9F9F9F9F9F9F9F9F + Iterated 100 times=9F5B4B0012272F62 + Iterated 1000 times=FD65A182D7C762FD + +Set 3, vector#160: + key=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + plain=A0A0A0A0A0A0A0A0 + cipher=10EDB8977B348B35 + decrypted=A0A0A0A0A0A0A0A0 + Iterated 100 times=8247A5C008D8AA98 + Iterated 1000 times=24E9E6BF47F9C277 + +Set 3, vector#161: + key=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + plain=A1A1A1A1A1A1A1A1 + cipher=6446C5769D8409A0 + decrypted=A1A1A1A1A1A1A1A1 + Iterated 100 times=150580CAF6A06EF1 + Iterated 1000 times=E4B7434DA3AE5FFA + +Set 3, vector#162: + key=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + plain=A2A2A2A2A2A2A2A2 + cipher=17ED1191CA8D67A3 + decrypted=A2A2A2A2A2A2A2A2 + Iterated 100 times=60A45B8E1ADA9CA5 + Iterated 1000 times=785FB5596074B95D + +Set 3, vector#163: + key=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + plain=A3A3A3A3A3A3A3A3 + cipher=B6D8533731BA1318 + decrypted=A3A3A3A3A3A3A3A3 + Iterated 100 times=5DD29F3368C1B1F7 + Iterated 1000 times=B70A3FB8C9107C9A + +Set 3, vector#164: + key=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + plain=A4A4A4A4A4A4A4A4 + cipher=CA439007C7245CD0 + decrypted=A4A4A4A4A4A4A4A4 + Iterated 100 times=9A83BE9022683185 + Iterated 1000 times=4206C5159F50DD95 + +Set 3, vector#165: + key=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + plain=A5A5A5A5A5A5A5A5 + cipher=06FC7FDE1C8389E7 + decrypted=A5A5A5A5A5A5A5A5 + Iterated 100 times=C14508B435AFB023 + Iterated 1000 times=DB73811AFC4F3CE3 + +Set 3, vector#166: + key=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + plain=A6A6A6A6A6A6A6A6 + cipher=7A3C1F3BD60CB3D8 + decrypted=A6A6A6A6A6A6A6A6 + Iterated 100 times=A7DEEE1978F89057 + Iterated 1000 times=D89287061504ADC0 + +Set 3, vector#167: + key=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + plain=A7A7A7A7A7A7A7A7 + cipher=E415D80048DBA848 + decrypted=A7A7A7A7A7A7A7A7 + Iterated 100 times=78F84466AFC6F8F6 + Iterated 1000 times=AA202817353DC10B + +Set 3, vector#168: + key=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + plain=A8A8A8A8A8A8A8A8 + cipher=26F88D30C0FB8302 + decrypted=A8A8A8A8A8A8A8A8 + Iterated 100 times=0FCBB807FD55E22B + Iterated 1000 times=0F07082DCD0FE7B1 + +Set 3, vector#169: + key=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + plain=A9A9A9A9A9A9A9A9 + cipher=D4E00A9EF5E6D8F3 + decrypted=A9A9A9A9A9A9A9A9 + Iterated 100 times=AF6AC2573127E404 + Iterated 1000 times=0E92F8E841136230 + +Set 3, vector#170: + key=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + plain=AAAAAAAAAAAAAAAA + cipher=C4322BE19E9A5A17 + decrypted=AAAAAAAAAAAAAAAA + Iterated 100 times=E7901084858D7C5E + Iterated 1000 times=27C547E57A57FB91 + +Set 3, vector#171: + key=ABABABABABABABABABABABABABABABABABABABABABABABAB + plain=ABABABABABABABAB + cipher=ACE41A06BFA258EA + decrypted=ABABABABABABABAB + Iterated 100 times=4C4A2C014225C67E + Iterated 1000 times=4F2C63CB6EFB1D81 + +Set 3, vector#172: + key=ACACACACACACACACACACACACACACACACACACACACACACACAC + plain=ACACACACACACACAC + cipher=EEAAC6D17880BD56 + decrypted=ACACACACACACACAC + Iterated 100 times=584AA3355D19AAC3 + Iterated 1000 times=63D6F19CF36891BC + +Set 3, vector#173: + key=ADADADADADADADADADADADADADADADADADADADADADADADAD + plain=ADADADADADADADAD + cipher=3C9A34CA4CB49EEB + decrypted=ADADADADADADADAD + Iterated 100 times=8F295E7EDCE705AD + Iterated 1000 times=8CDC5A66A3BD0496 + +Set 3, vector#174: + key=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + plain=AEAEAEAEAEAEAEAE + cipher=9527B0287B75F5A3 + decrypted=AEAEAEAEAEAEAEAE + Iterated 100 times=D4FE75067BC2928C + Iterated 1000 times=A7D9A68C9D5549DC + +Set 3, vector#175: + key=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + plain=AFAFAFAFAFAFAFAF + cipher=F2D9D1BE74376C0C + decrypted=AFAFAFAFAFAFAFAF + Iterated 100 times=BE94969929F78F04 + Iterated 1000 times=F700A926C8AB292F + +Set 3, vector#176: + key=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + plain=B0B0B0B0B0B0B0B0 + cipher=939618DF0AEFAAE7 + decrypted=B0B0B0B0B0B0B0B0 + Iterated 100 times=915D8DB7C20084A3 + Iterated 1000 times=0A4EC98FA69250D0 + +Set 3, vector#177: + key=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + plain=B1B1B1B1B1B1B1B1 + cipher=24692773CB9F27FE + decrypted=B1B1B1B1B1B1B1B1 + Iterated 100 times=86E87969CB2AB444 + Iterated 1000 times=E939517C61D88B43 + +Set 3, vector#178: + key=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + plain=B2B2B2B2B2B2B2B2 + cipher=38703BA5E2315D1D + decrypted=B2B2B2B2B2B2B2B2 + Iterated 100 times=88C1990293D1F759 + Iterated 1000 times=1708564953E737E0 + +Set 3, vector#179: + key=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + plain=B3B3B3B3B3B3B3B3 + cipher=FCB7E4B7D702E2FB + decrypted=B3B3B3B3B3B3B3B3 + Iterated 100 times=731AD9625E0FEEF1 + Iterated 1000 times=E65A7E02CE13749D + +Set 3, vector#180: + key=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + plain=B4B4B4B4B4B4B4B4 + cipher=36F0D0B3675704D5 + decrypted=B4B4B4B4B4B4B4B4 + Iterated 100 times=45AD3DD538B3AF32 + Iterated 1000 times=E685996FB965CFD8 + +Set 3, vector#181: + key=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + plain=B5B5B5B5B5B5B5B5 + cipher=62D473F539FA0D8B + decrypted=B5B5B5B5B5B5B5B5 + Iterated 100 times=19F1753F1039D24F + Iterated 1000 times=9998937345EB9339 + +Set 3, vector#182: + key=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + plain=B6B6B6B6B6B6B6B6 + cipher=1533F3ED9BE8EF8E + decrypted=B6B6B6B6B6B6B6B6 + Iterated 100 times=EC189852B1B4E6AC + Iterated 1000 times=8A8F88616BEF9ECD + +Set 3, vector#183: + key=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + plain=B7B7B7B7B7B7B7B7 + cipher=9C4EA352599731ED + decrypted=B7B7B7B7B7B7B7B7 + Iterated 100 times=EBC9E8DE341B9192 + Iterated 1000 times=3B3FAA0E54D1EB66 + +Set 3, vector#184: + key=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + plain=B8B8B8B8B8B8B8B8 + cipher=FABBF7C046FD273F + decrypted=B8B8B8B8B8B8B8B8 + Iterated 100 times=870B40B93638B52E + Iterated 1000 times=2B1BD03858F722FC + +Set 3, vector#185: + key=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + plain=B9B9B9B9B9B9B9B9 + cipher=B7FE63A61C646F3A + decrypted=B9B9B9B9B9B9B9B9 + Iterated 100 times=DF66CFB21A754F65 + Iterated 1000 times=2C5582114A67DF60 + +Set 3, vector#186: + key=BABABABABABABABABABABABABABABABABABABABABABABABA + plain=BABABABABABABABA + cipher=10ADB6E2AB972BBE + decrypted=BABABABABABABABA + Iterated 100 times=3E46F627A93A0013 + Iterated 1000 times=9ACA4FCC17C810EC + +Set 3, vector#187: + key=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + plain=BBBBBBBBBBBBBBBB + cipher=F91DCAD912332F3B + decrypted=BBBBBBBBBBBBBBBB + Iterated 100 times=49E78FC13609E063 + Iterated 1000 times=66A218546D0707F1 + +Set 3, vector#188: + key=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + plain=BCBCBCBCBCBCBCBC + cipher=46E7EF47323A701D + decrypted=BCBCBCBCBCBCBCBC + Iterated 100 times=DC5F85DECFAE2E17 + Iterated 1000 times=36E94603258DE595 + +Set 3, vector#189: + key=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + plain=BDBDBDBDBDBDBDBD + cipher=8DB18CCD9692F758 + decrypted=BDBDBDBDBDBDBDBD + Iterated 100 times=DCFBF7216B50B7AE + Iterated 1000 times=E77CC1A3A1287929 + +Set 3, vector#190: + key=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + plain=BEBEBEBEBEBEBEBE + cipher=E6207B536AAAEFFC + decrypted=BEBEBEBEBEBEBEBE + Iterated 100 times=0C48478B29AE4F3E + Iterated 1000 times=3152CE404E6913BF + +Set 3, vector#191: + key=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + plain=BFBFBFBFBFBFBFBF + cipher=92AA224372156A00 + decrypted=BFBFBFBFBFBFBFBF + Iterated 100 times=4DA26C3D54FA5BF8 + Iterated 1000 times=164B01489623AE9B + +Set 3, vector#192: + key=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + plain=C0C0C0C0C0C0C0C0 + cipher=A3B357885B1E16D2 + decrypted=C0C0C0C0C0C0C0C0 + Iterated 100 times=5E5CE4083735461F + Iterated 1000 times=081B484E1DCAEF3E + +Set 3, vector#193: + key=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + plain=C1C1C1C1C1C1C1C1 + cipher=169F7629C970C1E5 + decrypted=C1C1C1C1C1C1C1C1 + Iterated 100 times=ABD4BB3FAA4469CB + Iterated 1000 times=916880243A186FCB + +Set 3, vector#194: + key=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + plain=C2C2C2C2C2C2C2C2 + cipher=62F44B247CF1348C + decrypted=C2C2C2C2C2C2C2C2 + Iterated 100 times=5E0C315B4C263365 + Iterated 1000 times=E510A9828B6F1387 + +Set 3, vector#195: + key=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + plain=C3C3C3C3C3C3C3C3 + cipher=AE0FEEB0495932C8 + decrypted=C3C3C3C3C3C3C3C3 + Iterated 100 times=CF0C8C5182828604 + Iterated 1000 times=F04F4B1AE34B890B + +Set 3, vector#196: + key=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + plain=C4C4C4C4C4C4C4C4 + cipher=72DAF2A7C9EA6803 + decrypted=C4C4C4C4C4C4C4C4 + Iterated 100 times=4390B27175DEB080 + Iterated 1000 times=048C1FE88609A336 + +Set 3, vector#197: + key=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + plain=C5C5C5C5C5C5C5C5 + cipher=4FB5D5536DA544F4 + decrypted=C5C5C5C5C5C5C5C5 + Iterated 100 times=A128E4C976737D98 + Iterated 1000 times=D8B1C94C7C209236 + +Set 3, vector#198: + key=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + plain=C6C6C6C6C6C6C6C6 + cipher=1DD4E65AAF7988B4 + decrypted=C6C6C6C6C6C6C6C6 + Iterated 100 times=2A7F23AE01CFFDD6 + Iterated 1000 times=64F9D45C03430258 + +Set 3, vector#199: + key=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + plain=C7C7C7C7C7C7C7C7 + cipher=76BF084C1535A6C6 + decrypted=C7C7C7C7C7C7C7C7 + Iterated 100 times=AF173D2156728B85 + Iterated 1000 times=0B71BF7ED4312134 + +Set 3, vector#200: + key=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + plain=C8C8C8C8C8C8C8C8 + cipher=AFEC35B09D36315F + decrypted=C8C8C8C8C8C8C8C8 + Iterated 100 times=39E749D9280A6281 + Iterated 1000 times=DBFFB7E205E244D4 + +Set 3, vector#201: + key=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + plain=C9C9C9C9C9C9C9C9 + cipher=C8078A6148818403 + decrypted=C9C9C9C9C9C9C9C9 + Iterated 100 times=501381467CF791D6 + Iterated 1000 times=EC23BAE33F766878 + +Set 3, vector#202: + key=CACACACACACACACACACACACACACACACACACACACACACACACA + plain=CACACACACACACACA + cipher=4DA91CB4124B67FE + decrypted=CACACACACACACACA + Iterated 100 times=1BDF87A8EF8D0991 + Iterated 1000 times=29253121FB35F5CB + +Set 3, vector#203: + key=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + plain=CBCBCBCBCBCBCBCB + cipher=2DABFEB346794C3D + decrypted=CBCBCBCBCBCBCBCB + Iterated 100 times=F7AAF64AE3C8A47F + Iterated 1000 times=CE16A9944CF1F7E1 + +Set 3, vector#204: + key=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + plain=CCCCCCCCCCCCCCCC + cipher=FBCD12C790D21CD7 + decrypted=CCCCCCCCCCCCCCCC + Iterated 100 times=7294E708D94A42CF + Iterated 1000 times=0248929C10FAE522 + +Set 3, vector#205: + key=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + plain=CDCDCDCDCDCDCDCD + cipher=536873DB879CC770 + decrypted=CDCDCDCDCDCDCDCD + Iterated 100 times=CAC1B6F8A53E6CA9 + Iterated 1000 times=8B679494B758F464 + +Set 3, vector#206: + key=CECECECECECECECECECECECECECECECECECECECECECECECE + plain=CECECECECECECECE + cipher=9AA159D7309DA7A0 + decrypted=CECECECECECECECE + Iterated 100 times=1E0AAD85559A20D4 + Iterated 1000 times=C071914F896C6A60 + +Set 3, vector#207: + key=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + plain=CFCFCFCFCFCFCFCF + cipher=0B844B9D8C4EA14A + decrypted=CFCFCFCFCFCFCFCF + Iterated 100 times=8940C3D3F2E3B42F + Iterated 1000 times=C34230543E0CDE28 + +Set 3, vector#208: + key=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + plain=D0D0D0D0D0D0D0D0 + cipher=3BBD84CE539E68C4 + decrypted=D0D0D0D0D0D0D0D0 + Iterated 100 times=A16A00B5E4B8F362 + Iterated 1000 times=076A09BFBBF856EE + +Set 3, vector#209: + key=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + plain=D1D1D1D1D1D1D1D1 + cipher=CF3E4F3E026E2C8E + decrypted=D1D1D1D1D1D1D1D1 + Iterated 100 times=AE589D8E52F1C5A0 + Iterated 1000 times=2C20397C54982774 + +Set 3, vector#210: + key=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + plain=D2D2D2D2D2D2D2D2 + cipher=82F85885D542AF58 + decrypted=D2D2D2D2D2D2D2D2 + Iterated 100 times=D4411D76000AA37A + Iterated 1000 times=AFE3D98397DD7F4A + +Set 3, vector#211: + key=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + plain=D3D3D3D3D3D3D3D3 + cipher=22D334D6493B3CB6 + decrypted=D3D3D3D3D3D3D3D3 + Iterated 100 times=2C49065E427494EA + Iterated 1000 times=E57B8518FB451E8A + +Set 3, vector#212: + key=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + plain=D4D4D4D4D4D4D4D4 + cipher=47E9CB3E3154D673 + decrypted=D4D4D4D4D4D4D4D4 + Iterated 100 times=A21FF12CA3238BD7 + Iterated 1000 times=21E69CC1880B24E0 + +Set 3, vector#213: + key=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + plain=D5D5D5D5D5D5D5D5 + cipher=2352BCC708ADC7E9 + decrypted=D5D5D5D5D5D5D5D5 + Iterated 100 times=1E806D40132F54A2 + Iterated 1000 times=7FC540256EA7F53E + +Set 3, vector#214: + key=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + plain=D6D6D6D6D6D6D6D6 + cipher=8C0F3BA0C8601980 + decrypted=D6D6D6D6D6D6D6D6 + Iterated 100 times=39EB9BEB28BC65A6 + Iterated 1000 times=B7EBEE17F45EB353 + +Set 3, vector#215: + key=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + plain=D7D7D7D7D7D7D7D7 + cipher=EE5E9FD70CEF00E9 + decrypted=D7D7D7D7D7D7D7D7 + Iterated 100 times=37819558FDB55DA2 + Iterated 1000 times=54A2B8E91BB9E6C6 + +Set 3, vector#216: + key=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + plain=D8D8D8D8D8D8D8D8 + cipher=DEF6BDA6CABF9547 + decrypted=D8D8D8D8D8D8D8D8 + Iterated 100 times=F9D98BBA295D4D93 + Iterated 1000 times=670C1A86D2A6894E + +Set 3, vector#217: + key=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + plain=D9D9D9D9D9D9D9D9 + cipher=4DADD04A0EA70F20 + decrypted=D9D9D9D9D9D9D9D9 + Iterated 100 times=F545A7D8D7F3CD47 + Iterated 1000 times=5E4B6232F846EFCF + +Set 3, vector#218: + key=DADADADADADADADADADADADADADADADADADADADADADADADA + plain=DADADADADADADADA + cipher=C1AA16689EE1B482 + decrypted=DADADADADADADADA + Iterated 100 times=EDDC1A877973E109 + Iterated 1000 times=18D782701F5BC7C1 + +Set 3, vector#219: + key=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + plain=DBDBDBDBDBDBDBDB + cipher=F45FC26193E69AEE + decrypted=DBDBDBDBDBDBDBDB + Iterated 100 times=510AD6B806F7BAF5 + Iterated 1000 times=D9F80406813DB4A0 + +Set 3, vector#220: + key=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + plain=DCDCDCDCDCDCDCDC + cipher=D0CFBB937CEDBFB5 + decrypted=DCDCDCDCDCDCDCDC + Iterated 100 times=A01046D5099A9CC5 + Iterated 1000 times=6E9A31352EA9C090 + +Set 3, vector#221: + key=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + plain=DDDDDDDDDDDDDDDD + cipher=F0752004EE23D87B + decrypted=DDDDDDDDDDDDDDDD + Iterated 100 times=F82A568A205CF4BF + Iterated 1000 times=36B419D8522B3E0B + +Set 3, vector#222: + key=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + plain=DEDEDEDEDEDEDEDE + cipher=77A791E28AA464A5 + decrypted=DEDEDEDEDEDEDEDE + Iterated 100 times=AC2DB86C28ABF410 + Iterated 1000 times=1B18CF9378AD8579 + +Set 3, vector#223: + key=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + plain=DFDFDFDFDFDFDFDF + cipher=E7562A7F56FF4966 + decrypted=DFDFDFDFDFDFDFDF + Iterated 100 times=21188ABBADBFDE7B + Iterated 1000 times=4722B27D4AA0ECB4 + +Set 3, vector#224: + key=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + plain=E0E0E0E0E0E0E0E0 + cipher=B026913F2CCFB109 + decrypted=E0E0E0E0E0E0E0E0 + Iterated 100 times=EB72D9FA3361A708 + Iterated 1000 times=44047E11F1C1416B + +Set 3, vector#225: + key=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + plain=E1E1E1E1E1E1E1E1 + cipher=0DB572DDCE388AC7 + decrypted=E1E1E1E1E1E1E1E1 + Iterated 100 times=A5B0C6070E83F938 + Iterated 1000 times=AC7D81230AD59023 + +Set 3, vector#226: + key=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + plain=E2E2E2E2E2E2E2E2 + cipher=D9FA6595F0C094CA + decrypted=E2E2E2E2E2E2E2E2 + Iterated 100 times=07C4796C2F59E696 + Iterated 1000 times=6CEC5AC39FAE424C + +Set 3, vector#227: + key=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + plain=E3E3E3E3E3E3E3E3 + cipher=ADE4804C4BE4486E + decrypted=E3E3E3E3E3E3E3E3 + Iterated 100 times=06EEA346611D62E8 + Iterated 1000 times=BCF94D053EE22F2A + +Set 3, vector#228: + key=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + plain=E4E4E4E4E4E4E4E4 + cipher=007B81F520E6D7DA + decrypted=E4E4E4E4E4E4E4E4 + Iterated 100 times=310AD55F09FBEDF8 + Iterated 1000 times=BAF5AF88901E2AD2 + +Set 3, vector#229: + key=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + plain=E5E5E5E5E5E5E5E5 + cipher=961AEB77BFC10B3C + decrypted=E5E5E5E5E5E5E5E5 + Iterated 100 times=4E63FF1FEB069184 + Iterated 1000 times=25189FC04ED3B861 + +Set 3, vector#230: + key=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + plain=E6E6E6E6E6E6E6E6 + cipher=8A8DD870C9B14AF2 + decrypted=E6E6E6E6E6E6E6E6 + Iterated 100 times=C4259776E0BEE1D8 + Iterated 1000 times=5208CA02F7FB142D + +Set 3, vector#231: + key=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + plain=E7E7E7E7E7E7E7E7 + cipher=3CC02E14B6349B25 + decrypted=E7E7E7E7E7E7E7E7 + Iterated 100 times=F92F2CF7BC897D40 + Iterated 1000 times=6A8C6E2B57191DEF + +Set 3, vector#232: + key=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + plain=E8E8E8E8E8E8E8E8 + cipher=BAD3EE68BDDB9607 + decrypted=E8E8E8E8E8E8E8E8 + Iterated 100 times=DF81B49E79C5E656 + Iterated 1000 times=F1F641415F626C60 + +Set 3, vector#233: + key=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + plain=E9E9E9E9E9E9E9E9 + cipher=DFF918E93BDAD292 + decrypted=E9E9E9E9E9E9E9E9 + Iterated 100 times=0C8EB2D653121D23 + Iterated 1000 times=067C671574D53E3D + +Set 3, vector#234: + key=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + plain=EAEAEAEAEAEAEAEA + cipher=8FE559C7CD6FA56D + decrypted=EAEAEAEAEAEAEAEA + Iterated 100 times=F98A3CAD3494D973 + Iterated 1000 times=EE88C13101CBEE0C + +Set 3, vector#235: + key=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + plain=EBEBEBEBEBEBEBEB + cipher=C88480835C1A444C + decrypted=EBEBEBEBEBEBEBEB + Iterated 100 times=05AAA2D794EEA90D + Iterated 1000 times=B8D801D6EAF580E9 + +Set 3, vector#236: + key=ECECECECECECECECECECECECECECECECECECECECECECECEC + plain=ECECECECECECECEC + cipher=D6EE30A16B2CC01E + decrypted=ECECECECECECECEC + Iterated 100 times=4A92DE9CCA043A16 + Iterated 1000 times=7FE650510DA82B8F + +Set 3, vector#237: + key=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + plain=EDEDEDEDEDEDEDED + cipher=6932D887B2EA9C1A + decrypted=EDEDEDEDEDEDEDED + Iterated 100 times=588ED5B75D7827AA + Iterated 1000 times=C9A4FED91478578C + +Set 3, vector#238: + key=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + plain=EEEEEEEEEEEEEEEE + cipher=0BFC865461F13ACC + decrypted=EEEEEEEEEEEEEEEE + Iterated 100 times=875EDA82DCCD2B8E + Iterated 1000 times=C26284F5B1F1CA89 + +Set 3, vector#239: + key=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + plain=EFEFEFEFEFEFEFEF + cipher=228AEA0D403E807A + decrypted=EFEFEFEFEFEFEFEF + Iterated 100 times=A61B4DF5D461EC5B + Iterated 1000 times=ACD1CB4D9F1E8E47 + +Set 3, vector#240: + key=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + plain=F0F0F0F0F0F0F0F0 + cipher=2A2891F65BB8173C + decrypted=F0F0F0F0F0F0F0F0 + Iterated 100 times=D7FBEF924B9DBCE0 + Iterated 1000 times=D9EB0B9EF30F5BD0 + +Set 3, vector#241: + key=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + plain=F1F1F1F1F1F1F1F1 + cipher=5D1B8FAF7839494B + decrypted=F1F1F1F1F1F1F1F1 + Iterated 100 times=F7FF951E56078674 + Iterated 1000 times=D07242D7A2ACAC38 + +Set 3, vector#242: + key=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + plain=F2F2F2F2F2F2F2F2 + cipher=1C0A9280EECF5D48 + decrypted=F2F2F2F2F2F2F2F2 + Iterated 100 times=8F139650FA13BB89 + Iterated 1000 times=9B0E0B4C799A3812 + +Set 3, vector#243: + key=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + plain=F3F3F3F3F3F3F3F3 + cipher=6CBCE951BBC30F74 + decrypted=F3F3F3F3F3F3F3F3 + Iterated 100 times=129D99F0D7BCBC32 + Iterated 1000 times=C24BD701D79829DF + +Set 3, vector#244: + key=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + plain=F4F4F4F4F4F4F4F4 + cipher=9CA66E96BD08BC70 + decrypted=F4F4F4F4F4F4F4F4 + Iterated 100 times=8B084C0FA81AC1B6 + Iterated 1000 times=2233042573AC5B8D + +Set 3, vector#245: + key=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + plain=F5F5F5F5F5F5F5F5 + cipher=F5D779FCFBB28BF3 + decrypted=F5F5F5F5F5F5F5F5 + Iterated 100 times=3B34FF71C5F59D56 + Iterated 1000 times=407049FF9C2C8C51 + +Set 3, vector#246: + key=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + plain=F6F6F6F6F6F6F6F6 + cipher=0FEC6BBF9B859184 + decrypted=F6F6F6F6F6F6F6F6 + Iterated 100 times=42CB12CA843C6C74 + Iterated 1000 times=C6BB5B0DCEDC6036 + +Set 3, vector#247: + key=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + plain=F7F7F7F7F7F7F7F7 + cipher=EF88D2BF052DBDA8 + decrypted=F7F7F7F7F7F7F7F7 + Iterated 100 times=24CDEB52C4CA3A8D + Iterated 1000 times=B175BF935B0143AD + +Set 3, vector#248: + key=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + plain=F8F8F8F8F8F8F8F8 + cipher=39ADBDDB7363090D + decrypted=F8F8F8F8F8F8F8F8 + Iterated 100 times=21C5E8CE5E2CCDB4 + Iterated 1000 times=3643DA284291B2BC + +Set 3, vector#249: + key=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + plain=F9F9F9F9F9F9F9F9 + cipher=C0AEAF445F7E2A7A + decrypted=F9F9F9F9F9F9F9F9 + Iterated 100 times=2E3A9FF184E7944E + Iterated 1000 times=D8ADD64A2DAC9AC9 + +Set 3, vector#250: + key=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + plain=FAFAFAFAFAFAFAFA + cipher=C66F54067298D4E9 + decrypted=FAFAFAFAFAFAFAFA + Iterated 100 times=01B55881017AE5A7 + Iterated 1000 times=BCB275378350A650 + +Set 3, vector#251: + key=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + plain=FBFBFBFBFBFBFBFB + cipher=E0BA8F4488AAF97C + decrypted=FBFBFBFBFBFBFBFB + Iterated 100 times=36A03F5910917129 + Iterated 1000 times=C8C52214145F197E + +Set 3, vector#252: + key=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + plain=FCFCFCFCFCFCFCFC + cipher=67B36E2875D9631C + decrypted=FCFCFCFCFCFCFCFC + Iterated 100 times=0B928013B6E2FB64 + Iterated 1000 times=E4AB2DCB637F4B0D + +Set 3, vector#253: + key=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + plain=FDFDFDFDFDFDFDFD + cipher=1ED83D49E267191D + decrypted=FDFDFDFDFDFDFDFD + Iterated 100 times=4A8A081FC944218D + Iterated 1000 times=109914EF6ADC7044 + +Set 3, vector#254: + key=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + plain=FEFEFEFEFEFEFEFE + cipher=66B2B23EA84693AD + decrypted=FEFEFEFEFEFEFEFE + Iterated 100 times=FEFEFEFEFEFEFEFE + Iterated 1000 times=FEFEFEFEFEFEFEFE + +Set 3, vector#255: + key=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + plain=FFFFFFFFFFFFFFFF + cipher=7359B2163E4EDC58 + decrypted=FFFFFFFFFFFFFFFF + Iterated 100 times=FFFFFFFFFFFFFFFF + Iterated 1000 times=FFFFFFFFFFFFFFFF + +Test vectors -- set 4 +===================== + +Set 4, vector# 0: + key=000102030405060708090A0B0C0D0E0F1011121314151617 + plain=0011223344556677 + cipher=97A25BA82B564F4C + decrypted=0011223344556677 + Iterated 100 times=2BCBD5412F8B1369 + Iterated 1000 times=E3598176850E736F + +Set 4, vector# 1: + key=2BD6459F82C5B300952C49104881FF482BD6459F82C5B300 + plain=EA024714AD5C4D84 + cipher=C616ACE843958247 + decrypted=EA024714AD5C4D84 + Iterated 100 times=722DC5D81027B931 + Iterated 1000 times=B76BBEBC4AF4E909 + +Test vectors -- set 5 +===================== + +Set 5, vector# 0: + key=800000000000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=1C29EEE68829F666 + encrypted=0000000000000000 + +Set 5, vector# 1: + key=400000000000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=1EBAA7E2844108D1 + encrypted=0000000000000000 + +Set 5, vector# 2: + key=200000000000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=DD75FF6DD1D07407 + encrypted=0000000000000000 + +Set 5, vector# 3: + key=100000000000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=6C0D0366D7FC1E93 + encrypted=0000000000000000 + +Set 5, vector# 4: + key=080000000000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=65FB4EDB3731E927 + encrypted=0000000000000000 + +Set 5, vector# 5: + key=040000000000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=1A4795892BD82629 + encrypted=0000000000000000 + +Set 5, vector# 6: + key=020000000000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=6E228A9F47A31527 + encrypted=0000000000000000 + +Set 5, vector# 7: + key=010000000000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 8: + key=008000000000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=5A01EA0528FE4DBC + encrypted=0000000000000000 + +Set 5, vector# 9: + key=004000000000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=2AA7048B7F843ACC + encrypted=0000000000000000 + +Set 5, vector# 10: + key=002000000000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=FB1426125A5AE00F + encrypted=0000000000000000 + +Set 5, vector# 11: + key=001000000000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=3ACC2A83D9FE0CF8 + encrypted=0000000000000000 + +Set 5, vector# 12: + key=000800000000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=2616451A5426B97D + encrypted=0000000000000000 + +Set 5, vector# 13: + key=000400000000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=B85395BAA402FFB9 + encrypted=0000000000000000 + +Set 5, vector# 14: + key=000200000000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=D02182A2E8E573A1 + encrypted=0000000000000000 + +Set 5, vector# 15: + key=000100000000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 16: + key=000080000000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=C6ED12A06A4CC156 + encrypted=0000000000000000 + +Set 5, vector# 17: + key=000040000000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=64EEA4A26D381E26 + encrypted=0000000000000000 + +Set 5, vector# 18: + key=000020000000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=4EA9D5AA0C2C3C4E + encrypted=0000000000000000 + +Set 5, vector# 19: + key=000010000000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=8D8661C34C6F4D21 + encrypted=0000000000000000 + +Set 5, vector# 20: + key=000008000000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=E3FF48ACC26B8A33 + encrypted=0000000000000000 + +Set 5, vector# 21: + key=000004000000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=C57374F43AF34F17 + encrypted=0000000000000000 + +Set 5, vector# 22: + key=000002000000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=857FB4722F85F57F + encrypted=0000000000000000 + +Set 5, vector# 23: + key=000001000000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 24: + key=000000800000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=D86AFF1EE01AAA00 + encrypted=0000000000000000 + +Set 5, vector# 25: + key=000000400000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=7B4937859794FC5E + encrypted=0000000000000000 + +Set 5, vector# 26: + key=000000200000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=05EF338303C238D9 + encrypted=0000000000000000 + +Set 5, vector# 27: + key=000000100000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=0E2F05283A7DD2B2 + encrypted=0000000000000000 + +Set 5, vector# 28: + key=000000080000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=661502A71B53EAD4 + encrypted=0000000000000000 + +Set 5, vector# 29: + key=000000040000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=1EBBFCECD36FA671 + encrypted=0000000000000000 + +Set 5, vector# 30: + key=000000020000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=6800E59AF69486CD + encrypted=0000000000000000 + +Set 5, vector# 31: + key=000000010000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 32: + key=000000008000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=82453A94E658B38D + encrypted=0000000000000000 + +Set 5, vector# 33: + key=000000004000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=BD0622EBC5E34C41 + encrypted=0000000000000000 + +Set 5, vector# 34: + key=000000002000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=4C3E34B8BE70C9F2 + encrypted=0000000000000000 + +Set 5, vector# 35: + key=000000001000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=1027E471BF185728 + encrypted=0000000000000000 + +Set 5, vector# 36: + key=000000000800000000000000000000000000000000000000 + cipher=0000000000000000 + plain=39DE1CB6FE1959A4 + encrypted=0000000000000000 + +Set 5, vector# 37: + key=000000000400000000000000000000000000000000000000 + cipher=0000000000000000 + plain=E3C3CC1A68B58E5D + encrypted=0000000000000000 + +Set 5, vector# 38: + key=000000000200000000000000000000000000000000000000 + cipher=0000000000000000 + plain=B60F05703D5012FA + encrypted=0000000000000000 + +Set 5, vector# 39: + key=000000000100000000000000000000000000000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 40: + key=000000000080000000000000000000000000000000000000 + cipher=0000000000000000 + plain=D19667C59D94D4F7 + encrypted=0000000000000000 + +Set 5, vector# 41: + key=000000000040000000000000000000000000000000000000 + cipher=0000000000000000 + plain=3CA5963292ED8725 + encrypted=0000000000000000 + +Set 5, vector# 42: + key=000000000020000000000000000000000000000000000000 + cipher=0000000000000000 + plain=1F2B2104BF62E510 + encrypted=0000000000000000 + +Set 5, vector# 43: + key=000000000010000000000000000000000000000000000000 + cipher=0000000000000000 + plain=322D5F2AD1F6C3F8 + encrypted=0000000000000000 + +Set 5, vector# 44: + key=000000000008000000000000000000000000000000000000 + cipher=0000000000000000 + plain=202D8D2E16C3DE65 + encrypted=0000000000000000 + +Set 5, vector# 45: + key=000000000004000000000000000000000000000000000000 + cipher=0000000000000000 + plain=10B71036AF979F7A + encrypted=0000000000000000 + +Set 5, vector# 46: + key=000000000002000000000000000000000000000000000000 + cipher=0000000000000000 + plain=980048358ADB5189 + encrypted=0000000000000000 + +Set 5, vector# 47: + key=000000000001000000000000000000000000000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 48: + key=000000000000800000000000000000000000000000000000 + cipher=0000000000000000 + plain=737589DC3ADDB4D5 + encrypted=0000000000000000 + +Set 5, vector# 49: + key=000000000000400000000000000000000000000000000000 + cipher=0000000000000000 + plain=F7900FD046800D04 + encrypted=0000000000000000 + +Set 5, vector# 50: + key=000000000000200000000000000000000000000000000000 + cipher=0000000000000000 + plain=95BE3F4238740526 + encrypted=0000000000000000 + +Set 5, vector# 51: + key=000000000000100000000000000000000000000000000000 + cipher=0000000000000000 + plain=656F2445A164F9E1 + encrypted=0000000000000000 + +Set 5, vector# 52: + key=000000000000080000000000000000000000000000000000 + cipher=0000000000000000 + plain=6C77909A14006365 + encrypted=0000000000000000 + +Set 5, vector# 53: + key=000000000000040000000000000000000000000000000000 + cipher=0000000000000000 + plain=B3524D3045B44663 + encrypted=0000000000000000 + +Set 5, vector# 54: + key=000000000000020000000000000000000000000000000000 + cipher=0000000000000000 + plain=4BFE8E87CFF074F7 + encrypted=0000000000000000 + +Set 5, vector# 55: + key=000000000000010000000000000000000000000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 56: + key=000000000000008000000000000000000000000000000000 + cipher=0000000000000000 + plain=0EBFE2B0D89F9EC3 + encrypted=0000000000000000 + +Set 5, vector# 57: + key=000000000000004000000000000000000000000000000000 + cipher=0000000000000000 + plain=A34785BBA566D0D5 + encrypted=0000000000000000 + +Set 5, vector# 58: + key=000000000000002000000000000000000000000000000000 + cipher=0000000000000000 + plain=F2B12EA4CF8F6FC2 + encrypted=0000000000000000 + +Set 5, vector# 59: + key=000000000000001000000000000000000000000000000000 + cipher=0000000000000000 + plain=5D65F4BD79E2AD83 + encrypted=0000000000000000 + +Set 5, vector# 60: + key=000000000000000800000000000000000000000000000000 + cipher=0000000000000000 + plain=6D2D1CC9A52139BD + encrypted=0000000000000000 + +Set 5, vector# 61: + key=000000000000000400000000000000000000000000000000 + cipher=0000000000000000 + plain=6CB9F25ABAAA9DDD + encrypted=0000000000000000 + +Set 5, vector# 62: + key=000000000000000200000000000000000000000000000000 + cipher=0000000000000000 + plain=2F3F20C13DEF464C + encrypted=0000000000000000 + +Set 5, vector# 63: + key=000000000000000100000000000000000000000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 64: + key=000000000000000080000000000000000000000000000000 + cipher=0000000000000000 + plain=7605108FE800BFC2 + encrypted=0000000000000000 + +Set 5, vector# 65: + key=000000000000000040000000000000000000000000000000 + cipher=0000000000000000 + plain=BEF26554A87D31CA + encrypted=0000000000000000 + +Set 5, vector# 66: + key=000000000000000020000000000000000000000000000000 + cipher=0000000000000000 + plain=C8792977908537AE + encrypted=0000000000000000 + +Set 5, vector# 67: + key=000000000000000010000000000000000000000000000000 + cipher=0000000000000000 + plain=E1B4F21640B32E2B + encrypted=0000000000000000 + +Set 5, vector# 68: + key=000000000000000008000000000000000000000000000000 + cipher=0000000000000000 + plain=BECAF85030732B4E + encrypted=0000000000000000 + +Set 5, vector# 69: + key=000000000000000004000000000000000000000000000000 + cipher=0000000000000000 + plain=4751B42D141F293A + encrypted=0000000000000000 + +Set 5, vector# 70: + key=000000000000000002000000000000000000000000000000 + cipher=0000000000000000 + plain=CB1128D74ACDAB97 + encrypted=0000000000000000 + +Set 5, vector# 71: + key=000000000000000001000000000000000000000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 72: + key=000000000000000000800000000000000000000000000000 + cipher=0000000000000000 + plain=E91AE7393E513596 + encrypted=0000000000000000 + +Set 5, vector# 73: + key=000000000000000000400000000000000000000000000000 + cipher=0000000000000000 + plain=B13EE720E82DEFEB + encrypted=0000000000000000 + +Set 5, vector# 74: + key=000000000000000000200000000000000000000000000000 + cipher=0000000000000000 + plain=1611EF717656607F + encrypted=0000000000000000 + +Set 5, vector# 75: + key=000000000000000000100000000000000000000000000000 + cipher=0000000000000000 + plain=F089A10E9D373457 + encrypted=0000000000000000 + +Set 5, vector# 76: + key=000000000000000000080000000000000000000000000000 + cipher=0000000000000000 + plain=C8F04A7D88668F6E + encrypted=0000000000000000 + +Set 5, vector# 77: + key=000000000000000000040000000000000000000000000000 + cipher=0000000000000000 + plain=F13BC69B4C7559D6 + encrypted=0000000000000000 + +Set 5, vector# 78: + key=000000000000000000020000000000000000000000000000 + cipher=0000000000000000 + plain=40904F7CFEAEA62A + encrypted=0000000000000000 + +Set 5, vector# 79: + key=000000000000000000010000000000000000000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 80: + key=000000000000000000008000000000000000000000000000 + cipher=0000000000000000 + plain=7FA2CF7AD245761C + encrypted=0000000000000000 + +Set 5, vector# 81: + key=000000000000000000004000000000000000000000000000 + cipher=0000000000000000 + plain=6BB22B78C880B54A + encrypted=0000000000000000 + +Set 5, vector# 82: + key=000000000000000000002000000000000000000000000000 + cipher=0000000000000000 + plain=E06DAF6A4D6EF17C + encrypted=0000000000000000 + +Set 5, vector# 83: + key=000000000000000000001000000000000000000000000000 + cipher=0000000000000000 + plain=48CCB9AD15162786 + encrypted=0000000000000000 + +Set 5, vector# 84: + key=000000000000000000000800000000000000000000000000 + cipher=0000000000000000 + plain=CD09EC71D4C1C022 + encrypted=0000000000000000 + +Set 5, vector# 85: + key=000000000000000000000400000000000000000000000000 + cipher=0000000000000000 + plain=BBAB47104D24C033 + encrypted=0000000000000000 + +Set 5, vector# 86: + key=000000000000000000000200000000000000000000000000 + cipher=0000000000000000 + plain=ED32808EAD1A266E + encrypted=0000000000000000 + +Set 5, vector# 87: + key=000000000000000000000100000000000000000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 88: + key=000000000000000000000080000000000000000000000000 + cipher=0000000000000000 + plain=0CCC05B14F27F987 + encrypted=0000000000000000 + +Set 5, vector# 89: + key=000000000000000000000040000000000000000000000000 + cipher=0000000000000000 + plain=FE6BEBEF858AF1A1 + encrypted=0000000000000000 + +Set 5, vector# 90: + key=000000000000000000000020000000000000000000000000 + cipher=0000000000000000 + plain=FD1F5F8EA5A190BA + encrypted=0000000000000000 + +Set 5, vector# 91: + key=000000000000000000000010000000000000000000000000 + cipher=0000000000000000 + plain=4637FC1BC98F25F0 + encrypted=0000000000000000 + +Set 5, vector# 92: + key=000000000000000000000008000000000000000000000000 + cipher=0000000000000000 + plain=3FE6F6AD18ACF6E7 + encrypted=0000000000000000 + +Set 5, vector# 93: + key=000000000000000000000004000000000000000000000000 + cipher=0000000000000000 + plain=889D25FF79A0D480 + encrypted=0000000000000000 + +Set 5, vector# 94: + key=000000000000000000000002000000000000000000000000 + cipher=0000000000000000 + plain=8111AA14058A7B4F + encrypted=0000000000000000 + +Set 5, vector# 95: + key=000000000000000000000001000000000000000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector# 96: + key=000000000000000000000000800000000000000000000000 + cipher=0000000000000000 + plain=FB9EA4EFC5CBAB46 + encrypted=0000000000000000 + +Set 5, vector# 97: + key=000000000000000000000000400000000000000000000000 + cipher=0000000000000000 + plain=1A3EB35BB8BD9A96 + encrypted=0000000000000000 + +Set 5, vector# 98: + key=000000000000000000000000200000000000000000000000 + cipher=0000000000000000 + plain=04C23519844CE732 + encrypted=0000000000000000 + +Set 5, vector# 99: + key=000000000000000000000000100000000000000000000000 + cipher=0000000000000000 + plain=514C0AF6D4C4A583 + encrypted=0000000000000000 + +Set 5, vector#100: + key=000000000000000000000000080000000000000000000000 + cipher=0000000000000000 + plain=E5A9E38003A5A0FD + encrypted=0000000000000000 + +Set 5, vector#101: + key=000000000000000000000000040000000000000000000000 + cipher=0000000000000000 + plain=51761B01FECA876D + encrypted=0000000000000000 + +Set 5, vector#102: + key=000000000000000000000000020000000000000000000000 + cipher=0000000000000000 + plain=F722F923F9F6C622 + encrypted=0000000000000000 + +Set 5, vector#103: + key=000000000000000000000000010000000000000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector#104: + key=000000000000000000000000008000000000000000000000 + cipher=0000000000000000 + plain=A12BED08CE68B298 + encrypted=0000000000000000 + +Set 5, vector#105: + key=000000000000000000000000004000000000000000000000 + cipher=0000000000000000 + plain=A2BA3FA2C1EFEAB4 + encrypted=0000000000000000 + +Set 5, vector#106: + key=000000000000000000000000002000000000000000000000 + cipher=0000000000000000 + plain=286759B4F8ED50F6 + encrypted=0000000000000000 + +Set 5, vector#107: + key=000000000000000000000000001000000000000000000000 + cipher=0000000000000000 + plain=2FDE94B161738560 + encrypted=0000000000000000 + +Set 5, vector#108: + key=000000000000000000000000000800000000000000000000 + cipher=0000000000000000 + plain=50B43ACBA1FD9286 + encrypted=0000000000000000 + +Set 5, vector#109: + key=000000000000000000000000000400000000000000000000 + cipher=0000000000000000 + plain=EC731D4BC5AB33B1 + encrypted=0000000000000000 + +Set 5, vector#110: + key=000000000000000000000000000200000000000000000000 + cipher=0000000000000000 + plain=F44F61B48A20F1C2 + encrypted=0000000000000000 + +Set 5, vector#111: + key=000000000000000000000000000100000000000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector#112: + key=000000000000000000000000000080000000000000000000 + cipher=0000000000000000 + plain=29DF89DF50CDFB80 + encrypted=0000000000000000 + +Set 5, vector#113: + key=000000000000000000000000000040000000000000000000 + cipher=0000000000000000 + plain=D6727FB1F7C408AE + encrypted=0000000000000000 + +Set 5, vector#114: + key=000000000000000000000000000020000000000000000000 + cipher=0000000000000000 + plain=690BBFF89A03A095 + encrypted=0000000000000000 + +Set 5, vector#115: + key=000000000000000000000000000010000000000000000000 + cipher=0000000000000000 + plain=5B6396188ED174B2 + encrypted=0000000000000000 + +Set 5, vector#116: + key=000000000000000000000000000008000000000000000000 + cipher=0000000000000000 + plain=6EA871DAF2FDC6C1 + encrypted=0000000000000000 + +Set 5, vector#117: + key=000000000000000000000000000004000000000000000000 + cipher=0000000000000000 + plain=3090CC5A5C023A02 + encrypted=0000000000000000 + +Set 5, vector#118: + key=000000000000000000000000000002000000000000000000 + cipher=0000000000000000 + plain=8325ABACB401D8EF + encrypted=0000000000000000 + +Set 5, vector#119: + key=000000000000000000000000000001000000000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector#120: + key=000000000000000000000000000000800000000000000000 + cipher=0000000000000000 + plain=D456C7E236A5207D + encrypted=0000000000000000 + +Set 5, vector#121: + key=000000000000000000000000000000400000000000000000 + cipher=0000000000000000 + plain=6094342BC1112F3F + encrypted=0000000000000000 + +Set 5, vector#122: + key=000000000000000000000000000000200000000000000000 + cipher=0000000000000000 + plain=718003D196BA774F + encrypted=0000000000000000 + +Set 5, vector#123: + key=000000000000000000000000000000100000000000000000 + cipher=0000000000000000 + plain=62F73BD59C8EC040 + encrypted=0000000000000000 + +Set 5, vector#124: + key=000000000000000000000000000000080000000000000000 + cipher=0000000000000000 + plain=823D33ED9FACA0F8 + encrypted=0000000000000000 + +Set 5, vector#125: + key=000000000000000000000000000000040000000000000000 + cipher=0000000000000000 + plain=C995FB36D9080235 + encrypted=0000000000000000 + +Set 5, vector#126: + key=000000000000000000000000000000020000000000000000 + cipher=0000000000000000 + plain=45E6CDE8BDF9980E + encrypted=0000000000000000 + +Set 5, vector#127: + key=000000000000000000000000000000010000000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector#128: + key=000000000000000000000000000000008000000000000000 + cipher=0000000000000000 + plain=1C29EEE68829F666 + encrypted=0000000000000000 + +Set 5, vector#129: + key=000000000000000000000000000000004000000000000000 + cipher=0000000000000000 + plain=1EBAA7E2844108D1 + encrypted=0000000000000000 + +Set 5, vector#130: + key=000000000000000000000000000000002000000000000000 + cipher=0000000000000000 + plain=DD75FF6DD1D07407 + encrypted=0000000000000000 + +Set 5, vector#131: + key=000000000000000000000000000000001000000000000000 + cipher=0000000000000000 + plain=6C0D0366D7FC1E93 + encrypted=0000000000000000 + +Set 5, vector#132: + key=000000000000000000000000000000000800000000000000 + cipher=0000000000000000 + plain=65FB4EDB3731E927 + encrypted=0000000000000000 + +Set 5, vector#133: + key=000000000000000000000000000000000400000000000000 + cipher=0000000000000000 + plain=1A4795892BD82629 + encrypted=0000000000000000 + +Set 5, vector#134: + key=000000000000000000000000000000000200000000000000 + cipher=0000000000000000 + plain=6E228A9F47A31527 + encrypted=0000000000000000 + +Set 5, vector#135: + key=000000000000000000000000000000000100000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector#136: + key=000000000000000000000000000000000080000000000000 + cipher=0000000000000000 + plain=5A01EA0528FE4DBC + encrypted=0000000000000000 + +Set 5, vector#137: + key=000000000000000000000000000000000040000000000000 + cipher=0000000000000000 + plain=2AA7048B7F843ACC + encrypted=0000000000000000 + +Set 5, vector#138: + key=000000000000000000000000000000000020000000000000 + cipher=0000000000000000 + plain=FB1426125A5AE00F + encrypted=0000000000000000 + +Set 5, vector#139: + key=000000000000000000000000000000000010000000000000 + cipher=0000000000000000 + plain=3ACC2A83D9FE0CF8 + encrypted=0000000000000000 + +Set 5, vector#140: + key=000000000000000000000000000000000008000000000000 + cipher=0000000000000000 + plain=2616451A5426B97D + encrypted=0000000000000000 + +Set 5, vector#141: + key=000000000000000000000000000000000004000000000000 + cipher=0000000000000000 + plain=B85395BAA402FFB9 + encrypted=0000000000000000 + +Set 5, vector#142: + key=000000000000000000000000000000000002000000000000 + cipher=0000000000000000 + plain=D02182A2E8E573A1 + encrypted=0000000000000000 + +Set 5, vector#143: + key=000000000000000000000000000000000001000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector#144: + key=000000000000000000000000000000000000800000000000 + cipher=0000000000000000 + plain=C6ED12A06A4CC156 + encrypted=0000000000000000 + +Set 5, vector#145: + key=000000000000000000000000000000000000400000000000 + cipher=0000000000000000 + plain=64EEA4A26D381E26 + encrypted=0000000000000000 + +Set 5, vector#146: + key=000000000000000000000000000000000000200000000000 + cipher=0000000000000000 + plain=4EA9D5AA0C2C3C4E + encrypted=0000000000000000 + +Set 5, vector#147: + key=000000000000000000000000000000000000100000000000 + cipher=0000000000000000 + plain=8D8661C34C6F4D21 + encrypted=0000000000000000 + +Set 5, vector#148: + key=000000000000000000000000000000000000080000000000 + cipher=0000000000000000 + plain=E3FF48ACC26B8A33 + encrypted=0000000000000000 + +Set 5, vector#149: + key=000000000000000000000000000000000000040000000000 + cipher=0000000000000000 + plain=C57374F43AF34F17 + encrypted=0000000000000000 + +Set 5, vector#150: + key=000000000000000000000000000000000000020000000000 + cipher=0000000000000000 + plain=857FB4722F85F57F + encrypted=0000000000000000 + +Set 5, vector#151: + key=000000000000000000000000000000000000010000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector#152: + key=000000000000000000000000000000000000008000000000 + cipher=0000000000000000 + plain=D86AFF1EE01AAA00 + encrypted=0000000000000000 + +Set 5, vector#153: + key=000000000000000000000000000000000000004000000000 + cipher=0000000000000000 + plain=7B4937859794FC5E + encrypted=0000000000000000 + +Set 5, vector#154: + key=000000000000000000000000000000000000002000000000 + cipher=0000000000000000 + plain=05EF338303C238D9 + encrypted=0000000000000000 + +Set 5, vector#155: + key=000000000000000000000000000000000000001000000000 + cipher=0000000000000000 + plain=0E2F05283A7DD2B2 + encrypted=0000000000000000 + +Set 5, vector#156: + key=000000000000000000000000000000000000000800000000 + cipher=0000000000000000 + plain=661502A71B53EAD4 + encrypted=0000000000000000 + +Set 5, vector#157: + key=000000000000000000000000000000000000000400000000 + cipher=0000000000000000 + plain=1EBBFCECD36FA671 + encrypted=0000000000000000 + +Set 5, vector#158: + key=000000000000000000000000000000000000000200000000 + cipher=0000000000000000 + plain=6800E59AF69486CD + encrypted=0000000000000000 + +Set 5, vector#159: + key=000000000000000000000000000000000000000100000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector#160: + key=000000000000000000000000000000000000000080000000 + cipher=0000000000000000 + plain=82453A94E658B38D + encrypted=0000000000000000 + +Set 5, vector#161: + key=000000000000000000000000000000000000000040000000 + cipher=0000000000000000 + plain=BD0622EBC5E34C41 + encrypted=0000000000000000 + +Set 5, vector#162: + key=000000000000000000000000000000000000000020000000 + cipher=0000000000000000 + plain=4C3E34B8BE70C9F2 + encrypted=0000000000000000 + +Set 5, vector#163: + key=000000000000000000000000000000000000000010000000 + cipher=0000000000000000 + plain=1027E471BF185728 + encrypted=0000000000000000 + +Set 5, vector#164: + key=000000000000000000000000000000000000000008000000 + cipher=0000000000000000 + plain=39DE1CB6FE1959A4 + encrypted=0000000000000000 + +Set 5, vector#165: + key=000000000000000000000000000000000000000004000000 + cipher=0000000000000000 + plain=E3C3CC1A68B58E5D + encrypted=0000000000000000 + +Set 5, vector#166: + key=000000000000000000000000000000000000000002000000 + cipher=0000000000000000 + plain=B60F05703D5012FA + encrypted=0000000000000000 + +Set 5, vector#167: + key=000000000000000000000000000000000000000001000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector#168: + key=000000000000000000000000000000000000000000800000 + cipher=0000000000000000 + plain=D19667C59D94D4F7 + encrypted=0000000000000000 + +Set 5, vector#169: + key=000000000000000000000000000000000000000000400000 + cipher=0000000000000000 + plain=3CA5963292ED8725 + encrypted=0000000000000000 + +Set 5, vector#170: + key=000000000000000000000000000000000000000000200000 + cipher=0000000000000000 + plain=1F2B2104BF62E510 + encrypted=0000000000000000 + +Set 5, vector#171: + key=000000000000000000000000000000000000000000100000 + cipher=0000000000000000 + plain=322D5F2AD1F6C3F8 + encrypted=0000000000000000 + +Set 5, vector#172: + key=000000000000000000000000000000000000000000080000 + cipher=0000000000000000 + plain=202D8D2E16C3DE65 + encrypted=0000000000000000 + +Set 5, vector#173: + key=000000000000000000000000000000000000000000040000 + cipher=0000000000000000 + plain=10B71036AF979F7A + encrypted=0000000000000000 + +Set 5, vector#174: + key=000000000000000000000000000000000000000000020000 + cipher=0000000000000000 + plain=980048358ADB5189 + encrypted=0000000000000000 + +Set 5, vector#175: + key=000000000000000000000000000000000000000000010000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector#176: + key=000000000000000000000000000000000000000000008000 + cipher=0000000000000000 + plain=737589DC3ADDB4D5 + encrypted=0000000000000000 + +Set 5, vector#177: + key=000000000000000000000000000000000000000000004000 + cipher=0000000000000000 + plain=F7900FD046800D04 + encrypted=0000000000000000 + +Set 5, vector#178: + key=000000000000000000000000000000000000000000002000 + cipher=0000000000000000 + plain=95BE3F4238740526 + encrypted=0000000000000000 + +Set 5, vector#179: + key=000000000000000000000000000000000000000000001000 + cipher=0000000000000000 + plain=656F2445A164F9E1 + encrypted=0000000000000000 + +Set 5, vector#180: + key=000000000000000000000000000000000000000000000800 + cipher=0000000000000000 + plain=6C77909A14006365 + encrypted=0000000000000000 + +Set 5, vector#181: + key=000000000000000000000000000000000000000000000400 + cipher=0000000000000000 + plain=B3524D3045B44663 + encrypted=0000000000000000 + +Set 5, vector#182: + key=000000000000000000000000000000000000000000000200 + cipher=0000000000000000 + plain=4BFE8E87CFF074F7 + encrypted=0000000000000000 + +Set 5, vector#183: + key=000000000000000000000000000000000000000000000100 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 5, vector#184: + key=000000000000000000000000000000000000000000000080 + cipher=0000000000000000 + plain=0EBFE2B0D89F9EC3 + encrypted=0000000000000000 + +Set 5, vector#185: + key=000000000000000000000000000000000000000000000040 + cipher=0000000000000000 + plain=A34785BBA566D0D5 + encrypted=0000000000000000 + +Set 5, vector#186: + key=000000000000000000000000000000000000000000000020 + cipher=0000000000000000 + plain=F2B12EA4CF8F6FC2 + encrypted=0000000000000000 + +Set 5, vector#187: + key=000000000000000000000000000000000000000000000010 + cipher=0000000000000000 + plain=5D65F4BD79E2AD83 + encrypted=0000000000000000 + +Set 5, vector#188: + key=000000000000000000000000000000000000000000000008 + cipher=0000000000000000 + plain=6D2D1CC9A52139BD + encrypted=0000000000000000 + +Set 5, vector#189: + key=000000000000000000000000000000000000000000000004 + cipher=0000000000000000 + plain=6CB9F25ABAAA9DDD + encrypted=0000000000000000 + +Set 5, vector#190: + key=000000000000000000000000000000000000000000000002 + cipher=0000000000000000 + plain=2F3F20C13DEF464C + encrypted=0000000000000000 + +Set 5, vector#191: + key=000000000000000000000000000000000000000000000001 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Test vectors -- set 6 +===================== + +Set 6, vector# 0: + key=000000000000000000000000000000000000000000000000 + cipher=8000000000000000 + plain=95F8A5E5DD31D900 + encrypted=8000000000000000 + +Set 6, vector# 1: + key=000000000000000000000000000000000000000000000000 + cipher=4000000000000000 + plain=DD7F121CA5015619 + encrypted=4000000000000000 + +Set 6, vector# 2: + key=000000000000000000000000000000000000000000000000 + cipher=2000000000000000 + plain=2E8653104F3834EA + encrypted=2000000000000000 + +Set 6, vector# 3: + key=000000000000000000000000000000000000000000000000 + cipher=1000000000000000 + plain=4BD388FF6CD81D4F + encrypted=1000000000000000 + +Set 6, vector# 4: + key=000000000000000000000000000000000000000000000000 + cipher=0800000000000000 + plain=20B9E767B2FB1456 + encrypted=0800000000000000 + +Set 6, vector# 5: + key=000000000000000000000000000000000000000000000000 + cipher=0400000000000000 + plain=55579380D77138EF + encrypted=0400000000000000 + +Set 6, vector# 6: + key=000000000000000000000000000000000000000000000000 + cipher=0200000000000000 + plain=6CC5DEFAAF04512F + encrypted=0200000000000000 + +Set 6, vector# 7: + key=000000000000000000000000000000000000000000000000 + cipher=0100000000000000 + plain=0D9F279BA5D87260 + encrypted=0100000000000000 + +Set 6, vector# 8: + key=000000000000000000000000000000000000000000000000 + cipher=0080000000000000 + plain=D9031B0271BD5A0A + encrypted=0080000000000000 + +Set 6, vector# 9: + key=000000000000000000000000000000000000000000000000 + cipher=0040000000000000 + plain=424250B37C3DD951 + encrypted=0040000000000000 + +Set 6, vector# 10: + key=000000000000000000000000000000000000000000000000 + cipher=0020000000000000 + plain=B8061B7ECD9A21E5 + encrypted=0020000000000000 + +Set 6, vector# 11: + key=000000000000000000000000000000000000000000000000 + cipher=0010000000000000 + plain=F15D0F286B65BD28 + encrypted=0010000000000000 + +Set 6, vector# 12: + key=000000000000000000000000000000000000000000000000 + cipher=0008000000000000 + plain=ADD0CC8D6E5DEBA1 + encrypted=0008000000000000 + +Set 6, vector# 13: + key=000000000000000000000000000000000000000000000000 + cipher=0004000000000000 + plain=E6D5F82752AD63D1 + encrypted=0004000000000000 + +Set 6, vector# 14: + key=000000000000000000000000000000000000000000000000 + cipher=0002000000000000 + plain=ECBFE3BD3F591A5E + encrypted=0002000000000000 + +Set 6, vector# 15: + key=000000000000000000000000000000000000000000000000 + cipher=0001000000000000 + plain=F356834379D165CD + encrypted=0001000000000000 + +Set 6, vector# 16: + key=000000000000000000000000000000000000000000000000 + cipher=0000800000000000 + plain=2B9F982F20037FA9 + encrypted=0000800000000000 + +Set 6, vector# 17: + key=000000000000000000000000000000000000000000000000 + cipher=0000400000000000 + plain=889DE068A16F0BE6 + encrypted=0000400000000000 + +Set 6, vector# 18: + key=000000000000000000000000000000000000000000000000 + cipher=0000200000000000 + plain=E19E275D846A1298 + encrypted=0000200000000000 + +Set 6, vector# 19: + key=000000000000000000000000000000000000000000000000 + cipher=0000100000000000 + plain=329A8ED523D71AEC + encrypted=0000100000000000 + +Set 6, vector# 20: + key=000000000000000000000000000000000000000000000000 + cipher=0000080000000000 + plain=E7FCE22557D23C97 + encrypted=0000080000000000 + +Set 6, vector# 21: + key=000000000000000000000000000000000000000000000000 + cipher=0000040000000000 + plain=12A9F5817FF2D65D + encrypted=0000040000000000 + +Set 6, vector# 22: + key=000000000000000000000000000000000000000000000000 + cipher=0000020000000000 + plain=A484C3AD38DC9C19 + encrypted=0000020000000000 + +Set 6, vector# 23: + key=000000000000000000000000000000000000000000000000 + cipher=0000010000000000 + plain=FBE00A8A1EF8AD72 + encrypted=0000010000000000 + +Set 6, vector# 24: + key=000000000000000000000000000000000000000000000000 + cipher=0000008000000000 + plain=750D079407521363 + encrypted=0000008000000000 + +Set 6, vector# 25: + key=000000000000000000000000000000000000000000000000 + cipher=0000004000000000 + plain=64FEED9C724C2FAF + encrypted=0000004000000000 + +Set 6, vector# 26: + key=000000000000000000000000000000000000000000000000 + cipher=0000002000000000 + plain=F02B263B328E2B60 + encrypted=0000002000000000 + +Set 6, vector# 27: + key=000000000000000000000000000000000000000000000000 + cipher=0000001000000000 + plain=9D64555A9A10B852 + encrypted=0000001000000000 + +Set 6, vector# 28: + key=000000000000000000000000000000000000000000000000 + cipher=0000000800000000 + plain=D106FF0BED5255D7 + encrypted=0000000800000000 + +Set 6, vector# 29: + key=000000000000000000000000000000000000000000000000 + cipher=0000000400000000 + plain=E1652C6B138C64A5 + encrypted=0000000400000000 + +Set 6, vector# 30: + key=000000000000000000000000000000000000000000000000 + cipher=0000000200000000 + plain=E428581186EC8F46 + encrypted=0000000200000000 + +Set 6, vector# 31: + key=000000000000000000000000000000000000000000000000 + cipher=0000000100000000 + plain=AEB5F5EDE22D1A36 + encrypted=0000000100000000 + +Set 6, vector# 32: + key=000000000000000000000000000000000000000000000000 + cipher=0000000080000000 + plain=E943D7568AEC0C5C + encrypted=0000000080000000 + +Set 6, vector# 33: + key=000000000000000000000000000000000000000000000000 + cipher=0000000040000000 + plain=DF98C8276F54B04B + encrypted=0000000040000000 + +Set 6, vector# 34: + key=000000000000000000000000000000000000000000000000 + cipher=0000000020000000 + plain=B160E4680F6C696F + encrypted=0000000020000000 + +Set 6, vector# 35: + key=000000000000000000000000000000000000000000000000 + cipher=0000000010000000 + plain=FA0752B07D9C4AB8 + encrypted=0000000010000000 + +Set 6, vector# 36: + key=000000000000000000000000000000000000000000000000 + cipher=0000000008000000 + plain=CA3A2B036DBC8502 + encrypted=0000000008000000 + +Set 6, vector# 37: + key=000000000000000000000000000000000000000000000000 + cipher=0000000004000000 + plain=5E0905517BB59BCF + encrypted=0000000004000000 + +Set 6, vector# 38: + key=000000000000000000000000000000000000000000000000 + cipher=0000000002000000 + plain=814EEB3B91D90726 + encrypted=0000000002000000 + +Set 6, vector# 39: + key=000000000000000000000000000000000000000000000000 + cipher=0000000001000000 + plain=4D49DB1532919C9F + encrypted=0000000001000000 + +Set 6, vector# 40: + key=000000000000000000000000000000000000000000000000 + cipher=0000000000800000 + plain=25EB5FC3F8CF0621 + encrypted=0000000000800000 + +Set 6, vector# 41: + key=000000000000000000000000000000000000000000000000 + cipher=0000000000400000 + plain=AB6A20C0620D1C6F + encrypted=0000000000400000 + +Set 6, vector# 42: + key=000000000000000000000000000000000000000000000000 + cipher=0000000000200000 + plain=79E90DBC98F92CCA + encrypted=0000000000200000 + +Set 6, vector# 43: + key=000000000000000000000000000000000000000000000000 + cipher=0000000000100000 + plain=866ECEDD8072BB0E + encrypted=0000000000100000 + +Set 6, vector# 44: + key=000000000000000000000000000000000000000000000000 + cipher=0000000000080000 + plain=8B54536F2F3E64A8 + encrypted=0000000000080000 + +Set 6, vector# 45: + key=000000000000000000000000000000000000000000000000 + cipher=0000000000040000 + plain=EA51D3975595B86B + encrypted=0000000000040000 + +Set 6, vector# 46: + key=000000000000000000000000000000000000000000000000 + cipher=0000000000020000 + plain=CAFFC6AC4542DE31 + encrypted=0000000000020000 + +Set 6, vector# 47: + key=000000000000000000000000000000000000000000000000 + cipher=0000000000010000 + plain=8DD45A2DDF90796C + encrypted=0000000000010000 + +Set 6, vector# 48: + key=000000000000000000000000000000000000000000000000 + cipher=0000000000008000 + plain=1029D55E880EC2D0 + encrypted=0000000000008000 + +Set 6, vector# 49: + key=000000000000000000000000000000000000000000000000 + cipher=0000000000004000 + plain=5D86CB23639DBEA9 + encrypted=0000000000004000 + +Set 6, vector# 50: + key=000000000000000000000000000000000000000000000000 + cipher=0000000000002000 + plain=1D1CA853AE7C0C5F + encrypted=0000000000002000 + +Set 6, vector# 51: + key=000000000000000000000000000000000000000000000000 + cipher=0000000000001000 + plain=CE332329248F3228 + encrypted=0000000000001000 + +Set 6, vector# 52: + key=000000000000000000000000000000000000000000000000 + cipher=0000000000000800 + plain=8405D1ABE24FB942 + encrypted=0000000000000800 + +Set 6, vector# 53: + key=000000000000000000000000000000000000000000000000 + cipher=0000000000000400 + plain=E643D78090CA4207 + encrypted=0000000000000400 + +Set 6, vector# 54: + key=000000000000000000000000000000000000000000000000 + cipher=0000000000000200 + plain=48221B9937748A23 + encrypted=0000000000000200 + +Set 6, vector# 55: + key=000000000000000000000000000000000000000000000000 + cipher=0000000000000100 + plain=DD7C0BBD61FAFD54 + encrypted=0000000000000100 + +Set 6, vector# 56: + key=000000000000000000000000000000000000000000000000 + cipher=0000000000000080 + plain=2FBC291A570DB5C4 + encrypted=0000000000000080 + +Set 6, vector# 57: + key=000000000000000000000000000000000000000000000000 + cipher=0000000000000040 + plain=E07C30D7E4E26E12 + encrypted=0000000000000040 + +Set 6, vector# 58: + key=000000000000000000000000000000000000000000000000 + cipher=0000000000000020 + plain=0953E2258E8E90A1 + encrypted=0000000000000020 + +Set 6, vector# 59: + key=000000000000000000000000000000000000000000000000 + cipher=0000000000000010 + plain=5B711BC4CEEBF2EE + encrypted=0000000000000010 + +Set 6, vector# 60: + key=000000000000000000000000000000000000000000000000 + cipher=0000000000000008 + plain=CC083F1E6D9E85F6 + encrypted=0000000000000008 + +Set 6, vector# 61: + key=000000000000000000000000000000000000000000000000 + cipher=0000000000000004 + plain=D2FD8867D50D2DFE + encrypted=0000000000000004 + +Set 6, vector# 62: + key=000000000000000000000000000000000000000000000000 + cipher=0000000000000002 + plain=06E7EA22CE92708F + encrypted=0000000000000002 + +Set 6, vector# 63: + key=000000000000000000000000000000000000000000000000 + cipher=0000000000000001 + plain=166B40B44ABA4BD6 + encrypted=0000000000000001 + +Test vectors -- set 7 +===================== + +Set 7, vector# 0: + key=000000000000000000000000000000000000000000000000 + cipher=0000000000000000 + plain=8CA64DE9C1B123A7 + encrypted=0000000000000000 + +Set 7, vector# 1: + key=010101010101010101010101010101010101010101010101 + cipher=0101010101010101 + plain=994D4DC157B96C52 + encrypted=0101010101010101 + +Set 7, vector# 2: + key=020202020202020202020202020202020202020202020202 + cipher=0202020202020202 + plain=F09FA63CCDFA2BAD + encrypted=0202020202020202 + +Set 7, vector# 3: + key=030303030303030303030303030303030303030303030303 + cipher=0303030303030303 + plain=918C7AEFF893AD51 + encrypted=0303030303030303 + +Set 7, vector# 4: + key=040404040404040404040404040404040404040404040404 + cipher=0404040404040404 + plain=8991C0C48CF0AF81 + encrypted=0404040404040404 + +Set 7, vector# 5: + key=050505050505050505050505050505050505050505050505 + cipher=0505050505050505 + plain=25676954529031CB + encrypted=0505050505050505 + +Set 7, vector# 6: + key=060606060606060606060606060606060606060606060606 + cipher=0606060606060606 + plain=AAEF9DD11DE74546 + encrypted=0606060606060606 + +Set 7, vector# 7: + key=070707070707070707070707070707070707070707070707 + cipher=0707070707070707 + plain=8DFFA9A0B2F2548B + encrypted=0707070707070707 + +Set 7, vector# 8: + key=080808080808080808080808080808080808080808080808 + cipher=0808080808080808 + plain=D932847445DA4FD8 + encrypted=0808080808080808 + +Set 7, vector# 9: + key=090909090909090909090909090909090909090909090909 + cipher=0909090909090909 + plain=5110E59AAEC7335B + encrypted=0909090909090909 + +Set 7, vector# 10: + key=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + cipher=0A0A0A0A0A0A0A0A + plain=CE681111BA3B7B11 + encrypted=0A0A0A0A0A0A0A0A + +Set 7, vector# 11: + key=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + cipher=0B0B0B0B0B0B0B0B + plain=B5AD1C8C49965CCA + encrypted=0B0B0B0B0B0B0B0B + +Set 7, vector# 12: + key=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + cipher=0C0C0C0C0C0C0C0C + plain=9F9958F3E2767EA7 + encrypted=0C0C0C0C0C0C0C0C + +Set 7, vector# 13: + key=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + cipher=0D0D0D0D0D0D0D0D + plain=149D6492A0D809EE + encrypted=0D0D0D0D0D0D0D0D + +Set 7, vector# 14: + key=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + cipher=0E0E0E0E0E0E0E0E + plain=F1EDC5B1F98F6313 + encrypted=0E0E0E0E0E0E0E0E + +Set 7, vector# 15: + key=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + cipher=0F0F0F0F0F0F0F0F + plain=57057A2B85367BED + encrypted=0F0F0F0F0F0F0F0F + +Set 7, vector# 16: + key=101010101010101010101010101010101010101010101010 + cipher=1010101010101010 + plain=B376C874E6F987D0 + encrypted=1010101010101010 + +Set 7, vector# 17: + key=111111111111111111111111111111111111111111111111 + cipher=1111111111111111 + plain=237B2304C393D3AC + encrypted=1111111111111111 + +Set 7, vector# 18: + key=121212121212121212121212121212121212121212121212 + cipher=1212121212121212 + plain=A2F68A96740E3F2D + encrypted=1212121212121212 + +Set 7, vector# 19: + key=131313131313131313131313131313131313131313131313 + cipher=1313131313131313 + plain=1D779D8AB79E89EF + encrypted=1313131313131313 + +Set 7, vector# 20: + key=141414141414141414141414141414141414141414141414 + cipher=1414141414141414 + plain=1E59064FFEA191EF + encrypted=1414141414141414 + +Set 7, vector# 21: + key=151515151515151515151515151515151515151515151515 + cipher=1515151515151515 + plain=53B4DAE06761FFA1 + encrypted=1515151515151515 + +Set 7, vector# 22: + key=161616161616161616161616161616161616161616161616 + cipher=1616161616161616 + plain=550FB1A5507A49ED + encrypted=1616161616161616 + +Set 7, vector# 23: + key=171717171717171717171717171717171717171717171717 + cipher=1717171717171717 + plain=64FFAFFBB608B002 + encrypted=1717171717171717 + +Set 7, vector# 24: + key=181818181818181818181818181818181818181818181818 + cipher=1818181818181818 + plain=2EF928E663986E1C + encrypted=1818181818181818 + +Set 7, vector# 25: + key=191919191919191919191919191919191919191919191919 + cipher=1919191919191919 + plain=9C7EB95CB182233E + encrypted=1919191919191919 + +Set 7, vector# 26: + key=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + cipher=1A1A1A1A1A1A1A1A + plain=B62CFEB46DD18577 + encrypted=1A1A1A1A1A1A1A1A + +Set 7, vector# 27: + key=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + cipher=1B1B1B1B1B1B1B1B + plain=8F9F498CBA6DF908 + encrypted=1B1B1B1B1B1B1B1B + +Set 7, vector# 28: + key=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + cipher=1C1C1C1C1C1C1C1C + plain=3017633FB8197C95 + encrypted=1C1C1C1C1C1C1C1C + +Set 7, vector# 29: + key=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + cipher=1D1D1D1D1D1D1D1D + plain=079FA37ED80BA064 + encrypted=1D1D1D1D1D1D1D1D + +Set 7, vector# 30: + key=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + cipher=1E1E1E1E1E1E1E1E + plain=C8040684A207D1B5 + encrypted=1E1E1E1E1E1E1E1E + +Set 7, vector# 31: + key=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + cipher=1F1F1F1F1F1F1F1F + plain=61B145D97C491523 + encrypted=1F1F1F1F1F1F1F1F + +Set 7, vector# 32: + key=202020202020202020202020202020202020202020202020 + cipher=2020202020202020 + plain=9073C79790306F7D + encrypted=2020202020202020 + +Set 7, vector# 33: + key=212121212121212121212121212121212121212121212121 + cipher=2121212121212121 + plain=A80B2BFEBE10A4DA + encrypted=2121212121212121 + +Set 7, vector# 34: + key=222222222222222222222222222222222222222222222222 + cipher=2222222222222222 + plain=D105F93010B3B6F5 + encrypted=2222222222222222 + +Set 7, vector# 35: + key=232323232323232323232323232323232323232323232323 + cipher=2323232323232323 + plain=8F521B75483A0B94 + encrypted=2323232323232323 + +Set 7, vector# 36: + key=242424242424242424242424242424242424242424242424 + cipher=2424242424242424 + plain=C8F028A3EE60B289 + encrypted=2424242424242424 + +Set 7, vector# 37: + key=252525252525252525252525252525252525252525252525 + cipher=2525252525252525 + plain=DC8D45D7517FB58C + encrypted=2525252525252525 + +Set 7, vector# 38: + key=262626262626262626262626262626262626262626262626 + cipher=2626262626262626 + plain=A827E72CD184555E + encrypted=2626262626262626 + +Set 7, vector# 39: + key=272727272727272727272727272727272727272727272727 + cipher=2727272727272727 + plain=11A586CDC15F4B62 + encrypted=2727272727272727 + +Set 7, vector# 40: + key=282828282828282828282828282828282828282828282828 + cipher=2828282828282828 + plain=6066EF85FF1F8A46 + encrypted=2828282828282828 + +Set 7, vector# 41: + key=292929292929292929292929292929292929292929292929 + cipher=2929292929292929 + plain=64F017F35A3F50D1 + encrypted=2929292929292929 + +Set 7, vector# 42: + key=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + cipher=2A2A2A2A2A2A2A2A + plain=19D9B4C305AB5AC4 + encrypted=2A2A2A2A2A2A2A2A + +Set 7, vector# 43: + key=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + cipher=2B2B2B2B2B2B2B2B + plain=D13BE446B15397C0 + encrypted=2B2B2B2B2B2B2B2B + +Set 7, vector# 44: + key=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + cipher=2C2C2C2C2C2C2C2C + plain=A1AAAC9B6D3DAB0A + encrypted=2C2C2C2C2C2C2C2C + +Set 7, vector# 45: + key=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + cipher=2D2D2D2D2D2D2D2D + plain=60EF54CED063EEAC + encrypted=2D2D2D2D2D2D2D2D + +Set 7, vector# 46: + key=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + cipher=2E2E2E2E2E2E2E2E + plain=659EF16E9EFFC16D + encrypted=2E2E2E2E2E2E2E2E + +Set 7, vector# 47: + key=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + cipher=2F2F2F2F2F2F2F2F + plain=7F991C35E71F8D95 + encrypted=2F2F2F2F2F2F2F2F + +Set 7, vector# 48: + key=303030303030303030303030303030303030303030303030 + cipher=3030303030303030 + plain=335AC5E54AA4C5FA + encrypted=3030303030303030 + +Set 7, vector# 49: + key=313131313131313131313131313131313131313131313131 + cipher=3131313131313131 + plain=6D0A7ECC98A019A6 + encrypted=3131313131313131 + +Set 7, vector# 50: + key=323232323232323232323232323232323232323232323232 + cipher=3232323232323232 + plain=DB71F2F904CE4467 + encrypted=3232323232323232 + +Set 7, vector# 51: + key=333333333333333333333333333333333333333333333333 + cipher=3333333333333333 + plain=19B6A607F49D7EBF + encrypted=3333333333333333 + +Set 7, vector# 52: + key=343434343434343434343434343434343434343434343434 + cipher=3434343434343434 + plain=086DA2A46819B2EC + encrypted=3434343434343434 + +Set 7, vector# 53: + key=353535353535353535353535353535353535353535353535 + cipher=3535353535353535 + plain=BFBEB4BB6C8BA8D3 + encrypted=3535353535353535 + +Set 7, vector# 54: + key=363636363636363636363636363636363636363636363636 + cipher=3636363636363636 + plain=C0EA975A16621073 + encrypted=3636363636363636 + +Set 7, vector# 55: + key=373737373737373737373737373737373737373737373737 + cipher=3737373737373737 + plain=B53D58A1CAD79864 + encrypted=3737373737373737 + +Set 7, vector# 56: + key=383838383838383838383838383838383838383838383838 + cipher=3838383838383838 + plain=B7F074CB09D21987 + encrypted=3838383838383838 + +Set 7, vector# 57: + key=393939393939393939393939393939393939393939393939 + cipher=3939393939393939 + plain=E6F6D6E5DCCAFBAF + encrypted=3939393939393939 + +Set 7, vector# 58: + key=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + cipher=3A3A3A3A3A3A3A3A + plain=428395367157DB18 + encrypted=3A3A3A3A3A3A3A3A + +Set 7, vector# 59: + key=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + cipher=3B3B3B3B3B3B3B3B + plain=B71F8389C32F928E + encrypted=3B3B3B3B3B3B3B3B + +Set 7, vector# 60: + key=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + cipher=3C3C3C3C3C3C3C3C + plain=290DDC00BAFBF6C0 + encrypted=3C3C3C3C3C3C3C3C + +Set 7, vector# 61: + key=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + cipher=3D3D3D3D3D3D3D3D + plain=96F8EC19C7C00F69 + encrypted=3D3D3D3D3D3D3D3D + +Set 7, vector# 62: + key=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + cipher=3E3E3E3E3E3E3E3E + plain=E1E2B92BEC7B6EDA + encrypted=3E3E3E3E3E3E3E3E + +Set 7, vector# 63: + key=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + cipher=3F3F3F3F3F3F3F3F + plain=4FCD12FF1A0F4828 + encrypted=3F3F3F3F3F3F3F3F + +Set 7, vector# 64: + key=404040404040404040404040404040404040404040404040 + cipher=4040404040404040 + plain=FDA1AEAC4103BEC7 + encrypted=4040404040404040 + +Set 7, vector# 65: + key=414141414141414141414141414141414141414141414141 + cipher=4141414141414141 + plain=C023018BB50973DF + encrypted=4141414141414141 + +Set 7, vector# 66: + key=424242424242424242424242424242424242424242424242 + cipher=4242424242424242 + plain=2F17AB3C4EF47CED + encrypted=4242424242424242 + +Set 7, vector# 67: + key=434343434343434343434343434343434343434343434343 + cipher=4343434343434343 + plain=403E4F9726A43E2B + encrypted=4343434343434343 + +Set 7, vector# 68: + key=444444444444444444444444444444444444444444444444 + cipher=4444444444444444 + plain=300FB94913B09D9F + encrypted=4444444444444444 + +Set 7, vector# 69: + key=454545454545454545454545454545454545454545454545 + cipher=4545454545454545 + plain=CC3368EE3DD10A86 + encrypted=4545454545454545 + +Set 7, vector# 70: + key=464646464646464646464646464646464646464646464646 + cipher=4646464646464646 + plain=4047149B98541E84 + encrypted=4646464646464646 + +Set 7, vector# 71: + key=474747474747474747474747474747474747474747474747 + cipher=4747474747474747 + plain=6F50E18DA9045F21 + encrypted=4747474747474747 + +Set 7, vector# 72: + key=484848484848484848484848484848484848484848484848 + cipher=4848484848484848 + plain=8714D44CAC7D0D14 + encrypted=4848484848484848 + +Set 7, vector# 73: + key=494949494949494949494949494949494949494949494949 + cipher=4949494949494949 + plain=83829CFFC32CED9B + encrypted=4949494949494949 + +Set 7, vector# 74: + key=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + cipher=4A4A4A4A4A4A4A4A + plain=16044259F6FEEF2A + encrypted=4A4A4A4A4A4A4A4A + +Set 7, vector# 75: + key=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + cipher=4B4B4B4B4B4B4B4B + plain=DAEB0CCC9F9C02A7 + encrypted=4B4B4B4B4B4B4B4B + +Set 7, vector# 76: + key=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + cipher=4C4C4C4C4C4C4C4C + plain=1F9442EA265CB749 + encrypted=4C4C4C4C4C4C4C4C + +Set 7, vector# 77: + key=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + cipher=4D4D4D4D4D4D4D4D + plain=E4911A6B657A86BE + encrypted=4D4D4D4D4D4D4D4D + +Set 7, vector# 78: + key=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + cipher=4E4E4E4E4E4E4E4E + plain=67464D8D5A2822CF + encrypted=4E4E4E4E4E4E4E4E + +Set 7, vector# 79: + key=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + cipher=4F4F4F4F4F4F4F4F + plain=C1419997381C7DA3 + encrypted=4F4F4F4F4F4F4F4F + +Set 7, vector# 80: + key=505050505050505050505050505050505050505050505050 + cipher=5050505050505050 + plain=599A5CD62A06D027 + encrypted=5050505050505050 + +Set 7, vector# 81: + key=515151515151515151515151515151515151515151515151 + cipher=5151515151515151 + plain=88FD236C41B3BB51 + encrypted=5151515151515151 + +Set 7, vector# 82: + key=525252525252525252525252525252525252525252525252 + cipher=5252525252525252 + plain=41CC247560605B0B + encrypted=5252525252525252 + +Set 7, vector# 83: + key=535353535353535353535353535353535353535353535353 + cipher=5353535353535353 + plain=0F91178929EF4AA1 + encrypted=5353535353535353 + +Set 7, vector# 84: + key=545454545454545454545454545454545454545454545454 + cipher=5454545454545454 + plain=DC644E7A6FAA6446 + encrypted=5454545454545454 + +Set 7, vector# 85: + key=555555555555555555555555555555555555555555555555 + cipher=5555555555555555 + plain=27BDEAC7848061C2 + encrypted=5555555555555555 + +Set 7, vector# 86: + key=565656565656565656565656565656565656565656565656 + cipher=5656565656565656 + plain=51115EC4EBDDE14E + encrypted=5656565656565656 + +Set 7, vector# 87: + key=575757575757575757575757575757575757575757575757 + cipher=5757575757575757 + plain=A1731C55A4FB1B12 + encrypted=5757575757575757 + +Set 7, vector# 88: + key=585858585858585858585858585858585858585858585858 + cipher=5858585858585858 + plain=883D1CB568FA4AF6 + encrypted=5858585858585858 + +Set 7, vector# 89: + key=595959595959595959595959595959595959595959595959 + cipher=5959595959595959 + plain=EE21D431F34E89A5 + encrypted=5959595959595959 + +Set 7, vector# 90: + key=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + cipher=5A5A5A5A5A5A5A5A + plain=8ED4FA5DF0B7BAA9 + encrypted=5A5A5A5A5A5A5A5A + +Set 7, vector# 91: + key=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + cipher=5B5B5B5B5B5B5B5B + plain=8AA3372D4A4CF54D + encrypted=5B5B5B5B5B5B5B5B + +Set 7, vector# 92: + key=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + cipher=5C5C5C5C5C5C5C5C + plain=6E9D4FF9DE08AAD1 + encrypted=5C5C5C5C5C5C5C5C + +Set 7, vector# 93: + key=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + cipher=5D5D5D5D5D5D5D5D + plain=302DE41DFAE50C3E + encrypted=5D5D5D5D5D5D5D5D + +Set 7, vector# 94: + key=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + cipher=5E5E5E5E5E5E5E5E + plain=15238624D6D73121 + encrypted=5E5E5E5E5E5E5E5E + +Set 7, vector# 95: + key=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + cipher=5F5F5F5F5F5F5F5F + plain=960ADA6F022E3019 + encrypted=5F5F5F5F5F5F5F5F + +Set 7, vector# 96: + key=606060606060606060606060606060606060606060606060 + cipher=6060606060606060 + plain=CAF3211A707960D6 + encrypted=6060606060606060 + +Set 7, vector# 97: + key=616161616161616161616161616161616161616161616161 + cipher=6161616161616161 + plain=F7E458FA7081BE7D + encrypted=6161616161616161 + +Set 7, vector# 98: + key=626262626262626262626262626262626262626262626262 + cipher=6262626262626262 + plain=5FAB0E843C6E5BA9 + encrypted=6262626262626262 + +Set 7, vector# 99: + key=636363636363636363636363636363636363636363636363 + cipher=6363636363636363 + plain=7CF40025EB32B66F + encrypted=6363636363636363 + +Set 7, vector#100: + key=646464646464646464646464646464646464646464646464 + cipher=6464646464646464 + plain=1D3FF19CA208D2B2 + encrypted=6464646464646464 + +Set 7, vector#101: + key=656565656565656565656565656565656565656565656565 + cipher=6565656565656565 + plain=BDFBCA399EB932A0 + encrypted=6565656565656565 + +Set 7, vector#102: + key=666666666666666666666666666666666666666666666666 + cipher=6666666666666666 + plain=29CE12AFEA960B70 + encrypted=6666666666666666 + +Set 7, vector#103: + key=676767676767676767676767676767676767676767676767 + cipher=6767676767676767 + plain=82F8FB5140014B85 + encrypted=6767676767676767 + +Set 7, vector#104: + key=686868686868686868686868686868686868686868686868 + cipher=6868686868686868 + plain=7B3C0F4E34F9D1E9 + encrypted=6868686868686868 + +Set 7, vector#105: + key=696969696969696969696969696969696969696969696969 + cipher=6969696969696969 + plain=8F7B0EAD94E39A13 + encrypted=6969696969696969 + +Set 7, vector#106: + key=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + cipher=6A6A6A6A6A6A6A6A + plain=6D3F31C7778EAD8A + encrypted=6A6A6A6A6A6A6A6A + +Set 7, vector#107: + key=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + cipher=6B6B6B6B6B6B6B6B + plain=37B18B3906BAB3A8 + encrypted=6B6B6B6B6B6B6B6B + +Set 7, vector#108: + key=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + cipher=6C6C6C6C6C6C6C6C + plain=12B4CB7A4CBE767B + encrypted=6C6C6C6C6C6C6C6C + +Set 7, vector#109: + key=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + cipher=6D6D6D6D6D6D6D6D + plain=2420B66A1055C0E9 + encrypted=6D6D6D6D6D6D6D6D + +Set 7, vector#110: + key=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + cipher=6E6E6E6E6E6E6E6E + plain=7E8E816788C6D588 + encrypted=6E6E6E6E6E6E6E6E + +Set 7, vector#111: + key=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + cipher=6F6F6F6F6F6F6F6F + plain=C24105E33E184FF6 + encrypted=6F6F6F6F6F6F6F6F + +Set 7, vector#112: + key=707070707070707070707070707070707070707070707070 + cipher=7070707070707070 + plain=E4A18C1C24EBFBB9 + encrypted=7070707070707070 + +Set 7, vector#113: + key=717171717171717171717171717171717171717171717171 + cipher=7171717171717171 + plain=89BDBD3DE031EED6 + encrypted=7171717171717171 + +Set 7, vector#114: + key=727272727272727272727272727272727272727272727272 + cipher=7272727272727272 + plain=DBB840AF153D42DC + encrypted=7272727272727272 + +Set 7, vector#115: + key=737373737373737373737373737373737373737373737373 + cipher=7373737373737373 + plain=5198BB48B85D9073 + encrypted=7373737373737373 + +Set 7, vector#116: + key=747474747474747474747474747474747474747474747474 + cipher=7474747474747474 + plain=EF91577024209D96 + encrypted=7474747474747474 + +Set 7, vector#117: + key=757575757575757575757575757575757575757575757575 + cipher=7575757575757575 + plain=862D09602D08F4AF + encrypted=7575757575757575 + +Set 7, vector#118: + key=767676767676767676767676767676767676767676767676 + cipher=7676767676767676 + plain=DF8FDD3DA8BE381C + encrypted=7676767676767676 + +Set 7, vector#119: + key=777777777777777777777777777777777777777777777777 + cipher=7777777777777777 + plain=F4FA92CAF1EA65C8 + encrypted=7777777777777777 + +Set 7, vector#120: + key=787878787878787878787878787878787878787878787878 + cipher=7878787878787878 + plain=6C51D39A736AB06E + encrypted=7878787878787878 + +Set 7, vector#121: + key=797979797979797979797979797979797979797979797979 + cipher=7979797979797979 + plain=CA78FA0F8940CDB6 + encrypted=7979797979797979 + +Set 7, vector#122: + key=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + cipher=7A7A7A7A7A7A7A7A + plain=E32531D4F4783A94 + encrypted=7A7A7A7A7A7A7A7A + +Set 7, vector#123: + key=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + cipher=7B7B7B7B7B7B7B7B + plain=C983F15CAE1DEB86 + encrypted=7B7B7B7B7B7B7B7B + +Set 7, vector#124: + key=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + cipher=7C7C7C7C7C7C7C7C + plain=F8895BF6515436F3 + encrypted=7C7C7C7C7C7C7C7C + +Set 7, vector#125: + key=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + cipher=7D7D7D7D7D7D7D7D + plain=0B679E5008B5B69B + encrypted=7D7D7D7D7D7D7D7D + +Set 7, vector#126: + key=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + cipher=7E7E7E7E7E7E7E7E + plain=909D89361F819432 + encrypted=7E7E7E7E7E7E7E7E + +Set 7, vector#127: + key=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + cipher=7F7F7F7F7F7F7F7F + plain=C8FCD27001B95D10 + encrypted=7F7F7F7F7F7F7F7F + +Set 7, vector#128: + key=808080808080808080808080808080808080808080808080 + cipher=8080808080808080 + plain=37032D8FFE46A2EF + encrypted=8080808080808080 + +Set 7, vector#129: + key=818181818181818181818181818181818181818181818181 + cipher=8181818181818181 + plain=6F6276C9E07E6BCD + encrypted=8181818181818181 + +Set 7, vector#130: + key=828282828282828282828282828282828282828282828282 + cipher=8282828282828282 + plain=F49861AFF74A4964 + encrypted=8282828282828282 + +Set 7, vector#131: + key=838383838383838383838383838383838383838383838383 + cipher=8383838383838383 + plain=0776A409AEABC90C + encrypted=8383838383838383 + +Set 7, vector#132: + key=848484848484848484848484848484848484848484848484 + cipher=8484848484848484 + plain=367C0EA351E21479 + encrypted=8484848484848484 + +Set 7, vector#133: + key=858585858585858585858585858585858585858585858585 + cipher=8585858585858585 + plain=1CDACE2B0B87C56B + encrypted=8585858585858585 + +Set 7, vector#134: + key=868686868686868686868686868686868686868686868686 + cipher=8686868686868686 + plain=358705F076BF3249 + encrypted=8686868686868686 + +Set 7, vector#135: + key=878787878787878787878787878787878787878787878787 + cipher=8787878787878787 + plain=93AE2C658C954F91 + encrypted=8787878787878787 + +Set 7, vector#136: + key=888888888888888888888888888888888888888888888888 + cipher=8888888888888888 + plain=0B056D350E159A37 + encrypted=8888888888888888 + +Set 7, vector#137: + key=898989898989898989898989898989898989898989898989 + cipher=8989898989898989 + plain=207022C25741C7E3 + encrypted=8989898989898989 + +Set 7, vector#138: + key=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + cipher=8A8A8A8A8A8A8A8A + plain=79D2F69FD2F70B50 + encrypted=8A8A8A8A8A8A8A8A + +Set 7, vector#139: + key=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + cipher=8B8B8B8B8B8B8B8B + plain=106EA88FDBDF6269 + encrypted=8B8B8B8B8B8B8B8B + +Set 7, vector#140: + key=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + cipher=8C8C8C8C8C8C8C8C + plain=AE6744B747A26F8C + encrypted=8C8C8C8C8C8C8C8C + +Set 7, vector#141: + key=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + cipher=8D8D8D8D8D8D8D8D + plain=2447BF50EAC2BD23 + encrypted=8D8D8D8D8D8D8D8D + +Set 7, vector#142: + key=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + cipher=8E8E8E8E8E8E8E8E + plain=764242C21FCE1129 + encrypted=8E8E8E8E8E8E8E8E + +Set 7, vector#143: + key=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + cipher=8F8F8F8F8F8F8F8F + plain=1B5E73E3DB140446 + encrypted=8F8F8F8F8F8F8F8F + +Set 7, vector#144: + key=909090909090909090909090909090909090909090909090 + cipher=9090909090909090 + plain=3DBEFA1CC1E7B009 + encrypted=9090909090909090 + +Set 7, vector#145: + key=919191919191919191919191919191919191919191919191 + cipher=9191919191919191 + plain=81717E9877392A77 + encrypted=9191919191919191 + +Set 7, vector#146: + key=929292929292929292929292929292929292929292929292 + cipher=9292929292929292 + plain=DBDF4995EFAA3F16 + encrypted=9292929292929292 + +Set 7, vector#147: + key=939393939393939393939393939393939393939393939393 + cipher=9393939393939393 + plain=ED4B3485B3418984 + encrypted=9393939393939393 + +Set 7, vector#148: + key=949494949494949494949494949494949494949494949494 + cipher=9494949494949494 + plain=C84E74C6F9454C57 + encrypted=9494949494949494 + +Set 7, vector#149: + key=959595959595959595959595959595959595959595959595 + cipher=9595959595959595 + plain=92C0CE3888715275 + encrypted=9595959595959595 + +Set 7, vector#150: + key=969696969696969696969696969696969696969696969696 + cipher=9696969696969696 + plain=7084F1526B1C65EC + encrypted=9696969696969696 + +Set 7, vector#151: + key=979797979797979797979797979797979797979797979797 + cipher=9797979797979797 + plain=84C3F0B1CB062E16 + encrypted=9797979797979797 + +Set 7, vector#152: + key=989898989898989898989898989898989898989898989898 + cipher=9898989898989898 + plain=7D0704AEBFFEB47A + encrypted=9898989898989898 + +Set 7, vector#153: + key=999999999999999999999999999999999999999999999999 + cipher=9999999999999999 + plain=D631ED501569F48F + encrypted=9999999999999999 + +Set 7, vector#154: + key=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + cipher=9A9A9A9A9A9A9A9A + plain=420435C66146CD5F + encrypted=9A9A9A9A9A9A9A9A + +Set 7, vector#155: + key=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + cipher=9B9B9B9B9B9B9B9B + plain=E2C00E635DF72D4D + encrypted=9B9B9B9B9B9B9B9B + +Set 7, vector#156: + key=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + cipher=9C9C9C9C9C9C9C9C + plain=830BFFDA14CD4990 + encrypted=9C9C9C9C9C9C9C9C + +Set 7, vector#157: + key=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + cipher=9D9D9D9D9D9D9D9D + plain=A054F17BC391A456 + encrypted=9D9D9D9D9D9D9D9D + +Set 7, vector#158: + key=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + cipher=9E9E9E9E9E9E9E9E + plain=081BA7058F7E4182 + encrypted=9E9E9E9E9E9E9E9E + +Set 7, vector#159: + key=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + cipher=9F9F9F9F9F9F9F9F + plain=350CDEE58F869F29 + encrypted=9F9F9F9F9F9F9F9F + +Set 7, vector#160: + key=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + cipher=A0A0A0A0A0A0A0A0 + plain=69F52590FDD1CFE6 + encrypted=A0A0A0A0A0A0A0A0 + +Set 7, vector#161: + key=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + cipher=A1A1A1A1A1A1A1A1 + plain=EADC79DB2928CEDE + encrypted=A1A1A1A1A1A1A1A1 + +Set 7, vector#162: + key=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + cipher=A2A2A2A2A2A2A2A2 + plain=CFD21BE2051AF3C1 + encrypted=A2A2A2A2A2A2A2A2 + +Set 7, vector#163: + key=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + cipher=A3A3A3A3A3A3A3A3 + plain=9162B00621F7552E + encrypted=A3A3A3A3A3A3A3A3 + +Set 7, vector#164: + key=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + cipher=A4A4A4A4A4A4A4A4 + plain=755CC8D2B5B30AB2 + encrypted=A4A4A4A4A4A4A4A4 + +Set 7, vector#165: + key=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + cipher=A5A5A5A5A5A5A5A5 + plain=712B05A20F484556 + encrypted=A5A5A5A5A5A5A5A5 + +Set 7, vector#166: + key=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + cipher=A6A6A6A6A6A6A6A6 + plain=11DE2BCE0CB1765A + encrypted=A6A6A6A6A6A6A6A6 + +Set 7, vector#167: + key=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + cipher=A7A7A7A7A7A7A7A7 + plain=77C2E34A9705B509 + encrypted=A7A7A7A7A7A7A7A7 + +Set 7, vector#168: + key=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + cipher=A8A8A8A8A8A8A8A8 + plain=5E8CE3AA5B04E4ED + encrypted=A8A8A8A8A8A8A8A8 + +Set 7, vector#169: + key=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + cipher=A9A9A9A9A9A9A9A9 + plain=AEEEA13B14221EB1 + encrypted=A9A9A9A9A9A9A9A9 + +Set 7, vector#170: + key=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + cipher=AAAAAAAAAAAAAAAA + plain=D84215387B7F9E3D + encrypted=AAAAAAAAAAAAAAAA + +Set 7, vector#171: + key=ABABABABABABABABABABABABABABABABABABABABABABABAB + cipher=ABABABABABABABAB + plain=239BB18590559BB9 + encrypted=ABABABABABABABAB + +Set 7, vector#172: + key=ACACACACACACACACACACACACACACACACACACACACACACACAC + cipher=ACACACACACACACAC + plain=F06EE876D610B55E + encrypted=ACACACACACACACAC + +Set 7, vector#173: + key=ADADADADADADADADADADADADADADADADADADADADADADADAD + cipher=ADADADADADADADAD + plain=BE33DB8A9F9FA4F4 + encrypted=ADADADADADADADAD + +Set 7, vector#174: + key=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + cipher=AEAEAEAEAEAEAEAE + plain=7702DC93BE4C44AE + encrypted=AEAEAEAEAEAEAEAE + +Set 7, vector#175: + key=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + cipher=AFAFAFAFAFAFAFAF + plain=A665A329D5F92FD8 + encrypted=AFAFAFAFAFAFAFAF + +Set 7, vector#176: + key=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + cipher=B0B0B0B0B0B0B0B0 + plain=3EBE6668C7E3825C + encrypted=B0B0B0B0B0B0B0B0 + +Set 7, vector#177: + key=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + cipher=B1B1B1B1B1B1B1B1 + plain=98B9B272A5D7DD30 + encrypted=B1B1B1B1B1B1B1B1 + +Set 7, vector#178: + key=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + cipher=B2B2B2B2B2B2B2B2 + plain=1B6EE5949A857941 + encrypted=B2B2B2B2B2B2B2B2 + +Set 7, vector#179: + key=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + cipher=B3B3B3B3B3B3B3B3 + plain=E06BBD15D9A348B6 + encrypted=B3B3B3B3B3B3B3B3 + +Set 7, vector#180: + key=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + cipher=B4B4B4B4B4B4B4B4 + plain=2514F3336063FD58 + encrypted=B4B4B4B4B4B4B4B4 + +Set 7, vector#181: + key=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + cipher=B5B5B5B5B5B5B5B5 + plain=E9FBBDA6090110D5 + encrypted=B5B5B5B5B5B5B5B5 + +Set 7, vector#182: + key=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + cipher=B6B6B6B6B6B6B6B6 + plain=7C7D63003CD31264 + encrypted=B6B6B6B6B6B6B6B6 + +Set 7, vector#183: + key=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + cipher=B7B7B7B7B7B7B7B7 + plain=78EB2BB35382F2EB + encrypted=B7B7B7B7B7B7B7B7 + +Set 7, vector#184: + key=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + cipher=B8B8B8B8B8B8B8B8 + plain=90AF1E7256FBA0DE + encrypted=B8B8B8B8B8B8B8B8 + +Set 7, vector#185: + key=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + cipher=B9B9B9B9B9B9B9B9 + plain=BFB8EB6467ABE17B + encrypted=B9B9B9B9B9B9B9B9 + +Set 7, vector#186: + key=BABABABABABABABABABABABABABABABABABABABABABABABA + cipher=BABABABABABABABA + plain=33CC9711C22EF579 + encrypted=BABABABABABABABA + +Set 7, vector#187: + key=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + cipher=BBBBBBBBBBBBBBBB + plain=CFF046B6EC4F6260 + encrypted=BBBBBBBBBBBBBBBB + +Set 7, vector#188: + key=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + cipher=BCBCBCBCBCBCBCBC + plain=BFC1B068D95BC1D4 + encrypted=BCBCBCBCBCBCBCBC + +Set 7, vector#189: + key=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + cipher=BDBDBDBDBDBDBDBD + plain=D0E854C3B10B8312 + encrypted=BDBDBDBDBDBDBDBD + +Set 7, vector#190: + key=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + cipher=BEBEBEBEBEBEBEBE + plain=3FDCFE744AF68C20 + encrypted=BEBEBEBEBEBEBEBE + +Set 7, vector#191: + key=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + cipher=BFBFBFBFBFBFBFBF + plain=025E5153BEFC4138 + encrypted=BFBFBFBFBFBFBFBF + +Set 7, vector#192: + key=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + cipher=C0C0C0C0C0C0C0C0 + plain=B032ED00E5F0B7D7 + encrypted=C0C0C0C0C0C0C0C0 + +Set 7, vector#193: + key=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + cipher=C1C1C1C1C1C1C1C1 + plain=1E1D46D413849125 + encrypted=C1C1C1C1C1C1C1C1 + +Set 7, vector#194: + key=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + cipher=C2C2C2C2C2C2C2C2 + plain=690713E6383FF096 + encrypted=C2C2C2C2C2C2C2C2 + +Set 7, vector#195: + key=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + cipher=C3C3C3C3C3C3C3C3 + plain=D6F223FF4504093F + encrypted=C3C3C3C3C3C3C3C3 + +Set 7, vector#196: + key=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + cipher=C4C4C4C4C4C4C4C4 + plain=48E07C763CD06D71 + encrypted=C4C4C4C4C4C4C4C4 + +Set 7, vector#197: + key=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + cipher=C5C5C5C5C5C5C5C5 + plain=BD7C6AC98EA824E7 + encrypted=C5C5C5C5C5C5C5C5 + +Set 7, vector#198: + key=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + cipher=C6C6C6C6C6C6C6C6 + plain=1909291A23350450 + encrypted=C6C6C6C6C6C6C6C6 + +Set 7, vector#199: + key=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + cipher=C7C7C7C7C7C7C7C7 + plain=480F8B34F62DE678 + encrypted=C7C7C7C7C7C7C7C7 + +Set 7, vector#200: + key=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + cipher=C8C8C8C8C8C8C8C8 + plain=4AC2A75E3528679B + encrypted=C8C8C8C8C8C8C8C8 + +Set 7, vector#201: + key=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + cipher=C9C9C9C9C9C9C9C9 + plain=3F1568A5E99DEF8C + encrypted=C9C9C9C9C9C9C9C9 + +Set 7, vector#202: + key=CACACACACACACACACACACACACACACACACACACACACACACACA + cipher=CACACACACACACACA + plain=40414B449374572C + encrypted=CACACACACACACACA + +Set 7, vector#203: + key=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + cipher=CBCBCBCBCBCBCBCB + plain=F7925D5B97E64D13 + encrypted=CBCBCBCBCBCBCBCB + +Set 7, vector#204: + key=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + cipher=CCCCCCCCCCCCCCCC + plain=E64959F80B628140 + encrypted=CCCCCCCCCCCCCCCC + +Set 7, vector#205: + key=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + cipher=CDCDCDCDCDCDCDCD + plain=248E0D06FB31BB98 + encrypted=CDCDCDCDCDCDCDCD + +Set 7, vector#206: + key=CECECECECECECECECECECECECECECECECECECECECECECECE + cipher=CECECECECECECECE + plain=92F58133675FE659 + encrypted=CECECECECECECECE + +Set 7, vector#207: + key=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + cipher=CFCFCFCFCFCFCFCF + plain=CCA53A1AB55B3A05 + encrypted=CFCFCFCFCFCFCFCF + +Set 7, vector#208: + key=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + cipher=D0D0D0D0D0D0D0D0 + plain=8066E3CA18E0726A + encrypted=D0D0D0D0D0D0D0D0 + +Set 7, vector#209: + key=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + cipher=D1D1D1D1D1D1D1D1 + plain=9A610E9161003E92 + encrypted=D1D1D1D1D1D1D1D1 + +Set 7, vector#210: + key=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + cipher=D2D2D2D2D2D2D2D2 + plain=9F10AB312F9C1153 + encrypted=D2D2D2D2D2D2D2D2 + +Set 7, vector#211: + key=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + cipher=D3D3D3D3D3D3D3D3 + plain=5E55536492C254F5 + encrypted=D3D3D3D3D3D3D3D3 + +Set 7, vector#212: + key=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + cipher=D4D4D4D4D4D4D4D4 + plain=2EC41BB94EAC683F + encrypted=D4D4D4D4D4D4D4D4 + +Set 7, vector#213: + key=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + cipher=D5D5D5D5D5D5D5D5 + plain=E6264B3CFA54A53B + encrypted=D5D5D5D5D5D5D5D5 + +Set 7, vector#214: + key=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + cipher=D6D6D6D6D6D6D6D6 + plain=9B0FE80CA5C0AF2E + encrypted=D6D6D6D6D6D6D6D6 + +Set 7, vector#215: + key=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + cipher=D7D7D7D7D7D7D7D7 + plain=9F99107A00E075B9 + encrypted=D7D7D7D7D7D7D7D7 + +Set 7, vector#216: + key=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + cipher=D8D8D8D8D8D8D8D8 + plain=EE5A79323EA0B49D + encrypted=D8D8D8D8D8D8D8D8 + +Set 7, vector#217: + key=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + cipher=D9D9D9D9D9D9D9D9 + plain=57D818D32E7BAAA1 + encrypted=D9D9D9D9D9D9D9D9 + +Set 7, vector#218: + key=DADADADADADADADADADADADADADADADADADADADADADADADA + cipher=DADADADADADADADA + plain=2372BA28AE804A73 + encrypted=DADADADADADADADA + +Set 7, vector#219: + key=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + cipher=DBDBDBDBDBDBDBDB + plain=370FD75C119F4D76 + encrypted=DBDBDBDBDBDBDBDB + +Set 7, vector#220: + key=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + cipher=DCDCDCDCDCDCDCDC + plain=70ADE48AB7C5F46B + encrypted=DCDCDCDCDCDCDCDC + +Set 7, vector#221: + key=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + cipher=DDDDDDDDDDDDDDDD + plain=2EFA06CFEF4C490A + encrypted=DDDDDDDDDDDDDDDD + +Set 7, vector#222: + key=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + cipher=DEDEDEDEDEDEDEDE + plain=57F4D40141EF5B25 + encrypted=DEDEDEDEDEDEDEDE + +Set 7, vector#223: + key=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + cipher=DFDFDFDFDFDFDFDF + plain=6F8C38686FCF9082 + encrypted=DFDFDFDFDFDFDFDF + +Set 7, vector#224: + key=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + cipher=E0E0E0E0E0E0E0E0 + plain=9E4EBA2683B6EADC + encrypted=E0E0E0E0E0E0E0E0 + +Set 7, vector#225: + key=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + cipher=E1E1E1E1E1E1E1E1 + plain=37FBF97B5DF82E4A + encrypted=E1E1E1E1E1E1E1E1 + +Set 7, vector#226: + key=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + cipher=E2E2E2E2E2E2E2E2 + plain=F8605C8127F45F9B + encrypted=E2E2E2E2E2E2E2E2 + +Set 7, vector#227: + key=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + cipher=E3E3E3E3E3E3E3E3 + plain=CFE89CC047E6836A + encrypted=E3E3E3E3E3E3E3E3 + +Set 7, vector#228: + key=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + cipher=E4E4E4E4E4E4E4E4 + plain=7060B673459206F7 + encrypted=E4E4E4E4E4E4E4E4 + +Set 7, vector#229: + key=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + cipher=E5E5E5E5E5E5E5E5 + plain=49D3014B922E7A88 + encrypted=E5E5E5E5E5E5E5E5 + +Set 7, vector#230: + key=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + cipher=E6E6E6E6E6E6E6E6 + plain=638146A34E7DDCC1 + encrypted=E6E6E6E6E6E6E6E6 + +Set 7, vector#231: + key=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + cipher=E7E7E7E7E7E7E7E7 + plain=D106D7199C6791E3 + encrypted=E7E7E7E7E7E7E7E7 + +Set 7, vector#232: + key=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + cipher=E8E8E8E8E8E8E8E8 + plain=9B00500449F74FFD + encrypted=E8E8E8E8E8E8E8E8 + +Set 7, vector#233: + key=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + cipher=E9E9E9E9E9E9E9E9 + plain=AAF04E5AAF85B612 + encrypted=E9E9E9E9E9E9E9E9 + +Set 7, vector#234: + key=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + cipher=EAEAEAEAEAEAEAEA + plain=AC4B251F989E005E + encrypted=EAEAEAEAEAEAEAEA + +Set 7, vector#235: + key=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + cipher=EBEBEBEBEBEBEBEB + plain=E1A6F9B0015E6E10 + encrypted=EBEBEBEBEBEBEBEB + +Set 7, vector#236: + key=ECECECECECECECECECECECECECECECECECECECECECECECEC + cipher=ECECECECECECECEC + plain=E288627548617610 + encrypted=ECECECECECECECEC + +Set 7, vector#237: + key=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + cipher=EDEDEDEDEDEDEDED + plain=5D0975698BF1C0D2 + encrypted=EDEDEDEDEDEDEDED + +Set 7, vector#238: + key=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + cipher=EEEEEEEEEEEEEEEE + plain=DC84DCFB3C6C2C53 + encrypted=EEEEEEEEEEEEEEEE + +Set 7, vector#239: + key=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + cipher=EFEFEFEFEFEFEFEF + plain=4C89378B1906782F + encrypted=EFEFEFEFEFEFEFEF + +Set 7, vector#240: + key=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + cipher=F0F0F0F0F0F0F0F0 + plain=A8FA85D47AC98412 + encrypted=F0F0F0F0F0F0F0F0 + +Set 7, vector#241: + key=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + cipher=F1F1F1F1F1F1F1F1 + plain=0E123A4E06709CEC + encrypted=F1F1F1F1F1F1F1F1 + +Set 7, vector#242: + key=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + cipher=F2F2F2F2F2F2F2F2 + plain=EB629B6D5F27F611 + encrypted=F2F2F2F2F2F2F2F2 + +Set 7, vector#243: + key=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + cipher=F3F3F3F3F3F3F3F3 + plain=6066A70C1D898158 + encrypted=F3F3F3F3F3F3F3F3 + +Set 7, vector#244: + key=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + cipher=F4F4F4F4F4F4F4F4 + plain=4A52E373B669A335 + encrypted=F4F4F4F4F4F4F4F4 + +Set 7, vector#245: + key=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + cipher=F5F5F5F5F5F5F5F5 + plain=3197EEEE45C484EE + encrypted=F5F5F5F5F5F5F5F5 + +Set 7, vector#246: + key=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + cipher=F6F6F6F6F6F6F6F6 + plain=AEEF1A655138CCA4 + encrypted=F6F6F6F6F6F6F6F6 + +Set 7, vector#247: + key=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + cipher=F7F7F7F7F7F7F7F7 + plain=26CD7B8BBA25B027 + encrypted=F7F7F7F7F7F7F7F7 + +Set 7, vector#248: + key=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + cipher=F8F8F8F8F8F8F8F8 + plain=7200565F4D0DAB74 + encrypted=F8F8F8F8F8F8F8F8 + +Set 7, vector#249: + key=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + cipher=F9F9F9F9F9F9F9F9 + plain=5510622EE218BAB9 + encrypted=F9F9F9F9F9F9F9F9 + +Set 7, vector#250: + key=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + cipher=FAFAFAFAFAFAFAFA + plain=DA9896ABAD6FCE34 + encrypted=FAFAFAFAFAFAFAFA + +Set 7, vector#251: + key=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + cipher=FBFBFBFBFBFBFBFB + plain=766E3F3B730F507E + encrypted=FBFBFBFBFBFBFBFB + +Set 7, vector#252: + key=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + cipher=FCFCFCFCFCFCFCFC + plain=6E738510076C52AE + encrypted=FCFCFCFCFCFCFCFC + +Set 7, vector#253: + key=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + cipher=FDFDFDFDFDFDFDFD + plain=0F6059C33205D452 + encrypted=FDFDFDFDFDFDFDFD + +Set 7, vector#254: + key=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + cipher=FEFEFEFEFEFEFEFE + plain=66B2B23EA84693AD + encrypted=FEFEFEFEFEFEFEFE + +Set 7, vector#255: + key=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + cipher=FFFFFFFFFFFFFFFF + plain=7359B2163E4EDC58 + encrypted=FFFFFFFFFFFFFFFF + +Test vectors -- set 8 +===================== + +Set 8, vector# 0: + key=000102030405060708090A0B0C0D0E0F1011121314151617 + cipher=0011223344556677 + plain=982662605553244D + encrypted=0011223344556677 + +Set 8, vector# 1: + key=2BD6459F82C5B300952C49104881FF482BD6459F82C5B300 + cipher=EA024714AD5C4D84 + plain=8598538A8ECF117D + encrypted=EA024714AD5C4D84 + + + +End of test vectors -- 2.39.2