From: bg Date: Wed, 2 Feb 2011 03:47:29 +0000 (+0100) Subject: adding Noekeon and XTEA X-Git-Url: https://git.cryptolib.org/?p=arm-crypto-lib.git;a=commitdiff_plain;h=b6f2bb4e1ad3d8d2247fe734884650887b64323b adding Noekeon and XTEA --- diff --git a/bcal/bcal_noekeon.c b/bcal/bcal_noekeon.c index c58bdcb..7f39d17 100644 --- a/bcal/bcal_noekeon.c +++ b/bcal/bcal_noekeon.c @@ -1,18 +1,17 @@ /* bcal_noekeon.c */ -#include #include #include "blockcipher_descriptor.h" #include "noekeon.h" #include "keysize_descriptor.h" -const char noekeon_direct_str[] PROGMEM = "Noekeon-Direct"; -const char noekeon_indirect_str[] PROGMEM = "Noekeon-Indirect"; +const char noekeon_direct_str[] = "Noekeon-Direct"; +const char noekeon_indirect_str[] = "Noekeon-Indirect"; -const uint8_t noekeon_keysize_desc[] PROGMEM = { KS_TYPE_LIST, 1, KS_INT(128), - KS_TYPE_TERMINATOR }; +const uint8_t noekeon_keysize_desc[] = { KS_TYPE_LIST, 1, KS_INT(128), + KS_TYPE_TERMINATOR }; -const bcdesc_t noekeon_direct_desc PROGMEM = { +const bcdesc_t noekeon_direct_desc = { BCDESC_TYPE_BLOCKCIPHER, BC_ENC_TYPE_1, noekeon_direct_str, @@ -25,7 +24,7 @@ const bcdesc_t noekeon_direct_desc PROGMEM = { noekeon_keysize_desc }; -const bcdesc_t noekeon_indirect_desc PROGMEM = { +const bcdesc_t noekeon_indirect_desc = { BCDESC_TYPE_BLOCKCIPHER, BC_INIT_TYPE_1 | BC_ENC_TYPE_1, noekeon_indirect_str, diff --git a/bcal/bcal_noekeon.h b/bcal/bcal_noekeon.h index e8ea544..8a5c141 100644 --- a/bcal/bcal_noekeon.h +++ b/bcal/bcal_noekeon.h @@ -1,6 +1,5 @@ /* bcal_noekeon.h */ -#include #include "blockcipher_descriptor.h" #include "noekeon.h" #include "keysize_descriptor.h" diff --git a/bcal/bcal_xtea.c b/bcal/bcal_xtea.c index 2d37f68..3c6217e 100644 --- a/bcal/bcal_xtea.c +++ b/bcal/bcal_xtea.c @@ -25,16 +25,15 @@ * */ -#include #include #include "blockcipher_descriptor.h" #include "xtea.h" #include "keysize_descriptor.h" -const char xtea_str[] PROGMEM = "XTEA"; +const char xtea_str[] = "XTEA"; -const uint8_t xtea_keysize_desc[] PROGMEM = { KS_TYPE_LIST, 1, KS_INT(128), - KS_TYPE_TERMINATOR }; +const uint8_t xtea_keysize_desc[] = { KS_TYPE_LIST, 1, KS_INT(128), + KS_TYPE_TERMINATOR }; static void xtea_dummy_enc(void* block, void* key){ @@ -46,7 +45,7 @@ void xtea_dummy_dec(void* block, void* key){ xtea_dec(block, block, key); } -const bcdesc_t xtea_desc PROGMEM = { +const bcdesc_t xtea_desc = { BCDESC_TYPE_BLOCKCIPHER, BC_INIT_TYPE_2, xtea_str, diff --git a/bcal/bcal_xtea.h b/bcal/bcal_xtea.h index 17d2612..1f2c3e0 100644 --- a/bcal/bcal_xtea.h +++ b/bcal/bcal_xtea.h @@ -25,7 +25,6 @@ * */ -#include #include "blockcipher_descriptor.h" #include "xtea.h" #include "keysize_descriptor.h" diff --git a/host/get_test.rb b/host/get_test.rb index 39b9a2f..663deab 100644 --- a/host/get_test.rb +++ b/host/get_test.rb @@ -111,7 +111,7 @@ param=(ARGV.size>=7)?ARGV[6]:""; puts("\nPort: "+ARGV[0]+ "@"+ARGV[1]+" "+ARGV[2]+"N"+ARGV[3]+"\n"); $linewidth = 16 -$sp = SerialPort.new(ARGV[0], ARGV[1].to_i, ARGV[2].to_i, ARGV[3].to_i, SerialPort::SOFT); +$sp = SerialPort.new(ARGV[0], ARGV[1].to_i, ARGV[2].to_i, ARGV[3].to_i, SerialPort::NONE); $sp.read_timeout=1000; # 1 secound $extended_wait=100; $sp.write(command); diff --git a/mkfiles/noekeon_c.mk b/mkfiles/noekeon_c.mk new file mode 100644 index 0000000..4401b69 --- /dev/null +++ b/mkfiles/noekeon_c.mk @@ -0,0 +1,14 @@ +# Makefile for noekeon +ALGO_NAME := NOEKEON_C + +# comment out the following line for removement of noekeon from the build process +BLOCK_CIPHERS += $(ALGO_NAME) + + +$(ALGO_NAME)_OBJ := noekeon.o +$(ALGO_NAME)_DIR := noekeon/ +$(ALGO_NAME)_INCDIR := bcal/ +$(ALGO_NAME)_TEST_BIN := main-noekeon-test.o bcal_noekeon.o $(CLI_STD) $(BCAL_STD) +$(ALGO_NAME)_NESSIE_TEST := test nessie +$(ALGO_NAME)_PERFORMANCE_TEST := performance + diff --git a/mkfiles/xtea_c.mk b/mkfiles/xtea_c.mk new file mode 100644 index 0000000..8e37ec3 --- /dev/null +++ b/mkfiles/xtea_c.mk @@ -0,0 +1,13 @@ +# Makefile for XTEA +ALGO_NAME := XTEA_C + +# comment out the following line for removement of XTEA from the build process +BLOCK_CIPHERS += $(ALGO_NAME) + +$(ALGO_NAME)_DIR := xtea/ +$(ALGO_NAME)_OBJ := xtea.o +$(ALGO_NAME)_INCDIR := bcal/ +$(ALGO_NAME)_TEST_BIN := main-xtea-test.o bcal_xtea.o $(CLI_STD) $(BCAL_STD) +$(ALGO_NAME)_NESSIE_TEST := "nessie" +$(ALGO_NAME)_PERFORMANCE_TEST := "performance" + diff --git a/noekeon/noekeon.c b/noekeon/noekeon.c index 0a2649c..cbf36a8 100644 --- a/noekeon/noekeon.c +++ b/noekeon/noekeon.c @@ -39,7 +39,7 @@ #define RC_POS 0 static -void gamma(uint32_t* a){ +void gamma_x(uint32_t* a){ uint32_t tmp; a[1] ^= ~((a[3]) | (a[2])); @@ -94,7 +94,7 @@ void noekeon_round(uint32_t* key, uint32_t* state, uint8_t const1, uint8_t const theta(key, state); ((uint8_t*)state)[RC_POS] ^= const2; pi1(state); - gamma(state); + gamma_x(state); pi2(state); } diff --git a/test_src/main-noekeon-test.c b/test_src/main-noekeon-test.c new file mode 100644 index 0000000..4962b5e --- /dev/null +++ b/test_src/main-noekeon-test.c @@ -0,0 +1,232 @@ +/* main-noekeon-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 . +*/ +/* + * noekeon 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 +#include "nessie_bc_test.h" +#include "performance_test.h" +#include "bcal-performance.h" +#include "bcal_noekeon.h" + +const char* algo_name = "Noekeon"; + +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*)&noekeon_direct_desc, + (bcdesc_t*)&noekeon_indirect_desc, + NULL +}; +/***************************************************************************** + * additional validation-functions * + *****************************************************************************/ +void noekeon_genctx_dummy(uint8_t* key, uint16_t keysize, void* ctx){ + noekeon_init(key, ctx); +} + +void testrun_nessie_noekeon_indirect(void){ + char str[strlen(algo_name)+10]; + strcpy(str, algo_name); + strcat(str, "-indirect"); + + nessie_bc_ctx.blocksize_B = 16; + nessie_bc_ctx.keysize_b = 128; + nessie_bc_ctx.name = str; + nessie_bc_ctx.ctx_size_B = sizeof(noekeon_ctx_t); + nessie_bc_ctx.cipher_enc = (nessie_bc_enc_fpt)noekeon_enc; + nessie_bc_ctx.cipher_dec = (nessie_bc_dec_fpt)noekeon_dec; + nessie_bc_ctx.cipher_genctx = (nessie_bc_gen_fpt)noekeon_genctx_dummy; + + nessie_bc_run(); +} + +void noekeon_genctx_dummy_direct(uint8_t* key, uint16_t keysize, void* ctx){ + memcpy(ctx, key, 16); +} + +void testrun_nessie_noekeon_direct(void){ + char str[strlen(algo_name)+10]; + strcpy(str, algo_name); + strcat(str, "-Direct"); + + nessie_bc_ctx.blocksize_B = 16; + nessie_bc_ctx.keysize_b = 128; + nessie_bc_ctx.name = str; + nessie_bc_ctx.ctx_size_B = sizeof(noekeon_ctx_t); + nessie_bc_ctx.cipher_enc = (nessie_bc_enc_fpt)noekeon_enc; + nessie_bc_ctx.cipher_dec = (nessie_bc_dec_fpt)noekeon_dec; + nessie_bc_ctx.cipher_genctx = (nessie_bc_gen_fpt)noekeon_genctx_dummy_direct; + + nessie_bc_run(); +} + +void testrun_nessie_noekeon(void){ + testrun_nessie_noekeon_direct(); + testrun_nessie_noekeon_indirect(); +} + + +void testrun_stdtest_rundirect(void* data, void* key){ + cli_putstr("\r\n "); + cli_putstr("k = "); + cli_hexdump(key,16); + + cli_putstr("\r\n "); + cli_putstr("a = "); + cli_hexdump(data,16); + + noekeon_enc(data, key); + cli_putstr("\r\nafter NESSIEencrypt, b = "); + cli_hexdump(data,16); + + noekeon_dec(data, key); + cli_putstr("\r\nafter NESSIEdecrypt, a?= "); + cli_hexdump(data,16); + cli_putstr("\r\n"); +} + +void testrun_stdtest_runindirect(void* data, void* key){ + noekeon_ctx_t ctx; + cli_putstr("\r\n "); + cli_putstr("k = "); + cli_hexdump(key,16); + + cli_putstr("\r\n "); + cli_putstr("a = "); + cli_hexdump(data,16); + noekeon_init(key, &ctx); + noekeon_enc(data, &ctx); + cli_putstr("\r\nafter NESSIEencrypt, b = "); + cli_hexdump(data,16); + + noekeon_dec(data, &ctx); + cli_putstr("\r\nafter NESSIEdecrypt, a?= "); + cli_hexdump(data,16); + cli_putstr("\r\n"); +} + +void testrun_stdtest_noekeon(void){ + uint8_t key[16], data[16]; + uint8_t key3[16]; + noekeon_ctx_t ctx; + + cli_putstr("\r\nTest vectors for block cipher Noekeon in Indirect-Key Mode:\r\n"); + + memset(key, 0, 16); + memset(data, 0, 16); + testrun_stdtest_runindirect(data, key); + + memset(key, 0xFF, 16); + memset(data, 0xFF, 16); + testrun_stdtest_runindirect(data, key); + + memset(key, 0, 16); + memset(data, 0, 16); + noekeon_init(key, &ctx); + noekeon_enc(data, &ctx); + memcpy(key3, data, 16); + memset(key, 0xFF, 16); + memset(data, 0xFF, 16); + noekeon_init(key, &ctx); + noekeon_enc(data, &ctx); + testrun_stdtest_runindirect(data, key3); + + cli_putstr("\r\nTest vectors for block cipher Noekeon in Direct-Key Mode:\r\n"); + + memset(key, 0, 16); + memset(data, 0, 16); + testrun_stdtest_rundirect(data, key); + + memset(key, 0xFF, 16); + memset(data, 0xFF, 16); + testrun_stdtest_rundirect(data, key); + + memset(key, 0, 16); + memset(data, 0, 16); + noekeon_enc(data, key); + memcpy(key3, data, 16); + memset(key, 0xFF, 16); + memset(data, 0xFF, 16); + noekeon_enc(data, key); + testrun_stdtest_rundirect(data, key3); + +} + +void testrun_performance_noekeon(void){ + bcal_performance_multiple(algolist); +} +/***************************************************************************** + * main * + *****************************************************************************/ + +const char nessie_str[] = "nessie"; +const char test_str[] = "test"; +const char direct_str[] = "direct"; +const char indirect_str[] = "indirect"; +const char performance_str[] = "performance"; +const char echo_str[] = "echo"; + +cmdlist_entry_t cmdlist[] = { + { nessie_str, NULL, testrun_nessie_noekeon}, + { test_str, NULL, testrun_stdtest_noekeon}, + { direct_str, NULL, testrun_nessie_noekeon_direct}, + { indirect_str, NULL, testrun_nessie_noekeon_indirect}, + { performance_str, NULL, testrun_performance_noekeon}, + { 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-xtea-test.c b/test_src/main-xtea-test.c new file mode 100644 index 0000000..83bcc18 --- /dev/null +++ b/test_src/main-xtea-test.c @@ -0,0 +1,120 @@ +/* main-xtea-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 . +*/ +/* + * XTEA 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 "xtea.h" +#include "nessie_bc_test.h" +#include "performance_test.h" +#include "bcal-performance.h" +#include "bcal_xtea.h" + +char* algo_name = "XTEA"; + +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*)&xtea_desc, + NULL +}; + +/******************************************************************************/ + +void xtea_genctx_dummy(uint8_t* key, uint16_t keysize, void* ctx){ + memcpy(ctx, key, (keysize+7)/8); +} + +void xtea_enc_dummy(uint8_t* buffer, void* ctx){ + xtea_enc((uint32_t*)buffer, (uint32_t*)buffer, ctx); +} + +void xtea_dec_dummy(uint8_t* buffer, void* ctx){ + xtea_dec((uint32_t*)buffer, (uint32_t*)buffer, ctx); +} + +void testrun_nessie_xtea(void){ + nessie_bc_ctx.blocksize_B = 8; + nessie_bc_ctx.keysize_b = 128; + nessie_bc_ctx.name = algo_name; + nessie_bc_ctx.ctx_size_B = 128/8; + nessie_bc_ctx.cipher_enc = (nessie_bc_enc_fpt)xtea_enc_dummy; + nessie_bc_ctx.cipher_dec = (nessie_bc_dec_fpt)xtea_dec_dummy; + nessie_bc_ctx.cipher_genctx = (nessie_bc_gen_fpt)xtea_genctx_dummy; + + nessie_bc_run(); +} + +void testrun_performance_xtea(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"; + +const cmdlist_entry_t cmdlist[] = { + { nessie_str, NULL, testrun_nessie_xtea}, + { test_str, NULL, testrun_nessie_xtea}, + { performance_str, NULL, testrun_performance_xtea}, + { 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/Noekeon-Direct-128-128.verified.test-vectors b/testvectors/Noekeon-Direct-128-128.verified.test-vectors new file mode 100644 index 0000000..061565e --- /dev/null +++ b/testvectors/Noekeon-Direct-128-128.verified.test-vectors @@ -0,0 +1,7232 @@ +******************************************************************************** +*Project NESSIE - New European Schemes for Signature, Integrity, and Encryption* +******************************************************************************** + +Primitive Name: Noekeon-Direct +============================== +Key size: 128 bits +Block size: 128 bits + +Test vectors -- set 1 +===================== + +Set 1, vector# 0: + key=80000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=EA6552BA793546C261E4B3E90433F5A2 + decrypted=00000000000000000000000000000000 + Iterated 100 times=DC50EE047D2FBD2E075EB89FB8FA0F03 + Iterated 1000 times=DB83172EC2FFA285331899DCB0561539 + +Set 1, vector# 1: + key=40000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=F23A85B64F36A5908FE23BC6206BFF01 + decrypted=00000000000000000000000000000000 + Iterated 100 times=EF5EC339ED2F588A217626B84540717C + Iterated 1000 times=E27E4E20A413B1F72FBF7DB70D34CA18 + +Set 1, vector# 2: + key=20000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=F0CDC902557005A5EF0E22A8D683579F + decrypted=00000000000000000000000000000000 + Iterated 100 times=82D8636DB1D896A626F5CDEF66EFB073 + Iterated 1000 times=7040E7C89DC6915786712865445101BD + +Set 1, vector# 3: + key=10000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=AFACC462838B10F72B5202B4FEDCE063 + decrypted=00000000000000000000000000000000 + Iterated 100 times=A0AFA33F924A5009F452DEA072B55839 + Iterated 1000 times=9D8244842C1C90F01BCF9AC40A140BD1 + +Set 1, vector# 4: + key=08000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=AA79AD98742EF474D4D745829979CD5D + decrypted=00000000000000000000000000000000 + Iterated 100 times=241A61689DEB4029AEED6215349BFC2E + Iterated 1000 times=AEE05E3279D82F520A210DFB6A252B58 + +Set 1, vector# 5: + key=04000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=6BC1F3F01FC0B9C3DF67CCCA11756A4E + decrypted=00000000000000000000000000000000 + Iterated 100 times=29FEC40C269D4AC5016F8C2B32039A80 + Iterated 1000 times=52F0CB84EC0E41F33EA9E1BE09472C12 + +Set 1, vector# 6: + key=02000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=8EE231BE4FD465A97FFE3A3766CB1F6E + decrypted=00000000000000000000000000000000 + Iterated 100 times=A702BF3E7ACDA80B13A42462A9F1B65D + Iterated 1000 times=BE27A5A284441743B47116A121FCB7F4 + +Set 1, vector# 7: + key=01000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=22E3EF1E99A7AD4378F64CE53C78F151 + decrypted=00000000000000000000000000000000 + Iterated 100 times=4E340C1D48E63A03FF441CEF9E88EA7E + Iterated 1000 times=D0D86D015AB1DC26CA7F5985E202E4E7 + +Set 1, vector# 8: + key=00800000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=0C5BF896C0FB03BAABBA4890878649C0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=56EDBD5CF96987ADA6C6C77823885DF1 + Iterated 1000 times=B6F3AD22B607BC8120C984A1C2B67CF2 + +Set 1, vector# 9: + key=00400000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=8268840AA12848872BF19EE61F482C6D + decrypted=00000000000000000000000000000000 + Iterated 100 times=FD020052DED7C0AEBEEE54DB1C97FD4B + Iterated 1000 times=4AFE1F63610F562676DA8E7BB92D9CE8 + +Set 1, vector# 10: + key=00200000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=F84D2D705DB49AA20D62C52191E64192 + decrypted=00000000000000000000000000000000 + Iterated 100 times=D97F48FB76E50C7929EF722751A15DCF + Iterated 1000 times=0752B57FF843486913B142F55870DD11 + +Set 1, vector# 11: + key=00100000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=93E7A52FE09CA7DF51D50B413D091FA1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=E8730CA2FF4297C04BC9DE73F31B7290 + Iterated 1000 times=985E4CA54B791919874A1B27462A85C2 + +Set 1, vector# 12: + key=00080000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=50F83519C67BEFF964FA0A636C05FD86 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5926BD80BD8DA2ED244A118F2FF43479 + Iterated 1000 times=1D6A6E835CA566710622F270642949D3 + +Set 1, vector# 13: + key=00040000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=C20D355A610EC661E3DF1CC444786834 + decrypted=00000000000000000000000000000000 + Iterated 100 times=886E97A9727D36CB01C9637EA8EC0087 + Iterated 1000 times=B638107269245EAF6658443C96449304 + +Set 1, vector# 14: + key=00020000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=17838D9563298E20FA530999368D8207 + decrypted=00000000000000000000000000000000 + Iterated 100 times=3AE0037BA175425D3D1A84B1DFD68EEE + Iterated 1000 times=A0F2B08CC88985EC8E96FF2FDE966A5B + +Set 1, vector# 15: + key=00010000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=31E7A4D47EB7FB900F60E66CCE4F70D0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=E974204C19CBA4192590BAE3DB87CA0A + Iterated 1000 times=F75AA031836A7E0F19CF7DBD46A63E0E + +Set 1, vector# 16: + key=00008000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=F8DB881ACDF9F335508C40DBD4348FCA + decrypted=00000000000000000000000000000000 + Iterated 100 times=732A1B868AE6874FC575CE7F3FB21117 + Iterated 1000 times=D038B5796F24EB861203BDAA91319403 + +Set 1, vector# 17: + key=00004000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=5A6B3513BEBCAB61EC5453B1F0B7CB61 + decrypted=00000000000000000000000000000000 + Iterated 100 times=CCBF5BEE80AC73D6E954B5D371258E49 + Iterated 1000 times=8A0CFC1431C44C58299CFBBA8FE08231 + +Set 1, vector# 18: + key=00002000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=6079F5E05D48596123AF5D480E8B6142 + decrypted=00000000000000000000000000000000 + Iterated 100 times=B0B72758DC13718EA1CA0246C3DEC9CE + Iterated 1000 times=6FDC94306554492004C8513839F876E4 + +Set 1, vector# 19: + key=00001000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=5EEBC64AA6EB88263A6010C262299676 + decrypted=00000000000000000000000000000000 + Iterated 100 times=6F6050BF94F05F7318F402C3C7E0BCD4 + Iterated 1000 times=FD8C5777B0F56D9BADFEDFEDF2F34569 + +Set 1, vector# 20: + key=00000800000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=D6FD27150F629B2933F82CB73ECDA1C6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=3942C1F0B40DF12B38E1C7F401853B9B + Iterated 1000 times=ED88C6FB716AE4A6666F0CEF09ABE81B + +Set 1, vector# 21: + key=00000400000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=CFA4EB48BBDE8C623B8265F544C02A79 + decrypted=00000000000000000000000000000000 + Iterated 100 times=9CF379D0E461090561103B0EADCAFF35 + Iterated 1000 times=DFE31BA78BF73019CC5F58D134A683B0 + +Set 1, vector# 22: + key=00000200000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=FA3DEFFE6A1A890F49BED18DDE0237FC + decrypted=00000000000000000000000000000000 + Iterated 100 times=1B2D71B3BF77E1C2DDA8419D554B788E + Iterated 1000 times=F5DC1F0F9FDF47955E6F6BF209428CF4 + +Set 1, vector# 23: + key=00000100000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=7B74A0A471D479911F5B246C75E629CD + decrypted=00000000000000000000000000000000 + Iterated 100 times=D1412B9D2E9D9A2B8C2514BC8A7F1B3F + Iterated 1000 times=B7BFCC5506D461E484F6907DC63901C0 + +Set 1, vector# 24: + key=00000080000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=06B99E776BEF8AE09241D70D04071796 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5806645F841AD00093F8309BD6F9F8E2 + Iterated 1000 times=DB1AA75C22066A138BC7A28990C99B98 + +Set 1, vector# 25: + key=00000040000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=4ED119D669A708F59A3C6970D16B80DB + decrypted=00000000000000000000000000000000 + Iterated 100 times=3591DE75E6F7DDED800E9B3500D9E932 + Iterated 1000 times=31D8172A8C8308E980F6CA6775F53ED1 + +Set 1, vector# 26: + key=00000020000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=D711B6FD3D9DD097213982CD2CBE9626 + decrypted=00000000000000000000000000000000 + Iterated 100 times=D3AC448CCD11B9F99CA63AB4A9E46E46 + Iterated 1000 times=48B46D6B3AF4DECB9451255CA41507E5 + +Set 1, vector# 27: + key=00000010000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=A48F6CC53439E0E844634128C4C01E98 + decrypted=00000000000000000000000000000000 + Iterated 100 times=82464C4065EBB0CBA93A76FCC098C232 + Iterated 1000 times=DB02B88359D16E27F7C8FCFB73CC2710 + +Set 1, vector# 28: + key=00000008000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=8233DAAA81672F1A1956C8E83F675CB5 + decrypted=00000000000000000000000000000000 + Iterated 100 times=44123CF51B6E1A318789951E1B1DD189 + Iterated 1000 times=601BD3E6AC4CE1C4CA9E4927B6603A9E + +Set 1, vector# 29: + key=00000004000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=6F1FF1C1781F7F522D41792CF7F79A87 + decrypted=00000000000000000000000000000000 + Iterated 100 times=100F4FFB219AF6D5744FAA6CA8A5A49C + Iterated 1000 times=0036B8DA0D7FAD797EFEF2DD69B63CBF + +Set 1, vector# 30: + key=00000002000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=467BA41543C617B44FB022F2D0EC49A6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=B7F92A4E988F896CC6157EE9923E26A0 + Iterated 1000 times=D5A9D5E6F9E11675061103E1871E7362 + +Set 1, vector# 31: + key=00000001000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=C5CAA3A63E52D76BC03093819836234C + decrypted=00000000000000000000000000000000 + Iterated 100 times=A8D194186512629E7CDDFD6D91BB4856 + Iterated 1000 times=ABF1FDF93971F1E2E3E96B15C264C600 + +Set 1, vector# 32: + key=00000000800000000000000000000000 + plain=00000000000000000000000000000000 + cipher=50768462637C56645E35F9FAE28B536A + decrypted=00000000000000000000000000000000 + Iterated 100 times=7B053E73F7D1E89ED9390B4371AD79B7 + Iterated 1000 times=EFB765E15D948CBEDC0F3E0CD15F4E86 + +Set 1, vector# 33: + key=00000000400000000000000000000000 + plain=00000000000000000000000000000000 + cipher=E040FAA25253454D590ABB1C97D152A4 + decrypted=00000000000000000000000000000000 + Iterated 100 times=F7B89A61457DBDEDAB7E722DE0F7A33D + Iterated 1000 times=407C4F1649BEA6E996EAD9C87C18E1BA + +Set 1, vector# 34: + key=00000000200000000000000000000000 + plain=00000000000000000000000000000000 + cipher=E4EBB7CECB610C5FE0B6DA9A3F041EF0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=908A825EB3482819F95F1AC39268224D + Iterated 1000 times=B51A90A7F5DC419958458E9343D60A6A + +Set 1, vector# 35: + key=00000000100000000000000000000000 + plain=00000000000000000000000000000000 + cipher=61B6C1528F2B3FD0BF79C7D34E31F1B6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=6AE0752F3AFA7270D76139737510626C + Iterated 1000 times=B5D1C978990C21AE75652ECE39D0F19C + +Set 1, vector# 36: + key=00000000080000000000000000000000 + plain=00000000000000000000000000000000 + cipher=0C774FB9F9D09158758A1A3DA857312A + decrypted=00000000000000000000000000000000 + Iterated 100 times=710EE2FD9E7CE1B9E92AC98DDCBD8F29 + Iterated 1000 times=9CEF44CAB855049EFACCA3F4CB063545 + +Set 1, vector# 37: + key=00000000040000000000000000000000 + plain=00000000000000000000000000000000 + cipher=C763754976805CD049B31CAF6350FDF0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=1DF9B79A18197641C18141D0F20BABE7 + Iterated 1000 times=B75C52BAA33E51C6D2F95EDBF082FA69 + +Set 1, vector# 38: + key=00000000020000000000000000000000 + plain=00000000000000000000000000000000 + cipher=EF4FC8D461098233D4C66C2DF58FE86D + decrypted=00000000000000000000000000000000 + Iterated 100 times=056B8B54DA03D74D0CE56CF9939BDEA2 + Iterated 1000 times=B7685554A96B3E2C4C54E02BD12E4FD0 + +Set 1, vector# 39: + key=00000000010000000000000000000000 + plain=00000000000000000000000000000000 + cipher=75E889763C4E20D878FA045B28871C67 + decrypted=00000000000000000000000000000000 + Iterated 100 times=F7C0BED206FA23B1CEC6F31FFAB4D97A + Iterated 1000 times=8CA0610417A6DB893E71656F53833210 + +Set 1, vector# 40: + key=00000000008000000000000000000000 + plain=00000000000000000000000000000000 + cipher=7A4C9560D83582ECEFAF05ECDB9140A8 + decrypted=00000000000000000000000000000000 + Iterated 100 times=2F5ECEF5EE74194D78E68DE73E44271D + Iterated 1000 times=169D1E0D48DFFDFE756F5DB5846356B8 + +Set 1, vector# 41: + key=00000000004000000000000000000000 + plain=00000000000000000000000000000000 + cipher=37ADDBBF952DB7E903C504E47F92338F + decrypted=00000000000000000000000000000000 + Iterated 100 times=4D3EA9FCAC722B7FED0C0D37563DC050 + Iterated 1000 times=5A0B6EBA4D632A5B53DE83037728AAA1 + +Set 1, vector# 42: + key=00000000002000000000000000000000 + plain=00000000000000000000000000000000 + cipher=7A8853B86D6167695112AF2699402467 + decrypted=00000000000000000000000000000000 + Iterated 100 times=DF870A26EC3FD549AE73FFFF4A02E69F + Iterated 1000 times=6AC748B65AED85C435DEE9642749AB74 + +Set 1, vector# 43: + key=00000000001000000000000000000000 + plain=00000000000000000000000000000000 + cipher=5D93F544B8BC44ABDBCB20D8A44AF278 + decrypted=00000000000000000000000000000000 + Iterated 100 times=DA796A3375E1AC8CEE34BFABEEAA1B89 + Iterated 1000 times=D7571E54CFA3F65A2BA0B42D9367D52B + +Set 1, vector# 44: + key=00000000000800000000000000000000 + plain=00000000000000000000000000000000 + cipher=D6B58D2C1065AAC38B39654C9FBEBBF3 + decrypted=00000000000000000000000000000000 + Iterated 100 times=366FBEBB88C0595E710C9ECB71DEA4B7 + Iterated 1000 times=90AA7EF96FB0439C0046F0990BCA17CA + +Set 1, vector# 45: + key=00000000000400000000000000000000 + plain=00000000000000000000000000000000 + cipher=EBAC69254540ACF4085F966832AD189C + decrypted=00000000000000000000000000000000 + Iterated 100 times=505ADE9ADF233CEE327D1B0AA1E45E35 + Iterated 1000 times=69B0D94BDEF8BB6AA625E2251A0E9666 + +Set 1, vector# 46: + key=00000000000200000000000000000000 + plain=00000000000000000000000000000000 + cipher=58A36E2F7417C080233932C3CEE9AB5B + decrypted=00000000000000000000000000000000 + Iterated 100 times=1FE99B476643AC48EC2099819ABA622E + Iterated 1000 times=406C43E3007DC60ECFC49A1A90D6A75A + +Set 1, vector# 47: + key=00000000000100000000000000000000 + plain=00000000000000000000000000000000 + cipher=BA6EE282C5E0BAD46DF4A43B31632852 + decrypted=00000000000000000000000000000000 + Iterated 100 times=EDB78C3B73B2C8BFFAB3443F14731533 + Iterated 1000 times=C951AA13904ED4EBD91C7BE9D80BA619 + +Set 1, vector# 48: + key=00000000000080000000000000000000 + plain=00000000000000000000000000000000 + cipher=7D3699224EBB2E6F63C0D209D987A656 + decrypted=00000000000000000000000000000000 + Iterated 100 times=86237BA991E3FBD8F607CAE19D42441A + Iterated 1000 times=2126EF1A331663954029AD5F2244DCD8 + +Set 1, vector# 49: + key=00000000000040000000000000000000 + plain=00000000000000000000000000000000 + cipher=6732A582BB961FEBB3E4F4C774699BD1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=6F645CF3BA1202B03848586C0C5C9020 + Iterated 1000 times=B0A23EAD564E696CE42178A4AAA7E50D + +Set 1, vector# 50: + key=00000000000020000000000000000000 + plain=00000000000000000000000000000000 + cipher=036F35C25274AE7B8CE5A9EE19EF0664 + decrypted=00000000000000000000000000000000 + Iterated 100 times=0FDFBBA7DCFA82004EB41FC493E423BE + Iterated 1000 times=3A4F86924644F02C74BFEAD5DC2298EE + +Set 1, vector# 51: + key=00000000000010000000000000000000 + plain=00000000000000000000000000000000 + cipher=44A588713F8CD45E3FF2247CC4CCF2A0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=3ABC0D9B39E0DF0EC50A71CB7AD13AB2 + Iterated 1000 times=1CC787ED7123C6DB79E45455E845D24C + +Set 1, vector# 52: + key=00000000000008000000000000000000 + plain=00000000000000000000000000000000 + cipher=2998265F16597BEB654085AEA753AA6E + decrypted=00000000000000000000000000000000 + Iterated 100 times=CD1A3A2C4FAC630AEA51A5B63A99BCBC + Iterated 1000 times=E9B72DC02B616A6B7918745723B25A87 + +Set 1, vector# 53: + key=00000000000004000000000000000000 + plain=00000000000000000000000000000000 + cipher=1653081245150F356C8DDF14BF1246AB + decrypted=00000000000000000000000000000000 + Iterated 100 times=1BA0DA946A23E93D062F299B648082DB + Iterated 1000 times=177BE2E71A4941524B1689B00DC73684 + +Set 1, vector# 54: + key=00000000000002000000000000000000 + plain=00000000000000000000000000000000 + cipher=29D9825B1E93220451D83E981788BC1A + decrypted=00000000000000000000000000000000 + Iterated 100 times=40B9584831A85EBA09E8034CD8E3D2B6 + Iterated 1000 times=C1448BD9DCDBBF2ED804975FF0B3367B + +Set 1, vector# 55: + key=00000000000001000000000000000000 + plain=00000000000000000000000000000000 + cipher=D0EE7C4B64AE94C0F4384849B3D2C79E + decrypted=00000000000000000000000000000000 + Iterated 100 times=F7822F3B514E6E979F92F7FC956650DD + Iterated 1000 times=11C3AFBD68955C084E89D71FCDC9F364 + +Set 1, vector# 56: + key=00000000000000800000000000000000 + plain=00000000000000000000000000000000 + cipher=D485A2C96F03AD7B1F5A47DDE182FD24 + decrypted=00000000000000000000000000000000 + Iterated 100 times=8E0B4A90485B0E00E2263CD4CE366F1D + Iterated 1000 times=FFD13A75E1E44BD4F29922BC6266440E + +Set 1, vector# 57: + key=00000000000000400000000000000000 + plain=00000000000000000000000000000000 + cipher=35216124DDFAE6DFC3AA9F2F61263CD6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=306F25684F27323BDD8E5AE1BBEF809C + Iterated 1000 times=0C519C9C5A3FFC65F9E5C35B8974DE31 + +Set 1, vector# 58: + key=00000000000000200000000000000000 + plain=00000000000000000000000000000000 + cipher=4F32E2B88A23204B1D985FC610449F9B + decrypted=00000000000000000000000000000000 + Iterated 100 times=0B9DB331ABCF1E5855A55B895F7FA3A1 + Iterated 1000 times=EF12F6E37AF0D76E69CC5CE767F41FEF + +Set 1, vector# 59: + key=00000000000000100000000000000000 + plain=00000000000000000000000000000000 + cipher=398EB7412842361AF4606A5C93F6ED46 + decrypted=00000000000000000000000000000000 + Iterated 100 times=639A5ADB9EAE0ED116B87A72FBD5EBC4 + Iterated 1000 times=43EE05243A6D4A493884BB30BB954C5A + +Set 1, vector# 60: + key=00000000000000080000000000000000 + plain=00000000000000000000000000000000 + cipher=7B1597DCD693E76E96484FEEA1F6AED7 + decrypted=00000000000000000000000000000000 + Iterated 100 times=24BC44C5EE484A944F20DADBA4A8C7F5 + Iterated 1000 times=01C5E8634742BEEE7780428645338741 + +Set 1, vector# 61: + key=00000000000000040000000000000000 + plain=00000000000000000000000000000000 + cipher=149A486757759D2C8657F07C5280D583 + decrypted=00000000000000000000000000000000 + Iterated 100 times=633AC2F711F11699642B014FD0CBF415 + Iterated 1000 times=0400BA9F5A0F97A9E0116617BB93ECEA + +Set 1, vector# 62: + key=00000000000000020000000000000000 + plain=00000000000000000000000000000000 + cipher=2D8DD59D3FC630389E5048C830990039 + decrypted=00000000000000000000000000000000 + Iterated 100 times=DE4A1C1EC6FFFDB1B576428664C6E94D + Iterated 1000 times=D1ABCD53705C56713209B66B8F5E5B3F + +Set 1, vector# 63: + key=00000000000000010000000000000000 + plain=00000000000000000000000000000000 + cipher=AA3F3F2D7728FFEB96BD67DE0D74C4F6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=B46D68F53D2D4C8B39B70125A7EBC428 + Iterated 1000 times=1B3D8B38023B34C4D9CF8702CEA11636 + +Set 1, vector# 64: + key=00000000000000008000000000000000 + plain=00000000000000000000000000000000 + cipher=A601E173BD371115822BAEB670126225 + decrypted=00000000000000000000000000000000 + Iterated 100 times=1FBDF7F3AE83F22BA876DA8446D0EC0D + Iterated 1000 times=6B7A3C36A2FFBDC9CEB7FEE066032CAE + +Set 1, vector# 65: + key=00000000000000004000000000000000 + plain=00000000000000000000000000000000 + cipher=1701015803D6D584628AC35BBE9E7DB7 + decrypted=00000000000000000000000000000000 + Iterated 100 times=37E15779651CF9DBCB32B47149E9CA64 + Iterated 1000 times=51786EC1492920DE805B4A20B73E8E3F + +Set 1, vector# 66: + key=00000000000000002000000000000000 + plain=00000000000000000000000000000000 + cipher=0918562B019733C42E68B17AA9AA9E13 + decrypted=00000000000000000000000000000000 + Iterated 100 times=51B17FF49A82BF8EC94725703EFA6FC3 + Iterated 1000 times=E7F5FE41EFEEC12BDF78F582ACB6351A + +Set 1, vector# 67: + key=00000000000000001000000000000000 + plain=00000000000000000000000000000000 + cipher=397B09AB4F5C5A248FF36C36279365EA + decrypted=00000000000000000000000000000000 + Iterated 100 times=1DC4E8F3653FF80E1D68768C6E872DEA + Iterated 1000 times=5B2ABA90CCDCD424A2211A19699524EE + +Set 1, vector# 68: + key=00000000000000000800000000000000 + plain=00000000000000000000000000000000 + cipher=A831E21F389FD2EDD19F5FAC24AF017E + decrypted=00000000000000000000000000000000 + Iterated 100 times=4AF20A3D31157ABD0CD0F4F7B3058598 + Iterated 1000 times=C0286FFFA24FBDB1DD5E74FE2652E905 + +Set 1, vector# 69: + key=00000000000000000400000000000000 + plain=00000000000000000000000000000000 + cipher=8EA6FB0B5265D4393A5D574F14DC9964 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5D9ECFB3E2E4F2114811201195D236E5 + Iterated 1000 times=26CA5A5C3B125C99278BB50DED602946 + +Set 1, vector# 70: + key=00000000000000000200000000000000 + plain=00000000000000000000000000000000 + cipher=CAAFE47EBBD4233CFEBE7236C2B9177D + decrypted=00000000000000000000000000000000 + Iterated 100 times=925F9FC6A6661E3FDC0CB70B51EDFAE2 + Iterated 1000 times=8B047B0A6B4228487AE20BD9BDA81AA6 + +Set 1, vector# 71: + key=00000000000000000100000000000000 + plain=00000000000000000000000000000000 + cipher=B4EFCA430909FA6AEE1009D228B7AFF1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5FE8F4F043CFF5F1D084B6598FD7BE19 + Iterated 1000 times=A2F8133F86663C640AAFCBDABDAAA44A + +Set 1, vector# 72: + key=00000000000000000080000000000000 + plain=00000000000000000000000000000000 + cipher=11338AF73B8BCD2226DE06406CF29901 + decrypted=00000000000000000000000000000000 + Iterated 100 times=8ADE95FB732D169E041131E150A03589 + Iterated 1000 times=72788074490B489E7FE65EF0CC0B0338 + +Set 1, vector# 73: + key=00000000000000000040000000000000 + plain=00000000000000000000000000000000 + cipher=59D3A2BE499E1CD363EDDCDB4C8E2C3F + decrypted=00000000000000000000000000000000 + Iterated 100 times=5D406E0359B29F9F36EB34357A4E1C24 + Iterated 1000 times=12D00FE2B89069F4416993D733E7C79C + +Set 1, vector# 74: + key=00000000000000000020000000000000 + plain=00000000000000000000000000000000 + cipher=7F701FAED083A9ED758B9611C54AAC3B + decrypted=00000000000000000000000000000000 + Iterated 100 times=E65C643AC83317E5414E444CBB7F126E + Iterated 1000 times=DD20D12BACA7AB11AAB070ECD771D661 + +Set 1, vector# 75: + key=00000000000000000010000000000000 + plain=00000000000000000000000000000000 + cipher=FEB81850462B7DCC2FFEDB15F6F58609 + decrypted=00000000000000000000000000000000 + Iterated 100 times=C3B2F6AE9C3A06DD02F2E85F1DA11737 + Iterated 1000 times=3A15DD98C92A33A073CFAD293AF89660 + +Set 1, vector# 76: + key=00000000000000000008000000000000 + plain=00000000000000000000000000000000 + cipher=93883C2EF7B6CB7BF4A3911AAAC6B0DD + decrypted=00000000000000000000000000000000 + Iterated 100 times=39B750A5046FF14822C4D2F5F99ED7EC + Iterated 1000 times=BF66C6CD44CF4B075D42A6B3075EB45E + +Set 1, vector# 77: + key=00000000000000000004000000000000 + plain=00000000000000000000000000000000 + cipher=9E2F0D795AA56E88F706A88C9F918268 + decrypted=00000000000000000000000000000000 + Iterated 100 times=4B95883AF71FA021F53EEF43C12E3934 + Iterated 1000 times=050F123885C1E09DA72E364E2F4F1C55 + +Set 1, vector# 78: + key=00000000000000000002000000000000 + plain=00000000000000000000000000000000 + cipher=9E97D935D1F7BE36CE19FE82E49C7ED9 + decrypted=00000000000000000000000000000000 + Iterated 100 times=EACFFC71F19583B96D7282E55EFB5345 + Iterated 1000 times=753180B3F11B82498C4A9686DE807E3A + +Set 1, vector# 79: + key=00000000000000000001000000000000 + plain=00000000000000000000000000000000 + cipher=8AB4180F9C8B59DDE97BC1D67674AB59 + decrypted=00000000000000000000000000000000 + Iterated 100 times=677F22F9118E513C77F41F218E3D01F8 + Iterated 1000 times=CD2817E00DE1F15C4CFFF58F937B2817 + +Set 1, vector# 80: + key=00000000000000000000800000000000 + plain=00000000000000000000000000000000 + cipher=AACDF9484335A71B42353806F2920AB5 + decrypted=00000000000000000000000000000000 + Iterated 100 times=8B3CE2460F62F47262B5ACE770368E15 + Iterated 1000 times=39A6B312A3DFC5F6A3B02A19AFBB2B7C + +Set 1, vector# 81: + key=00000000000000000000400000000000 + plain=00000000000000000000000000000000 + cipher=331D3AD70813E768FE2C47664936C281 + decrypted=00000000000000000000000000000000 + Iterated 100 times=D22A814B1C80014C81B56630EC85132B + Iterated 1000 times=E63E9F3F403BD7FB1D6241A1BAC3D36A + +Set 1, vector# 82: + key=00000000000000000000200000000000 + plain=00000000000000000000000000000000 + cipher=4F5C08B2451A1FC38427AA0A28671D18 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5E3A2F632540BD3E551706CC64E5D270 + Iterated 1000 times=2B2DF31BDA45A9451AB608C9B8296EE4 + +Set 1, vector# 83: + key=00000000000000000000100000000000 + plain=00000000000000000000000000000000 + cipher=FF9922E13548CBFDEF9F139C27DCBD29 + decrypted=00000000000000000000000000000000 + Iterated 100 times=84BA27BBF449B6D33A4C5BE394F586CF + Iterated 1000 times=11B3BC4809F286E051175C1924208E3B + +Set 1, vector# 84: + key=00000000000000000000080000000000 + plain=00000000000000000000000000000000 + cipher=8E69CB5CAB7CA3C0AA75CD9C02508E4A + decrypted=00000000000000000000000000000000 + Iterated 100 times=BA94DDD56C7D6D7B41FCAE4AA67602BC + Iterated 1000 times=9E0A723732B681CF5FB98C3AF4539888 + +Set 1, vector# 85: + key=00000000000000000000040000000000 + plain=00000000000000000000000000000000 + cipher=2C81516184192E3AA93AD55B874A21E4 + decrypted=00000000000000000000000000000000 + Iterated 100 times=726AFA01ACA9D308E268B7B1B676CE18 + Iterated 1000 times=15F5671AE33EE4F4A02BE09477A2341D + +Set 1, vector# 86: + key=00000000000000000000020000000000 + plain=00000000000000000000000000000000 + cipher=B06FA0C2FA6E10D38ADB04E3DACD99F7 + decrypted=00000000000000000000000000000000 + Iterated 100 times=507E9ED9493C12D6135C422C82BEBC4A + Iterated 1000 times=01FDC4971AD1B590D458B0028D667EB7 + +Set 1, vector# 87: + key=00000000000000000000010000000000 + plain=00000000000000000000000000000000 + cipher=4630F1952B2A4C147DA5752E0646E62A + decrypted=00000000000000000000000000000000 + Iterated 100 times=B1596DE4021A7EEDAC07B3DC1797ACD2 + Iterated 1000 times=20270F32F3E52C4EF28F1E3E5DCCE891 + +Set 1, vector# 88: + key=00000000000000000000008000000000 + plain=00000000000000000000000000000000 + cipher=C2658CAEDCDA90D172102494EFA618A6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=9DB1CD9739433FF203FF2845E6B21199 + Iterated 1000 times=FA5A3C3C4D4EFCFCE4D8EDD9C13C5D8C + +Set 1, vector# 89: + key=00000000000000000000004000000000 + plain=00000000000000000000000000000000 + cipher=EA556A22FFE6D02ED2196BB4DF563CE5 + decrypted=00000000000000000000000000000000 + Iterated 100 times=174380C4D15B7D69684DEB897CC26D8A + Iterated 1000 times=95DA38B4C05B466476A5EA460943BE4C + +Set 1, vector# 90: + key=00000000000000000000002000000000 + plain=00000000000000000000000000000000 + cipher=5C4D5F74990828AAE9D71549FB157698 + decrypted=00000000000000000000000000000000 + Iterated 100 times=9A95C83F546E7DCEC9A5A268CED8C1F2 + Iterated 1000 times=C134A9178C92DF918DFF0C55487105BB + +Set 1, vector# 91: + key=00000000000000000000001000000000 + plain=00000000000000000000000000000000 + cipher=43E22870B11DEBBA1818C799CCBCD767 + decrypted=00000000000000000000000000000000 + Iterated 100 times=4694D1AEB4C51B872A8FD9212309BA50 + Iterated 1000 times=743D17E9DE78332AC90AD8CADB31B1DF + +Set 1, vector# 92: + key=00000000000000000000000800000000 + plain=00000000000000000000000000000000 + cipher=E1A8A03A24ABA3D40B52C125A78CF1F4 + decrypted=00000000000000000000000000000000 + Iterated 100 times=89216A81A9A2179E2C5A463DEEB54CC6 + Iterated 1000 times=6A4B75C46FB4FADF0DE367FB5764B9E7 + +Set 1, vector# 93: + key=00000000000000000000000400000000 + plain=00000000000000000000000000000000 + cipher=5E9559C9EE9D47998D4819598D804E57 + decrypted=00000000000000000000000000000000 + Iterated 100 times=7C99FA62C4C7B0A3E7FD3C706F9ADEB2 + Iterated 1000 times=B7DA1C50497E67FBAE70EC482246AC6A + +Set 1, vector# 94: + key=00000000000000000000000200000000 + plain=00000000000000000000000000000000 + cipher=1C3FC0D6CA083CB971776AAF4819899C + decrypted=00000000000000000000000000000000 + Iterated 100 times=B71DF4B257808AA644C027240B9B8E95 + Iterated 1000 times=DC764468F2ADDB5C202BF85F20BD4441 + +Set 1, vector# 95: + key=00000000000000000000000100000000 + plain=00000000000000000000000000000000 + cipher=C60B5CA54CF729F60801B9719E7181E1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=67103E31453EB83960303B2E1C19D05D + Iterated 1000 times=44F7E4B1F370C5600BB1A040121C13CA + +Set 1, vector# 96: + key=00000000000000000000000080000000 + plain=00000000000000000000000000000000 + cipher=8705BB458DF2625CA9D9EC6CFE684A7C + decrypted=00000000000000000000000000000000 + Iterated 100 times=069B0DF1CB69CA7F22735A964E698663 + Iterated 1000 times=BAB50DDA46FCC2ED79994EEB970BC461 + +Set 1, vector# 97: + key=00000000000000000000000040000000 + plain=00000000000000000000000000000000 + cipher=DBDAB90D3FD47913F4A3649FFB923AFB + decrypted=00000000000000000000000000000000 + Iterated 100 times=B572869889BA1AD658D4305777B89947 + Iterated 1000 times=A659F4E194B156D8E36000A1D92409D5 + +Set 1, vector# 98: + key=00000000000000000000000020000000 + plain=00000000000000000000000000000000 + cipher=D949357B539FE68C09EE72FC333FD319 + decrypted=00000000000000000000000000000000 + Iterated 100 times=B904AD6830247D2AFFEC5DD33C327B21 + Iterated 1000 times=1BBD9DBD312821F9EC5F00993D82ABFD + +Set 1, vector# 99: + key=00000000000000000000000010000000 + plain=00000000000000000000000000000000 + cipher=B2A66542C5CC675A2CB52B73639C22FA + decrypted=00000000000000000000000000000000 + Iterated 100 times=F2287C9CB1D46B4FEC78C17C29302042 + Iterated 1000 times=527932C1A0B8DE092F476BE6018C7DCF + +Set 1, vector#100: + key=00000000000000000000000008000000 + plain=00000000000000000000000000000000 + cipher=2E903BDE9B022338D7B9A9099B340F74 + decrypted=00000000000000000000000000000000 + Iterated 100 times=F32CAF665BBCD1ECE1A41AB65B58EE02 + Iterated 1000 times=593D1CA2B23FAF0F35BA12841929764B + +Set 1, vector#101: + key=00000000000000000000000004000000 + plain=00000000000000000000000000000000 + cipher=8256727AA847BD17E4C1BCBE6514D678 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5C7C979F4E3967024E618359DA1C1779 + Iterated 1000 times=1383A65724881AA1E73FF9976CAD0C5C + +Set 1, vector#102: + key=00000000000000000000000002000000 + plain=00000000000000000000000000000000 + cipher=B62AC0C7FD9897B2B9FFD568D81BF124 + decrypted=00000000000000000000000000000000 + Iterated 100 times=64971A4CB365D08430BC66245B3F45C4 + Iterated 1000 times=1E4848D1DC479FA5434DFD17332CD4CE + +Set 1, vector#103: + key=00000000000000000000000001000000 + plain=00000000000000000000000000000000 + cipher=8E8259C955B547B3DC3BA3727B2935C4 + decrypted=00000000000000000000000000000000 + Iterated 100 times=25550881E3B7041618E54703EF193405 + Iterated 1000 times=0B34FF8FE58AEAC6E318F0E01CA314B3 + +Set 1, vector#104: + key=00000000000000000000000000800000 + plain=00000000000000000000000000000000 + cipher=EE2D0074FFECA1C0BF29A430CF2CE1B5 + decrypted=00000000000000000000000000000000 + Iterated 100 times=57201F18D7E68EAC6A6D150C7D4BCFB1 + Iterated 1000 times=6FA1735B57889097AAA97FC8701B9C2A + +Set 1, vector#105: + key=00000000000000000000000000400000 + plain=00000000000000000000000000000000 + cipher=AD4F2F20FA15D5B07D7ECDCDDCC028D2 + decrypted=00000000000000000000000000000000 + Iterated 100 times=D1DE7EDDF4B6DCE52B45AD47B678A918 + Iterated 1000 times=1F5BAF72B8E2536AE8F98A7D1D384E9C + +Set 1, vector#106: + key=00000000000000000000000000200000 + plain=00000000000000000000000000000000 + cipher=06505906ED369C964E2CC7C2BA1B4E1D + decrypted=00000000000000000000000000000000 + Iterated 100 times=CB0DF20B71B5A46740CCD2233A774725 + Iterated 1000 times=77E831413D470FCC6EBEFC2159659C0E + +Set 1, vector#107: + key=00000000000000000000000000100000 + plain=00000000000000000000000000000000 + cipher=8DB3DDCCB6227CC15405C9F76F4006DB + decrypted=00000000000000000000000000000000 + Iterated 100 times=55CC62E668B3E2AB902D2F841AEAD3FA + Iterated 1000 times=0E9A1AD79FD2D441392A693DE432DBCF + +Set 1, vector#108: + key=00000000000000000000000000080000 + plain=00000000000000000000000000000000 + cipher=B4EDB294983BA33063A2059E4145A945 + decrypted=00000000000000000000000000000000 + Iterated 100 times=1B37F3C0A401BD456D65375C5D10A983 + Iterated 1000 times=FDFF261253A5292B76150DCF471F6E9C + +Set 1, vector#109: + key=00000000000000000000000000040000 + plain=00000000000000000000000000000000 + cipher=C25091C74C0BD1C6B586F10C94603874 + decrypted=00000000000000000000000000000000 + Iterated 100 times=45EA8D93DF03B5CA41AF8BD1D9411896 + Iterated 1000 times=7F46D59D078F2792117C256E5A70B63B + +Set 1, vector#110: + key=00000000000000000000000000020000 + plain=00000000000000000000000000000000 + cipher=265E4B508591D90FD53F33DFF8C874D3 + decrypted=00000000000000000000000000000000 + Iterated 100 times=9601B7E82B31495273C20C1F93A3B140 + Iterated 1000 times=92C0E53CA9D2AAF159685341468A2B04 + +Set 1, vector#111: + key=00000000000000000000000000010000 + plain=00000000000000000000000000000000 + cipher=B0966F62E9E97D2C087BDDFBF6335CF4 + decrypted=00000000000000000000000000000000 + Iterated 100 times=2E77A9EA1B5D94EE1953C3AB4D6463B7 + Iterated 1000 times=F02CFC2165102DBA8D781BE3FF948DE2 + +Set 1, vector#112: + key=00000000000000000000000000008000 + plain=00000000000000000000000000000000 + cipher=715811861B5D036EA41746B169D066E5 + decrypted=00000000000000000000000000000000 + Iterated 100 times=751B9A27A650ACBFDFC279EB5A05AB14 + Iterated 1000 times=B2F96858CD840CA336B1541ADD0792F8 + +Set 1, vector#113: + key=00000000000000000000000000004000 + plain=00000000000000000000000000000000 + cipher=7A3FECE75EAC1822EAC8F62292419DCC + decrypted=00000000000000000000000000000000 + Iterated 100 times=7306BA6935267A84B1F8557E2584DA63 + Iterated 1000 times=5E5F41A3CFD11F833B4A2F009DF64F8A + +Set 1, vector#114: + key=00000000000000000000000000002000 + plain=00000000000000000000000000000000 + cipher=F8EF7F7464CCCB6348E5B7FDB30CC645 + decrypted=00000000000000000000000000000000 + Iterated 100 times=DDA5AB03372797A4BE3E498ED2B77FE9 + Iterated 1000 times=A812534431111E50711D21D2748777A7 + +Set 1, vector#115: + key=00000000000000000000000000001000 + plain=00000000000000000000000000000000 + cipher=19FB721EBE071C6D0AB61278125ADBCC + decrypted=00000000000000000000000000000000 + Iterated 100 times=9DD13525106D10711BE311FE2C1EADD5 + Iterated 1000 times=406C12DF892C9DC4E8E10ED0C7A5145C + +Set 1, vector#116: + key=00000000000000000000000000000800 + plain=00000000000000000000000000000000 + cipher=A32F06337B1A2F8923D502D19C68A942 + decrypted=00000000000000000000000000000000 + Iterated 100 times=0F11B524078FB8B813642D80FF729082 + Iterated 1000 times=896B3A5A34B27BD8F635F0BA0299FDFF + +Set 1, vector#117: + key=00000000000000000000000000000400 + plain=00000000000000000000000000000000 + cipher=4CD0C1761CD715A7C5042D527EB7E1BA + decrypted=00000000000000000000000000000000 + Iterated 100 times=7B35098F8474369B605D30403533D0A7 + Iterated 1000 times=633670867C79D5C4A71D388D945FE9E6 + +Set 1, vector#118: + key=00000000000000000000000000000200 + plain=00000000000000000000000000000000 + cipher=55087C17E085647D4ED951F95E945704 + decrypted=00000000000000000000000000000000 + Iterated 100 times=167AEF6D88289E5FF91C881649572997 + Iterated 1000 times=E33A447444FC80CDDE649EE7122789EC + +Set 1, vector#119: + key=00000000000000000000000000000100 + plain=00000000000000000000000000000000 + cipher=BCB7B110F08C25378807ABA3914686EC + decrypted=00000000000000000000000000000000 + Iterated 100 times=8063660A8FC76C247728C5611B79A0A1 + Iterated 1000 times=3FBF9B2CC32C55B2CDF48AFE45392A87 + +Set 1, vector#120: + key=00000000000000000000000000000080 + plain=00000000000000000000000000000000 + cipher=5B42CBEBD5BB087770C8BF5D4EE8B7E6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=F2C0EE5F7E2F757EC5377190CF783A21 + Iterated 1000 times=641E0BC242E290FC09D25A1A5F2DC0B2 + +Set 1, vector#121: + key=00000000000000000000000000000040 + plain=00000000000000000000000000000000 + cipher=9F39E4BB2AE0601A0A6F720E8CCB9D27 + decrypted=00000000000000000000000000000000 + Iterated 100 times=CBCD2659B3005433381E4C4C953E6734 + Iterated 1000 times=91471134BDEC965AEE577AF6749DBC8F + +Set 1, vector#122: + key=00000000000000000000000000000020 + plain=00000000000000000000000000000000 + cipher=989C0F4D84EFA8F68C77FC17FA7BECAD + decrypted=00000000000000000000000000000000 + Iterated 100 times=10DEE994E0FC71150CB9564047EB9D21 + Iterated 1000 times=A1A8CF060FD1D4C638A8FE5430721899 + +Set 1, vector#123: + key=00000000000000000000000000000010 + plain=00000000000000000000000000000000 + cipher=3F22A4F1D2F55152C41DFA8741C28CD6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=00170E65AAC3D07C826826A0EC13818C + Iterated 1000 times=174893B907DA148FC2EEA83050A484EF + +Set 1, vector#124: + key=00000000000000000000000000000008 + plain=00000000000000000000000000000000 + cipher=24F878C4183E64B6441D8A45AAAE91B7 + decrypted=00000000000000000000000000000000 + Iterated 100 times=176EC1718893A2FC8FCBFD8959D753FA + Iterated 1000 times=BB431CC8D0BBAC84164CE1CE016A295E + +Set 1, vector#125: + key=00000000000000000000000000000004 + plain=00000000000000000000000000000000 + cipher=BB017266799362FFC8A61E8176E85DD2 + decrypted=00000000000000000000000000000000 + Iterated 100 times=6EE978F9F347ABA757447393CFCCC199 + Iterated 1000 times=178FB7DE1C4DC35EFEDCCB441578F04A + +Set 1, vector#126: + key=00000000000000000000000000000002 + plain=00000000000000000000000000000000 + cipher=3CFBEF3A607DCF5F85010ADB89715927 + decrypted=00000000000000000000000000000000 + Iterated 100 times=6C2CA2705A30246D13E9FD48D5CD637B + Iterated 1000 times=6611ABFDCF209F98EDB1A54CB7FE3DA5 + +Set 1, vector#127: + key=00000000000000000000000000000001 + plain=00000000000000000000000000000000 + cipher=138919FB3443DC23F7CFDEFE483142E1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5CB889158DDFADF068EA0CCFC0A38775 + Iterated 1000 times=F02C40ECECC4F88C0976EF64C2F76792 + +Test vectors -- set 2 +===================== + +Set 2, vector# 0: + key=00000000000000000000000000000000 + plain=80000000000000000000000000000000 + cipher=4D22D709DB6E384F1BA3C059285FE03B + decrypted=80000000000000000000000000000000 + Iterated 100 times=F5821FBE351C56953D05D79CAAAC1D85 + Iterated 1000 times=C613D415F1C26C2E473B265758092740 + +Set 2, vector# 1: + key=00000000000000000000000000000000 + plain=40000000000000000000000000000000 + cipher=C893ACFE88827FFF4B160BE9C2FDDEF0 + decrypted=40000000000000000000000000000000 + Iterated 100 times=1CFA47530BFA6DD97CF3B402F805FA3D + Iterated 1000 times=6B3FA1F6EC85F538F2BC9CD68A15FCE6 + +Set 2, vector# 2: + key=00000000000000000000000000000000 + plain=20000000000000000000000000000000 + cipher=911AB092BFF5CA615DA511CD04D1F08A + decrypted=20000000000000000000000000000000 + Iterated 100 times=F8C4A978AD142129866BA7396E8C264C + Iterated 1000 times=4639DC2C205F3298F2197E5C3090DDF0 + +Set 2, vector# 3: + key=00000000000000000000000000000000 + plain=10000000000000000000000000000000 + cipher=BF647045D4DC14F9AA75DE4084EF8003 + decrypted=10000000000000000000000000000000 + Iterated 100 times=112D7E54DE20C94BCB07F46A362FF82B + Iterated 1000 times=3275CF5E822308D8DF85E8B2E19460FB + +Set 2, vector# 4: + key=00000000000000000000000000000000 + plain=08000000000000000000000000000000 + cipher=9CB31A32E38A61183CDD8CD870B40079 + decrypted=08000000000000000000000000000000 + Iterated 100 times=8B1E87BB9ACBDA6EF070387A7F98C315 + Iterated 1000 times=B112E8B77672C79B4B30F10C9A1B4237 + +Set 2, vector# 5: + key=00000000000000000000000000000000 + plain=04000000000000000000000000000000 + cipher=D3D3CEA943ECB21797D3F57637714BBB + decrypted=04000000000000000000000000000000 + Iterated 100 times=3D30B140F47816DA4D55EEE6FB1B8DDC + Iterated 1000 times=819A028ADEAC22DACAD0D0800E0F4B07 + +Set 2, vector# 6: + key=00000000000000000000000000000000 + plain=02000000000000000000000000000000 + cipher=A6B72C20578C279A8230FD6D31D0B4CB + decrypted=02000000000000000000000000000000 + Iterated 100 times=E9E961A6AFFAA7B2C0C572DC3017C369 + Iterated 1000 times=137C8FCA8F5ADAE3ABB0E2344C96E70E + +Set 2, vector# 7: + key=00000000000000000000000000000000 + plain=01000000000000000000000000000000 + cipher=9A2422D9B80B809A5D71A7C3947346BC + decrypted=01000000000000000000000000000000 + Iterated 100 times=7EC11C629F448F460EAC6673F7630421 + Iterated 1000 times=46BC21B33E3E646DA8DDC39A8FA6CC31 + +Set 2, vector# 8: + key=00000000000000000000000000000000 + plain=00800000000000000000000000000000 + cipher=3D3360039C505A242AA5406143541FFD + decrypted=00800000000000000000000000000000 + Iterated 100 times=3E951A7F2E96CF9CA99F9814BED42639 + Iterated 1000 times=B1D348496D36878F3707CC280D156ABF + +Set 2, vector# 9: + key=00000000000000000000000000000000 + plain=00400000000000000000000000000000 + cipher=16071BD26F484ED09B6DB51C79F34CA8 + decrypted=00400000000000000000000000000000 + Iterated 100 times=AC56E67CC45BB745CC6B945C0ABB6612 + Iterated 1000 times=3180382D48A4D2E92A7ED160E7ACA692 + +Set 2, vector# 10: + key=00000000000000000000000000000000 + plain=00200000000000000000000000000000 + cipher=CEBF701FED111927D4D3740B53B2270D + decrypted=00200000000000000000000000000000 + Iterated 100 times=AD6A6D19E49138EBC91CE0770F1BA3DF + Iterated 1000 times=D03C6E6491A506A32770FD6E7018C472 + +Set 2, vector# 11: + key=00000000000000000000000000000000 + plain=00100000000000000000000000000000 + cipher=47888A5D9E61EEEE8A14443AF6EBF34B + decrypted=00100000000000000000000000000000 + Iterated 100 times=9A45CB4EF03889B7E9B96DFB25BD9C88 + Iterated 1000 times=C23920CB2CF44664C2D95F01E90436A9 + +Set 2, vector# 12: + key=00000000000000000000000000000000 + plain=00080000000000000000000000000000 + cipher=A5C9D5C7BF753DC9BB2B671314059EC0 + decrypted=00080000000000000000000000000000 + Iterated 100 times=3EBDB3A175A1E41AA36E55B38D9585E1 + Iterated 1000 times=624C31766971CA49414709A747FD7D13 + +Set 2, vector# 13: + key=00000000000000000000000000000000 + plain=00040000000000000000000000000000 + cipher=2F1DC4B30907D6B504526025BFF9393E + decrypted=00040000000000000000000000000000 + Iterated 100 times=CE4B7ED58FF592E951E83E40513E44B9 + Iterated 1000 times=21C80267AA9558345BBB2F71518D90FA + +Set 2, vector# 14: + key=00000000000000000000000000000000 + plain=00020000000000000000000000000000 + cipher=1CB2C4F3B006DDDFE3427DDFD8E3E9BC + decrypted=00020000000000000000000000000000 + Iterated 100 times=7298101A32B819BDB3D70A017A7A5D0F + Iterated 1000 times=6FA2DAD42F4A30139530C6826B5753E8 + +Set 2, vector# 15: + key=00000000000000000000000000000000 + plain=00010000000000000000000000000000 + cipher=F11702EC1E6BB755ABC1D6E8518C2E77 + decrypted=00010000000000000000000000000000 + Iterated 100 times=A5186FD9AD2AA77B803150A8E7740813 + Iterated 1000 times=24A1BDE77C0282D420C30B652426542C + +Set 2, vector# 16: + key=00000000000000000000000000000000 + plain=00008000000000000000000000000000 + cipher=5044C23AFA098D6EE9414F9BA3165FDE + decrypted=00008000000000000000000000000000 + Iterated 100 times=08E2D641AD6CA84A890A88326494AEA0 + Iterated 1000 times=F872A3CDBD6EAFC50E4427C7157A1796 + +Set 2, vector# 17: + key=00000000000000000000000000000000 + plain=00004000000000000000000000000000 + cipher=F794FEDF2A7D9CA48C3D2E6E24E2F42D + decrypted=00004000000000000000000000000000 + Iterated 100 times=C5F710560F512A13F22C52D2E252619E + Iterated 1000 times=A3E9F4F98B410566FD912CF0D6475A32 + +Set 2, vector# 18: + key=00000000000000000000000000000000 + plain=00002000000000000000000000000000 + cipher=EDFBDE9A3598EFF1B80D50362518E0B7 + decrypted=00002000000000000000000000000000 + Iterated 100 times=E10E9AA9019C9B4CF2711431E952EDED + Iterated 1000 times=405896A8794060A2722F28E43765CD0E + +Set 2, vector# 19: + key=00000000000000000000000000000000 + plain=00001000000000000000000000000000 + cipher=C292B456555601FDEF0FF8911B96BADB + decrypted=00001000000000000000000000000000 + Iterated 100 times=2501FB8EFF913F2CD81F0E80F6919F88 + Iterated 1000 times=8EEA68B6D5E5720686A3F22A1F5AD04C + +Set 2, vector# 20: + key=00000000000000000000000000000000 + plain=00000800000000000000000000000000 + cipher=FBE85B4D8AF4A60C34C080CCE05240CF + decrypted=00000800000000000000000000000000 + Iterated 100 times=455D430CA5A1043B9C1901B766493B56 + Iterated 1000 times=AEAA0E35F058779EFA2D39FE65DE869C + +Set 2, vector# 21: + key=00000000000000000000000000000000 + plain=00000400000000000000000000000000 + cipher=913D349D0443ACB492F8B00B91359399 + decrypted=00000400000000000000000000000000 + Iterated 100 times=2B01E8F0520F0FF5C991B75B57BB2FB4 + Iterated 1000 times=29153FFE9EDCCBDAB9644E8EF1560FDB + +Set 2, vector# 22: + key=00000000000000000000000000000000 + plain=00000200000000000000000000000000 + cipher=236A9362603EB3F35C28A154DDA30ACF + decrypted=00000200000000000000000000000000 + Iterated 100 times=FD6B69BB4084E2ADBD3549234170ADDA + Iterated 1000 times=D576EB9F7EFAD1BFC449C000339B5BDE + +Set 2, vector# 23: + key=00000000000000000000000000000000 + plain=00000100000000000000000000000000 + cipher=9974B7BD7FE01E012C4C240303781290 + decrypted=00000100000000000000000000000000 + Iterated 100 times=C888A2A9AB685769A19FA320EF534471 + Iterated 1000 times=B25CDEAFE61B9E6E08883E210881E05D + +Set 2, vector# 24: + key=00000000000000000000000000000000 + plain=00000080000000000000000000000000 + cipher=1DA18A5F7D8C432C2E70094604C70C84 + decrypted=00000080000000000000000000000000 + Iterated 100 times=56DD51526035B76D61FD6123B9A95A7C + Iterated 1000 times=1EF1C00284294E13B2C9941F51C899BF + +Set 2, vector# 25: + key=00000000000000000000000000000000 + plain=00000040000000000000000000000000 + cipher=5A20A0A094E073BEC88EF3CE5673D51D + decrypted=00000040000000000000000000000000 + Iterated 100 times=92CD6689364124E13B706F0B82EC7FC6 + Iterated 1000 times=3D2062008615605705BEAD971E1ACCE4 + +Set 2, vector# 26: + key=00000000000000000000000000000000 + plain=00000020000000000000000000000000 + cipher=A4B27D286FCED908604505AFBE8C124B + decrypted=00000020000000000000000000000000 + Iterated 100 times=0E890F0D6BD69B65A0BE05754B8BED1A + Iterated 1000 times=256FBF8C033B4B5074D4B4CBDE21E74C + +Set 2, vector# 27: + key=00000000000000000000000000000000 + plain=00000010000000000000000000000000 + cipher=A1D352FBF0B9563D06AF4C25382E3438 + decrypted=00000010000000000000000000000000 + Iterated 100 times=FD06C9AC183BA72B1B2057DDC227D97D + Iterated 1000 times=957C9AC0AA9D8AA4E164D36EA9941E85 + +Set 2, vector# 28: + key=00000000000000000000000000000000 + plain=00000008000000000000000000000000 + cipher=98D96CD1520D62AC401DCBBD25EC4EDA + decrypted=00000008000000000000000000000000 + Iterated 100 times=581812B207DA8B01C44B2A5D57EA91B1 + Iterated 1000 times=F73F241D082A8370DF5A1E96C2F0CA96 + +Set 2, vector# 29: + key=00000000000000000000000000000000 + plain=00000004000000000000000000000000 + cipher=9A1CE6C8516E82AC2E9F73B147464361 + decrypted=00000004000000000000000000000000 + Iterated 100 times=91C919405DD1708207F8AD247072E75B + Iterated 1000 times=0C9CE83A783E68D5F51012CE8B03042F + +Set 2, vector# 30: + key=00000000000000000000000000000000 + plain=00000002000000000000000000000000 + cipher=780943DC116D70DF8A04344528A6E014 + decrypted=00000002000000000000000000000000 + Iterated 100 times=B66E1A4438EBB45F60FF6578F8BBC9CF + Iterated 1000 times=730BE3234C529F218903299F38C93B05 + +Set 2, vector# 31: + key=00000000000000000000000000000000 + plain=00000001000000000000000000000000 + cipher=B348A7911B6FAD00AD04B909B61821B9 + decrypted=00000001000000000000000000000000 + Iterated 100 times=ACE95CABF642C63BD90E6E426A8D3A3A + Iterated 1000 times=1AFF74E89F0DA1CB4DEC694C47956751 + +Set 2, vector# 32: + key=00000000000000000000000000000000 + plain=00000000800000000000000000000000 + cipher=C6F3AA64FD6288A3E680041336DE4412 + decrypted=00000000800000000000000000000000 + Iterated 100 times=E331DEB86DAF5D93A888A0DE827CC622 + Iterated 1000 times=DD4AFF0E6B6D4766D1DA71762CF852FB + +Set 2, vector# 33: + key=00000000000000000000000000000000 + plain=00000000400000000000000000000000 + cipher=64F3413C9EF24B9F4AC93BCB760843C6 + decrypted=00000000400000000000000000000000 + Iterated 100 times=23D7DBDB560EF0B0189787F961FBCCB7 + Iterated 1000 times=F13209AC87F124DFDCE41AADC5549E6C + +Set 2, vector# 34: + key=00000000000000000000000000000000 + plain=00000000200000000000000000000000 + cipher=27E155B21935452FCAD213A7C98D1685 + decrypted=00000000200000000000000000000000 + Iterated 100 times=E390BF6827B414C1031DF7BE29E77071 + Iterated 1000 times=6F0CB05832FAEB1798EC7E277E2FD31B + +Set 2, vector# 35: + key=00000000000000000000000000000000 + plain=00000000100000000000000000000000 + cipher=8892AF990D1FB66C3D5B2328566F1BD7 + decrypted=00000000100000000000000000000000 + Iterated 100 times=7E1B20DB87A9CA1A0E437E5E9ACC6DEB + Iterated 1000 times=33C603A344CD0A36BCD00662AB7137AB + +Set 2, vector# 36: + key=00000000000000000000000000000000 + plain=00000000080000000000000000000000 + cipher=5373D258C3F7EF63C90A893C3D21D031 + decrypted=00000000080000000000000000000000 + Iterated 100 times=FCF1EB33686732A6F2F8CC77419EE9F0 + Iterated 1000 times=ADDBA10FEBE92D501165FF5D78635B5B + +Set 2, vector# 37: + key=00000000000000000000000000000000 + plain=00000000040000000000000000000000 + cipher=D88A3F65A9512A68C9EB295FB7CCEC33 + decrypted=00000000040000000000000000000000 + Iterated 100 times=464E02D165FD78A004BA7A3F994B4FD2 + Iterated 1000 times=784B63C9A5AD732756713A94C881E5AC + +Set 2, vector# 38: + key=00000000000000000000000000000000 + plain=00000000020000000000000000000000 + cipher=88E9C06F5969AA944455AA2D9DB4FFD5 + decrypted=00000000020000000000000000000000 + Iterated 100 times=3798E8C4E978D4D556F8EB6E0EB158AF + Iterated 1000 times=0207370A358812592327B909D99214B2 + +Set 2, vector# 39: + key=00000000000000000000000000000000 + plain=00000000010000000000000000000000 + cipher=46E85187CDB27D5B74883208187C947D + decrypted=00000000010000000000000000000000 + Iterated 100 times=ACE4017E99D2CEDA101B4C6E3F8BA93A + Iterated 1000 times=6D87654D286F6AC53821B8C7ECF16696 + +Set 2, vector# 40: + key=00000000000000000000000000000000 + plain=00000000008000000000000000000000 + cipher=45462128DE02E2648A8116D24F1D18CB + decrypted=00000000008000000000000000000000 + Iterated 100 times=0D21984296E3987FBE6614029E08D942 + Iterated 1000 times=8E45EB342DA7176A15524EDC9416178D + +Set 2, vector# 41: + key=00000000000000000000000000000000 + plain=00000000004000000000000000000000 + cipher=C91BC05A52C9A88F143A8CC09D0CB9B2 + decrypted=00000000004000000000000000000000 + Iterated 100 times=8E784C86D78DAF4A5075AA64384B6BA6 + Iterated 1000 times=D9179C9F7DF139F248ACB0924DEBE919 + +Set 2, vector# 42: + key=00000000000000000000000000000000 + plain=00000000002000000000000000000000 + cipher=BB186278604818F46CE86D032ECD06B2 + decrypted=00000000002000000000000000000000 + Iterated 100 times=5497B243B29CFFD88794F36BE5E28E6C + Iterated 1000 times=541E59BAA5AAB85D25955F801341DB96 + +Set 2, vector# 43: + key=00000000000000000000000000000000 + plain=00000000001000000000000000000000 + cipher=2AF2369FD91E44EDF334517A26BB48B9 + decrypted=00000000001000000000000000000000 + Iterated 100 times=4B6D68CED67FDEFA934701C6033EB809 + Iterated 1000 times=7DBD25324AAA918E402457DCF140BE79 + +Set 2, vector# 44: + key=00000000000000000000000000000000 + plain=00000000000800000000000000000000 + cipher=2754A07FB52E606766532A2A0D0325D2 + decrypted=00000000000800000000000000000000 + Iterated 100 times=9E96E59AD3FC8EDACE3C9E0A5424408B + Iterated 1000 times=58ECD235569A91C070F582DC82EBCAA4 + +Set 2, vector# 45: + key=00000000000000000000000000000000 + plain=00000000000400000000000000000000 + cipher=311FB908A2E9AB35CE45B6B3AC880181 + decrypted=00000000000400000000000000000000 + Iterated 100 times=EBA5347D72F7899A157AA48E6195EC1A + Iterated 1000 times=013F75A14BDB22FC1A733D8C2AFFACEA + +Set 2, vector# 46: + key=00000000000000000000000000000000 + plain=00000000000200000000000000000000 + cipher=0EC15EEB966CC991FD9B60AAA964E613 + decrypted=00000000000200000000000000000000 + Iterated 100 times=19CB96A8E24019F02F30C7E7986968F9 + Iterated 1000 times=514A1850DBB26C46DCF18704737341EE + +Set 2, vector# 47: + key=00000000000000000000000000000000 + plain=00000000000100000000000000000000 + cipher=2F13C53A5CBDD6FE76787A85186B13D3 + decrypted=00000000000100000000000000000000 + Iterated 100 times=CB91E658F4F25663EC9179B603F1ED73 + Iterated 1000 times=77EFB456630AA8CF9E2F83ECA1406C81 + +Set 2, vector# 48: + key=00000000000000000000000000000000 + plain=00000000000080000000000000000000 + cipher=A9BF7CE64EF6779EF8839A6B77BB45BB + decrypted=00000000000080000000000000000000 + Iterated 100 times=0C6E0B2880DF6EF5B30BF22294EF6076 + Iterated 1000 times=A5E678B1FAE6AD1405DBDD068009CC63 + +Set 2, vector# 49: + key=00000000000000000000000000000000 + plain=00000000000040000000000000000000 + cipher=A970E777499B8A4081FD6605C530F315 + decrypted=00000000000040000000000000000000 + Iterated 100 times=AC3704E18412079F15F4AD8377A18747 + Iterated 1000 times=0BF6328915F0EA746730C95103484349 + +Set 2, vector# 50: + key=00000000000000000000000000000000 + plain=00000000000020000000000000000000 + cipher=3CB27F4AEF917191C774AA69E278BFCD + decrypted=00000000000020000000000000000000 + Iterated 100 times=91C8E40B787BCAA3EF6894AFE0650B95 + Iterated 1000 times=417C57E62F8B4745E31BD0645483EAEE + +Set 2, vector# 51: + key=00000000000000000000000000000000 + plain=00000000000010000000000000000000 + cipher=E2C07471766A7A8DDBCAE703E72BDFD3 + decrypted=00000000000010000000000000000000 + Iterated 100 times=BF65CE4B40C96EC449D5BEB66A11C81E + Iterated 1000 times=3F2E295F1EEEED0B327CB72DF1E0B08C + +Set 2, vector# 52: + key=00000000000000000000000000000000 + plain=00000000000008000000000000000000 + cipher=331AF32116F9A0BF4A687B980F57DDB4 + decrypted=00000000000008000000000000000000 + Iterated 100 times=46C74BD05A14B61E08065971476ABBEB + Iterated 1000 times=74236DF2DA072406754EAF1651BB78EB + +Set 2, vector# 53: + key=00000000000000000000000000000000 + plain=00000000000004000000000000000000 + cipher=BA4E405F30B15A6D0017F729CB335CD4 + decrypted=00000000000004000000000000000000 + Iterated 100 times=0FBF7D341DE49E5B643D50C73850F0BF + Iterated 1000 times=EBD94E5797A884A022D94D032C485E69 + +Set 2, vector# 54: + key=00000000000000000000000000000000 + plain=00000000000002000000000000000000 + cipher=0850DBCFC3D690430E752F5895C86325 + decrypted=00000000000002000000000000000000 + Iterated 100 times=85B5CBB6A51DDCE9EDCBE7984619F1E0 + Iterated 1000 times=CDE9AE267C3C6BB37902CEFA0E5E3DD7 + +Set 2, vector# 55: + key=00000000000000000000000000000000 + plain=00000000000001000000000000000000 + cipher=E29479C2E79FCC05FBFDF8C974B45880 + decrypted=00000000000001000000000000000000 + Iterated 100 times=3AD676121B291A81DC1B0C87659A6551 + Iterated 1000 times=6321785E5D312D422C9B0A5B442C72A4 + +Set 2, vector# 56: + key=00000000000000000000000000000000 + plain=00000000000000800000000000000000 + cipher=F4FD39784FB07694B98D28A20A9471BD + decrypted=00000000000000800000000000000000 + Iterated 100 times=A5ADFDA4B5F6331C30550A0DE826FDE7 + Iterated 1000 times=A5DCF2D9704E0C6FC88E61CBAAA5D06F + +Set 2, vector# 57: + key=00000000000000000000000000000000 + plain=00000000000000400000000000000000 + cipher=CBD6EF27040C4F4B6517440E01C2ABF4 + decrypted=00000000000000400000000000000000 + Iterated 100 times=E58A366411B3A26DF393CAC9C4DEA034 + Iterated 1000 times=C0C37AC21053A4EAC938FCDB1ABD7EDE + +Set 2, vector# 58: + key=00000000000000000000000000000000 + plain=00000000000000200000000000000000 + cipher=D66F885CAA12F5B392B157513494FCD7 + decrypted=00000000000000200000000000000000 + Iterated 100 times=710A996A123F09ED85C076A4BEC27BD2 + Iterated 1000 times=5ECAF0FE8DBEE6A5C095687A5A09FB4D + +Set 2, vector# 59: + key=00000000000000000000000000000000 + plain=00000000000000100000000000000000 + cipher=742AADB93F1F633A2C4BF6F8CB87191B + decrypted=00000000000000100000000000000000 + Iterated 100 times=8044E205B85E4E4838129479AFF8FA13 + Iterated 1000 times=FF7C6F2565D30E55402B1B9EB359CAFA + +Set 2, vector# 60: + key=00000000000000000000000000000000 + plain=00000000000000080000000000000000 + cipher=C2C92D0E4A3B015077C70219DDA3446D + decrypted=00000000000000080000000000000000 + Iterated 100 times=B0382F4612A3482346E1A527D5F43C3E + Iterated 1000 times=A37F9A4A2689640BC31F9CEC87296D97 + +Set 2, vector# 61: + key=00000000000000000000000000000000 + plain=00000000000000040000000000000000 + cipher=62C32343B70530638240A76AECFE9DA6 + decrypted=00000000000000040000000000000000 + Iterated 100 times=F32AA141EAEED4474B76C8081A8D5DAB + Iterated 1000 times=5A1F6CA5C8D521413BCB503062528C68 + +Set 2, vector# 62: + key=00000000000000000000000000000000 + plain=00000000000000020000000000000000 + cipher=4BBFE5BB00F926974E8435BC6EE30ED7 + decrypted=00000000000000020000000000000000 + Iterated 100 times=27F593A0C107CA827C28A741A728F894 + Iterated 1000 times=F0D988E1893DB84BF12466B34574EE82 + +Set 2, vector# 63: + key=00000000000000000000000000000000 + plain=00000000000000010000000000000000 + cipher=F1804D3726193872B8BD1032E6EE850D + decrypted=00000000000000010000000000000000 + Iterated 100 times=D483E3D956C2648D3699C4A8885F2474 + Iterated 1000 times=678F18D243C9AE976E9A6D87AEE11B19 + +Set 2, vector# 64: + key=00000000000000000000000000000000 + plain=00000000000000008000000000000000 + cipher=60DAC14FC8ECC2AAB3D1F8937C63B416 + decrypted=00000000000000008000000000000000 + Iterated 100 times=5A965A253384D61FB64602B348E16F1C + Iterated 1000 times=4B936A3846DE05C4F60205697DFC14FF + +Set 2, vector# 65: + key=00000000000000000000000000000000 + plain=00000000000000004000000000000000 + cipher=1D54D113053C3CF4986228037B9A341F + decrypted=00000000000000004000000000000000 + Iterated 100 times=685AC0A13CCA8502476B70DEFD3233A2 + Iterated 1000 times=F5C9941F0C9C0DA66D94EDD821750599 + +Set 2, vector# 66: + key=00000000000000000000000000000000 + plain=00000000000000002000000000000000 + cipher=20FD1F6087C763CE0A6CFB025DC1C888 + decrypted=00000000000000002000000000000000 + Iterated 100 times=D6EC184385586E7A26AA385993521AC0 + Iterated 1000 times=023741C8A137D1AE2BE804A0CDB89FC3 + +Set 2, vector# 67: + key=00000000000000000000000000000000 + plain=00000000000000001000000000000000 + cipher=4B1AF772FE12F25A7FD5EB794350F3F2 + decrypted=00000000000000001000000000000000 + Iterated 100 times=00AE09A4C98B6CBF4436DC946ED2899D + Iterated 1000 times=195772CE6EFC117CA90180D5DF40C4CB + +Set 2, vector# 68: + key=00000000000000000000000000000000 + plain=00000000000000000800000000000000 + cipher=C228B91E5434CB91BAD090666DF66E0C + decrypted=00000000000000000800000000000000 + Iterated 100 times=C35B12E80542C59A44731D89867D8430 + Iterated 1000 times=1EEE0DB230A4FAB690A2AF9C59A8B7A9 + +Set 2, vector# 69: + key=00000000000000000000000000000000 + plain=00000000000000000400000000000000 + cipher=8CF5FE6015BC1F477B84B2398E9C148C + decrypted=00000000000000000400000000000000 + Iterated 100 times=A0E26FE9A67F121558639B417DC749AC + Iterated 1000 times=A88E7265F1D7CFFAF4D433C8CAB95965 + +Set 2, vector# 70: + key=00000000000000000000000000000000 + plain=00000000000000000200000000000000 + cipher=F84B06F5BD3283102A28CB87EDF77A59 + decrypted=00000000000000000200000000000000 + Iterated 100 times=7830484FE3ABA513CDD8807174A5C3E1 + Iterated 1000 times=9E18CA12B5E06369E3599B5E33940CD1 + +Set 2, vector# 71: + key=00000000000000000000000000000000 + plain=00000000000000000100000000000000 + cipher=B6AB9F91D2D52FEE14982E51FDD0A86F + decrypted=00000000000000000100000000000000 + Iterated 100 times=5721A173D6BFE2E33BD02E9D4091D2D4 + Iterated 1000 times=CEAE6478B69C696B8B7E0EA0EEF2713E + +Set 2, vector# 72: + key=00000000000000000000000000000000 + plain=00000000000000000080000000000000 + cipher=E3A66DD37FC104E1C942BA4BD36C5B06 + decrypted=00000000000000000080000000000000 + Iterated 100 times=41698DCC484C4687F3E1C89E804FF0D2 + Iterated 1000 times=84833F84DE6EE348A2AD62F42346CA19 + +Set 2, vector# 73: + key=00000000000000000000000000000000 + plain=00000000000000000040000000000000 + cipher=E4D742804AC95411AB9B5E2A052B75CA + decrypted=00000000000000000040000000000000 + Iterated 100 times=E044BBD030442CD20CB42B08C37AF0F2 + Iterated 1000 times=B7A31659C51D079DE328FFC0D1E59243 + +Set 2, vector# 74: + key=00000000000000000000000000000000 + plain=00000000000000000020000000000000 + cipher=6E4CE82A0BBEFAA7DD0830782DAC545A + decrypted=00000000000000000020000000000000 + Iterated 100 times=4C9D86FB1278F9FE271FFA76B1E5370D + Iterated 1000 times=B7624802AEDB70CA9C49DD72E545CDB1 + +Set 2, vector# 75: + key=00000000000000000000000000000000 + plain=00000000000000000010000000000000 + cipher=1D3AB3E5FA17BF71FF5D79E1E487985F + decrypted=00000000000000000010000000000000 + Iterated 100 times=8FF3AC1E5606ADA3809C4011130D1281 + Iterated 1000 times=CDB6E765BECD860C47AA9786FF2A5D58 + +Set 2, vector# 76: + key=00000000000000000000000000000000 + plain=00000000000000000008000000000000 + cipher=ACB64BB131C5291145833F624518B9AF + decrypted=00000000000000000008000000000000 + Iterated 100 times=2D4AED7194BBB89D42F26A61C0555DBE + Iterated 1000 times=83D9B8AF089B077B013778208DE78843 + +Set 2, vector# 77: + key=00000000000000000000000000000000 + plain=00000000000000000004000000000000 + cipher=C334BFAC52A623193ADF2F16358C4A64 + decrypted=00000000000000000004000000000000 + Iterated 100 times=5AD07DC0F0CDAE08887E2DB1F3506679 + Iterated 1000 times=C86CA1283827F367A76304187B47DF58 + +Set 2, vector# 78: + key=00000000000000000000000000000000 + plain=00000000000000000002000000000000 + cipher=8A8E503636AECC8C883166E497221B18 + decrypted=00000000000000000002000000000000 + Iterated 100 times=7EC166C97489D319646450969D06A208 + Iterated 1000 times=1BD7C3FF9C98DC766757979E29614BBA + +Set 2, vector# 79: + key=00000000000000000000000000000000 + plain=00000000000000000001000000000000 + cipher=5843F891784FEF16EC4DA48251075E09 + decrypted=00000000000000000001000000000000 + Iterated 100 times=E6A04462CD12541ECA467E9D04750206 + Iterated 1000 times=698D3A1880594741A00FD38E535ED6D9 + +Set 2, vector# 80: + key=00000000000000000000000000000000 + plain=00000000000000000000800000000000 + cipher=63FEB7B21CD2CD27BC442DEC676BC8A4 + decrypted=00000000000000000000800000000000 + Iterated 100 times=64E5DD11E4F163B073222705E58720AC + Iterated 1000 times=1680F41CFC3E542D8DCFC8FBE1F9FD9D + +Set 2, vector# 81: + key=00000000000000000000000000000000 + plain=00000000000000000000400000000000 + cipher=8A8771C89673876BB787108F58994FA7 + decrypted=00000000000000000000400000000000 + Iterated 100 times=06BABDFEA1D5DA15D91A132982F4BA10 + Iterated 1000 times=B2CFB54478C12F91B16E8279CF107EA4 + +Set 2, vector# 82: + key=00000000000000000000000000000000 + plain=00000000000000000000200000000000 + cipher=9C2C18794D245EEAD5567599D40A4F25 + decrypted=00000000000000000000200000000000 + Iterated 100 times=CD072C249126A91409155D2EE56EBDFA + Iterated 1000 times=687879212C7870B5CB65491080E90053 + +Set 2, vector# 83: + key=00000000000000000000000000000000 + plain=00000000000000000000100000000000 + cipher=87B36149C2E790936413F85F35CC3E81 + decrypted=00000000000000000000100000000000 + Iterated 100 times=00BC6CF29AF78186A839F10A80C7269C + Iterated 1000 times=3F4A850240C9E6E118051AC59FF030CC + +Set 2, vector# 84: + key=00000000000000000000000000000000 + plain=00000000000000000000080000000000 + cipher=16CA5D72D0159BC3CA678D89717BF7BC + decrypted=00000000000000000000080000000000 + Iterated 100 times=9F1808267773234A1E71F2F51DC31DE2 + Iterated 1000 times=017B9FA07398DAA041C00A683770AB48 + +Set 2, vector# 85: + key=00000000000000000000000000000000 + plain=00000000000000000000040000000000 + cipher=CCA96E633D5AB26D9B97DE0F3201C7B6 + decrypted=00000000000000000000040000000000 + Iterated 100 times=871A8FE51B3E0009FEAF1C1844C65B37 + Iterated 1000 times=2A59B418211CDB1635BD3DC375305BE9 + +Set 2, vector# 86: + key=00000000000000000000000000000000 + plain=00000000000000000000020000000000 + cipher=73353EDE7405EB0C5EEC47DC3457EA6E + decrypted=00000000000000000000020000000000 + Iterated 100 times=29470398D7B63D5812E5B84F79A18F04 + Iterated 1000 times=BA1842856B248387C15AC864A78B2069 + +Set 2, vector# 87: + key=00000000000000000000000000000000 + plain=00000000000000000000010000000000 + cipher=5EC3DE5F4328DA7425D9DA1C26611109 + decrypted=00000000000000000000010000000000 + Iterated 100 times=3B3A0A03D91484458F80B75E52AA23A1 + Iterated 1000 times=ECC55C29509CF5F8F09759D9EA7F4969 + +Set 2, vector# 88: + key=00000000000000000000000000000000 + plain=00000000000000000000008000000000 + cipher=96ACBD2AD728C33CC60FD32C8CA74FB9 + decrypted=00000000000000000000008000000000 + Iterated 100 times=8D61DCB738222C36E559118C296E3691 + Iterated 1000 times=FCDA5F2D19B3AB5D4AB8C59A1AA0E6D2 + +Set 2, vector# 89: + key=00000000000000000000000000000000 + plain=00000000000000000000004000000000 + cipher=A3B513A31C7C77DBF77172485E03886A + decrypted=00000000000000000000004000000000 + Iterated 100 times=8DD7DF97D49F50424C57198D972C930E + Iterated 1000 times=4AEAB84C90E399ACAF2557AAE1B2C85D + +Set 2, vector# 90: + key=00000000000000000000000000000000 + plain=00000000000000000000002000000000 + cipher=CF02CD8BEB5FEFA32512C8E1B088F4A2 + decrypted=00000000000000000000002000000000 + Iterated 100 times=1E77A747D4FB9B1048C1DFC08277B317 + Iterated 1000 times=EBB28B8D2B2BA5E335742C71046517DA + +Set 2, vector# 91: + key=00000000000000000000000000000000 + plain=00000000000000000000001000000000 + cipher=9164691DFC8FD807A937F17824C0CE00 + decrypted=00000000000000000000001000000000 + Iterated 100 times=2100A6B06CBA21AB4EBBB556A4C157EF + Iterated 1000 times=BB5642CE803A806372F4B975AA600204 + +Set 2, vector# 92: + key=00000000000000000000000000000000 + plain=00000000000000000000000800000000 + cipher=DD354B07801C58979F53F2CEAF3296F2 + decrypted=00000000000000000000000800000000 + Iterated 100 times=BA1BC3F15CBA195FA3687828B247C0AF + Iterated 1000 times=5115CD5F283594CCF0373D93DF8F4598 + +Set 2, vector# 93: + key=00000000000000000000000000000000 + plain=00000000000000000000000400000000 + cipher=2CCB484231C1AF693EF916135B3FF2EE + decrypted=00000000000000000000000400000000 + Iterated 100 times=B6B3DCF25F27F9C2B57C58C30662AF80 + Iterated 1000 times=D96F127542C4C11369737603B74146C8 + +Set 2, vector# 94: + key=00000000000000000000000000000000 + plain=00000000000000000000000200000000 + cipher=F0139118CED99AC01A9EB231286783EC + decrypted=00000000000000000000000200000000 + Iterated 100 times=9180E7D9588C1B869A0E5A39DBCFE4DA + Iterated 1000 times=BB20EAB6D2CEE16B417B0B69D3086E46 + +Set 2, vector# 95: + key=00000000000000000000000000000000 + plain=00000000000000000000000100000000 + cipher=6DB6A6BE476066C6970F537BAD08CA0D + decrypted=00000000000000000000000100000000 + Iterated 100 times=0D23CC080594C637DA885830AC86D1EC + Iterated 1000 times=718C9F0E1FC10FCB8B9DDE81788D4D85 + +Set 2, vector# 96: + key=00000000000000000000000000000000 + plain=00000000000000000000000080000000 + cipher=8FEA68D158085C623A46BA65EDABA76E + decrypted=00000000000000000000000080000000 + Iterated 100 times=825962FDA6D371E227402F4D4759DD74 + Iterated 1000 times=F989B7D3F1F886DDC09E99B2BD4B898C + +Set 2, vector# 97: + key=00000000000000000000000000000000 + plain=00000000000000000000000040000000 + cipher=F6D8FD8D30B7AE8A358D802B8E6BEC4F + decrypted=00000000000000000000000040000000 + Iterated 100 times=232C062FBE66F8F824F591A613BA8DF0 + Iterated 1000 times=D13EF4F4D2C9D4F11A58690C0D5A7AB8 + +Set 2, vector# 98: + key=00000000000000000000000000000000 + plain=00000000000000000000000020000000 + cipher=9D7F37718461884A92B02D06297D9283 + decrypted=00000000000000000000000020000000 + Iterated 100 times=4935E3FBDB09E91C256183B8E99834F9 + Iterated 1000 times=EF619B0FA6A9E87CDCC387E215F06DD2 + +Set 2, vector# 99: + key=00000000000000000000000000000000 + plain=00000000000000000000000010000000 + cipher=A1C310697024E4FEA764FCD6F6E49E51 + decrypted=00000000000000000000000010000000 + Iterated 100 times=875BC45E610BFE800DD09C3DDA6635ED + Iterated 1000 times=CCBAD4E5F47E35A7C5B7033DA5769540 + +Set 2, vector#100: + key=00000000000000000000000000000000 + plain=00000000000000000000000008000000 + cipher=0032E40E30827F8DC9C7DFBC51E48D59 + decrypted=00000000000000000000000008000000 + Iterated 100 times=BA82E8C02CDE9AE2EC4D1FDDE6A53552 + Iterated 1000 times=869150FF0C14CAF15ED55CA52CBB81E6 + +Set 2, vector#101: + key=00000000000000000000000000000000 + plain=00000000000000000000000004000000 + cipher=EA337D326AE829717D76CAA1BBFE2E22 + decrypted=00000000000000000000000004000000 + Iterated 100 times=AFD6589724743C9C346ADBF4642F1028 + Iterated 1000 times=524C7705D73B3AAC5B4F832169FAD28C + +Set 2, vector#102: + key=00000000000000000000000000000000 + plain=00000000000000000000000002000000 + cipher=E1120FF9074A2D679FB636E7F9D6D565 + decrypted=00000000000000000000000002000000 + Iterated 100 times=245060EB39D18C388E684767FE563B54 + Iterated 1000 times=3F9739DA7523A8A48120B6D89433B956 + +Set 2, vector#103: + key=00000000000000000000000000000000 + plain=00000000000000000000000001000000 + cipher=7BB24321D4A39BFCD4C56351FBB2B781 + decrypted=00000000000000000000000001000000 + Iterated 100 times=77DA6D85E0BDAA6122685E87E7607668 + Iterated 1000 times=F24005A41351D5293B247B5715A02704 + +Set 2, vector#104: + key=00000000000000000000000000000000 + plain=00000000000000000000000000800000 + cipher=6B46CA82AA8DC7C1D88FAD0BEFD66C23 + decrypted=00000000000000000000000000800000 + Iterated 100 times=A088A5AD4B89972EB52CABFB9618E3B9 + Iterated 1000 times=7E7042157FB6047474DF13807CDEA3D5 + +Set 2, vector#105: + key=00000000000000000000000000000000 + plain=00000000000000000000000000400000 + cipher=E8885FE9F1C234A1F6C5A2F69A0049B7 + decrypted=00000000000000000000000000400000 + Iterated 100 times=9BF47E6529B055A9A6B58824EF0B9EBA + Iterated 1000 times=FE474D044B8C00E1D529F5F418DB5A71 + +Set 2, vector#106: + key=00000000000000000000000000000000 + plain=00000000000000000000000000200000 + cipher=CC57512C9B182C77EB1F3B6640F9A179 + decrypted=00000000000000000000000000200000 + Iterated 100 times=999FF3F716087BF15CC882BE1DA7181C + Iterated 1000 times=B0DFFEC2B976A6961AA3DB49B4B8AB00 + +Set 2, vector#107: + key=00000000000000000000000000000000 + plain=00000000000000000000000000100000 + cipher=9EC1568B8D56347D1306BE2301D125E4 + decrypted=00000000000000000000000000100000 + Iterated 100 times=7F882FA8F27549200A0D90FC2E294B03 + Iterated 1000 times=13D6CFCF6FF8262AA806B2871813D49F + +Set 2, vector#108: + key=00000000000000000000000000000000 + plain=00000000000000000000000000080000 + cipher=A744BCEC7C65CB13BDBCCB32FD386F5E + decrypted=00000000000000000000000000080000 + Iterated 100 times=983BF8D54C131C90DAD858E2FA347F45 + Iterated 1000 times=E19D068BF2D8A3125ADFCBBAE692FA74 + +Set 2, vector#109: + key=00000000000000000000000000000000 + plain=00000000000000000000000000040000 + cipher=988B92A7A2BFCB8B913517BB70055A3B + decrypted=00000000000000000000000000040000 + Iterated 100 times=19F4CCF44C8CC8C13C38DE13C5B6C1DA + Iterated 1000 times=A3BBEDD01AB84A8F441412FB54FE0AA4 + +Set 2, vector#110: + key=00000000000000000000000000000000 + plain=00000000000000000000000000020000 + cipher=93D316D273B295BE6760BA94211629A8 + decrypted=00000000000000000000000000020000 + Iterated 100 times=E0575D57D06DCC824E24C145D8E2CB62 + Iterated 1000 times=862F32DCE51702FECFAC5A3D755DABB6 + +Set 2, vector#111: + key=00000000000000000000000000000000 + plain=00000000000000000000000000010000 + cipher=7F96D5FF123267790828F2A51BC3A1F8 + decrypted=00000000000000000000000000010000 + Iterated 100 times=5AC6E133725447F09879FE6459A7B1DE + Iterated 1000 times=5EFCCC3DCB39205FEA6CAB6CD13625D4 + +Set 2, vector#112: + key=00000000000000000000000000000000 + plain=00000000000000000000000000008000 + cipher=ED1365E334FB49F0EBA20AD5429036ED + decrypted=00000000000000000000000000008000 + Iterated 100 times=C1823C7E721853BB19E6F45E55151E25 + Iterated 1000 times=6C43433AC7787A44FF92E0EAD88D5280 + +Set 2, vector#113: + key=00000000000000000000000000000000 + plain=00000000000000000000000000004000 + cipher=BC6D67A3509B49B549D3D39091A5E513 + decrypted=00000000000000000000000000004000 + Iterated 100 times=EFB0F9E1744A2A718C2CEEC498E18B1D + Iterated 1000 times=953463AB1FC7570B6F0B0D58E635842C + +Set 2, vector#114: + key=00000000000000000000000000000000 + plain=00000000000000000000000000002000 + cipher=44BDDF1F38ED4C806E1AD638111B017F + decrypted=00000000000000000000000000002000 + Iterated 100 times=25EAF270C5C6411A7FCF093979CA1189 + Iterated 1000 times=37D6C45F07FB74077658372CF3B26AEF + +Set 2, vector#115: + key=00000000000000000000000000000000 + plain=00000000000000000000000000001000 + cipher=B32E8C34754C2BD68F39F5DFDD8CA9D0 + decrypted=00000000000000000000000000001000 + Iterated 100 times=27EE8C5D8D377486AFB1A7EFEA5F490E + Iterated 1000 times=596A1D1A0107AC28962CDABB6859364B + +Set 2, vector#116: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000800 + cipher=37E434CC943BC1D7659EF1A750732B4C + decrypted=00000000000000000000000000000800 + Iterated 100 times=17E6DCA537C324CE8A645D67B353CE25 + Iterated 1000 times=A1CDB990992DA02E872B4E5FDE03EAEA + +Set 2, vector#117: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000400 + cipher=FEF13A4ADA181F60B5EEDF9C52D5453D + decrypted=00000000000000000000000000000400 + Iterated 100 times=1C70BAF3C87C64146A706023AD2A83BB + Iterated 1000 times=82C79D89A4E04C9B59910655D0792885 + +Set 2, vector#118: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000200 + cipher=626186BA1DF38E6086736579C1BD5486 + decrypted=00000000000000000000000000000200 + Iterated 100 times=C8A87763FF4999680A9B30A182C29DA3 + Iterated 1000 times=ED2315FF941DE3F50B996589B5DCFB11 + +Set 2, vector#119: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000100 + cipher=3A83193D06278A3A87324D131C10B3F8 + decrypted=00000000000000000000000000000100 + Iterated 100 times=25FBDEAF1645E5A53ECA77B6496FD019 + Iterated 1000 times=4E29C617EA883E78F5C9CE686A73C41A + +Set 2, vector#120: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000080 + cipher=C85E6E725C409BF341555181F17A6046 + decrypted=00000000000000000000000000000080 + Iterated 100 times=5B4025639547D2106A088A7B0A08757B + Iterated 1000 times=989FA699CCB83DF119FC8D40D2B566CC + +Set 2, vector#121: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000040 + cipher=F8090727D3E71AF204F7C834D30DA1E0 + decrypted=00000000000000000000000000000040 + Iterated 100 times=9D8B2F60EEB6381B056D5EFA979F8B28 + Iterated 1000 times=3EF98F9DEE24ADAAF9BDD23C98ECA5E4 + +Set 2, vector#122: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000020 + cipher=54D7947BCDBCE2EAB5DA5845F35FF72C + decrypted=00000000000000000000000000000020 + Iterated 100 times=0E5F422932D0D3A3BAE7ED39D83C35EA + Iterated 1000 times=2218070B77BC95EDF812ADBFDD0EE52C + +Set 2, vector#123: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000010 + cipher=EBDF471B5ED91C2A3929BBED7E4BDD69 + decrypted=00000000000000000000000000000010 + Iterated 100 times=1983942970F20F8C5506042FB138FFD0 + Iterated 1000 times=500D51E2AF53A408D580ECC2656D7D1D + +Set 2, vector#124: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000008 + cipher=E015F6E04498208031E0AA20290FA382 + decrypted=00000000000000000000000000000008 + Iterated 100 times=6B534F8E86A235C01F8B65893F99EE17 + Iterated 1000 times=C8DFE12408B602BAC0CF2FF1A0A6FB22 + +Set 2, vector#125: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000004 + cipher=068511608758F27065B20959D29447FA + decrypted=00000000000000000000000000000004 + Iterated 100 times=3D702F7178908C7BA0339AF2D172D07A + Iterated 1000 times=B13234A67CC3ACE088239A44CB34A989 + +Set 2, vector#126: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000002 + cipher=09AC0F28C2D8751A771E6D9EAD63180E + decrypted=00000000000000000000000000000002 + Iterated 100 times=E667DF8F01B4926AF4C31AA0566341D1 + Iterated 1000 times=08B4150C2822A0F8BFE9DD57C17ED86B + +Set 2, vector#127: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000001 + cipher=060DA44D029064C96FA567851B9646EE + decrypted=00000000000000000000000000000001 + Iterated 100 times=66B30F41CB587DBC98E0002AA35E57B6 + Iterated 1000 times=0DAA1D02F9EF69E9029CFED1B46BAD06 + +Test vectors -- set 3 +===================== + +Set 3, vector# 0: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=B1656851699E29FA24B70148503D2DFC + decrypted=00000000000000000000000000000000 + Iterated 100 times=EFCC2C475C2C2FCA40A5D1329B19F158 + Iterated 1000 times=28184087C4E831ECAAA89DA0FCA6EC87 + +Set 3, vector# 1: + key=01010101010101010101010101010101 + plain=01010101010101010101010101010101 + cipher=EE6F6304E04980E3923ABB5524338C78 + decrypted=01010101010101010101010101010101 + Iterated 100 times=3B7E173F014E1E02A91A5BDB120918F6 + Iterated 1000 times=D819BEFA4CC9C1601CA8BF5C47CD3B95 + +Set 3, vector# 2: + key=02020202020202020202020202020202 + plain=02020202020202020202020202020202 + cipher=641371F5E4F2B42226BA83A9EB0B5553 + decrypted=02020202020202020202020202020202 + Iterated 100 times=F9CA8EE761266326AABBBCDE24EB6B51 + Iterated 1000 times=50F55F603B0020D0C4ED6A53DF8EC7AD + +Set 3, vector# 3: + key=03030303030303030303030303030303 + plain=03030303030303030303030303030303 + cipher=E7D8B6FE09DBDBDC4CCBD3560F9E4973 + decrypted=03030303030303030303030303030303 + Iterated 100 times=F6F9A8CE21EAFAD0930BF7895265E49C + Iterated 1000 times=381A401CAAB6608102125FEA07EAB667 + +Set 3, vector# 4: + key=04040404040404040404040404040404 + plain=04040404040404040404040404040404 + cipher=FB3DFE41EF75615F7B7839E30D4A2A53 + decrypted=04040404040404040404040404040404 + Iterated 100 times=10F897FECD481893A2BEDAD5D4D8854F + Iterated 1000 times=A2EBDB88DD0651CA2E915E15A66DE8CE + +Set 3, vector# 5: + key=05050505050505050505050505050505 + plain=05050505050505050505050505050505 + cipher=D8C4D71CD53A216EADC8E868B2EC54CC + decrypted=05050505050505050505050505050505 + Iterated 100 times=3E6352EA171AFFB0731448588A2BF588 + Iterated 1000 times=581F388B39F093283935FCFD24479B27 + +Set 3, vector# 6: + key=06060606060606060606060606060606 + plain=06060606060606060606060606060606 + cipher=D16F5FF3E4D772038F7FD778AE089DF5 + decrypted=06060606060606060606060606060606 + Iterated 100 times=AA4860F3147757802F27AE9789508F5B + Iterated 1000 times=83698809F270CC54010A464F05453EF4 + +Set 3, vector# 7: + key=07070707070707070707070707070707 + plain=07070707070707070707070707070707 + cipher=2E905CCEBC8A2BC34077CFF33859E018 + decrypted=07070707070707070707070707070707 + Iterated 100 times=F15F461A40F7287338018FA2C557A6F8 + Iterated 1000 times=79B3561B3B691A1AAEA016CDEB1F4111 + +Set 3, vector# 8: + key=08080808080808080808080808080808 + plain=08080808080808080808080808080808 + cipher=0E232B37C06244CF30FCE9801A87B3D4 + decrypted=08080808080808080808080808080808 + Iterated 100 times=F4FAF1A8F19459861BE9C813DC9BE805 + Iterated 1000 times=1D9AF1DA11281E842934679868DE40B7 + +Set 3, vector# 9: + key=09090909090909090909090909090909 + plain=09090909090909090909090909090909 + cipher=2B300715620AF41DBCD733845B374CA6 + decrypted=09090909090909090909090909090909 + Iterated 100 times=C44C7BB15FB0B45B969D13AC27FB3DE5 + Iterated 1000 times=DEA061643F6C7FA5414A7AE289BB8FC8 + +Set 3, vector# 10: + key=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + plain=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + cipher=19E6AE4F90FA9FA695A3025B32A83C8C + decrypted=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + Iterated 100 times=01CB39CD2EC432D92F222F18AF107928 + Iterated 1000 times=423B60AB8D582EBBC12D2BD85AF94E6C + +Set 3, vector# 11: + key=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + plain=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + cipher=4D425FAD71242471A8701C1AEA33BFCB + decrypted=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + Iterated 100 times=B4C6F5A0C31C53D5BFFE724AA4A9EE9E + Iterated 1000 times=0FB2ADE62AAA4D733DB29D639833BBAA + +Set 3, vector# 12: + key=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + plain=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + cipher=85AF2EE735F8043D349649A9FF9DC062 + decrypted=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + Iterated 100 times=291080E444B02224B18773D645B99C21 + Iterated 1000 times=B004C929355E5258F568F12CF041096B + +Set 3, vector# 13: + key=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + plain=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + cipher=30313993DC6449C33A809800AC9FD046 + decrypted=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + Iterated 100 times=F6CC9E18FCD44C4A5602AF8611C9723F + Iterated 1000 times=B56A8E573A8B501431AC2E0FCA611BCB + +Set 3, vector# 14: + key=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + plain=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + cipher=4F77BD31666AE2818A97294A47AD1CC6 + decrypted=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + Iterated 100 times=4E066846B3456DB95CE142468F24A346 + Iterated 1000 times=59B9B442DF9C1D429F2FCB887010DCCE + +Set 3, vector# 15: + key=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + plain=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + cipher=AD7FB7E9BC031AB4FA6552CFF6AAA6CC + decrypted=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + Iterated 100 times=44EB297423C8A4B2D6996EC7284A72A9 + Iterated 1000 times=97F5B3B69CE1603C46D8A15663776758 + +Set 3, vector# 16: + key=10101010101010101010101010101010 + plain=10101010101010101010101010101010 + cipher=F145AC4DCA19F8FE69C9E3C0AC3CCF55 + decrypted=10101010101010101010101010101010 + Iterated 100 times=BC1BBF14ACDB9E429CC4C513AC292AA8 + Iterated 1000 times=2B7D1638312EAC5E85F15D1664A89B30 + +Set 3, vector# 17: + key=11111111111111111111111111111111 + plain=11111111111111111111111111111111 + cipher=E8F367C5749F4DA9808C78043C4C8C57 + decrypted=11111111111111111111111111111111 + Iterated 100 times=F4898AED858AF026D5B8466080BA14A5 + Iterated 1000 times=4FC853BC6BEF44ED41E5D501C1C0B88B + +Set 3, vector# 18: + key=12121212121212121212121212121212 + plain=12121212121212121212121212121212 + cipher=70B3D02E08BF7E65911AD49DE6463DB4 + decrypted=12121212121212121212121212121212 + Iterated 100 times=35C238EAFB1567EE8DD4AD3CDB908F43 + Iterated 1000 times=DCA1EB96DEA2EEEDD05BD031CED2569C + +Set 3, vector# 19: + key=13131313131313131313131313131313 + plain=13131313131313131313131313131313 + cipher=5D661CBFADC69D5D18EEAA0CBDC2FB7F + decrypted=13131313131313131313131313131313 + Iterated 100 times=1FC93CE7095E8EDF9316A9B0D373D09D + Iterated 1000 times=9CE452FD29CEB67389D79999697ED335 + +Set 3, vector# 20: + key=14141414141414141414141414141414 + plain=14141414141414141414141414141414 + cipher=17E737150E7CE2DB7FCE9705C35EDF46 + decrypted=14141414141414141414141414141414 + Iterated 100 times=3776D95169454784442938F3A4E457C5 + Iterated 1000 times=1E70E99E6DD27A15D21E3E4DABC1C4CD + +Set 3, vector# 21: + key=15151515151515151515151515151515 + plain=15151515151515151515151515151515 + cipher=00D5F2F724464C31FFFDEEE0D21752F7 + decrypted=15151515151515151515151515151515 + Iterated 100 times=7D1BC7EA71E7AF5E75B5B05CA9C5FDA2 + Iterated 1000 times=AD796E275E8EFA656FA259ED12A12D55 + +Set 3, vector# 22: + key=16161616161616161616161616161616 + plain=16161616161616161616161616161616 + cipher=DFC3663CC2E9D2E1BFE9C716260705A8 + decrypted=16161616161616161616161616161616 + Iterated 100 times=2193D294E32BAE1A8F0DF21FB28994F4 + Iterated 1000 times=469EC6DE7DB7A1F52FA11069B8A6403D + +Set 3, vector# 23: + key=17171717171717171717171717171717 + plain=17171717171717171717171717171717 + cipher=17B8107C3B4CF4F13A65409DAA737632 + decrypted=17171717171717171717171717171717 + Iterated 100 times=C8C97A3C01A4444B9E08A27340FBAC70 + Iterated 1000 times=88710C638A21B7FD53E727A0593F0E34 + +Set 3, vector# 24: + key=18181818181818181818181818181818 + plain=18181818181818181818181818181818 + cipher=54111ECB978B207DAE8A58328212EE58 + decrypted=18181818181818181818181818181818 + Iterated 100 times=20235C3976F894D51A363B8023AA6B87 + Iterated 1000 times=2E6194D3999BE99E2E9F24B17B0509D3 + +Set 3, vector# 25: + key=19191919191919191919191919191919 + plain=19191919191919191919191919191919 + cipher=AE2F0EC9B6B470AE5686D507CB6233DE + decrypted=19191919191919191919191919191919 + Iterated 100 times=5B08C057BEE68C1A38CD7FFB1CCEBF47 + Iterated 1000 times=9767773AE5CDB52142AF59FF67DD8C81 + +Set 3, vector# 26: + key=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + plain=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + cipher=EA756D96D3375AC96BA13397BF38370D + decrypted=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + Iterated 100 times=869E1B54D9C0923D8D0165334DAF398C + Iterated 1000 times=7FB68858EBA3E85070221EC07B459FB9 + +Set 3, vector# 27: + key=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + plain=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + cipher=7CE7AB45FA1961C76405AB7B534112FB + decrypted=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + Iterated 100 times=EA2D26976731375F84CADCC02FB9008E + Iterated 1000 times=739B4D38240AB2695CF5A14E8BF55D31 + +Set 3, vector# 28: + key=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + plain=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + cipher=B4D2FC13E68468BC981A9E1EB8EF11D3 + decrypted=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + Iterated 100 times=9CF8F908DDD0E6EA9DD2064E505A1402 + Iterated 1000 times=7114135593B935492F654E0B5CBBC482 + +Set 3, vector# 29: + key=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + plain=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + cipher=67C411C84AD89D06CD8BB8A5E35C462D + decrypted=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + Iterated 100 times=7890C20A7C023D2BCD75949A67CEDCE2 + Iterated 1000 times=24D87BE338EAD331A063D5A42949845A + +Set 3, vector# 30: + key=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + plain=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + cipher=0773CD65A1D5448AEF92B131B6339C50 + decrypted=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + Iterated 100 times=7A2BF8D975A822F4A1240E58D8D5F687 + Iterated 1000 times=9E618B890322419D579F690439133409 + +Set 3, vector# 31: + key=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + plain=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + cipher=14805D18B29386D496AB5CFFE677F55E + decrypted=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + Iterated 100 times=D83E67C44E93329065467A97AC4A82FC + Iterated 1000 times=3F893DCA713901E6FE96ED537E85D022 + +Set 3, vector# 32: + key=20202020202020202020202020202020 + plain=20202020202020202020202020202020 + cipher=368074F110B460FF530CFFF9BAA85E97 + decrypted=20202020202020202020202020202020 + Iterated 100 times=C874A2B1F7DF628EE9D682F2218FF493 + Iterated 1000 times=CA285C08119D259699103ADB0A06CC50 + +Set 3, vector# 33: + key=21212121212121212121212121212121 + plain=21212121212121212121212121212121 + cipher=63C7AD55E36B9BF1A519351D98106DBE + decrypted=21212121212121212121212121212121 + Iterated 100 times=2FF8B8EEC631ECD672063039BC2EFEE6 + Iterated 1000 times=D8340EBC27992ECA471344662ED75C15 + +Set 3, vector# 34: + key=22222222222222222222222222222222 + plain=22222222222222222222222222222222 + cipher=4FAEE8FD96FF10CE87F1167BCD251517 + decrypted=22222222222222222222222222222222 + Iterated 100 times=1572B86CBA08AFAFCE47D70086AA0F76 + Iterated 1000 times=27C318FD9CBA4AAB0BA16C5E025EF818 + +Set 3, vector# 35: + key=23232323232323232323232323232323 + plain=23232323232323232323232323232323 + cipher=1CEFB41881F3102B6FDC13B0002CE5A4 + decrypted=23232323232323232323232323232323 + Iterated 100 times=D5FC4369A208C3BAF30B57262FAD6B0B + Iterated 1000 times=745A8CEC0EB720DBB24396019D9967A3 + +Set 3, vector# 36: + key=24242424242424242424242424242424 + plain=24242424242424242424242424242424 + cipher=F42DE70B35A9E8AAF0163F3ECD16C959 + decrypted=24242424242424242424242424242424 + Iterated 100 times=399E11424E1C76AEDDC434D6FFD9E1B9 + Iterated 1000 times=4D42BA74F7C4227F655C5BA117EC2AA5 + +Set 3, vector# 37: + key=25252525252525252525252525252525 + plain=25252525252525252525252525252525 + cipher=27EAE1F775FFA007312135DFD5038C01 + decrypted=25252525252525252525252525252525 + Iterated 100 times=99D88D3E0D77BCC9194BB178625603F9 + Iterated 1000 times=C0E816E43959DAE56231149FD36F9123 + +Set 3, vector# 38: + key=26262626262626262626262626262626 + plain=26262626262626262626262626262626 + cipher=6793102B3855E3E3EC76B620FFF7D6C3 + decrypted=26262626262626262626262626262626 + Iterated 100 times=F972AEF4661ADDCD0F21D2FC7B1822AC + Iterated 1000 times=30B1E6054D56760976D63382A424E853 + +Set 3, vector# 39: + key=27272727272727272727272727272727 + plain=27272727272727272727272727272727 + cipher=315CDB6CFAA407017483428098469805 + decrypted=27272727272727272727272727272727 + Iterated 100 times=36678168462DA519BB5DA32A833A29BD + Iterated 1000 times=99CAFBD3765F19F134BC234F40DC6DBC + +Set 3, vector# 40: + key=28282828282828282828282828282828 + plain=28282828282828282828282828282828 + cipher=536B58555B16673107639040A2205DB2 + decrypted=28282828282828282828282828282828 + Iterated 100 times=F697355A984FDF9D3428DA15F280E056 + Iterated 1000 times=52FDE4DE330C81AEE7E40DCF738CC0F0 + +Set 3, vector# 41: + key=29292929292929292929292929292929 + plain=29292929292929292929292929292929 + cipher=8F5DB321066B0BC11D1A5F9AC053F31C + decrypted=29292929292929292929292929292929 + Iterated 100 times=1EBE5EE86BDD19351448BE3DA837BD73 + Iterated 1000 times=DEF3A061FD7244E453DBE27B8AAF9BB6 + +Set 3, vector# 42: + key=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + plain=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + cipher=DCA1039B4F12834871C558A4DB893FD4 + decrypted=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + Iterated 100 times=562AE48B070BDF1569C68AD8C8C4E78F + Iterated 1000 times=78A846EA258F99081AA8827E8021A699 + +Set 3, vector# 43: + key=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + plain=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + cipher=97170C5FB4E778EC95A1214DB9D34EC7 + decrypted=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + Iterated 100 times=F8F7C23E3619EC33D040D2C436023608 + Iterated 1000 times=DC694B7B7A2E32817A5F9046CC6FAFBE + +Set 3, vector# 44: + key=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + plain=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + cipher=3F579D7C345F26A2F91EE406899B6052 + decrypted=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + Iterated 100 times=9688B3F9A81163E03C5DD956C987B130 + Iterated 1000 times=BC4DCD6C9D87C4DC9734531DFBF0CAD9 + +Set 3, vector# 45: + key=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + plain=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + cipher=38EB6168306224036124A9AFFC96A160 + decrypted=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + Iterated 100 times=A66DAADAAD29D67A1E5016FA87A767EA + Iterated 1000 times=F2B3230F3D9AD5866F19C16192E825AE + +Set 3, vector# 46: + key=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + plain=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + cipher=62F80610E7230FAAA4EA2D364785EAE8 + decrypted=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + Iterated 100 times=25A66AA3AFF2C134304D8EF838E980E6 + Iterated 1000 times=34586B8AC9DE33D916A794FE4D199FD5 + +Set 3, vector# 47: + key=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + plain=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + cipher=46F1493512AD76ED7D3A0AF26A1A4BA3 + decrypted=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + Iterated 100 times=9D6AA87702849326B698BDDF5F2496F3 + Iterated 1000 times=C49D3F1CC106B6BAF45B41AD92DF0A42 + +Set 3, vector# 48: + key=30303030303030303030303030303030 + plain=30303030303030303030303030303030 + cipher=7AB24FD44A27B458398FE62154237469 + decrypted=30303030303030303030303030303030 + Iterated 100 times=8717EFF4FC52C69EAE4995AEBA061601 + Iterated 1000 times=A03FBB7A965AF5B4D8461A24E749D746 + +Set 3, vector# 49: + key=31313131313131313131313131313131 + plain=31313131313131313131313131313131 + cipher=234B9FB8C8655E3047E6C87D511754B4 + decrypted=31313131313131313131313131313131 + Iterated 100 times=2258DF8430E20D0BB6C39BF7D7C3A143 + Iterated 1000 times=A8B33C61A1BA7EF4587FD31D648E9358 + +Set 3, vector# 50: + key=32323232323232323232323232323232 + plain=32323232323232323232323232323232 + cipher=8E04C643E326E381CF2B16E6C6E832AF + decrypted=32323232323232323232323232323232 + Iterated 100 times=7771D164AB02446AD256246681986B10 + Iterated 1000 times=5A460AC1E6E5A60AD44F81E3D44F3BC6 + +Set 3, vector# 51: + key=33333333333333333333333333333333 + plain=33333333333333333333333333333333 + cipher=54F75C449AB77AB20482E0B2FE82FD66 + decrypted=33333333333333333333333333333333 + Iterated 100 times=DAE57F0495D0C3851FC402E4830E55E1 + Iterated 1000 times=4C9E774640264F2FA50B2B966A533162 + +Set 3, vector# 52: + key=34343434343434343434343434343434 + plain=34343434343434343434343434343434 + cipher=19B3D310763BC654060EFBD7E3F5EAAA + decrypted=34343434343434343434343434343434 + Iterated 100 times=3472D6B5DADCAD6103700C3E1FB8A0B7 + Iterated 1000 times=2A66514EA9D93FB2F223F2DEF530A7D8 + +Set 3, vector# 53: + key=35353535353535353535353535353535 + plain=35353535353535353535353535353535 + cipher=A94EDC911FB0CB6396BFF65F034A2024 + decrypted=35353535353535353535353535353535 + Iterated 100 times=101739272BAFF3E69265E78AD3D2919F + Iterated 1000 times=EA68AB8D0087532AD103C855C37FAF9D + +Set 3, vector# 54: + key=36363636363636363636363636363636 + plain=36363636363636363636363636363636 + cipher=2B0E82F5132F3EF5DE7CA1644826318A + decrypted=36363636363636363636363636363636 + Iterated 100 times=38023BB0ADAF8E2C1AD2FA39FE445BBB + Iterated 1000 times=BBEB91BE555E85F09ED9CE5E6CAD90CE + +Set 3, vector# 55: + key=37373737373737373737373737373737 + plain=37373737373737373737373737373737 + cipher=E219449E3C3AF46AE7651B07F98B1CA3 + decrypted=37373737373737373737373737373737 + Iterated 100 times=DB767DA0D99F18275084E3928A36020A + Iterated 1000 times=18FF4A2D21B6B479AF3BCC8D84F2C03D + +Set 3, vector# 56: + key=38383838383838383838383838383838 + plain=38383838383838383838383838383838 + cipher=3AA7C68B540F84FAD2C5818C73E8B51F + decrypted=38383838383838383838383838383838 + Iterated 100 times=EBF6D0AEE1C42CC6CFBFF0A9FA112FC8 + Iterated 1000 times=1344D03D85B60A182A5E473345052EEA + +Set 3, vector# 57: + key=39393939393939393939393939393939 + plain=39393939393939393939393939393939 + cipher=6232F2590A88734F6CCBFB3B70561F2A + decrypted=39393939393939393939393939393939 + Iterated 100 times=59E1AEDD1B32F6453E3EEDE4381A0D15 + Iterated 1000 times=23CF59802AD562717338E590B0DDC010 + +Set 3, vector# 58: + key=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + plain=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + cipher=2F142813B6EAFC00464D63C4F54FBCD2 + decrypted=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + Iterated 100 times=6108FAEB8C7EA654A3FC006244123EA4 + Iterated 1000 times=7C884715A4CDC645F826680341AD7074 + +Set 3, vector# 59: + key=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + plain=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + cipher=45A24E30D6FB2D8C38C0DFCFB2E06881 + decrypted=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + Iterated 100 times=B3C17DBC687B4A641E102B9A81BB33C5 + Iterated 1000 times=593FBBC1BE092E5F156664405EDB5AAD + +Set 3, vector# 60: + key=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + plain=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + cipher=9B8B99847AFFD8E937B13D12994AF5C5 + decrypted=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + Iterated 100 times=123E3D0FF766150F7047345F4E6939F6 + Iterated 1000 times=57A15640841A56837937E0D093C78F78 + +Set 3, vector# 61: + key=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + plain=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + cipher=49ABF38C6ED89B07BC1F9414EA001D1F + decrypted=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + Iterated 100 times=586D14DEA32665F0EC4D10D44013F224 + Iterated 1000 times=652E5F61312C2B8D444A97BBAE0936C0 + +Set 3, vector# 62: + key=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + plain=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + cipher=3487B8B619FEF8CAFE155E6E14654825 + decrypted=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + Iterated 100 times=CA8436D675104160E7B2D05BD4028010 + Iterated 1000 times=90D22D48DDD38014897B71F39BBB043D + +Set 3, vector# 63: + key=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + plain=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + cipher=112610A8E71CB5144A4CC44083ADE80B + decrypted=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + Iterated 100 times=78DCB7205DFE560AB3B13F77014856C2 + Iterated 1000 times=1D0FB080C9451BC6BC63AA3B411155ED + +Set 3, vector# 64: + key=40404040404040404040404040404040 + plain=40404040404040404040404040404040 + cipher=306672ADF6760211BA52069073653C0A + decrypted=40404040404040404040404040404040 + Iterated 100 times=EDABEBCF777FEA1E0BC37C217BBA8715 + Iterated 1000 times=82081E8FEE4868706EB1C2588C07E718 + +Set 3, vector# 65: + key=41414141414141414141414141414141 + plain=41414141414141414141414141414141 + cipher=1FBABC212E7BDC9757266F2AF5AB2157 + decrypted=41414141414141414141414141414141 + Iterated 100 times=6DECEBA33CB2676C380138E5242AEB90 + Iterated 1000 times=4EB9E7F35C47C7675CE3C010DF73A599 + +Set 3, vector# 66: + key=42424242424242424242424242424242 + plain=42424242424242424242424242424242 + cipher=E74EEA345AC0CD5221DA50C811FBE67C + decrypted=42424242424242424242424242424242 + Iterated 100 times=07B0978308A22FC71419324BD159C2E2 + Iterated 1000 times=E0ADCD9518E93EBCDFBB815377D76C5F + +Set 3, vector# 67: + key=43434343434343434343434343434343 + plain=43434343434343434343434343434343 + cipher=BAE20CCDD4D20CDB3C13C2A294D86EDD + decrypted=43434343434343434343434343434343 + Iterated 100 times=1681C51533F48436E932FAB78E6BB92B + Iterated 1000 times=F86FEC8FCED43BD0FDD5631B540D1F92 + +Set 3, vector# 68: + key=44444444444444444444444444444444 + plain=44444444444444444444444444444444 + cipher=235AAD2CEF14F40EC8E394CC08BD9684 + decrypted=44444444444444444444444444444444 + Iterated 100 times=2DB3B7B4BD256213AC25F659ED3669EB + Iterated 1000 times=F3A6DD3634DAFBBAF385627FECFFAEBB + +Set 3, vector# 69: + key=45454545454545454545454545454545 + plain=45454545454545454545454545454545 + cipher=764FF66EC2991B28D72F0AD0885F760B + decrypted=45454545454545454545454545454545 + Iterated 100 times=B8569BF4A07379B4686BDC8DAC8108E5 + Iterated 1000 times=E398CD28DFFD1A843CF694271F66D779 + +Set 3, vector# 70: + key=46464646464646464646464646464646 + plain=46464646464646464646464646464646 + cipher=E7E2C67207330AAB1843AE7458FA9CA3 + decrypted=46464646464646464646464646464646 + Iterated 100 times=E45FA3E71830EBD7FB306E98045E3F56 + Iterated 1000 times=328D30E789F2E765587F0C88015050AC + +Set 3, vector# 71: + key=47474747474747474747474747474747 + plain=47474747474747474747474747474747 + cipher=C64D704B0EF387C809824253270A0318 + decrypted=47474747474747474747474747474747 + Iterated 100 times=E347B1187DB5C98675AE4F959DF30D98 + Iterated 1000 times=E612EB214708960102E595122012712E + +Set 3, vector# 72: + key=48484848484848484848484848484848 + plain=48484848484848484848484848484848 + cipher=A37B19C435D709D4ACA6F9F3416350E3 + decrypted=48484848484848484848484848484848 + Iterated 100 times=D4ECC61C8D11CDF9E78AC7FE6750F22C + Iterated 1000 times=B8CC7DD3B818D8EB13A8A5E2FFFF0EEC + +Set 3, vector# 73: + key=49494949494949494949494949494949 + plain=49494949494949494949494949494949 + cipher=025113D2584139721624ED0720B0DD79 + decrypted=49494949494949494949494949494949 + Iterated 100 times=FDCA1A29A726DC6165AC3AAF618BED45 + Iterated 1000 times=FFD1392107B368582B18E78C5A64B180 + +Set 3, vector# 74: + key=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + plain=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + cipher=30F0A39A1FE2952EDECE8D9B46EE3958 + decrypted=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + Iterated 100 times=F30DA9F1866A6B2368F8429F85D7706F + Iterated 1000 times=75DC5AA0CDE4C2E6B0AA5C6908E32C8F + +Set 3, vector# 75: + key=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + plain=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + cipher=C622B7E3E6612D36826113A059A67AD5 + decrypted=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + Iterated 100 times=4E284921A686F60009DF654B74247F0D + Iterated 1000 times=C948948E53D7A0F6179D8E14C67E6A38 + +Set 3, vector# 76: + key=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + plain=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + cipher=1C802D81916D4B90F87B57E572AA00F7 + decrypted=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + Iterated 100 times=8776480FAFDCBA93F55EAB6D39E0C5FE + Iterated 1000 times=09127D07DC96E452909B2521D7B06477 + +Set 3, vector# 77: + key=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + plain=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + cipher=584ED01B370D18E63C56FAC9CFEB4B69 + decrypted=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + Iterated 100 times=1510C8C7C92C966DA7D4B04EFE8C7C6B + Iterated 1000 times=93F18B1471CD305C11D2DA7B2AEA59FA + +Set 3, vector# 78: + key=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + plain=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + cipher=F43E7A54EFCC005A3F9E2D8977156971 + decrypted=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + Iterated 100 times=BC5C25A7C836A28D852F3EDFAAFE904F + Iterated 1000 times=8D2DB503E5B7DFC4A2533E6D771B4B47 + +Set 3, vector# 79: + key=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + plain=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + cipher=D17E022343214CCE907BB49CCD5A01DE + decrypted=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + Iterated 100 times=9D2BC6AF8BFD7E6C3642503491AC540F + Iterated 1000 times=5C538D64473E24A2BB49E6C6DD612FB3 + +Set 3, vector# 80: + key=50505050505050505050505050505050 + plain=50505050505050505050505050505050 + cipher=8D79107D04C290F35091922767C849AB + decrypted=50505050505050505050505050505050 + Iterated 100 times=710C80D42E1F4E7BCFF9F9EA21F462AB + Iterated 1000 times=CDB7DF8E531DD9DABCB1ABF5BE6DF295 + +Set 3, vector# 81: + key=51515151515151515151515151515151 + plain=51515151515151515151515151515151 + cipher=240D42F2B7DF3DEC35B4A42E577592F8 + decrypted=51515151515151515151515151515151 + Iterated 100 times=11D1220FC8AA952B5A423A026EB702F1 + Iterated 1000 times=57DB36BEE8057DB13A9C3304E26C100B + +Set 3, vector# 82: + key=52525252525252525252525252525252 + plain=52525252525252525252525252525252 + cipher=C31B8EB7B21918CBC817F1354FD7B4EF + decrypted=52525252525252525252525252525252 + Iterated 100 times=78ECA534AE3DDF6F6F71182860C73B36 + Iterated 1000 times=066DF8B5767A0DFD75684688BA553650 + +Set 3, vector# 83: + key=53535353535353535353535353535353 + plain=53535353535353535353535353535353 + cipher=469649E37F6D6B0D8C0AEA2D31039E96 + decrypted=53535353535353535353535353535353 + Iterated 100 times=15BE84D58CC138141DF8E22C7F0CFFE2 + Iterated 1000 times=ECC38E2186763AB93273AD5DF1A1856C + +Set 3, vector# 84: + key=54545454545454545454545454545454 + plain=54545454545454545454545454545454 + cipher=93C727938BBA5C96B2F75AFCFFC770B3 + decrypted=54545454545454545454545454545454 + Iterated 100 times=4DDD792051C720BAC71C18307ACB6AB3 + Iterated 1000 times=8BF826603E938D29517247874ACE056A + +Set 3, vector# 85: + key=55555555555555555555555555555555 + plain=55555555555555555555555555555555 + cipher=B636AADF3D3D9EEC4F9524F81F9401C4 + decrypted=55555555555555555555555555555555 + Iterated 100 times=129DC53BA892012C514FB9825E941178 + Iterated 1000 times=260F2E6EAB72A90A821D4049C5CDB04C + +Set 3, vector# 86: + key=56565656565656565656565656565656 + plain=56565656565656565656565656565656 + cipher=E946C334CF6FCC4A60FD5C50EB64D082 + decrypted=56565656565656565656565656565656 + Iterated 100 times=8193841286692734BCA964BC796E0187 + Iterated 1000 times=941AC3FE29070B471ADCB4F0D909B3F2 + +Set 3, vector# 87: + key=57575757575757575757575757575757 + plain=57575757575757575757575757575757 + cipher=D40E5EC52194C43CB7AB412564B56232 + decrypted=57575757575757575757575757575757 + Iterated 100 times=93B201B70213B62B49B922D52B862C91 + Iterated 1000 times=7E91E3B2539A9E69C21F794BD0E18EA6 + +Set 3, vector# 88: + key=58585858585858585858585858585858 + plain=58585858585858585858585858585858 + cipher=551420F03A802B746CDE03F6D001387A + decrypted=58585858585858585858585858585858 + Iterated 100 times=FD36D88F87CDDBA08B83CB0E26538F5F + Iterated 1000 times=0602F08A40249B68609828C551FC0A75 + +Set 3, vector# 89: + key=59595959595959595959595959595959 + plain=59595959595959595959595959595959 + cipher=F7526AB244E73CA4E3E280E7B5640E65 + decrypted=59595959595959595959595959595959 + Iterated 100 times=DCE5A1B213589DA522EF6612B497E45B + Iterated 1000 times=BA2E53FA2A13C729C0D987F0D57471B2 + +Set 3, vector# 90: + key=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + plain=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + cipher=E42167A4D83A5169EC86B7E7E2E3FE51 + decrypted=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + Iterated 100 times=66F4231570C0D52FB64E23A126137B59 + Iterated 1000 times=B391404F19C00C09566ED956FE7529C7 + +Set 3, vector# 91: + key=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + plain=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + cipher=F7F026BF57F3D36C3D29EA069DA5A426 + decrypted=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + Iterated 100 times=0F9F771C03CF1A15B94C73866C27F81F + Iterated 1000 times=DA19B25972170451134F3E329B1B4208 + +Set 3, vector# 92: + key=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + plain=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + cipher=8AEA8A8B8C761A16F73F18AFAF2A2C71 + decrypted=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + Iterated 100 times=1F4A8035D4E9732145F19ED794AEC6C1 + Iterated 1000 times=FD72AE1D35B802EEE7ADA1E0A44A88D7 + +Set 3, vector# 93: + key=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + plain=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + cipher=752E8AFA97D810030CBA207EC00B96CD + decrypted=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + Iterated 100 times=AB9F129923AA3C991C060237E9E15450 + Iterated 1000 times=434E6167E8A5942BD60E4BECF794BACB + +Set 3, vector# 94: + key=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + plain=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + cipher=2A230A4E671588CB9A61FAB18F8794EC + decrypted=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + Iterated 100 times=E5AA216FFDA8D269419FB9C0E66789B2 + Iterated 1000 times=3DBF778FB310F75725F8EF5B00EDD0EC + +Set 3, vector# 95: + key=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + plain=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + cipher=038B8F3F3CA8B809CE9372DFF9399C11 + decrypted=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + Iterated 100 times=E76B1474CB463E282FB226A50A887CBB + Iterated 1000 times=1F41EF577E93599ECB7E18D3111084CA + +Set 3, vector# 96: + key=60606060606060606060606060606060 + plain=60606060606060606060606060606060 + cipher=1E7A2377E06D475C7A5E12FF61AF3DAA + decrypted=60606060606060606060606060606060 + Iterated 100 times=A003B60DFE323930AA8395B3473D40B0 + Iterated 1000 times=4C47E5F481F373F67EDD2D8F82904AEC + +Set 3, vector# 97: + key=61616161616161616161616161616161 + plain=61616161616161616161616161616161 + cipher=2D037C7DB6736CAA5CAFD5F4D474686C + decrypted=61616161616161616161616161616161 + Iterated 100 times=A6803E911634D1F10298F0FB0B12742E + Iterated 1000 times=E84CE4FB2F396109EA8242A909920700 + +Set 3, vector# 98: + key=62626262626262626262626262626262 + plain=62626262626262626262626262626262 + cipher=73B5FED6356695FA1D1C3EFD9BCDF291 + decrypted=62626262626262626262626262626262 + Iterated 100 times=3066DB24FB30E9D0CC576FE7F658A4B4 + Iterated 1000 times=063389B5E8BBC6DD69D0A531391601B6 + +Set 3, vector# 99: + key=63636363636363636363636363636363 + plain=63636363636363636363636363636363 + cipher=A23A53987C76E59425A363B4A38EEDC4 + decrypted=63636363636363636363636363636363 + Iterated 100 times=0C18249A448494FD7B1C09459BAF917C + Iterated 1000 times=A8ED91D252B5AA9BE8F38E2585EB5D8F + +Set 3, vector#100: + key=64646464646464646464646464646464 + plain=64646464646464646464646464646464 + cipher=7190EB4FE8CC3B7315084BDE92D1DBF6 + decrypted=64646464646464646464646464646464 + Iterated 100 times=4D6FC5482764626CBB5809D885BD7AB1 + Iterated 1000 times=49F912111FD2D4805A4490B473555C6E + +Set 3, vector#101: + key=65656565656565656565656565656565 + plain=65656565656565656565656565656565 + cipher=A39D9C2089AD7D53E2AD4D13745C6238 + decrypted=65656565656565656565656565656565 + Iterated 100 times=D8A1FB7525DFEEABA758B72C07FA60F4 + Iterated 1000 times=96B7D099B6ABF46AC2355B7A16F1D8C4 + +Set 3, vector#102: + key=66666666666666666666666666666666 + plain=66666666666666666666666666666666 + cipher=597DAF7E0A51332DA223248D9A860C16 + decrypted=66666666666666666666666666666666 + Iterated 100 times=8E7131E53992C22D8835CC02C3C8F2F6 + Iterated 1000 times=F4DFC598EB2761F057D59CD22BE2E5B1 + +Set 3, vector#103: + key=67676767676767676767676767676767 + plain=67676767676767676767676767676767 + cipher=039ACE2E9F7471F456AB713745CC9A5B + decrypted=67676767676767676767676767676767 + Iterated 100 times=2916703695E1323F33DB64EA68517A83 + Iterated 1000 times=146DB73E70D3B3B14225B95BB3A191F5 + +Set 3, vector#104: + key=68686868686868686868686868686868 + plain=68686868686868686868686868686868 + cipher=ADF495459D531D5FBBD4D6CEDE80EF0C + decrypted=68686868686868686868686868686868 + Iterated 100 times=53FA25231E0F0419A119D5FB0CFD69D5 + Iterated 1000 times=A62354476B8B1B1FA6283A6B08440959 + +Set 3, vector#105: + key=69696969696969696969696969696969 + plain=69696969696969696969696969696969 + cipher=6613DC686C857CFBCCA36759C62C8D06 + decrypted=69696969696969696969696969696969 + Iterated 100 times=77475DB5DFE18327B42FA7CF4C341242 + Iterated 1000 times=40EA138001B55ED8ACBEB668458E2358 + +Set 3, vector#106: + key=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + plain=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + cipher=F445CF3E3D0BC5D0ADFB0415A6D10212 + decrypted=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + Iterated 100 times=CFE53AFD86C1DDEF62D836219DB56E4D + Iterated 1000 times=E8358CDC20888DEBC1C06D79CFCB306A + +Set 3, vector#107: + key=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + plain=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + cipher=F0AA79CC269913E526F94A0432B5AB33 + decrypted=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + Iterated 100 times=C9B9E91FE6BFE1DC67F117E752728397 + Iterated 1000 times=8B918D5F1BF0E65B4A39BAC21D8844A3 + +Set 3, vector#108: + key=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + plain=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + cipher=C3B0DBA9BBFF8E40282CB38A267DFE10 + decrypted=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + Iterated 100 times=F217F2ECA4A9F26059ABCCD9666669A9 + Iterated 1000 times=DCAEFD104A212D0E0C51FEF96A5FD528 + +Set 3, vector#109: + key=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + plain=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + cipher=EFEBFA7257EA80C635320D588A75804C + decrypted=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + Iterated 100 times=75CE42ECFECA57077E2225CD62033FEE + Iterated 1000 times=840A39207DDA4C943725F34323DF4920 + +Set 3, vector#110: + key=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + plain=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + cipher=20790942466DD65B68FD071E26BE009A + decrypted=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + Iterated 100 times=4E2973C77F9D665C93AC448499E1A0BD + Iterated 1000 times=7C775964295870BBB19EE4D54B70E914 + +Set 3, vector#111: + key=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + plain=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + cipher=76455C52AB1D62CADBCFD58BC08DEAFC + decrypted=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + Iterated 100 times=C854C6A412237C53B8D3FEBD2E36B74D + Iterated 1000 times=FF414D9637F84232CAB1C2E155FE0838 + +Set 3, vector#112: + key=70707070707070707070707070707070 + plain=70707070707070707070707070707070 + cipher=CBA89EB4798CBF8BAA15680A7E685A8F + decrypted=70707070707070707070707070707070 + Iterated 100 times=B871EC861D7F2D10BE942EC0FD718D5C + Iterated 1000 times=7CCF17993B36C49318BC84E27A2CAACB + +Set 3, vector#113: + key=71717171717171717171717171717171 + plain=71717171717171717171717171717171 + cipher=E3E6EAD4F5743DECB4734958F0C63A53 + decrypted=71717171717171717171717171717171 + Iterated 100 times=F6082B5F205D647CF125A163E377BC6D + Iterated 1000 times=541311CD1FD1B0D1F289640ED833FA77 + +Set 3, vector#114: + key=72727272727272727272727272727272 + plain=72727272727272727272727272727272 + cipher=C4D77FF3684772EB2D7CE5CC408C1993 + decrypted=72727272727272727272727272727272 + Iterated 100 times=3CB554A1672E7B02C95B7B5EA3098BD1 + Iterated 1000 times=83BD3BCF5C92915DF6919C4124EF713F + +Set 3, vector#115: + key=73737373737373737373737373737373 + plain=73737373737373737373737373737373 + cipher=43D19A57FE15ED44C19664BC6198BC13 + decrypted=73737373737373737373737373737373 + Iterated 100 times=ECEB84DA38102EF6CF74707406360A1A + Iterated 1000 times=80DC24CD606ADD494A343C73E73BEC57 + +Set 3, vector#116: + key=74747474747474747474747474747474 + plain=74747474747474747474747474747474 + cipher=FDF81E5E22D3D6F1796310F2FF2FF480 + decrypted=74747474747474747474747474747474 + Iterated 100 times=4FF8570E91E26E1AD082C27981A75EFA + Iterated 1000 times=46F6664ADFEE31C3CAB2ECA3F0EE9423 + +Set 3, vector#117: + key=75757575757575757575757575757575 + plain=75757575757575757575757575757575 + cipher=258121AF9DFC4F761E99EC06484FCEDD + decrypted=75757575757575757575757575757575 + Iterated 100 times=F794B0B9AE7E62E22A092235500EC9D8 + Iterated 1000 times=D74267E90FDE4A2BA0F62F2B06D9741A + +Set 3, vector#118: + key=76767676767676767676767676767676 + plain=76767676767676767676767676767676 + cipher=9CAA78AF63E01100A5FF7AF013B3BE3A + decrypted=76767676767676767676767676767676 + Iterated 100 times=2AF2C184731DC54A9696F62A1FE2FE48 + Iterated 1000 times=85ACA03407F08C42638CB57886E38110 + +Set 3, vector#119: + key=77777777777777777777777777777777 + plain=77777777777777777777777777777777 + cipher=08331D7E9F2B5A839DFF69CE9A050C93 + decrypted=77777777777777777777777777777777 + Iterated 100 times=0E2501902D6E7254D16BFF7EE35FCEBC + Iterated 1000 times=4A1C0A30DEAAFF8F62DC09A54E0074C2 + +Set 3, vector#120: + key=78787878787878787878787878787878 + plain=78787878787878787878787878787878 + cipher=6CF8747967751AF438CF4C6BF0CDA444 + decrypted=78787878787878787878787878787878 + Iterated 100 times=D3D74376EB89E0491F528EC62B836C30 + Iterated 1000 times=2A2A676315B2EF7ED8222426DE8BA065 + +Set 3, vector#121: + key=79797979797979797979797979797979 + plain=79797979797979797979797979797979 + cipher=770950E65E637CAAEDD46D5F712D3873 + decrypted=79797979797979797979797979797979 + Iterated 100 times=C884F30478E55797650B59FDB12F761D + Iterated 1000 times=957DE69A68BE79080744E0F7F2692DA6 + +Set 3, vector#122: + key=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + plain=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + cipher=3A2F3DEF8F3CF6F5B64E860D95E502C4 + decrypted=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + Iterated 100 times=C1B74B71804FD804CA7913844D51B6D1 + Iterated 1000 times=808C17BDA39533950CE6EECE859AA26D + +Set 3, vector#123: + key=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + plain=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + cipher=78080A27C6EBE845D029C3273D0DBC2F + decrypted=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + Iterated 100 times=A626587C9E1DF8F740CDB19A8B1AA269 + Iterated 1000 times=22FEAC54CC916EA7D14D5E94882E7559 + +Set 3, vector#124: + key=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + plain=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + cipher=6768F142BCDB14615721B53B6369D058 + decrypted=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + Iterated 100 times=E43B15214A84F99D5A047F4A23B08D30 + Iterated 1000 times=98F47E84770FCEA527EFC63FCD728C1D + +Set 3, vector#125: + key=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + plain=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + cipher=E9878AD694D2201D5B7B4BB35FFDE320 + decrypted=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + Iterated 100 times=C617C56646D5FDF5ED3123BB6CF0253E + Iterated 1000 times=446EFE5D522E29B893738E1F95C5F3DD + +Set 3, vector#126: + key=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + plain=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + cipher=486884A48B3E9D70729C1E01407CA71E + decrypted=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + Iterated 100 times=D51159A34EF6E9CE7CFF324F408F6176 + Iterated 1000 times=D5B009A74CBC755533D6B24CED03FD26 + +Set 3, vector#127: + key=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + plain=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + cipher=F81ADF275CC8D24DCD89DF6F044B19F1 + decrypted=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + Iterated 100 times=DBE0F23CA73F69B58CC3A82BC560400A + Iterated 1000 times=B7405D16A243E6E24BA05E21CE133E40 + +Set 3, vector#128: + key=80808080808080808080808080808080 + plain=80808080808080808080808080808080 + cipher=E9F29981A55CEE4229BE97A264040236 + decrypted=80808080808080808080808080808080 + Iterated 100 times=47A5EF88C9600F307676F253D1602C3A + Iterated 1000 times=FA39BDE15BC82A0BA96FB82B85267DBB + +Set 3, vector#129: + key=81818181818181818181818181818181 + plain=81818181818181818181818181818181 + cipher=9F520EC69AB5A63020C3563D03A00843 + decrypted=81818181818181818181818181818181 + Iterated 100 times=4240728C6A7CAA276A5A2A3109EE4C33 + Iterated 1000 times=4CC44550D7876F83EAB833CC510A7DE9 + +Set 3, vector#130: + key=82828282828282828282828282828282 + plain=82828282828282828282828282828282 + cipher=1876D999BEECD9635D2E05B8B70A708C + decrypted=82828282828282828282828282828282 + Iterated 100 times=5FBE5F457617D7B1D6B591CE588B81CB + Iterated 1000 times=435C6FD82945447A19A808E266F2A743 + +Set 3, vector#131: + key=83838383838383838383838383838383 + plain=83838383838383838383838383838383 + cipher=BAA6EECF0BA4B987175AE06714AE5FDB + decrypted=83838383838383838383838383838383 + Iterated 100 times=F02D3A34FCBC467F7F3C1EC23D11B7D5 + Iterated 1000 times=F16D8EE909FAE82EC15CDA400964E29F + +Set 3, vector#132: + key=84848484848484848484848484848484 + plain=84848484848484848484848484848484 + cipher=655410648D0C4856876826C4654B5745 + decrypted=84848484848484848484848484848484 + Iterated 100 times=DFA70E3B4EF27E75B76D7FA77C3AA139 + Iterated 1000 times=A3A0D236F9A55F26B14446233CD94AC0 + +Set 3, vector#133: + key=85858585858585858585858585858585 + plain=85858585858585858585858585858585 + cipher=D1A9D3A80A91008F232F2C12AB65AF92 + decrypted=85858585858585858585858585858585 + Iterated 100 times=6E65013320E903AC8050DB988C26245A + Iterated 1000 times=32A6D2031F95C9AF16C9473B190E3D59 + +Set 3, vector#134: + key=86868686868686868686868686868686 + plain=86868686868686868686868686868686 + cipher=D5428CF973D416092869D24254981F1B + decrypted=86868686868686868686868686868686 + Iterated 100 times=ABC425A8F0647DCD88A4C49D638DBBEA + Iterated 1000 times=028CD1E3394CC691644211EBFEF1DF88 + +Set 3, vector#135: + key=87878787878787878787878787878787 + plain=87878787878787878787878787878787 + cipher=D653804596390C4F4FD258B912A958A2 + decrypted=87878787878787878787878787878787 + Iterated 100 times=B2A0DAA615DF62E4522F3998E39559A9 + Iterated 1000 times=F3ADFCF73085C66B5E72A1C27ACFD717 + +Set 3, vector#136: + key=88888888888888888888888888888888 + plain=88888888888888888888888888888888 + cipher=E488C8FA4B480F67BD75C9B7DA0F0C4E + decrypted=88888888888888888888888888888888 + Iterated 100 times=40536E80065D301DCFB6E9B29E25AD61 + Iterated 1000 times=6E2686F8D01AA7D045818DD884103794 + +Set 3, vector#137: + key=89898989898989898989898989898989 + plain=89898989898989898989898989898989 + cipher=3F6C64E3BF13D4C9FFB4F8962DE83A1B + decrypted=89898989898989898989898989898989 + Iterated 100 times=FB1ACC5D113A66B5667E7C51BFA6023C + Iterated 1000 times=1C5AC5D3F5370F6C9391B0EA733049ED + +Set 3, vector#138: + key=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + plain=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + cipher=93A59E9334B124907137ACBBF27CEA70 + decrypted=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + Iterated 100 times=0797CDD3BE37882DBE022355B5B537F2 + Iterated 1000 times=289214195CC26D611D9283A07928731F + +Set 3, vector#139: + key=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + plain=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + cipher=17FD8FD80F0602A9D013D6CEC40E2A1A + decrypted=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + Iterated 100 times=2B5952B742109DBBC93BAC1A4358765E + Iterated 1000 times=6BC28ED8D7C14FEC638477996BC05A4D + +Set 3, vector#140: + key=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + plain=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + cipher=3E02824551DA3B6E95CD3A4423553650 + decrypted=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + Iterated 100 times=25CE0009E5CD6CC001AABE586A04C524 + Iterated 1000 times=94D922D80B85185B95F3F821E4D02DFF + +Set 3, vector#141: + key=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + plain=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + cipher=EEAC47E8BF9C2D1FAE91373401F21460 + decrypted=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + Iterated 100 times=07ACD33AC2AA01E384721AB0DD4504E0 + Iterated 1000 times=244B354A55C6E77A0B589A553752F6EF + +Set 3, vector#142: + key=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + plain=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + cipher=5E00F73C293A2AA71B95B7F4B181BF6D + decrypted=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + Iterated 100 times=5F3ED76113DDEEBFACF4D64F10FB3296 + Iterated 1000 times=401053AE67FA0BC7EF805CFCF6F564AF + +Set 3, vector#143: + key=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + plain=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + cipher=EFBABFE7D9AD1D101D2A7DA1DC18015A + decrypted=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + Iterated 100 times=18164C46CF4EC929E630C7003E3DD29F + Iterated 1000 times=D8082E808DAA186208A8B5881B6418DE + +Set 3, vector#144: + key=90909090909090909090909090909090 + plain=90909090909090909090909090909090 + cipher=B5AC8D7C8081A46294E65B3EA77ABF1F + decrypted=90909090909090909090909090909090 + Iterated 100 times=BC1B21DDE5BBA095A22E370C7C5DBF46 + Iterated 1000 times=D697D7475B1A8603B7BD7108EEC92397 + +Set 3, vector#145: + key=91919191919191919191919191919191 + plain=91919191919191919191919191919191 + cipher=9CB7696354890965A6230A1FE17B6E44 + decrypted=91919191919191919191919191919191 + Iterated 100 times=4FA958D0FEBD97325A5C6C69D8F95F88 + Iterated 1000 times=42B4D50ECCEABA33FEB8D66E6978A162 + +Set 3, vector#146: + key=92929292929292929292929292929292 + plain=92929292929292929292929292929292 + cipher=7260C50DBB6765B551995D9DD0C0A718 + decrypted=92929292929292929292929292929292 + Iterated 100 times=B2B5DB780618D48B0503F9CE0FB58ACB + Iterated 1000 times=195FF0FB90ABD1E518846F005A542F53 + +Set 3, vector#147: + key=93939393939393939393939393939393 + plain=93939393939393939393939393939393 + cipher=26D895ADDA02F7913D87310253215F82 + decrypted=93939393939393939393939393939393 + Iterated 100 times=E14BD61EDC13CAB7621ADFF90C433453 + Iterated 1000 times=F32369AB1E985A1E31D42FB3530D6FE0 + +Set 3, vector#148: + key=94949494949494949494949494949494 + plain=94949494949494949494949494949494 + cipher=03317FA40FC376D7321528A0F590181E + decrypted=94949494949494949494949494949494 + Iterated 100 times=F1897F8F17EBA5CC78085D9A8C3764D4 + Iterated 1000 times=5313AF0C7ECB18F028FB6AEB51229950 + +Set 3, vector#149: + key=95959595959595959595959595959595 + plain=95959595959595959595959595959595 + cipher=08D9F76D24687A0C338F7797F937506D + decrypted=95959595959595959595959595959595 + Iterated 100 times=7DA385DDE449C3BC47AECB9EED27BF29 + Iterated 1000 times=CE7C12C6889A021529C2CD7815E9923D + +Set 3, vector#150: + key=96969696969696969696969696969696 + plain=96969696969696969696969696969696 + cipher=50E9F91F2A51C8EF19986825BEB4F443 + decrypted=96969696969696969696969696969696 + Iterated 100 times=AFBCD830206C826015ACFD9EE1B17F37 + Iterated 1000 times=CB8F513E450C1A7E36A2ADEFA6483D68 + +Set 3, vector#151: + key=97979797979797979797979797979797 + plain=97979797979797979797979797979797 + cipher=66C31D8B15645281161CE7B13685D1B3 + decrypted=97979797979797979797979797979797 + Iterated 100 times=0F7DBFCB9D928E8938FD59C91251C9F3 + Iterated 1000 times=28521D9F6044FFE98CF407352992EE49 + +Set 3, vector#152: + key=98989898989898989898989898989898 + plain=98989898989898989898989898989898 + cipher=5C3012626E6E9C41EBCFBC3D00862DDB + decrypted=98989898989898989898989898989898 + Iterated 100 times=AD4A26B603BFD3AA01B7CAAEEDB346D3 + Iterated 1000 times=B170CD73E81711170978CD62E3455F57 + +Set 3, vector#153: + key=99999999999999999999999999999999 + plain=99999999999999999999999999999999 + cipher=00B12ADE86DB4D347CB66368E3FBACCF + decrypted=99999999999999999999999999999999 + Iterated 100 times=15BF51FAD3A9EEEBFA239AC12D63445B + Iterated 1000 times=D75E7DD08A87C9C53361817121B8F524 + +Set 3, vector#154: + key=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + plain=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + cipher=15C1DD10EFC41F674FF78355A39B4C6D + decrypted=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + Iterated 100 times=E6CC52385D6A4A8109A8B75195DA0CC3 + Iterated 1000 times=134B162E4EDF3A81A777075EA715BEAF + +Set 3, vector#155: + key=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + plain=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + cipher=6FA5A7A95CEBA38448138ED4D166401D + decrypted=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + Iterated 100 times=ABDDA32F764872DAEDB093365E4D13F1 + Iterated 1000 times=1DF3938D4537EC8E73A573C4C0EBE8C1 + +Set 3, vector#156: + key=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + plain=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + cipher=2962D2C72CAF0520E86CB3C1628D1D8F + decrypted=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + Iterated 100 times=DCD6917F4864C33251F0FF0B5B76EF6F + Iterated 1000 times=28017EB29D744EF922D181AD5BE60957 + +Set 3, vector#157: + key=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + plain=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + cipher=C90E1562F100FA5BB0BA59DD98F284EF + decrypted=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + Iterated 100 times=451DC25297072C7129157897C7E14BFF + Iterated 1000 times=E5DCEB32879EBC6BF241056B04F0404C + +Set 3, vector#158: + key=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + plain=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + cipher=D847EA1897118493D99A6D09E3CEC018 + decrypted=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + Iterated 100 times=BB73226B47E0C6F3E726569334F7F3D4 + Iterated 1000 times=062D81E47F35DF42C30829B96CD0F8E9 + +Set 3, vector#159: + key=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + plain=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + cipher=E0C857EC57005A98C4B3E8BC341649A4 + decrypted=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + Iterated 100 times=F1DF3DBDEDFDFEE6D842F8C5257A682E + Iterated 1000 times=D13CEB1AF7885E20254ADA547C508F66 + +Set 3, vector#160: + key=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + plain=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + cipher=23D37783BECF12D7B7BDD7225DE11355 + decrypted=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + Iterated 100 times=FD28FB3AF6C37E75D4060FEE3DF75591 + Iterated 1000 times=1677594874EEF31D1A320B7EE8EA507A + +Set 3, vector#161: + key=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + plain=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + cipher=7380A1FED4BF0793C35090E8B57129ED + decrypted=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + Iterated 100 times=FB3426A9717506AB5451667FC1BD4569 + Iterated 1000 times=E3E2062027F44E7259E3C2C0BC3787EE + +Set 3, vector#162: + key=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + plain=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + cipher=E101D7131843BD303E8E6AE7609B1814 + decrypted=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + Iterated 100 times=23CFECEDF86A6D089C5A2D824C34FF32 + Iterated 1000 times=0A7964695211B92CBD61EEB419F19387 + +Set 3, vector#163: + key=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + plain=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + cipher=8C862A42AE6F951EBC58948773D01A59 + decrypted=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + Iterated 100 times=39964E2B6935C34AF58A43A29C1A61E8 + Iterated 1000 times=23378D777A67D3E76AF6A0060F225024 + +Set 3, vector#164: + key=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + plain=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + cipher=D5DD50C19115C47E79A5E45A36EE3F78 + decrypted=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + Iterated 100 times=BF3C326064A424D94E73B91E9D3CC7A9 + Iterated 1000 times=A2086972AF907879544BF645A7031BA9 + +Set 3, vector#165: + key=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + plain=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + cipher=6C62381F124643EE6761D707F1937FE2 + decrypted=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + Iterated 100 times=121D8364EF108B3FEF8C3874AFFC82FA + Iterated 1000 times=B055568B724BEC063E2D2E79ED7588FD + +Set 3, vector#166: + key=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + plain=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + cipher=B9D1A7E3E93B2B085102C8D1480C3C0C + decrypted=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + Iterated 100 times=B4E8E7198C28B1AF5ECE39051E95EA9E + Iterated 1000 times=BA5DF4D004F9FC7B69B14EB6AE0B47E4 + +Set 3, vector#167: + key=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + plain=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + cipher=07096DABBCFE6DFFAFAB9B472A9B8233 + decrypted=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + Iterated 100 times=7104BA6BB0629E765C7FC8DD030DFF36 + Iterated 1000 times=05FD99E2521DE0D8E539848B2884DF76 + +Set 3, vector#168: + key=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + plain=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + cipher=74A5FD80E41F810433D3A59204A28D19 + decrypted=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + Iterated 100 times=F5EEB85F2E6B4C5911A4E6C19A51B9A7 + Iterated 1000 times=302DA19CF500BABD25F5A1BA21E01811 + +Set 3, vector#169: + key=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + plain=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + cipher=E5482B7B349CD8FE37895A02342A533A + decrypted=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + Iterated 100 times=EA6A850F279130AAE6F7F3D7564027D8 + Iterated 1000 times=E71120905A8E8849C3CC8D07E7B3726A + +Set 3, vector#170: + key=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + plain=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + cipher=BB65A846565E84E86274C7B16BAC1473 + decrypted=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + Iterated 100 times=542210CE9202F2D893452103C9839763 + Iterated 1000 times=549B316EBC153124306F0D74D694B7C4 + +Set 3, vector#171: + key=ABABABABABABABABABABABABABABABAB + plain=ABABABABABABABABABABABABABABABAB + cipher=1CFB85409884FEF96970039C56FEE0FA + decrypted=ABABABABABABABABABABABABABABABAB + Iterated 100 times=AAE4A18A1277641E3BB5EE6FB9E1688B + Iterated 1000 times=5D2B46A6ACEBE0024AD6455125500200 + +Set 3, vector#172: + key=ACACACACACACACACACACACACACACACAC + plain=ACACACACACACACACACACACACACACACAC + cipher=488145E5464E88F670F31B1807BBEB5C + decrypted=ACACACACACACACACACACACACACACACAC + Iterated 100 times=AB21998E1F415EF312DEF76134B01E50 + Iterated 1000 times=00602F520E7C7D38C4435A7D49728F35 + +Set 3, vector#173: + key=ADADADADADADADADADADADADADADADAD + plain=ADADADADADADADADADADADADADADADAD + cipher=95264FA981AA15775AA570C41BAC3BB2 + decrypted=ADADADADADADADADADADADADADADADAD + Iterated 100 times=473B330554D966FC05448FA53130D267 + Iterated 1000 times=E2BDD953A78690E41FBB26EE28FDEAD2 + +Set 3, vector#174: + key=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + plain=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + cipher=8EFDD92E711D30E1F9A3DD1C907A5DCD + decrypted=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + Iterated 100 times=E9A0DA0C035F6F250F16A1F70443874F + Iterated 1000 times=A7A17F6584D8A3A1045EB3484E532982 + +Set 3, vector#175: + key=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + plain=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + cipher=E9BEBA4FF362310C846FCFCDB29B3824 + decrypted=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + Iterated 100 times=CB7B776B96EA5EC48035F69C249B69A0 + Iterated 1000 times=AB6A9FACBE0880B94BE9EB2B3B2BE4BA + +Set 3, vector#176: + key=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + plain=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + cipher=5F9BF9EDA5AA0EAB19E9D5649D99DD51 + decrypted=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + Iterated 100 times=689E7CA27774903911FD8F189D55E5EC + Iterated 1000 times=552301E530CABD8E8219413728E858E0 + +Set 3, vector#177: + key=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + plain=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + cipher=FACB4EEA5661E67129220EA3B83AC32B + decrypted=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + Iterated 100 times=912B4279D424628F0A04BD5FEBAA5E20 + Iterated 1000 times=D30E986BF06821F03AF70A273F87C52C + +Set 3, vector#178: + key=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + plain=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + cipher=259348FEF79D90B4E2675CDC64167452 + decrypted=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + Iterated 100 times=7180F9A26C47661E61C9E2A68E77C58E + Iterated 1000 times=8C9D4819BD70E88F52777FBC6CF8A0B2 + +Set 3, vector#179: + key=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + plain=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + cipher=E08284942E1FB0A545EACABC77F2E259 + decrypted=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + Iterated 100 times=435FDF80A952EC056FA5340671C6A32A + Iterated 1000 times=E90A0B89F3CF57A5E5DBA3E94D18C095 + +Set 3, vector#180: + key=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + plain=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + cipher=42EA4D80F064441FD9618CB34ACD3267 + decrypted=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + Iterated 100 times=2E4D5DAB6500056D2C32D34FDA68ABE2 + Iterated 1000 times=BB10FB767964B7667DFE605C9713D743 + +Set 3, vector#181: + key=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + plain=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + cipher=BA23C0286E2240134A2F1124F2575D75 + decrypted=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + Iterated 100 times=C78D60CEBC9886204104B0432EC36015 + Iterated 1000 times=DB98C44722E9F86BC0818FB65686650F + +Set 3, vector#182: + key=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + plain=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + cipher=10D25B5F163B22AE1B759E5F4667AB9B + decrypted=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + Iterated 100 times=FA495D2CF69EA63F30EFD77003970119 + Iterated 1000 times=04DDC6210539E6A36FD11F1BBBDF7D89 + +Set 3, vector#183: + key=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + plain=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + cipher=557F0AEC7C93F1ECC0A91ECD242815E3 + decrypted=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + Iterated 100 times=D860430DA6A21A02E69FF65098C9E91A + Iterated 1000 times=6A9F5AEA1D22CEE4017A21BAC9E16901 + +Set 3, vector#184: + key=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + plain=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + cipher=319F610BDBA297D573AFADD69ACCFA21 + decrypted=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + Iterated 100 times=C79BA8CB77FA5BDC629B3946FDD894C3 + Iterated 1000 times=CF8DA25D60D9BF76752C3E6CE93BB39F + +Set 3, vector#185: + key=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + plain=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + cipher=86C2F18DF37D72666495522F64ACD8E3 + decrypted=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + Iterated 100 times=3CB4F5269DC8037918E9FF29D518F20D + Iterated 1000 times=9D7638F01C0ABB30BB04EA081F7EF2E5 + +Set 3, vector#186: + key=BABABABABABABABABABABABABABABABA + plain=BABABABABABABABABABABABABABABABA + cipher=E35E7F52DDFF55E6A0AA8975AD0F3D0B + decrypted=BABABABABABABABABABABABABABABABA + Iterated 100 times=35A349EB6E32377CDA24D41D4D254BD5 + Iterated 1000 times=30AD75148971A1FEF984C39D53E8D5D4 + +Set 3, vector#187: + key=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + plain=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + cipher=773C6340CC652BAEB49995AC97512B50 + decrypted=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + Iterated 100 times=6725EC65C12CF7FE89F11112F328C5E9 + Iterated 1000 times=B24BA578477C3B27C5562D11E7A2449D + +Set 3, vector#188: + key=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + plain=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + cipher=51111EC01B5DCC0C476D0B10232D012E + decrypted=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + Iterated 100 times=A9B66CCFB88F576DE75B06CAE55C2432 + Iterated 1000 times=C9B1568CCAC41424ECDFC02E004E37E8 + +Set 3, vector#189: + key=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + plain=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + cipher=8C723766A0AFE495930515D380D6EFD6 + decrypted=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + Iterated 100 times=5F55408AE9EC3A62D9045F7A2793EF00 + Iterated 1000 times=505F4CFDE30D2A4BE776440FDE868434 + +Set 3, vector#190: + key=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + plain=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + cipher=315C4E18B59F167A42226F3A44C52258 + decrypted=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + Iterated 100 times=4D62401FA1587383273736A5E54897CC + Iterated 1000 times=359365D9AEDAD59BDEB5ED8EE6501A72 + +Set 3, vector#191: + key=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + plain=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + cipher=B6CCD53B55A289EA08C4B62BCE9093DC + decrypted=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + Iterated 100 times=F19834EA07BAB33FD831D825E451004F + Iterated 1000 times=BE71F99FE0AE286AEE8F7EB0A6159490 + +Set 3, vector#192: + key=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + plain=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + cipher=F4418A85A059DB5F67D6A181280AAB00 + decrypted=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + Iterated 100 times=1421C6C7DC8A873931A75949A86FFEA1 + Iterated 1000 times=9FC24EA4945FEF8A1573D5EB53DF4B09 + +Set 3, vector#193: + key=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + plain=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + cipher=F4A825D34982D78E2339A1FA83298169 + decrypted=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + Iterated 100 times=EAC60B96EF071C5B4123DBE32160CD8D + Iterated 1000 times=BACF39EBBD50F6662D05768E8E053332 + +Set 3, vector#194: + key=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + plain=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + cipher=F2DFAD7E8D1F9ABDBADA93977E5E6BAB + decrypted=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + Iterated 100 times=541F59F2B353558B6398599C817BFDA8 + Iterated 1000 times=E6AE3FE0BC875FFCE7B9093DA6D2BE41 + +Set 3, vector#195: + key=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + plain=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + cipher=F8D0A82F5997FB764E5002C5311257F3 + decrypted=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + Iterated 100 times=15C9205BFC7C907580B95D69EE85428F + Iterated 1000 times=F746305B5D5F466800AD7EA31B618181 + +Set 3, vector#196: + key=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + plain=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + cipher=658D3B9051FAE0242FC6045E3A164A57 + decrypted=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + Iterated 100 times=CC897CBFBEF35D1BF04BDCDCA83BECB0 + Iterated 1000 times=CCAEE04FEE947005EA979703D1588C13 + +Set 3, vector#197: + key=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + plain=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + cipher=3F02ED7837B452B63103B64B59A47650 + decrypted=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + Iterated 100 times=A87679810EBF87C3C647900FAC803426 + Iterated 1000 times=E026DD2748027AFB2219FB8B2DD42FEC + +Set 3, vector#198: + key=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + plain=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + cipher=F040DC90D646B0A7DF452DCA709463F5 + decrypted=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + Iterated 100 times=F9CEB8D53B47E920325BD291F5A9B1FE + Iterated 1000 times=D4CD3782C1478D45F69DD36428063A7C + +Set 3, vector#199: + key=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + plain=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + cipher=EE1134E093F92BE1BEFD9BBEE8B9E85E + decrypted=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + Iterated 100 times=9974D7C98AA4E91FCC5AF56B8A8471EE + Iterated 1000 times=1D3A5E3AB35E88487E49EFF2830F02CA + +Set 3, vector#200: + key=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + plain=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + cipher=FD34E36EE14FF22FBEC9D7FD7364F69D + decrypted=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + Iterated 100 times=1F43FD7342F94B663BAE7699FDA8979E + Iterated 1000 times=1357ADBADD23B4F6B068B2FE1A994BE4 + +Set 3, vector#201: + key=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + plain=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + cipher=85497B13D3BE378B39801F2464C0E1AB + decrypted=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + Iterated 100 times=F638F74AA256E259A00D61D16F676D15 + Iterated 1000 times=F1CB4390F010873DC392579806F99F69 + +Set 3, vector#202: + key=CACACACACACACACACACACACACACACACA + plain=CACACACACACACACACACACACACACACACA + cipher=F7F8A863E84FAE70B5848923851BA915 + decrypted=CACACACACACACACACACACACACACACACA + Iterated 100 times=FF58C1EE3A3C561B1D1BFEECC111A985 + Iterated 1000 times=DFBCE051A1DDCFDEFF318A5556237A9D + +Set 3, vector#203: + key=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + plain=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + cipher=15F403D0E4C9E4C8ED89CECF555882D1 + decrypted=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + Iterated 100 times=4C6C3997608F1EF3A1E062F6CAF7788E + Iterated 1000 times=F5D8C741506F989D16EE6059224CEDC0 + +Set 3, vector#204: + key=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + plain=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + cipher=31FF79DEC46BEFBEDF4680B5739F5916 + decrypted=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + Iterated 100 times=4D8596089F7CF683A9B768D3DBE7EFEE + Iterated 1000 times=14000A4FEAF60056EBFDB05FA836DE0B + +Set 3, vector#205: + key=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + plain=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + cipher=B3E2C12B3EE8F98F40314FA5F157AEE8 + decrypted=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + Iterated 100 times=6B9820F4D10FB2946586CB726EE1B9A4 + Iterated 1000 times=66330818E7E6C63823D2A5D62E7809DC + +Set 3, vector#206: + key=CECECECECECECECECECECECECECECECE + plain=CECECECECECECECECECECECECECECECE + cipher=6EEC85D55F1EAF0F314D07735044A625 + decrypted=CECECECECECECECECECECECECECECECE + Iterated 100 times=BDD55D15BF866F949D7E871C85DC4E88 + Iterated 1000 times=1BD6FFBAABD58AA0A4C15F8ECE02E383 + +Set 3, vector#207: + key=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + plain=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + cipher=7DBD7E43005F2ED6BD12A577540BFF34 + decrypted=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + Iterated 100 times=BD5B18BFE813551BD0E0828862033E13 + Iterated 1000 times=A7E9EB10765DFCC516DB686B1692EB49 + +Set 3, vector#208: + key=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + plain=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + cipher=2E01FBFBB8A3FF8C7A5CEA0148F641DC + decrypted=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + Iterated 100 times=6DF907B5A63503B5CF64DA6F16BA1C48 + Iterated 1000 times=FECAA0424BD92A75E0EF86730E626E2F + +Set 3, vector#209: + key=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + plain=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + cipher=6C6D1F8E5ED13A366290229597CA5FEC + decrypted=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + Iterated 100 times=4ADE3A9A6C913886A1FCF3DB4646146C + Iterated 1000 times=8D69F5E7EC57376DADA25BC207E4513C + +Set 3, vector#210: + key=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + plain=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + cipher=D8D39701695DE5F4413D96BE1F539DE1 + decrypted=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + Iterated 100 times=5F5F6D79B05BBF5B316655A7DDD8F6DE + Iterated 1000 times=851C0BFB07E4EFB3A1FB31BD1285316E + +Set 3, vector#211: + key=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + plain=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + cipher=9262B18A0A2B87CC32BFBDEB5EDE15C1 + decrypted=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + Iterated 100 times=D75920461B4FCA3011143978C9ED44B8 + Iterated 1000 times=8C8B61D9858D1A966826D3EB62731EF2 + +Set 3, vector#212: + key=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + plain=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + cipher=7A5F5A09535C068FA40F9A53F2260997 + decrypted=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + Iterated 100 times=953AAA330C5624F5CB5A1B828B8877ED + Iterated 1000 times=7EB905D15CDD862249D4E855019AE33F + +Set 3, vector#213: + key=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + plain=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + cipher=7BFA32F025ACE141EC14A1ADE2C02D35 + decrypted=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + Iterated 100 times=082CC00AF10BF26D79FB6599BF4EBD9C + Iterated 1000 times=DBCA3A69F0A543A168A2E49DD14CF437 + +Set 3, vector#214: + key=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + plain=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + cipher=4B281D4833B2F759A216D0E5161C75B2 + decrypted=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + Iterated 100 times=D3C3D7A6954B04626010BFF17AFEAF9F + Iterated 1000 times=82E984BB7A3C832DC2B0B6227E706E77 + +Set 3, vector#215: + key=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + plain=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + cipher=B623FCF0C6DCE576D86F0D16230A630B + decrypted=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + Iterated 100 times=1316FE78A70D449C244F51E0EBB322FB + Iterated 1000 times=4DAA1DF0C371814A56852F8E9CE6D619 + +Set 3, vector#216: + key=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + plain=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + cipher=9A06180B6573D6A2D8527051C021E865 + decrypted=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + Iterated 100 times=6FA1D6EB69B351C5A9F5C19E4F13DF25 + Iterated 1000 times=4E180C71C4A80EDA768E0A3C53EEC844 + +Set 3, vector#217: + key=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + plain=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + cipher=A1157A4EECEB3549FA07D289F221834F + decrypted=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + Iterated 100 times=0A4C01DFE6AA401971D19EFDA4AAC993 + Iterated 1000 times=A4E1A9D924C9030CE666A6C3506F3CB4 + +Set 3, vector#218: + key=DADADADADADADADADADADADADADADADA + plain=DADADADADADADADADADADADADADADADA + cipher=95A3D38B83C8BC7185F0C1EB30619938 + decrypted=DADADADADADADADADADADADADADADADA + Iterated 100 times=07527FF5FBA951ACDFF33EDC5A55EA64 + Iterated 1000 times=85FC8E6D51E9DB8E47A03F04D4960E4C + +Set 3, vector#219: + key=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + plain=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + cipher=977254247E6B09BF36648406ECFF4165 + decrypted=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + Iterated 100 times=B22363B5AE25ED110B966A9355834B22 + Iterated 1000 times=8D74BBD8A984850C4078D908C779F6E9 + +Set 3, vector#220: + key=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + plain=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + cipher=54A51CF443024AF5963B81D593CA197D + decrypted=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + Iterated 100 times=DB87A233477954498484D1F98DEA4B96 + Iterated 1000 times=8C04E165A387CF1AD24F96B045C83E92 + +Set 3, vector#221: + key=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + plain=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + cipher=981799BB303042C7363E2616566496FD + decrypted=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + Iterated 100 times=29163C42DE12809CA31DC646AB63A1BF + Iterated 1000 times=4F0484C8F87907E91BA61F0BD1396B5D + +Set 3, vector#222: + key=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + plain=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + cipher=9CB70A9413C44DDEB482F3A2C818CB35 + decrypted=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + Iterated 100 times=6C829FEE7A7CC17C72DCDE188B7CA5AF + Iterated 1000 times=ACDFD4BDC0CB803773867DAEB17A0080 + +Set 3, vector#223: + key=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + plain=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + cipher=F5C39BB9A32DE3B4CBC6EDBBE427EC37 + decrypted=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + Iterated 100 times=9D971EFE4484409D957FD4DAC145DB44 + Iterated 1000 times=5664FB9858F6986AB4884DE32B635670 + +Set 3, vector#224: + key=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + plain=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + cipher=89FB53B73741EF6EBA27E70FCE5C0257 + decrypted=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + Iterated 100 times=328595354B7CFA39776D9124DAEBCCEC + Iterated 1000 times=A38C321525F2CF837A6924064F9491D1 + +Set 3, vector#225: + key=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + plain=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + cipher=63644C9B4DA9E2512896CE046F73C59A + decrypted=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + Iterated 100 times=4A9631989286A2064194627462CAD8A2 + Iterated 1000 times=6BCFE84214081A58DF20AD116FC023AC + +Set 3, vector#226: + key=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + plain=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + cipher=78FC1F3E95E721494BB6B0121E412A50 + decrypted=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + Iterated 100 times=EB8D8392B58C5BCE63CF7735CA87D133 + Iterated 1000 times=BCBE0160F60E1E68501EBDDADC3C418C + +Set 3, vector#227: + key=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + plain=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + cipher=A2415E2B98B0C5DD184FD039D3EEDF6D + decrypted=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + Iterated 100 times=9765474492393921EFF1202C1E844823 + Iterated 1000 times=D5F00A3D1A5D9EE5B26A9C29A6F9F3F6 + +Set 3, vector#228: + key=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + plain=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + cipher=11F467BCFE36E73BEB7E9D6ECFE1F520 + decrypted=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + Iterated 100 times=9148C2A4AA4C637DA047C5EBA97F5795 + Iterated 1000 times=1D20AA6CB669964B554091D647DF7C68 + +Set 3, vector#229: + key=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + plain=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + cipher=6FB6BB3603B382570C5AE309F550F5A1 + decrypted=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + Iterated 100 times=F55A63647D3885D858189A1785F6F279 + Iterated 1000 times=1AB790AFE6B04BCF3FAAE91CD5A7FB13 + +Set 3, vector#230: + key=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + plain=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + cipher=2F1482C54D03E3D3762208D692BF9926 + decrypted=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + Iterated 100 times=38A4B1CFDF08D0CB3DC98080F4E99B0D + Iterated 1000 times=55A3628261F430CD00398DAAA8CEB15B + +Set 3, vector#231: + key=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + plain=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + cipher=B73426CE8B68CE3DDA139526BA95CCA6 + decrypted=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + Iterated 100 times=45CA7ED09C326DFD1D5D8309FF6811FA + Iterated 1000 times=CAFD81295AE9B5E2F6771961E5DCDA1D + +Set 3, vector#232: + key=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + plain=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + cipher=2090A3BE41316D38746218AE58D6A73F + decrypted=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + Iterated 100 times=534FC4B1E0367A35102A977DED27F71A + Iterated 1000 times=A734F5CF1F90D652F0DB6A378C6BFBFC + +Set 3, vector#233: + key=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + plain=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + cipher=FDCF7DBE5165278204EE8683CFC56DF4 + decrypted=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + Iterated 100 times=930E7A1435742E8F8DD6B07DBEC99A9B + Iterated 1000 times=EA044D1B16B71832246EEAC106B0C9D0 + +Set 3, vector#234: + key=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + plain=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + cipher=54EDC0375C38103C4D2B02A97E294154 + decrypted=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + Iterated 100 times=19F6ACB9E89BCD7FB522A16B1839A193 + Iterated 1000 times=A989837F18D517EB6B752B8AC38FB3CE + +Set 3, vector#235: + key=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + plain=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + cipher=14BBAC7CA245993937984F8730B5D0FB + decrypted=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + Iterated 100 times=B84A3A8824EDCE6883015CA87E42E8CA + Iterated 1000 times=CB446621FBFD44A1491F0B4D75A34340 + +Set 3, vector#236: + key=ECECECECECECECECECECECECECECECEC + plain=ECECECECECECECECECECECECECECECEC + cipher=0874C9C262282005BBE1D1004A071EA9 + decrypted=ECECECECECECECECECECECECECECECEC + Iterated 100 times=9856DDEFFC0A944CEB1083A2970081C9 + Iterated 1000 times=BF5A6C6E7CA4135BFA689CCBF625518B + +Set 3, vector#237: + key=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + plain=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + cipher=49CB7136BCEEC56EE182B2A8818696FE + decrypted=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + Iterated 100 times=ABB2F2A56A463C4B7C038CE639EAE1E3 + Iterated 1000 times=7A19EB1A234F865F26CD6945DC1DC748 + +Set 3, vector#238: + key=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + plain=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + cipher=DC35749364D44C3618C1BC0931CBA594 + decrypted=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + Iterated 100 times=EFAE0972EDF19666143D1ED72895AC55 + Iterated 1000 times=1B788E95CDA80D4FA5BF19FA4BA55D28 + +Set 3, vector#239: + key=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + plain=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + cipher=C9FD1EE848EC8FFCADB716CA115C998C + decrypted=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + Iterated 100 times=00E2E18460D1FDB0FE9C16C786B294DD + Iterated 1000 times=98068FFB22131FFAFE37B56D938715A6 + +Set 3, vector#240: + key=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + plain=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + cipher=B72ABB6EBBDF5E0077C64C92E42B3971 + decrypted=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + Iterated 100 times=E55848906C5BCD9C20E5BF40D78685C5 + Iterated 1000 times=FBFC668541C1AA2441B3878CEEEB2D76 + +Set 3, vector#241: + key=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + plain=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + cipher=8C365D529DFE7CF82B541BBAA3CDB3B5 + decrypted=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + Iterated 100 times=361460EBE50B9EB781036B917B441DBA + Iterated 1000 times=934C7940126DB9D4594C436159F0680A + +Set 3, vector#242: + key=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + plain=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + cipher=FA067359A8AA5962C0D7E9C8D07180C1 + decrypted=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + Iterated 100 times=56B85E6F1D0C2BE428AD5AEAF2FBE13A + Iterated 1000 times=9FA6F3196069EAA1F335E30799770A2B + +Set 3, vector#243: + key=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + plain=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + cipher=0C5A8887D8A607F473E34D9956489517 + decrypted=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + Iterated 100 times=5F1229E1A7D8266ECF8327DA3999A170 + Iterated 1000 times=15DF7DC9DD07C2F194B71CE67F81EE9E + +Set 3, vector#244: + key=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + plain=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + cipher=7CB7741539A1D86EB9C722D45013533A + decrypted=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + Iterated 100 times=0BD71EC112AE4842A3C9983D08A1453A + Iterated 1000 times=C0878658F701DC00CE56E72A54357936 + +Set 3, vector#245: + key=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + plain=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + cipher=7D793CCAB03595AED58F27183CECCF48 + decrypted=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + Iterated 100 times=2AF44A61CFFD304CD8E9092D6D3D9D71 + Iterated 1000 times=4DCC203E19AA2D76A49298DDE0221D46 + +Set 3, vector#246: + key=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + plain=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + cipher=DAA7536C541BA00F7D3C3B0F1A6AF213 + decrypted=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + Iterated 100 times=E237CE71979CB16AC0F10F4B55A4C022 + Iterated 1000 times=98733F6997232ED2278D6B7FF69E48DC + +Set 3, vector#247: + key=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + plain=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + cipher=EF33454DB89E44901BAD87F271822F5B + decrypted=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + Iterated 100 times=2C2B90952D85CA67998C067772C622E3 + Iterated 1000 times=D54129B3CE9BFA1DC973F08EA8DC52F9 + +Set 3, vector#248: + key=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + plain=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + cipher=D01ED639DF3F9B51EF28A8784D2AA9D9 + decrypted=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + Iterated 100 times=8FAF7A04B4FC5DC19E8E9B569C1078F5 + Iterated 1000 times=98DDFB39655D8B144FFECB6BC4B7833A + +Set 3, vector#249: + key=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + plain=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + cipher=9C6E00BB0704C0827806A83CAB3AB543 + decrypted=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + Iterated 100 times=F1DE5D27EFA2C67C13F2587CF36589EC + Iterated 1000 times=CB0A84247CD52ADC9CFBEECFDC7D5F70 + +Set 3, vector#250: + key=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + plain=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + cipher=DC59579DDB36C86CD93926496CD586DC + decrypted=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + Iterated 100 times=3A2269C24F9929EE74B29A4A690544CD + Iterated 1000 times=B53CF5DC03EBCCAC2A5CAEDBFA55176F + +Set 3, vector#251: + key=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + plain=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + cipher=741AFA64FE98A6C13909244D1DB26120 + decrypted=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + Iterated 100 times=D875C76078B2D8354923278CC60CCFED + Iterated 1000 times=8C1A1121AA70988D99BD7B3859272E45 + +Set 3, vector#252: + key=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + plain=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + cipher=9566D3158687E8D0B5852C12B5DE944E + decrypted=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + Iterated 100 times=DAE2B3E075C3AC64E01B708BAF866D9F + Iterated 1000 times=88DD4EC0D2396C2AE4EBF3364D60A0EB + +Set 3, vector#253: + key=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + plain=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + cipher=DD75A29E88E9F4C3FCFB9F1650DADF75 + decrypted=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + Iterated 100 times=5C65AFC48776268C8F934185855E350C + Iterated 1000 times=B5E8A0936ABD52013AEF4C8BEA56428D + +Set 3, vector#254: + key=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + plain=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + cipher=DA8EADFAB91FE8440A05947952235F27 + decrypted=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + Iterated 100 times=ACE8AD4D894D9BF4F75D69F794C0E641 + Iterated 1000 times=051081C4E8E055CE12591AB34EBB5671 + +Set 3, vector#255: + key=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + plain=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + cipher=2A78421B87C7D0924F26113F1D1349B2 + decrypted=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + Iterated 100 times=0A3E8AFBB0AA48257D3E96A2D9A9FAC8 + Iterated 1000 times=7DC516C05873AC2E11621C59F71D9137 + +Test vectors -- set 4 +===================== + +Set 4, vector# 0: + key=000102030405060708090A0B0C0D0E0F + plain=00112233445566778899AABBCCDDEEFF + cipher=BC0F896C2F202862871805418CE171BF + decrypted=00112233445566778899AABBCCDDEEFF + Iterated 100 times=E331A7E5B116DBE7C4EEA5DD08A09C1C + Iterated 1000 times=EE9351ACC5924C790D61E076A40F8378 + +Set 4, vector# 1: + key=2BD6459F82C5B300952C49104881FF48 + plain=EA024714AD5C4D84EA024714AD5C4D84 + cipher=00DCBEB0CD9D9FCD59388E169040EEFF + decrypted=EA024714AD5C4D84EA024714AD5C4D84 + Iterated 100 times=439E72A14FF0A405F31ECE6493A03B35 + Iterated 1000 times=03F48779DD334822D49BAB9FF430AA7C + +Test vectors -- set 5 +===================== + +Set 5, vector# 0: + key=80000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=F72A330011A8B90286CC2E8AD7FDFCB3 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 1: + key=40000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=4C308077925582E9B69F9FA4CA26F69F + encrypted=00000000000000000000000000000000 + +Set 5, vector# 2: + key=20000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=1555BB8B94290FD9A5484D26185B29EF + encrypted=00000000000000000000000000000000 + +Set 5, vector# 3: + key=10000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=A7E63E930341CB4B8C0EA3D288C5C02B + encrypted=00000000000000000000000000000000 + +Set 5, vector# 4: + key=08000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=B55A23987C8FD71B5533E9F7ECC272E6 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 5: + key=04000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=022E16C5BC356AC94752ECF42D64F422 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 6: + key=02000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=375822C49D2397AB096BA1604C6986DD + encrypted=00000000000000000000000000000000 + +Set 5, vector# 7: + key=01000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=158C78618B616B51EDA6842102134738 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 8: + key=00800000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=00244CE44A788A34E160071F61CEAAEA + encrypted=00000000000000000000000000000000 + +Set 5, vector# 9: + key=00400000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=788FBE8520711EDF2DD6D691093E0FA3 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 10: + key=00200000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=AD1A7607705E9B604A278CC6AB56E6D6 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 11: + key=00100000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=5E597C20E3AF5B96DA9B4C60C61DB4C8 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 12: + key=00080000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=911135192C5160FA3E50ED99DCD61C4D + encrypted=00000000000000000000000000000000 + +Set 5, vector# 13: + key=00040000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=A84B570842270C050EED72CF906CC2FA + encrypted=00000000000000000000000000000000 + +Set 5, vector# 14: + key=00020000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=C6C7B246B9DBE3E0BD10ACB9A529C479 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 15: + key=00010000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=4E183D69EAB4685D544D97DA2CE534EC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 16: + key=00008000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=9D3DA70A6ACE75F3839519ADE54A78A0 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 17: + key=00004000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=9A43B2A2A33B9C1CC9FDD02E6E1F5BAC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 18: + key=00002000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=7EC7027B3761EB2A3C9C4A45EDE878B1 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 19: + key=00001000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=EB87DE075BDF494D377F908EDA75F23E + encrypted=00000000000000000000000000000000 + +Set 5, vector# 20: + key=00000800000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=DF19866DC6EC20DC35332C5D2A1D0314 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 21: + key=00000400000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=99C46A1B47B0313DA1F2BFFFF2326FA0 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 22: + key=00000200000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=C827665055CF413569CC467B084B5B13 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 23: + key=00000100000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=712754753FCE7AE3E6244BACC01065BA + encrypted=00000000000000000000000000000000 + +Set 5, vector# 24: + key=00000080000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=0EDB94F6333DF19163746DF1873FF286 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 25: + key=00000040000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=E45BB97A0B317883C13539451CFFD981 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 26: + key=00000020000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=A983921DCCC82EDB7B35378D86118C8E + encrypted=00000000000000000000000000000000 + +Set 5, vector# 27: + key=00000010000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=137D2B2C148278509F6A547CFDA2D077 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 28: + key=00000008000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=C070E6C596AF2344FB47C76BE44E0081 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 29: + key=00000004000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=D7DA341E1AA7C542E5ABDE5E597B8806 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 30: + key=00000002000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=9200B7956616C1A9CA6D3BA38EF2448D + encrypted=00000000000000000000000000000000 + +Set 5, vector# 31: + key=00000001000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=D65C05E499337544A2E508F583F3205F + encrypted=00000000000000000000000000000000 + +Set 5, vector# 32: + key=00000000800000000000000000000000 + cipher=00000000000000000000000000000000 + plain=07D32189C204C2A04233689174F52747 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 33: + key=00000000400000000000000000000000 + cipher=00000000000000000000000000000000 + plain=FF4A16136E538F81FD4CC3B8D5A9F12A + encrypted=00000000000000000000000000000000 + +Set 5, vector# 34: + key=00000000200000000000000000000000 + cipher=00000000000000000000000000000000 + plain=C3B15B31A198A0C8F238C915F2E4743A + encrypted=00000000000000000000000000000000 + +Set 5, vector# 35: + key=00000000100000000000000000000000 + cipher=00000000000000000000000000000000 + plain=4A513433956B6743FB46958B0D4E6144 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 36: + key=00000000080000000000000000000000 + cipher=00000000000000000000000000000000 + plain=8F1C53991C084EDD708F6BA94487EC89 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 37: + key=00000000040000000000000000000000 + cipher=00000000000000000000000000000000 + plain=A6863A262AE4D99A6A68E60E8F321926 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 38: + key=00000000020000000000000000000000 + cipher=00000000000000000000000000000000 + plain=0BC7FC2ACE15ADDF77DC30988A05C17C + encrypted=00000000000000000000000000000000 + +Set 5, vector# 39: + key=00000000010000000000000000000000 + cipher=00000000000000000000000000000000 + plain=3112A9654BC33B30BE349F4544051556 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 40: + key=00000000008000000000000000000000 + cipher=00000000000000000000000000000000 + plain=04651F5F6BB77E46AB840025368D2465 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 41: + key=00000000004000000000000000000000 + cipher=00000000000000000000000000000000 + plain=D99DB3975439BEBCFCC1A7730ED761D8 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 42: + key=00000000002000000000000000000000 + cipher=00000000000000000000000000000000 + plain=18663E62EF4998D6E605AF7C0AEAE291 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 43: + key=00000000001000000000000000000000 + cipher=00000000000000000000000000000000 + plain=8802EF1803280904125EE05C63FDA019 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 44: + key=00000000000800000000000000000000 + cipher=00000000000000000000000000000000 + plain=226A443BC4E69F94854689E7D639F2FF + encrypted=00000000000000000000000000000000 + +Set 5, vector# 45: + key=00000000000400000000000000000000 + cipher=00000000000000000000000000000000 + plain=23C64AC2FFF73CD054BE4F54BA76B991 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 46: + key=00000000000200000000000000000000 + cipher=00000000000000000000000000000000 + plain=1CD9876B5174B9441BD80242D3F7C0F8 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 47: + key=00000000000100000000000000000000 + cipher=00000000000000000000000000000000 + plain=CEE81D92D165221A117FD8CB9D011BB1 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 48: + key=00000000000080000000000000000000 + cipher=00000000000000000000000000000000 + plain=0A8364B57106D9345DFC313DA564D1E2 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 49: + key=00000000000040000000000000000000 + cipher=00000000000000000000000000000000 + plain=1AB8F9926D51A5BC24ED414909F0CBA5 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 50: + key=00000000000020000000000000000000 + cipher=00000000000000000000000000000000 + plain=034401DFC12F16BDACBCE1F5647C1682 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 51: + key=00000000000010000000000000000000 + cipher=00000000000000000000000000000000 + plain=41ABB1F3BCBA4D6A53AF4F91B03B9E18 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 52: + key=00000000000008000000000000000000 + cipher=00000000000000000000000000000000 + plain=B57F5987D273AFB27415997A3EFD8740 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 53: + key=00000000000004000000000000000000 + cipher=00000000000000000000000000000000 + plain=4F9F602FAEF5020D0AC8CAE349BBB7D5 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 54: + key=00000000000002000000000000000000 + cipher=00000000000000000000000000000000 + plain=B0C7868825897B95E42ABAF92DEDC4AA + encrypted=00000000000000000000000000000000 + +Set 5, vector# 55: + key=00000000000001000000000000000000 + cipher=00000000000000000000000000000000 + plain=882081708DFA5E8156D90BFADC6C8200 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 56: + key=00000000000000800000000000000000 + cipher=00000000000000000000000000000000 + plain=916FA6AE675598C92B3756C7D88E7456 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 57: + key=00000000000000400000000000000000 + cipher=00000000000000000000000000000000 + plain=88A8980286033972DB83C13F0128C955 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 58: + key=00000000000000200000000000000000 + cipher=00000000000000000000000000000000 + plain=B9F49BC52BCC3ACB1BF65302C9800B52 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 59: + key=00000000000000100000000000000000 + cipher=00000000000000000000000000000000 + plain=36264DE9103A0D02CDE42BBD1F0028B9 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 60: + key=00000000000000080000000000000000 + cipher=00000000000000000000000000000000 + plain=D47FEFAFA9D2E72E0DD05DF565402AE6 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 61: + key=00000000000000040000000000000000 + cipher=00000000000000000000000000000000 + plain=1EAE78DFBCD7233E27CAF4BE56137846 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 62: + key=00000000000000020000000000000000 + cipher=00000000000000000000000000000000 + plain=2FF6E609AE38F49BC50FB28DAFC53809 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 63: + key=00000000000000010000000000000000 + cipher=00000000000000000000000000000000 + plain=2CD64A8948BAC4160C08C1652DADB12A + encrypted=00000000000000000000000000000000 + +Set 5, vector# 64: + key=00000000000000008000000000000000 + cipher=00000000000000000000000000000000 + plain=E601549E0C7EC22686E34B03DB2ED6F1 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 65: + key=00000000000000004000000000000000 + cipher=00000000000000000000000000000000 + plain=CE78FB2A81CD3EFA8CF8DF286F0E1C97 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 66: + key=00000000000000002000000000000000 + cipher=00000000000000000000000000000000 + plain=C9BB7386CCCAF71F08F218035D30CF66 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 67: + key=00000000000000001000000000000000 + cipher=00000000000000000000000000000000 + plain=747705C2FA19F2E11470BFCF4A5A8933 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 68: + key=00000000000000000800000000000000 + cipher=00000000000000000000000000000000 + plain=F48463664DDC2AE3B61CD9E32F9C1C45 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 69: + key=00000000000000000400000000000000 + cipher=00000000000000000000000000000000 + plain=8DD03371DEB0ADC7B9E8C920999DC44F + encrypted=00000000000000000000000000000000 + +Set 5, vector# 70: + key=00000000000000000200000000000000 + cipher=00000000000000000000000000000000 + plain=8B1274559FB898BFB50780050476EACE + encrypted=00000000000000000000000000000000 + +Set 5, vector# 71: + key=00000000000000000100000000000000 + cipher=00000000000000000000000000000000 + plain=68E1C3A5BB4B90B09FBD6381A05C5FBA + encrypted=00000000000000000000000000000000 + +Set 5, vector# 72: + key=00000000000000000080000000000000 + cipher=00000000000000000000000000000000 + plain=B128264DC3E836E186144843B98D4DFC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 73: + key=00000000000000000040000000000000 + cipher=00000000000000000000000000000000 + plain=F6DE27CC7FC53A00BF874F770A1FE82D + encrypted=00000000000000000000000000000000 + +Set 5, vector# 74: + key=00000000000000000020000000000000 + cipher=00000000000000000000000000000000 + plain=4E420AEEBE70FC3D5FF1869EC16843F9 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 75: + key=00000000000000000010000000000000 + cipher=00000000000000000000000000000000 + plain=92D41E89809FF137D5A4CAAC7988B2D0 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 76: + key=00000000000000000008000000000000 + cipher=00000000000000000000000000000000 + plain=B77F30483C68340DFBB19B2965C4AD09 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 77: + key=00000000000000000004000000000000 + cipher=00000000000000000000000000000000 + plain=74A1874E9F73E922B8FE69A643725AFC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 78: + key=00000000000000000002000000000000 + cipher=00000000000000000000000000000000 + plain=B1D6C21EA4B422EC781448B622F1B2EA + encrypted=00000000000000000000000000000000 + +Set 5, vector# 79: + key=00000000000000000001000000000000 + cipher=00000000000000000000000000000000 + plain=6DA24DF31D0241BFDF132513771015FC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 80: + key=00000000000000000000800000000000 + cipher=00000000000000000000000000000000 + plain=1BD193AFB3D7ACEC0F675A0C640B3122 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 81: + key=00000000000000000000400000000000 + cipher=00000000000000000000000000000000 + plain=35EEB711A3C768CEEA39BB2236361188 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 82: + key=00000000000000000000200000000000 + cipher=00000000000000000000000000000000 + plain=8C781D12A70A087FE4D5C06592FC4631 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 83: + key=00000000000000000000100000000000 + cipher=00000000000000000000000000000000 + plain=FE3DC31C07E23DF7EFE10E121AD68CA1 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 84: + key=00000000000000000000080000000000 + cipher=00000000000000000000000000000000 + plain=85FC9114A677E5F508D8CB08B8846A79 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 85: + key=00000000000000000000040000000000 + cipher=00000000000000000000000000000000 + plain=71B93875C2E6C5A56127AB409F5A1928 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 86: + key=00000000000000000000020000000000 + cipher=00000000000000000000000000000000 + plain=6CBCB5064E9E74F81E6DAEA4176F22EB + encrypted=00000000000000000000000000000000 + +Set 5, vector# 87: + key=00000000000000000000010000000000 + cipher=00000000000000000000000000000000 + plain=5DCCDEE053D337E9BE1B81F6B614DA0B + encrypted=00000000000000000000000000000000 + +Set 5, vector# 88: + key=00000000000000000000008000000000 + cipher=00000000000000000000000000000000 + plain=4ADB016534EAB6AEF81D7DAD857720C5 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 89: + key=00000000000000000000004000000000 + cipher=00000000000000000000000000000000 + plain=71AF90C796F8ADD0D1A1DB5867EEFB7A + encrypted=00000000000000000000000000000000 + +Set 5, vector# 90: + key=00000000000000000000002000000000 + cipher=00000000000000000000000000000000 + plain=8BB6BF22910A5DE8CBB6604B9E3921D3 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 91: + key=00000000000000000000001000000000 + cipher=00000000000000000000000000000000 + plain=15B4E65B677697CCD843D1193FB649DA + encrypted=00000000000000000000000000000000 + +Set 5, vector# 92: + key=00000000000000000000000800000000 + cipher=00000000000000000000000000000000 + plain=96E36B1E519E8787E4387B3204836395 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 93: + key=00000000000000000000000400000000 + cipher=00000000000000000000000000000000 + plain=BF1F8EC152B0D1DB55CAB054A8BCB2BC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 94: + key=00000000000000000000000200000000 + cipher=00000000000000000000000000000000 + plain=B710E78328E1F653C9C373360147D6B0 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 95: + key=00000000000000000000000100000000 + cipher=00000000000000000000000000000000 + plain=66741495AB4F8D94C136C1F3B50CF1AC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 96: + key=00000000000000000000000080000000 + cipher=00000000000000000000000000000000 + plain=1D86E257379A15922C07A320AB5D3D81 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 97: + key=00000000000000000000000040000000 + cipher=00000000000000000000000000000000 + plain=5AD31DEAEEA77A23AF7157B111E631B7 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 98: + key=00000000000000000000000020000000 + cipher=00000000000000000000000000000000 + plain=ABDAA50896D7DDF9CA35F22A7BED1AFF + encrypted=00000000000000000000000000000000 + +Set 5, vector# 99: + key=00000000000000000000000010000000 + cipher=00000000000000000000000000000000 + plain=BFA4D0F8F1EC7A9BCCF039B6E820C4F8 + encrypted=00000000000000000000000000000000 + +Set 5, vector#100: + key=00000000000000000000000008000000 + cipher=00000000000000000000000000000000 + plain=7E174C43F64176C067515C5F5C104A53 + encrypted=00000000000000000000000000000000 + +Set 5, vector#101: + key=00000000000000000000000004000000 + cipher=00000000000000000000000000000000 + plain=E99D0076EFF93D99EEED42A385D8C578 + encrypted=00000000000000000000000000000000 + +Set 5, vector#102: + key=00000000000000000000000002000000 + cipher=00000000000000000000000000000000 + plain=DE29D3A47EDB5109C3F55F0E2A835FBF + encrypted=00000000000000000000000000000000 + +Set 5, vector#103: + key=00000000000000000000000001000000 + cipher=00000000000000000000000000000000 + plain=10399AD381762D58F28D8FD27BBF8CA5 + encrypted=00000000000000000000000000000000 + +Set 5, vector#104: + key=00000000000000000000000000800000 + cipher=00000000000000000000000000000000 + plain=E9F244E1AF67991AC0C1FA405BD5150E + encrypted=00000000000000000000000000000000 + +Set 5, vector#105: + key=00000000000000000000000000400000 + cipher=00000000000000000000000000000000 + plain=649BF5D92E83948F9E5B414F1484CE23 + encrypted=00000000000000000000000000000000 + +Set 5, vector#106: + key=00000000000000000000000000200000 + cipher=00000000000000000000000000000000 + plain=BFE417911845B210D9A7F34031FE59F0 + encrypted=00000000000000000000000000000000 + +Set 5, vector#107: + key=00000000000000000000000000100000 + cipher=00000000000000000000000000000000 + plain=95EC6BF7319352EBF74E9FA09407A590 + encrypted=00000000000000000000000000000000 + +Set 5, vector#108: + key=00000000000000000000000000080000 + cipher=00000000000000000000000000000000 + plain=A200E781537E58028F1DCE035172B37A + encrypted=00000000000000000000000000000000 + +Set 5, vector#109: + key=00000000000000000000000000040000 + cipher=00000000000000000000000000000000 + plain=8A8C62219921CB9CB164595128C0491A + encrypted=00000000000000000000000000000000 + +Set 5, vector#110: + key=00000000000000000000000000020000 + cipher=00000000000000000000000000000000 + plain=4739629C9087032AECF485EA53567B36 + encrypted=00000000000000000000000000000000 + +Set 5, vector#111: + key=00000000000000000000000000010000 + cipher=00000000000000000000000000000000 + plain=D2C8F3981A3926275BD2E2E0E67595F8 + encrypted=00000000000000000000000000000000 + +Set 5, vector#112: + key=00000000000000000000000000008000 + cipher=00000000000000000000000000000000 + plain=BF08FC809F2A753B9A5C733F40E06821 + encrypted=00000000000000000000000000000000 + +Set 5, vector#113: + key=00000000000000000000000000004000 + cipher=00000000000000000000000000000000 + plain=D278C933375A1778A75FFEAB0F603F37 + encrypted=00000000000000000000000000000000 + +Set 5, vector#114: + key=00000000000000000000000000002000 + cipher=00000000000000000000000000000000 + plain=0E25DA88275120077CE78D5CE889A2A5 + encrypted=00000000000000000000000000000000 + +Set 5, vector#115: + key=00000000000000000000000000001000 + cipher=00000000000000000000000000000000 + plain=E422AE67015798BD3F07749619E873D7 + encrypted=00000000000000000000000000000000 + +Set 5, vector#116: + key=00000000000000000000000000000800 + cipher=00000000000000000000000000000000 + plain=60223B71AFBB1643EEDE6E9B7B937ACF + encrypted=00000000000000000000000000000000 + +Set 5, vector#117: + key=00000000000000000000000000000400 + cipher=00000000000000000000000000000000 + plain=7F2FE9D3D780633648443DA7AC7B5FEC + encrypted=00000000000000000000000000000000 + +Set 5, vector#118: + key=00000000000000000000000000000200 + cipher=00000000000000000000000000000000 + plain=B9FF03A284E34B35058F60A8A613E4B5 + encrypted=00000000000000000000000000000000 + +Set 5, vector#119: + key=00000000000000000000000000000100 + cipher=00000000000000000000000000000000 + plain=A290BB98876A64C53F5C6A593B993DE1 + encrypted=00000000000000000000000000000000 + +Set 5, vector#120: + key=00000000000000000000000000000080 + cipher=00000000000000000000000000000000 + plain=F79334BBF9F796A4F363622031969C81 + encrypted=00000000000000000000000000000000 + +Set 5, vector#121: + key=00000000000000000000000000000040 + cipher=00000000000000000000000000000000 + plain=4CE80B36F2452977210C461C2DBA2F72 + encrypted=00000000000000000000000000000000 + +Set 5, vector#122: + key=00000000000000000000000000000020 + cipher=00000000000000000000000000000000 + plain=401430E96F42E971B60A55A74E1669EA + encrypted=00000000000000000000000000000000 + +Set 5, vector#123: + key=00000000000000000000000000000010 + cipher=00000000000000000000000000000000 + plain=6E9E2871F590CE60BA3B58894232D044 + encrypted=00000000000000000000000000000000 + +Set 5, vector#124: + key=00000000000000000000000000000008 + cipher=00000000000000000000000000000000 + plain=B464CF1E25D6B86E83B024FC0C6A9AE6 + encrypted=00000000000000000000000000000000 + +Set 5, vector#125: + key=00000000000000000000000000000004 + cipher=00000000000000000000000000000000 + plain=27049D26AB4325C7DE065FFAACAD3AA1 + encrypted=00000000000000000000000000000000 + +Set 5, vector#126: + key=00000000000000000000000000000002 + cipher=00000000000000000000000000000000 + plain=BC39D4274308CB87029EAB3BA1E04F51 + encrypted=00000000000000000000000000000000 + +Set 5, vector#127: + key=00000000000000000000000000000001 + cipher=00000000000000000000000000000000 + plain=0B7A3ACBF6CC1E861453E9D2EBC54B16 + encrypted=00000000000000000000000000000000 + +Test vectors -- set 6 +===================== + +Set 6, vector# 0: + key=00000000000000000000000000000000 + cipher=80000000000000000000000000000000 + plain=C612324403CE64FBF20F6538B5491FE0 + encrypted=80000000000000000000000000000000 + +Set 6, vector# 1: + key=00000000000000000000000000000000 + cipher=40000000000000000000000000000000 + plain=C094C474665F4E5145DD158C79D394AF + encrypted=40000000000000000000000000000000 + +Set 6, vector# 2: + key=00000000000000000000000000000000 + cipher=20000000000000000000000000000000 + plain=ED1FF61BCC38719EF11F75F55CE5CF7C + encrypted=20000000000000000000000000000000 + +Set 6, vector# 3: + key=00000000000000000000000000000000 + cipher=10000000000000000000000000000000 + plain=51519F74F62C5D584596CB6B19B14E94 + encrypted=10000000000000000000000000000000 + +Set 6, vector# 4: + key=00000000000000000000000000000000 + cipher=08000000000000000000000000000000 + plain=20B40F0C335B665226451BAA29187274 + encrypted=08000000000000000000000000000000 + +Set 6, vector# 5: + key=00000000000000000000000000000000 + cipher=04000000000000000000000000000000 + plain=228B04C090007458D0D8769864824F02 + encrypted=04000000000000000000000000000000 + +Set 6, vector# 6: + key=00000000000000000000000000000000 + cipher=02000000000000000000000000000000 + plain=38B42B2DF422FC71ED8AA2AFCE74C434 + encrypted=02000000000000000000000000000000 + +Set 6, vector# 7: + key=00000000000000000000000000000000 + cipher=01000000000000000000000000000000 + plain=B17CF73C067BAC825F82D1CF09A3EB81 + encrypted=01000000000000000000000000000000 + +Set 6, vector# 8: + key=00000000000000000000000000000000 + cipher=00800000000000000000000000000000 + plain=AA5D6BB4DF1028AFBF239335BB12B69E + encrypted=00800000000000000000000000000000 + +Set 6, vector# 9: + key=00000000000000000000000000000000 + cipher=00400000000000000000000000000000 + plain=068178D13825DDD87C11A5AFC8AEDE68 + encrypted=00400000000000000000000000000000 + +Set 6, vector# 10: + key=00000000000000000000000000000000 + cipher=00200000000000000000000000000000 + plain=69149C906B7270F80D7E35DC107E5C32 + encrypted=00200000000000000000000000000000 + +Set 6, vector# 11: + key=00000000000000000000000000000000 + cipher=00100000000000000000000000000000 + plain=5AB4D37462182FD43815CAB5F8290497 + encrypted=00100000000000000000000000000000 + +Set 6, vector# 12: + key=00000000000000000000000000000000 + cipher=00080000000000000000000000000000 + plain=E8283DA9243C2E2D37054C352A2D56CA + encrypted=00080000000000000000000000000000 + +Set 6, vector# 13: + key=00000000000000000000000000000000 + cipher=00040000000000000000000000000000 + plain=E845895A4E8D0FF87C284F4D8E21DB8C + encrypted=00040000000000000000000000000000 + +Set 6, vector# 14: + key=00000000000000000000000000000000 + cipher=00020000000000000000000000000000 + plain=0F4FF61D50FE60A5E5DBDC541427CD84 + encrypted=00020000000000000000000000000000 + +Set 6, vector# 15: + key=00000000000000000000000000000000 + cipher=00010000000000000000000000000000 + plain=3E7E67FF2E72CBB68350AAF8901E0009 + encrypted=00010000000000000000000000000000 + +Set 6, vector# 16: + key=00000000000000000000000000000000 + cipher=00008000000000000000000000000000 + plain=2EF8C924FA99E2DCEBAF22B1960FF853 + encrypted=00008000000000000000000000000000 + +Set 6, vector# 17: + key=00000000000000000000000000000000 + cipher=00004000000000000000000000000000 + plain=792AD43BB748945CB23FBD1BF362F9D2 + encrypted=00004000000000000000000000000000 + +Set 6, vector# 18: + key=00000000000000000000000000000000 + cipher=00002000000000000000000000000000 + plain=5BA92A89C86EE92E265C3150119D6127 + encrypted=00002000000000000000000000000000 + +Set 6, vector# 19: + key=00000000000000000000000000000000 + cipher=00001000000000000000000000000000 + plain=B74C545B834662064E8A0180FA7F3E35 + encrypted=00001000000000000000000000000000 + +Set 6, vector# 20: + key=00000000000000000000000000000000 + cipher=00000800000000000000000000000000 + plain=E0BB06ECBAC33F615B10EE4577FA8D1C + encrypted=00000800000000000000000000000000 + +Set 6, vector# 21: + key=00000000000000000000000000000000 + cipher=00000400000000000000000000000000 + plain=F8CF02DF048D8DE2F7059DAE784A3643 + encrypted=00000400000000000000000000000000 + +Set 6, vector# 22: + key=00000000000000000000000000000000 + cipher=00000200000000000000000000000000 + plain=85200ACFCEBE49CDF480C66AB5A097E4 + encrypted=00000200000000000000000000000000 + +Set 6, vector# 23: + key=00000000000000000000000000000000 + cipher=00000100000000000000000000000000 + plain=6C3F07031C2B2FE01313172289645655 + encrypted=00000100000000000000000000000000 + +Set 6, vector# 24: + key=00000000000000000000000000000000 + cipher=00000080000000000000000000000000 + plain=F917F5817DEC3D7F44ADCE8A89DF2AB2 + encrypted=00000080000000000000000000000000 + +Set 6, vector# 25: + key=00000000000000000000000000000000 + cipher=00000040000000000000000000000000 + plain=4B1327AFBF6F3A98BBA3C603BCF9EB05 + encrypted=00000040000000000000000000000000 + +Set 6, vector# 26: + key=00000000000000000000000000000000 + cipher=00000020000000000000000000000000 + plain=11F997AB449C2109EA0F397AA7386DD3 + encrypted=00000020000000000000000000000000 + +Set 6, vector# 27: + key=00000000000000000000000000000000 + cipher=00000010000000000000000000000000 + plain=FFBE8724508CB1F818AD98C54DF02819 + encrypted=00000010000000000000000000000000 + +Set 6, vector# 28: + key=00000000000000000000000000000000 + cipher=00000008000000000000000000000000 + plain=9F9B2F68D3F07D6844F471C2EE5C0919 + encrypted=00000008000000000000000000000000 + +Set 6, vector# 29: + key=00000000000000000000000000000000 + cipher=00000004000000000000000000000000 + plain=61CDF1252BD22C03CB9A4ED360947C69 + encrypted=00000004000000000000000000000000 + +Set 6, vector# 30: + key=00000000000000000000000000000000 + cipher=00000002000000000000000000000000 + plain=C350DD38C0B8309A03734C6DF37A7506 + encrypted=00000002000000000000000000000000 + +Set 6, vector# 31: + key=00000000000000000000000000000000 + cipher=00000001000000000000000000000000 + plain=41F0ED2F985732FE9DAB173664DA5BA3 + encrypted=00000001000000000000000000000000 + +Set 6, vector# 32: + key=00000000000000000000000000000000 + cipher=00000000800000000000000000000000 + plain=CCA24BA6AF51AA64CF7DD92B94149B0B + encrypted=00000000800000000000000000000000 + +Set 6, vector# 33: + key=00000000000000000000000000000000 + cipher=00000000400000000000000000000000 + plain=35DD7AF13E59FC9B91DE139B47A90AB6 + encrypted=00000000400000000000000000000000 + +Set 6, vector# 34: + key=00000000000000000000000000000000 + cipher=00000000200000000000000000000000 + plain=BAE6B1731B7CDD6F583F981DD0CAD76B + encrypted=00000000200000000000000000000000 + +Set 6, vector# 35: + key=00000000000000000000000000000000 + cipher=00000000100000000000000000000000 + plain=C629D55A3E2B4D95E9753AD724532980 + encrypted=00000000100000000000000000000000 + +Set 6, vector# 36: + key=00000000000000000000000000000000 + cipher=00000000080000000000000000000000 + plain=61C9679E8492F5DA8BFC1855F9D3577C + encrypted=00000000080000000000000000000000 + +Set 6, vector# 37: + key=00000000000000000000000000000000 + cipher=00000000040000000000000000000000 + plain=3E5D8A62F23B6036D9849F7F6DC1121B + encrypted=00000000040000000000000000000000 + +Set 6, vector# 38: + key=00000000000000000000000000000000 + cipher=00000000020000000000000000000000 + plain=2259362A5DC02D03719F91E2550B3A9A + encrypted=00000000020000000000000000000000 + +Set 6, vector# 39: + key=00000000000000000000000000000000 + cipher=00000000010000000000000000000000 + plain=4512C27E7B4BC3299882C7B24818C40B + encrypted=00000000010000000000000000000000 + +Set 6, vector# 40: + key=00000000000000000000000000000000 + cipher=00000000008000000000000000000000 + plain=D8F27FFBDC0486665703FE5D01CFC7FA + encrypted=00000000008000000000000000000000 + +Set 6, vector# 41: + key=00000000000000000000000000000000 + cipher=00000000004000000000000000000000 + plain=867D58F0627123A7FBDB669C75E531D5 + encrypted=00000000004000000000000000000000 + +Set 6, vector# 42: + key=00000000000000000000000000000000 + cipher=00000000002000000000000000000000 + plain=C91D9CDD2B45C690A3BEB52B7DD17BC7 + encrypted=00000000002000000000000000000000 + +Set 6, vector# 43: + key=00000000000000000000000000000000 + cipher=00000000001000000000000000000000 + plain=B295DFD94895C8142D9B21EE91922979 + encrypted=00000000001000000000000000000000 + +Set 6, vector# 44: + key=00000000000000000000000000000000 + cipher=00000000000800000000000000000000 + plain=B8CB54B7EF3AA0AE305C4FF60DE9F886 + encrypted=00000000000800000000000000000000 + +Set 6, vector# 45: + key=00000000000000000000000000000000 + cipher=00000000000400000000000000000000 + plain=26EFB97C4511F76029A827B53BDE3704 + encrypted=00000000000400000000000000000000 + +Set 6, vector# 46: + key=00000000000000000000000000000000 + cipher=00000000000200000000000000000000 + plain=52C1AC894429DB5D97E12E4C16C0D47F + encrypted=00000000000200000000000000000000 + +Set 6, vector# 47: + key=00000000000000000000000000000000 + cipher=00000000000100000000000000000000 + plain=F807FE08C9E540DF3AD98F2D0AD47A7F + encrypted=00000000000100000000000000000000 + +Set 6, vector# 48: + key=00000000000000000000000000000000 + cipher=00000000000080000000000000000000 + plain=8FA7D8A535CBB9D237BAB94ACDFA2EF2 + encrypted=00000000000080000000000000000000 + +Set 6, vector# 49: + key=00000000000000000000000000000000 + cipher=00000000000040000000000000000000 + plain=5B995E90831BA9CD484DCB8AC2E9DBF0 + encrypted=00000000000040000000000000000000 + +Set 6, vector# 50: + key=00000000000000000000000000000000 + cipher=00000000000020000000000000000000 + plain=23F8BFCF3DF6A9BEC2074B249EE62099 + encrypted=00000000000020000000000000000000 + +Set 6, vector# 51: + key=00000000000000000000000000000000 + cipher=00000000000010000000000000000000 + plain=FCC00BFA3F764B85608593BD60F704A7 + encrypted=00000000000010000000000000000000 + +Set 6, vector# 52: + key=00000000000000000000000000000000 + cipher=00000000000008000000000000000000 + plain=E7E88C961578D3B795C9B8F253580925 + encrypted=00000000000008000000000000000000 + +Set 6, vector# 53: + key=00000000000000000000000000000000 + cipher=00000000000004000000000000000000 + plain=5754EF66D860062F894256926EC6B89F + encrypted=00000000000004000000000000000000 + +Set 6, vector# 54: + key=00000000000000000000000000000000 + cipher=00000000000002000000000000000000 + plain=6ACA0BF9219908934F3966B13F983F3D + encrypted=00000000000002000000000000000000 + +Set 6, vector# 55: + key=00000000000000000000000000000000 + cipher=00000000000001000000000000000000 + plain=99F6B40097B3897D353F360119E228DC + encrypted=00000000000001000000000000000000 + +Set 6, vector# 56: + key=00000000000000000000000000000000 + cipher=00000000000000800000000000000000 + plain=2C32938E435922D8DDF2E36C7449BCE0 + encrypted=00000000000000800000000000000000 + +Set 6, vector# 57: + key=00000000000000000000000000000000 + cipher=00000000000000400000000000000000 + plain=7BC7D719C08C2A60EBD12454B9CEECDA + encrypted=00000000000000400000000000000000 + +Set 6, vector# 58: + key=00000000000000000000000000000000 + cipher=00000000000000200000000000000000 + plain=3D2618496FFFD4C40351737CE0FF7E80 + encrypted=00000000000000200000000000000000 + +Set 6, vector# 59: + key=00000000000000000000000000000000 + cipher=00000000000000100000000000000000 + plain=A933BF8F061354875E1EE47A7FAB3D2A + encrypted=00000000000000100000000000000000 + +Set 6, vector# 60: + key=00000000000000000000000000000000 + cipher=00000000000000080000000000000000 + plain=3E6FBCEE2A7EE662F0A8E25F6021BF8B + encrypted=00000000000000080000000000000000 + +Set 6, vector# 61: + key=00000000000000000000000000000000 + cipher=00000000000000040000000000000000 + plain=11F2FFDDD6181B146866F5901395A4F4 + encrypted=00000000000000040000000000000000 + +Set 6, vector# 62: + key=00000000000000000000000000000000 + cipher=00000000000000020000000000000000 + plain=FA1E364D4603E29FC1DA2A3540D8C5C8 + encrypted=00000000000000020000000000000000 + +Set 6, vector# 63: + key=00000000000000000000000000000000 + cipher=00000000000000010000000000000000 + plain=26AD279BC088D1CBE1CF4C6CC71E3F8B + encrypted=00000000000000010000000000000000 + +Set 6, vector# 64: + key=00000000000000000000000000000000 + cipher=00000000000000008000000000000000 + plain=503B10093CE05009C48EE1F60F570FA6 + encrypted=00000000000000008000000000000000 + +Set 6, vector# 65: + key=00000000000000000000000000000000 + cipher=00000000000000004000000000000000 + plain=72BC16B07F26CE021A827758C361F5A9 + encrypted=00000000000000004000000000000000 + +Set 6, vector# 66: + key=00000000000000000000000000000000 + cipher=00000000000000002000000000000000 + plain=C0E8400AADF8F3B1A59EFFC45D6BCA41 + encrypted=00000000000000002000000000000000 + +Set 6, vector# 67: + key=00000000000000000000000000000000 + cipher=00000000000000001000000000000000 + plain=C0716EE24704B1101423753AE3FD4DA8 + encrypted=00000000000000001000000000000000 + +Set 6, vector# 68: + key=00000000000000000000000000000000 + cipher=00000000000000000800000000000000 + plain=504A89B4944479B5F46A3D940DE00F8C + encrypted=00000000000000000800000000000000 + +Set 6, vector# 69: + key=00000000000000000000000000000000 + cipher=00000000000000000400000000000000 + plain=6D81AD406EE2E25D1C7FD53BE82D50ED + encrypted=00000000000000000400000000000000 + +Set 6, vector# 70: + key=00000000000000000000000000000000 + cipher=00000000000000000200000000000000 + plain=721A5BAD0E21848E0BC3FBE5C3131845 + encrypted=00000000000000000200000000000000 + +Set 6, vector# 71: + key=00000000000000000000000000000000 + cipher=00000000000000000100000000000000 + plain=2CD1F5CC794367FB507C99B863421C6F + encrypted=00000000000000000100000000000000 + +Set 6, vector# 72: + key=00000000000000000000000000000000 + cipher=00000000000000000080000000000000 + plain=8954A224B99641EF53E8F8BBE486D99F + encrypted=00000000000000000080000000000000 + +Set 6, vector# 73: + key=00000000000000000000000000000000 + cipher=00000000000000000040000000000000 + plain=ED75C93CF1AFF8AAB76C8E2EA68E8F75 + encrypted=00000000000000000040000000000000 + +Set 6, vector# 74: + key=00000000000000000000000000000000 + cipher=00000000000000000020000000000000 + plain=A1D6FFC94D96C2C6A36111EC66418F14 + encrypted=00000000000000000020000000000000 + +Set 6, vector# 75: + key=00000000000000000000000000000000 + cipher=00000000000000000010000000000000 + plain=A92F6F272CEECC8E0602CBC0E86CC391 + encrypted=00000000000000000010000000000000 + +Set 6, vector# 76: + key=00000000000000000000000000000000 + cipher=00000000000000000008000000000000 + plain=E5482B0853A72AC66E6756D573621982 + encrypted=00000000000000000008000000000000 + +Set 6, vector# 77: + key=00000000000000000000000000000000 + cipher=00000000000000000004000000000000 + plain=C013B3D2A5B469E3DF3E5B2F0E45FA3B + encrypted=00000000000000000004000000000000 + +Set 6, vector# 78: + key=00000000000000000000000000000000 + cipher=00000000000000000002000000000000 + plain=73B380CDA6F4AFFFB550DDD330DFC726 + encrypted=00000000000000000002000000000000 + +Set 6, vector# 79: + key=00000000000000000000000000000000 + cipher=00000000000000000001000000000000 + plain=8A4D11C018CB381BDEA40012AD021693 + encrypted=00000000000000000001000000000000 + +Set 6, vector# 80: + key=00000000000000000000000000000000 + cipher=00000000000000000000800000000000 + plain=4711135E7B01D1ACE7266FDBAF4A93BC + encrypted=00000000000000000000800000000000 + +Set 6, vector# 81: + key=00000000000000000000000000000000 + cipher=00000000000000000000400000000000 + plain=996E892574B6D5FAA88AFA87AC078D4F + encrypted=00000000000000000000400000000000 + +Set 6, vector# 82: + key=00000000000000000000000000000000 + cipher=00000000000000000000200000000000 + plain=2FA7B2DD167DB865CAED915896B9805E + encrypted=00000000000000000000200000000000 + +Set 6, vector# 83: + key=00000000000000000000000000000000 + cipher=00000000000000000000100000000000 + plain=220EC5066E3A8D07C28C423BEDCED89C + encrypted=00000000000000000000100000000000 + +Set 6, vector# 84: + key=00000000000000000000000000000000 + cipher=00000000000000000000080000000000 + plain=F9F21B82117DF676278B085B19C0AB38 + encrypted=00000000000000000000080000000000 + +Set 6, vector# 85: + key=00000000000000000000000000000000 + cipher=00000000000000000000040000000000 + plain=7DF3B3C358C69E7C46892138F1C5A2BF + encrypted=00000000000000000000040000000000 + +Set 6, vector# 86: + key=00000000000000000000000000000000 + cipher=00000000000000000000020000000000 + plain=9BD2E7E3D826E60D675B1E57953B5819 + encrypted=00000000000000000000020000000000 + +Set 6, vector# 87: + key=00000000000000000000000000000000 + cipher=00000000000000000000010000000000 + plain=5D27A565F961DA46B6A285BED4CF9DB8 + encrypted=00000000000000000000010000000000 + +Set 6, vector# 88: + key=00000000000000000000000000000000 + cipher=00000000000000000000008000000000 + plain=87AE121E0D5783E042D07E89B637B8AC + encrypted=00000000000000000000008000000000 + +Set 6, vector# 89: + key=00000000000000000000000000000000 + cipher=00000000000000000000004000000000 + plain=D7C5ED1E1150F89E2E1B98905A160B14 + encrypted=00000000000000000000004000000000 + +Set 6, vector# 90: + key=00000000000000000000000000000000 + cipher=00000000000000000000002000000000 + plain=3F8ACD93589110D3B9E60D5B3633B936 + encrypted=00000000000000000000002000000000 + +Set 6, vector# 91: + key=00000000000000000000000000000000 + cipher=00000000000000000000001000000000 + plain=50C9F9B49C058AA97B7A7B20EC288855 + encrypted=00000000000000000000001000000000 + +Set 6, vector# 92: + key=00000000000000000000000000000000 + cipher=00000000000000000000000800000000 + plain=0B46C4C9331B03FC4E276E817BD918E0 + encrypted=00000000000000000000000800000000 + +Set 6, vector# 93: + key=00000000000000000000000000000000 + cipher=00000000000000000000000400000000 + plain=60FC999AE0C33680C76060737598915F + encrypted=00000000000000000000000400000000 + +Set 6, vector# 94: + key=00000000000000000000000000000000 + cipher=00000000000000000000000200000000 + plain=C5662D403C3E1FDAAAAC99366EBC1EA8 + encrypted=00000000000000000000000200000000 + +Set 6, vector# 95: + key=00000000000000000000000000000000 + cipher=00000000000000000000000100000000 + plain=ECB38B453BD3A95125B0B9EC0E36A7D7 + encrypted=00000000000000000000000100000000 + +Set 6, vector# 96: + key=00000000000000000000000000000000 + cipher=00000000000000000000000080000000 + plain=9EA592DE5AC509A2F4D3C302217DD961 + encrypted=00000000000000000000000080000000 + +Set 6, vector# 97: + key=00000000000000000000000000000000 + cipher=00000000000000000000000040000000 + plain=CEF9C13D37F968119BB98AA73CC2CC19 + encrypted=00000000000000000000000040000000 + +Set 6, vector# 98: + key=00000000000000000000000000000000 + cipher=00000000000000000000000020000000 + plain=2C0628231C58F80F0190D23C2B7A0CCC + encrypted=00000000000000000000000020000000 + +Set 6, vector# 99: + key=00000000000000000000000000000000 + cipher=00000000000000000000000010000000 + plain=6C690DB00223DECADAAA90FA2EEC9989 + encrypted=00000000000000000000000010000000 + +Set 6, vector#100: + key=00000000000000000000000000000000 + cipher=00000000000000000000000008000000 + plain=024FB94255E978059A7BFFC5C80AE5B0 + encrypted=00000000000000000000000008000000 + +Set 6, vector#101: + key=00000000000000000000000000000000 + cipher=00000000000000000000000004000000 + plain=EFCD0E8BEFDB3A2A570A1EA414F79B93 + encrypted=00000000000000000000000004000000 + +Set 6, vector#102: + key=00000000000000000000000000000000 + cipher=00000000000000000000000002000000 + plain=03C5B5E09027596DD3625156D7D048A0 + encrypted=00000000000000000000000002000000 + +Set 6, vector#103: + key=00000000000000000000000000000000 + cipher=00000000000000000000000001000000 + plain=8D8F360B9A8396E20A7B915864ACA7FB + encrypted=00000000000000000000000001000000 + +Set 6, vector#104: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000800000 + plain=2DFEF26F5414D619D4447A273D549037 + encrypted=00000000000000000000000000800000 + +Set 6, vector#105: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000400000 + plain=E31F35AE7A3766C0062ED802723CC8E3 + encrypted=00000000000000000000000000400000 + +Set 6, vector#106: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000200000 + plain=B25CDF5B68D5EB1FBE7ECD33D17ACCBB + encrypted=00000000000000000000000000200000 + +Set 6, vector#107: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000100000 + plain=EF07B6EED0712E6A2DE35348509019A1 + encrypted=00000000000000000000000000100000 + +Set 6, vector#108: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000080000 + plain=42BAAC5F893F353B50F34233717C8BC3 + encrypted=00000000000000000000000000080000 + +Set 6, vector#109: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000040000 + plain=82C46B029FE44E60B1400292C31CD8B8 + encrypted=00000000000000000000000000040000 + +Set 6, vector#110: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000020000 + plain=D7720AA3DF9C3A78B6731865791754FF + encrypted=00000000000000000000000000020000 + +Set 6, vector#111: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000010000 + plain=64DE5D1BE2D8E962EC2828C591211D73 + encrypted=00000000000000000000000000010000 + +Set 6, vector#112: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000008000 + plain=CA63FB5BC4B4EB706236B4497FCBAEC1 + encrypted=00000000000000000000000000008000 + +Set 6, vector#113: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000004000 + plain=0F3DF2DC0D172B1E51E25F1E80E72F5C + encrypted=00000000000000000000000000004000 + +Set 6, vector#114: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000002000 + plain=BE14C7EE9059A5566C6510575C9E4C0A + encrypted=00000000000000000000000000002000 + +Set 6, vector#115: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000001000 + plain=C875F78BEB3F1A8FFCD61078A3D0E3F4 + encrypted=00000000000000000000000000001000 + +Set 6, vector#116: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000800 + plain=1CAA0EA44B52A45B4D42972A91D5ACBF + encrypted=00000000000000000000000000000800 + +Set 6, vector#117: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000400 + plain=04D6AF4F8491F89913C535E92911C0A9 + encrypted=00000000000000000000000000000400 + +Set 6, vector#118: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000200 + plain=9950F49340AF07CA127D82A39EBAE368 + encrypted=00000000000000000000000000000200 + +Set 6, vector#119: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000100 + plain=0FBA601D5C1874A117666AA3C632BAB9 + encrypted=00000000000000000000000000000100 + +Set 6, vector#120: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000080 + plain=4F3A51DA5551E1B54E187B6B9A48DAAA + encrypted=00000000000000000000000000000080 + +Set 6, vector#121: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000040 + plain=DEEB8A540647670C077FCAF870EA395B + encrypted=00000000000000000000000000000040 + +Set 6, vector#122: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000020 + plain=D74FEFA1D94646EAC2A35918D137212B + encrypted=00000000000000000000000000000020 + +Set 6, vector#123: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000010 + plain=20D23437DE183396A0B61D70F7AF0605 + encrypted=00000000000000000000000000000010 + +Set 6, vector#124: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000008 + plain=628062A5E7BCB0D8AEADB87D3496C927 + encrypted=00000000000000000000000000000008 + +Set 6, vector#125: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000004 + plain=2DDB6D0841F4A0880B57CD6D5929EF76 + encrypted=00000000000000000000000000000004 + +Set 6, vector#126: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000002 + plain=E61D432EC4AD4F7EDB395AB4CFE444D4 + encrypted=00000000000000000000000000000002 + +Set 6, vector#127: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000001 + plain=3576AD3D2120D6C39F3A5CA5A71A6D58 + encrypted=00000000000000000000000000000001 + +Test vectors -- set 7 +===================== + +Set 7, vector# 0: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=792AF61B301A9C3BDAEF0EF25689435B + encrypted=00000000000000000000000000000000 + +Set 7, vector# 1: + key=01010101010101010101010101010101 + cipher=01010101010101010101010101010101 + plain=4CE0D6CC5A58FC069B05B6415F392B8C + encrypted=01010101010101010101010101010101 + +Set 7, vector# 2: + key=02020202020202020202020202020202 + cipher=02020202020202020202020202020202 + plain=E8225F055CC56532B08619240FE9D0FC + encrypted=02020202020202020202020202020202 + +Set 7, vector# 3: + key=03030303030303030303030303030303 + cipher=03030303030303030303030303030303 + plain=0970B2038C03149F3A0F2DF22EEA9993 + encrypted=03030303030303030303030303030303 + +Set 7, vector# 4: + key=04040404040404040404040404040404 + cipher=04040404040404040404040404040404 + plain=D503AD72A0473A18BE9B3ECFF358CBB6 + encrypted=04040404040404040404040404040404 + +Set 7, vector# 5: + key=05050505050505050505050505050505 + cipher=05050505050505050505050505050505 + plain=98B2705870F39D8DA7C248683AEB252D + encrypted=05050505050505050505050505050505 + +Set 7, vector# 6: + key=06060606060606060606060606060606 + cipher=06060606060606060606060606060606 + plain=D79E1FC49636E863CB6EB202FDDB3562 + encrypted=06060606060606060606060606060606 + +Set 7, vector# 7: + key=07070707070707070707070707070707 + cipher=07070707070707070707070707070707 + plain=181ACB4A0F978A4C1720CFB22040A676 + encrypted=07070707070707070707070707070707 + +Set 7, vector# 8: + key=08080808080808080808080808080808 + cipher=08080808080808080808080808080808 + plain=0E5F3C6F3E7ABA3CED96356E8FBD3447 + encrypted=08080808080808080808080808080808 + +Set 7, vector# 9: + key=09090909090909090909090909090909 + cipher=09090909090909090909090909090909 + plain=7931D915671A55E6A4E307331EB1A354 + encrypted=09090909090909090909090909090909 + +Set 7, vector# 10: + key=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + cipher=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + plain=4991537F1225FC6F729C3215BFE207E3 + encrypted=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + +Set 7, vector# 11: + key=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + cipher=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + plain=5446455FEF353E4A8A3BB6FA9B4A569E + encrypted=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + +Set 7, vector# 12: + key=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + cipher=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + plain=F4186AD1160038CEB18DF8BD7BDA2143 + encrypted=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + +Set 7, vector# 13: + key=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + cipher=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + plain=8F00C77105082D62A3B27502E8BFB7A4 + encrypted=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + +Set 7, vector# 14: + key=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + cipher=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + plain=F76F72DC0BDB252AA571A36E6FFFD3E0 + encrypted=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + +Set 7, vector# 15: + key=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + cipher=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + plain=6FA9C9A148BCC2EE999E75EBC95E6355 + encrypted=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + +Set 7, vector# 16: + key=10101010101010101010101010101010 + cipher=10101010101010101010101010101010 + plain=15D092DE680FF321538E5A90E2A2B053 + encrypted=10101010101010101010101010101010 + +Set 7, vector# 17: + key=11111111111111111111111111111111 + cipher=11111111111111111111111111111111 + plain=9BD185280710DBFBDE97329E1F4BE0FE + encrypted=11111111111111111111111111111111 + +Set 7, vector# 18: + key=12121212121212121212121212121212 + cipher=12121212121212121212121212121212 + plain=44AC842C8A1E499091998BE0D9B0DEAD + encrypted=12121212121212121212121212121212 + +Set 7, vector# 19: + key=13131313131313131313131313131313 + cipher=13131313131313131313131313131313 + plain=401D54BC58B4435691CD2305CBF37865 + encrypted=13131313131313131313131313131313 + +Set 7, vector# 20: + key=14141414141414141414141414141414 + cipher=14141414141414141414141414141414 + plain=5AB325C24989CE9BA802FE54DC06648F + encrypted=14141414141414141414141414141414 + +Set 7, vector# 21: + key=15151515151515151515151515151515 + cipher=15151515151515151515151515151515 + plain=0EE1944696444DA7E0F6A8287D572D6D + encrypted=15151515151515151515151515151515 + +Set 7, vector# 22: + key=16161616161616161616161616161616 + cipher=16161616161616161616161616161616 + plain=FD9F6F90D4A9091CC5EE37E8CC52E03A + encrypted=16161616161616161616161616161616 + +Set 7, vector# 23: + key=17171717171717171717171717171717 + cipher=17171717171717171717171717171717 + plain=FC32E63B2756CA9542E9E8767C80DEF1 + encrypted=17171717171717171717171717171717 + +Set 7, vector# 24: + key=18181818181818181818181818181818 + cipher=18181818181818181818181818181818 + plain=168FFCAB7820313F83531D5F5CE6E024 + encrypted=18181818181818181818181818181818 + +Set 7, vector# 25: + key=19191919191919191919191919191919 + cipher=19191919191919191919191919191919 + plain=43CE2089994C78E21254C2456EE7E6FC + encrypted=19191919191919191919191919191919 + +Set 7, vector# 26: + key=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + cipher=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + plain=EF47AF48B1FDB497400C55B59ED2B2B7 + encrypted=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + +Set 7, vector# 27: + key=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + cipher=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + plain=5E76FC912C992FC5475B24B515CD599A + encrypted=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + +Set 7, vector# 28: + key=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + cipher=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + plain=61396C93637434B8FC6559A95B643F2C + encrypted=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + +Set 7, vector# 29: + key=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + cipher=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + plain=DCD1865ABA06B141C1746E79CA3B347B + encrypted=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + +Set 7, vector# 30: + key=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + cipher=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + plain=B490BC8A2368FA3C051FCD23F4B83C0B + encrypted=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + +Set 7, vector# 31: + key=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + cipher=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + plain=B6910C25955FC663E19323A0F477EBE0 + encrypted=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + +Set 7, vector# 32: + key=20202020202020202020202020202020 + cipher=20202020202020202020202020202020 + plain=4A85E3413A028AD740FFF4B6E5970DD6 + encrypted=20202020202020202020202020202020 + +Set 7, vector# 33: + key=21212121212121212121212121212121 + cipher=21212121212121212121212121212121 + plain=4DBD2DB7D26C798B1C64DA442B6FA601 + encrypted=21212121212121212121212121212121 + +Set 7, vector# 34: + key=22222222222222222222222222222222 + cipher=22222222222222222222222222222222 + plain=19EF63BD0184DC63332D284DE2946962 + encrypted=22222222222222222222222222222222 + +Set 7, vector# 35: + key=23232323232323232323232323232323 + cipher=23232323232323232323232323232323 + plain=72CB84F27F631A1408C63D6BC6087851 + encrypted=23232323232323232323232323232323 + +Set 7, vector# 36: + key=24242424242424242424242424242424 + cipher=24242424242424242424242424242424 + plain=A6BF64D4E6C2082A177D0DCE4DFA92E2 + encrypted=24242424242424242424242424242424 + +Set 7, vector# 37: + key=25252525252525252525252525252525 + cipher=25252525252525252525252525252525 + plain=0222332F7BD61ADBCCFA5BF150A6F953 + encrypted=25252525252525252525252525252525 + +Set 7, vector# 38: + key=26262626262626262626262626262626 + cipher=26262626262626262626262626262626 + plain=53F37C309F1F1E2560E4586D2C0D722E + encrypted=26262626262626262626262626262626 + +Set 7, vector# 39: + key=27272727272727272727272727272727 + cipher=27272727272727272727272727272727 + plain=EF17FCC1041557E1D47A293602850C69 + encrypted=27272727272727272727272727272727 + +Set 7, vector# 40: + key=28282828282828282828282828282828 + cipher=28282828282828282828282828282828 + plain=6F456F01EF8B574EF7929B5F86ED70DF + encrypted=28282828282828282828282828282828 + +Set 7, vector# 41: + key=29292929292929292929292929292929 + cipher=29292929292929292929292929292929 + plain=20902DECC22CE5BAE0F3A618E83FEC9C + encrypted=29292929292929292929292929292929 + +Set 7, vector# 42: + key=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + cipher=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + plain=154E1A413BE14C65721A3498088AB3D8 + encrypted=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + +Set 7, vector# 43: + key=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + cipher=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + plain=703EEB6251462813FDA490741C2CCDA8 + encrypted=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + +Set 7, vector# 44: + key=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + cipher=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + plain=22CCA3709A682477D728C0D81F0DA726 + encrypted=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + +Set 7, vector# 45: + key=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + cipher=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + plain=8BF5A44967BFCF63B3EBB58FD002BBE4 + encrypted=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + +Set 7, vector# 46: + key=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + cipher=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + plain=9C76557019198975331471D8E9DE3970 + encrypted=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + +Set 7, vector# 47: + key=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + cipher=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + plain=1C4F1F4FDC3DC58E2BADBFED81AC2BCC + encrypted=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + +Set 7, vector# 48: + key=30303030303030303030303030303030 + cipher=30303030303030303030303030303030 + plain=2875E441ED6EE9E132FAE11DE92E764C + encrypted=30303030303030303030303030303030 + +Set 7, vector# 49: + key=31313131313131313131313131313131 + cipher=31313131313131313131313131313131 + plain=ADA431281B1E158CD50177A2EA5E5F74 + encrypted=31313131313131313131313131313131 + +Set 7, vector# 50: + key=32323232323232323232323232323232 + cipher=32323232323232323232323232323232 + plain=7774E6F4F186AEF3EC254D6E80FAC42B + encrypted=32323232323232323232323232323232 + +Set 7, vector# 51: + key=33333333333333333333333333333333 + cipher=33333333333333333333333333333333 + plain=CB20161C8E0006E98E71CAD9ECF36325 + encrypted=33333333333333333333333333333333 + +Set 7, vector# 52: + key=34343434343434343434343434343434 + cipher=34343434343434343434343434343434 + plain=B1D2750D27C7DD8F1D32FDF02CBDCF32 + encrypted=34343434343434343434343434343434 + +Set 7, vector# 53: + key=35353535353535353535353535353535 + cipher=35353535353535353535353535353535 + plain=A12BC24B5E9728DA4702C2F058F61046 + encrypted=35353535353535353535353535353535 + +Set 7, vector# 54: + key=36363636363636363636363636363636 + cipher=36363636363636363636363636363636 + plain=1CD0D4D8A82D5C83426DFEC7C471939F + encrypted=36363636363636363636363636363636 + +Set 7, vector# 55: + key=37373737373737373737373737373737 + cipher=37373737373737373737373737373737 + plain=CAE39A45BA51B4030A41C462F2240BD6 + encrypted=37373737373737373737373737373737 + +Set 7, vector# 56: + key=38383838383838383838383838383838 + cipher=38383838383838383838383838383838 + plain=D18FF8D95132303369F5E653FB0A58EB + encrypted=38383838383838383838383838383838 + +Set 7, vector# 57: + key=39393939393939393939393939393939 + cipher=39393939393939393939393939393939 + plain=2BF44213E93718372E5593FCFBB2A2C9 + encrypted=39393939393939393939393939393939 + +Set 7, vector# 58: + key=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + cipher=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + plain=FE2E46F4112889E16C94F9245D6B6A79 + encrypted=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + +Set 7, vector# 59: + key=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + cipher=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + plain=E80FA16A17CF733D73BBED5EC2B27C75 + encrypted=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + +Set 7, vector# 60: + key=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + cipher=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + plain=E7042168E904CB8A7BD1E1D403628DF7 + encrypted=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + +Set 7, vector# 61: + key=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + cipher=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + plain=98133E41269DC72312DBE90EE4B963A2 + encrypted=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + +Set 7, vector# 62: + key=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + cipher=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + plain=A80D82DBB894B96162826455C27CE2E0 + encrypted=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + +Set 7, vector# 63: + key=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + cipher=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + plain=507EF8740F96C4EB2FDD7698CFCBDC87 + encrypted=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + +Set 7, vector# 64: + key=40404040404040404040404040404040 + cipher=40404040404040404040404040404040 + plain=5B00BDD8752866216D6CEAAD3B6BC251 + encrypted=40404040404040404040404040404040 + +Set 7, vector# 65: + key=41414141414141414141414141414141 + cipher=41414141414141414141414141414141 + plain=7C4EEB9C9FF6AC47899EC295692B2695 + encrypted=41414141414141414141414141414141 + +Set 7, vector# 66: + key=42424242424242424242424242424242 + cipher=42424242424242424242424242424242 + plain=3DF78767E7849B39D2D7667DE913D5E1 + encrypted=42424242424242424242424242424242 + +Set 7, vector# 67: + key=43434343434343434343434343434343 + cipher=43434343434343434343434343434343 + plain=7DCC009F62784FDD866C13D61D10CA30 + encrypted=43434343434343434343434343434343 + +Set 7, vector# 68: + key=44444444444444444444444444444444 + cipher=44444444444444444444444444444444 + plain=19FA21E71920AC3BB4E6B6A5C66AE573 + encrypted=44444444444444444444444444444444 + +Set 7, vector# 69: + key=45454545454545454545454545454545 + cipher=45454545454545454545454545454545 + plain=EB1484975323440E2A05F4B0995330E0 + encrypted=45454545454545454545454545454545 + +Set 7, vector# 70: + key=46464646464646464646464646464646 + cipher=46464646464646464646464646464646 + plain=3978D717EDFE4305A4B2FB025E508D36 + encrypted=46464646464646464646464646464646 + +Set 7, vector# 71: + key=47474747474747474747474747474747 + cipher=47474747474747474747474747474747 + plain=92EAAEB9EF9048697EEC8F360173CBF2 + encrypted=47474747474747474747474747474747 + +Set 7, vector# 72: + key=48484848484848484848484848484848 + cipher=48484848484848484848484848484848 + plain=E855BCC4FB9BDA3336E9A97217565514 + encrypted=48484848484848484848484848484848 + +Set 7, vector# 73: + key=49494949494949494949494949494949 + cipher=49494949494949494949494949494949 + plain=F0702828BB1444B218A1A6E14983E2BE + encrypted=49494949494949494949494949494949 + +Set 7, vector# 74: + key=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + cipher=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + plain=7B37117247D52BE22AC6F301B2A4F1D8 + encrypted=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + +Set 7, vector# 75: + key=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + cipher=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + plain=BC63B55152D2F4F81622966B9A89806F + encrypted=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + +Set 7, vector# 76: + key=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + cipher=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + plain=F8AD96CB4571BBFCBC0A648BAAAB86BE + encrypted=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + +Set 7, vector# 77: + key=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + cipher=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + plain=166C275A31373FF773DB2A399FC08D95 + encrypted=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + +Set 7, vector# 78: + key=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + cipher=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + plain=3E1A474CD8702B5F71DD5D4A2C5C6BD7 + encrypted=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + +Set 7, vector# 79: + key=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + cipher=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + plain=81E9AFD046589ED45D91A739FCDE146D + encrypted=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + +Set 7, vector# 80: + key=50505050505050505050505050505050 + cipher=50505050505050505050505050505050 + plain=964FC9FFD82C4656744AB225C9E4EF1D + encrypted=50505050505050505050505050505050 + +Set 7, vector# 81: + key=51515151515151515151515151515151 + cipher=51515151515151515151515151515151 + plain=A2E773CFFD86D63B27538548F609DFBA + encrypted=51515151515151515151515151515151 + +Set 7, vector# 82: + key=52525252525252525252525252525252 + cipher=52525252525252525252525252525252 + plain=15EB16582241646311BF107E85FDB9E8 + encrypted=52525252525252525252525252525252 + +Set 7, vector# 83: + key=53535353535353535353535353535353 + cipher=53535353535353535353535353535353 + plain=9EBFB8391F4784231A6D393904F1611D + encrypted=53535353535353535353535353535353 + +Set 7, vector# 84: + key=54545454545454545454545454545454 + cipher=54545454545454545454545454545454 + plain=2864C8D5E28614EECD913D809691B4FB + encrypted=54545454545454545454545454545454 + +Set 7, vector# 85: + key=55555555555555555555555555555555 + cipher=55555555555555555555555555555555 + plain=DBB4BE7335C5A9851A295F5CB3453B36 + encrypted=55555555555555555555555555555555 + +Set 7, vector# 86: + key=56565656565656565656565656565656 + cipher=56565656565656565656565656565656 + plain=E7620394A9E9CFE92128A275699EC1EF + encrypted=56565656565656565656565656565656 + +Set 7, vector# 87: + key=57575757575757575757575757575757 + cipher=57575757575757575757575757575757 + plain=EA8D23A23399D7D71737530C84668DAE + encrypted=57575757575757575757575757575757 + +Set 7, vector# 88: + key=58585858585858585858585858585858 + cipher=58585858585858585858585858585858 + plain=B63C276C670A63461E9BE94A5D2862DE + encrypted=58585858585858585858585858585858 + +Set 7, vector# 89: + key=59595959595959595959595959595959 + cipher=59595959595959595959595959595959 + plain=37A04035ED1DD93786125C57F520C005 + encrypted=59595959595959595959595959595959 + +Set 7, vector# 90: + key=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + cipher=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + plain=4415287604354FE1DF6A73137F2ED2E1 + encrypted=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + +Set 7, vector# 91: + key=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + cipher=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + plain=E1CFACA2502BFDD52855E403110A71B0 + encrypted=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + +Set 7, vector# 92: + key=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + cipher=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + plain=0701FCB5D75AFBA74FAF9EA20A6C19BF + encrypted=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + +Set 7, vector# 93: + key=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + cipher=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + plain=EF51BCEDB4138849778B798E3D26CE83 + encrypted=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + +Set 7, vector# 94: + key=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + cipher=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + plain=5C50474D8E71625ABB775F9B87B61CF5 + encrypted=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + +Set 7, vector# 95: + key=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + cipher=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + plain=A0CDDF7733BE416CD5448698C0F6B8D3 + encrypted=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + +Set 7, vector# 96: + key=60606060606060606060606060606060 + cipher=60606060606060606060606060606060 + plain=39F2025513C6227CF0E441C5853738FF + encrypted=60606060606060606060606060606060 + +Set 7, vector# 97: + key=61616161616161616161616161616161 + cipher=61616161616161616161616161616161 + plain=1CCB6E4376E66597E77DE1DC60CB1A2B + encrypted=61616161616161616161616161616161 + +Set 7, vector# 98: + key=62626262626262626262626262626262 + cipher=62626262626262626262626262626262 + plain=650D4F929ECC1BBA53E77B10F81DA321 + encrypted=62626262626262626262626262626262 + +Set 7, vector# 99: + key=63636363636363636363636363636363 + cipher=63636363636363636363636363636363 + plain=2060BE5E54F8B35020C7484E284A0DD3 + encrypted=63636363636363636363636363636363 + +Set 7, vector#100: + key=64646464646464646464646464646464 + cipher=64646464646464646464646464646464 + plain=A9422C6E06B2155BF8237178BAAA83F9 + encrypted=64646464646464646464646464646464 + +Set 7, vector#101: + key=65656565656565656565656565656565 + cipher=65656565656565656565656565656565 + plain=B75F65C66A5363AA32404CA88F05F3A6 + encrypted=65656565656565656565656565656565 + +Set 7, vector#102: + key=66666666666666666666666666666666 + cipher=66666666666666666666666666666666 + plain=4350F5E0991B0604DBCE0A0979AA316A + encrypted=66666666666666666666666666666666 + +Set 7, vector#103: + key=67676767676767676767676767676767 + cipher=67676767676767676767676767676767 + plain=4EBD29AC7E5CCC1B4D6D2C8F6350F644 + encrypted=67676767676767676767676767676767 + +Set 7, vector#104: + key=68686868686868686868686868686868 + cipher=68686868686868686868686868686868 + plain=E782F468D1BAFB12A21E8D58A3EAD17D + encrypted=68686868686868686868686868686868 + +Set 7, vector#105: + key=69696969696969696969696969696969 + cipher=69696969696969696969696969696969 + plain=E8B3C7C472F849DB34A2CBAF2478D0EE + encrypted=69696969696969696969696969696969 + +Set 7, vector#106: + key=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + cipher=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + plain=1DE5AB22DCFDD5750F404368F095F5C6 + encrypted=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + +Set 7, vector#107: + key=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + cipher=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + plain=776710F5F1AA6F7D53E5A4209F6A8A99 + encrypted=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + +Set 7, vector#108: + key=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + cipher=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + plain=C4125E05F44E8DEABBBAB97492B8C1AE + encrypted=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + +Set 7, vector#109: + key=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + cipher=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + plain=2C4867CD0009BDFCC461247FF2ABDAEA + encrypted=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + +Set 7, vector#110: + key=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + cipher=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + plain=2A9C9B4F7BF34A4E42E50C488121F4C3 + encrypted=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + +Set 7, vector#111: + key=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + cipher=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + plain=CEEE8E830D36910AC5410ADE25B41336 + encrypted=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + +Set 7, vector#112: + key=70707070707070707070707070707070 + cipher=70707070707070707070707070707070 + plain=D289D624771440D3A43BCEDC4201AB4D + encrypted=70707070707070707070707070707070 + +Set 7, vector#113: + key=71717171717171717171717171717171 + cipher=71717171717171717171717171717171 + plain=DC78CED4BAB646E4B7E2324FD041D909 + encrypted=71717171717171717171717171717171 + +Set 7, vector#114: + key=72727272727272727272727272727272 + cipher=72727272727272727272727272727272 + plain=633B07380E2DE20D2A328102468E58DF + encrypted=72727272727272727272727272727272 + +Set 7, vector#115: + key=73737373737373737373737373737373 + cipher=73737373737373737373737373737373 + plain=C40A02F6F7B08C7EBCBADC53C11D0DD7 + encrypted=73737373737373737373737373737373 + +Set 7, vector#116: + key=74747474747474747474747474747474 + cipher=74747474747474747474747474747474 + plain=549BEB74D1AA379C868509564408D7B0 + encrypted=74747474747474747474747474747474 + +Set 7, vector#117: + key=75757575757575757575757575757575 + cipher=75757575757575757575757575757575 + plain=599127E3F687ADEF90E1BB53075FF53B + encrypted=75757575757575757575757575757575 + +Set 7, vector#118: + key=76767676767676767676767676767676 + cipher=76767676767676767676767676767676 + plain=B7E3756469885E44D87E907EF86BB346 + encrypted=76767676767676767676767676767676 + +Set 7, vector#119: + key=77777777777777777777777777777777 + cipher=77777777777777777777777777777777 + plain=FDB40EA315D6D862E84AA73FFACDA3C1 + encrypted=77777777777777777777777777777777 + +Set 7, vector#120: + key=78787878787878787878787878787878 + cipher=78787878787878787878787878787878 + plain=5D75E8132FC001D619111449B3474B78 + encrypted=78787878787878787878787878787878 + +Set 7, vector#121: + key=79797979797979797979797979797979 + cipher=79797979797979797979797979797979 + plain=2476081B97AF1020D23390506F467E68 + encrypted=79797979797979797979797979797979 + +Set 7, vector#122: + key=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + cipher=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + plain=4056A9D697891FE906AFB4631F08C129 + encrypted=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + +Set 7, vector#123: + key=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + cipher=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + plain=54BFF81ED034C6626D1E655D00EACF7C + encrypted=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + +Set 7, vector#124: + key=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + cipher=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + plain=7A40865A2238E28878448CB954BBE67E + encrypted=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + +Set 7, vector#125: + key=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + cipher=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + plain=2FB1A227CA9D028C8273BEB558D68C61 + encrypted=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + +Set 7, vector#126: + key=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + cipher=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + plain=4EACA28C79E7F343C1C4BEC5DED0A8AC + encrypted=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + +Set 7, vector#127: + key=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + cipher=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + plain=C94C72A937B3EA3468A605A1F839590C + encrypted=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + +Set 7, vector#128: + key=80808080808080808080808080808080 + cipher=80808080808080808080808080808080 + plain=F02D73533407CB12D54F1F9986918F1B + encrypted=80808080808080808080808080808080 + +Set 7, vector#129: + key=81818181818181818181818181818181 + cipher=81818181818181818181818181818181 + plain=06BCE0C9F5B9F6FFF3B8632C00DA0D56 + encrypted=81818181818181818181818181818181 + +Set 7, vector#130: + key=82828282828282828282828282828282 + cipher=82828282828282828282828282828282 + plain=864D0A36C0765B8A4D3BCF245C418625 + encrypted=82828282828282828282828282828282 + +Set 7, vector#131: + key=83838383838383838383838383838383 + cipher=83838383838383838383838383838383 + plain=73D6DD5D3DDF518B7D39F4086EEAF147 + encrypted=83838383838383838383838383838383 + +Set 7, vector#132: + key=84848484848484848484848484848484 + cipher=84848484848484848484848484848484 + plain=0B93E0DF43D0F5EEDFDF11F8FA613796 + encrypted=84848484848484848484848484848484 + +Set 7, vector#133: + key=85858585858585858585858585858585 + cipher=85858585858585858585858585858585 + plain=DCD5112974EE1BC4673C3F66C8248B6E + encrypted=85858585858585858585858585858585 + +Set 7, vector#134: + key=86868686868686868686868686868686 + cipher=86868686868686868686868686868686 + plain=B49D6034EEDD44C1F449DBCDFA79ECC0 + encrypted=86868686868686868686868686868686 + +Set 7, vector#135: + key=87878787878787878787878787878787 + cipher=87878787878787878787878787878787 + plain=18661F24A7A94E965967A9CEAA8FE2E2 + encrypted=87878787878787878787878787878787 + +Set 7, vector#136: + key=88888888888888888888888888888888 + cipher=88888888888888888888888888888888 + plain=600B807D1040966AF2A6A8290EDDCEA0 + encrypted=88888888888888888888888888888888 + +Set 7, vector#137: + key=89898989898989898989898989898989 + cipher=89898989898989898989898989898989 + plain=8E74A1A45C5DAE584B4FCD1D9F713AC4 + encrypted=89898989898989898989898989898989 + +Set 7, vector#138: + key=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + cipher=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + plain=14BED9733BDEFB99760FB380C9B7B987 + encrypted=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + +Set 7, vector#139: + key=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + cipher=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + plain=B56ED93AEB9065C117D25DDF148D0A4B + encrypted=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + +Set 7, vector#140: + key=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + cipher=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + plain=77F1E0AA66BE1A395007360C5E23AC19 + encrypted=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + +Set 7, vector#141: + key=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + cipher=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + plain=4546FCC6DDC1253BDAC758D1299A160E + encrypted=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + +Set 7, vector#142: + key=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + cipher=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + plain=138B8F9AEB8D126D06B04E32812F9660 + encrypted=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + +Set 7, vector#143: + key=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + cipher=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + plain=9486084D738FE43AB8BA00EAAFE3B1FD + encrypted=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + +Set 7, vector#144: + key=90909090909090909090909090909090 + cipher=90909090909090909090909090909090 + plain=986C78789D0178737233FB9FAF502CFA + encrypted=90909090909090909090909090909090 + +Set 7, vector#145: + key=91919191919191919191919191919191 + cipher=91919191919191919191919191919191 + plain=05B8C554779F7483E715CD9D747412CA + encrypted=91919191919191919191919191919191 + +Set 7, vector#146: + key=92929292929292929292929292929292 + cipher=92929292929292929292929292929292 + plain=EC69192EE89476333E61768F40DC54D5 + encrypted=92929292929292929292929292929292 + +Set 7, vector#147: + key=93939393939393939393939393939393 + cipher=93939393939393939393939393939393 + plain=7EC3E4E2ED3B1FA31BF9D462DE310140 + encrypted=93939393939393939393939393939393 + +Set 7, vector#148: + key=94949494949494949494949494949494 + cipher=94949494949494949494949494949494 + plain=7483D306E385F8A537E1AF3C32E4CD91 + encrypted=94949494949494949494949494949494 + +Set 7, vector#149: + key=95959595959595959595959595959595 + cipher=95959595959595959595959595959595 + plain=56E566F99169DD03FB40D175218CCABB + encrypted=95959595959595959595959595959595 + +Set 7, vector#150: + key=96969696969696969696969696969696 + cipher=96969696969696969696969696969696 + plain=441FE5AF1F2D8EABDC60D292C9258FCF + encrypted=96969696969696969696969696969696 + +Set 7, vector#151: + key=97979797979797979797979797979797 + cipher=97979797979797979797979797979797 + plain=11CD38AEE576A2F8192D99895A12942D + encrypted=97979797979797979797979797979797 + +Set 7, vector#152: + key=98989898989898989898989898989898 + cipher=98989898989898989898989898989898 + plain=7B0EA86CB8B05E32C668466429D3D7DD + encrypted=98989898989898989898989898989898 + +Set 7, vector#153: + key=99999999999999999999999999999999 + cipher=99999999999999999999999999999999 + plain=A35D38E6A2A4220F5F1D0F37B98980F6 + encrypted=99999999999999999999999999999999 + +Set 7, vector#154: + key=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + cipher=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + plain=F8987873DAC2435F4FE313284F663989 + encrypted=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + +Set 7, vector#155: + key=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + cipher=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + plain=D3B004214F52F8B6AB12318E98F32613 + encrypted=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + +Set 7, vector#156: + key=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + cipher=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + plain=49B48110DFE4EC6B43649B1F50E0D6E6 + encrypted=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + +Set 7, vector#157: + key=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + cipher=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + plain=5492DA23E963517D604CF16903B10521 + encrypted=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + +Set 7, vector#158: + key=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + cipher=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + plain=6F8BD5468BDD2DB1E2F9156C7D2FF6D9 + encrypted=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + +Set 7, vector#159: + key=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + cipher=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + plain=7D26A11489D7F4FF8EFC584B3DDA3987 + encrypted=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + +Set 7, vector#160: + key=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + cipher=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + plain=3CBF243C40E8DC4DE90D1F908723C85A + encrypted=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + +Set 7, vector#161: + key=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + cipher=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + plain=9B77C9159F06092AFB4D654F5939C3AB + encrypted=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + +Set 7, vector#162: + key=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + cipher=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + plain=A1A7057281B99ABDEE314F0F0C1D9BDA + encrypted=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + +Set 7, vector#163: + key=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + cipher=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + plain=E37D24BF471EA6AA71743E8671401D56 + encrypted=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + +Set 7, vector#164: + key=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + cipher=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + plain=35B38EED1F5DB1EDD16DEF9DB67F974D + encrypted=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + +Set 7, vector#165: + key=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + cipher=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + plain=13FDD7839596A0E956C8C2C64D01254F + encrypted=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + +Set 7, vector#166: + key=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + cipher=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + plain=FE15BEC2E0A24821CE81D4970C30BD72 + encrypted=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + +Set 7, vector#167: + key=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + cipher=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + plain=E8360FFFB133E13F66ECF593EF61BC98 + encrypted=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + +Set 7, vector#168: + key=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + cipher=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + plain=219CA6904BB9E913F4D9646BC51624D2 + encrypted=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + +Set 7, vector#169: + key=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + cipher=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + plain=B0DF8E262008A17DB0BB50522085548C + encrypted=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + +Set 7, vector#170: + key=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + cipher=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + plain=65301F1A5D9A97340E2747F478724352 + encrypted=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + +Set 7, vector#171: + key=ABABABABABABABABABABABABABABABAB + cipher=ABABABABABABABABABABABABABABABAB + plain=88952DCE3246AE173A4F0A3C492D7973 + encrypted=ABABABABABABABABABABABABABABABAB + +Set 7, vector#172: + key=ACACACACACACACACACACACACACACACAC + cipher=ACACACACACACACACACACACACACACACAC + plain=B2DA4D7027B04E2D0D945BC84D1078CE + encrypted=ACACACACACACACACACACACACACACACAC + +Set 7, vector#173: + key=ADADADADADADADADADADADADADADADAD + cipher=ADADADADADADADADADADADADADADADAD + plain=0D86581DE155DBAA725824B3A1B441F7 + encrypted=ADADADADADADADADADADADADADADADAD + +Set 7, vector#174: + key=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + cipher=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + plain=82129E7D6C2256ABD6D89BA70140B53D + encrypted=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + +Set 7, vector#175: + key=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + cipher=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + plain=B6250898D37E52DD52AD0BAFA7E3197A + encrypted=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + +Set 7, vector#176: + key=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + cipher=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + plain=36BE89535B803BD61E5BFF4BC76B07DD + encrypted=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + +Set 7, vector#177: + key=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + cipher=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + plain=3D7FA0A7FFF71E895A179697BEE06B0C + encrypted=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + +Set 7, vector#178: + key=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + cipher=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + plain=C467AE7004EB2502A700BFC315D21A15 + encrypted=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + +Set 7, vector#179: + key=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + cipher=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + plain=4CC06E5F3D0469448DA72A54D6DF0D35 + encrypted=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + +Set 7, vector#180: + key=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + cipher=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + plain=65289F3DBE056B8B36D3E80E86123B9C + encrypted=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + +Set 7, vector#181: + key=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + cipher=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + plain=DE71F507AD61BD5ADD2054917170968A + encrypted=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + +Set 7, vector#182: + key=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + cipher=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + plain=231D9B1C00D63B195F2F8C729871EC95 + encrypted=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + +Set 7, vector#183: + key=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + cipher=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + plain=B3F1269E32E0DD1825772F4EC306F6A1 + encrypted=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + +Set 7, vector#184: + key=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + cipher=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + plain=4C6A94A6A500E1A6019E4EC20227CCC3 + encrypted=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + +Set 7, vector#185: + key=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + cipher=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + plain=D1D8F3CA5D078F628B8F9654F407A210 + encrypted=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + +Set 7, vector#186: + key=BABABABABABABABABABABABABABABABA + cipher=BABABABABABABABABABABABABABABABA + plain=78412E888E70CB6574D6773D821FCF69 + encrypted=BABABABABABABABABABABABABABABABA + +Set 7, vector#187: + key=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + cipher=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + plain=1505D49D1D8A48941BBF905BD073B6B0 + encrypted=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + +Set 7, vector#188: + key=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + cipher=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + plain=CF226A929DDF1785A672A1FCC6B32FA5 + encrypted=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + +Set 7, vector#189: + key=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + cipher=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + plain=190B5F0C81643963D7E15F581677CAED + encrypted=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + +Set 7, vector#190: + key=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + cipher=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + plain=947D47274059C5AEB9686F31140CACC6 + encrypted=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + +Set 7, vector#191: + key=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + cipher=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + plain=E29EF0DB004F609AC5E3BA16F600C792 + encrypted=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + +Set 7, vector#192: + key=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + cipher=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + plain=D54DF7E6B664C1066D927D94B6E60380 + encrypted=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + +Set 7, vector#193: + key=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + cipher=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + plain=D507C364489A7823C3EEA0EEDF199BAD + encrypted=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + +Set 7, vector#194: + key=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + cipher=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + plain=1FB4C0C74FB6BE9F1B89804371C93704 + encrypted=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + +Set 7, vector#195: + key=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + cipher=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + plain=5A68665C643FC2D3528E2AE175298B34 + encrypted=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + +Set 7, vector#196: + key=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + cipher=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + plain=C65DFA0B209FBFEFDD60BFD9DD8193AB + encrypted=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + +Set 7, vector#197: + key=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + cipher=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + plain=5B98568FDD0436E6437F48BE4D6B4383 + encrypted=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + +Set 7, vector#198: + key=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + cipher=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + plain=22A72F3D2F09F2F1FB16C4EF528E4176 + encrypted=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + +Set 7, vector#199: + key=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + cipher=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + plain=DC12FECFDB9D8B6B908B9B6EA9379A4D + encrypted=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + +Set 7, vector#200: + key=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + cipher=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + plain=DA5815232BD726AFEF8260F75679516E + encrypted=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + +Set 7, vector#201: + key=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + cipher=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + plain=AC50AC00A2D845098A15E619BA520ADF + encrypted=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + +Set 7, vector#202: + key=CACACACACACACACACACACACACACACACA + cipher=CACACACACACACACACACACACACACACACA + plain=5B272C019D602F589B419BB833949AB2 + encrypted=CACACACACACACACACACACACACACACACA + +Set 7, vector#203: + key=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + cipher=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + plain=47A771B71667C1F8743CF1396A51F348 + encrypted=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + +Set 7, vector#204: + key=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + cipher=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + plain=C52908807207F90DCBB29DA8C480E799 + encrypted=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + +Set 7, vector#205: + key=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + cipher=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + plain=176EF23CA8C9DAA56166F3567EBBA95F + encrypted=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + +Set 7, vector#206: + key=CECECECECECECECECECECECECECECECE + cipher=CECECECECECECECECECECECECECECECE + plain=10E72B2B235EE7413C528E7ED564CDDA + encrypted=CECECECECECECECECECECECECECECECE + +Set 7, vector#207: + key=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + cipher=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + plain=5FACDE9A99EE8C89D440E5EDB5CF4405 + encrypted=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + +Set 7, vector#208: + key=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + cipher=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + plain=1CCF121F0D7A0A0F1CD848F499ADFCFA + encrypted=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + +Set 7, vector#209: + key=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + cipher=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + plain=C73590486D9CF95362C90190AC01A4A8 + encrypted=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + +Set 7, vector#210: + key=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + cipher=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + plain=0EAF195C766D4BB5131688657C04D8B3 + encrypted=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + +Set 7, vector#211: + key=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + cipher=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + plain=15B4D2E1AB2DE5FC0438071F99726E9A + encrypted=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + +Set 7, vector#212: + key=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + cipher=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + plain=6F5C95B76FF0B97311929BF97ADCD598 + encrypted=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + +Set 7, vector#213: + key=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + cipher=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + plain=F74DC5BD5D721C57F1D55C062C8C8A14 + encrypted=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + +Set 7, vector#214: + key=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + cipher=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + plain=A3B33B22BB0447A73A1510BCF301B269 + encrypted=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + +Set 7, vector#215: + key=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + cipher=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + plain=0FAD030F10BF18907C0701C488AAD142 + encrypted=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + +Set 7, vector#216: + key=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + cipher=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + plain=A3AEDE92621285DB8347C65EC0F4080D + encrypted=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + +Set 7, vector#217: + key=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + cipher=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + plain=CE1C1FFC2EF9937962328A143CA1C6BD + encrypted=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + +Set 7, vector#218: + key=DADADADADADADADADADADADADADADADA + cipher=DADADADADADADADADADADADADADADADA + plain=A49FF4EB1805DDFB91A1BF0CB7A1CD0C + encrypted=DADADADADADADADADADADADADADADADA + +Set 7, vector#219: + key=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + cipher=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + plain=A9CB430CAB39320641BAE36422C097AD + encrypted=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + +Set 7, vector#220: + key=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + cipher=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + plain=6E4970F076F97E98237C1417A9F025AD + encrypted=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + +Set 7, vector#221: + key=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + cipher=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + plain=49ABB1A66C0D1E853C1505CD5ABBFA93 + encrypted=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + +Set 7, vector#222: + key=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + cipher=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + plain=5771F86260497359E3835962108F1D1B + encrypted=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + +Set 7, vector#223: + key=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + cipher=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + plain=75EB8514448006252155453198EB03D6 + encrypted=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + +Set 7, vector#224: + key=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + cipher=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + plain=8DF33E7779A45C29D5DD581256C9BB72 + encrypted=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + +Set 7, vector#225: + key=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + cipher=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + plain=3A57A4D5761B50E90D25C7D60C12D56C + encrypted=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + +Set 7, vector#226: + key=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + cipher=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + plain=943BCC904C4ECAD37A333F4CFE2DD379 + encrypted=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + +Set 7, vector#227: + key=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + cipher=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + plain=6E912C4A7DDE9DF0E17845E8F6F7A421 + encrypted=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + +Set 7, vector#228: + key=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + cipher=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + plain=6851EE3B15686531D0949808B8C3330C + encrypted=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + +Set 7, vector#229: + key=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + cipher=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + plain=B0A147A264FCF3210CDE56CFFC667A71 + encrypted=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + +Set 7, vector#230: + key=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + cipher=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + plain=4AE93D297016F0E4B3029C7D70A2A2ED + encrypted=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + +Set 7, vector#231: + key=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + cipher=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + plain=6FA25BF7FD181327A8DAA6A555801396 + encrypted=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + +Set 7, vector#232: + key=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + cipher=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + plain=E7AD3A1F0D6962BD8C9781E649E1E97C + encrypted=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + +Set 7, vector#233: + key=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + cipher=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + plain=A52D2A7CE35AC5D9E5274E532CF9151A + encrypted=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + +Set 7, vector#234: + key=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + cipher=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + plain=046DD48211CE2F0303FF19FE166EA532 + encrypted=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + +Set 7, vector#235: + key=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + cipher=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + plain=1F4192D398433A67B050864E3D027DFC + encrypted=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + +Set 7, vector#236: + key=ECECECECECECECECECECECECECECECEC + cipher=ECECECECECECECECECECECECECECECEC + plain=E884DFD7164745D5819B231B42B0EC5D + encrypted=ECECECECECECECECECECECECECECECEC + +Set 7, vector#237: + key=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + cipher=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + plain=6A9BD9E60CE1F99CF533885967608953 + encrypted=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + +Set 7, vector#238: + key=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + cipher=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + plain=A7D19C071D9AD5AAF382CDA2599DF37E + encrypted=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + +Set 7, vector#239: + key=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + cipher=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + plain=F6A392455150E98F0E8A49C7164C729D + encrypted=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + +Set 7, vector#240: + key=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + cipher=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + plain=785C9FD3E12FFBE90D9FEB1B4B245FAC + encrypted=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + +Set 7, vector#241: + key=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + cipher=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + plain=2E5BD8233C1B7F1A1973EFDB116AE310 + encrypted=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + +Set 7, vector#242: + key=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + cipher=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + plain=5B67E83273B7CE1510F247709DFB3909 + encrypted=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + +Set 7, vector#243: + key=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + cipher=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + plain=915CA81D56511CFF52C21B9569BF80A4 + encrypted=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + +Set 7, vector#244: + key=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + cipher=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + plain=0C9F198D2B412F50734DC44516DA2BAD + encrypted=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + +Set 7, vector#245: + key=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + cipher=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + plain=DE315637DF9245F4947A428CBD4A9BC9 + encrypted=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + +Set 7, vector#246: + key=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + cipher=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + plain=ECA2F02C0B57447FD0DE86634D398D57 + encrypted=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + +Set 7, vector#247: + key=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + cipher=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + plain=303A759BF829707D7ABE655B6BAE7C6B + encrypted=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + +Set 7, vector#248: + key=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + cipher=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + plain=F3B49D6384C569645D1EBBA3A559BA65 + encrypted=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + +Set 7, vector#249: + key=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + cipher=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + plain=2FAB46AC9AC7B889FD3631223CB47864 + encrypted=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + +Set 7, vector#250: + key=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + cipher=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + plain=0A8E41E019DAC4A5BDD461EBF2A85566 + encrypted=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + +Set 7, vector#251: + key=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + cipher=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + plain=3AA5BF6E509D05A231531AA475AC6523 + encrypted=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + +Set 7, vector#252: + key=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + cipher=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + plain=1ED8B8997A03E7409659E2C0B46ECF8F + encrypted=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + +Set 7, vector#253: + key=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + cipher=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + plain=3EFAC42964BCC72D009F87B63C62BDF6 + encrypted=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + +Set 7, vector#254: + key=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + cipher=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + plain=1446D8FB54B59E7C6C5A83FFF7E07A03 + encrypted=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + +Set 7, vector#255: + key=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + cipher=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + plain=45E270434BB992B52CD8BFE564B7E7D7 + encrypted=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + +Test vectors -- set 8 +===================== + +Set 8, vector# 0: + key=000102030405060708090A0B0C0D0E0F + cipher=00112233445566778899AABBCCDDEEFF + plain=ED1F7C59EC86A49E2C6C22AE20B4AEDE + encrypted=00112233445566778899AABBCCDDEEFF + +Set 8, vector# 1: + key=2BD6459F82C5B300952C49104881FF48 + cipher=EA024714AD5C4D84EA024714AD5C4D84 + plain=4765F3DA10CD3D0473867742B5E5CC3C + encrypted=EA024714AD5C4D84EA024714AD5C4D84 + + + +End of test vectors diff --git a/testvectors/Noekeon-Indirect-128-128.verified.test-vectors b/testvectors/Noekeon-Indirect-128-128.verified.test-vectors new file mode 100644 index 0000000..061565e --- /dev/null +++ b/testvectors/Noekeon-Indirect-128-128.verified.test-vectors @@ -0,0 +1,7232 @@ +******************************************************************************** +*Project NESSIE - New European Schemes for Signature, Integrity, and Encryption* +******************************************************************************** + +Primitive Name: Noekeon-Direct +============================== +Key size: 128 bits +Block size: 128 bits + +Test vectors -- set 1 +===================== + +Set 1, vector# 0: + key=80000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=EA6552BA793546C261E4B3E90433F5A2 + decrypted=00000000000000000000000000000000 + Iterated 100 times=DC50EE047D2FBD2E075EB89FB8FA0F03 + Iterated 1000 times=DB83172EC2FFA285331899DCB0561539 + +Set 1, vector# 1: + key=40000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=F23A85B64F36A5908FE23BC6206BFF01 + decrypted=00000000000000000000000000000000 + Iterated 100 times=EF5EC339ED2F588A217626B84540717C + Iterated 1000 times=E27E4E20A413B1F72FBF7DB70D34CA18 + +Set 1, vector# 2: + key=20000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=F0CDC902557005A5EF0E22A8D683579F + decrypted=00000000000000000000000000000000 + Iterated 100 times=82D8636DB1D896A626F5CDEF66EFB073 + Iterated 1000 times=7040E7C89DC6915786712865445101BD + +Set 1, vector# 3: + key=10000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=AFACC462838B10F72B5202B4FEDCE063 + decrypted=00000000000000000000000000000000 + Iterated 100 times=A0AFA33F924A5009F452DEA072B55839 + Iterated 1000 times=9D8244842C1C90F01BCF9AC40A140BD1 + +Set 1, vector# 4: + key=08000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=AA79AD98742EF474D4D745829979CD5D + decrypted=00000000000000000000000000000000 + Iterated 100 times=241A61689DEB4029AEED6215349BFC2E + Iterated 1000 times=AEE05E3279D82F520A210DFB6A252B58 + +Set 1, vector# 5: + key=04000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=6BC1F3F01FC0B9C3DF67CCCA11756A4E + decrypted=00000000000000000000000000000000 + Iterated 100 times=29FEC40C269D4AC5016F8C2B32039A80 + Iterated 1000 times=52F0CB84EC0E41F33EA9E1BE09472C12 + +Set 1, vector# 6: + key=02000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=8EE231BE4FD465A97FFE3A3766CB1F6E + decrypted=00000000000000000000000000000000 + Iterated 100 times=A702BF3E7ACDA80B13A42462A9F1B65D + Iterated 1000 times=BE27A5A284441743B47116A121FCB7F4 + +Set 1, vector# 7: + key=01000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=22E3EF1E99A7AD4378F64CE53C78F151 + decrypted=00000000000000000000000000000000 + Iterated 100 times=4E340C1D48E63A03FF441CEF9E88EA7E + Iterated 1000 times=D0D86D015AB1DC26CA7F5985E202E4E7 + +Set 1, vector# 8: + key=00800000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=0C5BF896C0FB03BAABBA4890878649C0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=56EDBD5CF96987ADA6C6C77823885DF1 + Iterated 1000 times=B6F3AD22B607BC8120C984A1C2B67CF2 + +Set 1, vector# 9: + key=00400000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=8268840AA12848872BF19EE61F482C6D + decrypted=00000000000000000000000000000000 + Iterated 100 times=FD020052DED7C0AEBEEE54DB1C97FD4B + Iterated 1000 times=4AFE1F63610F562676DA8E7BB92D9CE8 + +Set 1, vector# 10: + key=00200000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=F84D2D705DB49AA20D62C52191E64192 + decrypted=00000000000000000000000000000000 + Iterated 100 times=D97F48FB76E50C7929EF722751A15DCF + Iterated 1000 times=0752B57FF843486913B142F55870DD11 + +Set 1, vector# 11: + key=00100000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=93E7A52FE09CA7DF51D50B413D091FA1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=E8730CA2FF4297C04BC9DE73F31B7290 + Iterated 1000 times=985E4CA54B791919874A1B27462A85C2 + +Set 1, vector# 12: + key=00080000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=50F83519C67BEFF964FA0A636C05FD86 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5926BD80BD8DA2ED244A118F2FF43479 + Iterated 1000 times=1D6A6E835CA566710622F270642949D3 + +Set 1, vector# 13: + key=00040000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=C20D355A610EC661E3DF1CC444786834 + decrypted=00000000000000000000000000000000 + Iterated 100 times=886E97A9727D36CB01C9637EA8EC0087 + Iterated 1000 times=B638107269245EAF6658443C96449304 + +Set 1, vector# 14: + key=00020000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=17838D9563298E20FA530999368D8207 + decrypted=00000000000000000000000000000000 + Iterated 100 times=3AE0037BA175425D3D1A84B1DFD68EEE + Iterated 1000 times=A0F2B08CC88985EC8E96FF2FDE966A5B + +Set 1, vector# 15: + key=00010000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=31E7A4D47EB7FB900F60E66CCE4F70D0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=E974204C19CBA4192590BAE3DB87CA0A + Iterated 1000 times=F75AA031836A7E0F19CF7DBD46A63E0E + +Set 1, vector# 16: + key=00008000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=F8DB881ACDF9F335508C40DBD4348FCA + decrypted=00000000000000000000000000000000 + Iterated 100 times=732A1B868AE6874FC575CE7F3FB21117 + Iterated 1000 times=D038B5796F24EB861203BDAA91319403 + +Set 1, vector# 17: + key=00004000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=5A6B3513BEBCAB61EC5453B1F0B7CB61 + decrypted=00000000000000000000000000000000 + Iterated 100 times=CCBF5BEE80AC73D6E954B5D371258E49 + Iterated 1000 times=8A0CFC1431C44C58299CFBBA8FE08231 + +Set 1, vector# 18: + key=00002000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=6079F5E05D48596123AF5D480E8B6142 + decrypted=00000000000000000000000000000000 + Iterated 100 times=B0B72758DC13718EA1CA0246C3DEC9CE + Iterated 1000 times=6FDC94306554492004C8513839F876E4 + +Set 1, vector# 19: + key=00001000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=5EEBC64AA6EB88263A6010C262299676 + decrypted=00000000000000000000000000000000 + Iterated 100 times=6F6050BF94F05F7318F402C3C7E0BCD4 + Iterated 1000 times=FD8C5777B0F56D9BADFEDFEDF2F34569 + +Set 1, vector# 20: + key=00000800000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=D6FD27150F629B2933F82CB73ECDA1C6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=3942C1F0B40DF12B38E1C7F401853B9B + Iterated 1000 times=ED88C6FB716AE4A6666F0CEF09ABE81B + +Set 1, vector# 21: + key=00000400000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=CFA4EB48BBDE8C623B8265F544C02A79 + decrypted=00000000000000000000000000000000 + Iterated 100 times=9CF379D0E461090561103B0EADCAFF35 + Iterated 1000 times=DFE31BA78BF73019CC5F58D134A683B0 + +Set 1, vector# 22: + key=00000200000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=FA3DEFFE6A1A890F49BED18DDE0237FC + decrypted=00000000000000000000000000000000 + Iterated 100 times=1B2D71B3BF77E1C2DDA8419D554B788E + Iterated 1000 times=F5DC1F0F9FDF47955E6F6BF209428CF4 + +Set 1, vector# 23: + key=00000100000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=7B74A0A471D479911F5B246C75E629CD + decrypted=00000000000000000000000000000000 + Iterated 100 times=D1412B9D2E9D9A2B8C2514BC8A7F1B3F + Iterated 1000 times=B7BFCC5506D461E484F6907DC63901C0 + +Set 1, vector# 24: + key=00000080000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=06B99E776BEF8AE09241D70D04071796 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5806645F841AD00093F8309BD6F9F8E2 + Iterated 1000 times=DB1AA75C22066A138BC7A28990C99B98 + +Set 1, vector# 25: + key=00000040000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=4ED119D669A708F59A3C6970D16B80DB + decrypted=00000000000000000000000000000000 + Iterated 100 times=3591DE75E6F7DDED800E9B3500D9E932 + Iterated 1000 times=31D8172A8C8308E980F6CA6775F53ED1 + +Set 1, vector# 26: + key=00000020000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=D711B6FD3D9DD097213982CD2CBE9626 + decrypted=00000000000000000000000000000000 + Iterated 100 times=D3AC448CCD11B9F99CA63AB4A9E46E46 + Iterated 1000 times=48B46D6B3AF4DECB9451255CA41507E5 + +Set 1, vector# 27: + key=00000010000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=A48F6CC53439E0E844634128C4C01E98 + decrypted=00000000000000000000000000000000 + Iterated 100 times=82464C4065EBB0CBA93A76FCC098C232 + Iterated 1000 times=DB02B88359D16E27F7C8FCFB73CC2710 + +Set 1, vector# 28: + key=00000008000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=8233DAAA81672F1A1956C8E83F675CB5 + decrypted=00000000000000000000000000000000 + Iterated 100 times=44123CF51B6E1A318789951E1B1DD189 + Iterated 1000 times=601BD3E6AC4CE1C4CA9E4927B6603A9E + +Set 1, vector# 29: + key=00000004000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=6F1FF1C1781F7F522D41792CF7F79A87 + decrypted=00000000000000000000000000000000 + Iterated 100 times=100F4FFB219AF6D5744FAA6CA8A5A49C + Iterated 1000 times=0036B8DA0D7FAD797EFEF2DD69B63CBF + +Set 1, vector# 30: + key=00000002000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=467BA41543C617B44FB022F2D0EC49A6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=B7F92A4E988F896CC6157EE9923E26A0 + Iterated 1000 times=D5A9D5E6F9E11675061103E1871E7362 + +Set 1, vector# 31: + key=00000001000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=C5CAA3A63E52D76BC03093819836234C + decrypted=00000000000000000000000000000000 + Iterated 100 times=A8D194186512629E7CDDFD6D91BB4856 + Iterated 1000 times=ABF1FDF93971F1E2E3E96B15C264C600 + +Set 1, vector# 32: + key=00000000800000000000000000000000 + plain=00000000000000000000000000000000 + cipher=50768462637C56645E35F9FAE28B536A + decrypted=00000000000000000000000000000000 + Iterated 100 times=7B053E73F7D1E89ED9390B4371AD79B7 + Iterated 1000 times=EFB765E15D948CBEDC0F3E0CD15F4E86 + +Set 1, vector# 33: + key=00000000400000000000000000000000 + plain=00000000000000000000000000000000 + cipher=E040FAA25253454D590ABB1C97D152A4 + decrypted=00000000000000000000000000000000 + Iterated 100 times=F7B89A61457DBDEDAB7E722DE0F7A33D + Iterated 1000 times=407C4F1649BEA6E996EAD9C87C18E1BA + +Set 1, vector# 34: + key=00000000200000000000000000000000 + plain=00000000000000000000000000000000 + cipher=E4EBB7CECB610C5FE0B6DA9A3F041EF0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=908A825EB3482819F95F1AC39268224D + Iterated 1000 times=B51A90A7F5DC419958458E9343D60A6A + +Set 1, vector# 35: + key=00000000100000000000000000000000 + plain=00000000000000000000000000000000 + cipher=61B6C1528F2B3FD0BF79C7D34E31F1B6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=6AE0752F3AFA7270D76139737510626C + Iterated 1000 times=B5D1C978990C21AE75652ECE39D0F19C + +Set 1, vector# 36: + key=00000000080000000000000000000000 + plain=00000000000000000000000000000000 + cipher=0C774FB9F9D09158758A1A3DA857312A + decrypted=00000000000000000000000000000000 + Iterated 100 times=710EE2FD9E7CE1B9E92AC98DDCBD8F29 + Iterated 1000 times=9CEF44CAB855049EFACCA3F4CB063545 + +Set 1, vector# 37: + key=00000000040000000000000000000000 + plain=00000000000000000000000000000000 + cipher=C763754976805CD049B31CAF6350FDF0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=1DF9B79A18197641C18141D0F20BABE7 + Iterated 1000 times=B75C52BAA33E51C6D2F95EDBF082FA69 + +Set 1, vector# 38: + key=00000000020000000000000000000000 + plain=00000000000000000000000000000000 + cipher=EF4FC8D461098233D4C66C2DF58FE86D + decrypted=00000000000000000000000000000000 + Iterated 100 times=056B8B54DA03D74D0CE56CF9939BDEA2 + Iterated 1000 times=B7685554A96B3E2C4C54E02BD12E4FD0 + +Set 1, vector# 39: + key=00000000010000000000000000000000 + plain=00000000000000000000000000000000 + cipher=75E889763C4E20D878FA045B28871C67 + decrypted=00000000000000000000000000000000 + Iterated 100 times=F7C0BED206FA23B1CEC6F31FFAB4D97A + Iterated 1000 times=8CA0610417A6DB893E71656F53833210 + +Set 1, vector# 40: + key=00000000008000000000000000000000 + plain=00000000000000000000000000000000 + cipher=7A4C9560D83582ECEFAF05ECDB9140A8 + decrypted=00000000000000000000000000000000 + Iterated 100 times=2F5ECEF5EE74194D78E68DE73E44271D + Iterated 1000 times=169D1E0D48DFFDFE756F5DB5846356B8 + +Set 1, vector# 41: + key=00000000004000000000000000000000 + plain=00000000000000000000000000000000 + cipher=37ADDBBF952DB7E903C504E47F92338F + decrypted=00000000000000000000000000000000 + Iterated 100 times=4D3EA9FCAC722B7FED0C0D37563DC050 + Iterated 1000 times=5A0B6EBA4D632A5B53DE83037728AAA1 + +Set 1, vector# 42: + key=00000000002000000000000000000000 + plain=00000000000000000000000000000000 + cipher=7A8853B86D6167695112AF2699402467 + decrypted=00000000000000000000000000000000 + Iterated 100 times=DF870A26EC3FD549AE73FFFF4A02E69F + Iterated 1000 times=6AC748B65AED85C435DEE9642749AB74 + +Set 1, vector# 43: + key=00000000001000000000000000000000 + plain=00000000000000000000000000000000 + cipher=5D93F544B8BC44ABDBCB20D8A44AF278 + decrypted=00000000000000000000000000000000 + Iterated 100 times=DA796A3375E1AC8CEE34BFABEEAA1B89 + Iterated 1000 times=D7571E54CFA3F65A2BA0B42D9367D52B + +Set 1, vector# 44: + key=00000000000800000000000000000000 + plain=00000000000000000000000000000000 + cipher=D6B58D2C1065AAC38B39654C9FBEBBF3 + decrypted=00000000000000000000000000000000 + Iterated 100 times=366FBEBB88C0595E710C9ECB71DEA4B7 + Iterated 1000 times=90AA7EF96FB0439C0046F0990BCA17CA + +Set 1, vector# 45: + key=00000000000400000000000000000000 + plain=00000000000000000000000000000000 + cipher=EBAC69254540ACF4085F966832AD189C + decrypted=00000000000000000000000000000000 + Iterated 100 times=505ADE9ADF233CEE327D1B0AA1E45E35 + Iterated 1000 times=69B0D94BDEF8BB6AA625E2251A0E9666 + +Set 1, vector# 46: + key=00000000000200000000000000000000 + plain=00000000000000000000000000000000 + cipher=58A36E2F7417C080233932C3CEE9AB5B + decrypted=00000000000000000000000000000000 + Iterated 100 times=1FE99B476643AC48EC2099819ABA622E + Iterated 1000 times=406C43E3007DC60ECFC49A1A90D6A75A + +Set 1, vector# 47: + key=00000000000100000000000000000000 + plain=00000000000000000000000000000000 + cipher=BA6EE282C5E0BAD46DF4A43B31632852 + decrypted=00000000000000000000000000000000 + Iterated 100 times=EDB78C3B73B2C8BFFAB3443F14731533 + Iterated 1000 times=C951AA13904ED4EBD91C7BE9D80BA619 + +Set 1, vector# 48: + key=00000000000080000000000000000000 + plain=00000000000000000000000000000000 + cipher=7D3699224EBB2E6F63C0D209D987A656 + decrypted=00000000000000000000000000000000 + Iterated 100 times=86237BA991E3FBD8F607CAE19D42441A + Iterated 1000 times=2126EF1A331663954029AD5F2244DCD8 + +Set 1, vector# 49: + key=00000000000040000000000000000000 + plain=00000000000000000000000000000000 + cipher=6732A582BB961FEBB3E4F4C774699BD1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=6F645CF3BA1202B03848586C0C5C9020 + Iterated 1000 times=B0A23EAD564E696CE42178A4AAA7E50D + +Set 1, vector# 50: + key=00000000000020000000000000000000 + plain=00000000000000000000000000000000 + cipher=036F35C25274AE7B8CE5A9EE19EF0664 + decrypted=00000000000000000000000000000000 + Iterated 100 times=0FDFBBA7DCFA82004EB41FC493E423BE + Iterated 1000 times=3A4F86924644F02C74BFEAD5DC2298EE + +Set 1, vector# 51: + key=00000000000010000000000000000000 + plain=00000000000000000000000000000000 + cipher=44A588713F8CD45E3FF2247CC4CCF2A0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=3ABC0D9B39E0DF0EC50A71CB7AD13AB2 + Iterated 1000 times=1CC787ED7123C6DB79E45455E845D24C + +Set 1, vector# 52: + key=00000000000008000000000000000000 + plain=00000000000000000000000000000000 + cipher=2998265F16597BEB654085AEA753AA6E + decrypted=00000000000000000000000000000000 + Iterated 100 times=CD1A3A2C4FAC630AEA51A5B63A99BCBC + Iterated 1000 times=E9B72DC02B616A6B7918745723B25A87 + +Set 1, vector# 53: + key=00000000000004000000000000000000 + plain=00000000000000000000000000000000 + cipher=1653081245150F356C8DDF14BF1246AB + decrypted=00000000000000000000000000000000 + Iterated 100 times=1BA0DA946A23E93D062F299B648082DB + Iterated 1000 times=177BE2E71A4941524B1689B00DC73684 + +Set 1, vector# 54: + key=00000000000002000000000000000000 + plain=00000000000000000000000000000000 + cipher=29D9825B1E93220451D83E981788BC1A + decrypted=00000000000000000000000000000000 + Iterated 100 times=40B9584831A85EBA09E8034CD8E3D2B6 + Iterated 1000 times=C1448BD9DCDBBF2ED804975FF0B3367B + +Set 1, vector# 55: + key=00000000000001000000000000000000 + plain=00000000000000000000000000000000 + cipher=D0EE7C4B64AE94C0F4384849B3D2C79E + decrypted=00000000000000000000000000000000 + Iterated 100 times=F7822F3B514E6E979F92F7FC956650DD + Iterated 1000 times=11C3AFBD68955C084E89D71FCDC9F364 + +Set 1, vector# 56: + key=00000000000000800000000000000000 + plain=00000000000000000000000000000000 + cipher=D485A2C96F03AD7B1F5A47DDE182FD24 + decrypted=00000000000000000000000000000000 + Iterated 100 times=8E0B4A90485B0E00E2263CD4CE366F1D + Iterated 1000 times=FFD13A75E1E44BD4F29922BC6266440E + +Set 1, vector# 57: + key=00000000000000400000000000000000 + plain=00000000000000000000000000000000 + cipher=35216124DDFAE6DFC3AA9F2F61263CD6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=306F25684F27323BDD8E5AE1BBEF809C + Iterated 1000 times=0C519C9C5A3FFC65F9E5C35B8974DE31 + +Set 1, vector# 58: + key=00000000000000200000000000000000 + plain=00000000000000000000000000000000 + cipher=4F32E2B88A23204B1D985FC610449F9B + decrypted=00000000000000000000000000000000 + Iterated 100 times=0B9DB331ABCF1E5855A55B895F7FA3A1 + Iterated 1000 times=EF12F6E37AF0D76E69CC5CE767F41FEF + +Set 1, vector# 59: + key=00000000000000100000000000000000 + plain=00000000000000000000000000000000 + cipher=398EB7412842361AF4606A5C93F6ED46 + decrypted=00000000000000000000000000000000 + Iterated 100 times=639A5ADB9EAE0ED116B87A72FBD5EBC4 + Iterated 1000 times=43EE05243A6D4A493884BB30BB954C5A + +Set 1, vector# 60: + key=00000000000000080000000000000000 + plain=00000000000000000000000000000000 + cipher=7B1597DCD693E76E96484FEEA1F6AED7 + decrypted=00000000000000000000000000000000 + Iterated 100 times=24BC44C5EE484A944F20DADBA4A8C7F5 + Iterated 1000 times=01C5E8634742BEEE7780428645338741 + +Set 1, vector# 61: + key=00000000000000040000000000000000 + plain=00000000000000000000000000000000 + cipher=149A486757759D2C8657F07C5280D583 + decrypted=00000000000000000000000000000000 + Iterated 100 times=633AC2F711F11699642B014FD0CBF415 + Iterated 1000 times=0400BA9F5A0F97A9E0116617BB93ECEA + +Set 1, vector# 62: + key=00000000000000020000000000000000 + plain=00000000000000000000000000000000 + cipher=2D8DD59D3FC630389E5048C830990039 + decrypted=00000000000000000000000000000000 + Iterated 100 times=DE4A1C1EC6FFFDB1B576428664C6E94D + Iterated 1000 times=D1ABCD53705C56713209B66B8F5E5B3F + +Set 1, vector# 63: + key=00000000000000010000000000000000 + plain=00000000000000000000000000000000 + cipher=AA3F3F2D7728FFEB96BD67DE0D74C4F6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=B46D68F53D2D4C8B39B70125A7EBC428 + Iterated 1000 times=1B3D8B38023B34C4D9CF8702CEA11636 + +Set 1, vector# 64: + key=00000000000000008000000000000000 + plain=00000000000000000000000000000000 + cipher=A601E173BD371115822BAEB670126225 + decrypted=00000000000000000000000000000000 + Iterated 100 times=1FBDF7F3AE83F22BA876DA8446D0EC0D + Iterated 1000 times=6B7A3C36A2FFBDC9CEB7FEE066032CAE + +Set 1, vector# 65: + key=00000000000000004000000000000000 + plain=00000000000000000000000000000000 + cipher=1701015803D6D584628AC35BBE9E7DB7 + decrypted=00000000000000000000000000000000 + Iterated 100 times=37E15779651CF9DBCB32B47149E9CA64 + Iterated 1000 times=51786EC1492920DE805B4A20B73E8E3F + +Set 1, vector# 66: + key=00000000000000002000000000000000 + plain=00000000000000000000000000000000 + cipher=0918562B019733C42E68B17AA9AA9E13 + decrypted=00000000000000000000000000000000 + Iterated 100 times=51B17FF49A82BF8EC94725703EFA6FC3 + Iterated 1000 times=E7F5FE41EFEEC12BDF78F582ACB6351A + +Set 1, vector# 67: + key=00000000000000001000000000000000 + plain=00000000000000000000000000000000 + cipher=397B09AB4F5C5A248FF36C36279365EA + decrypted=00000000000000000000000000000000 + Iterated 100 times=1DC4E8F3653FF80E1D68768C6E872DEA + Iterated 1000 times=5B2ABA90CCDCD424A2211A19699524EE + +Set 1, vector# 68: + key=00000000000000000800000000000000 + plain=00000000000000000000000000000000 + cipher=A831E21F389FD2EDD19F5FAC24AF017E + decrypted=00000000000000000000000000000000 + Iterated 100 times=4AF20A3D31157ABD0CD0F4F7B3058598 + Iterated 1000 times=C0286FFFA24FBDB1DD5E74FE2652E905 + +Set 1, vector# 69: + key=00000000000000000400000000000000 + plain=00000000000000000000000000000000 + cipher=8EA6FB0B5265D4393A5D574F14DC9964 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5D9ECFB3E2E4F2114811201195D236E5 + Iterated 1000 times=26CA5A5C3B125C99278BB50DED602946 + +Set 1, vector# 70: + key=00000000000000000200000000000000 + plain=00000000000000000000000000000000 + cipher=CAAFE47EBBD4233CFEBE7236C2B9177D + decrypted=00000000000000000000000000000000 + Iterated 100 times=925F9FC6A6661E3FDC0CB70B51EDFAE2 + Iterated 1000 times=8B047B0A6B4228487AE20BD9BDA81AA6 + +Set 1, vector# 71: + key=00000000000000000100000000000000 + plain=00000000000000000000000000000000 + cipher=B4EFCA430909FA6AEE1009D228B7AFF1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5FE8F4F043CFF5F1D084B6598FD7BE19 + Iterated 1000 times=A2F8133F86663C640AAFCBDABDAAA44A + +Set 1, vector# 72: + key=00000000000000000080000000000000 + plain=00000000000000000000000000000000 + cipher=11338AF73B8BCD2226DE06406CF29901 + decrypted=00000000000000000000000000000000 + Iterated 100 times=8ADE95FB732D169E041131E150A03589 + Iterated 1000 times=72788074490B489E7FE65EF0CC0B0338 + +Set 1, vector# 73: + key=00000000000000000040000000000000 + plain=00000000000000000000000000000000 + cipher=59D3A2BE499E1CD363EDDCDB4C8E2C3F + decrypted=00000000000000000000000000000000 + Iterated 100 times=5D406E0359B29F9F36EB34357A4E1C24 + Iterated 1000 times=12D00FE2B89069F4416993D733E7C79C + +Set 1, vector# 74: + key=00000000000000000020000000000000 + plain=00000000000000000000000000000000 + cipher=7F701FAED083A9ED758B9611C54AAC3B + decrypted=00000000000000000000000000000000 + Iterated 100 times=E65C643AC83317E5414E444CBB7F126E + Iterated 1000 times=DD20D12BACA7AB11AAB070ECD771D661 + +Set 1, vector# 75: + key=00000000000000000010000000000000 + plain=00000000000000000000000000000000 + cipher=FEB81850462B7DCC2FFEDB15F6F58609 + decrypted=00000000000000000000000000000000 + Iterated 100 times=C3B2F6AE9C3A06DD02F2E85F1DA11737 + Iterated 1000 times=3A15DD98C92A33A073CFAD293AF89660 + +Set 1, vector# 76: + key=00000000000000000008000000000000 + plain=00000000000000000000000000000000 + cipher=93883C2EF7B6CB7BF4A3911AAAC6B0DD + decrypted=00000000000000000000000000000000 + Iterated 100 times=39B750A5046FF14822C4D2F5F99ED7EC + Iterated 1000 times=BF66C6CD44CF4B075D42A6B3075EB45E + +Set 1, vector# 77: + key=00000000000000000004000000000000 + plain=00000000000000000000000000000000 + cipher=9E2F0D795AA56E88F706A88C9F918268 + decrypted=00000000000000000000000000000000 + Iterated 100 times=4B95883AF71FA021F53EEF43C12E3934 + Iterated 1000 times=050F123885C1E09DA72E364E2F4F1C55 + +Set 1, vector# 78: + key=00000000000000000002000000000000 + plain=00000000000000000000000000000000 + cipher=9E97D935D1F7BE36CE19FE82E49C7ED9 + decrypted=00000000000000000000000000000000 + Iterated 100 times=EACFFC71F19583B96D7282E55EFB5345 + Iterated 1000 times=753180B3F11B82498C4A9686DE807E3A + +Set 1, vector# 79: + key=00000000000000000001000000000000 + plain=00000000000000000000000000000000 + cipher=8AB4180F9C8B59DDE97BC1D67674AB59 + decrypted=00000000000000000000000000000000 + Iterated 100 times=677F22F9118E513C77F41F218E3D01F8 + Iterated 1000 times=CD2817E00DE1F15C4CFFF58F937B2817 + +Set 1, vector# 80: + key=00000000000000000000800000000000 + plain=00000000000000000000000000000000 + cipher=AACDF9484335A71B42353806F2920AB5 + decrypted=00000000000000000000000000000000 + Iterated 100 times=8B3CE2460F62F47262B5ACE770368E15 + Iterated 1000 times=39A6B312A3DFC5F6A3B02A19AFBB2B7C + +Set 1, vector# 81: + key=00000000000000000000400000000000 + plain=00000000000000000000000000000000 + cipher=331D3AD70813E768FE2C47664936C281 + decrypted=00000000000000000000000000000000 + Iterated 100 times=D22A814B1C80014C81B56630EC85132B + Iterated 1000 times=E63E9F3F403BD7FB1D6241A1BAC3D36A + +Set 1, vector# 82: + key=00000000000000000000200000000000 + plain=00000000000000000000000000000000 + cipher=4F5C08B2451A1FC38427AA0A28671D18 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5E3A2F632540BD3E551706CC64E5D270 + Iterated 1000 times=2B2DF31BDA45A9451AB608C9B8296EE4 + +Set 1, vector# 83: + key=00000000000000000000100000000000 + plain=00000000000000000000000000000000 + cipher=FF9922E13548CBFDEF9F139C27DCBD29 + decrypted=00000000000000000000000000000000 + Iterated 100 times=84BA27BBF449B6D33A4C5BE394F586CF + Iterated 1000 times=11B3BC4809F286E051175C1924208E3B + +Set 1, vector# 84: + key=00000000000000000000080000000000 + plain=00000000000000000000000000000000 + cipher=8E69CB5CAB7CA3C0AA75CD9C02508E4A + decrypted=00000000000000000000000000000000 + Iterated 100 times=BA94DDD56C7D6D7B41FCAE4AA67602BC + Iterated 1000 times=9E0A723732B681CF5FB98C3AF4539888 + +Set 1, vector# 85: + key=00000000000000000000040000000000 + plain=00000000000000000000000000000000 + cipher=2C81516184192E3AA93AD55B874A21E4 + decrypted=00000000000000000000000000000000 + Iterated 100 times=726AFA01ACA9D308E268B7B1B676CE18 + Iterated 1000 times=15F5671AE33EE4F4A02BE09477A2341D + +Set 1, vector# 86: + key=00000000000000000000020000000000 + plain=00000000000000000000000000000000 + cipher=B06FA0C2FA6E10D38ADB04E3DACD99F7 + decrypted=00000000000000000000000000000000 + Iterated 100 times=507E9ED9493C12D6135C422C82BEBC4A + Iterated 1000 times=01FDC4971AD1B590D458B0028D667EB7 + +Set 1, vector# 87: + key=00000000000000000000010000000000 + plain=00000000000000000000000000000000 + cipher=4630F1952B2A4C147DA5752E0646E62A + decrypted=00000000000000000000000000000000 + Iterated 100 times=B1596DE4021A7EEDAC07B3DC1797ACD2 + Iterated 1000 times=20270F32F3E52C4EF28F1E3E5DCCE891 + +Set 1, vector# 88: + key=00000000000000000000008000000000 + plain=00000000000000000000000000000000 + cipher=C2658CAEDCDA90D172102494EFA618A6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=9DB1CD9739433FF203FF2845E6B21199 + Iterated 1000 times=FA5A3C3C4D4EFCFCE4D8EDD9C13C5D8C + +Set 1, vector# 89: + key=00000000000000000000004000000000 + plain=00000000000000000000000000000000 + cipher=EA556A22FFE6D02ED2196BB4DF563CE5 + decrypted=00000000000000000000000000000000 + Iterated 100 times=174380C4D15B7D69684DEB897CC26D8A + Iterated 1000 times=95DA38B4C05B466476A5EA460943BE4C + +Set 1, vector# 90: + key=00000000000000000000002000000000 + plain=00000000000000000000000000000000 + cipher=5C4D5F74990828AAE9D71549FB157698 + decrypted=00000000000000000000000000000000 + Iterated 100 times=9A95C83F546E7DCEC9A5A268CED8C1F2 + Iterated 1000 times=C134A9178C92DF918DFF0C55487105BB + +Set 1, vector# 91: + key=00000000000000000000001000000000 + plain=00000000000000000000000000000000 + cipher=43E22870B11DEBBA1818C799CCBCD767 + decrypted=00000000000000000000000000000000 + Iterated 100 times=4694D1AEB4C51B872A8FD9212309BA50 + Iterated 1000 times=743D17E9DE78332AC90AD8CADB31B1DF + +Set 1, vector# 92: + key=00000000000000000000000800000000 + plain=00000000000000000000000000000000 + cipher=E1A8A03A24ABA3D40B52C125A78CF1F4 + decrypted=00000000000000000000000000000000 + Iterated 100 times=89216A81A9A2179E2C5A463DEEB54CC6 + Iterated 1000 times=6A4B75C46FB4FADF0DE367FB5764B9E7 + +Set 1, vector# 93: + key=00000000000000000000000400000000 + plain=00000000000000000000000000000000 + cipher=5E9559C9EE9D47998D4819598D804E57 + decrypted=00000000000000000000000000000000 + Iterated 100 times=7C99FA62C4C7B0A3E7FD3C706F9ADEB2 + Iterated 1000 times=B7DA1C50497E67FBAE70EC482246AC6A + +Set 1, vector# 94: + key=00000000000000000000000200000000 + plain=00000000000000000000000000000000 + cipher=1C3FC0D6CA083CB971776AAF4819899C + decrypted=00000000000000000000000000000000 + Iterated 100 times=B71DF4B257808AA644C027240B9B8E95 + Iterated 1000 times=DC764468F2ADDB5C202BF85F20BD4441 + +Set 1, vector# 95: + key=00000000000000000000000100000000 + plain=00000000000000000000000000000000 + cipher=C60B5CA54CF729F60801B9719E7181E1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=67103E31453EB83960303B2E1C19D05D + Iterated 1000 times=44F7E4B1F370C5600BB1A040121C13CA + +Set 1, vector# 96: + key=00000000000000000000000080000000 + plain=00000000000000000000000000000000 + cipher=8705BB458DF2625CA9D9EC6CFE684A7C + decrypted=00000000000000000000000000000000 + Iterated 100 times=069B0DF1CB69CA7F22735A964E698663 + Iterated 1000 times=BAB50DDA46FCC2ED79994EEB970BC461 + +Set 1, vector# 97: + key=00000000000000000000000040000000 + plain=00000000000000000000000000000000 + cipher=DBDAB90D3FD47913F4A3649FFB923AFB + decrypted=00000000000000000000000000000000 + Iterated 100 times=B572869889BA1AD658D4305777B89947 + Iterated 1000 times=A659F4E194B156D8E36000A1D92409D5 + +Set 1, vector# 98: + key=00000000000000000000000020000000 + plain=00000000000000000000000000000000 + cipher=D949357B539FE68C09EE72FC333FD319 + decrypted=00000000000000000000000000000000 + Iterated 100 times=B904AD6830247D2AFFEC5DD33C327B21 + Iterated 1000 times=1BBD9DBD312821F9EC5F00993D82ABFD + +Set 1, vector# 99: + key=00000000000000000000000010000000 + plain=00000000000000000000000000000000 + cipher=B2A66542C5CC675A2CB52B73639C22FA + decrypted=00000000000000000000000000000000 + Iterated 100 times=F2287C9CB1D46B4FEC78C17C29302042 + Iterated 1000 times=527932C1A0B8DE092F476BE6018C7DCF + +Set 1, vector#100: + key=00000000000000000000000008000000 + plain=00000000000000000000000000000000 + cipher=2E903BDE9B022338D7B9A9099B340F74 + decrypted=00000000000000000000000000000000 + Iterated 100 times=F32CAF665BBCD1ECE1A41AB65B58EE02 + Iterated 1000 times=593D1CA2B23FAF0F35BA12841929764B + +Set 1, vector#101: + key=00000000000000000000000004000000 + plain=00000000000000000000000000000000 + cipher=8256727AA847BD17E4C1BCBE6514D678 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5C7C979F4E3967024E618359DA1C1779 + Iterated 1000 times=1383A65724881AA1E73FF9976CAD0C5C + +Set 1, vector#102: + key=00000000000000000000000002000000 + plain=00000000000000000000000000000000 + cipher=B62AC0C7FD9897B2B9FFD568D81BF124 + decrypted=00000000000000000000000000000000 + Iterated 100 times=64971A4CB365D08430BC66245B3F45C4 + Iterated 1000 times=1E4848D1DC479FA5434DFD17332CD4CE + +Set 1, vector#103: + key=00000000000000000000000001000000 + plain=00000000000000000000000000000000 + cipher=8E8259C955B547B3DC3BA3727B2935C4 + decrypted=00000000000000000000000000000000 + Iterated 100 times=25550881E3B7041618E54703EF193405 + Iterated 1000 times=0B34FF8FE58AEAC6E318F0E01CA314B3 + +Set 1, vector#104: + key=00000000000000000000000000800000 + plain=00000000000000000000000000000000 + cipher=EE2D0074FFECA1C0BF29A430CF2CE1B5 + decrypted=00000000000000000000000000000000 + Iterated 100 times=57201F18D7E68EAC6A6D150C7D4BCFB1 + Iterated 1000 times=6FA1735B57889097AAA97FC8701B9C2A + +Set 1, vector#105: + key=00000000000000000000000000400000 + plain=00000000000000000000000000000000 + cipher=AD4F2F20FA15D5B07D7ECDCDDCC028D2 + decrypted=00000000000000000000000000000000 + Iterated 100 times=D1DE7EDDF4B6DCE52B45AD47B678A918 + Iterated 1000 times=1F5BAF72B8E2536AE8F98A7D1D384E9C + +Set 1, vector#106: + key=00000000000000000000000000200000 + plain=00000000000000000000000000000000 + cipher=06505906ED369C964E2CC7C2BA1B4E1D + decrypted=00000000000000000000000000000000 + Iterated 100 times=CB0DF20B71B5A46740CCD2233A774725 + Iterated 1000 times=77E831413D470FCC6EBEFC2159659C0E + +Set 1, vector#107: + key=00000000000000000000000000100000 + plain=00000000000000000000000000000000 + cipher=8DB3DDCCB6227CC15405C9F76F4006DB + decrypted=00000000000000000000000000000000 + Iterated 100 times=55CC62E668B3E2AB902D2F841AEAD3FA + Iterated 1000 times=0E9A1AD79FD2D441392A693DE432DBCF + +Set 1, vector#108: + key=00000000000000000000000000080000 + plain=00000000000000000000000000000000 + cipher=B4EDB294983BA33063A2059E4145A945 + decrypted=00000000000000000000000000000000 + Iterated 100 times=1B37F3C0A401BD456D65375C5D10A983 + Iterated 1000 times=FDFF261253A5292B76150DCF471F6E9C + +Set 1, vector#109: + key=00000000000000000000000000040000 + plain=00000000000000000000000000000000 + cipher=C25091C74C0BD1C6B586F10C94603874 + decrypted=00000000000000000000000000000000 + Iterated 100 times=45EA8D93DF03B5CA41AF8BD1D9411896 + Iterated 1000 times=7F46D59D078F2792117C256E5A70B63B + +Set 1, vector#110: + key=00000000000000000000000000020000 + plain=00000000000000000000000000000000 + cipher=265E4B508591D90FD53F33DFF8C874D3 + decrypted=00000000000000000000000000000000 + Iterated 100 times=9601B7E82B31495273C20C1F93A3B140 + Iterated 1000 times=92C0E53CA9D2AAF159685341468A2B04 + +Set 1, vector#111: + key=00000000000000000000000000010000 + plain=00000000000000000000000000000000 + cipher=B0966F62E9E97D2C087BDDFBF6335CF4 + decrypted=00000000000000000000000000000000 + Iterated 100 times=2E77A9EA1B5D94EE1953C3AB4D6463B7 + Iterated 1000 times=F02CFC2165102DBA8D781BE3FF948DE2 + +Set 1, vector#112: + key=00000000000000000000000000008000 + plain=00000000000000000000000000000000 + cipher=715811861B5D036EA41746B169D066E5 + decrypted=00000000000000000000000000000000 + Iterated 100 times=751B9A27A650ACBFDFC279EB5A05AB14 + Iterated 1000 times=B2F96858CD840CA336B1541ADD0792F8 + +Set 1, vector#113: + key=00000000000000000000000000004000 + plain=00000000000000000000000000000000 + cipher=7A3FECE75EAC1822EAC8F62292419DCC + decrypted=00000000000000000000000000000000 + Iterated 100 times=7306BA6935267A84B1F8557E2584DA63 + Iterated 1000 times=5E5F41A3CFD11F833B4A2F009DF64F8A + +Set 1, vector#114: + key=00000000000000000000000000002000 + plain=00000000000000000000000000000000 + cipher=F8EF7F7464CCCB6348E5B7FDB30CC645 + decrypted=00000000000000000000000000000000 + Iterated 100 times=DDA5AB03372797A4BE3E498ED2B77FE9 + Iterated 1000 times=A812534431111E50711D21D2748777A7 + +Set 1, vector#115: + key=00000000000000000000000000001000 + plain=00000000000000000000000000000000 + cipher=19FB721EBE071C6D0AB61278125ADBCC + decrypted=00000000000000000000000000000000 + Iterated 100 times=9DD13525106D10711BE311FE2C1EADD5 + Iterated 1000 times=406C12DF892C9DC4E8E10ED0C7A5145C + +Set 1, vector#116: + key=00000000000000000000000000000800 + plain=00000000000000000000000000000000 + cipher=A32F06337B1A2F8923D502D19C68A942 + decrypted=00000000000000000000000000000000 + Iterated 100 times=0F11B524078FB8B813642D80FF729082 + Iterated 1000 times=896B3A5A34B27BD8F635F0BA0299FDFF + +Set 1, vector#117: + key=00000000000000000000000000000400 + plain=00000000000000000000000000000000 + cipher=4CD0C1761CD715A7C5042D527EB7E1BA + decrypted=00000000000000000000000000000000 + Iterated 100 times=7B35098F8474369B605D30403533D0A7 + Iterated 1000 times=633670867C79D5C4A71D388D945FE9E6 + +Set 1, vector#118: + key=00000000000000000000000000000200 + plain=00000000000000000000000000000000 + cipher=55087C17E085647D4ED951F95E945704 + decrypted=00000000000000000000000000000000 + Iterated 100 times=167AEF6D88289E5FF91C881649572997 + Iterated 1000 times=E33A447444FC80CDDE649EE7122789EC + +Set 1, vector#119: + key=00000000000000000000000000000100 + plain=00000000000000000000000000000000 + cipher=BCB7B110F08C25378807ABA3914686EC + decrypted=00000000000000000000000000000000 + Iterated 100 times=8063660A8FC76C247728C5611B79A0A1 + Iterated 1000 times=3FBF9B2CC32C55B2CDF48AFE45392A87 + +Set 1, vector#120: + key=00000000000000000000000000000080 + plain=00000000000000000000000000000000 + cipher=5B42CBEBD5BB087770C8BF5D4EE8B7E6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=F2C0EE5F7E2F757EC5377190CF783A21 + Iterated 1000 times=641E0BC242E290FC09D25A1A5F2DC0B2 + +Set 1, vector#121: + key=00000000000000000000000000000040 + plain=00000000000000000000000000000000 + cipher=9F39E4BB2AE0601A0A6F720E8CCB9D27 + decrypted=00000000000000000000000000000000 + Iterated 100 times=CBCD2659B3005433381E4C4C953E6734 + Iterated 1000 times=91471134BDEC965AEE577AF6749DBC8F + +Set 1, vector#122: + key=00000000000000000000000000000020 + plain=00000000000000000000000000000000 + cipher=989C0F4D84EFA8F68C77FC17FA7BECAD + decrypted=00000000000000000000000000000000 + Iterated 100 times=10DEE994E0FC71150CB9564047EB9D21 + Iterated 1000 times=A1A8CF060FD1D4C638A8FE5430721899 + +Set 1, vector#123: + key=00000000000000000000000000000010 + plain=00000000000000000000000000000000 + cipher=3F22A4F1D2F55152C41DFA8741C28CD6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=00170E65AAC3D07C826826A0EC13818C + Iterated 1000 times=174893B907DA148FC2EEA83050A484EF + +Set 1, vector#124: + key=00000000000000000000000000000008 + plain=00000000000000000000000000000000 + cipher=24F878C4183E64B6441D8A45AAAE91B7 + decrypted=00000000000000000000000000000000 + Iterated 100 times=176EC1718893A2FC8FCBFD8959D753FA + Iterated 1000 times=BB431CC8D0BBAC84164CE1CE016A295E + +Set 1, vector#125: + key=00000000000000000000000000000004 + plain=00000000000000000000000000000000 + cipher=BB017266799362FFC8A61E8176E85DD2 + decrypted=00000000000000000000000000000000 + Iterated 100 times=6EE978F9F347ABA757447393CFCCC199 + Iterated 1000 times=178FB7DE1C4DC35EFEDCCB441578F04A + +Set 1, vector#126: + key=00000000000000000000000000000002 + plain=00000000000000000000000000000000 + cipher=3CFBEF3A607DCF5F85010ADB89715927 + decrypted=00000000000000000000000000000000 + Iterated 100 times=6C2CA2705A30246D13E9FD48D5CD637B + Iterated 1000 times=6611ABFDCF209F98EDB1A54CB7FE3DA5 + +Set 1, vector#127: + key=00000000000000000000000000000001 + plain=00000000000000000000000000000000 + cipher=138919FB3443DC23F7CFDEFE483142E1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5CB889158DDFADF068EA0CCFC0A38775 + Iterated 1000 times=F02C40ECECC4F88C0976EF64C2F76792 + +Test vectors -- set 2 +===================== + +Set 2, vector# 0: + key=00000000000000000000000000000000 + plain=80000000000000000000000000000000 + cipher=4D22D709DB6E384F1BA3C059285FE03B + decrypted=80000000000000000000000000000000 + Iterated 100 times=F5821FBE351C56953D05D79CAAAC1D85 + Iterated 1000 times=C613D415F1C26C2E473B265758092740 + +Set 2, vector# 1: + key=00000000000000000000000000000000 + plain=40000000000000000000000000000000 + cipher=C893ACFE88827FFF4B160BE9C2FDDEF0 + decrypted=40000000000000000000000000000000 + Iterated 100 times=1CFA47530BFA6DD97CF3B402F805FA3D + Iterated 1000 times=6B3FA1F6EC85F538F2BC9CD68A15FCE6 + +Set 2, vector# 2: + key=00000000000000000000000000000000 + plain=20000000000000000000000000000000 + cipher=911AB092BFF5CA615DA511CD04D1F08A + decrypted=20000000000000000000000000000000 + Iterated 100 times=F8C4A978AD142129866BA7396E8C264C + Iterated 1000 times=4639DC2C205F3298F2197E5C3090DDF0 + +Set 2, vector# 3: + key=00000000000000000000000000000000 + plain=10000000000000000000000000000000 + cipher=BF647045D4DC14F9AA75DE4084EF8003 + decrypted=10000000000000000000000000000000 + Iterated 100 times=112D7E54DE20C94BCB07F46A362FF82B + Iterated 1000 times=3275CF5E822308D8DF85E8B2E19460FB + +Set 2, vector# 4: + key=00000000000000000000000000000000 + plain=08000000000000000000000000000000 + cipher=9CB31A32E38A61183CDD8CD870B40079 + decrypted=08000000000000000000000000000000 + Iterated 100 times=8B1E87BB9ACBDA6EF070387A7F98C315 + Iterated 1000 times=B112E8B77672C79B4B30F10C9A1B4237 + +Set 2, vector# 5: + key=00000000000000000000000000000000 + plain=04000000000000000000000000000000 + cipher=D3D3CEA943ECB21797D3F57637714BBB + decrypted=04000000000000000000000000000000 + Iterated 100 times=3D30B140F47816DA4D55EEE6FB1B8DDC + Iterated 1000 times=819A028ADEAC22DACAD0D0800E0F4B07 + +Set 2, vector# 6: + key=00000000000000000000000000000000 + plain=02000000000000000000000000000000 + cipher=A6B72C20578C279A8230FD6D31D0B4CB + decrypted=02000000000000000000000000000000 + Iterated 100 times=E9E961A6AFFAA7B2C0C572DC3017C369 + Iterated 1000 times=137C8FCA8F5ADAE3ABB0E2344C96E70E + +Set 2, vector# 7: + key=00000000000000000000000000000000 + plain=01000000000000000000000000000000 + cipher=9A2422D9B80B809A5D71A7C3947346BC + decrypted=01000000000000000000000000000000 + Iterated 100 times=7EC11C629F448F460EAC6673F7630421 + Iterated 1000 times=46BC21B33E3E646DA8DDC39A8FA6CC31 + +Set 2, vector# 8: + key=00000000000000000000000000000000 + plain=00800000000000000000000000000000 + cipher=3D3360039C505A242AA5406143541FFD + decrypted=00800000000000000000000000000000 + Iterated 100 times=3E951A7F2E96CF9CA99F9814BED42639 + Iterated 1000 times=B1D348496D36878F3707CC280D156ABF + +Set 2, vector# 9: + key=00000000000000000000000000000000 + plain=00400000000000000000000000000000 + cipher=16071BD26F484ED09B6DB51C79F34CA8 + decrypted=00400000000000000000000000000000 + Iterated 100 times=AC56E67CC45BB745CC6B945C0ABB6612 + Iterated 1000 times=3180382D48A4D2E92A7ED160E7ACA692 + +Set 2, vector# 10: + key=00000000000000000000000000000000 + plain=00200000000000000000000000000000 + cipher=CEBF701FED111927D4D3740B53B2270D + decrypted=00200000000000000000000000000000 + Iterated 100 times=AD6A6D19E49138EBC91CE0770F1BA3DF + Iterated 1000 times=D03C6E6491A506A32770FD6E7018C472 + +Set 2, vector# 11: + key=00000000000000000000000000000000 + plain=00100000000000000000000000000000 + cipher=47888A5D9E61EEEE8A14443AF6EBF34B + decrypted=00100000000000000000000000000000 + Iterated 100 times=9A45CB4EF03889B7E9B96DFB25BD9C88 + Iterated 1000 times=C23920CB2CF44664C2D95F01E90436A9 + +Set 2, vector# 12: + key=00000000000000000000000000000000 + plain=00080000000000000000000000000000 + cipher=A5C9D5C7BF753DC9BB2B671314059EC0 + decrypted=00080000000000000000000000000000 + Iterated 100 times=3EBDB3A175A1E41AA36E55B38D9585E1 + Iterated 1000 times=624C31766971CA49414709A747FD7D13 + +Set 2, vector# 13: + key=00000000000000000000000000000000 + plain=00040000000000000000000000000000 + cipher=2F1DC4B30907D6B504526025BFF9393E + decrypted=00040000000000000000000000000000 + Iterated 100 times=CE4B7ED58FF592E951E83E40513E44B9 + Iterated 1000 times=21C80267AA9558345BBB2F71518D90FA + +Set 2, vector# 14: + key=00000000000000000000000000000000 + plain=00020000000000000000000000000000 + cipher=1CB2C4F3B006DDDFE3427DDFD8E3E9BC + decrypted=00020000000000000000000000000000 + Iterated 100 times=7298101A32B819BDB3D70A017A7A5D0F + Iterated 1000 times=6FA2DAD42F4A30139530C6826B5753E8 + +Set 2, vector# 15: + key=00000000000000000000000000000000 + plain=00010000000000000000000000000000 + cipher=F11702EC1E6BB755ABC1D6E8518C2E77 + decrypted=00010000000000000000000000000000 + Iterated 100 times=A5186FD9AD2AA77B803150A8E7740813 + Iterated 1000 times=24A1BDE77C0282D420C30B652426542C + +Set 2, vector# 16: + key=00000000000000000000000000000000 + plain=00008000000000000000000000000000 + cipher=5044C23AFA098D6EE9414F9BA3165FDE + decrypted=00008000000000000000000000000000 + Iterated 100 times=08E2D641AD6CA84A890A88326494AEA0 + Iterated 1000 times=F872A3CDBD6EAFC50E4427C7157A1796 + +Set 2, vector# 17: + key=00000000000000000000000000000000 + plain=00004000000000000000000000000000 + cipher=F794FEDF2A7D9CA48C3D2E6E24E2F42D + decrypted=00004000000000000000000000000000 + Iterated 100 times=C5F710560F512A13F22C52D2E252619E + Iterated 1000 times=A3E9F4F98B410566FD912CF0D6475A32 + +Set 2, vector# 18: + key=00000000000000000000000000000000 + plain=00002000000000000000000000000000 + cipher=EDFBDE9A3598EFF1B80D50362518E0B7 + decrypted=00002000000000000000000000000000 + Iterated 100 times=E10E9AA9019C9B4CF2711431E952EDED + Iterated 1000 times=405896A8794060A2722F28E43765CD0E + +Set 2, vector# 19: + key=00000000000000000000000000000000 + plain=00001000000000000000000000000000 + cipher=C292B456555601FDEF0FF8911B96BADB + decrypted=00001000000000000000000000000000 + Iterated 100 times=2501FB8EFF913F2CD81F0E80F6919F88 + Iterated 1000 times=8EEA68B6D5E5720686A3F22A1F5AD04C + +Set 2, vector# 20: + key=00000000000000000000000000000000 + plain=00000800000000000000000000000000 + cipher=FBE85B4D8AF4A60C34C080CCE05240CF + decrypted=00000800000000000000000000000000 + Iterated 100 times=455D430CA5A1043B9C1901B766493B56 + Iterated 1000 times=AEAA0E35F058779EFA2D39FE65DE869C + +Set 2, vector# 21: + key=00000000000000000000000000000000 + plain=00000400000000000000000000000000 + cipher=913D349D0443ACB492F8B00B91359399 + decrypted=00000400000000000000000000000000 + Iterated 100 times=2B01E8F0520F0FF5C991B75B57BB2FB4 + Iterated 1000 times=29153FFE9EDCCBDAB9644E8EF1560FDB + +Set 2, vector# 22: + key=00000000000000000000000000000000 + plain=00000200000000000000000000000000 + cipher=236A9362603EB3F35C28A154DDA30ACF + decrypted=00000200000000000000000000000000 + Iterated 100 times=FD6B69BB4084E2ADBD3549234170ADDA + Iterated 1000 times=D576EB9F7EFAD1BFC449C000339B5BDE + +Set 2, vector# 23: + key=00000000000000000000000000000000 + plain=00000100000000000000000000000000 + cipher=9974B7BD7FE01E012C4C240303781290 + decrypted=00000100000000000000000000000000 + Iterated 100 times=C888A2A9AB685769A19FA320EF534471 + Iterated 1000 times=B25CDEAFE61B9E6E08883E210881E05D + +Set 2, vector# 24: + key=00000000000000000000000000000000 + plain=00000080000000000000000000000000 + cipher=1DA18A5F7D8C432C2E70094604C70C84 + decrypted=00000080000000000000000000000000 + Iterated 100 times=56DD51526035B76D61FD6123B9A95A7C + Iterated 1000 times=1EF1C00284294E13B2C9941F51C899BF + +Set 2, vector# 25: + key=00000000000000000000000000000000 + plain=00000040000000000000000000000000 + cipher=5A20A0A094E073BEC88EF3CE5673D51D + decrypted=00000040000000000000000000000000 + Iterated 100 times=92CD6689364124E13B706F0B82EC7FC6 + Iterated 1000 times=3D2062008615605705BEAD971E1ACCE4 + +Set 2, vector# 26: + key=00000000000000000000000000000000 + plain=00000020000000000000000000000000 + cipher=A4B27D286FCED908604505AFBE8C124B + decrypted=00000020000000000000000000000000 + Iterated 100 times=0E890F0D6BD69B65A0BE05754B8BED1A + Iterated 1000 times=256FBF8C033B4B5074D4B4CBDE21E74C + +Set 2, vector# 27: + key=00000000000000000000000000000000 + plain=00000010000000000000000000000000 + cipher=A1D352FBF0B9563D06AF4C25382E3438 + decrypted=00000010000000000000000000000000 + Iterated 100 times=FD06C9AC183BA72B1B2057DDC227D97D + Iterated 1000 times=957C9AC0AA9D8AA4E164D36EA9941E85 + +Set 2, vector# 28: + key=00000000000000000000000000000000 + plain=00000008000000000000000000000000 + cipher=98D96CD1520D62AC401DCBBD25EC4EDA + decrypted=00000008000000000000000000000000 + Iterated 100 times=581812B207DA8B01C44B2A5D57EA91B1 + Iterated 1000 times=F73F241D082A8370DF5A1E96C2F0CA96 + +Set 2, vector# 29: + key=00000000000000000000000000000000 + plain=00000004000000000000000000000000 + cipher=9A1CE6C8516E82AC2E9F73B147464361 + decrypted=00000004000000000000000000000000 + Iterated 100 times=91C919405DD1708207F8AD247072E75B + Iterated 1000 times=0C9CE83A783E68D5F51012CE8B03042F + +Set 2, vector# 30: + key=00000000000000000000000000000000 + plain=00000002000000000000000000000000 + cipher=780943DC116D70DF8A04344528A6E014 + decrypted=00000002000000000000000000000000 + Iterated 100 times=B66E1A4438EBB45F60FF6578F8BBC9CF + Iterated 1000 times=730BE3234C529F218903299F38C93B05 + +Set 2, vector# 31: + key=00000000000000000000000000000000 + plain=00000001000000000000000000000000 + cipher=B348A7911B6FAD00AD04B909B61821B9 + decrypted=00000001000000000000000000000000 + Iterated 100 times=ACE95CABF642C63BD90E6E426A8D3A3A + Iterated 1000 times=1AFF74E89F0DA1CB4DEC694C47956751 + +Set 2, vector# 32: + key=00000000000000000000000000000000 + plain=00000000800000000000000000000000 + cipher=C6F3AA64FD6288A3E680041336DE4412 + decrypted=00000000800000000000000000000000 + Iterated 100 times=E331DEB86DAF5D93A888A0DE827CC622 + Iterated 1000 times=DD4AFF0E6B6D4766D1DA71762CF852FB + +Set 2, vector# 33: + key=00000000000000000000000000000000 + plain=00000000400000000000000000000000 + cipher=64F3413C9EF24B9F4AC93BCB760843C6 + decrypted=00000000400000000000000000000000 + Iterated 100 times=23D7DBDB560EF0B0189787F961FBCCB7 + Iterated 1000 times=F13209AC87F124DFDCE41AADC5549E6C + +Set 2, vector# 34: + key=00000000000000000000000000000000 + plain=00000000200000000000000000000000 + cipher=27E155B21935452FCAD213A7C98D1685 + decrypted=00000000200000000000000000000000 + Iterated 100 times=E390BF6827B414C1031DF7BE29E77071 + Iterated 1000 times=6F0CB05832FAEB1798EC7E277E2FD31B + +Set 2, vector# 35: + key=00000000000000000000000000000000 + plain=00000000100000000000000000000000 + cipher=8892AF990D1FB66C3D5B2328566F1BD7 + decrypted=00000000100000000000000000000000 + Iterated 100 times=7E1B20DB87A9CA1A0E437E5E9ACC6DEB + Iterated 1000 times=33C603A344CD0A36BCD00662AB7137AB + +Set 2, vector# 36: + key=00000000000000000000000000000000 + plain=00000000080000000000000000000000 + cipher=5373D258C3F7EF63C90A893C3D21D031 + decrypted=00000000080000000000000000000000 + Iterated 100 times=FCF1EB33686732A6F2F8CC77419EE9F0 + Iterated 1000 times=ADDBA10FEBE92D501165FF5D78635B5B + +Set 2, vector# 37: + key=00000000000000000000000000000000 + plain=00000000040000000000000000000000 + cipher=D88A3F65A9512A68C9EB295FB7CCEC33 + decrypted=00000000040000000000000000000000 + Iterated 100 times=464E02D165FD78A004BA7A3F994B4FD2 + Iterated 1000 times=784B63C9A5AD732756713A94C881E5AC + +Set 2, vector# 38: + key=00000000000000000000000000000000 + plain=00000000020000000000000000000000 + cipher=88E9C06F5969AA944455AA2D9DB4FFD5 + decrypted=00000000020000000000000000000000 + Iterated 100 times=3798E8C4E978D4D556F8EB6E0EB158AF + Iterated 1000 times=0207370A358812592327B909D99214B2 + +Set 2, vector# 39: + key=00000000000000000000000000000000 + plain=00000000010000000000000000000000 + cipher=46E85187CDB27D5B74883208187C947D + decrypted=00000000010000000000000000000000 + Iterated 100 times=ACE4017E99D2CEDA101B4C6E3F8BA93A + Iterated 1000 times=6D87654D286F6AC53821B8C7ECF16696 + +Set 2, vector# 40: + key=00000000000000000000000000000000 + plain=00000000008000000000000000000000 + cipher=45462128DE02E2648A8116D24F1D18CB + decrypted=00000000008000000000000000000000 + Iterated 100 times=0D21984296E3987FBE6614029E08D942 + Iterated 1000 times=8E45EB342DA7176A15524EDC9416178D + +Set 2, vector# 41: + key=00000000000000000000000000000000 + plain=00000000004000000000000000000000 + cipher=C91BC05A52C9A88F143A8CC09D0CB9B2 + decrypted=00000000004000000000000000000000 + Iterated 100 times=8E784C86D78DAF4A5075AA64384B6BA6 + Iterated 1000 times=D9179C9F7DF139F248ACB0924DEBE919 + +Set 2, vector# 42: + key=00000000000000000000000000000000 + plain=00000000002000000000000000000000 + cipher=BB186278604818F46CE86D032ECD06B2 + decrypted=00000000002000000000000000000000 + Iterated 100 times=5497B243B29CFFD88794F36BE5E28E6C + Iterated 1000 times=541E59BAA5AAB85D25955F801341DB96 + +Set 2, vector# 43: + key=00000000000000000000000000000000 + plain=00000000001000000000000000000000 + cipher=2AF2369FD91E44EDF334517A26BB48B9 + decrypted=00000000001000000000000000000000 + Iterated 100 times=4B6D68CED67FDEFA934701C6033EB809 + Iterated 1000 times=7DBD25324AAA918E402457DCF140BE79 + +Set 2, vector# 44: + key=00000000000000000000000000000000 + plain=00000000000800000000000000000000 + cipher=2754A07FB52E606766532A2A0D0325D2 + decrypted=00000000000800000000000000000000 + Iterated 100 times=9E96E59AD3FC8EDACE3C9E0A5424408B + Iterated 1000 times=58ECD235569A91C070F582DC82EBCAA4 + +Set 2, vector# 45: + key=00000000000000000000000000000000 + plain=00000000000400000000000000000000 + cipher=311FB908A2E9AB35CE45B6B3AC880181 + decrypted=00000000000400000000000000000000 + Iterated 100 times=EBA5347D72F7899A157AA48E6195EC1A + Iterated 1000 times=013F75A14BDB22FC1A733D8C2AFFACEA + +Set 2, vector# 46: + key=00000000000000000000000000000000 + plain=00000000000200000000000000000000 + cipher=0EC15EEB966CC991FD9B60AAA964E613 + decrypted=00000000000200000000000000000000 + Iterated 100 times=19CB96A8E24019F02F30C7E7986968F9 + Iterated 1000 times=514A1850DBB26C46DCF18704737341EE + +Set 2, vector# 47: + key=00000000000000000000000000000000 + plain=00000000000100000000000000000000 + cipher=2F13C53A5CBDD6FE76787A85186B13D3 + decrypted=00000000000100000000000000000000 + Iterated 100 times=CB91E658F4F25663EC9179B603F1ED73 + Iterated 1000 times=77EFB456630AA8CF9E2F83ECA1406C81 + +Set 2, vector# 48: + key=00000000000000000000000000000000 + plain=00000000000080000000000000000000 + cipher=A9BF7CE64EF6779EF8839A6B77BB45BB + decrypted=00000000000080000000000000000000 + Iterated 100 times=0C6E0B2880DF6EF5B30BF22294EF6076 + Iterated 1000 times=A5E678B1FAE6AD1405DBDD068009CC63 + +Set 2, vector# 49: + key=00000000000000000000000000000000 + plain=00000000000040000000000000000000 + cipher=A970E777499B8A4081FD6605C530F315 + decrypted=00000000000040000000000000000000 + Iterated 100 times=AC3704E18412079F15F4AD8377A18747 + Iterated 1000 times=0BF6328915F0EA746730C95103484349 + +Set 2, vector# 50: + key=00000000000000000000000000000000 + plain=00000000000020000000000000000000 + cipher=3CB27F4AEF917191C774AA69E278BFCD + decrypted=00000000000020000000000000000000 + Iterated 100 times=91C8E40B787BCAA3EF6894AFE0650B95 + Iterated 1000 times=417C57E62F8B4745E31BD0645483EAEE + +Set 2, vector# 51: + key=00000000000000000000000000000000 + plain=00000000000010000000000000000000 + cipher=E2C07471766A7A8DDBCAE703E72BDFD3 + decrypted=00000000000010000000000000000000 + Iterated 100 times=BF65CE4B40C96EC449D5BEB66A11C81E + Iterated 1000 times=3F2E295F1EEEED0B327CB72DF1E0B08C + +Set 2, vector# 52: + key=00000000000000000000000000000000 + plain=00000000000008000000000000000000 + cipher=331AF32116F9A0BF4A687B980F57DDB4 + decrypted=00000000000008000000000000000000 + Iterated 100 times=46C74BD05A14B61E08065971476ABBEB + Iterated 1000 times=74236DF2DA072406754EAF1651BB78EB + +Set 2, vector# 53: + key=00000000000000000000000000000000 + plain=00000000000004000000000000000000 + cipher=BA4E405F30B15A6D0017F729CB335CD4 + decrypted=00000000000004000000000000000000 + Iterated 100 times=0FBF7D341DE49E5B643D50C73850F0BF + Iterated 1000 times=EBD94E5797A884A022D94D032C485E69 + +Set 2, vector# 54: + key=00000000000000000000000000000000 + plain=00000000000002000000000000000000 + cipher=0850DBCFC3D690430E752F5895C86325 + decrypted=00000000000002000000000000000000 + Iterated 100 times=85B5CBB6A51DDCE9EDCBE7984619F1E0 + Iterated 1000 times=CDE9AE267C3C6BB37902CEFA0E5E3DD7 + +Set 2, vector# 55: + key=00000000000000000000000000000000 + plain=00000000000001000000000000000000 + cipher=E29479C2E79FCC05FBFDF8C974B45880 + decrypted=00000000000001000000000000000000 + Iterated 100 times=3AD676121B291A81DC1B0C87659A6551 + Iterated 1000 times=6321785E5D312D422C9B0A5B442C72A4 + +Set 2, vector# 56: + key=00000000000000000000000000000000 + plain=00000000000000800000000000000000 + cipher=F4FD39784FB07694B98D28A20A9471BD + decrypted=00000000000000800000000000000000 + Iterated 100 times=A5ADFDA4B5F6331C30550A0DE826FDE7 + Iterated 1000 times=A5DCF2D9704E0C6FC88E61CBAAA5D06F + +Set 2, vector# 57: + key=00000000000000000000000000000000 + plain=00000000000000400000000000000000 + cipher=CBD6EF27040C4F4B6517440E01C2ABF4 + decrypted=00000000000000400000000000000000 + Iterated 100 times=E58A366411B3A26DF393CAC9C4DEA034 + Iterated 1000 times=C0C37AC21053A4EAC938FCDB1ABD7EDE + +Set 2, vector# 58: + key=00000000000000000000000000000000 + plain=00000000000000200000000000000000 + cipher=D66F885CAA12F5B392B157513494FCD7 + decrypted=00000000000000200000000000000000 + Iterated 100 times=710A996A123F09ED85C076A4BEC27BD2 + Iterated 1000 times=5ECAF0FE8DBEE6A5C095687A5A09FB4D + +Set 2, vector# 59: + key=00000000000000000000000000000000 + plain=00000000000000100000000000000000 + cipher=742AADB93F1F633A2C4BF6F8CB87191B + decrypted=00000000000000100000000000000000 + Iterated 100 times=8044E205B85E4E4838129479AFF8FA13 + Iterated 1000 times=FF7C6F2565D30E55402B1B9EB359CAFA + +Set 2, vector# 60: + key=00000000000000000000000000000000 + plain=00000000000000080000000000000000 + cipher=C2C92D0E4A3B015077C70219DDA3446D + decrypted=00000000000000080000000000000000 + Iterated 100 times=B0382F4612A3482346E1A527D5F43C3E + Iterated 1000 times=A37F9A4A2689640BC31F9CEC87296D97 + +Set 2, vector# 61: + key=00000000000000000000000000000000 + plain=00000000000000040000000000000000 + cipher=62C32343B70530638240A76AECFE9DA6 + decrypted=00000000000000040000000000000000 + Iterated 100 times=F32AA141EAEED4474B76C8081A8D5DAB + Iterated 1000 times=5A1F6CA5C8D521413BCB503062528C68 + +Set 2, vector# 62: + key=00000000000000000000000000000000 + plain=00000000000000020000000000000000 + cipher=4BBFE5BB00F926974E8435BC6EE30ED7 + decrypted=00000000000000020000000000000000 + Iterated 100 times=27F593A0C107CA827C28A741A728F894 + Iterated 1000 times=F0D988E1893DB84BF12466B34574EE82 + +Set 2, vector# 63: + key=00000000000000000000000000000000 + plain=00000000000000010000000000000000 + cipher=F1804D3726193872B8BD1032E6EE850D + decrypted=00000000000000010000000000000000 + Iterated 100 times=D483E3D956C2648D3699C4A8885F2474 + Iterated 1000 times=678F18D243C9AE976E9A6D87AEE11B19 + +Set 2, vector# 64: + key=00000000000000000000000000000000 + plain=00000000000000008000000000000000 + cipher=60DAC14FC8ECC2AAB3D1F8937C63B416 + decrypted=00000000000000008000000000000000 + Iterated 100 times=5A965A253384D61FB64602B348E16F1C + Iterated 1000 times=4B936A3846DE05C4F60205697DFC14FF + +Set 2, vector# 65: + key=00000000000000000000000000000000 + plain=00000000000000004000000000000000 + cipher=1D54D113053C3CF4986228037B9A341F + decrypted=00000000000000004000000000000000 + Iterated 100 times=685AC0A13CCA8502476B70DEFD3233A2 + Iterated 1000 times=F5C9941F0C9C0DA66D94EDD821750599 + +Set 2, vector# 66: + key=00000000000000000000000000000000 + plain=00000000000000002000000000000000 + cipher=20FD1F6087C763CE0A6CFB025DC1C888 + decrypted=00000000000000002000000000000000 + Iterated 100 times=D6EC184385586E7A26AA385993521AC0 + Iterated 1000 times=023741C8A137D1AE2BE804A0CDB89FC3 + +Set 2, vector# 67: + key=00000000000000000000000000000000 + plain=00000000000000001000000000000000 + cipher=4B1AF772FE12F25A7FD5EB794350F3F2 + decrypted=00000000000000001000000000000000 + Iterated 100 times=00AE09A4C98B6CBF4436DC946ED2899D + Iterated 1000 times=195772CE6EFC117CA90180D5DF40C4CB + +Set 2, vector# 68: + key=00000000000000000000000000000000 + plain=00000000000000000800000000000000 + cipher=C228B91E5434CB91BAD090666DF66E0C + decrypted=00000000000000000800000000000000 + Iterated 100 times=C35B12E80542C59A44731D89867D8430 + Iterated 1000 times=1EEE0DB230A4FAB690A2AF9C59A8B7A9 + +Set 2, vector# 69: + key=00000000000000000000000000000000 + plain=00000000000000000400000000000000 + cipher=8CF5FE6015BC1F477B84B2398E9C148C + decrypted=00000000000000000400000000000000 + Iterated 100 times=A0E26FE9A67F121558639B417DC749AC + Iterated 1000 times=A88E7265F1D7CFFAF4D433C8CAB95965 + +Set 2, vector# 70: + key=00000000000000000000000000000000 + plain=00000000000000000200000000000000 + cipher=F84B06F5BD3283102A28CB87EDF77A59 + decrypted=00000000000000000200000000000000 + Iterated 100 times=7830484FE3ABA513CDD8807174A5C3E1 + Iterated 1000 times=9E18CA12B5E06369E3599B5E33940CD1 + +Set 2, vector# 71: + key=00000000000000000000000000000000 + plain=00000000000000000100000000000000 + cipher=B6AB9F91D2D52FEE14982E51FDD0A86F + decrypted=00000000000000000100000000000000 + Iterated 100 times=5721A173D6BFE2E33BD02E9D4091D2D4 + Iterated 1000 times=CEAE6478B69C696B8B7E0EA0EEF2713E + +Set 2, vector# 72: + key=00000000000000000000000000000000 + plain=00000000000000000080000000000000 + cipher=E3A66DD37FC104E1C942BA4BD36C5B06 + decrypted=00000000000000000080000000000000 + Iterated 100 times=41698DCC484C4687F3E1C89E804FF0D2 + Iterated 1000 times=84833F84DE6EE348A2AD62F42346CA19 + +Set 2, vector# 73: + key=00000000000000000000000000000000 + plain=00000000000000000040000000000000 + cipher=E4D742804AC95411AB9B5E2A052B75CA + decrypted=00000000000000000040000000000000 + Iterated 100 times=E044BBD030442CD20CB42B08C37AF0F2 + Iterated 1000 times=B7A31659C51D079DE328FFC0D1E59243 + +Set 2, vector# 74: + key=00000000000000000000000000000000 + plain=00000000000000000020000000000000 + cipher=6E4CE82A0BBEFAA7DD0830782DAC545A + decrypted=00000000000000000020000000000000 + Iterated 100 times=4C9D86FB1278F9FE271FFA76B1E5370D + Iterated 1000 times=B7624802AEDB70CA9C49DD72E545CDB1 + +Set 2, vector# 75: + key=00000000000000000000000000000000 + plain=00000000000000000010000000000000 + cipher=1D3AB3E5FA17BF71FF5D79E1E487985F + decrypted=00000000000000000010000000000000 + Iterated 100 times=8FF3AC1E5606ADA3809C4011130D1281 + Iterated 1000 times=CDB6E765BECD860C47AA9786FF2A5D58 + +Set 2, vector# 76: + key=00000000000000000000000000000000 + plain=00000000000000000008000000000000 + cipher=ACB64BB131C5291145833F624518B9AF + decrypted=00000000000000000008000000000000 + Iterated 100 times=2D4AED7194BBB89D42F26A61C0555DBE + Iterated 1000 times=83D9B8AF089B077B013778208DE78843 + +Set 2, vector# 77: + key=00000000000000000000000000000000 + plain=00000000000000000004000000000000 + cipher=C334BFAC52A623193ADF2F16358C4A64 + decrypted=00000000000000000004000000000000 + Iterated 100 times=5AD07DC0F0CDAE08887E2DB1F3506679 + Iterated 1000 times=C86CA1283827F367A76304187B47DF58 + +Set 2, vector# 78: + key=00000000000000000000000000000000 + plain=00000000000000000002000000000000 + cipher=8A8E503636AECC8C883166E497221B18 + decrypted=00000000000000000002000000000000 + Iterated 100 times=7EC166C97489D319646450969D06A208 + Iterated 1000 times=1BD7C3FF9C98DC766757979E29614BBA + +Set 2, vector# 79: + key=00000000000000000000000000000000 + plain=00000000000000000001000000000000 + cipher=5843F891784FEF16EC4DA48251075E09 + decrypted=00000000000000000001000000000000 + Iterated 100 times=E6A04462CD12541ECA467E9D04750206 + Iterated 1000 times=698D3A1880594741A00FD38E535ED6D9 + +Set 2, vector# 80: + key=00000000000000000000000000000000 + plain=00000000000000000000800000000000 + cipher=63FEB7B21CD2CD27BC442DEC676BC8A4 + decrypted=00000000000000000000800000000000 + Iterated 100 times=64E5DD11E4F163B073222705E58720AC + Iterated 1000 times=1680F41CFC3E542D8DCFC8FBE1F9FD9D + +Set 2, vector# 81: + key=00000000000000000000000000000000 + plain=00000000000000000000400000000000 + cipher=8A8771C89673876BB787108F58994FA7 + decrypted=00000000000000000000400000000000 + Iterated 100 times=06BABDFEA1D5DA15D91A132982F4BA10 + Iterated 1000 times=B2CFB54478C12F91B16E8279CF107EA4 + +Set 2, vector# 82: + key=00000000000000000000000000000000 + plain=00000000000000000000200000000000 + cipher=9C2C18794D245EEAD5567599D40A4F25 + decrypted=00000000000000000000200000000000 + Iterated 100 times=CD072C249126A91409155D2EE56EBDFA + Iterated 1000 times=687879212C7870B5CB65491080E90053 + +Set 2, vector# 83: + key=00000000000000000000000000000000 + plain=00000000000000000000100000000000 + cipher=87B36149C2E790936413F85F35CC3E81 + decrypted=00000000000000000000100000000000 + Iterated 100 times=00BC6CF29AF78186A839F10A80C7269C + Iterated 1000 times=3F4A850240C9E6E118051AC59FF030CC + +Set 2, vector# 84: + key=00000000000000000000000000000000 + plain=00000000000000000000080000000000 + cipher=16CA5D72D0159BC3CA678D89717BF7BC + decrypted=00000000000000000000080000000000 + Iterated 100 times=9F1808267773234A1E71F2F51DC31DE2 + Iterated 1000 times=017B9FA07398DAA041C00A683770AB48 + +Set 2, vector# 85: + key=00000000000000000000000000000000 + plain=00000000000000000000040000000000 + cipher=CCA96E633D5AB26D9B97DE0F3201C7B6 + decrypted=00000000000000000000040000000000 + Iterated 100 times=871A8FE51B3E0009FEAF1C1844C65B37 + Iterated 1000 times=2A59B418211CDB1635BD3DC375305BE9 + +Set 2, vector# 86: + key=00000000000000000000000000000000 + plain=00000000000000000000020000000000 + cipher=73353EDE7405EB0C5EEC47DC3457EA6E + decrypted=00000000000000000000020000000000 + Iterated 100 times=29470398D7B63D5812E5B84F79A18F04 + Iterated 1000 times=BA1842856B248387C15AC864A78B2069 + +Set 2, vector# 87: + key=00000000000000000000000000000000 + plain=00000000000000000000010000000000 + cipher=5EC3DE5F4328DA7425D9DA1C26611109 + decrypted=00000000000000000000010000000000 + Iterated 100 times=3B3A0A03D91484458F80B75E52AA23A1 + Iterated 1000 times=ECC55C29509CF5F8F09759D9EA7F4969 + +Set 2, vector# 88: + key=00000000000000000000000000000000 + plain=00000000000000000000008000000000 + cipher=96ACBD2AD728C33CC60FD32C8CA74FB9 + decrypted=00000000000000000000008000000000 + Iterated 100 times=8D61DCB738222C36E559118C296E3691 + Iterated 1000 times=FCDA5F2D19B3AB5D4AB8C59A1AA0E6D2 + +Set 2, vector# 89: + key=00000000000000000000000000000000 + plain=00000000000000000000004000000000 + cipher=A3B513A31C7C77DBF77172485E03886A + decrypted=00000000000000000000004000000000 + Iterated 100 times=8DD7DF97D49F50424C57198D972C930E + Iterated 1000 times=4AEAB84C90E399ACAF2557AAE1B2C85D + +Set 2, vector# 90: + key=00000000000000000000000000000000 + plain=00000000000000000000002000000000 + cipher=CF02CD8BEB5FEFA32512C8E1B088F4A2 + decrypted=00000000000000000000002000000000 + Iterated 100 times=1E77A747D4FB9B1048C1DFC08277B317 + Iterated 1000 times=EBB28B8D2B2BA5E335742C71046517DA + +Set 2, vector# 91: + key=00000000000000000000000000000000 + plain=00000000000000000000001000000000 + cipher=9164691DFC8FD807A937F17824C0CE00 + decrypted=00000000000000000000001000000000 + Iterated 100 times=2100A6B06CBA21AB4EBBB556A4C157EF + Iterated 1000 times=BB5642CE803A806372F4B975AA600204 + +Set 2, vector# 92: + key=00000000000000000000000000000000 + plain=00000000000000000000000800000000 + cipher=DD354B07801C58979F53F2CEAF3296F2 + decrypted=00000000000000000000000800000000 + Iterated 100 times=BA1BC3F15CBA195FA3687828B247C0AF + Iterated 1000 times=5115CD5F283594CCF0373D93DF8F4598 + +Set 2, vector# 93: + key=00000000000000000000000000000000 + plain=00000000000000000000000400000000 + cipher=2CCB484231C1AF693EF916135B3FF2EE + decrypted=00000000000000000000000400000000 + Iterated 100 times=B6B3DCF25F27F9C2B57C58C30662AF80 + Iterated 1000 times=D96F127542C4C11369737603B74146C8 + +Set 2, vector# 94: + key=00000000000000000000000000000000 + plain=00000000000000000000000200000000 + cipher=F0139118CED99AC01A9EB231286783EC + decrypted=00000000000000000000000200000000 + Iterated 100 times=9180E7D9588C1B869A0E5A39DBCFE4DA + Iterated 1000 times=BB20EAB6D2CEE16B417B0B69D3086E46 + +Set 2, vector# 95: + key=00000000000000000000000000000000 + plain=00000000000000000000000100000000 + cipher=6DB6A6BE476066C6970F537BAD08CA0D + decrypted=00000000000000000000000100000000 + Iterated 100 times=0D23CC080594C637DA885830AC86D1EC + Iterated 1000 times=718C9F0E1FC10FCB8B9DDE81788D4D85 + +Set 2, vector# 96: + key=00000000000000000000000000000000 + plain=00000000000000000000000080000000 + cipher=8FEA68D158085C623A46BA65EDABA76E + decrypted=00000000000000000000000080000000 + Iterated 100 times=825962FDA6D371E227402F4D4759DD74 + Iterated 1000 times=F989B7D3F1F886DDC09E99B2BD4B898C + +Set 2, vector# 97: + key=00000000000000000000000000000000 + plain=00000000000000000000000040000000 + cipher=F6D8FD8D30B7AE8A358D802B8E6BEC4F + decrypted=00000000000000000000000040000000 + Iterated 100 times=232C062FBE66F8F824F591A613BA8DF0 + Iterated 1000 times=D13EF4F4D2C9D4F11A58690C0D5A7AB8 + +Set 2, vector# 98: + key=00000000000000000000000000000000 + plain=00000000000000000000000020000000 + cipher=9D7F37718461884A92B02D06297D9283 + decrypted=00000000000000000000000020000000 + Iterated 100 times=4935E3FBDB09E91C256183B8E99834F9 + Iterated 1000 times=EF619B0FA6A9E87CDCC387E215F06DD2 + +Set 2, vector# 99: + key=00000000000000000000000000000000 + plain=00000000000000000000000010000000 + cipher=A1C310697024E4FEA764FCD6F6E49E51 + decrypted=00000000000000000000000010000000 + Iterated 100 times=875BC45E610BFE800DD09C3DDA6635ED + Iterated 1000 times=CCBAD4E5F47E35A7C5B7033DA5769540 + +Set 2, vector#100: + key=00000000000000000000000000000000 + plain=00000000000000000000000008000000 + cipher=0032E40E30827F8DC9C7DFBC51E48D59 + decrypted=00000000000000000000000008000000 + Iterated 100 times=BA82E8C02CDE9AE2EC4D1FDDE6A53552 + Iterated 1000 times=869150FF0C14CAF15ED55CA52CBB81E6 + +Set 2, vector#101: + key=00000000000000000000000000000000 + plain=00000000000000000000000004000000 + cipher=EA337D326AE829717D76CAA1BBFE2E22 + decrypted=00000000000000000000000004000000 + Iterated 100 times=AFD6589724743C9C346ADBF4642F1028 + Iterated 1000 times=524C7705D73B3AAC5B4F832169FAD28C + +Set 2, vector#102: + key=00000000000000000000000000000000 + plain=00000000000000000000000002000000 + cipher=E1120FF9074A2D679FB636E7F9D6D565 + decrypted=00000000000000000000000002000000 + Iterated 100 times=245060EB39D18C388E684767FE563B54 + Iterated 1000 times=3F9739DA7523A8A48120B6D89433B956 + +Set 2, vector#103: + key=00000000000000000000000000000000 + plain=00000000000000000000000001000000 + cipher=7BB24321D4A39BFCD4C56351FBB2B781 + decrypted=00000000000000000000000001000000 + Iterated 100 times=77DA6D85E0BDAA6122685E87E7607668 + Iterated 1000 times=F24005A41351D5293B247B5715A02704 + +Set 2, vector#104: + key=00000000000000000000000000000000 + plain=00000000000000000000000000800000 + cipher=6B46CA82AA8DC7C1D88FAD0BEFD66C23 + decrypted=00000000000000000000000000800000 + Iterated 100 times=A088A5AD4B89972EB52CABFB9618E3B9 + Iterated 1000 times=7E7042157FB6047474DF13807CDEA3D5 + +Set 2, vector#105: + key=00000000000000000000000000000000 + plain=00000000000000000000000000400000 + cipher=E8885FE9F1C234A1F6C5A2F69A0049B7 + decrypted=00000000000000000000000000400000 + Iterated 100 times=9BF47E6529B055A9A6B58824EF0B9EBA + Iterated 1000 times=FE474D044B8C00E1D529F5F418DB5A71 + +Set 2, vector#106: + key=00000000000000000000000000000000 + plain=00000000000000000000000000200000 + cipher=CC57512C9B182C77EB1F3B6640F9A179 + decrypted=00000000000000000000000000200000 + Iterated 100 times=999FF3F716087BF15CC882BE1DA7181C + Iterated 1000 times=B0DFFEC2B976A6961AA3DB49B4B8AB00 + +Set 2, vector#107: + key=00000000000000000000000000000000 + plain=00000000000000000000000000100000 + cipher=9EC1568B8D56347D1306BE2301D125E4 + decrypted=00000000000000000000000000100000 + Iterated 100 times=7F882FA8F27549200A0D90FC2E294B03 + Iterated 1000 times=13D6CFCF6FF8262AA806B2871813D49F + +Set 2, vector#108: + key=00000000000000000000000000000000 + plain=00000000000000000000000000080000 + cipher=A744BCEC7C65CB13BDBCCB32FD386F5E + decrypted=00000000000000000000000000080000 + Iterated 100 times=983BF8D54C131C90DAD858E2FA347F45 + Iterated 1000 times=E19D068BF2D8A3125ADFCBBAE692FA74 + +Set 2, vector#109: + key=00000000000000000000000000000000 + plain=00000000000000000000000000040000 + cipher=988B92A7A2BFCB8B913517BB70055A3B + decrypted=00000000000000000000000000040000 + Iterated 100 times=19F4CCF44C8CC8C13C38DE13C5B6C1DA + Iterated 1000 times=A3BBEDD01AB84A8F441412FB54FE0AA4 + +Set 2, vector#110: + key=00000000000000000000000000000000 + plain=00000000000000000000000000020000 + cipher=93D316D273B295BE6760BA94211629A8 + decrypted=00000000000000000000000000020000 + Iterated 100 times=E0575D57D06DCC824E24C145D8E2CB62 + Iterated 1000 times=862F32DCE51702FECFAC5A3D755DABB6 + +Set 2, vector#111: + key=00000000000000000000000000000000 + plain=00000000000000000000000000010000 + cipher=7F96D5FF123267790828F2A51BC3A1F8 + decrypted=00000000000000000000000000010000 + Iterated 100 times=5AC6E133725447F09879FE6459A7B1DE + Iterated 1000 times=5EFCCC3DCB39205FEA6CAB6CD13625D4 + +Set 2, vector#112: + key=00000000000000000000000000000000 + plain=00000000000000000000000000008000 + cipher=ED1365E334FB49F0EBA20AD5429036ED + decrypted=00000000000000000000000000008000 + Iterated 100 times=C1823C7E721853BB19E6F45E55151E25 + Iterated 1000 times=6C43433AC7787A44FF92E0EAD88D5280 + +Set 2, vector#113: + key=00000000000000000000000000000000 + plain=00000000000000000000000000004000 + cipher=BC6D67A3509B49B549D3D39091A5E513 + decrypted=00000000000000000000000000004000 + Iterated 100 times=EFB0F9E1744A2A718C2CEEC498E18B1D + Iterated 1000 times=953463AB1FC7570B6F0B0D58E635842C + +Set 2, vector#114: + key=00000000000000000000000000000000 + plain=00000000000000000000000000002000 + cipher=44BDDF1F38ED4C806E1AD638111B017F + decrypted=00000000000000000000000000002000 + Iterated 100 times=25EAF270C5C6411A7FCF093979CA1189 + Iterated 1000 times=37D6C45F07FB74077658372CF3B26AEF + +Set 2, vector#115: + key=00000000000000000000000000000000 + plain=00000000000000000000000000001000 + cipher=B32E8C34754C2BD68F39F5DFDD8CA9D0 + decrypted=00000000000000000000000000001000 + Iterated 100 times=27EE8C5D8D377486AFB1A7EFEA5F490E + Iterated 1000 times=596A1D1A0107AC28962CDABB6859364B + +Set 2, vector#116: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000800 + cipher=37E434CC943BC1D7659EF1A750732B4C + decrypted=00000000000000000000000000000800 + Iterated 100 times=17E6DCA537C324CE8A645D67B353CE25 + Iterated 1000 times=A1CDB990992DA02E872B4E5FDE03EAEA + +Set 2, vector#117: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000400 + cipher=FEF13A4ADA181F60B5EEDF9C52D5453D + decrypted=00000000000000000000000000000400 + Iterated 100 times=1C70BAF3C87C64146A706023AD2A83BB + Iterated 1000 times=82C79D89A4E04C9B59910655D0792885 + +Set 2, vector#118: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000200 + cipher=626186BA1DF38E6086736579C1BD5486 + decrypted=00000000000000000000000000000200 + Iterated 100 times=C8A87763FF4999680A9B30A182C29DA3 + Iterated 1000 times=ED2315FF941DE3F50B996589B5DCFB11 + +Set 2, vector#119: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000100 + cipher=3A83193D06278A3A87324D131C10B3F8 + decrypted=00000000000000000000000000000100 + Iterated 100 times=25FBDEAF1645E5A53ECA77B6496FD019 + Iterated 1000 times=4E29C617EA883E78F5C9CE686A73C41A + +Set 2, vector#120: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000080 + cipher=C85E6E725C409BF341555181F17A6046 + decrypted=00000000000000000000000000000080 + Iterated 100 times=5B4025639547D2106A088A7B0A08757B + Iterated 1000 times=989FA699CCB83DF119FC8D40D2B566CC + +Set 2, vector#121: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000040 + cipher=F8090727D3E71AF204F7C834D30DA1E0 + decrypted=00000000000000000000000000000040 + Iterated 100 times=9D8B2F60EEB6381B056D5EFA979F8B28 + Iterated 1000 times=3EF98F9DEE24ADAAF9BDD23C98ECA5E4 + +Set 2, vector#122: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000020 + cipher=54D7947BCDBCE2EAB5DA5845F35FF72C + decrypted=00000000000000000000000000000020 + Iterated 100 times=0E5F422932D0D3A3BAE7ED39D83C35EA + Iterated 1000 times=2218070B77BC95EDF812ADBFDD0EE52C + +Set 2, vector#123: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000010 + cipher=EBDF471B5ED91C2A3929BBED7E4BDD69 + decrypted=00000000000000000000000000000010 + Iterated 100 times=1983942970F20F8C5506042FB138FFD0 + Iterated 1000 times=500D51E2AF53A408D580ECC2656D7D1D + +Set 2, vector#124: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000008 + cipher=E015F6E04498208031E0AA20290FA382 + decrypted=00000000000000000000000000000008 + Iterated 100 times=6B534F8E86A235C01F8B65893F99EE17 + Iterated 1000 times=C8DFE12408B602BAC0CF2FF1A0A6FB22 + +Set 2, vector#125: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000004 + cipher=068511608758F27065B20959D29447FA + decrypted=00000000000000000000000000000004 + Iterated 100 times=3D702F7178908C7BA0339AF2D172D07A + Iterated 1000 times=B13234A67CC3ACE088239A44CB34A989 + +Set 2, vector#126: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000002 + cipher=09AC0F28C2D8751A771E6D9EAD63180E + decrypted=00000000000000000000000000000002 + Iterated 100 times=E667DF8F01B4926AF4C31AA0566341D1 + Iterated 1000 times=08B4150C2822A0F8BFE9DD57C17ED86B + +Set 2, vector#127: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000001 + cipher=060DA44D029064C96FA567851B9646EE + decrypted=00000000000000000000000000000001 + Iterated 100 times=66B30F41CB587DBC98E0002AA35E57B6 + Iterated 1000 times=0DAA1D02F9EF69E9029CFED1B46BAD06 + +Test vectors -- set 3 +===================== + +Set 3, vector# 0: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=B1656851699E29FA24B70148503D2DFC + decrypted=00000000000000000000000000000000 + Iterated 100 times=EFCC2C475C2C2FCA40A5D1329B19F158 + Iterated 1000 times=28184087C4E831ECAAA89DA0FCA6EC87 + +Set 3, vector# 1: + key=01010101010101010101010101010101 + plain=01010101010101010101010101010101 + cipher=EE6F6304E04980E3923ABB5524338C78 + decrypted=01010101010101010101010101010101 + Iterated 100 times=3B7E173F014E1E02A91A5BDB120918F6 + Iterated 1000 times=D819BEFA4CC9C1601CA8BF5C47CD3B95 + +Set 3, vector# 2: + key=02020202020202020202020202020202 + plain=02020202020202020202020202020202 + cipher=641371F5E4F2B42226BA83A9EB0B5553 + decrypted=02020202020202020202020202020202 + Iterated 100 times=F9CA8EE761266326AABBBCDE24EB6B51 + Iterated 1000 times=50F55F603B0020D0C4ED6A53DF8EC7AD + +Set 3, vector# 3: + key=03030303030303030303030303030303 + plain=03030303030303030303030303030303 + cipher=E7D8B6FE09DBDBDC4CCBD3560F9E4973 + decrypted=03030303030303030303030303030303 + Iterated 100 times=F6F9A8CE21EAFAD0930BF7895265E49C + Iterated 1000 times=381A401CAAB6608102125FEA07EAB667 + +Set 3, vector# 4: + key=04040404040404040404040404040404 + plain=04040404040404040404040404040404 + cipher=FB3DFE41EF75615F7B7839E30D4A2A53 + decrypted=04040404040404040404040404040404 + Iterated 100 times=10F897FECD481893A2BEDAD5D4D8854F + Iterated 1000 times=A2EBDB88DD0651CA2E915E15A66DE8CE + +Set 3, vector# 5: + key=05050505050505050505050505050505 + plain=05050505050505050505050505050505 + cipher=D8C4D71CD53A216EADC8E868B2EC54CC + decrypted=05050505050505050505050505050505 + Iterated 100 times=3E6352EA171AFFB0731448588A2BF588 + Iterated 1000 times=581F388B39F093283935FCFD24479B27 + +Set 3, vector# 6: + key=06060606060606060606060606060606 + plain=06060606060606060606060606060606 + cipher=D16F5FF3E4D772038F7FD778AE089DF5 + decrypted=06060606060606060606060606060606 + Iterated 100 times=AA4860F3147757802F27AE9789508F5B + Iterated 1000 times=83698809F270CC54010A464F05453EF4 + +Set 3, vector# 7: + key=07070707070707070707070707070707 + plain=07070707070707070707070707070707 + cipher=2E905CCEBC8A2BC34077CFF33859E018 + decrypted=07070707070707070707070707070707 + Iterated 100 times=F15F461A40F7287338018FA2C557A6F8 + Iterated 1000 times=79B3561B3B691A1AAEA016CDEB1F4111 + +Set 3, vector# 8: + key=08080808080808080808080808080808 + plain=08080808080808080808080808080808 + cipher=0E232B37C06244CF30FCE9801A87B3D4 + decrypted=08080808080808080808080808080808 + Iterated 100 times=F4FAF1A8F19459861BE9C813DC9BE805 + Iterated 1000 times=1D9AF1DA11281E842934679868DE40B7 + +Set 3, vector# 9: + key=09090909090909090909090909090909 + plain=09090909090909090909090909090909 + cipher=2B300715620AF41DBCD733845B374CA6 + decrypted=09090909090909090909090909090909 + Iterated 100 times=C44C7BB15FB0B45B969D13AC27FB3DE5 + Iterated 1000 times=DEA061643F6C7FA5414A7AE289BB8FC8 + +Set 3, vector# 10: + key=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + plain=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + cipher=19E6AE4F90FA9FA695A3025B32A83C8C + decrypted=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + Iterated 100 times=01CB39CD2EC432D92F222F18AF107928 + Iterated 1000 times=423B60AB8D582EBBC12D2BD85AF94E6C + +Set 3, vector# 11: + key=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + plain=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + cipher=4D425FAD71242471A8701C1AEA33BFCB + decrypted=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + Iterated 100 times=B4C6F5A0C31C53D5BFFE724AA4A9EE9E + Iterated 1000 times=0FB2ADE62AAA4D733DB29D639833BBAA + +Set 3, vector# 12: + key=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + plain=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + cipher=85AF2EE735F8043D349649A9FF9DC062 + decrypted=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + Iterated 100 times=291080E444B02224B18773D645B99C21 + Iterated 1000 times=B004C929355E5258F568F12CF041096B + +Set 3, vector# 13: + key=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + plain=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + cipher=30313993DC6449C33A809800AC9FD046 + decrypted=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + Iterated 100 times=F6CC9E18FCD44C4A5602AF8611C9723F + Iterated 1000 times=B56A8E573A8B501431AC2E0FCA611BCB + +Set 3, vector# 14: + key=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + plain=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + cipher=4F77BD31666AE2818A97294A47AD1CC6 + decrypted=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + Iterated 100 times=4E066846B3456DB95CE142468F24A346 + Iterated 1000 times=59B9B442DF9C1D429F2FCB887010DCCE + +Set 3, vector# 15: + key=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + plain=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + cipher=AD7FB7E9BC031AB4FA6552CFF6AAA6CC + decrypted=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + Iterated 100 times=44EB297423C8A4B2D6996EC7284A72A9 + Iterated 1000 times=97F5B3B69CE1603C46D8A15663776758 + +Set 3, vector# 16: + key=10101010101010101010101010101010 + plain=10101010101010101010101010101010 + cipher=F145AC4DCA19F8FE69C9E3C0AC3CCF55 + decrypted=10101010101010101010101010101010 + Iterated 100 times=BC1BBF14ACDB9E429CC4C513AC292AA8 + Iterated 1000 times=2B7D1638312EAC5E85F15D1664A89B30 + +Set 3, vector# 17: + key=11111111111111111111111111111111 + plain=11111111111111111111111111111111 + cipher=E8F367C5749F4DA9808C78043C4C8C57 + decrypted=11111111111111111111111111111111 + Iterated 100 times=F4898AED858AF026D5B8466080BA14A5 + Iterated 1000 times=4FC853BC6BEF44ED41E5D501C1C0B88B + +Set 3, vector# 18: + key=12121212121212121212121212121212 + plain=12121212121212121212121212121212 + cipher=70B3D02E08BF7E65911AD49DE6463DB4 + decrypted=12121212121212121212121212121212 + Iterated 100 times=35C238EAFB1567EE8DD4AD3CDB908F43 + Iterated 1000 times=DCA1EB96DEA2EEEDD05BD031CED2569C + +Set 3, vector# 19: + key=13131313131313131313131313131313 + plain=13131313131313131313131313131313 + cipher=5D661CBFADC69D5D18EEAA0CBDC2FB7F + decrypted=13131313131313131313131313131313 + Iterated 100 times=1FC93CE7095E8EDF9316A9B0D373D09D + Iterated 1000 times=9CE452FD29CEB67389D79999697ED335 + +Set 3, vector# 20: + key=14141414141414141414141414141414 + plain=14141414141414141414141414141414 + cipher=17E737150E7CE2DB7FCE9705C35EDF46 + decrypted=14141414141414141414141414141414 + Iterated 100 times=3776D95169454784442938F3A4E457C5 + Iterated 1000 times=1E70E99E6DD27A15D21E3E4DABC1C4CD + +Set 3, vector# 21: + key=15151515151515151515151515151515 + plain=15151515151515151515151515151515 + cipher=00D5F2F724464C31FFFDEEE0D21752F7 + decrypted=15151515151515151515151515151515 + Iterated 100 times=7D1BC7EA71E7AF5E75B5B05CA9C5FDA2 + Iterated 1000 times=AD796E275E8EFA656FA259ED12A12D55 + +Set 3, vector# 22: + key=16161616161616161616161616161616 + plain=16161616161616161616161616161616 + cipher=DFC3663CC2E9D2E1BFE9C716260705A8 + decrypted=16161616161616161616161616161616 + Iterated 100 times=2193D294E32BAE1A8F0DF21FB28994F4 + Iterated 1000 times=469EC6DE7DB7A1F52FA11069B8A6403D + +Set 3, vector# 23: + key=17171717171717171717171717171717 + plain=17171717171717171717171717171717 + cipher=17B8107C3B4CF4F13A65409DAA737632 + decrypted=17171717171717171717171717171717 + Iterated 100 times=C8C97A3C01A4444B9E08A27340FBAC70 + Iterated 1000 times=88710C638A21B7FD53E727A0593F0E34 + +Set 3, vector# 24: + key=18181818181818181818181818181818 + plain=18181818181818181818181818181818 + cipher=54111ECB978B207DAE8A58328212EE58 + decrypted=18181818181818181818181818181818 + Iterated 100 times=20235C3976F894D51A363B8023AA6B87 + Iterated 1000 times=2E6194D3999BE99E2E9F24B17B0509D3 + +Set 3, vector# 25: + key=19191919191919191919191919191919 + plain=19191919191919191919191919191919 + cipher=AE2F0EC9B6B470AE5686D507CB6233DE + decrypted=19191919191919191919191919191919 + Iterated 100 times=5B08C057BEE68C1A38CD7FFB1CCEBF47 + Iterated 1000 times=9767773AE5CDB52142AF59FF67DD8C81 + +Set 3, vector# 26: + key=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + plain=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + cipher=EA756D96D3375AC96BA13397BF38370D + decrypted=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + Iterated 100 times=869E1B54D9C0923D8D0165334DAF398C + Iterated 1000 times=7FB68858EBA3E85070221EC07B459FB9 + +Set 3, vector# 27: + key=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + plain=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + cipher=7CE7AB45FA1961C76405AB7B534112FB + decrypted=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + Iterated 100 times=EA2D26976731375F84CADCC02FB9008E + Iterated 1000 times=739B4D38240AB2695CF5A14E8BF55D31 + +Set 3, vector# 28: + key=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + plain=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + cipher=B4D2FC13E68468BC981A9E1EB8EF11D3 + decrypted=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + Iterated 100 times=9CF8F908DDD0E6EA9DD2064E505A1402 + Iterated 1000 times=7114135593B935492F654E0B5CBBC482 + +Set 3, vector# 29: + key=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + plain=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + cipher=67C411C84AD89D06CD8BB8A5E35C462D + decrypted=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + Iterated 100 times=7890C20A7C023D2BCD75949A67CEDCE2 + Iterated 1000 times=24D87BE338EAD331A063D5A42949845A + +Set 3, vector# 30: + key=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + plain=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + cipher=0773CD65A1D5448AEF92B131B6339C50 + decrypted=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + Iterated 100 times=7A2BF8D975A822F4A1240E58D8D5F687 + Iterated 1000 times=9E618B890322419D579F690439133409 + +Set 3, vector# 31: + key=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + plain=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + cipher=14805D18B29386D496AB5CFFE677F55E + decrypted=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + Iterated 100 times=D83E67C44E93329065467A97AC4A82FC + Iterated 1000 times=3F893DCA713901E6FE96ED537E85D022 + +Set 3, vector# 32: + key=20202020202020202020202020202020 + plain=20202020202020202020202020202020 + cipher=368074F110B460FF530CFFF9BAA85E97 + decrypted=20202020202020202020202020202020 + Iterated 100 times=C874A2B1F7DF628EE9D682F2218FF493 + Iterated 1000 times=CA285C08119D259699103ADB0A06CC50 + +Set 3, vector# 33: + key=21212121212121212121212121212121 + plain=21212121212121212121212121212121 + cipher=63C7AD55E36B9BF1A519351D98106DBE + decrypted=21212121212121212121212121212121 + Iterated 100 times=2FF8B8EEC631ECD672063039BC2EFEE6 + Iterated 1000 times=D8340EBC27992ECA471344662ED75C15 + +Set 3, vector# 34: + key=22222222222222222222222222222222 + plain=22222222222222222222222222222222 + cipher=4FAEE8FD96FF10CE87F1167BCD251517 + decrypted=22222222222222222222222222222222 + Iterated 100 times=1572B86CBA08AFAFCE47D70086AA0F76 + Iterated 1000 times=27C318FD9CBA4AAB0BA16C5E025EF818 + +Set 3, vector# 35: + key=23232323232323232323232323232323 + plain=23232323232323232323232323232323 + cipher=1CEFB41881F3102B6FDC13B0002CE5A4 + decrypted=23232323232323232323232323232323 + Iterated 100 times=D5FC4369A208C3BAF30B57262FAD6B0B + Iterated 1000 times=745A8CEC0EB720DBB24396019D9967A3 + +Set 3, vector# 36: + key=24242424242424242424242424242424 + plain=24242424242424242424242424242424 + cipher=F42DE70B35A9E8AAF0163F3ECD16C959 + decrypted=24242424242424242424242424242424 + Iterated 100 times=399E11424E1C76AEDDC434D6FFD9E1B9 + Iterated 1000 times=4D42BA74F7C4227F655C5BA117EC2AA5 + +Set 3, vector# 37: + key=25252525252525252525252525252525 + plain=25252525252525252525252525252525 + cipher=27EAE1F775FFA007312135DFD5038C01 + decrypted=25252525252525252525252525252525 + Iterated 100 times=99D88D3E0D77BCC9194BB178625603F9 + Iterated 1000 times=C0E816E43959DAE56231149FD36F9123 + +Set 3, vector# 38: + key=26262626262626262626262626262626 + plain=26262626262626262626262626262626 + cipher=6793102B3855E3E3EC76B620FFF7D6C3 + decrypted=26262626262626262626262626262626 + Iterated 100 times=F972AEF4661ADDCD0F21D2FC7B1822AC + Iterated 1000 times=30B1E6054D56760976D63382A424E853 + +Set 3, vector# 39: + key=27272727272727272727272727272727 + plain=27272727272727272727272727272727 + cipher=315CDB6CFAA407017483428098469805 + decrypted=27272727272727272727272727272727 + Iterated 100 times=36678168462DA519BB5DA32A833A29BD + Iterated 1000 times=99CAFBD3765F19F134BC234F40DC6DBC + +Set 3, vector# 40: + key=28282828282828282828282828282828 + plain=28282828282828282828282828282828 + cipher=536B58555B16673107639040A2205DB2 + decrypted=28282828282828282828282828282828 + Iterated 100 times=F697355A984FDF9D3428DA15F280E056 + Iterated 1000 times=52FDE4DE330C81AEE7E40DCF738CC0F0 + +Set 3, vector# 41: + key=29292929292929292929292929292929 + plain=29292929292929292929292929292929 + cipher=8F5DB321066B0BC11D1A5F9AC053F31C + decrypted=29292929292929292929292929292929 + Iterated 100 times=1EBE5EE86BDD19351448BE3DA837BD73 + Iterated 1000 times=DEF3A061FD7244E453DBE27B8AAF9BB6 + +Set 3, vector# 42: + key=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + plain=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + cipher=DCA1039B4F12834871C558A4DB893FD4 + decrypted=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + Iterated 100 times=562AE48B070BDF1569C68AD8C8C4E78F + Iterated 1000 times=78A846EA258F99081AA8827E8021A699 + +Set 3, vector# 43: + key=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + plain=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + cipher=97170C5FB4E778EC95A1214DB9D34EC7 + decrypted=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + Iterated 100 times=F8F7C23E3619EC33D040D2C436023608 + Iterated 1000 times=DC694B7B7A2E32817A5F9046CC6FAFBE + +Set 3, vector# 44: + key=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + plain=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + cipher=3F579D7C345F26A2F91EE406899B6052 + decrypted=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + Iterated 100 times=9688B3F9A81163E03C5DD956C987B130 + Iterated 1000 times=BC4DCD6C9D87C4DC9734531DFBF0CAD9 + +Set 3, vector# 45: + key=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + plain=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + cipher=38EB6168306224036124A9AFFC96A160 + decrypted=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + Iterated 100 times=A66DAADAAD29D67A1E5016FA87A767EA + Iterated 1000 times=F2B3230F3D9AD5866F19C16192E825AE + +Set 3, vector# 46: + key=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + plain=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + cipher=62F80610E7230FAAA4EA2D364785EAE8 + decrypted=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + Iterated 100 times=25A66AA3AFF2C134304D8EF838E980E6 + Iterated 1000 times=34586B8AC9DE33D916A794FE4D199FD5 + +Set 3, vector# 47: + key=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + plain=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + cipher=46F1493512AD76ED7D3A0AF26A1A4BA3 + decrypted=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + Iterated 100 times=9D6AA87702849326B698BDDF5F2496F3 + Iterated 1000 times=C49D3F1CC106B6BAF45B41AD92DF0A42 + +Set 3, vector# 48: + key=30303030303030303030303030303030 + plain=30303030303030303030303030303030 + cipher=7AB24FD44A27B458398FE62154237469 + decrypted=30303030303030303030303030303030 + Iterated 100 times=8717EFF4FC52C69EAE4995AEBA061601 + Iterated 1000 times=A03FBB7A965AF5B4D8461A24E749D746 + +Set 3, vector# 49: + key=31313131313131313131313131313131 + plain=31313131313131313131313131313131 + cipher=234B9FB8C8655E3047E6C87D511754B4 + decrypted=31313131313131313131313131313131 + Iterated 100 times=2258DF8430E20D0BB6C39BF7D7C3A143 + Iterated 1000 times=A8B33C61A1BA7EF4587FD31D648E9358 + +Set 3, vector# 50: + key=32323232323232323232323232323232 + plain=32323232323232323232323232323232 + cipher=8E04C643E326E381CF2B16E6C6E832AF + decrypted=32323232323232323232323232323232 + Iterated 100 times=7771D164AB02446AD256246681986B10 + Iterated 1000 times=5A460AC1E6E5A60AD44F81E3D44F3BC6 + +Set 3, vector# 51: + key=33333333333333333333333333333333 + plain=33333333333333333333333333333333 + cipher=54F75C449AB77AB20482E0B2FE82FD66 + decrypted=33333333333333333333333333333333 + Iterated 100 times=DAE57F0495D0C3851FC402E4830E55E1 + Iterated 1000 times=4C9E774640264F2FA50B2B966A533162 + +Set 3, vector# 52: + key=34343434343434343434343434343434 + plain=34343434343434343434343434343434 + cipher=19B3D310763BC654060EFBD7E3F5EAAA + decrypted=34343434343434343434343434343434 + Iterated 100 times=3472D6B5DADCAD6103700C3E1FB8A0B7 + Iterated 1000 times=2A66514EA9D93FB2F223F2DEF530A7D8 + +Set 3, vector# 53: + key=35353535353535353535353535353535 + plain=35353535353535353535353535353535 + cipher=A94EDC911FB0CB6396BFF65F034A2024 + decrypted=35353535353535353535353535353535 + Iterated 100 times=101739272BAFF3E69265E78AD3D2919F + Iterated 1000 times=EA68AB8D0087532AD103C855C37FAF9D + +Set 3, vector# 54: + key=36363636363636363636363636363636 + plain=36363636363636363636363636363636 + cipher=2B0E82F5132F3EF5DE7CA1644826318A + decrypted=36363636363636363636363636363636 + Iterated 100 times=38023BB0ADAF8E2C1AD2FA39FE445BBB + Iterated 1000 times=BBEB91BE555E85F09ED9CE5E6CAD90CE + +Set 3, vector# 55: + key=37373737373737373737373737373737 + plain=37373737373737373737373737373737 + cipher=E219449E3C3AF46AE7651B07F98B1CA3 + decrypted=37373737373737373737373737373737 + Iterated 100 times=DB767DA0D99F18275084E3928A36020A + Iterated 1000 times=18FF4A2D21B6B479AF3BCC8D84F2C03D + +Set 3, vector# 56: + key=38383838383838383838383838383838 + plain=38383838383838383838383838383838 + cipher=3AA7C68B540F84FAD2C5818C73E8B51F + decrypted=38383838383838383838383838383838 + Iterated 100 times=EBF6D0AEE1C42CC6CFBFF0A9FA112FC8 + Iterated 1000 times=1344D03D85B60A182A5E473345052EEA + +Set 3, vector# 57: + key=39393939393939393939393939393939 + plain=39393939393939393939393939393939 + cipher=6232F2590A88734F6CCBFB3B70561F2A + decrypted=39393939393939393939393939393939 + Iterated 100 times=59E1AEDD1B32F6453E3EEDE4381A0D15 + Iterated 1000 times=23CF59802AD562717338E590B0DDC010 + +Set 3, vector# 58: + key=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + plain=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + cipher=2F142813B6EAFC00464D63C4F54FBCD2 + decrypted=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + Iterated 100 times=6108FAEB8C7EA654A3FC006244123EA4 + Iterated 1000 times=7C884715A4CDC645F826680341AD7074 + +Set 3, vector# 59: + key=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + plain=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + cipher=45A24E30D6FB2D8C38C0DFCFB2E06881 + decrypted=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + Iterated 100 times=B3C17DBC687B4A641E102B9A81BB33C5 + Iterated 1000 times=593FBBC1BE092E5F156664405EDB5AAD + +Set 3, vector# 60: + key=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + plain=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + cipher=9B8B99847AFFD8E937B13D12994AF5C5 + decrypted=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + Iterated 100 times=123E3D0FF766150F7047345F4E6939F6 + Iterated 1000 times=57A15640841A56837937E0D093C78F78 + +Set 3, vector# 61: + key=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + plain=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + cipher=49ABF38C6ED89B07BC1F9414EA001D1F + decrypted=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + Iterated 100 times=586D14DEA32665F0EC4D10D44013F224 + Iterated 1000 times=652E5F61312C2B8D444A97BBAE0936C0 + +Set 3, vector# 62: + key=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + plain=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + cipher=3487B8B619FEF8CAFE155E6E14654825 + decrypted=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + Iterated 100 times=CA8436D675104160E7B2D05BD4028010 + Iterated 1000 times=90D22D48DDD38014897B71F39BBB043D + +Set 3, vector# 63: + key=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + plain=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + cipher=112610A8E71CB5144A4CC44083ADE80B + decrypted=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + Iterated 100 times=78DCB7205DFE560AB3B13F77014856C2 + Iterated 1000 times=1D0FB080C9451BC6BC63AA3B411155ED + +Set 3, vector# 64: + key=40404040404040404040404040404040 + plain=40404040404040404040404040404040 + cipher=306672ADF6760211BA52069073653C0A + decrypted=40404040404040404040404040404040 + Iterated 100 times=EDABEBCF777FEA1E0BC37C217BBA8715 + Iterated 1000 times=82081E8FEE4868706EB1C2588C07E718 + +Set 3, vector# 65: + key=41414141414141414141414141414141 + plain=41414141414141414141414141414141 + cipher=1FBABC212E7BDC9757266F2AF5AB2157 + decrypted=41414141414141414141414141414141 + Iterated 100 times=6DECEBA33CB2676C380138E5242AEB90 + Iterated 1000 times=4EB9E7F35C47C7675CE3C010DF73A599 + +Set 3, vector# 66: + key=42424242424242424242424242424242 + plain=42424242424242424242424242424242 + cipher=E74EEA345AC0CD5221DA50C811FBE67C + decrypted=42424242424242424242424242424242 + Iterated 100 times=07B0978308A22FC71419324BD159C2E2 + Iterated 1000 times=E0ADCD9518E93EBCDFBB815377D76C5F + +Set 3, vector# 67: + key=43434343434343434343434343434343 + plain=43434343434343434343434343434343 + cipher=BAE20CCDD4D20CDB3C13C2A294D86EDD + decrypted=43434343434343434343434343434343 + Iterated 100 times=1681C51533F48436E932FAB78E6BB92B + Iterated 1000 times=F86FEC8FCED43BD0FDD5631B540D1F92 + +Set 3, vector# 68: + key=44444444444444444444444444444444 + plain=44444444444444444444444444444444 + cipher=235AAD2CEF14F40EC8E394CC08BD9684 + decrypted=44444444444444444444444444444444 + Iterated 100 times=2DB3B7B4BD256213AC25F659ED3669EB + Iterated 1000 times=F3A6DD3634DAFBBAF385627FECFFAEBB + +Set 3, vector# 69: + key=45454545454545454545454545454545 + plain=45454545454545454545454545454545 + cipher=764FF66EC2991B28D72F0AD0885F760B + decrypted=45454545454545454545454545454545 + Iterated 100 times=B8569BF4A07379B4686BDC8DAC8108E5 + Iterated 1000 times=E398CD28DFFD1A843CF694271F66D779 + +Set 3, vector# 70: + key=46464646464646464646464646464646 + plain=46464646464646464646464646464646 + cipher=E7E2C67207330AAB1843AE7458FA9CA3 + decrypted=46464646464646464646464646464646 + Iterated 100 times=E45FA3E71830EBD7FB306E98045E3F56 + Iterated 1000 times=328D30E789F2E765587F0C88015050AC + +Set 3, vector# 71: + key=47474747474747474747474747474747 + plain=47474747474747474747474747474747 + cipher=C64D704B0EF387C809824253270A0318 + decrypted=47474747474747474747474747474747 + Iterated 100 times=E347B1187DB5C98675AE4F959DF30D98 + Iterated 1000 times=E612EB214708960102E595122012712E + +Set 3, vector# 72: + key=48484848484848484848484848484848 + plain=48484848484848484848484848484848 + cipher=A37B19C435D709D4ACA6F9F3416350E3 + decrypted=48484848484848484848484848484848 + Iterated 100 times=D4ECC61C8D11CDF9E78AC7FE6750F22C + Iterated 1000 times=B8CC7DD3B818D8EB13A8A5E2FFFF0EEC + +Set 3, vector# 73: + key=49494949494949494949494949494949 + plain=49494949494949494949494949494949 + cipher=025113D2584139721624ED0720B0DD79 + decrypted=49494949494949494949494949494949 + Iterated 100 times=FDCA1A29A726DC6165AC3AAF618BED45 + Iterated 1000 times=FFD1392107B368582B18E78C5A64B180 + +Set 3, vector# 74: + key=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + plain=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + cipher=30F0A39A1FE2952EDECE8D9B46EE3958 + decrypted=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + Iterated 100 times=F30DA9F1866A6B2368F8429F85D7706F + Iterated 1000 times=75DC5AA0CDE4C2E6B0AA5C6908E32C8F + +Set 3, vector# 75: + key=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + plain=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + cipher=C622B7E3E6612D36826113A059A67AD5 + decrypted=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + Iterated 100 times=4E284921A686F60009DF654B74247F0D + Iterated 1000 times=C948948E53D7A0F6179D8E14C67E6A38 + +Set 3, vector# 76: + key=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + plain=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + cipher=1C802D81916D4B90F87B57E572AA00F7 + decrypted=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + Iterated 100 times=8776480FAFDCBA93F55EAB6D39E0C5FE + Iterated 1000 times=09127D07DC96E452909B2521D7B06477 + +Set 3, vector# 77: + key=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + plain=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + cipher=584ED01B370D18E63C56FAC9CFEB4B69 + decrypted=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + Iterated 100 times=1510C8C7C92C966DA7D4B04EFE8C7C6B + Iterated 1000 times=93F18B1471CD305C11D2DA7B2AEA59FA + +Set 3, vector# 78: + key=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + plain=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + cipher=F43E7A54EFCC005A3F9E2D8977156971 + decrypted=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + Iterated 100 times=BC5C25A7C836A28D852F3EDFAAFE904F + Iterated 1000 times=8D2DB503E5B7DFC4A2533E6D771B4B47 + +Set 3, vector# 79: + key=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + plain=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + cipher=D17E022343214CCE907BB49CCD5A01DE + decrypted=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + Iterated 100 times=9D2BC6AF8BFD7E6C3642503491AC540F + Iterated 1000 times=5C538D64473E24A2BB49E6C6DD612FB3 + +Set 3, vector# 80: + key=50505050505050505050505050505050 + plain=50505050505050505050505050505050 + cipher=8D79107D04C290F35091922767C849AB + decrypted=50505050505050505050505050505050 + Iterated 100 times=710C80D42E1F4E7BCFF9F9EA21F462AB + Iterated 1000 times=CDB7DF8E531DD9DABCB1ABF5BE6DF295 + +Set 3, vector# 81: + key=51515151515151515151515151515151 + plain=51515151515151515151515151515151 + cipher=240D42F2B7DF3DEC35B4A42E577592F8 + decrypted=51515151515151515151515151515151 + Iterated 100 times=11D1220FC8AA952B5A423A026EB702F1 + Iterated 1000 times=57DB36BEE8057DB13A9C3304E26C100B + +Set 3, vector# 82: + key=52525252525252525252525252525252 + plain=52525252525252525252525252525252 + cipher=C31B8EB7B21918CBC817F1354FD7B4EF + decrypted=52525252525252525252525252525252 + Iterated 100 times=78ECA534AE3DDF6F6F71182860C73B36 + Iterated 1000 times=066DF8B5767A0DFD75684688BA553650 + +Set 3, vector# 83: + key=53535353535353535353535353535353 + plain=53535353535353535353535353535353 + cipher=469649E37F6D6B0D8C0AEA2D31039E96 + decrypted=53535353535353535353535353535353 + Iterated 100 times=15BE84D58CC138141DF8E22C7F0CFFE2 + Iterated 1000 times=ECC38E2186763AB93273AD5DF1A1856C + +Set 3, vector# 84: + key=54545454545454545454545454545454 + plain=54545454545454545454545454545454 + cipher=93C727938BBA5C96B2F75AFCFFC770B3 + decrypted=54545454545454545454545454545454 + Iterated 100 times=4DDD792051C720BAC71C18307ACB6AB3 + Iterated 1000 times=8BF826603E938D29517247874ACE056A + +Set 3, vector# 85: + key=55555555555555555555555555555555 + plain=55555555555555555555555555555555 + cipher=B636AADF3D3D9EEC4F9524F81F9401C4 + decrypted=55555555555555555555555555555555 + Iterated 100 times=129DC53BA892012C514FB9825E941178 + Iterated 1000 times=260F2E6EAB72A90A821D4049C5CDB04C + +Set 3, vector# 86: + key=56565656565656565656565656565656 + plain=56565656565656565656565656565656 + cipher=E946C334CF6FCC4A60FD5C50EB64D082 + decrypted=56565656565656565656565656565656 + Iterated 100 times=8193841286692734BCA964BC796E0187 + Iterated 1000 times=941AC3FE29070B471ADCB4F0D909B3F2 + +Set 3, vector# 87: + key=57575757575757575757575757575757 + plain=57575757575757575757575757575757 + cipher=D40E5EC52194C43CB7AB412564B56232 + decrypted=57575757575757575757575757575757 + Iterated 100 times=93B201B70213B62B49B922D52B862C91 + Iterated 1000 times=7E91E3B2539A9E69C21F794BD0E18EA6 + +Set 3, vector# 88: + key=58585858585858585858585858585858 + plain=58585858585858585858585858585858 + cipher=551420F03A802B746CDE03F6D001387A + decrypted=58585858585858585858585858585858 + Iterated 100 times=FD36D88F87CDDBA08B83CB0E26538F5F + Iterated 1000 times=0602F08A40249B68609828C551FC0A75 + +Set 3, vector# 89: + key=59595959595959595959595959595959 + plain=59595959595959595959595959595959 + cipher=F7526AB244E73CA4E3E280E7B5640E65 + decrypted=59595959595959595959595959595959 + Iterated 100 times=DCE5A1B213589DA522EF6612B497E45B + Iterated 1000 times=BA2E53FA2A13C729C0D987F0D57471B2 + +Set 3, vector# 90: + key=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + plain=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + cipher=E42167A4D83A5169EC86B7E7E2E3FE51 + decrypted=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + Iterated 100 times=66F4231570C0D52FB64E23A126137B59 + Iterated 1000 times=B391404F19C00C09566ED956FE7529C7 + +Set 3, vector# 91: + key=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + plain=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + cipher=F7F026BF57F3D36C3D29EA069DA5A426 + decrypted=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + Iterated 100 times=0F9F771C03CF1A15B94C73866C27F81F + Iterated 1000 times=DA19B25972170451134F3E329B1B4208 + +Set 3, vector# 92: + key=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + plain=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + cipher=8AEA8A8B8C761A16F73F18AFAF2A2C71 + decrypted=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + Iterated 100 times=1F4A8035D4E9732145F19ED794AEC6C1 + Iterated 1000 times=FD72AE1D35B802EEE7ADA1E0A44A88D7 + +Set 3, vector# 93: + key=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + plain=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + cipher=752E8AFA97D810030CBA207EC00B96CD + decrypted=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + Iterated 100 times=AB9F129923AA3C991C060237E9E15450 + Iterated 1000 times=434E6167E8A5942BD60E4BECF794BACB + +Set 3, vector# 94: + key=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + plain=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + cipher=2A230A4E671588CB9A61FAB18F8794EC + decrypted=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + Iterated 100 times=E5AA216FFDA8D269419FB9C0E66789B2 + Iterated 1000 times=3DBF778FB310F75725F8EF5B00EDD0EC + +Set 3, vector# 95: + key=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + plain=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + cipher=038B8F3F3CA8B809CE9372DFF9399C11 + decrypted=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + Iterated 100 times=E76B1474CB463E282FB226A50A887CBB + Iterated 1000 times=1F41EF577E93599ECB7E18D3111084CA + +Set 3, vector# 96: + key=60606060606060606060606060606060 + plain=60606060606060606060606060606060 + cipher=1E7A2377E06D475C7A5E12FF61AF3DAA + decrypted=60606060606060606060606060606060 + Iterated 100 times=A003B60DFE323930AA8395B3473D40B0 + Iterated 1000 times=4C47E5F481F373F67EDD2D8F82904AEC + +Set 3, vector# 97: + key=61616161616161616161616161616161 + plain=61616161616161616161616161616161 + cipher=2D037C7DB6736CAA5CAFD5F4D474686C + decrypted=61616161616161616161616161616161 + Iterated 100 times=A6803E911634D1F10298F0FB0B12742E + Iterated 1000 times=E84CE4FB2F396109EA8242A909920700 + +Set 3, vector# 98: + key=62626262626262626262626262626262 + plain=62626262626262626262626262626262 + cipher=73B5FED6356695FA1D1C3EFD9BCDF291 + decrypted=62626262626262626262626262626262 + Iterated 100 times=3066DB24FB30E9D0CC576FE7F658A4B4 + Iterated 1000 times=063389B5E8BBC6DD69D0A531391601B6 + +Set 3, vector# 99: + key=63636363636363636363636363636363 + plain=63636363636363636363636363636363 + cipher=A23A53987C76E59425A363B4A38EEDC4 + decrypted=63636363636363636363636363636363 + Iterated 100 times=0C18249A448494FD7B1C09459BAF917C + Iterated 1000 times=A8ED91D252B5AA9BE8F38E2585EB5D8F + +Set 3, vector#100: + key=64646464646464646464646464646464 + plain=64646464646464646464646464646464 + cipher=7190EB4FE8CC3B7315084BDE92D1DBF6 + decrypted=64646464646464646464646464646464 + Iterated 100 times=4D6FC5482764626CBB5809D885BD7AB1 + Iterated 1000 times=49F912111FD2D4805A4490B473555C6E + +Set 3, vector#101: + key=65656565656565656565656565656565 + plain=65656565656565656565656565656565 + cipher=A39D9C2089AD7D53E2AD4D13745C6238 + decrypted=65656565656565656565656565656565 + Iterated 100 times=D8A1FB7525DFEEABA758B72C07FA60F4 + Iterated 1000 times=96B7D099B6ABF46AC2355B7A16F1D8C4 + +Set 3, vector#102: + key=66666666666666666666666666666666 + plain=66666666666666666666666666666666 + cipher=597DAF7E0A51332DA223248D9A860C16 + decrypted=66666666666666666666666666666666 + Iterated 100 times=8E7131E53992C22D8835CC02C3C8F2F6 + Iterated 1000 times=F4DFC598EB2761F057D59CD22BE2E5B1 + +Set 3, vector#103: + key=67676767676767676767676767676767 + plain=67676767676767676767676767676767 + cipher=039ACE2E9F7471F456AB713745CC9A5B + decrypted=67676767676767676767676767676767 + Iterated 100 times=2916703695E1323F33DB64EA68517A83 + Iterated 1000 times=146DB73E70D3B3B14225B95BB3A191F5 + +Set 3, vector#104: + key=68686868686868686868686868686868 + plain=68686868686868686868686868686868 + cipher=ADF495459D531D5FBBD4D6CEDE80EF0C + decrypted=68686868686868686868686868686868 + Iterated 100 times=53FA25231E0F0419A119D5FB0CFD69D5 + Iterated 1000 times=A62354476B8B1B1FA6283A6B08440959 + +Set 3, vector#105: + key=69696969696969696969696969696969 + plain=69696969696969696969696969696969 + cipher=6613DC686C857CFBCCA36759C62C8D06 + decrypted=69696969696969696969696969696969 + Iterated 100 times=77475DB5DFE18327B42FA7CF4C341242 + Iterated 1000 times=40EA138001B55ED8ACBEB668458E2358 + +Set 3, vector#106: + key=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + plain=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + cipher=F445CF3E3D0BC5D0ADFB0415A6D10212 + decrypted=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + Iterated 100 times=CFE53AFD86C1DDEF62D836219DB56E4D + Iterated 1000 times=E8358CDC20888DEBC1C06D79CFCB306A + +Set 3, vector#107: + key=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + plain=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + cipher=F0AA79CC269913E526F94A0432B5AB33 + decrypted=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + Iterated 100 times=C9B9E91FE6BFE1DC67F117E752728397 + Iterated 1000 times=8B918D5F1BF0E65B4A39BAC21D8844A3 + +Set 3, vector#108: + key=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + plain=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + cipher=C3B0DBA9BBFF8E40282CB38A267DFE10 + decrypted=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + Iterated 100 times=F217F2ECA4A9F26059ABCCD9666669A9 + Iterated 1000 times=DCAEFD104A212D0E0C51FEF96A5FD528 + +Set 3, vector#109: + key=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + plain=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + cipher=EFEBFA7257EA80C635320D588A75804C + decrypted=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + Iterated 100 times=75CE42ECFECA57077E2225CD62033FEE + Iterated 1000 times=840A39207DDA4C943725F34323DF4920 + +Set 3, vector#110: + key=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + plain=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + cipher=20790942466DD65B68FD071E26BE009A + decrypted=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + Iterated 100 times=4E2973C77F9D665C93AC448499E1A0BD + Iterated 1000 times=7C775964295870BBB19EE4D54B70E914 + +Set 3, vector#111: + key=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + plain=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + cipher=76455C52AB1D62CADBCFD58BC08DEAFC + decrypted=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + Iterated 100 times=C854C6A412237C53B8D3FEBD2E36B74D + Iterated 1000 times=FF414D9637F84232CAB1C2E155FE0838 + +Set 3, vector#112: + key=70707070707070707070707070707070 + plain=70707070707070707070707070707070 + cipher=CBA89EB4798CBF8BAA15680A7E685A8F + decrypted=70707070707070707070707070707070 + Iterated 100 times=B871EC861D7F2D10BE942EC0FD718D5C + Iterated 1000 times=7CCF17993B36C49318BC84E27A2CAACB + +Set 3, vector#113: + key=71717171717171717171717171717171 + plain=71717171717171717171717171717171 + cipher=E3E6EAD4F5743DECB4734958F0C63A53 + decrypted=71717171717171717171717171717171 + Iterated 100 times=F6082B5F205D647CF125A163E377BC6D + Iterated 1000 times=541311CD1FD1B0D1F289640ED833FA77 + +Set 3, vector#114: + key=72727272727272727272727272727272 + plain=72727272727272727272727272727272 + cipher=C4D77FF3684772EB2D7CE5CC408C1993 + decrypted=72727272727272727272727272727272 + Iterated 100 times=3CB554A1672E7B02C95B7B5EA3098BD1 + Iterated 1000 times=83BD3BCF5C92915DF6919C4124EF713F + +Set 3, vector#115: + key=73737373737373737373737373737373 + plain=73737373737373737373737373737373 + cipher=43D19A57FE15ED44C19664BC6198BC13 + decrypted=73737373737373737373737373737373 + Iterated 100 times=ECEB84DA38102EF6CF74707406360A1A + Iterated 1000 times=80DC24CD606ADD494A343C73E73BEC57 + +Set 3, vector#116: + key=74747474747474747474747474747474 + plain=74747474747474747474747474747474 + cipher=FDF81E5E22D3D6F1796310F2FF2FF480 + decrypted=74747474747474747474747474747474 + Iterated 100 times=4FF8570E91E26E1AD082C27981A75EFA + Iterated 1000 times=46F6664ADFEE31C3CAB2ECA3F0EE9423 + +Set 3, vector#117: + key=75757575757575757575757575757575 + plain=75757575757575757575757575757575 + cipher=258121AF9DFC4F761E99EC06484FCEDD + decrypted=75757575757575757575757575757575 + Iterated 100 times=F794B0B9AE7E62E22A092235500EC9D8 + Iterated 1000 times=D74267E90FDE4A2BA0F62F2B06D9741A + +Set 3, vector#118: + key=76767676767676767676767676767676 + plain=76767676767676767676767676767676 + cipher=9CAA78AF63E01100A5FF7AF013B3BE3A + decrypted=76767676767676767676767676767676 + Iterated 100 times=2AF2C184731DC54A9696F62A1FE2FE48 + Iterated 1000 times=85ACA03407F08C42638CB57886E38110 + +Set 3, vector#119: + key=77777777777777777777777777777777 + plain=77777777777777777777777777777777 + cipher=08331D7E9F2B5A839DFF69CE9A050C93 + decrypted=77777777777777777777777777777777 + Iterated 100 times=0E2501902D6E7254D16BFF7EE35FCEBC + Iterated 1000 times=4A1C0A30DEAAFF8F62DC09A54E0074C2 + +Set 3, vector#120: + key=78787878787878787878787878787878 + plain=78787878787878787878787878787878 + cipher=6CF8747967751AF438CF4C6BF0CDA444 + decrypted=78787878787878787878787878787878 + Iterated 100 times=D3D74376EB89E0491F528EC62B836C30 + Iterated 1000 times=2A2A676315B2EF7ED8222426DE8BA065 + +Set 3, vector#121: + key=79797979797979797979797979797979 + plain=79797979797979797979797979797979 + cipher=770950E65E637CAAEDD46D5F712D3873 + decrypted=79797979797979797979797979797979 + Iterated 100 times=C884F30478E55797650B59FDB12F761D + Iterated 1000 times=957DE69A68BE79080744E0F7F2692DA6 + +Set 3, vector#122: + key=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + plain=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + cipher=3A2F3DEF8F3CF6F5B64E860D95E502C4 + decrypted=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + Iterated 100 times=C1B74B71804FD804CA7913844D51B6D1 + Iterated 1000 times=808C17BDA39533950CE6EECE859AA26D + +Set 3, vector#123: + key=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + plain=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + cipher=78080A27C6EBE845D029C3273D0DBC2F + decrypted=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + Iterated 100 times=A626587C9E1DF8F740CDB19A8B1AA269 + Iterated 1000 times=22FEAC54CC916EA7D14D5E94882E7559 + +Set 3, vector#124: + key=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + plain=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + cipher=6768F142BCDB14615721B53B6369D058 + decrypted=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + Iterated 100 times=E43B15214A84F99D5A047F4A23B08D30 + Iterated 1000 times=98F47E84770FCEA527EFC63FCD728C1D + +Set 3, vector#125: + key=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + plain=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + cipher=E9878AD694D2201D5B7B4BB35FFDE320 + decrypted=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + Iterated 100 times=C617C56646D5FDF5ED3123BB6CF0253E + Iterated 1000 times=446EFE5D522E29B893738E1F95C5F3DD + +Set 3, vector#126: + key=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + plain=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + cipher=486884A48B3E9D70729C1E01407CA71E + decrypted=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + Iterated 100 times=D51159A34EF6E9CE7CFF324F408F6176 + Iterated 1000 times=D5B009A74CBC755533D6B24CED03FD26 + +Set 3, vector#127: + key=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + plain=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + cipher=F81ADF275CC8D24DCD89DF6F044B19F1 + decrypted=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + Iterated 100 times=DBE0F23CA73F69B58CC3A82BC560400A + Iterated 1000 times=B7405D16A243E6E24BA05E21CE133E40 + +Set 3, vector#128: + key=80808080808080808080808080808080 + plain=80808080808080808080808080808080 + cipher=E9F29981A55CEE4229BE97A264040236 + decrypted=80808080808080808080808080808080 + Iterated 100 times=47A5EF88C9600F307676F253D1602C3A + Iterated 1000 times=FA39BDE15BC82A0BA96FB82B85267DBB + +Set 3, vector#129: + key=81818181818181818181818181818181 + plain=81818181818181818181818181818181 + cipher=9F520EC69AB5A63020C3563D03A00843 + decrypted=81818181818181818181818181818181 + Iterated 100 times=4240728C6A7CAA276A5A2A3109EE4C33 + Iterated 1000 times=4CC44550D7876F83EAB833CC510A7DE9 + +Set 3, vector#130: + key=82828282828282828282828282828282 + plain=82828282828282828282828282828282 + cipher=1876D999BEECD9635D2E05B8B70A708C + decrypted=82828282828282828282828282828282 + Iterated 100 times=5FBE5F457617D7B1D6B591CE588B81CB + Iterated 1000 times=435C6FD82945447A19A808E266F2A743 + +Set 3, vector#131: + key=83838383838383838383838383838383 + plain=83838383838383838383838383838383 + cipher=BAA6EECF0BA4B987175AE06714AE5FDB + decrypted=83838383838383838383838383838383 + Iterated 100 times=F02D3A34FCBC467F7F3C1EC23D11B7D5 + Iterated 1000 times=F16D8EE909FAE82EC15CDA400964E29F + +Set 3, vector#132: + key=84848484848484848484848484848484 + plain=84848484848484848484848484848484 + cipher=655410648D0C4856876826C4654B5745 + decrypted=84848484848484848484848484848484 + Iterated 100 times=DFA70E3B4EF27E75B76D7FA77C3AA139 + Iterated 1000 times=A3A0D236F9A55F26B14446233CD94AC0 + +Set 3, vector#133: + key=85858585858585858585858585858585 + plain=85858585858585858585858585858585 + cipher=D1A9D3A80A91008F232F2C12AB65AF92 + decrypted=85858585858585858585858585858585 + Iterated 100 times=6E65013320E903AC8050DB988C26245A + Iterated 1000 times=32A6D2031F95C9AF16C9473B190E3D59 + +Set 3, vector#134: + key=86868686868686868686868686868686 + plain=86868686868686868686868686868686 + cipher=D5428CF973D416092869D24254981F1B + decrypted=86868686868686868686868686868686 + Iterated 100 times=ABC425A8F0647DCD88A4C49D638DBBEA + Iterated 1000 times=028CD1E3394CC691644211EBFEF1DF88 + +Set 3, vector#135: + key=87878787878787878787878787878787 + plain=87878787878787878787878787878787 + cipher=D653804596390C4F4FD258B912A958A2 + decrypted=87878787878787878787878787878787 + Iterated 100 times=B2A0DAA615DF62E4522F3998E39559A9 + Iterated 1000 times=F3ADFCF73085C66B5E72A1C27ACFD717 + +Set 3, vector#136: + key=88888888888888888888888888888888 + plain=88888888888888888888888888888888 + cipher=E488C8FA4B480F67BD75C9B7DA0F0C4E + decrypted=88888888888888888888888888888888 + Iterated 100 times=40536E80065D301DCFB6E9B29E25AD61 + Iterated 1000 times=6E2686F8D01AA7D045818DD884103794 + +Set 3, vector#137: + key=89898989898989898989898989898989 + plain=89898989898989898989898989898989 + cipher=3F6C64E3BF13D4C9FFB4F8962DE83A1B + decrypted=89898989898989898989898989898989 + Iterated 100 times=FB1ACC5D113A66B5667E7C51BFA6023C + Iterated 1000 times=1C5AC5D3F5370F6C9391B0EA733049ED + +Set 3, vector#138: + key=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + plain=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + cipher=93A59E9334B124907137ACBBF27CEA70 + decrypted=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + Iterated 100 times=0797CDD3BE37882DBE022355B5B537F2 + Iterated 1000 times=289214195CC26D611D9283A07928731F + +Set 3, vector#139: + key=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + plain=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + cipher=17FD8FD80F0602A9D013D6CEC40E2A1A + decrypted=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + Iterated 100 times=2B5952B742109DBBC93BAC1A4358765E + Iterated 1000 times=6BC28ED8D7C14FEC638477996BC05A4D + +Set 3, vector#140: + key=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + plain=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + cipher=3E02824551DA3B6E95CD3A4423553650 + decrypted=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + Iterated 100 times=25CE0009E5CD6CC001AABE586A04C524 + Iterated 1000 times=94D922D80B85185B95F3F821E4D02DFF + +Set 3, vector#141: + key=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + plain=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + cipher=EEAC47E8BF9C2D1FAE91373401F21460 + decrypted=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + Iterated 100 times=07ACD33AC2AA01E384721AB0DD4504E0 + Iterated 1000 times=244B354A55C6E77A0B589A553752F6EF + +Set 3, vector#142: + key=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + plain=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + cipher=5E00F73C293A2AA71B95B7F4B181BF6D + decrypted=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + Iterated 100 times=5F3ED76113DDEEBFACF4D64F10FB3296 + Iterated 1000 times=401053AE67FA0BC7EF805CFCF6F564AF + +Set 3, vector#143: + key=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + plain=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + cipher=EFBABFE7D9AD1D101D2A7DA1DC18015A + decrypted=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + Iterated 100 times=18164C46CF4EC929E630C7003E3DD29F + Iterated 1000 times=D8082E808DAA186208A8B5881B6418DE + +Set 3, vector#144: + key=90909090909090909090909090909090 + plain=90909090909090909090909090909090 + cipher=B5AC8D7C8081A46294E65B3EA77ABF1F + decrypted=90909090909090909090909090909090 + Iterated 100 times=BC1B21DDE5BBA095A22E370C7C5DBF46 + Iterated 1000 times=D697D7475B1A8603B7BD7108EEC92397 + +Set 3, vector#145: + key=91919191919191919191919191919191 + plain=91919191919191919191919191919191 + cipher=9CB7696354890965A6230A1FE17B6E44 + decrypted=91919191919191919191919191919191 + Iterated 100 times=4FA958D0FEBD97325A5C6C69D8F95F88 + Iterated 1000 times=42B4D50ECCEABA33FEB8D66E6978A162 + +Set 3, vector#146: + key=92929292929292929292929292929292 + plain=92929292929292929292929292929292 + cipher=7260C50DBB6765B551995D9DD0C0A718 + decrypted=92929292929292929292929292929292 + Iterated 100 times=B2B5DB780618D48B0503F9CE0FB58ACB + Iterated 1000 times=195FF0FB90ABD1E518846F005A542F53 + +Set 3, vector#147: + key=93939393939393939393939393939393 + plain=93939393939393939393939393939393 + cipher=26D895ADDA02F7913D87310253215F82 + decrypted=93939393939393939393939393939393 + Iterated 100 times=E14BD61EDC13CAB7621ADFF90C433453 + Iterated 1000 times=F32369AB1E985A1E31D42FB3530D6FE0 + +Set 3, vector#148: + key=94949494949494949494949494949494 + plain=94949494949494949494949494949494 + cipher=03317FA40FC376D7321528A0F590181E + decrypted=94949494949494949494949494949494 + Iterated 100 times=F1897F8F17EBA5CC78085D9A8C3764D4 + Iterated 1000 times=5313AF0C7ECB18F028FB6AEB51229950 + +Set 3, vector#149: + key=95959595959595959595959595959595 + plain=95959595959595959595959595959595 + cipher=08D9F76D24687A0C338F7797F937506D + decrypted=95959595959595959595959595959595 + Iterated 100 times=7DA385DDE449C3BC47AECB9EED27BF29 + Iterated 1000 times=CE7C12C6889A021529C2CD7815E9923D + +Set 3, vector#150: + key=96969696969696969696969696969696 + plain=96969696969696969696969696969696 + cipher=50E9F91F2A51C8EF19986825BEB4F443 + decrypted=96969696969696969696969696969696 + Iterated 100 times=AFBCD830206C826015ACFD9EE1B17F37 + Iterated 1000 times=CB8F513E450C1A7E36A2ADEFA6483D68 + +Set 3, vector#151: + key=97979797979797979797979797979797 + plain=97979797979797979797979797979797 + cipher=66C31D8B15645281161CE7B13685D1B3 + decrypted=97979797979797979797979797979797 + Iterated 100 times=0F7DBFCB9D928E8938FD59C91251C9F3 + Iterated 1000 times=28521D9F6044FFE98CF407352992EE49 + +Set 3, vector#152: + key=98989898989898989898989898989898 + plain=98989898989898989898989898989898 + cipher=5C3012626E6E9C41EBCFBC3D00862DDB + decrypted=98989898989898989898989898989898 + Iterated 100 times=AD4A26B603BFD3AA01B7CAAEEDB346D3 + Iterated 1000 times=B170CD73E81711170978CD62E3455F57 + +Set 3, vector#153: + key=99999999999999999999999999999999 + plain=99999999999999999999999999999999 + cipher=00B12ADE86DB4D347CB66368E3FBACCF + decrypted=99999999999999999999999999999999 + Iterated 100 times=15BF51FAD3A9EEEBFA239AC12D63445B + Iterated 1000 times=D75E7DD08A87C9C53361817121B8F524 + +Set 3, vector#154: + key=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + plain=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + cipher=15C1DD10EFC41F674FF78355A39B4C6D + decrypted=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + Iterated 100 times=E6CC52385D6A4A8109A8B75195DA0CC3 + Iterated 1000 times=134B162E4EDF3A81A777075EA715BEAF + +Set 3, vector#155: + key=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + plain=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + cipher=6FA5A7A95CEBA38448138ED4D166401D + decrypted=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + Iterated 100 times=ABDDA32F764872DAEDB093365E4D13F1 + Iterated 1000 times=1DF3938D4537EC8E73A573C4C0EBE8C1 + +Set 3, vector#156: + key=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + plain=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + cipher=2962D2C72CAF0520E86CB3C1628D1D8F + decrypted=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + Iterated 100 times=DCD6917F4864C33251F0FF0B5B76EF6F + Iterated 1000 times=28017EB29D744EF922D181AD5BE60957 + +Set 3, vector#157: + key=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + plain=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + cipher=C90E1562F100FA5BB0BA59DD98F284EF + decrypted=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + Iterated 100 times=451DC25297072C7129157897C7E14BFF + Iterated 1000 times=E5DCEB32879EBC6BF241056B04F0404C + +Set 3, vector#158: + key=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + plain=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + cipher=D847EA1897118493D99A6D09E3CEC018 + decrypted=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + Iterated 100 times=BB73226B47E0C6F3E726569334F7F3D4 + Iterated 1000 times=062D81E47F35DF42C30829B96CD0F8E9 + +Set 3, vector#159: + key=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + plain=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + cipher=E0C857EC57005A98C4B3E8BC341649A4 + decrypted=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + Iterated 100 times=F1DF3DBDEDFDFEE6D842F8C5257A682E + Iterated 1000 times=D13CEB1AF7885E20254ADA547C508F66 + +Set 3, vector#160: + key=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + plain=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + cipher=23D37783BECF12D7B7BDD7225DE11355 + decrypted=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + Iterated 100 times=FD28FB3AF6C37E75D4060FEE3DF75591 + Iterated 1000 times=1677594874EEF31D1A320B7EE8EA507A + +Set 3, vector#161: + key=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + plain=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + cipher=7380A1FED4BF0793C35090E8B57129ED + decrypted=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + Iterated 100 times=FB3426A9717506AB5451667FC1BD4569 + Iterated 1000 times=E3E2062027F44E7259E3C2C0BC3787EE + +Set 3, vector#162: + key=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + plain=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + cipher=E101D7131843BD303E8E6AE7609B1814 + decrypted=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + Iterated 100 times=23CFECEDF86A6D089C5A2D824C34FF32 + Iterated 1000 times=0A7964695211B92CBD61EEB419F19387 + +Set 3, vector#163: + key=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + plain=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + cipher=8C862A42AE6F951EBC58948773D01A59 + decrypted=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + Iterated 100 times=39964E2B6935C34AF58A43A29C1A61E8 + Iterated 1000 times=23378D777A67D3E76AF6A0060F225024 + +Set 3, vector#164: + key=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + plain=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + cipher=D5DD50C19115C47E79A5E45A36EE3F78 + decrypted=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + Iterated 100 times=BF3C326064A424D94E73B91E9D3CC7A9 + Iterated 1000 times=A2086972AF907879544BF645A7031BA9 + +Set 3, vector#165: + key=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + plain=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + cipher=6C62381F124643EE6761D707F1937FE2 + decrypted=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + Iterated 100 times=121D8364EF108B3FEF8C3874AFFC82FA + Iterated 1000 times=B055568B724BEC063E2D2E79ED7588FD + +Set 3, vector#166: + key=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + plain=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + cipher=B9D1A7E3E93B2B085102C8D1480C3C0C + decrypted=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + Iterated 100 times=B4E8E7198C28B1AF5ECE39051E95EA9E + Iterated 1000 times=BA5DF4D004F9FC7B69B14EB6AE0B47E4 + +Set 3, vector#167: + key=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + plain=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + cipher=07096DABBCFE6DFFAFAB9B472A9B8233 + decrypted=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + Iterated 100 times=7104BA6BB0629E765C7FC8DD030DFF36 + Iterated 1000 times=05FD99E2521DE0D8E539848B2884DF76 + +Set 3, vector#168: + key=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + plain=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + cipher=74A5FD80E41F810433D3A59204A28D19 + decrypted=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + Iterated 100 times=F5EEB85F2E6B4C5911A4E6C19A51B9A7 + Iterated 1000 times=302DA19CF500BABD25F5A1BA21E01811 + +Set 3, vector#169: + key=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + plain=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + cipher=E5482B7B349CD8FE37895A02342A533A + decrypted=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + Iterated 100 times=EA6A850F279130AAE6F7F3D7564027D8 + Iterated 1000 times=E71120905A8E8849C3CC8D07E7B3726A + +Set 3, vector#170: + key=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + plain=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + cipher=BB65A846565E84E86274C7B16BAC1473 + decrypted=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + Iterated 100 times=542210CE9202F2D893452103C9839763 + Iterated 1000 times=549B316EBC153124306F0D74D694B7C4 + +Set 3, vector#171: + key=ABABABABABABABABABABABABABABABAB + plain=ABABABABABABABABABABABABABABABAB + cipher=1CFB85409884FEF96970039C56FEE0FA + decrypted=ABABABABABABABABABABABABABABABAB + Iterated 100 times=AAE4A18A1277641E3BB5EE6FB9E1688B + Iterated 1000 times=5D2B46A6ACEBE0024AD6455125500200 + +Set 3, vector#172: + key=ACACACACACACACACACACACACACACACAC + plain=ACACACACACACACACACACACACACACACAC + cipher=488145E5464E88F670F31B1807BBEB5C + decrypted=ACACACACACACACACACACACACACACACAC + Iterated 100 times=AB21998E1F415EF312DEF76134B01E50 + Iterated 1000 times=00602F520E7C7D38C4435A7D49728F35 + +Set 3, vector#173: + key=ADADADADADADADADADADADADADADADAD + plain=ADADADADADADADADADADADADADADADAD + cipher=95264FA981AA15775AA570C41BAC3BB2 + decrypted=ADADADADADADADADADADADADADADADAD + Iterated 100 times=473B330554D966FC05448FA53130D267 + Iterated 1000 times=E2BDD953A78690E41FBB26EE28FDEAD2 + +Set 3, vector#174: + key=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + plain=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + cipher=8EFDD92E711D30E1F9A3DD1C907A5DCD + decrypted=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + Iterated 100 times=E9A0DA0C035F6F250F16A1F70443874F + Iterated 1000 times=A7A17F6584D8A3A1045EB3484E532982 + +Set 3, vector#175: + key=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + plain=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + cipher=E9BEBA4FF362310C846FCFCDB29B3824 + decrypted=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + Iterated 100 times=CB7B776B96EA5EC48035F69C249B69A0 + Iterated 1000 times=AB6A9FACBE0880B94BE9EB2B3B2BE4BA + +Set 3, vector#176: + key=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + plain=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + cipher=5F9BF9EDA5AA0EAB19E9D5649D99DD51 + decrypted=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + Iterated 100 times=689E7CA27774903911FD8F189D55E5EC + Iterated 1000 times=552301E530CABD8E8219413728E858E0 + +Set 3, vector#177: + key=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + plain=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + cipher=FACB4EEA5661E67129220EA3B83AC32B + decrypted=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + Iterated 100 times=912B4279D424628F0A04BD5FEBAA5E20 + Iterated 1000 times=D30E986BF06821F03AF70A273F87C52C + +Set 3, vector#178: + key=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + plain=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + cipher=259348FEF79D90B4E2675CDC64167452 + decrypted=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + Iterated 100 times=7180F9A26C47661E61C9E2A68E77C58E + Iterated 1000 times=8C9D4819BD70E88F52777FBC6CF8A0B2 + +Set 3, vector#179: + key=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + plain=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + cipher=E08284942E1FB0A545EACABC77F2E259 + decrypted=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + Iterated 100 times=435FDF80A952EC056FA5340671C6A32A + Iterated 1000 times=E90A0B89F3CF57A5E5DBA3E94D18C095 + +Set 3, vector#180: + key=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + plain=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + cipher=42EA4D80F064441FD9618CB34ACD3267 + decrypted=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + Iterated 100 times=2E4D5DAB6500056D2C32D34FDA68ABE2 + Iterated 1000 times=BB10FB767964B7667DFE605C9713D743 + +Set 3, vector#181: + key=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + plain=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + cipher=BA23C0286E2240134A2F1124F2575D75 + decrypted=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + Iterated 100 times=C78D60CEBC9886204104B0432EC36015 + Iterated 1000 times=DB98C44722E9F86BC0818FB65686650F + +Set 3, vector#182: + key=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + plain=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + cipher=10D25B5F163B22AE1B759E5F4667AB9B + decrypted=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + Iterated 100 times=FA495D2CF69EA63F30EFD77003970119 + Iterated 1000 times=04DDC6210539E6A36FD11F1BBBDF7D89 + +Set 3, vector#183: + key=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + plain=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + cipher=557F0AEC7C93F1ECC0A91ECD242815E3 + decrypted=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + Iterated 100 times=D860430DA6A21A02E69FF65098C9E91A + Iterated 1000 times=6A9F5AEA1D22CEE4017A21BAC9E16901 + +Set 3, vector#184: + key=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + plain=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + cipher=319F610BDBA297D573AFADD69ACCFA21 + decrypted=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + Iterated 100 times=C79BA8CB77FA5BDC629B3946FDD894C3 + Iterated 1000 times=CF8DA25D60D9BF76752C3E6CE93BB39F + +Set 3, vector#185: + key=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + plain=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + cipher=86C2F18DF37D72666495522F64ACD8E3 + decrypted=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + Iterated 100 times=3CB4F5269DC8037918E9FF29D518F20D + Iterated 1000 times=9D7638F01C0ABB30BB04EA081F7EF2E5 + +Set 3, vector#186: + key=BABABABABABABABABABABABABABABABA + plain=BABABABABABABABABABABABABABABABA + cipher=E35E7F52DDFF55E6A0AA8975AD0F3D0B + decrypted=BABABABABABABABABABABABABABABABA + Iterated 100 times=35A349EB6E32377CDA24D41D4D254BD5 + Iterated 1000 times=30AD75148971A1FEF984C39D53E8D5D4 + +Set 3, vector#187: + key=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + plain=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + cipher=773C6340CC652BAEB49995AC97512B50 + decrypted=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + Iterated 100 times=6725EC65C12CF7FE89F11112F328C5E9 + Iterated 1000 times=B24BA578477C3B27C5562D11E7A2449D + +Set 3, vector#188: + key=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + plain=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + cipher=51111EC01B5DCC0C476D0B10232D012E + decrypted=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + Iterated 100 times=A9B66CCFB88F576DE75B06CAE55C2432 + Iterated 1000 times=C9B1568CCAC41424ECDFC02E004E37E8 + +Set 3, vector#189: + key=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + plain=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + cipher=8C723766A0AFE495930515D380D6EFD6 + decrypted=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + Iterated 100 times=5F55408AE9EC3A62D9045F7A2793EF00 + Iterated 1000 times=505F4CFDE30D2A4BE776440FDE868434 + +Set 3, vector#190: + key=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + plain=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + cipher=315C4E18B59F167A42226F3A44C52258 + decrypted=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + Iterated 100 times=4D62401FA1587383273736A5E54897CC + Iterated 1000 times=359365D9AEDAD59BDEB5ED8EE6501A72 + +Set 3, vector#191: + key=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + plain=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + cipher=B6CCD53B55A289EA08C4B62BCE9093DC + decrypted=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + Iterated 100 times=F19834EA07BAB33FD831D825E451004F + Iterated 1000 times=BE71F99FE0AE286AEE8F7EB0A6159490 + +Set 3, vector#192: + key=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + plain=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + cipher=F4418A85A059DB5F67D6A181280AAB00 + decrypted=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + Iterated 100 times=1421C6C7DC8A873931A75949A86FFEA1 + Iterated 1000 times=9FC24EA4945FEF8A1573D5EB53DF4B09 + +Set 3, vector#193: + key=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + plain=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + cipher=F4A825D34982D78E2339A1FA83298169 + decrypted=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + Iterated 100 times=EAC60B96EF071C5B4123DBE32160CD8D + Iterated 1000 times=BACF39EBBD50F6662D05768E8E053332 + +Set 3, vector#194: + key=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + plain=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + cipher=F2DFAD7E8D1F9ABDBADA93977E5E6BAB + decrypted=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + Iterated 100 times=541F59F2B353558B6398599C817BFDA8 + Iterated 1000 times=E6AE3FE0BC875FFCE7B9093DA6D2BE41 + +Set 3, vector#195: + key=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + plain=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + cipher=F8D0A82F5997FB764E5002C5311257F3 + decrypted=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + Iterated 100 times=15C9205BFC7C907580B95D69EE85428F + Iterated 1000 times=F746305B5D5F466800AD7EA31B618181 + +Set 3, vector#196: + key=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + plain=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + cipher=658D3B9051FAE0242FC6045E3A164A57 + decrypted=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + Iterated 100 times=CC897CBFBEF35D1BF04BDCDCA83BECB0 + Iterated 1000 times=CCAEE04FEE947005EA979703D1588C13 + +Set 3, vector#197: + key=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + plain=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + cipher=3F02ED7837B452B63103B64B59A47650 + decrypted=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + Iterated 100 times=A87679810EBF87C3C647900FAC803426 + Iterated 1000 times=E026DD2748027AFB2219FB8B2DD42FEC + +Set 3, vector#198: + key=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + plain=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + cipher=F040DC90D646B0A7DF452DCA709463F5 + decrypted=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + Iterated 100 times=F9CEB8D53B47E920325BD291F5A9B1FE + Iterated 1000 times=D4CD3782C1478D45F69DD36428063A7C + +Set 3, vector#199: + key=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + plain=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + cipher=EE1134E093F92BE1BEFD9BBEE8B9E85E + decrypted=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + Iterated 100 times=9974D7C98AA4E91FCC5AF56B8A8471EE + Iterated 1000 times=1D3A5E3AB35E88487E49EFF2830F02CA + +Set 3, vector#200: + key=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + plain=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + cipher=FD34E36EE14FF22FBEC9D7FD7364F69D + decrypted=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + Iterated 100 times=1F43FD7342F94B663BAE7699FDA8979E + Iterated 1000 times=1357ADBADD23B4F6B068B2FE1A994BE4 + +Set 3, vector#201: + key=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + plain=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + cipher=85497B13D3BE378B39801F2464C0E1AB + decrypted=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + Iterated 100 times=F638F74AA256E259A00D61D16F676D15 + Iterated 1000 times=F1CB4390F010873DC392579806F99F69 + +Set 3, vector#202: + key=CACACACACACACACACACACACACACACACA + plain=CACACACACACACACACACACACACACACACA + cipher=F7F8A863E84FAE70B5848923851BA915 + decrypted=CACACACACACACACACACACACACACACACA + Iterated 100 times=FF58C1EE3A3C561B1D1BFEECC111A985 + Iterated 1000 times=DFBCE051A1DDCFDEFF318A5556237A9D + +Set 3, vector#203: + key=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + plain=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + cipher=15F403D0E4C9E4C8ED89CECF555882D1 + decrypted=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + Iterated 100 times=4C6C3997608F1EF3A1E062F6CAF7788E + Iterated 1000 times=F5D8C741506F989D16EE6059224CEDC0 + +Set 3, vector#204: + key=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + plain=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + cipher=31FF79DEC46BEFBEDF4680B5739F5916 + decrypted=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + Iterated 100 times=4D8596089F7CF683A9B768D3DBE7EFEE + Iterated 1000 times=14000A4FEAF60056EBFDB05FA836DE0B + +Set 3, vector#205: + key=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + plain=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + cipher=B3E2C12B3EE8F98F40314FA5F157AEE8 + decrypted=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + Iterated 100 times=6B9820F4D10FB2946586CB726EE1B9A4 + Iterated 1000 times=66330818E7E6C63823D2A5D62E7809DC + +Set 3, vector#206: + key=CECECECECECECECECECECECECECECECE + plain=CECECECECECECECECECECECECECECECE + cipher=6EEC85D55F1EAF0F314D07735044A625 + decrypted=CECECECECECECECECECECECECECECECE + Iterated 100 times=BDD55D15BF866F949D7E871C85DC4E88 + Iterated 1000 times=1BD6FFBAABD58AA0A4C15F8ECE02E383 + +Set 3, vector#207: + key=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + plain=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + cipher=7DBD7E43005F2ED6BD12A577540BFF34 + decrypted=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + Iterated 100 times=BD5B18BFE813551BD0E0828862033E13 + Iterated 1000 times=A7E9EB10765DFCC516DB686B1692EB49 + +Set 3, vector#208: + key=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + plain=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + cipher=2E01FBFBB8A3FF8C7A5CEA0148F641DC + decrypted=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + Iterated 100 times=6DF907B5A63503B5CF64DA6F16BA1C48 + Iterated 1000 times=FECAA0424BD92A75E0EF86730E626E2F + +Set 3, vector#209: + key=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + plain=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + cipher=6C6D1F8E5ED13A366290229597CA5FEC + decrypted=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + Iterated 100 times=4ADE3A9A6C913886A1FCF3DB4646146C + Iterated 1000 times=8D69F5E7EC57376DADA25BC207E4513C + +Set 3, vector#210: + key=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + plain=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + cipher=D8D39701695DE5F4413D96BE1F539DE1 + decrypted=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + Iterated 100 times=5F5F6D79B05BBF5B316655A7DDD8F6DE + Iterated 1000 times=851C0BFB07E4EFB3A1FB31BD1285316E + +Set 3, vector#211: + key=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + plain=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + cipher=9262B18A0A2B87CC32BFBDEB5EDE15C1 + decrypted=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + Iterated 100 times=D75920461B4FCA3011143978C9ED44B8 + Iterated 1000 times=8C8B61D9858D1A966826D3EB62731EF2 + +Set 3, vector#212: + key=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + plain=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + cipher=7A5F5A09535C068FA40F9A53F2260997 + decrypted=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + Iterated 100 times=953AAA330C5624F5CB5A1B828B8877ED + Iterated 1000 times=7EB905D15CDD862249D4E855019AE33F + +Set 3, vector#213: + key=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + plain=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + cipher=7BFA32F025ACE141EC14A1ADE2C02D35 + decrypted=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + Iterated 100 times=082CC00AF10BF26D79FB6599BF4EBD9C + Iterated 1000 times=DBCA3A69F0A543A168A2E49DD14CF437 + +Set 3, vector#214: + key=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + plain=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + cipher=4B281D4833B2F759A216D0E5161C75B2 + decrypted=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + Iterated 100 times=D3C3D7A6954B04626010BFF17AFEAF9F + Iterated 1000 times=82E984BB7A3C832DC2B0B6227E706E77 + +Set 3, vector#215: + key=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + plain=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + cipher=B623FCF0C6DCE576D86F0D16230A630B + decrypted=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + Iterated 100 times=1316FE78A70D449C244F51E0EBB322FB + Iterated 1000 times=4DAA1DF0C371814A56852F8E9CE6D619 + +Set 3, vector#216: + key=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + plain=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + cipher=9A06180B6573D6A2D8527051C021E865 + decrypted=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + Iterated 100 times=6FA1D6EB69B351C5A9F5C19E4F13DF25 + Iterated 1000 times=4E180C71C4A80EDA768E0A3C53EEC844 + +Set 3, vector#217: + key=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + plain=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + cipher=A1157A4EECEB3549FA07D289F221834F + decrypted=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + Iterated 100 times=0A4C01DFE6AA401971D19EFDA4AAC993 + Iterated 1000 times=A4E1A9D924C9030CE666A6C3506F3CB4 + +Set 3, vector#218: + key=DADADADADADADADADADADADADADADADA + plain=DADADADADADADADADADADADADADADADA + cipher=95A3D38B83C8BC7185F0C1EB30619938 + decrypted=DADADADADADADADADADADADADADADADA + Iterated 100 times=07527FF5FBA951ACDFF33EDC5A55EA64 + Iterated 1000 times=85FC8E6D51E9DB8E47A03F04D4960E4C + +Set 3, vector#219: + key=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + plain=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + cipher=977254247E6B09BF36648406ECFF4165 + decrypted=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + Iterated 100 times=B22363B5AE25ED110B966A9355834B22 + Iterated 1000 times=8D74BBD8A984850C4078D908C779F6E9 + +Set 3, vector#220: + key=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + plain=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + cipher=54A51CF443024AF5963B81D593CA197D + decrypted=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + Iterated 100 times=DB87A233477954498484D1F98DEA4B96 + Iterated 1000 times=8C04E165A387CF1AD24F96B045C83E92 + +Set 3, vector#221: + key=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + plain=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + cipher=981799BB303042C7363E2616566496FD + decrypted=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + Iterated 100 times=29163C42DE12809CA31DC646AB63A1BF + Iterated 1000 times=4F0484C8F87907E91BA61F0BD1396B5D + +Set 3, vector#222: + key=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + plain=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + cipher=9CB70A9413C44DDEB482F3A2C818CB35 + decrypted=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + Iterated 100 times=6C829FEE7A7CC17C72DCDE188B7CA5AF + Iterated 1000 times=ACDFD4BDC0CB803773867DAEB17A0080 + +Set 3, vector#223: + key=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + plain=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + cipher=F5C39BB9A32DE3B4CBC6EDBBE427EC37 + decrypted=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + Iterated 100 times=9D971EFE4484409D957FD4DAC145DB44 + Iterated 1000 times=5664FB9858F6986AB4884DE32B635670 + +Set 3, vector#224: + key=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + plain=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + cipher=89FB53B73741EF6EBA27E70FCE5C0257 + decrypted=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + Iterated 100 times=328595354B7CFA39776D9124DAEBCCEC + Iterated 1000 times=A38C321525F2CF837A6924064F9491D1 + +Set 3, vector#225: + key=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + plain=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + cipher=63644C9B4DA9E2512896CE046F73C59A + decrypted=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + Iterated 100 times=4A9631989286A2064194627462CAD8A2 + Iterated 1000 times=6BCFE84214081A58DF20AD116FC023AC + +Set 3, vector#226: + key=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + plain=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + cipher=78FC1F3E95E721494BB6B0121E412A50 + decrypted=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + Iterated 100 times=EB8D8392B58C5BCE63CF7735CA87D133 + Iterated 1000 times=BCBE0160F60E1E68501EBDDADC3C418C + +Set 3, vector#227: + key=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + plain=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + cipher=A2415E2B98B0C5DD184FD039D3EEDF6D + decrypted=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + Iterated 100 times=9765474492393921EFF1202C1E844823 + Iterated 1000 times=D5F00A3D1A5D9EE5B26A9C29A6F9F3F6 + +Set 3, vector#228: + key=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + plain=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + cipher=11F467BCFE36E73BEB7E9D6ECFE1F520 + decrypted=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + Iterated 100 times=9148C2A4AA4C637DA047C5EBA97F5795 + Iterated 1000 times=1D20AA6CB669964B554091D647DF7C68 + +Set 3, vector#229: + key=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + plain=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + cipher=6FB6BB3603B382570C5AE309F550F5A1 + decrypted=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + Iterated 100 times=F55A63647D3885D858189A1785F6F279 + Iterated 1000 times=1AB790AFE6B04BCF3FAAE91CD5A7FB13 + +Set 3, vector#230: + key=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + plain=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + cipher=2F1482C54D03E3D3762208D692BF9926 + decrypted=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + Iterated 100 times=38A4B1CFDF08D0CB3DC98080F4E99B0D + Iterated 1000 times=55A3628261F430CD00398DAAA8CEB15B + +Set 3, vector#231: + key=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + plain=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + cipher=B73426CE8B68CE3DDA139526BA95CCA6 + decrypted=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + Iterated 100 times=45CA7ED09C326DFD1D5D8309FF6811FA + Iterated 1000 times=CAFD81295AE9B5E2F6771961E5DCDA1D + +Set 3, vector#232: + key=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + plain=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + cipher=2090A3BE41316D38746218AE58D6A73F + decrypted=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + Iterated 100 times=534FC4B1E0367A35102A977DED27F71A + Iterated 1000 times=A734F5CF1F90D652F0DB6A378C6BFBFC + +Set 3, vector#233: + key=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + plain=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + cipher=FDCF7DBE5165278204EE8683CFC56DF4 + decrypted=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + Iterated 100 times=930E7A1435742E8F8DD6B07DBEC99A9B + Iterated 1000 times=EA044D1B16B71832246EEAC106B0C9D0 + +Set 3, vector#234: + key=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + plain=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + cipher=54EDC0375C38103C4D2B02A97E294154 + decrypted=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + Iterated 100 times=19F6ACB9E89BCD7FB522A16B1839A193 + Iterated 1000 times=A989837F18D517EB6B752B8AC38FB3CE + +Set 3, vector#235: + key=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + plain=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + cipher=14BBAC7CA245993937984F8730B5D0FB + decrypted=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + Iterated 100 times=B84A3A8824EDCE6883015CA87E42E8CA + Iterated 1000 times=CB446621FBFD44A1491F0B4D75A34340 + +Set 3, vector#236: + key=ECECECECECECECECECECECECECECECEC + plain=ECECECECECECECECECECECECECECECEC + cipher=0874C9C262282005BBE1D1004A071EA9 + decrypted=ECECECECECECECECECECECECECECECEC + Iterated 100 times=9856DDEFFC0A944CEB1083A2970081C9 + Iterated 1000 times=BF5A6C6E7CA4135BFA689CCBF625518B + +Set 3, vector#237: + key=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + plain=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + cipher=49CB7136BCEEC56EE182B2A8818696FE + decrypted=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + Iterated 100 times=ABB2F2A56A463C4B7C038CE639EAE1E3 + Iterated 1000 times=7A19EB1A234F865F26CD6945DC1DC748 + +Set 3, vector#238: + key=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + plain=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + cipher=DC35749364D44C3618C1BC0931CBA594 + decrypted=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + Iterated 100 times=EFAE0972EDF19666143D1ED72895AC55 + Iterated 1000 times=1B788E95CDA80D4FA5BF19FA4BA55D28 + +Set 3, vector#239: + key=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + plain=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + cipher=C9FD1EE848EC8FFCADB716CA115C998C + decrypted=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + Iterated 100 times=00E2E18460D1FDB0FE9C16C786B294DD + Iterated 1000 times=98068FFB22131FFAFE37B56D938715A6 + +Set 3, vector#240: + key=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + plain=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + cipher=B72ABB6EBBDF5E0077C64C92E42B3971 + decrypted=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + Iterated 100 times=E55848906C5BCD9C20E5BF40D78685C5 + Iterated 1000 times=FBFC668541C1AA2441B3878CEEEB2D76 + +Set 3, vector#241: + key=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + plain=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + cipher=8C365D529DFE7CF82B541BBAA3CDB3B5 + decrypted=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + Iterated 100 times=361460EBE50B9EB781036B917B441DBA + Iterated 1000 times=934C7940126DB9D4594C436159F0680A + +Set 3, vector#242: + key=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + plain=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + cipher=FA067359A8AA5962C0D7E9C8D07180C1 + decrypted=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + Iterated 100 times=56B85E6F1D0C2BE428AD5AEAF2FBE13A + Iterated 1000 times=9FA6F3196069EAA1F335E30799770A2B + +Set 3, vector#243: + key=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + plain=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + cipher=0C5A8887D8A607F473E34D9956489517 + decrypted=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + Iterated 100 times=5F1229E1A7D8266ECF8327DA3999A170 + Iterated 1000 times=15DF7DC9DD07C2F194B71CE67F81EE9E + +Set 3, vector#244: + key=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + plain=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + cipher=7CB7741539A1D86EB9C722D45013533A + decrypted=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + Iterated 100 times=0BD71EC112AE4842A3C9983D08A1453A + Iterated 1000 times=C0878658F701DC00CE56E72A54357936 + +Set 3, vector#245: + key=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + plain=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + cipher=7D793CCAB03595AED58F27183CECCF48 + decrypted=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + Iterated 100 times=2AF44A61CFFD304CD8E9092D6D3D9D71 + Iterated 1000 times=4DCC203E19AA2D76A49298DDE0221D46 + +Set 3, vector#246: + key=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + plain=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + cipher=DAA7536C541BA00F7D3C3B0F1A6AF213 + decrypted=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + Iterated 100 times=E237CE71979CB16AC0F10F4B55A4C022 + Iterated 1000 times=98733F6997232ED2278D6B7FF69E48DC + +Set 3, vector#247: + key=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + plain=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + cipher=EF33454DB89E44901BAD87F271822F5B + decrypted=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + Iterated 100 times=2C2B90952D85CA67998C067772C622E3 + Iterated 1000 times=D54129B3CE9BFA1DC973F08EA8DC52F9 + +Set 3, vector#248: + key=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + plain=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + cipher=D01ED639DF3F9B51EF28A8784D2AA9D9 + decrypted=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + Iterated 100 times=8FAF7A04B4FC5DC19E8E9B569C1078F5 + Iterated 1000 times=98DDFB39655D8B144FFECB6BC4B7833A + +Set 3, vector#249: + key=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + plain=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + cipher=9C6E00BB0704C0827806A83CAB3AB543 + decrypted=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + Iterated 100 times=F1DE5D27EFA2C67C13F2587CF36589EC + Iterated 1000 times=CB0A84247CD52ADC9CFBEECFDC7D5F70 + +Set 3, vector#250: + key=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + plain=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + cipher=DC59579DDB36C86CD93926496CD586DC + decrypted=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + Iterated 100 times=3A2269C24F9929EE74B29A4A690544CD + Iterated 1000 times=B53CF5DC03EBCCAC2A5CAEDBFA55176F + +Set 3, vector#251: + key=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + plain=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + cipher=741AFA64FE98A6C13909244D1DB26120 + decrypted=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + Iterated 100 times=D875C76078B2D8354923278CC60CCFED + Iterated 1000 times=8C1A1121AA70988D99BD7B3859272E45 + +Set 3, vector#252: + key=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + plain=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + cipher=9566D3158687E8D0B5852C12B5DE944E + decrypted=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + Iterated 100 times=DAE2B3E075C3AC64E01B708BAF866D9F + Iterated 1000 times=88DD4EC0D2396C2AE4EBF3364D60A0EB + +Set 3, vector#253: + key=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + plain=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + cipher=DD75A29E88E9F4C3FCFB9F1650DADF75 + decrypted=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + Iterated 100 times=5C65AFC48776268C8F934185855E350C + Iterated 1000 times=B5E8A0936ABD52013AEF4C8BEA56428D + +Set 3, vector#254: + key=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + plain=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + cipher=DA8EADFAB91FE8440A05947952235F27 + decrypted=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + Iterated 100 times=ACE8AD4D894D9BF4F75D69F794C0E641 + Iterated 1000 times=051081C4E8E055CE12591AB34EBB5671 + +Set 3, vector#255: + key=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + plain=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + cipher=2A78421B87C7D0924F26113F1D1349B2 + decrypted=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + Iterated 100 times=0A3E8AFBB0AA48257D3E96A2D9A9FAC8 + Iterated 1000 times=7DC516C05873AC2E11621C59F71D9137 + +Test vectors -- set 4 +===================== + +Set 4, vector# 0: + key=000102030405060708090A0B0C0D0E0F + plain=00112233445566778899AABBCCDDEEFF + cipher=BC0F896C2F202862871805418CE171BF + decrypted=00112233445566778899AABBCCDDEEFF + Iterated 100 times=E331A7E5B116DBE7C4EEA5DD08A09C1C + Iterated 1000 times=EE9351ACC5924C790D61E076A40F8378 + +Set 4, vector# 1: + key=2BD6459F82C5B300952C49104881FF48 + plain=EA024714AD5C4D84EA024714AD5C4D84 + cipher=00DCBEB0CD9D9FCD59388E169040EEFF + decrypted=EA024714AD5C4D84EA024714AD5C4D84 + Iterated 100 times=439E72A14FF0A405F31ECE6493A03B35 + Iterated 1000 times=03F48779DD334822D49BAB9FF430AA7C + +Test vectors -- set 5 +===================== + +Set 5, vector# 0: + key=80000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=F72A330011A8B90286CC2E8AD7FDFCB3 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 1: + key=40000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=4C308077925582E9B69F9FA4CA26F69F + encrypted=00000000000000000000000000000000 + +Set 5, vector# 2: + key=20000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=1555BB8B94290FD9A5484D26185B29EF + encrypted=00000000000000000000000000000000 + +Set 5, vector# 3: + key=10000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=A7E63E930341CB4B8C0EA3D288C5C02B + encrypted=00000000000000000000000000000000 + +Set 5, vector# 4: + key=08000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=B55A23987C8FD71B5533E9F7ECC272E6 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 5: + key=04000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=022E16C5BC356AC94752ECF42D64F422 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 6: + key=02000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=375822C49D2397AB096BA1604C6986DD + encrypted=00000000000000000000000000000000 + +Set 5, vector# 7: + key=01000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=158C78618B616B51EDA6842102134738 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 8: + key=00800000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=00244CE44A788A34E160071F61CEAAEA + encrypted=00000000000000000000000000000000 + +Set 5, vector# 9: + key=00400000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=788FBE8520711EDF2DD6D691093E0FA3 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 10: + key=00200000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=AD1A7607705E9B604A278CC6AB56E6D6 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 11: + key=00100000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=5E597C20E3AF5B96DA9B4C60C61DB4C8 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 12: + key=00080000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=911135192C5160FA3E50ED99DCD61C4D + encrypted=00000000000000000000000000000000 + +Set 5, vector# 13: + key=00040000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=A84B570842270C050EED72CF906CC2FA + encrypted=00000000000000000000000000000000 + +Set 5, vector# 14: + key=00020000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=C6C7B246B9DBE3E0BD10ACB9A529C479 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 15: + key=00010000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=4E183D69EAB4685D544D97DA2CE534EC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 16: + key=00008000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=9D3DA70A6ACE75F3839519ADE54A78A0 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 17: + key=00004000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=9A43B2A2A33B9C1CC9FDD02E6E1F5BAC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 18: + key=00002000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=7EC7027B3761EB2A3C9C4A45EDE878B1 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 19: + key=00001000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=EB87DE075BDF494D377F908EDA75F23E + encrypted=00000000000000000000000000000000 + +Set 5, vector# 20: + key=00000800000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=DF19866DC6EC20DC35332C5D2A1D0314 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 21: + key=00000400000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=99C46A1B47B0313DA1F2BFFFF2326FA0 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 22: + key=00000200000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=C827665055CF413569CC467B084B5B13 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 23: + key=00000100000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=712754753FCE7AE3E6244BACC01065BA + encrypted=00000000000000000000000000000000 + +Set 5, vector# 24: + key=00000080000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=0EDB94F6333DF19163746DF1873FF286 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 25: + key=00000040000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=E45BB97A0B317883C13539451CFFD981 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 26: + key=00000020000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=A983921DCCC82EDB7B35378D86118C8E + encrypted=00000000000000000000000000000000 + +Set 5, vector# 27: + key=00000010000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=137D2B2C148278509F6A547CFDA2D077 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 28: + key=00000008000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=C070E6C596AF2344FB47C76BE44E0081 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 29: + key=00000004000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=D7DA341E1AA7C542E5ABDE5E597B8806 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 30: + key=00000002000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=9200B7956616C1A9CA6D3BA38EF2448D + encrypted=00000000000000000000000000000000 + +Set 5, vector# 31: + key=00000001000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=D65C05E499337544A2E508F583F3205F + encrypted=00000000000000000000000000000000 + +Set 5, vector# 32: + key=00000000800000000000000000000000 + cipher=00000000000000000000000000000000 + plain=07D32189C204C2A04233689174F52747 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 33: + key=00000000400000000000000000000000 + cipher=00000000000000000000000000000000 + plain=FF4A16136E538F81FD4CC3B8D5A9F12A + encrypted=00000000000000000000000000000000 + +Set 5, vector# 34: + key=00000000200000000000000000000000 + cipher=00000000000000000000000000000000 + plain=C3B15B31A198A0C8F238C915F2E4743A + encrypted=00000000000000000000000000000000 + +Set 5, vector# 35: + key=00000000100000000000000000000000 + cipher=00000000000000000000000000000000 + plain=4A513433956B6743FB46958B0D4E6144 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 36: + key=00000000080000000000000000000000 + cipher=00000000000000000000000000000000 + plain=8F1C53991C084EDD708F6BA94487EC89 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 37: + key=00000000040000000000000000000000 + cipher=00000000000000000000000000000000 + plain=A6863A262AE4D99A6A68E60E8F321926 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 38: + key=00000000020000000000000000000000 + cipher=00000000000000000000000000000000 + plain=0BC7FC2ACE15ADDF77DC30988A05C17C + encrypted=00000000000000000000000000000000 + +Set 5, vector# 39: + key=00000000010000000000000000000000 + cipher=00000000000000000000000000000000 + plain=3112A9654BC33B30BE349F4544051556 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 40: + key=00000000008000000000000000000000 + cipher=00000000000000000000000000000000 + plain=04651F5F6BB77E46AB840025368D2465 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 41: + key=00000000004000000000000000000000 + cipher=00000000000000000000000000000000 + plain=D99DB3975439BEBCFCC1A7730ED761D8 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 42: + key=00000000002000000000000000000000 + cipher=00000000000000000000000000000000 + plain=18663E62EF4998D6E605AF7C0AEAE291 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 43: + key=00000000001000000000000000000000 + cipher=00000000000000000000000000000000 + plain=8802EF1803280904125EE05C63FDA019 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 44: + key=00000000000800000000000000000000 + cipher=00000000000000000000000000000000 + plain=226A443BC4E69F94854689E7D639F2FF + encrypted=00000000000000000000000000000000 + +Set 5, vector# 45: + key=00000000000400000000000000000000 + cipher=00000000000000000000000000000000 + plain=23C64AC2FFF73CD054BE4F54BA76B991 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 46: + key=00000000000200000000000000000000 + cipher=00000000000000000000000000000000 + plain=1CD9876B5174B9441BD80242D3F7C0F8 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 47: + key=00000000000100000000000000000000 + cipher=00000000000000000000000000000000 + plain=CEE81D92D165221A117FD8CB9D011BB1 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 48: + key=00000000000080000000000000000000 + cipher=00000000000000000000000000000000 + plain=0A8364B57106D9345DFC313DA564D1E2 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 49: + key=00000000000040000000000000000000 + cipher=00000000000000000000000000000000 + plain=1AB8F9926D51A5BC24ED414909F0CBA5 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 50: + key=00000000000020000000000000000000 + cipher=00000000000000000000000000000000 + plain=034401DFC12F16BDACBCE1F5647C1682 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 51: + key=00000000000010000000000000000000 + cipher=00000000000000000000000000000000 + plain=41ABB1F3BCBA4D6A53AF4F91B03B9E18 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 52: + key=00000000000008000000000000000000 + cipher=00000000000000000000000000000000 + plain=B57F5987D273AFB27415997A3EFD8740 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 53: + key=00000000000004000000000000000000 + cipher=00000000000000000000000000000000 + plain=4F9F602FAEF5020D0AC8CAE349BBB7D5 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 54: + key=00000000000002000000000000000000 + cipher=00000000000000000000000000000000 + plain=B0C7868825897B95E42ABAF92DEDC4AA + encrypted=00000000000000000000000000000000 + +Set 5, vector# 55: + key=00000000000001000000000000000000 + cipher=00000000000000000000000000000000 + plain=882081708DFA5E8156D90BFADC6C8200 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 56: + key=00000000000000800000000000000000 + cipher=00000000000000000000000000000000 + plain=916FA6AE675598C92B3756C7D88E7456 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 57: + key=00000000000000400000000000000000 + cipher=00000000000000000000000000000000 + plain=88A8980286033972DB83C13F0128C955 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 58: + key=00000000000000200000000000000000 + cipher=00000000000000000000000000000000 + plain=B9F49BC52BCC3ACB1BF65302C9800B52 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 59: + key=00000000000000100000000000000000 + cipher=00000000000000000000000000000000 + plain=36264DE9103A0D02CDE42BBD1F0028B9 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 60: + key=00000000000000080000000000000000 + cipher=00000000000000000000000000000000 + plain=D47FEFAFA9D2E72E0DD05DF565402AE6 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 61: + key=00000000000000040000000000000000 + cipher=00000000000000000000000000000000 + plain=1EAE78DFBCD7233E27CAF4BE56137846 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 62: + key=00000000000000020000000000000000 + cipher=00000000000000000000000000000000 + plain=2FF6E609AE38F49BC50FB28DAFC53809 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 63: + key=00000000000000010000000000000000 + cipher=00000000000000000000000000000000 + plain=2CD64A8948BAC4160C08C1652DADB12A + encrypted=00000000000000000000000000000000 + +Set 5, vector# 64: + key=00000000000000008000000000000000 + cipher=00000000000000000000000000000000 + plain=E601549E0C7EC22686E34B03DB2ED6F1 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 65: + key=00000000000000004000000000000000 + cipher=00000000000000000000000000000000 + plain=CE78FB2A81CD3EFA8CF8DF286F0E1C97 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 66: + key=00000000000000002000000000000000 + cipher=00000000000000000000000000000000 + plain=C9BB7386CCCAF71F08F218035D30CF66 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 67: + key=00000000000000001000000000000000 + cipher=00000000000000000000000000000000 + plain=747705C2FA19F2E11470BFCF4A5A8933 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 68: + key=00000000000000000800000000000000 + cipher=00000000000000000000000000000000 + plain=F48463664DDC2AE3B61CD9E32F9C1C45 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 69: + key=00000000000000000400000000000000 + cipher=00000000000000000000000000000000 + plain=8DD03371DEB0ADC7B9E8C920999DC44F + encrypted=00000000000000000000000000000000 + +Set 5, vector# 70: + key=00000000000000000200000000000000 + cipher=00000000000000000000000000000000 + plain=8B1274559FB898BFB50780050476EACE + encrypted=00000000000000000000000000000000 + +Set 5, vector# 71: + key=00000000000000000100000000000000 + cipher=00000000000000000000000000000000 + plain=68E1C3A5BB4B90B09FBD6381A05C5FBA + encrypted=00000000000000000000000000000000 + +Set 5, vector# 72: + key=00000000000000000080000000000000 + cipher=00000000000000000000000000000000 + plain=B128264DC3E836E186144843B98D4DFC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 73: + key=00000000000000000040000000000000 + cipher=00000000000000000000000000000000 + plain=F6DE27CC7FC53A00BF874F770A1FE82D + encrypted=00000000000000000000000000000000 + +Set 5, vector# 74: + key=00000000000000000020000000000000 + cipher=00000000000000000000000000000000 + plain=4E420AEEBE70FC3D5FF1869EC16843F9 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 75: + key=00000000000000000010000000000000 + cipher=00000000000000000000000000000000 + plain=92D41E89809FF137D5A4CAAC7988B2D0 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 76: + key=00000000000000000008000000000000 + cipher=00000000000000000000000000000000 + plain=B77F30483C68340DFBB19B2965C4AD09 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 77: + key=00000000000000000004000000000000 + cipher=00000000000000000000000000000000 + plain=74A1874E9F73E922B8FE69A643725AFC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 78: + key=00000000000000000002000000000000 + cipher=00000000000000000000000000000000 + plain=B1D6C21EA4B422EC781448B622F1B2EA + encrypted=00000000000000000000000000000000 + +Set 5, vector# 79: + key=00000000000000000001000000000000 + cipher=00000000000000000000000000000000 + plain=6DA24DF31D0241BFDF132513771015FC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 80: + key=00000000000000000000800000000000 + cipher=00000000000000000000000000000000 + plain=1BD193AFB3D7ACEC0F675A0C640B3122 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 81: + key=00000000000000000000400000000000 + cipher=00000000000000000000000000000000 + plain=35EEB711A3C768CEEA39BB2236361188 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 82: + key=00000000000000000000200000000000 + cipher=00000000000000000000000000000000 + plain=8C781D12A70A087FE4D5C06592FC4631 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 83: + key=00000000000000000000100000000000 + cipher=00000000000000000000000000000000 + plain=FE3DC31C07E23DF7EFE10E121AD68CA1 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 84: + key=00000000000000000000080000000000 + cipher=00000000000000000000000000000000 + plain=85FC9114A677E5F508D8CB08B8846A79 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 85: + key=00000000000000000000040000000000 + cipher=00000000000000000000000000000000 + plain=71B93875C2E6C5A56127AB409F5A1928 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 86: + key=00000000000000000000020000000000 + cipher=00000000000000000000000000000000 + plain=6CBCB5064E9E74F81E6DAEA4176F22EB + encrypted=00000000000000000000000000000000 + +Set 5, vector# 87: + key=00000000000000000000010000000000 + cipher=00000000000000000000000000000000 + plain=5DCCDEE053D337E9BE1B81F6B614DA0B + encrypted=00000000000000000000000000000000 + +Set 5, vector# 88: + key=00000000000000000000008000000000 + cipher=00000000000000000000000000000000 + plain=4ADB016534EAB6AEF81D7DAD857720C5 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 89: + key=00000000000000000000004000000000 + cipher=00000000000000000000000000000000 + plain=71AF90C796F8ADD0D1A1DB5867EEFB7A + encrypted=00000000000000000000000000000000 + +Set 5, vector# 90: + key=00000000000000000000002000000000 + cipher=00000000000000000000000000000000 + plain=8BB6BF22910A5DE8CBB6604B9E3921D3 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 91: + key=00000000000000000000001000000000 + cipher=00000000000000000000000000000000 + plain=15B4E65B677697CCD843D1193FB649DA + encrypted=00000000000000000000000000000000 + +Set 5, vector# 92: + key=00000000000000000000000800000000 + cipher=00000000000000000000000000000000 + plain=96E36B1E519E8787E4387B3204836395 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 93: + key=00000000000000000000000400000000 + cipher=00000000000000000000000000000000 + plain=BF1F8EC152B0D1DB55CAB054A8BCB2BC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 94: + key=00000000000000000000000200000000 + cipher=00000000000000000000000000000000 + plain=B710E78328E1F653C9C373360147D6B0 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 95: + key=00000000000000000000000100000000 + cipher=00000000000000000000000000000000 + plain=66741495AB4F8D94C136C1F3B50CF1AC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 96: + key=00000000000000000000000080000000 + cipher=00000000000000000000000000000000 + plain=1D86E257379A15922C07A320AB5D3D81 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 97: + key=00000000000000000000000040000000 + cipher=00000000000000000000000000000000 + plain=5AD31DEAEEA77A23AF7157B111E631B7 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 98: + key=00000000000000000000000020000000 + cipher=00000000000000000000000000000000 + plain=ABDAA50896D7DDF9CA35F22A7BED1AFF + encrypted=00000000000000000000000000000000 + +Set 5, vector# 99: + key=00000000000000000000000010000000 + cipher=00000000000000000000000000000000 + plain=BFA4D0F8F1EC7A9BCCF039B6E820C4F8 + encrypted=00000000000000000000000000000000 + +Set 5, vector#100: + key=00000000000000000000000008000000 + cipher=00000000000000000000000000000000 + plain=7E174C43F64176C067515C5F5C104A53 + encrypted=00000000000000000000000000000000 + +Set 5, vector#101: + key=00000000000000000000000004000000 + cipher=00000000000000000000000000000000 + plain=E99D0076EFF93D99EEED42A385D8C578 + encrypted=00000000000000000000000000000000 + +Set 5, vector#102: + key=00000000000000000000000002000000 + cipher=00000000000000000000000000000000 + plain=DE29D3A47EDB5109C3F55F0E2A835FBF + encrypted=00000000000000000000000000000000 + +Set 5, vector#103: + key=00000000000000000000000001000000 + cipher=00000000000000000000000000000000 + plain=10399AD381762D58F28D8FD27BBF8CA5 + encrypted=00000000000000000000000000000000 + +Set 5, vector#104: + key=00000000000000000000000000800000 + cipher=00000000000000000000000000000000 + plain=E9F244E1AF67991AC0C1FA405BD5150E + encrypted=00000000000000000000000000000000 + +Set 5, vector#105: + key=00000000000000000000000000400000 + cipher=00000000000000000000000000000000 + plain=649BF5D92E83948F9E5B414F1484CE23 + encrypted=00000000000000000000000000000000 + +Set 5, vector#106: + key=00000000000000000000000000200000 + cipher=00000000000000000000000000000000 + plain=BFE417911845B210D9A7F34031FE59F0 + encrypted=00000000000000000000000000000000 + +Set 5, vector#107: + key=00000000000000000000000000100000 + cipher=00000000000000000000000000000000 + plain=95EC6BF7319352EBF74E9FA09407A590 + encrypted=00000000000000000000000000000000 + +Set 5, vector#108: + key=00000000000000000000000000080000 + cipher=00000000000000000000000000000000 + plain=A200E781537E58028F1DCE035172B37A + encrypted=00000000000000000000000000000000 + +Set 5, vector#109: + key=00000000000000000000000000040000 + cipher=00000000000000000000000000000000 + plain=8A8C62219921CB9CB164595128C0491A + encrypted=00000000000000000000000000000000 + +Set 5, vector#110: + key=00000000000000000000000000020000 + cipher=00000000000000000000000000000000 + plain=4739629C9087032AECF485EA53567B36 + encrypted=00000000000000000000000000000000 + +Set 5, vector#111: + key=00000000000000000000000000010000 + cipher=00000000000000000000000000000000 + plain=D2C8F3981A3926275BD2E2E0E67595F8 + encrypted=00000000000000000000000000000000 + +Set 5, vector#112: + key=00000000000000000000000000008000 + cipher=00000000000000000000000000000000 + plain=BF08FC809F2A753B9A5C733F40E06821 + encrypted=00000000000000000000000000000000 + +Set 5, vector#113: + key=00000000000000000000000000004000 + cipher=00000000000000000000000000000000 + plain=D278C933375A1778A75FFEAB0F603F37 + encrypted=00000000000000000000000000000000 + +Set 5, vector#114: + key=00000000000000000000000000002000 + cipher=00000000000000000000000000000000 + plain=0E25DA88275120077CE78D5CE889A2A5 + encrypted=00000000000000000000000000000000 + +Set 5, vector#115: + key=00000000000000000000000000001000 + cipher=00000000000000000000000000000000 + plain=E422AE67015798BD3F07749619E873D7 + encrypted=00000000000000000000000000000000 + +Set 5, vector#116: + key=00000000000000000000000000000800 + cipher=00000000000000000000000000000000 + plain=60223B71AFBB1643EEDE6E9B7B937ACF + encrypted=00000000000000000000000000000000 + +Set 5, vector#117: + key=00000000000000000000000000000400 + cipher=00000000000000000000000000000000 + plain=7F2FE9D3D780633648443DA7AC7B5FEC + encrypted=00000000000000000000000000000000 + +Set 5, vector#118: + key=00000000000000000000000000000200 + cipher=00000000000000000000000000000000 + plain=B9FF03A284E34B35058F60A8A613E4B5 + encrypted=00000000000000000000000000000000 + +Set 5, vector#119: + key=00000000000000000000000000000100 + cipher=00000000000000000000000000000000 + plain=A290BB98876A64C53F5C6A593B993DE1 + encrypted=00000000000000000000000000000000 + +Set 5, vector#120: + key=00000000000000000000000000000080 + cipher=00000000000000000000000000000000 + plain=F79334BBF9F796A4F363622031969C81 + encrypted=00000000000000000000000000000000 + +Set 5, vector#121: + key=00000000000000000000000000000040 + cipher=00000000000000000000000000000000 + plain=4CE80B36F2452977210C461C2DBA2F72 + encrypted=00000000000000000000000000000000 + +Set 5, vector#122: + key=00000000000000000000000000000020 + cipher=00000000000000000000000000000000 + plain=401430E96F42E971B60A55A74E1669EA + encrypted=00000000000000000000000000000000 + +Set 5, vector#123: + key=00000000000000000000000000000010 + cipher=00000000000000000000000000000000 + plain=6E9E2871F590CE60BA3B58894232D044 + encrypted=00000000000000000000000000000000 + +Set 5, vector#124: + key=00000000000000000000000000000008 + cipher=00000000000000000000000000000000 + plain=B464CF1E25D6B86E83B024FC0C6A9AE6 + encrypted=00000000000000000000000000000000 + +Set 5, vector#125: + key=00000000000000000000000000000004 + cipher=00000000000000000000000000000000 + plain=27049D26AB4325C7DE065FFAACAD3AA1 + encrypted=00000000000000000000000000000000 + +Set 5, vector#126: + key=00000000000000000000000000000002 + cipher=00000000000000000000000000000000 + plain=BC39D4274308CB87029EAB3BA1E04F51 + encrypted=00000000000000000000000000000000 + +Set 5, vector#127: + key=00000000000000000000000000000001 + cipher=00000000000000000000000000000000 + plain=0B7A3ACBF6CC1E861453E9D2EBC54B16 + encrypted=00000000000000000000000000000000 + +Test vectors -- set 6 +===================== + +Set 6, vector# 0: + key=00000000000000000000000000000000 + cipher=80000000000000000000000000000000 + plain=C612324403CE64FBF20F6538B5491FE0 + encrypted=80000000000000000000000000000000 + +Set 6, vector# 1: + key=00000000000000000000000000000000 + cipher=40000000000000000000000000000000 + plain=C094C474665F4E5145DD158C79D394AF + encrypted=40000000000000000000000000000000 + +Set 6, vector# 2: + key=00000000000000000000000000000000 + cipher=20000000000000000000000000000000 + plain=ED1FF61BCC38719EF11F75F55CE5CF7C + encrypted=20000000000000000000000000000000 + +Set 6, vector# 3: + key=00000000000000000000000000000000 + cipher=10000000000000000000000000000000 + plain=51519F74F62C5D584596CB6B19B14E94 + encrypted=10000000000000000000000000000000 + +Set 6, vector# 4: + key=00000000000000000000000000000000 + cipher=08000000000000000000000000000000 + plain=20B40F0C335B665226451BAA29187274 + encrypted=08000000000000000000000000000000 + +Set 6, vector# 5: + key=00000000000000000000000000000000 + cipher=04000000000000000000000000000000 + plain=228B04C090007458D0D8769864824F02 + encrypted=04000000000000000000000000000000 + +Set 6, vector# 6: + key=00000000000000000000000000000000 + cipher=02000000000000000000000000000000 + plain=38B42B2DF422FC71ED8AA2AFCE74C434 + encrypted=02000000000000000000000000000000 + +Set 6, vector# 7: + key=00000000000000000000000000000000 + cipher=01000000000000000000000000000000 + plain=B17CF73C067BAC825F82D1CF09A3EB81 + encrypted=01000000000000000000000000000000 + +Set 6, vector# 8: + key=00000000000000000000000000000000 + cipher=00800000000000000000000000000000 + plain=AA5D6BB4DF1028AFBF239335BB12B69E + encrypted=00800000000000000000000000000000 + +Set 6, vector# 9: + key=00000000000000000000000000000000 + cipher=00400000000000000000000000000000 + plain=068178D13825DDD87C11A5AFC8AEDE68 + encrypted=00400000000000000000000000000000 + +Set 6, vector# 10: + key=00000000000000000000000000000000 + cipher=00200000000000000000000000000000 + plain=69149C906B7270F80D7E35DC107E5C32 + encrypted=00200000000000000000000000000000 + +Set 6, vector# 11: + key=00000000000000000000000000000000 + cipher=00100000000000000000000000000000 + plain=5AB4D37462182FD43815CAB5F8290497 + encrypted=00100000000000000000000000000000 + +Set 6, vector# 12: + key=00000000000000000000000000000000 + cipher=00080000000000000000000000000000 + plain=E8283DA9243C2E2D37054C352A2D56CA + encrypted=00080000000000000000000000000000 + +Set 6, vector# 13: + key=00000000000000000000000000000000 + cipher=00040000000000000000000000000000 + plain=E845895A4E8D0FF87C284F4D8E21DB8C + encrypted=00040000000000000000000000000000 + +Set 6, vector# 14: + key=00000000000000000000000000000000 + cipher=00020000000000000000000000000000 + plain=0F4FF61D50FE60A5E5DBDC541427CD84 + encrypted=00020000000000000000000000000000 + +Set 6, vector# 15: + key=00000000000000000000000000000000 + cipher=00010000000000000000000000000000 + plain=3E7E67FF2E72CBB68350AAF8901E0009 + encrypted=00010000000000000000000000000000 + +Set 6, vector# 16: + key=00000000000000000000000000000000 + cipher=00008000000000000000000000000000 + plain=2EF8C924FA99E2DCEBAF22B1960FF853 + encrypted=00008000000000000000000000000000 + +Set 6, vector# 17: + key=00000000000000000000000000000000 + cipher=00004000000000000000000000000000 + plain=792AD43BB748945CB23FBD1BF362F9D2 + encrypted=00004000000000000000000000000000 + +Set 6, vector# 18: + key=00000000000000000000000000000000 + cipher=00002000000000000000000000000000 + plain=5BA92A89C86EE92E265C3150119D6127 + encrypted=00002000000000000000000000000000 + +Set 6, vector# 19: + key=00000000000000000000000000000000 + cipher=00001000000000000000000000000000 + plain=B74C545B834662064E8A0180FA7F3E35 + encrypted=00001000000000000000000000000000 + +Set 6, vector# 20: + key=00000000000000000000000000000000 + cipher=00000800000000000000000000000000 + plain=E0BB06ECBAC33F615B10EE4577FA8D1C + encrypted=00000800000000000000000000000000 + +Set 6, vector# 21: + key=00000000000000000000000000000000 + cipher=00000400000000000000000000000000 + plain=F8CF02DF048D8DE2F7059DAE784A3643 + encrypted=00000400000000000000000000000000 + +Set 6, vector# 22: + key=00000000000000000000000000000000 + cipher=00000200000000000000000000000000 + plain=85200ACFCEBE49CDF480C66AB5A097E4 + encrypted=00000200000000000000000000000000 + +Set 6, vector# 23: + key=00000000000000000000000000000000 + cipher=00000100000000000000000000000000 + plain=6C3F07031C2B2FE01313172289645655 + encrypted=00000100000000000000000000000000 + +Set 6, vector# 24: + key=00000000000000000000000000000000 + cipher=00000080000000000000000000000000 + plain=F917F5817DEC3D7F44ADCE8A89DF2AB2 + encrypted=00000080000000000000000000000000 + +Set 6, vector# 25: + key=00000000000000000000000000000000 + cipher=00000040000000000000000000000000 + plain=4B1327AFBF6F3A98BBA3C603BCF9EB05 + encrypted=00000040000000000000000000000000 + +Set 6, vector# 26: + key=00000000000000000000000000000000 + cipher=00000020000000000000000000000000 + plain=11F997AB449C2109EA0F397AA7386DD3 + encrypted=00000020000000000000000000000000 + +Set 6, vector# 27: + key=00000000000000000000000000000000 + cipher=00000010000000000000000000000000 + plain=FFBE8724508CB1F818AD98C54DF02819 + encrypted=00000010000000000000000000000000 + +Set 6, vector# 28: + key=00000000000000000000000000000000 + cipher=00000008000000000000000000000000 + plain=9F9B2F68D3F07D6844F471C2EE5C0919 + encrypted=00000008000000000000000000000000 + +Set 6, vector# 29: + key=00000000000000000000000000000000 + cipher=00000004000000000000000000000000 + plain=61CDF1252BD22C03CB9A4ED360947C69 + encrypted=00000004000000000000000000000000 + +Set 6, vector# 30: + key=00000000000000000000000000000000 + cipher=00000002000000000000000000000000 + plain=C350DD38C0B8309A03734C6DF37A7506 + encrypted=00000002000000000000000000000000 + +Set 6, vector# 31: + key=00000000000000000000000000000000 + cipher=00000001000000000000000000000000 + plain=41F0ED2F985732FE9DAB173664DA5BA3 + encrypted=00000001000000000000000000000000 + +Set 6, vector# 32: + key=00000000000000000000000000000000 + cipher=00000000800000000000000000000000 + plain=CCA24BA6AF51AA64CF7DD92B94149B0B + encrypted=00000000800000000000000000000000 + +Set 6, vector# 33: + key=00000000000000000000000000000000 + cipher=00000000400000000000000000000000 + plain=35DD7AF13E59FC9B91DE139B47A90AB6 + encrypted=00000000400000000000000000000000 + +Set 6, vector# 34: + key=00000000000000000000000000000000 + cipher=00000000200000000000000000000000 + plain=BAE6B1731B7CDD6F583F981DD0CAD76B + encrypted=00000000200000000000000000000000 + +Set 6, vector# 35: + key=00000000000000000000000000000000 + cipher=00000000100000000000000000000000 + plain=C629D55A3E2B4D95E9753AD724532980 + encrypted=00000000100000000000000000000000 + +Set 6, vector# 36: + key=00000000000000000000000000000000 + cipher=00000000080000000000000000000000 + plain=61C9679E8492F5DA8BFC1855F9D3577C + encrypted=00000000080000000000000000000000 + +Set 6, vector# 37: + key=00000000000000000000000000000000 + cipher=00000000040000000000000000000000 + plain=3E5D8A62F23B6036D9849F7F6DC1121B + encrypted=00000000040000000000000000000000 + +Set 6, vector# 38: + key=00000000000000000000000000000000 + cipher=00000000020000000000000000000000 + plain=2259362A5DC02D03719F91E2550B3A9A + encrypted=00000000020000000000000000000000 + +Set 6, vector# 39: + key=00000000000000000000000000000000 + cipher=00000000010000000000000000000000 + plain=4512C27E7B4BC3299882C7B24818C40B + encrypted=00000000010000000000000000000000 + +Set 6, vector# 40: + key=00000000000000000000000000000000 + cipher=00000000008000000000000000000000 + plain=D8F27FFBDC0486665703FE5D01CFC7FA + encrypted=00000000008000000000000000000000 + +Set 6, vector# 41: + key=00000000000000000000000000000000 + cipher=00000000004000000000000000000000 + plain=867D58F0627123A7FBDB669C75E531D5 + encrypted=00000000004000000000000000000000 + +Set 6, vector# 42: + key=00000000000000000000000000000000 + cipher=00000000002000000000000000000000 + plain=C91D9CDD2B45C690A3BEB52B7DD17BC7 + encrypted=00000000002000000000000000000000 + +Set 6, vector# 43: + key=00000000000000000000000000000000 + cipher=00000000001000000000000000000000 + plain=B295DFD94895C8142D9B21EE91922979 + encrypted=00000000001000000000000000000000 + +Set 6, vector# 44: + key=00000000000000000000000000000000 + cipher=00000000000800000000000000000000 + plain=B8CB54B7EF3AA0AE305C4FF60DE9F886 + encrypted=00000000000800000000000000000000 + +Set 6, vector# 45: + key=00000000000000000000000000000000 + cipher=00000000000400000000000000000000 + plain=26EFB97C4511F76029A827B53BDE3704 + encrypted=00000000000400000000000000000000 + +Set 6, vector# 46: + key=00000000000000000000000000000000 + cipher=00000000000200000000000000000000 + plain=52C1AC894429DB5D97E12E4C16C0D47F + encrypted=00000000000200000000000000000000 + +Set 6, vector# 47: + key=00000000000000000000000000000000 + cipher=00000000000100000000000000000000 + plain=F807FE08C9E540DF3AD98F2D0AD47A7F + encrypted=00000000000100000000000000000000 + +Set 6, vector# 48: + key=00000000000000000000000000000000 + cipher=00000000000080000000000000000000 + plain=8FA7D8A535CBB9D237BAB94ACDFA2EF2 + encrypted=00000000000080000000000000000000 + +Set 6, vector# 49: + key=00000000000000000000000000000000 + cipher=00000000000040000000000000000000 + plain=5B995E90831BA9CD484DCB8AC2E9DBF0 + encrypted=00000000000040000000000000000000 + +Set 6, vector# 50: + key=00000000000000000000000000000000 + cipher=00000000000020000000000000000000 + plain=23F8BFCF3DF6A9BEC2074B249EE62099 + encrypted=00000000000020000000000000000000 + +Set 6, vector# 51: + key=00000000000000000000000000000000 + cipher=00000000000010000000000000000000 + plain=FCC00BFA3F764B85608593BD60F704A7 + encrypted=00000000000010000000000000000000 + +Set 6, vector# 52: + key=00000000000000000000000000000000 + cipher=00000000000008000000000000000000 + plain=E7E88C961578D3B795C9B8F253580925 + encrypted=00000000000008000000000000000000 + +Set 6, vector# 53: + key=00000000000000000000000000000000 + cipher=00000000000004000000000000000000 + plain=5754EF66D860062F894256926EC6B89F + encrypted=00000000000004000000000000000000 + +Set 6, vector# 54: + key=00000000000000000000000000000000 + cipher=00000000000002000000000000000000 + plain=6ACA0BF9219908934F3966B13F983F3D + encrypted=00000000000002000000000000000000 + +Set 6, vector# 55: + key=00000000000000000000000000000000 + cipher=00000000000001000000000000000000 + plain=99F6B40097B3897D353F360119E228DC + encrypted=00000000000001000000000000000000 + +Set 6, vector# 56: + key=00000000000000000000000000000000 + cipher=00000000000000800000000000000000 + plain=2C32938E435922D8DDF2E36C7449BCE0 + encrypted=00000000000000800000000000000000 + +Set 6, vector# 57: + key=00000000000000000000000000000000 + cipher=00000000000000400000000000000000 + plain=7BC7D719C08C2A60EBD12454B9CEECDA + encrypted=00000000000000400000000000000000 + +Set 6, vector# 58: + key=00000000000000000000000000000000 + cipher=00000000000000200000000000000000 + plain=3D2618496FFFD4C40351737CE0FF7E80 + encrypted=00000000000000200000000000000000 + +Set 6, vector# 59: + key=00000000000000000000000000000000 + cipher=00000000000000100000000000000000 + plain=A933BF8F061354875E1EE47A7FAB3D2A + encrypted=00000000000000100000000000000000 + +Set 6, vector# 60: + key=00000000000000000000000000000000 + cipher=00000000000000080000000000000000 + plain=3E6FBCEE2A7EE662F0A8E25F6021BF8B + encrypted=00000000000000080000000000000000 + +Set 6, vector# 61: + key=00000000000000000000000000000000 + cipher=00000000000000040000000000000000 + plain=11F2FFDDD6181B146866F5901395A4F4 + encrypted=00000000000000040000000000000000 + +Set 6, vector# 62: + key=00000000000000000000000000000000 + cipher=00000000000000020000000000000000 + plain=FA1E364D4603E29FC1DA2A3540D8C5C8 + encrypted=00000000000000020000000000000000 + +Set 6, vector# 63: + key=00000000000000000000000000000000 + cipher=00000000000000010000000000000000 + plain=26AD279BC088D1CBE1CF4C6CC71E3F8B + encrypted=00000000000000010000000000000000 + +Set 6, vector# 64: + key=00000000000000000000000000000000 + cipher=00000000000000008000000000000000 + plain=503B10093CE05009C48EE1F60F570FA6 + encrypted=00000000000000008000000000000000 + +Set 6, vector# 65: + key=00000000000000000000000000000000 + cipher=00000000000000004000000000000000 + plain=72BC16B07F26CE021A827758C361F5A9 + encrypted=00000000000000004000000000000000 + +Set 6, vector# 66: + key=00000000000000000000000000000000 + cipher=00000000000000002000000000000000 + plain=C0E8400AADF8F3B1A59EFFC45D6BCA41 + encrypted=00000000000000002000000000000000 + +Set 6, vector# 67: + key=00000000000000000000000000000000 + cipher=00000000000000001000000000000000 + plain=C0716EE24704B1101423753AE3FD4DA8 + encrypted=00000000000000001000000000000000 + +Set 6, vector# 68: + key=00000000000000000000000000000000 + cipher=00000000000000000800000000000000 + plain=504A89B4944479B5F46A3D940DE00F8C + encrypted=00000000000000000800000000000000 + +Set 6, vector# 69: + key=00000000000000000000000000000000 + cipher=00000000000000000400000000000000 + plain=6D81AD406EE2E25D1C7FD53BE82D50ED + encrypted=00000000000000000400000000000000 + +Set 6, vector# 70: + key=00000000000000000000000000000000 + cipher=00000000000000000200000000000000 + plain=721A5BAD0E21848E0BC3FBE5C3131845 + encrypted=00000000000000000200000000000000 + +Set 6, vector# 71: + key=00000000000000000000000000000000 + cipher=00000000000000000100000000000000 + plain=2CD1F5CC794367FB507C99B863421C6F + encrypted=00000000000000000100000000000000 + +Set 6, vector# 72: + key=00000000000000000000000000000000 + cipher=00000000000000000080000000000000 + plain=8954A224B99641EF53E8F8BBE486D99F + encrypted=00000000000000000080000000000000 + +Set 6, vector# 73: + key=00000000000000000000000000000000 + cipher=00000000000000000040000000000000 + plain=ED75C93CF1AFF8AAB76C8E2EA68E8F75 + encrypted=00000000000000000040000000000000 + +Set 6, vector# 74: + key=00000000000000000000000000000000 + cipher=00000000000000000020000000000000 + plain=A1D6FFC94D96C2C6A36111EC66418F14 + encrypted=00000000000000000020000000000000 + +Set 6, vector# 75: + key=00000000000000000000000000000000 + cipher=00000000000000000010000000000000 + plain=A92F6F272CEECC8E0602CBC0E86CC391 + encrypted=00000000000000000010000000000000 + +Set 6, vector# 76: + key=00000000000000000000000000000000 + cipher=00000000000000000008000000000000 + plain=E5482B0853A72AC66E6756D573621982 + encrypted=00000000000000000008000000000000 + +Set 6, vector# 77: + key=00000000000000000000000000000000 + cipher=00000000000000000004000000000000 + plain=C013B3D2A5B469E3DF3E5B2F0E45FA3B + encrypted=00000000000000000004000000000000 + +Set 6, vector# 78: + key=00000000000000000000000000000000 + cipher=00000000000000000002000000000000 + plain=73B380CDA6F4AFFFB550DDD330DFC726 + encrypted=00000000000000000002000000000000 + +Set 6, vector# 79: + key=00000000000000000000000000000000 + cipher=00000000000000000001000000000000 + plain=8A4D11C018CB381BDEA40012AD021693 + encrypted=00000000000000000001000000000000 + +Set 6, vector# 80: + key=00000000000000000000000000000000 + cipher=00000000000000000000800000000000 + plain=4711135E7B01D1ACE7266FDBAF4A93BC + encrypted=00000000000000000000800000000000 + +Set 6, vector# 81: + key=00000000000000000000000000000000 + cipher=00000000000000000000400000000000 + plain=996E892574B6D5FAA88AFA87AC078D4F + encrypted=00000000000000000000400000000000 + +Set 6, vector# 82: + key=00000000000000000000000000000000 + cipher=00000000000000000000200000000000 + plain=2FA7B2DD167DB865CAED915896B9805E + encrypted=00000000000000000000200000000000 + +Set 6, vector# 83: + key=00000000000000000000000000000000 + cipher=00000000000000000000100000000000 + plain=220EC5066E3A8D07C28C423BEDCED89C + encrypted=00000000000000000000100000000000 + +Set 6, vector# 84: + key=00000000000000000000000000000000 + cipher=00000000000000000000080000000000 + plain=F9F21B82117DF676278B085B19C0AB38 + encrypted=00000000000000000000080000000000 + +Set 6, vector# 85: + key=00000000000000000000000000000000 + cipher=00000000000000000000040000000000 + plain=7DF3B3C358C69E7C46892138F1C5A2BF + encrypted=00000000000000000000040000000000 + +Set 6, vector# 86: + key=00000000000000000000000000000000 + cipher=00000000000000000000020000000000 + plain=9BD2E7E3D826E60D675B1E57953B5819 + encrypted=00000000000000000000020000000000 + +Set 6, vector# 87: + key=00000000000000000000000000000000 + cipher=00000000000000000000010000000000 + plain=5D27A565F961DA46B6A285BED4CF9DB8 + encrypted=00000000000000000000010000000000 + +Set 6, vector# 88: + key=00000000000000000000000000000000 + cipher=00000000000000000000008000000000 + plain=87AE121E0D5783E042D07E89B637B8AC + encrypted=00000000000000000000008000000000 + +Set 6, vector# 89: + key=00000000000000000000000000000000 + cipher=00000000000000000000004000000000 + plain=D7C5ED1E1150F89E2E1B98905A160B14 + encrypted=00000000000000000000004000000000 + +Set 6, vector# 90: + key=00000000000000000000000000000000 + cipher=00000000000000000000002000000000 + plain=3F8ACD93589110D3B9E60D5B3633B936 + encrypted=00000000000000000000002000000000 + +Set 6, vector# 91: + key=00000000000000000000000000000000 + cipher=00000000000000000000001000000000 + plain=50C9F9B49C058AA97B7A7B20EC288855 + encrypted=00000000000000000000001000000000 + +Set 6, vector# 92: + key=00000000000000000000000000000000 + cipher=00000000000000000000000800000000 + plain=0B46C4C9331B03FC4E276E817BD918E0 + encrypted=00000000000000000000000800000000 + +Set 6, vector# 93: + key=00000000000000000000000000000000 + cipher=00000000000000000000000400000000 + plain=60FC999AE0C33680C76060737598915F + encrypted=00000000000000000000000400000000 + +Set 6, vector# 94: + key=00000000000000000000000000000000 + cipher=00000000000000000000000200000000 + plain=C5662D403C3E1FDAAAAC99366EBC1EA8 + encrypted=00000000000000000000000200000000 + +Set 6, vector# 95: + key=00000000000000000000000000000000 + cipher=00000000000000000000000100000000 + plain=ECB38B453BD3A95125B0B9EC0E36A7D7 + encrypted=00000000000000000000000100000000 + +Set 6, vector# 96: + key=00000000000000000000000000000000 + cipher=00000000000000000000000080000000 + plain=9EA592DE5AC509A2F4D3C302217DD961 + encrypted=00000000000000000000000080000000 + +Set 6, vector# 97: + key=00000000000000000000000000000000 + cipher=00000000000000000000000040000000 + plain=CEF9C13D37F968119BB98AA73CC2CC19 + encrypted=00000000000000000000000040000000 + +Set 6, vector# 98: + key=00000000000000000000000000000000 + cipher=00000000000000000000000020000000 + plain=2C0628231C58F80F0190D23C2B7A0CCC + encrypted=00000000000000000000000020000000 + +Set 6, vector# 99: + key=00000000000000000000000000000000 + cipher=00000000000000000000000010000000 + plain=6C690DB00223DECADAAA90FA2EEC9989 + encrypted=00000000000000000000000010000000 + +Set 6, vector#100: + key=00000000000000000000000000000000 + cipher=00000000000000000000000008000000 + plain=024FB94255E978059A7BFFC5C80AE5B0 + encrypted=00000000000000000000000008000000 + +Set 6, vector#101: + key=00000000000000000000000000000000 + cipher=00000000000000000000000004000000 + plain=EFCD0E8BEFDB3A2A570A1EA414F79B93 + encrypted=00000000000000000000000004000000 + +Set 6, vector#102: + key=00000000000000000000000000000000 + cipher=00000000000000000000000002000000 + plain=03C5B5E09027596DD3625156D7D048A0 + encrypted=00000000000000000000000002000000 + +Set 6, vector#103: + key=00000000000000000000000000000000 + cipher=00000000000000000000000001000000 + plain=8D8F360B9A8396E20A7B915864ACA7FB + encrypted=00000000000000000000000001000000 + +Set 6, vector#104: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000800000 + plain=2DFEF26F5414D619D4447A273D549037 + encrypted=00000000000000000000000000800000 + +Set 6, vector#105: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000400000 + plain=E31F35AE7A3766C0062ED802723CC8E3 + encrypted=00000000000000000000000000400000 + +Set 6, vector#106: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000200000 + plain=B25CDF5B68D5EB1FBE7ECD33D17ACCBB + encrypted=00000000000000000000000000200000 + +Set 6, vector#107: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000100000 + plain=EF07B6EED0712E6A2DE35348509019A1 + encrypted=00000000000000000000000000100000 + +Set 6, vector#108: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000080000 + plain=42BAAC5F893F353B50F34233717C8BC3 + encrypted=00000000000000000000000000080000 + +Set 6, vector#109: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000040000 + plain=82C46B029FE44E60B1400292C31CD8B8 + encrypted=00000000000000000000000000040000 + +Set 6, vector#110: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000020000 + plain=D7720AA3DF9C3A78B6731865791754FF + encrypted=00000000000000000000000000020000 + +Set 6, vector#111: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000010000 + plain=64DE5D1BE2D8E962EC2828C591211D73 + encrypted=00000000000000000000000000010000 + +Set 6, vector#112: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000008000 + plain=CA63FB5BC4B4EB706236B4497FCBAEC1 + encrypted=00000000000000000000000000008000 + +Set 6, vector#113: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000004000 + plain=0F3DF2DC0D172B1E51E25F1E80E72F5C + encrypted=00000000000000000000000000004000 + +Set 6, vector#114: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000002000 + plain=BE14C7EE9059A5566C6510575C9E4C0A + encrypted=00000000000000000000000000002000 + +Set 6, vector#115: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000001000 + plain=C875F78BEB3F1A8FFCD61078A3D0E3F4 + encrypted=00000000000000000000000000001000 + +Set 6, vector#116: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000800 + plain=1CAA0EA44B52A45B4D42972A91D5ACBF + encrypted=00000000000000000000000000000800 + +Set 6, vector#117: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000400 + plain=04D6AF4F8491F89913C535E92911C0A9 + encrypted=00000000000000000000000000000400 + +Set 6, vector#118: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000200 + plain=9950F49340AF07CA127D82A39EBAE368 + encrypted=00000000000000000000000000000200 + +Set 6, vector#119: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000100 + plain=0FBA601D5C1874A117666AA3C632BAB9 + encrypted=00000000000000000000000000000100 + +Set 6, vector#120: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000080 + plain=4F3A51DA5551E1B54E187B6B9A48DAAA + encrypted=00000000000000000000000000000080 + +Set 6, vector#121: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000040 + plain=DEEB8A540647670C077FCAF870EA395B + encrypted=00000000000000000000000000000040 + +Set 6, vector#122: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000020 + plain=D74FEFA1D94646EAC2A35918D137212B + encrypted=00000000000000000000000000000020 + +Set 6, vector#123: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000010 + plain=20D23437DE183396A0B61D70F7AF0605 + encrypted=00000000000000000000000000000010 + +Set 6, vector#124: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000008 + plain=628062A5E7BCB0D8AEADB87D3496C927 + encrypted=00000000000000000000000000000008 + +Set 6, vector#125: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000004 + plain=2DDB6D0841F4A0880B57CD6D5929EF76 + encrypted=00000000000000000000000000000004 + +Set 6, vector#126: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000002 + plain=E61D432EC4AD4F7EDB395AB4CFE444D4 + encrypted=00000000000000000000000000000002 + +Set 6, vector#127: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000001 + plain=3576AD3D2120D6C39F3A5CA5A71A6D58 + encrypted=00000000000000000000000000000001 + +Test vectors -- set 7 +===================== + +Set 7, vector# 0: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=792AF61B301A9C3BDAEF0EF25689435B + encrypted=00000000000000000000000000000000 + +Set 7, vector# 1: + key=01010101010101010101010101010101 + cipher=01010101010101010101010101010101 + plain=4CE0D6CC5A58FC069B05B6415F392B8C + encrypted=01010101010101010101010101010101 + +Set 7, vector# 2: + key=02020202020202020202020202020202 + cipher=02020202020202020202020202020202 + plain=E8225F055CC56532B08619240FE9D0FC + encrypted=02020202020202020202020202020202 + +Set 7, vector# 3: + key=03030303030303030303030303030303 + cipher=03030303030303030303030303030303 + plain=0970B2038C03149F3A0F2DF22EEA9993 + encrypted=03030303030303030303030303030303 + +Set 7, vector# 4: + key=04040404040404040404040404040404 + cipher=04040404040404040404040404040404 + plain=D503AD72A0473A18BE9B3ECFF358CBB6 + encrypted=04040404040404040404040404040404 + +Set 7, vector# 5: + key=05050505050505050505050505050505 + cipher=05050505050505050505050505050505 + plain=98B2705870F39D8DA7C248683AEB252D + encrypted=05050505050505050505050505050505 + +Set 7, vector# 6: + key=06060606060606060606060606060606 + cipher=06060606060606060606060606060606 + plain=D79E1FC49636E863CB6EB202FDDB3562 + encrypted=06060606060606060606060606060606 + +Set 7, vector# 7: + key=07070707070707070707070707070707 + cipher=07070707070707070707070707070707 + plain=181ACB4A0F978A4C1720CFB22040A676 + encrypted=07070707070707070707070707070707 + +Set 7, vector# 8: + key=08080808080808080808080808080808 + cipher=08080808080808080808080808080808 + plain=0E5F3C6F3E7ABA3CED96356E8FBD3447 + encrypted=08080808080808080808080808080808 + +Set 7, vector# 9: + key=09090909090909090909090909090909 + cipher=09090909090909090909090909090909 + plain=7931D915671A55E6A4E307331EB1A354 + encrypted=09090909090909090909090909090909 + +Set 7, vector# 10: + key=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + cipher=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + plain=4991537F1225FC6F729C3215BFE207E3 + encrypted=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + +Set 7, vector# 11: + key=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + cipher=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + plain=5446455FEF353E4A8A3BB6FA9B4A569E + encrypted=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + +Set 7, vector# 12: + key=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + cipher=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + plain=F4186AD1160038CEB18DF8BD7BDA2143 + encrypted=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + +Set 7, vector# 13: + key=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + cipher=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + plain=8F00C77105082D62A3B27502E8BFB7A4 + encrypted=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + +Set 7, vector# 14: + key=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + cipher=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + plain=F76F72DC0BDB252AA571A36E6FFFD3E0 + encrypted=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + +Set 7, vector# 15: + key=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + cipher=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + plain=6FA9C9A148BCC2EE999E75EBC95E6355 + encrypted=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + +Set 7, vector# 16: + key=10101010101010101010101010101010 + cipher=10101010101010101010101010101010 + plain=15D092DE680FF321538E5A90E2A2B053 + encrypted=10101010101010101010101010101010 + +Set 7, vector# 17: + key=11111111111111111111111111111111 + cipher=11111111111111111111111111111111 + plain=9BD185280710DBFBDE97329E1F4BE0FE + encrypted=11111111111111111111111111111111 + +Set 7, vector# 18: + key=12121212121212121212121212121212 + cipher=12121212121212121212121212121212 + plain=44AC842C8A1E499091998BE0D9B0DEAD + encrypted=12121212121212121212121212121212 + +Set 7, vector# 19: + key=13131313131313131313131313131313 + cipher=13131313131313131313131313131313 + plain=401D54BC58B4435691CD2305CBF37865 + encrypted=13131313131313131313131313131313 + +Set 7, vector# 20: + key=14141414141414141414141414141414 + cipher=14141414141414141414141414141414 + plain=5AB325C24989CE9BA802FE54DC06648F + encrypted=14141414141414141414141414141414 + +Set 7, vector# 21: + key=15151515151515151515151515151515 + cipher=15151515151515151515151515151515 + plain=0EE1944696444DA7E0F6A8287D572D6D + encrypted=15151515151515151515151515151515 + +Set 7, vector# 22: + key=16161616161616161616161616161616 + cipher=16161616161616161616161616161616 + plain=FD9F6F90D4A9091CC5EE37E8CC52E03A + encrypted=16161616161616161616161616161616 + +Set 7, vector# 23: + key=17171717171717171717171717171717 + cipher=17171717171717171717171717171717 + plain=FC32E63B2756CA9542E9E8767C80DEF1 + encrypted=17171717171717171717171717171717 + +Set 7, vector# 24: + key=18181818181818181818181818181818 + cipher=18181818181818181818181818181818 + plain=168FFCAB7820313F83531D5F5CE6E024 + encrypted=18181818181818181818181818181818 + +Set 7, vector# 25: + key=19191919191919191919191919191919 + cipher=19191919191919191919191919191919 + plain=43CE2089994C78E21254C2456EE7E6FC + encrypted=19191919191919191919191919191919 + +Set 7, vector# 26: + key=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + cipher=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + plain=EF47AF48B1FDB497400C55B59ED2B2B7 + encrypted=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + +Set 7, vector# 27: + key=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + cipher=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + plain=5E76FC912C992FC5475B24B515CD599A + encrypted=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + +Set 7, vector# 28: + key=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + cipher=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + plain=61396C93637434B8FC6559A95B643F2C + encrypted=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + +Set 7, vector# 29: + key=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + cipher=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + plain=DCD1865ABA06B141C1746E79CA3B347B + encrypted=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + +Set 7, vector# 30: + key=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + cipher=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + plain=B490BC8A2368FA3C051FCD23F4B83C0B + encrypted=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + +Set 7, vector# 31: + key=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + cipher=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + plain=B6910C25955FC663E19323A0F477EBE0 + encrypted=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + +Set 7, vector# 32: + key=20202020202020202020202020202020 + cipher=20202020202020202020202020202020 + plain=4A85E3413A028AD740FFF4B6E5970DD6 + encrypted=20202020202020202020202020202020 + +Set 7, vector# 33: + key=21212121212121212121212121212121 + cipher=21212121212121212121212121212121 + plain=4DBD2DB7D26C798B1C64DA442B6FA601 + encrypted=21212121212121212121212121212121 + +Set 7, vector# 34: + key=22222222222222222222222222222222 + cipher=22222222222222222222222222222222 + plain=19EF63BD0184DC63332D284DE2946962 + encrypted=22222222222222222222222222222222 + +Set 7, vector# 35: + key=23232323232323232323232323232323 + cipher=23232323232323232323232323232323 + plain=72CB84F27F631A1408C63D6BC6087851 + encrypted=23232323232323232323232323232323 + +Set 7, vector# 36: + key=24242424242424242424242424242424 + cipher=24242424242424242424242424242424 + plain=A6BF64D4E6C2082A177D0DCE4DFA92E2 + encrypted=24242424242424242424242424242424 + +Set 7, vector# 37: + key=25252525252525252525252525252525 + cipher=25252525252525252525252525252525 + plain=0222332F7BD61ADBCCFA5BF150A6F953 + encrypted=25252525252525252525252525252525 + +Set 7, vector# 38: + key=26262626262626262626262626262626 + cipher=26262626262626262626262626262626 + plain=53F37C309F1F1E2560E4586D2C0D722E + encrypted=26262626262626262626262626262626 + +Set 7, vector# 39: + key=27272727272727272727272727272727 + cipher=27272727272727272727272727272727 + plain=EF17FCC1041557E1D47A293602850C69 + encrypted=27272727272727272727272727272727 + +Set 7, vector# 40: + key=28282828282828282828282828282828 + cipher=28282828282828282828282828282828 + plain=6F456F01EF8B574EF7929B5F86ED70DF + encrypted=28282828282828282828282828282828 + +Set 7, vector# 41: + key=29292929292929292929292929292929 + cipher=29292929292929292929292929292929 + plain=20902DECC22CE5BAE0F3A618E83FEC9C + encrypted=29292929292929292929292929292929 + +Set 7, vector# 42: + key=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + cipher=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + plain=154E1A413BE14C65721A3498088AB3D8 + encrypted=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + +Set 7, vector# 43: + key=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + cipher=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + plain=703EEB6251462813FDA490741C2CCDA8 + encrypted=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + +Set 7, vector# 44: + key=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + cipher=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + plain=22CCA3709A682477D728C0D81F0DA726 + encrypted=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + +Set 7, vector# 45: + key=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + cipher=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + plain=8BF5A44967BFCF63B3EBB58FD002BBE4 + encrypted=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + +Set 7, vector# 46: + key=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + cipher=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + plain=9C76557019198975331471D8E9DE3970 + encrypted=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + +Set 7, vector# 47: + key=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + cipher=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + plain=1C4F1F4FDC3DC58E2BADBFED81AC2BCC + encrypted=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + +Set 7, vector# 48: + key=30303030303030303030303030303030 + cipher=30303030303030303030303030303030 + plain=2875E441ED6EE9E132FAE11DE92E764C + encrypted=30303030303030303030303030303030 + +Set 7, vector# 49: + key=31313131313131313131313131313131 + cipher=31313131313131313131313131313131 + plain=ADA431281B1E158CD50177A2EA5E5F74 + encrypted=31313131313131313131313131313131 + +Set 7, vector# 50: + key=32323232323232323232323232323232 + cipher=32323232323232323232323232323232 + plain=7774E6F4F186AEF3EC254D6E80FAC42B + encrypted=32323232323232323232323232323232 + +Set 7, vector# 51: + key=33333333333333333333333333333333 + cipher=33333333333333333333333333333333 + plain=CB20161C8E0006E98E71CAD9ECF36325 + encrypted=33333333333333333333333333333333 + +Set 7, vector# 52: + key=34343434343434343434343434343434 + cipher=34343434343434343434343434343434 + plain=B1D2750D27C7DD8F1D32FDF02CBDCF32 + encrypted=34343434343434343434343434343434 + +Set 7, vector# 53: + key=35353535353535353535353535353535 + cipher=35353535353535353535353535353535 + plain=A12BC24B5E9728DA4702C2F058F61046 + encrypted=35353535353535353535353535353535 + +Set 7, vector# 54: + key=36363636363636363636363636363636 + cipher=36363636363636363636363636363636 + plain=1CD0D4D8A82D5C83426DFEC7C471939F + encrypted=36363636363636363636363636363636 + +Set 7, vector# 55: + key=37373737373737373737373737373737 + cipher=37373737373737373737373737373737 + plain=CAE39A45BA51B4030A41C462F2240BD6 + encrypted=37373737373737373737373737373737 + +Set 7, vector# 56: + key=38383838383838383838383838383838 + cipher=38383838383838383838383838383838 + plain=D18FF8D95132303369F5E653FB0A58EB + encrypted=38383838383838383838383838383838 + +Set 7, vector# 57: + key=39393939393939393939393939393939 + cipher=39393939393939393939393939393939 + plain=2BF44213E93718372E5593FCFBB2A2C9 + encrypted=39393939393939393939393939393939 + +Set 7, vector# 58: + key=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + cipher=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + plain=FE2E46F4112889E16C94F9245D6B6A79 + encrypted=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + +Set 7, vector# 59: + key=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + cipher=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + plain=E80FA16A17CF733D73BBED5EC2B27C75 + encrypted=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + +Set 7, vector# 60: + key=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + cipher=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + plain=E7042168E904CB8A7BD1E1D403628DF7 + encrypted=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + +Set 7, vector# 61: + key=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + cipher=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + plain=98133E41269DC72312DBE90EE4B963A2 + encrypted=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + +Set 7, vector# 62: + key=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + cipher=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + plain=A80D82DBB894B96162826455C27CE2E0 + encrypted=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + +Set 7, vector# 63: + key=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + cipher=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + plain=507EF8740F96C4EB2FDD7698CFCBDC87 + encrypted=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + +Set 7, vector# 64: + key=40404040404040404040404040404040 + cipher=40404040404040404040404040404040 + plain=5B00BDD8752866216D6CEAAD3B6BC251 + encrypted=40404040404040404040404040404040 + +Set 7, vector# 65: + key=41414141414141414141414141414141 + cipher=41414141414141414141414141414141 + plain=7C4EEB9C9FF6AC47899EC295692B2695 + encrypted=41414141414141414141414141414141 + +Set 7, vector# 66: + key=42424242424242424242424242424242 + cipher=42424242424242424242424242424242 + plain=3DF78767E7849B39D2D7667DE913D5E1 + encrypted=42424242424242424242424242424242 + +Set 7, vector# 67: + key=43434343434343434343434343434343 + cipher=43434343434343434343434343434343 + plain=7DCC009F62784FDD866C13D61D10CA30 + encrypted=43434343434343434343434343434343 + +Set 7, vector# 68: + key=44444444444444444444444444444444 + cipher=44444444444444444444444444444444 + plain=19FA21E71920AC3BB4E6B6A5C66AE573 + encrypted=44444444444444444444444444444444 + +Set 7, vector# 69: + key=45454545454545454545454545454545 + cipher=45454545454545454545454545454545 + plain=EB1484975323440E2A05F4B0995330E0 + encrypted=45454545454545454545454545454545 + +Set 7, vector# 70: + key=46464646464646464646464646464646 + cipher=46464646464646464646464646464646 + plain=3978D717EDFE4305A4B2FB025E508D36 + encrypted=46464646464646464646464646464646 + +Set 7, vector# 71: + key=47474747474747474747474747474747 + cipher=47474747474747474747474747474747 + plain=92EAAEB9EF9048697EEC8F360173CBF2 + encrypted=47474747474747474747474747474747 + +Set 7, vector# 72: + key=48484848484848484848484848484848 + cipher=48484848484848484848484848484848 + plain=E855BCC4FB9BDA3336E9A97217565514 + encrypted=48484848484848484848484848484848 + +Set 7, vector# 73: + key=49494949494949494949494949494949 + cipher=49494949494949494949494949494949 + plain=F0702828BB1444B218A1A6E14983E2BE + encrypted=49494949494949494949494949494949 + +Set 7, vector# 74: + key=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + cipher=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + plain=7B37117247D52BE22AC6F301B2A4F1D8 + encrypted=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + +Set 7, vector# 75: + key=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + cipher=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + plain=BC63B55152D2F4F81622966B9A89806F + encrypted=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + +Set 7, vector# 76: + key=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + cipher=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + plain=F8AD96CB4571BBFCBC0A648BAAAB86BE + encrypted=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + +Set 7, vector# 77: + key=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + cipher=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + plain=166C275A31373FF773DB2A399FC08D95 + encrypted=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + +Set 7, vector# 78: + key=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + cipher=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + plain=3E1A474CD8702B5F71DD5D4A2C5C6BD7 + encrypted=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + +Set 7, vector# 79: + key=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + cipher=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + plain=81E9AFD046589ED45D91A739FCDE146D + encrypted=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + +Set 7, vector# 80: + key=50505050505050505050505050505050 + cipher=50505050505050505050505050505050 + plain=964FC9FFD82C4656744AB225C9E4EF1D + encrypted=50505050505050505050505050505050 + +Set 7, vector# 81: + key=51515151515151515151515151515151 + cipher=51515151515151515151515151515151 + plain=A2E773CFFD86D63B27538548F609DFBA + encrypted=51515151515151515151515151515151 + +Set 7, vector# 82: + key=52525252525252525252525252525252 + cipher=52525252525252525252525252525252 + plain=15EB16582241646311BF107E85FDB9E8 + encrypted=52525252525252525252525252525252 + +Set 7, vector# 83: + key=53535353535353535353535353535353 + cipher=53535353535353535353535353535353 + plain=9EBFB8391F4784231A6D393904F1611D + encrypted=53535353535353535353535353535353 + +Set 7, vector# 84: + key=54545454545454545454545454545454 + cipher=54545454545454545454545454545454 + plain=2864C8D5E28614EECD913D809691B4FB + encrypted=54545454545454545454545454545454 + +Set 7, vector# 85: + key=55555555555555555555555555555555 + cipher=55555555555555555555555555555555 + plain=DBB4BE7335C5A9851A295F5CB3453B36 + encrypted=55555555555555555555555555555555 + +Set 7, vector# 86: + key=56565656565656565656565656565656 + cipher=56565656565656565656565656565656 + plain=E7620394A9E9CFE92128A275699EC1EF + encrypted=56565656565656565656565656565656 + +Set 7, vector# 87: + key=57575757575757575757575757575757 + cipher=57575757575757575757575757575757 + plain=EA8D23A23399D7D71737530C84668DAE + encrypted=57575757575757575757575757575757 + +Set 7, vector# 88: + key=58585858585858585858585858585858 + cipher=58585858585858585858585858585858 + plain=B63C276C670A63461E9BE94A5D2862DE + encrypted=58585858585858585858585858585858 + +Set 7, vector# 89: + key=59595959595959595959595959595959 + cipher=59595959595959595959595959595959 + plain=37A04035ED1DD93786125C57F520C005 + encrypted=59595959595959595959595959595959 + +Set 7, vector# 90: + key=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + cipher=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + plain=4415287604354FE1DF6A73137F2ED2E1 + encrypted=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + +Set 7, vector# 91: + key=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + cipher=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + plain=E1CFACA2502BFDD52855E403110A71B0 + encrypted=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + +Set 7, vector# 92: + key=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + cipher=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + plain=0701FCB5D75AFBA74FAF9EA20A6C19BF + encrypted=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + +Set 7, vector# 93: + key=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + cipher=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + plain=EF51BCEDB4138849778B798E3D26CE83 + encrypted=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + +Set 7, vector# 94: + key=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + cipher=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + plain=5C50474D8E71625ABB775F9B87B61CF5 + encrypted=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + +Set 7, vector# 95: + key=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + cipher=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + plain=A0CDDF7733BE416CD5448698C0F6B8D3 + encrypted=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + +Set 7, vector# 96: + key=60606060606060606060606060606060 + cipher=60606060606060606060606060606060 + plain=39F2025513C6227CF0E441C5853738FF + encrypted=60606060606060606060606060606060 + +Set 7, vector# 97: + key=61616161616161616161616161616161 + cipher=61616161616161616161616161616161 + plain=1CCB6E4376E66597E77DE1DC60CB1A2B + encrypted=61616161616161616161616161616161 + +Set 7, vector# 98: + key=62626262626262626262626262626262 + cipher=62626262626262626262626262626262 + plain=650D4F929ECC1BBA53E77B10F81DA321 + encrypted=62626262626262626262626262626262 + +Set 7, vector# 99: + key=63636363636363636363636363636363 + cipher=63636363636363636363636363636363 + plain=2060BE5E54F8B35020C7484E284A0DD3 + encrypted=63636363636363636363636363636363 + +Set 7, vector#100: + key=64646464646464646464646464646464 + cipher=64646464646464646464646464646464 + plain=A9422C6E06B2155BF8237178BAAA83F9 + encrypted=64646464646464646464646464646464 + +Set 7, vector#101: + key=65656565656565656565656565656565 + cipher=65656565656565656565656565656565 + plain=B75F65C66A5363AA32404CA88F05F3A6 + encrypted=65656565656565656565656565656565 + +Set 7, vector#102: + key=66666666666666666666666666666666 + cipher=66666666666666666666666666666666 + plain=4350F5E0991B0604DBCE0A0979AA316A + encrypted=66666666666666666666666666666666 + +Set 7, vector#103: + key=67676767676767676767676767676767 + cipher=67676767676767676767676767676767 + plain=4EBD29AC7E5CCC1B4D6D2C8F6350F644 + encrypted=67676767676767676767676767676767 + +Set 7, vector#104: + key=68686868686868686868686868686868 + cipher=68686868686868686868686868686868 + plain=E782F468D1BAFB12A21E8D58A3EAD17D + encrypted=68686868686868686868686868686868 + +Set 7, vector#105: + key=69696969696969696969696969696969 + cipher=69696969696969696969696969696969 + plain=E8B3C7C472F849DB34A2CBAF2478D0EE + encrypted=69696969696969696969696969696969 + +Set 7, vector#106: + key=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + cipher=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + plain=1DE5AB22DCFDD5750F404368F095F5C6 + encrypted=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + +Set 7, vector#107: + key=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + cipher=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + plain=776710F5F1AA6F7D53E5A4209F6A8A99 + encrypted=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + +Set 7, vector#108: + key=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + cipher=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + plain=C4125E05F44E8DEABBBAB97492B8C1AE + encrypted=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + +Set 7, vector#109: + key=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + cipher=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + plain=2C4867CD0009BDFCC461247FF2ABDAEA + encrypted=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + +Set 7, vector#110: + key=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + cipher=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + plain=2A9C9B4F7BF34A4E42E50C488121F4C3 + encrypted=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + +Set 7, vector#111: + key=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + cipher=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + plain=CEEE8E830D36910AC5410ADE25B41336 + encrypted=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + +Set 7, vector#112: + key=70707070707070707070707070707070 + cipher=70707070707070707070707070707070 + plain=D289D624771440D3A43BCEDC4201AB4D + encrypted=70707070707070707070707070707070 + +Set 7, vector#113: + key=71717171717171717171717171717171 + cipher=71717171717171717171717171717171 + plain=DC78CED4BAB646E4B7E2324FD041D909 + encrypted=71717171717171717171717171717171 + +Set 7, vector#114: + key=72727272727272727272727272727272 + cipher=72727272727272727272727272727272 + plain=633B07380E2DE20D2A328102468E58DF + encrypted=72727272727272727272727272727272 + +Set 7, vector#115: + key=73737373737373737373737373737373 + cipher=73737373737373737373737373737373 + plain=C40A02F6F7B08C7EBCBADC53C11D0DD7 + encrypted=73737373737373737373737373737373 + +Set 7, vector#116: + key=74747474747474747474747474747474 + cipher=74747474747474747474747474747474 + plain=549BEB74D1AA379C868509564408D7B0 + encrypted=74747474747474747474747474747474 + +Set 7, vector#117: + key=75757575757575757575757575757575 + cipher=75757575757575757575757575757575 + plain=599127E3F687ADEF90E1BB53075FF53B + encrypted=75757575757575757575757575757575 + +Set 7, vector#118: + key=76767676767676767676767676767676 + cipher=76767676767676767676767676767676 + plain=B7E3756469885E44D87E907EF86BB346 + encrypted=76767676767676767676767676767676 + +Set 7, vector#119: + key=77777777777777777777777777777777 + cipher=77777777777777777777777777777777 + plain=FDB40EA315D6D862E84AA73FFACDA3C1 + encrypted=77777777777777777777777777777777 + +Set 7, vector#120: + key=78787878787878787878787878787878 + cipher=78787878787878787878787878787878 + plain=5D75E8132FC001D619111449B3474B78 + encrypted=78787878787878787878787878787878 + +Set 7, vector#121: + key=79797979797979797979797979797979 + cipher=79797979797979797979797979797979 + plain=2476081B97AF1020D23390506F467E68 + encrypted=79797979797979797979797979797979 + +Set 7, vector#122: + key=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + cipher=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + plain=4056A9D697891FE906AFB4631F08C129 + encrypted=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + +Set 7, vector#123: + key=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + cipher=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + plain=54BFF81ED034C6626D1E655D00EACF7C + encrypted=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + +Set 7, vector#124: + key=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + cipher=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + plain=7A40865A2238E28878448CB954BBE67E + encrypted=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + +Set 7, vector#125: + key=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + cipher=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + plain=2FB1A227CA9D028C8273BEB558D68C61 + encrypted=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + +Set 7, vector#126: + key=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + cipher=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + plain=4EACA28C79E7F343C1C4BEC5DED0A8AC + encrypted=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + +Set 7, vector#127: + key=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + cipher=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + plain=C94C72A937B3EA3468A605A1F839590C + encrypted=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + +Set 7, vector#128: + key=80808080808080808080808080808080 + cipher=80808080808080808080808080808080 + plain=F02D73533407CB12D54F1F9986918F1B + encrypted=80808080808080808080808080808080 + +Set 7, vector#129: + key=81818181818181818181818181818181 + cipher=81818181818181818181818181818181 + plain=06BCE0C9F5B9F6FFF3B8632C00DA0D56 + encrypted=81818181818181818181818181818181 + +Set 7, vector#130: + key=82828282828282828282828282828282 + cipher=82828282828282828282828282828282 + plain=864D0A36C0765B8A4D3BCF245C418625 + encrypted=82828282828282828282828282828282 + +Set 7, vector#131: + key=83838383838383838383838383838383 + cipher=83838383838383838383838383838383 + plain=73D6DD5D3DDF518B7D39F4086EEAF147 + encrypted=83838383838383838383838383838383 + +Set 7, vector#132: + key=84848484848484848484848484848484 + cipher=84848484848484848484848484848484 + plain=0B93E0DF43D0F5EEDFDF11F8FA613796 + encrypted=84848484848484848484848484848484 + +Set 7, vector#133: + key=85858585858585858585858585858585 + cipher=85858585858585858585858585858585 + plain=DCD5112974EE1BC4673C3F66C8248B6E + encrypted=85858585858585858585858585858585 + +Set 7, vector#134: + key=86868686868686868686868686868686 + cipher=86868686868686868686868686868686 + plain=B49D6034EEDD44C1F449DBCDFA79ECC0 + encrypted=86868686868686868686868686868686 + +Set 7, vector#135: + key=87878787878787878787878787878787 + cipher=87878787878787878787878787878787 + plain=18661F24A7A94E965967A9CEAA8FE2E2 + encrypted=87878787878787878787878787878787 + +Set 7, vector#136: + key=88888888888888888888888888888888 + cipher=88888888888888888888888888888888 + plain=600B807D1040966AF2A6A8290EDDCEA0 + encrypted=88888888888888888888888888888888 + +Set 7, vector#137: + key=89898989898989898989898989898989 + cipher=89898989898989898989898989898989 + plain=8E74A1A45C5DAE584B4FCD1D9F713AC4 + encrypted=89898989898989898989898989898989 + +Set 7, vector#138: + key=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + cipher=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + plain=14BED9733BDEFB99760FB380C9B7B987 + encrypted=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + +Set 7, vector#139: + key=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + cipher=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + plain=B56ED93AEB9065C117D25DDF148D0A4B + encrypted=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + +Set 7, vector#140: + key=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + cipher=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + plain=77F1E0AA66BE1A395007360C5E23AC19 + encrypted=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + +Set 7, vector#141: + key=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + cipher=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + plain=4546FCC6DDC1253BDAC758D1299A160E + encrypted=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + +Set 7, vector#142: + key=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + cipher=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + plain=138B8F9AEB8D126D06B04E32812F9660 + encrypted=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + +Set 7, vector#143: + key=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + cipher=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + plain=9486084D738FE43AB8BA00EAAFE3B1FD + encrypted=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + +Set 7, vector#144: + key=90909090909090909090909090909090 + cipher=90909090909090909090909090909090 + plain=986C78789D0178737233FB9FAF502CFA + encrypted=90909090909090909090909090909090 + +Set 7, vector#145: + key=91919191919191919191919191919191 + cipher=91919191919191919191919191919191 + plain=05B8C554779F7483E715CD9D747412CA + encrypted=91919191919191919191919191919191 + +Set 7, vector#146: + key=92929292929292929292929292929292 + cipher=92929292929292929292929292929292 + plain=EC69192EE89476333E61768F40DC54D5 + encrypted=92929292929292929292929292929292 + +Set 7, vector#147: + key=93939393939393939393939393939393 + cipher=93939393939393939393939393939393 + plain=7EC3E4E2ED3B1FA31BF9D462DE310140 + encrypted=93939393939393939393939393939393 + +Set 7, vector#148: + key=94949494949494949494949494949494 + cipher=94949494949494949494949494949494 + plain=7483D306E385F8A537E1AF3C32E4CD91 + encrypted=94949494949494949494949494949494 + +Set 7, vector#149: + key=95959595959595959595959595959595 + cipher=95959595959595959595959595959595 + plain=56E566F99169DD03FB40D175218CCABB + encrypted=95959595959595959595959595959595 + +Set 7, vector#150: + key=96969696969696969696969696969696 + cipher=96969696969696969696969696969696 + plain=441FE5AF1F2D8EABDC60D292C9258FCF + encrypted=96969696969696969696969696969696 + +Set 7, vector#151: + key=97979797979797979797979797979797 + cipher=97979797979797979797979797979797 + plain=11CD38AEE576A2F8192D99895A12942D + encrypted=97979797979797979797979797979797 + +Set 7, vector#152: + key=98989898989898989898989898989898 + cipher=98989898989898989898989898989898 + plain=7B0EA86CB8B05E32C668466429D3D7DD + encrypted=98989898989898989898989898989898 + +Set 7, vector#153: + key=99999999999999999999999999999999 + cipher=99999999999999999999999999999999 + plain=A35D38E6A2A4220F5F1D0F37B98980F6 + encrypted=99999999999999999999999999999999 + +Set 7, vector#154: + key=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + cipher=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + plain=F8987873DAC2435F4FE313284F663989 + encrypted=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + +Set 7, vector#155: + key=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + cipher=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + plain=D3B004214F52F8B6AB12318E98F32613 + encrypted=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + +Set 7, vector#156: + key=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + cipher=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + plain=49B48110DFE4EC6B43649B1F50E0D6E6 + encrypted=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + +Set 7, vector#157: + key=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + cipher=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + plain=5492DA23E963517D604CF16903B10521 + encrypted=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + +Set 7, vector#158: + key=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + cipher=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + plain=6F8BD5468BDD2DB1E2F9156C7D2FF6D9 + encrypted=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + +Set 7, vector#159: + key=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + cipher=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + plain=7D26A11489D7F4FF8EFC584B3DDA3987 + encrypted=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + +Set 7, vector#160: + key=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + cipher=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + plain=3CBF243C40E8DC4DE90D1F908723C85A + encrypted=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + +Set 7, vector#161: + key=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + cipher=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + plain=9B77C9159F06092AFB4D654F5939C3AB + encrypted=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + +Set 7, vector#162: + key=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + cipher=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + plain=A1A7057281B99ABDEE314F0F0C1D9BDA + encrypted=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + +Set 7, vector#163: + key=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + cipher=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + plain=E37D24BF471EA6AA71743E8671401D56 + encrypted=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + +Set 7, vector#164: + key=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + cipher=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + plain=35B38EED1F5DB1EDD16DEF9DB67F974D + encrypted=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + +Set 7, vector#165: + key=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + cipher=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + plain=13FDD7839596A0E956C8C2C64D01254F + encrypted=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + +Set 7, vector#166: + key=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + cipher=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + plain=FE15BEC2E0A24821CE81D4970C30BD72 + encrypted=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + +Set 7, vector#167: + key=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + cipher=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + plain=E8360FFFB133E13F66ECF593EF61BC98 + encrypted=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + +Set 7, vector#168: + key=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + cipher=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + plain=219CA6904BB9E913F4D9646BC51624D2 + encrypted=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + +Set 7, vector#169: + key=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + cipher=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + plain=B0DF8E262008A17DB0BB50522085548C + encrypted=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + +Set 7, vector#170: + key=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + cipher=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + plain=65301F1A5D9A97340E2747F478724352 + encrypted=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + +Set 7, vector#171: + key=ABABABABABABABABABABABABABABABAB + cipher=ABABABABABABABABABABABABABABABAB + plain=88952DCE3246AE173A4F0A3C492D7973 + encrypted=ABABABABABABABABABABABABABABABAB + +Set 7, vector#172: + key=ACACACACACACACACACACACACACACACAC + cipher=ACACACACACACACACACACACACACACACAC + plain=B2DA4D7027B04E2D0D945BC84D1078CE + encrypted=ACACACACACACACACACACACACACACACAC + +Set 7, vector#173: + key=ADADADADADADADADADADADADADADADAD + cipher=ADADADADADADADADADADADADADADADAD + plain=0D86581DE155DBAA725824B3A1B441F7 + encrypted=ADADADADADADADADADADADADADADADAD + +Set 7, vector#174: + key=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + cipher=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + plain=82129E7D6C2256ABD6D89BA70140B53D + encrypted=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + +Set 7, vector#175: + key=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + cipher=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + plain=B6250898D37E52DD52AD0BAFA7E3197A + encrypted=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + +Set 7, vector#176: + key=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + cipher=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + plain=36BE89535B803BD61E5BFF4BC76B07DD + encrypted=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + +Set 7, vector#177: + key=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + cipher=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + plain=3D7FA0A7FFF71E895A179697BEE06B0C + encrypted=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + +Set 7, vector#178: + key=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + cipher=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + plain=C467AE7004EB2502A700BFC315D21A15 + encrypted=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + +Set 7, vector#179: + key=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + cipher=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + plain=4CC06E5F3D0469448DA72A54D6DF0D35 + encrypted=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + +Set 7, vector#180: + key=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + cipher=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + plain=65289F3DBE056B8B36D3E80E86123B9C + encrypted=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + +Set 7, vector#181: + key=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + cipher=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + plain=DE71F507AD61BD5ADD2054917170968A + encrypted=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + +Set 7, vector#182: + key=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + cipher=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + plain=231D9B1C00D63B195F2F8C729871EC95 + encrypted=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + +Set 7, vector#183: + key=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + cipher=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + plain=B3F1269E32E0DD1825772F4EC306F6A1 + encrypted=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + +Set 7, vector#184: + key=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + cipher=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + plain=4C6A94A6A500E1A6019E4EC20227CCC3 + encrypted=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + +Set 7, vector#185: + key=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + cipher=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + plain=D1D8F3CA5D078F628B8F9654F407A210 + encrypted=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + +Set 7, vector#186: + key=BABABABABABABABABABABABABABABABA + cipher=BABABABABABABABABABABABABABABABA + plain=78412E888E70CB6574D6773D821FCF69 + encrypted=BABABABABABABABABABABABABABABABA + +Set 7, vector#187: + key=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + cipher=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + plain=1505D49D1D8A48941BBF905BD073B6B0 + encrypted=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + +Set 7, vector#188: + key=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + cipher=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + plain=CF226A929DDF1785A672A1FCC6B32FA5 + encrypted=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + +Set 7, vector#189: + key=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + cipher=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + plain=190B5F0C81643963D7E15F581677CAED + encrypted=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + +Set 7, vector#190: + key=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + cipher=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + plain=947D47274059C5AEB9686F31140CACC6 + encrypted=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + +Set 7, vector#191: + key=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + cipher=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + plain=E29EF0DB004F609AC5E3BA16F600C792 + encrypted=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + +Set 7, vector#192: + key=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + cipher=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + plain=D54DF7E6B664C1066D927D94B6E60380 + encrypted=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + +Set 7, vector#193: + key=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + cipher=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + plain=D507C364489A7823C3EEA0EEDF199BAD + encrypted=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + +Set 7, vector#194: + key=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + cipher=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + plain=1FB4C0C74FB6BE9F1B89804371C93704 + encrypted=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + +Set 7, vector#195: + key=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + cipher=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + plain=5A68665C643FC2D3528E2AE175298B34 + encrypted=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + +Set 7, vector#196: + key=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + cipher=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + plain=C65DFA0B209FBFEFDD60BFD9DD8193AB + encrypted=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + +Set 7, vector#197: + key=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + cipher=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + plain=5B98568FDD0436E6437F48BE4D6B4383 + encrypted=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + +Set 7, vector#198: + key=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + cipher=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + plain=22A72F3D2F09F2F1FB16C4EF528E4176 + encrypted=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + +Set 7, vector#199: + key=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + cipher=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + plain=DC12FECFDB9D8B6B908B9B6EA9379A4D + encrypted=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + +Set 7, vector#200: + key=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + cipher=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + plain=DA5815232BD726AFEF8260F75679516E + encrypted=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + +Set 7, vector#201: + key=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + cipher=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + plain=AC50AC00A2D845098A15E619BA520ADF + encrypted=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + +Set 7, vector#202: + key=CACACACACACACACACACACACACACACACA + cipher=CACACACACACACACACACACACACACACACA + plain=5B272C019D602F589B419BB833949AB2 + encrypted=CACACACACACACACACACACACACACACACA + +Set 7, vector#203: + key=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + cipher=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + plain=47A771B71667C1F8743CF1396A51F348 + encrypted=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + +Set 7, vector#204: + key=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + cipher=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + plain=C52908807207F90DCBB29DA8C480E799 + encrypted=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + +Set 7, vector#205: + key=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + cipher=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + plain=176EF23CA8C9DAA56166F3567EBBA95F + encrypted=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + +Set 7, vector#206: + key=CECECECECECECECECECECECECECECECE + cipher=CECECECECECECECECECECECECECECECE + plain=10E72B2B235EE7413C528E7ED564CDDA + encrypted=CECECECECECECECECECECECECECECECE + +Set 7, vector#207: + key=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + cipher=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + plain=5FACDE9A99EE8C89D440E5EDB5CF4405 + encrypted=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + +Set 7, vector#208: + key=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + cipher=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + plain=1CCF121F0D7A0A0F1CD848F499ADFCFA + encrypted=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + +Set 7, vector#209: + key=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + cipher=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + plain=C73590486D9CF95362C90190AC01A4A8 + encrypted=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + +Set 7, vector#210: + key=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + cipher=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + plain=0EAF195C766D4BB5131688657C04D8B3 + encrypted=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + +Set 7, vector#211: + key=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + cipher=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + plain=15B4D2E1AB2DE5FC0438071F99726E9A + encrypted=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + +Set 7, vector#212: + key=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + cipher=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + plain=6F5C95B76FF0B97311929BF97ADCD598 + encrypted=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + +Set 7, vector#213: + key=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + cipher=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + plain=F74DC5BD5D721C57F1D55C062C8C8A14 + encrypted=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + +Set 7, vector#214: + key=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + cipher=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + plain=A3B33B22BB0447A73A1510BCF301B269 + encrypted=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + +Set 7, vector#215: + key=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + cipher=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + plain=0FAD030F10BF18907C0701C488AAD142 + encrypted=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + +Set 7, vector#216: + key=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + cipher=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + plain=A3AEDE92621285DB8347C65EC0F4080D + encrypted=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + +Set 7, vector#217: + key=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + cipher=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + plain=CE1C1FFC2EF9937962328A143CA1C6BD + encrypted=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + +Set 7, vector#218: + key=DADADADADADADADADADADADADADADADA + cipher=DADADADADADADADADADADADADADADADA + plain=A49FF4EB1805DDFB91A1BF0CB7A1CD0C + encrypted=DADADADADADADADADADADADADADADADA + +Set 7, vector#219: + key=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + cipher=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + plain=A9CB430CAB39320641BAE36422C097AD + encrypted=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + +Set 7, vector#220: + key=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + cipher=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + plain=6E4970F076F97E98237C1417A9F025AD + encrypted=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + +Set 7, vector#221: + key=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + cipher=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + plain=49ABB1A66C0D1E853C1505CD5ABBFA93 + encrypted=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + +Set 7, vector#222: + key=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + cipher=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + plain=5771F86260497359E3835962108F1D1B + encrypted=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + +Set 7, vector#223: + key=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + cipher=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + plain=75EB8514448006252155453198EB03D6 + encrypted=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + +Set 7, vector#224: + key=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + cipher=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + plain=8DF33E7779A45C29D5DD581256C9BB72 + encrypted=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + +Set 7, vector#225: + key=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + cipher=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + plain=3A57A4D5761B50E90D25C7D60C12D56C + encrypted=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + +Set 7, vector#226: + key=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + cipher=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + plain=943BCC904C4ECAD37A333F4CFE2DD379 + encrypted=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + +Set 7, vector#227: + key=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + cipher=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + plain=6E912C4A7DDE9DF0E17845E8F6F7A421 + encrypted=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + +Set 7, vector#228: + key=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + cipher=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + plain=6851EE3B15686531D0949808B8C3330C + encrypted=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + +Set 7, vector#229: + key=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + cipher=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + plain=B0A147A264FCF3210CDE56CFFC667A71 + encrypted=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + +Set 7, vector#230: + key=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + cipher=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + plain=4AE93D297016F0E4B3029C7D70A2A2ED + encrypted=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + +Set 7, vector#231: + key=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + cipher=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + plain=6FA25BF7FD181327A8DAA6A555801396 + encrypted=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + +Set 7, vector#232: + key=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + cipher=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + plain=E7AD3A1F0D6962BD8C9781E649E1E97C + encrypted=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + +Set 7, vector#233: + key=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + cipher=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + plain=A52D2A7CE35AC5D9E5274E532CF9151A + encrypted=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + +Set 7, vector#234: + key=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + cipher=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + plain=046DD48211CE2F0303FF19FE166EA532 + encrypted=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + +Set 7, vector#235: + key=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + cipher=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + plain=1F4192D398433A67B050864E3D027DFC + encrypted=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + +Set 7, vector#236: + key=ECECECECECECECECECECECECECECECEC + cipher=ECECECECECECECECECECECECECECECEC + plain=E884DFD7164745D5819B231B42B0EC5D + encrypted=ECECECECECECECECECECECECECECECEC + +Set 7, vector#237: + key=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + cipher=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + plain=6A9BD9E60CE1F99CF533885967608953 + encrypted=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + +Set 7, vector#238: + key=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + cipher=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + plain=A7D19C071D9AD5AAF382CDA2599DF37E + encrypted=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + +Set 7, vector#239: + key=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + cipher=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + plain=F6A392455150E98F0E8A49C7164C729D + encrypted=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + +Set 7, vector#240: + key=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + cipher=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + plain=785C9FD3E12FFBE90D9FEB1B4B245FAC + encrypted=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + +Set 7, vector#241: + key=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + cipher=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + plain=2E5BD8233C1B7F1A1973EFDB116AE310 + encrypted=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + +Set 7, vector#242: + key=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + cipher=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + plain=5B67E83273B7CE1510F247709DFB3909 + encrypted=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + +Set 7, vector#243: + key=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + cipher=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + plain=915CA81D56511CFF52C21B9569BF80A4 + encrypted=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + +Set 7, vector#244: + key=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + cipher=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + plain=0C9F198D2B412F50734DC44516DA2BAD + encrypted=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + +Set 7, vector#245: + key=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + cipher=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + plain=DE315637DF9245F4947A428CBD4A9BC9 + encrypted=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + +Set 7, vector#246: + key=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + cipher=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + plain=ECA2F02C0B57447FD0DE86634D398D57 + encrypted=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + +Set 7, vector#247: + key=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + cipher=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + plain=303A759BF829707D7ABE655B6BAE7C6B + encrypted=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + +Set 7, vector#248: + key=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + cipher=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + plain=F3B49D6384C569645D1EBBA3A559BA65 + encrypted=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + +Set 7, vector#249: + key=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + cipher=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + plain=2FAB46AC9AC7B889FD3631223CB47864 + encrypted=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + +Set 7, vector#250: + key=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + cipher=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + plain=0A8E41E019DAC4A5BDD461EBF2A85566 + encrypted=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + +Set 7, vector#251: + key=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + cipher=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + plain=3AA5BF6E509D05A231531AA475AC6523 + encrypted=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + +Set 7, vector#252: + key=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + cipher=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + plain=1ED8B8997A03E7409659E2C0B46ECF8F + encrypted=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + +Set 7, vector#253: + key=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + cipher=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + plain=3EFAC42964BCC72D009F87B63C62BDF6 + encrypted=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + +Set 7, vector#254: + key=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + cipher=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + plain=1446D8FB54B59E7C6C5A83FFF7E07A03 + encrypted=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + +Set 7, vector#255: + key=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + cipher=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + plain=45E270434BB992B52CD8BFE564B7E7D7 + encrypted=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + +Test vectors -- set 8 +===================== + +Set 8, vector# 0: + key=000102030405060708090A0B0C0D0E0F + cipher=00112233445566778899AABBCCDDEEFF + plain=ED1F7C59EC86A49E2C6C22AE20B4AEDE + encrypted=00112233445566778899AABBCCDDEEFF + +Set 8, vector# 1: + key=2BD6459F82C5B300952C49104881FF48 + cipher=EA024714AD5C4D84EA024714AD5C4D84 + plain=4765F3DA10CD3D0473867742B5E5CC3C + encrypted=EA024714AD5C4D84EA024714AD5C4D84 + + + +End of test vectors diff --git a/xtea/xtea.c b/xtea/xtea.c new file mode 100644 index 0000000..ad0381f --- /dev/null +++ b/xtea/xtea.c @@ -0,0 +1,53 @@ +/* xtea.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 xtea.c + * \brief XTEA implemantation + * copy'n'pasted from http://en.wikipedia.org/wiki/XTEA + * and slightly modified + */ + +#include + + +void xtea_enc(void* dest, const void* v, const void* k) { + uint8_t i; + uint32_t v0=((uint32_t*)v)[0], v1=((uint32_t*)v)[1]; + uint32_t sum=0, delta=0x9E3779B9; + for(i=0; i<32; i++) { + v0 += ((v1 << 4 ^ v1 >> 5) + v1) ^ (sum + ((uint32_t*)k)[sum & 3]); + sum += delta; + v1 += ((v0 << 4 ^ v0 >> 5) + v0) ^ (sum + ((uint32_t*)k)[sum>>11 & 3]); + } + ((uint32_t*)dest)[0]=v0; ((uint32_t*)dest)[1]=v1; +} + +void xtea_dec(void* dest, const void* v, const void* k) { + uint8_t i; + uint32_t v0=((uint32_t*)v)[0], v1=((uint32_t*)v)[1]; + uint32_t sum=0xC6EF3720, delta=0x9E3779B9; + for(i=0; i<32; i++) { + v1 -= ((v0 << 4 ^ v0 >> 5) + v0) ^ (sum + ((uint32_t*)k)[sum>>11 & 3]); + sum -= delta; + v0 -= ((v1 << 4 ^ v1 >> 5) + v1) ^ (sum + ((uint32_t*)k)[sum & 3]); + } + ((uint32_t*)dest)[0]=v0; ((uint32_t*)dest)[1]=v1; +} + + diff --git a/xtea/xtea.h b/xtea/xtea.h new file mode 100644 index 0000000..cd5f505 --- /dev/null +++ b/xtea/xtea.h @@ -0,0 +1,49 @@ +/* xtea.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 . +*/ +/* + * Author: Daniel Otte + * Date: 06.06.2006 + * License: GPL + */ + +#ifndef XTEA_H_ +#define XTEA_H_ + +#include + +/* + * this fits for xtea.c and xtea-asm.S + * + */ +#define XTEA_BLOCKSIZE 64 +#define XTEA_BLOCKSIZEB ((XTEA_BLOCKSIZE+7)/8) +#define XTEA_KEYSIZE 128 +#define XTEA_KEYSIZEB ((XTEA_KEYSIZE+7)/8) + + +/* + * dest: the destination where result of operation will be placed (64 bit) + * v: the block to operate on (64 bit) + * k: the key for en/decryption (128 bit) + */ +void xtea_enc(void* dest, const void* v, const void* k); +void xtea_dec(void* dest, const void* v, const void* k); + + +#endif /*XTEA_H_*/