From d6a35f05fd2b5ee79d5ad8424434ad1a068be453 Mon Sep 17 00:00:00 2001 From: bg Date: Wed, 31 Dec 2008 19:51:55 +0000 Subject: [PATCH] new AES in C, happy new year --- aes.c | 40 + aes.h | 58 + aes128_dec.c | 37 + aes128_dec.h | 38 + aes128_enc.c | 37 + aes128_enc.h | 38 + aes192_dec.c | 37 + aes192_dec.h | 38 + aes192_enc.c | 37 + aes192_enc.h | 38 + aes256_dec.c | 37 + aes256_dec.h | 38 + aes256_enc.c | 37 + aes256_enc.h | 38 + aes_dec.c | 106 + aes_dec.h | 36 + aes_enc.c | 123 + aes_enc.h | 36 + aes_invsbox.c | 22 + aes_invsbox.h | 33 + aes_keyschedule.c | 105 + aes_keyschedule.h | 40 + aes_sbox.c | 23 + aes_sbox.h | 33 + avr-makefile.inc | 3 +- mkfiles/aes.mk | 16 + test_src/main-aes-test.c | 183 + .../Rijndael-128-128.unverified.test-vectors | 7232 +++++++++++ .../Rijndael-192-128.unverified.test-vectors | 8128 ++++++++++++ .../Rijndael-256-128.unverified.test-vectors | 10308 ++++++++++++++++ twister-small.c | 1 - 31 files changed, 26974 insertions(+), 2 deletions(-) create mode 100644 aes.c create mode 100644 aes.h create mode 100644 aes128_dec.c create mode 100644 aes128_dec.h create mode 100644 aes128_enc.c create mode 100644 aes128_enc.h create mode 100644 aes192_dec.c create mode 100644 aes192_dec.h create mode 100644 aes192_enc.c create mode 100644 aes192_enc.h create mode 100644 aes256_dec.c create mode 100644 aes256_dec.h create mode 100644 aes256_enc.c create mode 100644 aes256_enc.h create mode 100644 aes_dec.c create mode 100644 aes_dec.h create mode 100644 aes_enc.c create mode 100644 aes_enc.h create mode 100644 aes_invsbox.c create mode 100644 aes_invsbox.h create mode 100644 aes_keyschedule.c create mode 100644 aes_keyschedule.h create mode 100644 aes_sbox.c create mode 100644 aes_sbox.h create mode 100644 mkfiles/aes.mk create mode 100644 test_src/main-aes-test.c create mode 100644 testvectors/Rijndael-128-128.unverified.test-vectors create mode 100644 testvectors/Rijndael-192-128.unverified.test-vectors create mode 100644 testvectors/Rijndael-256-128.unverified.test-vectors diff --git a/aes.c b/aes.c new file mode 100644 index 0000000..3fda3be --- /dev/null +++ b/aes.c @@ -0,0 +1,40 @@ +/* aes.c */ +/* + This file is part of the Crypto-avr-lib/microcrypt-lib. + Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +/** + * \file aes.c + * \email daniel.otte@rub.de + * \author Daniel Otte + * \date 2008-12-29 + * \license GPLv3 or later + * + */ + +#include +#include "aes.h" + +void aes_buffer2state(void* dest, void* src){ + uint8_t i,j; + for(i=0;i<4;++i){ + for(j=0;j<4;++j){ + ((uint8_t*)dest)[i*4+j] = ((uint8_t*)src)[j*4+i]; + } + } +} + + diff --git a/aes.h b/aes.h new file mode 100644 index 0000000..5a6ee3e --- /dev/null +++ b/aes.h @@ -0,0 +1,58 @@ +/* aes.h */ +/* + This file is part of the Crypto-avr-lib/microcrypt-lib. + Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +/** + * \file aes.h + * \email daniel.otte@rub.de + * \author Daniel Otte + * \date 2008-12-30 + * \license GPLv3 or later + * + */ +#ifndef AES_H_ +#define AES_H_ + +#include + +typedef struct{ + uint8_t ks[16]; +} aes_roundkey_t; + +typedef struct{ + aes_roundkey_t key[10+1]; +} aes128_ctx_t; + +typedef struct{ + aes_roundkey_t key[12+1]; +} aes192_ctx_t; + +typedef struct{ + aes_roundkey_t key[14+1]; +} aes256_ctx_t; + +typedef struct{ + aes_roundkey_t key[1]; /* just to avoid the warning */ +} aes_genctx_t; + +typedef struct{ + uint8_t s[16]; +} aes_cipher_state_t; + +void aes_buffer2state(void* dest, void* src); + +#endif diff --git a/aes128_dec.c b/aes128_dec.c new file mode 100644 index 0000000..8f6c49f --- /dev/null +++ b/aes128_dec.c @@ -0,0 +1,37 @@ +/* aes128_dec.c */ +/* + This file is part of the Crypto-avr-lib/microcrypt-lib. + Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +/** + * \file aes128_dec.c + * \email daniel.otte@rub.de + * \author Daniel Otte + * \date 2008-12-30 + * \license GPLv3 or later + * + */ + +#include "aes.h" +#include "aes_dec.h" + +void aes128_dec(void* buffer, aes128_ctx_t* ctx){ + aes_cipher_state_t state; + aes_buffer2state(state.s, buffer); + aes_decrypt_core(&state, (aes_genctx_t*)ctx, 10); + aes_buffer2state(buffer, state.s); +} + diff --git a/aes128_dec.h b/aes128_dec.h new file mode 100644 index 0000000..e59ef49 --- /dev/null +++ b/aes128_dec.h @@ -0,0 +1,38 @@ +/* aes128_dec.h */ +/* + This file is part of the Crypto-avr-lib/microcrypt-lib. + Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +/** + * \file aes128_dec.h + * \email daniel.otte@rub.de + * \author Daniel Otte + * \date 2008-12-30 + * \license GPLv3 or later + * + */ + +#ifndef AES128_DEC_H_ +#define AES128_DEC_H_ + +#include "aes.h" +#include "aes_dec.h" + +void aes128_dec(void* buffer, aes128_ctx_t* ctx); + + + +#endif /* AES128_DEC_H_ */ diff --git a/aes128_enc.c b/aes128_enc.c new file mode 100644 index 0000000..c0c900b --- /dev/null +++ b/aes128_enc.c @@ -0,0 +1,37 @@ +/* aes128_enc.c */ +/* + This file is part of the Crypto-avr-lib/microcrypt-lib. + Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +/** + * \file aes128_enc.c + * \email daniel.otte@rub.de + * \author Daniel Otte + * \date 2008-12-30 + * \license GPLv3 or later + * + */ + +#include "aes.h" +#include "aes_enc.h" + +void aes128_enc(void* buffer, aes128_ctx_t* ctx){ + aes_cipher_state_t state; + aes_buffer2state(state.s, buffer); + aes_encrypt_core(&state, (aes_genctx_t*)ctx, 10); + aes_buffer2state(buffer, state.s); +} + diff --git a/aes128_enc.h b/aes128_enc.h new file mode 100644 index 0000000..5fa39f7 --- /dev/null +++ b/aes128_enc.h @@ -0,0 +1,38 @@ +/* aes128_enc.h */ +/* + This file is part of the Crypto-avr-lib/microcrypt-lib. + Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +/** + * \file aes128_enc.h + * \email daniel.otte@rub.de + * \author Daniel Otte + * \date 2008-12-30 + * \license GPLv3 or later + * + */ + +#ifndef AES128_ENC_H_ +#define AES128_ENC_H_ + +#include "aes.h" +#include "aes_enc.h" + +void aes128_enc(void* buffer, aes128_ctx_t* ctx); + + + +#endif /* AES128_ENC_H_ */ diff --git a/aes192_dec.c b/aes192_dec.c new file mode 100644 index 0000000..29d5aa9 --- /dev/null +++ b/aes192_dec.c @@ -0,0 +1,37 @@ +/* aes192_dec.c */ +/* + This file is part of the Crypto-avr-lib/microcrypt-lib. + Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +/** + * \file aes192_dec.c + * \email daniel.otte@rub.de + * \author Daniel Otte + * \date 2008-12-31 + * \license GPLv3 or later + * + */ + +#include "aes.h" +#include "aes_dec.h" + +void aes192_dec(void* buffer, aes192_ctx_t* ctx){ + aes_cipher_state_t state; + aes_buffer2state(state.s, buffer); + aes_decrypt_core(&state, (aes_genctx_t*)ctx, 12); + aes_buffer2state(buffer, state.s); +} + diff --git a/aes192_dec.h b/aes192_dec.h new file mode 100644 index 0000000..346eacf --- /dev/null +++ b/aes192_dec.h @@ -0,0 +1,38 @@ +/* aes192_dec.h */ +/* + This file is part of the Crypto-avr-lib/microcrypt-lib. + Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +/** + * \file aes128_dec.h + * \email daniel.otte@rub.de + * \author Daniel Otte + * \date 2008-12-31 + * \license GPLv3 or later + * + */ + +#ifndef AES192_DEC_H_ +#define AES192_DEC_H_ + +#include "aes.h" +#include "aes_dec.h" + +void aes192_dec(void* buffer, aes192_ctx_t* ctx); + + + +#endif /* AES192_DEC_H_ */ diff --git a/aes192_enc.c b/aes192_enc.c new file mode 100644 index 0000000..a5d0830 --- /dev/null +++ b/aes192_enc.c @@ -0,0 +1,37 @@ +/* aes192_enc.c */ +/* + This file is part of the Crypto-avr-lib/microcrypt-lib. + Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +/** + * \file aes192_enc.c + * \email daniel.otte@rub.de + * \author Daniel Otte + * \date 2008-12-31 + * \license GPLv3 or later + * + */ + +#include "aes.h" +#include "aes_enc.h" + +void aes192_enc(void* buffer, aes192_ctx_t* ctx){ + aes_cipher_state_t state; + aes_buffer2state(state.s, buffer); + aes_encrypt_core(&state, (aes_genctx_t*)ctx, 12); + aes_buffer2state(buffer, state.s); +} + diff --git a/aes192_enc.h b/aes192_enc.h new file mode 100644 index 0000000..5535c6e --- /dev/null +++ b/aes192_enc.h @@ -0,0 +1,38 @@ +/* aes192_enc.h */ +/* + This file is part of the Crypto-avr-lib/microcrypt-lib. + Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +/** + * \file aes192_enc.h + * \email daniel.otte@rub.de + * \author Daniel Otte + * \date 2008-12-31 + * \license GPLv3 or later + * + */ + +#ifndef AES192_ENC_H_ +#define AES192_ENC_H_ + +#include "aes.h" +#include "aes_enc.h" + +void aes192_enc(void* buffer, aes192_ctx_t* ctx); + + + +#endif /* AES192_ENC_H_ */ diff --git a/aes256_dec.c b/aes256_dec.c new file mode 100644 index 0000000..eb80943 --- /dev/null +++ b/aes256_dec.c @@ -0,0 +1,37 @@ +/* aes256_dec.c */ +/* + This file is part of the Crypto-avr-lib/microcrypt-lib. + Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +/** + * \file aes256_dec.c + * \email daniel.otte@rub.de + * \author Daniel Otte + * \date 2008-12-31 + * \license GPLv3 or later + * + */ + +#include "aes.h" +#include "aes_dec.h" + +void aes256_dec(void* buffer, aes256_ctx_t* ctx){ + aes_cipher_state_t state; + aes_buffer2state(state.s, buffer); + aes_decrypt_core(&state, (aes_genctx_t*)ctx, 14); + aes_buffer2state(buffer, state.s); +} + diff --git a/aes256_dec.h b/aes256_dec.h new file mode 100644 index 0000000..b6fda8f --- /dev/null +++ b/aes256_dec.h @@ -0,0 +1,38 @@ +/* aes256_dec.h */ +/* + This file is part of the Crypto-avr-lib/microcrypt-lib. + Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +/** + * \file aes256_dec.h + * \email daniel.otte@rub.de + * \author Daniel Otte + * \date 2008-12-31 + * \license GPLv3 or later + * + */ + +#ifndef AES256_DEC_H_ +#define AES256_DEC_H_ + +#include "aes.h" +#include "aes_dec.h" + +void aes256_dec(void* buffer, aes256_ctx_t* ctx); + + + +#endif /* AES256_DEC_H_ */ diff --git a/aes256_enc.c b/aes256_enc.c new file mode 100644 index 0000000..4d89602 --- /dev/null +++ b/aes256_enc.c @@ -0,0 +1,37 @@ +/* aes256_enc.c */ +/* + This file is part of the Crypto-avr-lib/microcrypt-lib. + Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +/** + * \file aes256_enc.c + * \email daniel.otte@rub.de + * \author Daniel Otte + * \date 2008-12-31 + * \license GPLv3 or later + * + */ + +#include "aes.h" +#include "aes_enc.h" + +void aes256_enc(void* buffer, aes256_ctx_t* ctx){ + aes_cipher_state_t state; + aes_buffer2state(state.s, buffer); + aes_encrypt_core(&state, (aes_genctx_t*)ctx, 14); + aes_buffer2state(buffer, state.s); +} + diff --git a/aes256_enc.h b/aes256_enc.h new file mode 100644 index 0000000..240bad3 --- /dev/null +++ b/aes256_enc.h @@ -0,0 +1,38 @@ +/* aes256_enc.h */ +/* + This file is part of the Crypto-avr-lib/microcrypt-lib. + Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +/** + * \file aes256_enc.h + * \email daniel.otte@rub.de + * \author Daniel Otte + * \date 2008-12-31 + * \license GPLv3 or later + * + */ + +#ifndef AES256_ENC_H_ +#define AES256_ENC_H_ + +#include "aes.h" +#include "aes_enc.h" + +void aes256_enc(void* buffer, aes256_ctx_t* ctx); + + + +#endif /* AES256_ENC_H_ */ diff --git a/aes_dec.c b/aes_dec.c new file mode 100644 index 0000000..3b54641 --- /dev/null +++ b/aes_dec.c @@ -0,0 +1,106 @@ +/* aes.c */ +/* + This file is part of the Crypto-avr-lib/microcrypt-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 . +*/ + +#include +#include +#include "gf256mul.h" +#include "aes.h" +#include "aes_invsbox.h" +#include "aes_dec.h" +#include + +void aes_invshiftrow(void* data, uint8_t shift){ + uint8_t tmp[4]; + tmp[0] = ((uint8_t*)data)[(4+0-shift)&3]; + tmp[1] = ((uint8_t*)data)[(4+1-shift)&3]; + tmp[2] = ((uint8_t*)data)[(4+2-shift)&3]; + tmp[3] = ((uint8_t*)data)[(4+3-shift)&3]; + memcpy(data, tmp, 4); +} + +static +void aes_dec_round(aes_cipher_state_t* state, const aes_roundkey_t* k){ + uint8_t tmp[16]; + uint8_t i; + /* keyAdd */ + for(i=0; i<16; ++i){ + tmp[i] = state->s[i] ^ k->ks[i]; + } + /* mixColums */ + for(i=0; i<4; ++i){ + state->s[4*0+i] = + gf256mul(0xe, tmp[4*0+i], 0x1b) + ^ gf256mul(0xb, tmp[4*1+i], 0x1b) + ^ gf256mul(0xd, tmp[4*2+i], 0x1b) + ^ gf256mul(0x9, tmp[4*3+i], 0x1b); + state->s[4*1+i] = + gf256mul(0x9, tmp[4*0+i], 0x1b) + ^ gf256mul(0xe, tmp[4*1+i], 0x1b) + ^ gf256mul(0xb, tmp[4*2+i], 0x1b) + ^ gf256mul(0xd, tmp[4*3+i], 0x1b); + state->s[4*2+i] = + gf256mul(0xd, tmp[4*0+i], 0x1b) + ^ gf256mul(0x9, tmp[4*1+i], 0x1b) + ^ gf256mul(0xe, tmp[4*2+i], 0x1b) + ^ gf256mul(0xb, tmp[4*3+i], 0x1b); + state->s[4*3+i] = + gf256mul(0xb, tmp[4*0+i], 0x1b) + ^ gf256mul(0xd, tmp[4*1+i], 0x1b) + ^ gf256mul(0x9, tmp[4*2+i], 0x1b) + ^ gf256mul(0xe, tmp[4*3+i], 0x1b); + } + /* shiftRows */ + aes_invshiftrow(state->s+4, 1); + aes_invshiftrow(state->s+8, 2); + aes_invshiftrow(state->s+12, 3); + /* subBytes */ + for(i=0; i<16; ++i){ + state->s[i] = pgm_read_byte(aes_invsbox+state->s[i]); + } +} + + +static +void aes_dec_firstround(aes_cipher_state_t* state, const aes_roundkey_t* k){ + uint8_t i; + /* keyAdd */ + for(i=0; i<16; ++i){ + state->s[i] ^= k->ks[i]; + } + /* shiftRows */ + aes_invshiftrow(state->s+4, 1); + aes_invshiftrow(state->s+8, 2); + aes_invshiftrow(state->s+12, 3); + /* subBytes */ + for(i=0; i<16; ++i){ + state->s[i] = pgm_read_byte(aes_invsbox+state->s[i]); + } +} + +void aes_decrypt_core(aes_cipher_state_t* state, const aes_genctx_t* ks, uint8_t rounds){ + uint8_t i; + aes_dec_firstround(state, &(ks->key[i=rounds])); + for(;rounds>1;--rounds){ + --i; + aes_dec_round(state, &(ks->key[i])); + } + for(i=0; i<16; ++i){ + state->s[i] ^= ks->key[0].ks[i]; + } +} diff --git a/aes_dec.h b/aes_dec.h new file mode 100644 index 0000000..31749f3 --- /dev/null +++ b/aes_dec.h @@ -0,0 +1,36 @@ +/* aes_dec.h */ +/* + This file is part of the Crypto-avr-lib/microcrypt-lib. + Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +/** + * \file aes_dec.h + * \email daniel.otte@rub.de + * \author Daniel Otte + * \date 2008-12-30 + * \license GPLv3 or later + * + */ +#ifndef AES_DEC_H_ +#define AES_DEC_H_ +#include "aes.h" +#include + + +void aes_decrypt_core(aes_cipher_state_t* state,const aes_genctx_t* ks, uint8_t rounds); + + +#endif diff --git a/aes_enc.c b/aes_enc.c new file mode 100644 index 0000000..39be410 --- /dev/null +++ b/aes_enc.c @@ -0,0 +1,123 @@ +/* aes_enc.c */ +/* + This file is part of the Crypto-avr-lib/microcrypt-lib. + Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +/** + * \file aes_enc.c + * \email daniel.otte@rub.de + * \author Daniel Otte + * \date 2008-12-30 + * \license GPLv3 or later + * + */ + +#include +#include +#include "aes.h" +#include "gf256mul.h" +#include "aes_sbox.h" +#include "aes_enc.h" +#include + + +void aes_shiftrow(void* data, uint8_t shift){ + uint8_t tmp[4]; + tmp[0] = ((uint8_t*)data)[(0+shift)&3]; + tmp[1] = ((uint8_t*)data)[(1+shift)&3]; + tmp[2] = ((uint8_t*)data)[(2+shift)&3]; + tmp[3] = ((uint8_t*)data)[(3+shift)&3]; + memcpy(data, tmp, 4); +} + +#define GF256MUL_1(a) (a) +#define GF256MUL_2(a) (gf256mul(2, (a), 0x1b)) +#define GF256MUL_3(a) (gf256mul(3, (a), 0x1b)) + + + +static +void aes_enc_round(aes_cipher_state_t* state, const aes_roundkey_t* k){ + uint8_t tmp[16]; + uint8_t i; + /* subBytes */ + for(i=0; i<16; ++i){ + tmp[i] = pgm_read_byte(aes_sbox+state->s[i]); + } + /* shiftRows */ + aes_shiftrow(tmp+4, 1); + aes_shiftrow(tmp+8, 2); + aes_shiftrow(tmp+12, 3); + /* mixColums */ + for(i=0; i<4; ++i){ + state->s[4*0+i] = + GF256MUL_2(tmp[4*0+i]) + ^ GF256MUL_3(tmp[4*1+i]) + ^ GF256MUL_1(tmp[4*2+i]) + ^ GF256MUL_1(tmp[4*3+i]); + state->s[4*1+i] = + GF256MUL_1(tmp[4*0+i]) + ^ GF256MUL_2(tmp[4*1+i]) + ^ GF256MUL_3(tmp[4*2+i]) + ^ GF256MUL_1(tmp[4*3+i]); + state->s[4*2+i] = + GF256MUL_1(tmp[4*0+i]) + ^ GF256MUL_1(tmp[4*1+i]) + ^ GF256MUL_2(tmp[4*2+i]) + ^ GF256MUL_3(tmp[4*3+i]); + state->s[4*3+i] = + GF256MUL_3(tmp[4*0+i]) + ^ GF256MUL_1(tmp[4*1+i]) + ^ GF256MUL_1(tmp[4*2+i]) + ^ GF256MUL_2(tmp[4*3+i]); + } + + /* addKey */ + for(i=0; i<16; ++i){ + state->s[i] ^= k->ks[i]; + } +} + + +static +void aes_enc_lastround(aes_cipher_state_t* state,const aes_roundkey_t* k){ + uint8_t i; + /* subBytes */ + for(i=0; i<16; ++i){ + state->s[i] = pgm_read_byte(aes_sbox+state->s[i]); + } + /* shiftRows */ + aes_shiftrow(state->s+4, 1); + aes_shiftrow(state->s+8, 2); + aes_shiftrow(state->s+12, 3); + /* keyAdd */ + for(i=0; i<16; ++i){ + state->s[i] ^= k->ks[i]; + } +} + +void aes_encrypt_core(aes_cipher_state_t* state, const aes_genctx_t* ks, uint8_t rounds){ + uint8_t i; + for(i=0; i<16; ++i){ + state->s[i] ^= ks->key[0].ks[i]; + } + i=1; + for(;rounds>1;--rounds){ + aes_enc_round(state, &(ks->key[i])); + ++i; + } + aes_enc_lastround(state, &(ks->key[i])); +} diff --git a/aes_enc.h b/aes_enc.h new file mode 100644 index 0000000..fe15190 --- /dev/null +++ b/aes_enc.h @@ -0,0 +1,36 @@ +/* aes_enc.h */ +/* + This file is part of the Crypto-avr-lib/microcrypt-lib. + Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +/** + * \file aes_enc.h + * \email daniel.otte@rub.de + * \author Daniel Otte + * \date 2008-12-30 + * \license GPLv3 or later + * + */ +#ifndef AES_ENC_H_ +#define AES_ENC_H_ +#include "aes.h" +#include + + +void aes_encrypt_core(aes_cipher_state_t* state, const aes_genctx_t* ks, uint8_t rounds); + + +#endif diff --git a/aes_invsbox.c b/aes_invsbox.c new file mode 100644 index 0000000..921ff49 --- /dev/null +++ b/aes_invsbox.c @@ -0,0 +1,22 @@ +/* aes inverted sbox */ + +#include +#include +uint8_t aes_invsbox[256] PROGMEM = { + 0x52, 0x09, 0x6a, 0xd5, 0x30, 0x36, 0xa5, 0x38, 0xbf, 0x40, 0xa3, 0x9e, 0x81, 0xf3, 0xd7, 0xfb, + 0x7c, 0xe3, 0x39, 0x82, 0x9b, 0x2f, 0xff, 0x87, 0x34, 0x8e, 0x43, 0x44, 0xc4, 0xde, 0xe9, 0xcb, + 0x54, 0x7b, 0x94, 0x32, 0xa6, 0xc2, 0x23, 0x3d, 0xee, 0x4c, 0x95, 0x0b, 0x42, 0xfa, 0xc3, 0x4e, + 0x08, 0x2e, 0xa1, 0x66, 0x28, 0xd9, 0x24, 0xb2, 0x76, 0x5b, 0xa2, 0x49, 0x6d, 0x8b, 0xd1, 0x25, + 0x72, 0xf8, 0xf6, 0x64, 0x86, 0x68, 0x98, 0x16, 0xd4, 0xa4, 0x5c, 0xcc, 0x5d, 0x65, 0xb6, 0x92, + 0x6c, 0x70, 0x48, 0x50, 0xfd, 0xed, 0xb9, 0xda, 0x5e, 0x15, 0x46, 0x57, 0xa7, 0x8d, 0x9d, 0x84, + 0x90, 0xd8, 0xab, 0x00, 0x8c, 0xbc, 0xd3, 0x0a, 0xf7, 0xe4, 0x58, 0x05, 0xb8, 0xb3, 0x45, 0x06, + 0xd0, 0x2c, 0x1e, 0x8f, 0xca, 0x3f, 0x0f, 0x02, 0xc1, 0xaf, 0xbd, 0x03, 0x01, 0x13, 0x8a, 0x6b, + 0x3a, 0x91, 0x11, 0x41, 0x4f, 0x67, 0xdc, 0xea, 0x97, 0xf2, 0xcf, 0xce, 0xf0, 0xb4, 0xe6, 0x73, + 0x96, 0xac, 0x74, 0x22, 0xe7, 0xad, 0x35, 0x85, 0xe2, 0xf9, 0x37, 0xe8, 0x1c, 0x75, 0xdf, 0x6e, + 0x47, 0xf1, 0x1a, 0x71, 0x1d, 0x29, 0xc5, 0x89, 0x6f, 0xb7, 0x62, 0x0e, 0xaa, 0x18, 0xbe, 0x1b, + 0xfc, 0x56, 0x3e, 0x4b, 0xc6, 0xd2, 0x79, 0x20, 0x9a, 0xdb, 0xc0, 0xfe, 0x78, 0xcd, 0x5a, 0xf4, + 0x1f, 0xdd, 0xa8, 0x33, 0x88, 0x07, 0xc7, 0x31, 0xb1, 0x12, 0x10, 0x59, 0x27, 0x80, 0xec, 0x5f, + 0x60, 0x51, 0x7f, 0xa9, 0x19, 0xb5, 0x4a, 0x0d, 0x2d, 0xe5, 0x7a, 0x9f, 0x93, 0xc9, 0x9c, 0xef, + 0xa0, 0xe0, 0x3b, 0x4d, 0xae, 0x2a, 0xf5, 0xb0, 0xc8, 0xeb, 0xbb, 0x3c, 0x83, 0x53, 0x99, 0x61, + 0x17, 0x2b, 0x04, 0x7e, 0xba, 0x77, 0xd6, 0x26, 0xe1, 0x69, 0x14, 0x63, 0x55, 0x21, 0x0c, 0x7d +}; diff --git a/aes_invsbox.h b/aes_invsbox.h new file mode 100644 index 0000000..9206aec --- /dev/null +++ b/aes_invsbox.h @@ -0,0 +1,33 @@ +/* aes_invsbox.h */ +/* + This file is part of the Crypto-avr-lib/microcrypt-lib. + Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +/** + * \file aes_invsbox.h + * \email daniel.otte@rub.de + * \author Daniel Otte + * \date 2008-12-30 + * \license GPLv3 or later + * + */ +#ifndef AES_INVSBOX_H_ +#define AES_INVSBOX_H_ +#include + +extern uint8_t aes_invsbox[]; + +#endif diff --git a/aes_keyschedule.c b/aes_keyschedule.c new file mode 100644 index 0000000..59b7bf4 --- /dev/null +++ b/aes_keyschedule.c @@ -0,0 +1,105 @@ +/* aes_keyschedule.c */ +/* + This file is part of the Crypto-avr-lib/microcrypt-lib. + Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +/** + * \file aes_keyschedule.c + * \email daniel.otte@rub.de + * \author Daniel Otte + * \date 2008-12-30 + * \license GPLv3 or later + * + */ + +#include +#include "gf256mul.h" +#include "aes.h" +#include "aes_keyschedule.h" +#include "aes_sbox.h" +#include +#include + +static +void aes_rotword(void* a){ + uint8_t t; + t=((uint8_t*)a)[0]; + ((uint8_t*)a)[0] = ((uint8_t*)a)[1]; + ((uint8_t*)a)[1] = ((uint8_t*)a)[2]; + ((uint8_t*)a)[2] = ((uint8_t*)a)[3]; + ((uint8_t*)a)[3] = t; +} + +#include "uart.h" + +void aes_init(const void* key, uint16_t keysize_b, aes_genctx_t* ctx){ + uint8_t hi,i,nk; + uint8_t rc=1; + uint8_t tmp[4]; + nk=keysize_b/32; + hi=4*(nk+6+1); + memcpy(ctx, key, keysize_b/8); + i=keysize_b/32; + for(i=nk;ikey[0].ks))[i-1]; + // uart_putstr_P(PSTR("\r\nDBG: tmp = ")); + // uart_hexdump(tmp, 4); + if(i%nk){ + if(nk>6 && i%nk==4){ + tmp[0] = pgm_read_byte(aes_sbox+tmp[0]); + tmp[1] = pgm_read_byte(aes_sbox+tmp[1]); + tmp[2] = pgm_read_byte(aes_sbox+tmp[2]); + tmp[3] = pgm_read_byte(aes_sbox+tmp[3]); + // uart_putstr_P(PSTR("\r\nDBG: after sub = ")); + // uart_hexdump(tmp, 4); + } + } else { + aes_rotword(tmp); + // uart_putstr_P(PSTR("\r\nDBG: after rot = ")); + // uart_hexdump(tmp, 4); + tmp[0] = pgm_read_byte(aes_sbox+tmp[0]); + tmp[1] = pgm_read_byte(aes_sbox+tmp[1]); + tmp[2] = pgm_read_byte(aes_sbox+tmp[2]); + tmp[3] = pgm_read_byte(aes_sbox+tmp[3]); + // uart_putstr_P(PSTR("\r\nDBG: after sub = ")); + // uart_hexdump(tmp, 4); + tmp[0] ^= rc; + // uart_putstr_P(PSTR("\r\nDBG: after xor RC = ")); + // uart_hexdump(tmp, 4); + rc = gf256mul(2,rc,0x1b); + } + ((uint32_t*)(ctx->key[0].ks))[i] = ((uint32_t*)(ctx->key[0].ks))[i-nk] + ^ *((uint32_t*)tmp); + } + + uint8_t buffer[16]; + for(i=0; ikey[i].ks, 16); + aes_buffer2state(ctx->key[i].ks, buffer); + } +} + +void aes128_init(const void* key, aes128_ctx_t* ctx){ + aes_init(key, 128, (aes_genctx_t*)ctx); +} + +void aes192_init(const void* key, aes192_ctx_t* ctx){ + aes_init(key, 192, (aes_genctx_t*)ctx); +} + +void aes256_init(const void* key, aes256_ctx_t* ctx){ + aes_init(key, 256, (aes_genctx_t*)ctx); +} diff --git a/aes_keyschedule.h b/aes_keyschedule.h new file mode 100644 index 0000000..2e09066 --- /dev/null +++ b/aes_keyschedule.h @@ -0,0 +1,40 @@ +/* aes_keyschedule.h */ +/* + This file is part of the Crypto-avr-lib/microcrypt-lib. + Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +/** + * \file aes_keyschedule.h + * \email daniel.otte@rub.de + * \author Daniel Otte + * \date 2008-12-30 + * \license GPLv3 or later + * + */ + + +#ifndef AES_KEYSCHEDULE_H_ +#define AES_KEYSCHEDULE_H_ + +#include "aes.h" + +void aes_init(const void* key, uint16_t keysize_b, aes_genctx_t* ctx); + +void aes128_init(const void* key, aes128_ctx_t* ctx); +void aes192_init(const void* key, aes192_ctx_t* ctx); +void aes256_init(const void* key, aes256_ctx_t* ctx); + +#endif /* AES_KEYSCHEDULE_H_ */ diff --git a/aes_sbox.c b/aes_sbox.c new file mode 100644 index 0000000..85b08de --- /dev/null +++ b/aes_sbox.c @@ -0,0 +1,23 @@ +/* aes sbox */ + +#include +#include +uint8_t aes_sbox[256] PROGMEM = { + 0x63, 0x7c, 0x77, 0x7b, 0xf2, 0x6b, 0x6f, 0xc5, 0x30, 0x01, 0x67, 0x2b, 0xfe, 0xd7, 0xab, 0x76, + 0xca, 0x82, 0xc9, 0x7d, 0xfa, 0x59, 0x47, 0xf0, 0xad, 0xd4, 0xa2, 0xaf, 0x9c, 0xa4, 0x72, 0xc0, + 0xb7, 0xfd, 0x93, 0x26, 0x36, 0x3f, 0xf7, 0xcc, 0x34, 0xa5, 0xe5, 0xf1, 0x71, 0xd8, 0x31, 0x15, + 0x04, 0xc7, 0x23, 0xc3, 0x18, 0x96, 0x05, 0x9a, 0x07, 0x12, 0x80, 0xe2, 0xeb, 0x27, 0xb2, 0x75, + 0x09, 0x83, 0x2c, 0x1a, 0x1b, 0x6e, 0x5a, 0xa0, 0x52, 0x3b, 0xd6, 0xb3, 0x29, 0xe3, 0x2f, 0x84, + 0x53, 0xd1, 0x00, 0xed, 0x20, 0xfc, 0xb1, 0x5b, 0x6a, 0xcb, 0xbe, 0x39, 0x4a, 0x4c, 0x58, 0xcf, + 0xd0, 0xef, 0xaa, 0xfb, 0x43, 0x4d, 0x33, 0x85, 0x45, 0xf9, 0x02, 0x7f, 0x50, 0x3c, 0x9f, 0xa8, + 0x51, 0xa3, 0x40, 0x8f, 0x92, 0x9d, 0x38, 0xf5, 0xbc, 0xb6, 0xda, 0x21, 0x10, 0xff, 0xf3, 0xd2, + 0xcd, 0x0c, 0x13, 0xec, 0x5f, 0x97, 0x44, 0x17, 0xc4, 0xa7, 0x7e, 0x3d, 0x64, 0x5d, 0x19, 0x73, + 0x60, 0x81, 0x4f, 0xdc, 0x22, 0x2a, 0x90, 0x88, 0x46, 0xee, 0xb8, 0x14, 0xde, 0x5e, 0x0b, 0xdb, + 0xe0, 0x32, 0x3a, 0x0a, 0x49, 0x06, 0x24, 0x5c, 0xc2, 0xd3, 0xac, 0x62, 0x91, 0x95, 0xe4, 0x79, + 0xe7, 0xc8, 0x37, 0x6d, 0x8d, 0xd5, 0x4e, 0xa9, 0x6c, 0x56, 0xf4, 0xea, 0x65, 0x7a, 0xae, 0x08, + 0xba, 0x78, 0x25, 0x2e, 0x1c, 0xa6, 0xb4, 0xc6, 0xe8, 0xdd, 0x74, 0x1f, 0x4b, 0xbd, 0x8b, 0x8a, + 0x70, 0x3e, 0xb5, 0x66, 0x48, 0x03, 0xf6, 0x0e, 0x61, 0x35, 0x57, 0xb9, 0x86, 0xc1, 0x1d, 0x9e, + 0xe1, 0xf8, 0x98, 0x11, 0x69, 0xd9, 0x8e, 0x94, 0x9b, 0x1e, 0x87, 0xe9, 0xce, 0x55, 0x28, 0xdf, + 0x8c, 0xa1, 0x89, 0x0d, 0xbf, 0xe6, 0x42, 0x68, 0x41, 0x99, 0x2d, 0x0f, 0xb0, 0x54, 0xbb, 0x16 +}; + diff --git a/aes_sbox.h b/aes_sbox.h new file mode 100644 index 0000000..3b222b6 --- /dev/null +++ b/aes_sbox.h @@ -0,0 +1,33 @@ +/* aes_sbox.h */ +/* + This file is part of the Crypto-avr-lib/microcrypt-lib. + Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +/** + * \file aes_sbox.h + * \email daniel.otte@rub.de + * \author Daniel Otte + * \date 2008-12-30 + * \license GPLv3 or later + * + */ +#ifndef AES_SBOX_H_ +#define AES_SBOX_H_ +#include + +extern uint8_t aes_sbox[]; + +#endif diff --git a/avr-makefile.inc b/avr-makefile.inc index d40f6c7..741ede5 100644 --- a/avr-makefile.inc +++ b/avr-makefile.inc @@ -17,8 +17,9 @@ TESTPREFIX = nessie- LIST_DIR = listings/ STAT_DIR = stats/ CC = avr-gcc +CSTD = c99 -override CFLAGS = -MMD -MF$(DEP_DIR)$(patsubst %.c,%.d,$(patsubst $(TESTSRC_DIR)%,%,$<)) -I. -gdwarf-2 -pedantic -std=c99 -Wall -Wstrict-prototypes $(OPTIMIZE) -mmcu=$(MCU_TARGET) $(DEFS) +override CFLAGS = -MMD -MF$(DEP_DIR)$(patsubst %.c,%.d,$(patsubst $(TESTSRC_DIR)%,%,$<)) -I. -gdwarf-2 -pedantic -std=$(CSTD) -Wall -Wstrict-prototypes $(OPTIMIZE) -mmcu=$(MCU_TARGET) $(DEFS) override LDFLAGS = -gdwarf-2 -Wl,-Map, override ASFLAGS = -mmcu=$(MCU_TARGET) -Wa,--gdwarf-2 diff --git a/mkfiles/aes.mk b/mkfiles/aes.mk new file mode 100644 index 0000000..1839453 --- /dev/null +++ b/mkfiles/aes.mk @@ -0,0 +1,16 @@ +# Makefile for AES +ALGO_NAME := AES_C + +# comment out the following line for removement of AES from the build process +BLOCK_CIPHERS += $(ALGO_NAME) + + +$(ALGO_NAME)_OBJ := aes_enc.o aes_dec.o aes_sbox.o aes_invsbox.o aes.o \ + aes_keyschedule.o gf256mul.o \ + aes128_enc.o aes128_dec.o aes192_enc.o aes192_dec.o \ + aes256_enc.o aes256_dec.o +$(ALGO_NAME)_TEST_BIN := main-aes-test.o debug.o uart.o serial-tools.o \ + nessie_bc_test.o nessie_common.o cli.o performance_test.o +$(ALGO_NAME)_NESSIE_TEST := test nessie +$(ALGO_NAME)_PERFORMANCE_TEST := performance + diff --git a/test_src/main-aes-test.c b/test_src/main-aes-test.c new file mode 100644 index 0000000..ef42626 --- /dev/null +++ b/test_src/main-aes-test.c @@ -0,0 +1,183 @@ +/* main-aes-test.c */ +/* + This file is part of the Crypto-avr-lib/microcrypt-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 . +*/ +/* + * AES test-suit + * +*/ + +#include "config.h" +#include "serial-tools.h" +#include "uart.h" +#include "debug.h" + +#include "aes.h" +#include "aes128_enc.h" +#include "aes128_dec.h" +#include "aes192_enc.h" +#include "aes192_dec.h" +#include "aes256_enc.h" +#include "aes256_dec.h" +#include "aes_keyschedule.h" + +#include "nessie_bc_test.h" +#include "cli.h" +#include "performance_test.h" + +#include +#include +#include + +char* cipher_name = "AES"; + +/***************************************************************************** + * additional validation-functions * + *****************************************************************************/ + +void testrun_nessie_aes(void){ + nessie_bc_ctx.blocksize_B = 16; + nessie_bc_ctx.keysize_b = 128; + nessie_bc_ctx.name = cipher_name; + nessie_bc_ctx.ctx_size_B = sizeof(aes128_ctx_t); + nessie_bc_ctx.cipher_enc = (nessie_bc_enc_fpt)aes128_enc; + nessie_bc_ctx.cipher_dec = (nessie_bc_dec_fpt)aes128_dec; + nessie_bc_ctx.cipher_genctx = (nessie_bc_gen_fpt)aes_init; + nessie_bc_run(); + + nessie_bc_ctx.keysize_b = 192; + nessie_bc_ctx.ctx_size_B = sizeof(aes192_ctx_t); + nessie_bc_ctx.cipher_enc = (nessie_bc_enc_fpt)aes192_enc; + nessie_bc_ctx.cipher_dec = (nessie_bc_dec_fpt)aes192_dec; + nessie_bc_run(); + + nessie_bc_ctx.keysize_b = 256; + nessie_bc_ctx.ctx_size_B = sizeof(aes256_ctx_t); + nessie_bc_ctx.cipher_enc = (nessie_bc_enc_fpt)aes256_enc; + nessie_bc_ctx.cipher_dec = (nessie_bc_dec_fpt)aes256_dec; + nessie_bc_run(); +} + +void testrun_test_aes(void){ + uint8_t key[16] = { 0x2b, 0x7e, 0x15, 0x16, + 0x28, 0xae, 0xd2, 0xa6, + 0xab, 0xf7, 0x15, 0x88, + 0x09, 0xcf, 0x4f, 0x3c }; + uint8_t data[16] = { 0x32, 0x43, 0xf6, 0xa8, + 0x88, 0x5a, 0x30, 0x8d, + 0x31, 0x31, 0x98, 0xa2, + 0xe0, 0x37, 0x07, 0x34 }; + aes128_ctx_t ctx; + aes128_init(key, &ctx); + uart_putstr_P(PSTR("\r\n\r\n cipher test (FIPS 197):\r\n key: ")); + uart_hexdump(key, 16); + uart_putstr_P(PSTR("\r\n plaintext: ")); + uart_hexdump(data, 16); + aes128_enc(data, &ctx); + uart_putstr_P(PSTR("\r\n ciphertext: ")); + uart_hexdump(data, 16); + + +} + +void testrun_testkey_aes(void){ + uint8_t key[16] = { 0x2b, 0x7e, 0x15, 0x16, + 0x28, 0xae, 0xd2, 0xa6, + 0xab, 0xf7, 0x15, 0x88, + 0x09, 0xcf, 0x4f, 0x3c}; + aes128_ctx_t ctx; + uint8_t i; + aes128_init(key, &ctx); + uart_putstr_P(PSTR("\r\n\r\n keyschedule test (FIPS 197):\r\n key: ")); + uart_hexdump(key, 16); + for(i=0; i<11; ++i){ + uart_putstr_P(PSTR("\r\n index: ")); + uart_putc('0'+i/10); + uart_putc('0'+i%10); + uart_putstr_P(PSTR(" roundkey ")); + uart_hexdump(ctx.key[i].ks, 16); + } +} + +void testrun_performance_aes(void){ + uint64_t t; + char str[16]; + uint8_t key[32], data[16]; + aes128_ctx_t ctx; + + calibrateTimer(); + print_overhead(); + + memset(key, 0, 32); + memset(data, 0, 16); + + startTimer(1); + aes128_init(key, &ctx); + t = stopTimer(); + uart_putstr_P(PSTR("\r\n\tctx-gen time: ")); + ultoa((unsigned long)t, str, 10); + uart_putstr(str); + + + startTimer(1); + aes128_enc(data, &ctx); + t = stopTimer(); + uart_putstr_P(PSTR("\r\n\tencrypt time: ")); + ultoa((unsigned long)t, str, 10); + uart_putstr(str); + + + startTimer(1); + aes128_dec(data, &ctx); + t = stopTimer(); + uart_putstr_P(PSTR("\r\n\tdecrypt time: ")); + ultoa((unsigned long)t, str, 10); + uart_putstr(str); + + uart_putstr_P(PSTR("\r\n")); +} +/***************************************************************************** + * main * + *****************************************************************************/ + +int main (void){ + char str[20]; + DEBUG_INIT(); + uart_putstr("\r\n"); + + uart_putstr_P(PSTR("\r\n\r\nCrypto-VS (")); + uart_putstr(cipher_name); + uart_putstr_P(PSTR(")\r\nloaded and running\r\n")); + + PGM_P u = PSTR("nessie\0test\0testkey\0performance\0"); + void_fpt v[] = {testrun_nessie_aes, + testrun_test_aes, + testrun_testkey_aes, + testrun_performance_aes}; + + while(1){ + if (!getnextwordn(str,20)){DEBUG_S("DBG: W1\r\n"); goto error;} + if(execcommand_d0_P(str, u, v)<0){ + uart_putstr_P(PSTR("\r\nunknown command\r\n")); + } + continue; + error: + uart_putstr("ERROR\r\n"); + } + +} + diff --git a/testvectors/Rijndael-128-128.unverified.test-vectors b/testvectors/Rijndael-128-128.unverified.test-vectors new file mode 100644 index 0000000..ea47c64 --- /dev/null +++ b/testvectors/Rijndael-128-128.unverified.test-vectors @@ -0,0 +1,7232 @@ +******************************************************************************** +*Project NESSIE - New European Schemes for Signature, Integrity, and Encryption* +******************************************************************************** + +Primitive Name: Rijndael +======================== +Key size: 128 bits +Block size: 128 bits + +Test vectors -- set 1 +===================== + +Set 1, vector# 0: + key=80000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=0EDD33D3C621E546455BD8BA1418BEC8 + decrypted=00000000000000000000000000000000 + Iterated 100 times=330CBD8A445FF956AE4F9DD3FF84A388 + Iterated 1000 times=9C90AD5F26A9D68592E9FA072173178F + +Set 1, vector# 1: + key=40000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=C0CC0C5DA5BD63ACD44A80774FAD5222 + decrypted=00000000000000000000000000000000 + Iterated 100 times=012A26099AB01DE127A884A53E01C335 + Iterated 1000 times=D1CB93246484E7703B86407F39A4AB67 + +Set 1, vector# 2: + key=20000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=2F0B4B71BC77851B9CA56D42EB8FF080 + decrypted=00000000000000000000000000000000 + Iterated 100 times=0403C1A536EF743D8C4A91CFA8DF942F + Iterated 1000 times=BA2A3BDF37ADC1234F1C981E3D11B1B6 + +Set 1, vector# 3: + key=10000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=6B1E2FFFE8A114009D8FE22F6DB5F876 + decrypted=00000000000000000000000000000000 + Iterated 100 times=1418E68484B9C6C1FCC5AAB7AB66886E + Iterated 1000 times=A198CB30347BC4C786C8FFCAF3455B67 + +Set 1, vector# 4: + key=08000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=9AA042C315F94CBB97B62202F83358F5 + decrypted=00000000000000000000000000000000 + Iterated 100 times=906902659346184B3AEA4BAD8CCF0FA7 + Iterated 1000 times=6ECFB32309135ECF480E67D58D1E4342 + +Set 1, vector# 5: + key=04000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=DBE01DE67E346A800C4C4B4880311DE4 + decrypted=00000000000000000000000000000000 + Iterated 100 times=F3AB7D502A1C41804A63CD344A973EF5 + Iterated 1000 times=52E25B7E53C872032A155F425099071E + +Set 1, vector# 6: + key=02000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=C117D2238D53836ACD92DDCDB85D6A21 + decrypted=00000000000000000000000000000000 + Iterated 100 times=BE2FCE4E0C01A4D93FC1DE8E260A0047 + Iterated 1000 times=4086FC94EA93C3580C6AA49ED0FA281A + +Set 1, vector# 7: + key=01000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=DC0ED85DF9611ABB7249CDD168C5467E + decrypted=00000000000000000000000000000000 + Iterated 100 times=6338C0EBF41D6D310CF7CAE3021C2C31 + Iterated 1000 times=8D75A3F5F225C07383FF430ADD35B2AC + +Set 1, vector# 8: + key=00800000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=807D678FFF1F56FA92DE3381904842F2 + decrypted=00000000000000000000000000000000 + Iterated 100 times=77538C2550E3AA2759064F52D860D1FC + Iterated 1000 times=090B34FC05E93315445C0EB5A7B6B803 + +Set 1, vector# 9: + key=00400000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=0E53B3FCAD8E4B130EF73AEB957FB402 + decrypted=00000000000000000000000000000000 + Iterated 100 times=B15F08E8B5DB67A3E565D26231F77C3C + Iterated 1000 times=4D2D5989E721A1E49F861FB4B4A7AE29 + +Set 1, vector# 10: + key=00200000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=969FFD3B7C35439417E7BDE923035D65 + decrypted=00000000000000000000000000000000 + Iterated 100 times=2D3E1233CADFC814FD772619E53D2A2B + Iterated 1000 times=1BEFAEF571D8E84A62FB55999F0BF8CE + +Set 1, vector# 11: + key=00100000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=A99B512C19CA56070491166A1503BF15 + decrypted=00000000000000000000000000000000 + Iterated 100 times=05D1CA519780ED9E0988DC6F8450935E + Iterated 1000 times=0CE72D4306464B8B09E974E79B9219BA + +Set 1, vector# 12: + key=00080000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=6E9985252126EE344D26AE369D2327E3 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5240AA8C1AE46305665044527826F29F + Iterated 1000 times=D6DD7B534ED6F72944C695E91437835F + +Set 1, vector# 13: + key=00040000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=B85F4809F904C275491FCDCD1610387E + decrypted=00000000000000000000000000000000 + Iterated 100 times=08AB12E51F966DD0C61681A00EC55733 + Iterated 1000 times=7A99833A4A86DF6E661313DD613589D9 + +Set 1, vector# 14: + key=00020000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=ED365B8D7D20C1F5D53FB94DD211DF7B + decrypted=00000000000000000000000000000000 + Iterated 100 times=67680AE999F5F428C8FAB6DF7582D1A6 + Iterated 1000 times=5CFD2B37920DC439FE974A8A82E16D5C + +Set 1, vector# 15: + key=00010000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=B3A575E86A8DB4A7135D604C43304896 + decrypted=00000000000000000000000000000000 + Iterated 100 times=6AF3BD91695DB8CCF15F608897752D84 + Iterated 1000 times=D1A43D244CE7AA8EA076AF9FBB4BF54D + +Set 1, vector# 16: + key=00008000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=89704BCB8E69F846259EB0ACCBC7F8A2 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5EC9BF3135D8604F9648157375B09F82 + Iterated 1000 times=31C1B699EB3D77F23A0A5EB93908FB77 + +Set 1, vector# 17: + key=00004000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=C56EE7C92197861F10D7A92B90882055 + decrypted=00000000000000000000000000000000 + Iterated 100 times=48DA37875F808DF9BBD2EDA902C72CAC + Iterated 1000 times=A30145D52E4A3178AF2DADA1DFF78F5A + +Set 1, vector# 18: + key=00002000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=92F296F6846E0EAF9422A5A24A08B069 + decrypted=00000000000000000000000000000000 + Iterated 100 times=8CB7A89B39556B64515B3CE28B17A392 + Iterated 1000 times=A55586F3C8259A8AEC42A536695B79EB + +Set 1, vector# 19: + key=00001000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=E67E32BB8F11DEB8699318BEE9E91A60 + decrypted=00000000000000000000000000000000 + Iterated 100 times=6BA907D160F1718B8F3306782BFC96FA + Iterated 1000 times=2338BE8A8F3D8719A46AE61253F8629A + +Set 1, vector# 20: + key=00000800000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=B08EEF85EAF626DD91B65C4C3A97D92B + decrypted=00000000000000000000000000000000 + Iterated 100 times=C03C02AC529F23E93AFC79EBB37FE6CF + Iterated 1000 times=DAD08AA875782E36410C2321D5B670E7 + +Set 1, vector# 21: + key=00000400000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=661083A6ADDCE79BB4E0859AB5538013 + decrypted=00000000000000000000000000000000 + Iterated 100 times=0424203445DB9A4A316EB52BFE453624 + Iterated 1000 times=4A047B335A8F835176E29C3F55987E76 + +Set 1, vector# 22: + key=00000200000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=55DFE2941E0EB10AFC0B333BD34DE1FE + decrypted=00000000000000000000000000000000 + Iterated 100 times=B926DC96395B6FBCB843A621FE9050CF + Iterated 1000 times=43D6008CC3AE06372563333E5AC224EF + +Set 1, vector# 23: + key=00000100000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=6BFE5945E715C9662609770F8846087A + decrypted=00000000000000000000000000000000 + Iterated 100 times=210095204B63BA4F707904569A33D504 + Iterated 1000 times=2FE10C77944FC79EABF8E9CE73F3F4E3 + +Set 1, vector# 24: + key=00000080000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=79848E9C30C2F8CDA8B325F7FED2B139 + decrypted=00000000000000000000000000000000 + Iterated 100 times=34C2F1E6C3B6F5082B08E4553265CBEC + Iterated 1000 times=394C2AFABD6EC353CD1EBFDA30AFFD8C + +Set 1, vector# 25: + key=00000040000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=7A713A53B99FEF34AC04DEEF80965BD0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=9930874CFA24D5E8BC3D4686C86A0A5E + Iterated 1000 times=98F75AAC66D1AFC376535CFC838E9174 + +Set 1, vector# 26: + key=00000020000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=18144A2B46620D32C3C32CE52D49257F + decrypted=00000000000000000000000000000000 + Iterated 100 times=352E70F829433E41202CB2264FBBEF32 + Iterated 1000 times=06075215B1A6421DF0023FACFE79FE11 + +Set 1, vector# 27: + key=00000010000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=872E827C70887C80749F7B8BB1847C7E + decrypted=00000000000000000000000000000000 + Iterated 100 times=2AA34227D86FA249134964572CB2BDA5 + Iterated 1000 times=4C5D8828F4235A437BAA8B947004EB67 + +Set 1, vector# 28: + key=00000008000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=6B86C6A4FE6A60C59B1A3102F8DE49F3 + decrypted=00000000000000000000000000000000 + Iterated 100 times=7B38CF6E14C53EB570C053FC3B7A34B3 + Iterated 1000 times=A6964F6E558D37FB79F386060477ACF3 + +Set 1, vector# 29: + key=00000004000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=9848BB3DFDF6F532F094679A4C231A20 + decrypted=00000000000000000000000000000000 + Iterated 100 times=51BFD07AC8BB78A7525117F420984581 + Iterated 1000 times=7BBF71B8923384A625884EDC08BF956A + +Set 1, vector# 30: + key=00000002000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=925AD528E852E329B2091CD3F1C2BCEE + decrypted=00000000000000000000000000000000 + Iterated 100 times=B8687D0401BDD825F2AAEFFC436F5805 + Iterated 1000 times=1F00510EBB56AA383045D64662A5F61E + +Set 1, vector# 31: + key=00000001000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=80DF436544B0DD596722E46792A40CD8 + decrypted=00000000000000000000000000000000 + Iterated 100 times=774EBDAAE41AD526346CC0A2F8057963 + Iterated 1000 times=62A841125A039694F6BC9BB221F87A6A + +Set 1, vector# 32: + key=00000000800000000000000000000000 + plain=00000000000000000000000000000000 + cipher=525DAF18F93E83E1E74BBBDDE4263BBA + decrypted=00000000000000000000000000000000 + Iterated 100 times=7F15E9204B56FB309C921CC9CAC6F22B + Iterated 1000 times=989A6D3E0CC2D57B36C4DC686546367C + +Set 1, vector# 33: + key=00000000400000000000000000000000 + plain=00000000000000000000000000000000 + cipher=F65C9D2EE485D24701FFA3313B9D5BE6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=132751EDAA0D085134E4B745596C368A + Iterated 1000 times=ECA716A2B1A333E49F2C418EFE2CB3E6 + +Set 1, vector# 34: + key=00000000200000000000000000000000 + plain=00000000000000000000000000000000 + cipher=E4FC8D8BCA06425BDF94AFA40FCC14BA + decrypted=00000000000000000000000000000000 + Iterated 100 times=027607521F08C897E6E1841B1AA1BD88 + Iterated 1000 times=CF4AA28FF9579270C3E92B83D6E16FBE + +Set 1, vector# 35: + key=00000000100000000000000000000000 + plain=00000000000000000000000000000000 + cipher=A53F0A5CA1E4E6440BB975FF320DE6F8 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5AD8817D52A60355F5A2793C983DE1EC + Iterated 1000 times=ACF39B82906CBB3DF9C0B25E0601B1A1 + +Set 1, vector# 36: + key=00000000080000000000000000000000 + plain=00000000000000000000000000000000 + cipher=D55313B9394080462E87E02899B553F0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=C4337BBEAEC50D9EC8A926F901C90D52 + Iterated 1000 times=1EC0864A8AE97924C7988C3EB58B8E63 + +Set 1, vector# 37: + key=00000000040000000000000000000000 + plain=00000000000000000000000000000000 + cipher=34A71D761F71BCD344384C7F97D27906 + decrypted=00000000000000000000000000000000 + Iterated 100 times=7432B7BAC9BF381C9C08F25AD9C2C7FF + Iterated 1000 times=0D8D331B2EFD17EB3CCD8580A3DD29B1 + +Set 1, vector# 38: + key=00000000020000000000000000000000 + plain=00000000000000000000000000000000 + cipher=233F3D819599612EBC89580245C996A8 + decrypted=00000000000000000000000000000000 + Iterated 100 times=1F875DDED356A930C342C4FAF1D68E67 + Iterated 1000 times=8503621607FDBF0FA89EEFC96C98E2D2 + +Set 1, vector# 39: + key=00000000010000000000000000000000 + plain=00000000000000000000000000000000 + cipher=B4F1374E5268DBCB676E447529E53F89 + decrypted=00000000000000000000000000000000 + Iterated 100 times=1557A5E1DFB8FECD6B859C1D4F2BB419 + Iterated 1000 times=FA2AEAFEC4965923BC8A18DBCC52CE20 + +Set 1, vector# 40: + key=00000000008000000000000000000000 + plain=00000000000000000000000000000000 + cipher=0816BD27861D2BA891D1044E39951E96 + decrypted=00000000000000000000000000000000 + Iterated 100 times=27146370DB725E06C18C22CADB440A02 + Iterated 1000 times=012AE6B73C34F7BF681A5AF5C163EE64 + +Set 1, vector# 41: + key=00000000004000000000000000000000 + plain=00000000000000000000000000000000 + cipher=F3BE9EA3F10C73CA64FDE5DB13A951D1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=6835E47BCDA7226526B6DA6F48C11E93 + Iterated 1000 times=CE7ED9472ADFE7A4CB1C9E3C5B98E4C9 + +Set 1, vector# 42: + key=00000000002000000000000000000000 + plain=00000000000000000000000000000000 + cipher=2448086A8106FBD03048DDF857D3F1C8 + decrypted=00000000000000000000000000000000 + Iterated 100 times=F2455ABA43962C7DD5672CE87754C64F + Iterated 1000 times=0BE64160A31455C218F843DC8EB29AC3 + +Set 1, vector# 43: + key=00000000001000000000000000000000 + plain=00000000000000000000000000000000 + cipher=670756E65BEC8B68F03D77CDCDCE7B91 + decrypted=00000000000000000000000000000000 + Iterated 100 times=86517BF09EF3979C5E501B096C33D94E + Iterated 1000 times=BCFF3F5F49950BCB83573F04E6377F13 + +Set 1, vector# 44: + key=00000000000800000000000000000000 + plain=00000000000000000000000000000000 + cipher=EF968CF0D36FD6C6EFFD225F6FB44CA9 + decrypted=00000000000000000000000000000000 + Iterated 100 times=97988E59B1A323006449BB964CF5BFAC + Iterated 1000 times=5E292EFB66A33AF2758000B969B044F4 + +Set 1, vector# 45: + key=00000000000400000000000000000000 + plain=00000000000000000000000000000000 + cipher=2E8767157922E3826DDCEC1B0CC1E105 + decrypted=00000000000000000000000000000000 + Iterated 100 times=EDB529E01F1F0F2685A1044D4FF8DBD7 + Iterated 1000 times=A256DCA777C8C1D05DC832A755987538 + +Set 1, vector# 46: + key=00000000000200000000000000000000 + plain=00000000000000000000000000000000 + cipher=78CE7EEC670E45A967BAB17E26A1AD36 + decrypted=00000000000000000000000000000000 + Iterated 100 times=6E1077F82331C503393796EC5901118A + Iterated 1000 times=2446BC76BD484C554DC9C818609EE5F9 + +Set 1, vector# 47: + key=00000000000100000000000000000000 + plain=00000000000000000000000000000000 + cipher=3C5CEE825655F098F6E81A2F417DA3FB + decrypted=00000000000000000000000000000000 + Iterated 100 times=18992897445EAD922E2F7636424A26F2 + Iterated 1000 times=BCE93B3A5EF485A56F0366BA632CCA5B + +Set 1, vector# 48: + key=00000000000080000000000000000000 + plain=00000000000000000000000000000000 + cipher=67BFDB431DCE1292200BC6F5207ADB12 + decrypted=00000000000000000000000000000000 + Iterated 100 times=026B8EBDC9CDEF86986DF6F047794B43 + Iterated 1000 times=384C83791D416B620777DAA3F9954B8D + +Set 1, vector# 49: + key=00000000000040000000000000000000 + plain=00000000000000000000000000000000 + cipher=7540FD38E447C0779228548747843A6F + decrypted=00000000000000000000000000000000 + Iterated 100 times=51ABD2FAA7183954185E47BA982E1E8E + Iterated 1000 times=3AC58D1CE4322132953F5177CA944C91 + +Set 1, vector# 50: + key=00000000000020000000000000000000 + plain=00000000000000000000000000000000 + cipher=B85E513301F8A936EA9EC8A21A85B5E6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=7EFBB8C8164D828AA76A6406275AFD2D + Iterated 1000 times=02F9F420A8BAA0BF79200F28D588C17A + +Set 1, vector# 51: + key=00000000000010000000000000000000 + plain=00000000000000000000000000000000 + cipher=04C67DBF16C11427D507A455DE2C9BC5 + decrypted=00000000000000000000000000000000 + Iterated 100 times=0086645F9A40F45BB05B17A8BDADB373 + Iterated 1000 times=758D257764180B625D1391E12A0D8004 + +Set 1, vector# 52: + key=00000000000008000000000000000000 + plain=00000000000000000000000000000000 + cipher=03F75EB8959E55079CFFB4FF149A37B6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=1537583C155B3781C404DFF503EB776D + Iterated 1000 times=44FC3B7FF8B03E9D063DCA0F763E4C65 + +Set 1, vector# 53: + key=00000000000004000000000000000000 + plain=00000000000000000000000000000000 + cipher=74550287F666C63BB9BC7838433434B0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=13AF7223C8B06E716C7BD1BF3A5DE450 + Iterated 1000 times=46EFBC30E19F8E0023D679AE5DB8F441 + +Set 1, vector# 54: + key=00000000000002000000000000000000 + plain=00000000000000000000000000000000 + cipher=7D537200195EBC3AEFD1EAAB1C385221 + decrypted=00000000000000000000000000000000 + Iterated 100 times=2D45D9E0E2D0241E663C1153123B0646 + Iterated 1000 times=E7BF6CB2A2DBB30210A3436421E6EDF5 + +Set 1, vector# 55: + key=00000000000001000000000000000000 + plain=00000000000000000000000000000000 + cipher=CE24E4D40C68A82B535CBD3C8E21652A + decrypted=00000000000000000000000000000000 + Iterated 100 times=5C1B13D8184127EA45DAD394526CF377 + Iterated 1000 times=614EA2682EE7F1BB87D1E1810CCC787A + +Set 1, vector# 56: + key=00000000000000800000000000000000 + plain=00000000000000000000000000000000 + cipher=AB20072405AA8FC40265C6F1F3DC8BC0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=EE15F59C78BF6D088315EB22D3211927 + Iterated 1000 times=72AD3BFE3F54ACA8D0B4105A4AB6C6E9 + +Set 1, vector# 57: + key=00000000000000400000000000000000 + plain=00000000000000000000000000000000 + cipher=6CFD2CF688F566B093F67B9B3839E80A + decrypted=00000000000000000000000000000000 + Iterated 100 times=3E13A3F007A7737405343561E0BFBF6A + Iterated 1000 times=A47C379EADDAEAE4F8DA7EAE47805E7A + +Set 1, vector# 58: + key=00000000000000200000000000000000 + plain=00000000000000000000000000000000 + cipher=BD95977E6B7239D407A012C5544BF584 + decrypted=00000000000000000000000000000000 + Iterated 100 times=D8EFA02414FF86F0B249EAE13185C13A + Iterated 1000 times=8B3D461AA45CB4937491496F29B33F00 + +Set 1, vector# 59: + key=00000000000000100000000000000000 + plain=00000000000000000000000000000000 + cipher=DF9C0130AC77E7C72C997F587B46DBE0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=9DC99FFF2867365B4351A55FD2E7EA9C + Iterated 1000 times=D32E40C33FD74D919AAA4102F185AB13 + +Set 1, vector# 60: + key=00000000000000080000000000000000 + plain=00000000000000000000000000000000 + cipher=E7F1B82CADC53A648798945B34EFEFF2 + decrypted=00000000000000000000000000000000 + Iterated 100 times=C0AE0CA9BEF4E3FF1D78F41477796EA7 + Iterated 1000 times=24019011D1E00F0E2D9764A9F8CF3D90 + +Set 1, vector# 61: + key=00000000000000040000000000000000 + plain=00000000000000000000000000000000 + cipher=932C6DBF69255CF13EDCDB72233ACEA3 + decrypted=00000000000000000000000000000000 + Iterated 100 times=4D134A1D65CCC7F3018E4A23EF562E34 + Iterated 1000 times=5501153248A273B6F996D992160AEEC4 + +Set 1, vector# 62: + key=00000000000000020000000000000000 + plain=00000000000000000000000000000000 + cipher=5C76002BC7206560EFE550C80B8F12CC + decrypted=00000000000000000000000000000000 + Iterated 100 times=F9DECA6966B0113402764003CF0E669F + Iterated 1000 times=DE745ADCD385C998586B6511AA9762BB + +Set 1, vector# 63: + key=00000000000000010000000000000000 + plain=00000000000000000000000000000000 + cipher=F6B7BDD1CAEEBAB574683893C4475484 + decrypted=00000000000000000000000000000000 + Iterated 100 times=2629F98C712A93F78BE8E281B6DBDCD9 + Iterated 1000 times=BB79490BA5D0FFD2B0681537395CA959 + +Set 1, vector# 64: + key=00000000000000008000000000000000 + plain=00000000000000000000000000000000 + cipher=A920E37CC6DC6B31DA8C0169569F5034 + decrypted=00000000000000000000000000000000 + Iterated 100 times=A05D411F9329EB2E8BD884B3A0AC3857 + Iterated 1000 times=53D90BFD46A151E2A7F7879F8C7AA9C9 + +Set 1, vector# 65: + key=00000000000000004000000000000000 + plain=00000000000000000000000000000000 + cipher=919380ECD9C778BC513148B0C28D65FD + decrypted=00000000000000000000000000000000 + Iterated 100 times=678B7F0F148EE55E8C2638580FAD7445 + Iterated 1000 times=A4786DFCEA1BC25C00D14B65046B28A8 + +Set 1, vector# 66: + key=00000000000000002000000000000000 + plain=00000000000000000000000000000000 + cipher=EE67308DD3F2D9E6C2170755E5784BE1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=A622A4BFACB120474C1476CE6EB83138 + Iterated 1000 times=EB086EA1EA1C80B60D9071F901DE79CE + +Set 1, vector# 67: + key=00000000000000001000000000000000 + plain=00000000000000000000000000000000 + cipher=3CC73E53B85609023A05E149B223AE09 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5E32F26B87039A1F5DF34CF81656C827 + Iterated 1000 times=82E7214352CAA8E08D89F4EC291A924E + +Set 1, vector# 68: + key=00000000000000000800000000000000 + plain=00000000000000000000000000000000 + cipher=983E8AF7CF05EBB28D71EB841C9406E6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=4BAF68FBFBF2B7B9196E4874FFE00F8B + Iterated 1000 times=9A637A076671AB78A4307578D0B5CA01 + +Set 1, vector# 69: + key=00000000000000000400000000000000 + plain=00000000000000000000000000000000 + cipher=0F3099B2D31FA5299EE5BF43193287FC + decrypted=00000000000000000000000000000000 + Iterated 100 times=5E21E9656E39FECE41CF011BBA298FE7 + Iterated 1000 times=9F7BAEE60FE3940C5C0A209EFF4154BB + +Set 1, vector# 70: + key=00000000000000000200000000000000 + plain=00000000000000000000000000000000 + cipher=B763D84F38C27FE6931DCEB6715D4DB6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=F050778B16D317420C26C3711720EE2A + Iterated 1000 times=568E7B1ED2516A0865ECD380662F77F4 + +Set 1, vector# 71: + key=00000000000000000100000000000000 + plain=00000000000000000000000000000000 + cipher=5AE3C9B0E3CC29C0C61565CD01F8A248 + decrypted=00000000000000000000000000000000 + Iterated 100 times=DA18FF5C9B110967A7C266622FB67CA5 + Iterated 1000 times=11ACAA26E8FB1F2ADC7437D3EB1267BB + +Set 1, vector# 72: + key=00000000000000000080000000000000 + plain=00000000000000000000000000000000 + cipher=F58083572CD90981958565D48D2DEE25 + decrypted=00000000000000000000000000000000 + Iterated 100 times=4292106C3DA468960B7EDEE4F00380B9 + Iterated 1000 times=792656FE38F589273AEC2E27740DD21F + +Set 1, vector# 73: + key=00000000000000000040000000000000 + plain=00000000000000000000000000000000 + cipher=7E6255EEF8F70C0EF10337AAB1CCCEF8 + decrypted=00000000000000000000000000000000 + Iterated 100 times=7294E826A0B1AED80C02D4F0FF620DFE + Iterated 1000 times=45156935C5FA8FADA7A86FD181127863 + +Set 1, vector# 74: + key=00000000000000000020000000000000 + plain=00000000000000000000000000000000 + cipher=AAD4BAC34DB22821841CE2F631961902 + decrypted=00000000000000000000000000000000 + Iterated 100 times=9318D08AE5F33EE83909409E9A75AE31 + Iterated 1000 times=4AEAB2AE5F5BBE0DECDCB8B51DA9D6C1 + +Set 1, vector# 75: + key=00000000000000000010000000000000 + plain=00000000000000000000000000000000 + cipher=D7431C0409BB1441BA9C6858DC7D4E81 + decrypted=00000000000000000000000000000000 + Iterated 100 times=A32AF70C92B49096534DECA93C32D0AE + Iterated 1000 times=3CA7A28207CFEBA0DFFEEF119C450B36 + +Set 1, vector# 76: + key=00000000000000000008000000000000 + plain=00000000000000000000000000000000 + cipher=EF9298C65E339F6E801A59C626456993 + decrypted=00000000000000000000000000000000 + Iterated 100 times=394F72F9488EAEC824A1B2F4C7743F90 + Iterated 1000 times=B337767F31543C5EACFEE0090AFCD63E + +Set 1, vector# 77: + key=00000000000000000004000000000000 + plain=00000000000000000000000000000000 + cipher=53FE29F68FF541ABC3F0EF3350B72F7E + decrypted=00000000000000000000000000000000 + Iterated 100 times=7D2994BD841511E55BF5824A91E5F755 + Iterated 1000 times=FE7349655647C32082E910F7FAB24B55 + +Set 1, vector# 78: + key=00000000000000000002000000000000 + plain=00000000000000000000000000000000 + cipher=F6BBA5C10DB02529E2C2DA3FB582CC14 + decrypted=00000000000000000000000000000000 + Iterated 100 times=B39AD2E221FB196A4BE3D09290F73337 + Iterated 1000 times=4C51CCDAB46D5D59FC181CC0BBAF6D3C + +Set 1, vector# 79: + key=00000000000000000001000000000000 + plain=00000000000000000000000000000000 + cipher=E4239AA37FC531A386DAD1126FC0E9CD + decrypted=00000000000000000000000000000000 + Iterated 100 times=FCDFEBD37D439CAE21A9573DBB33F15F + Iterated 1000 times=4A015A465DC065C974B8FDD7ACA452DF + +Set 1, vector# 80: + key=00000000000000000000800000000000 + plain=00000000000000000000000000000000 + cipher=8F7758F857D15BBE7BFD0E416404C365 + decrypted=00000000000000000000000000000000 + Iterated 100 times=926ADB0D3D5328590CEEBD2AFC900CF9 + Iterated 1000 times=E47C28821F8647036C459EC5A270825F + +Set 1, vector# 81: + key=00000000000000000000400000000000 + plain=00000000000000000000000000000000 + cipher=D273EB57C687BCD1B4EA7218A509E7B8 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5CA891E9ED2AF76BA595E5ED9BCFF369 + Iterated 1000 times=378C942E2977B9E124BAA18F2A286A55 + +Set 1, vector# 82: + key=00000000000000000000200000000000 + plain=00000000000000000000000000000000 + cipher=65D64F8D76E8B3423FA25C4EB58A210A + decrypted=00000000000000000000000000000000 + Iterated 100 times=6E986C52589350A08F59FBCF4C181030 + Iterated 1000 times=174C00D02FC8E6E8F592B3E590DE1FC7 + +Set 1, vector# 83: + key=00000000000000000000100000000000 + plain=00000000000000000000000000000000 + cipher=623D802B4EC450D66A16625702FCDBE0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=4BA6E3B66A29338D2BB5F995803036C8 + Iterated 1000 times=F1865F626CC333FB9F2E36DAAAC46FD5 + +Set 1, vector# 84: + key=00000000000000000000080000000000 + plain=00000000000000000000000000000000 + cipher=7496460CB28E5791BAEAF9B68FB00022 + decrypted=00000000000000000000000000000000 + Iterated 100 times=3C57547021D66EED8189A790516F4F09 + Iterated 1000 times=077BCDBCAAB38E0E8A0CE3F1A666107E + +Set 1, vector# 85: + key=00000000000000000000040000000000 + plain=00000000000000000000000000000000 + cipher=34EA600F18BB0694B41681A49D510C1D + decrypted=00000000000000000000000000000000 + Iterated 100 times=14F1CD12B7B93AA10BE6E2F6F1A43272 + Iterated 1000 times=C1C019FC65AE40661844EE2E7C7A2789 + +Set 1, vector# 86: + key=00000000000000000000020000000000 + plain=00000000000000000000000000000000 + cipher=5F8FF0D47D5766D29B5D6E8F46423BD8 + decrypted=00000000000000000000000000000000 + Iterated 100 times=D5EFC8246AD7ABFD6703DE8B84A75513 + Iterated 1000 times=2D809975F8B215F1A5E657216DE70D69 + +Set 1, vector# 87: + key=00000000000000000000010000000000 + plain=00000000000000000000000000000000 + cipher=225F9286C5928BF09F84D3F93F541959 + decrypted=00000000000000000000000000000000 + Iterated 100 times=4B5461FCAE67F56956100516F8957107 + Iterated 1000 times=454CD7B7F64578C1959B0ED79F062429 + +Set 1, vector# 88: + key=00000000000000000000008000000000 + plain=00000000000000000000000000000000 + cipher=B21E90D25DF383416A5F072CEBEB1FFB + decrypted=00000000000000000000000000000000 + Iterated 100 times=E20FE3F2FE14CF2CB088A0F7FC54892D + Iterated 1000 times=7A54ECDB56A40E6465212DF03DAF9DF4 + +Set 1, vector# 89: + key=00000000000000000000004000000000 + plain=00000000000000000000000000000000 + cipher=4AEFCDA089318125453EB9E8EB5E492E + decrypted=00000000000000000000000000000000 + Iterated 100 times=D9ED4EA303EC8EBBB46AA8BECF3004A1 + Iterated 1000 times=536A807B04231AA1A314944DBC513DD4 + +Set 1, vector# 90: + key=00000000000000000000002000000000 + plain=00000000000000000000000000000000 + cipher=4D3E75C6CD40EC4869BC85158591ADB8 + decrypted=00000000000000000000000000000000 + Iterated 100 times=A4FFEFD30F998F4B3A1B64CE03F0A66E + Iterated 1000 times=B9E44B0A0306F883C61AEDD17F43F066 + +Set 1, vector# 91: + key=00000000000000000000001000000000 + plain=00000000000000000000000000000000 + cipher=63A8B904405436A1B99D7751866771B7 + decrypted=00000000000000000000000000000000 + Iterated 100 times=FB862FC969414D2FEFFF47C63E2D172B + Iterated 1000 times=4AC5FF591627EADC9164E8F8C35328D4 + +Set 1, vector# 92: + key=00000000000000000000000800000000 + plain=00000000000000000000000000000000 + cipher=64F0DAAE47529199792EAE172BA53293 + decrypted=00000000000000000000000000000000 + Iterated 100 times=046828971CCADA02D55E3E8F5538C4DF + Iterated 1000 times=73DB97420B250BE6209B1CB7330CCC4B + +Set 1, vector# 93: + key=00000000000000000000000400000000 + plain=00000000000000000000000000000000 + cipher=C3EEF84BEA18225D515A8C852A9047EE + decrypted=00000000000000000000000000000000 + Iterated 100 times=463BAAB325130A8675B66B6CAD040F2B + Iterated 1000 times=1581168A239FAADAC1E8CA41FC2AB668 + +Set 1, vector# 94: + key=00000000000000000000000200000000 + plain=00000000000000000000000000000000 + cipher=A44AC422B47D47B81AF73B3E9AC9596E + decrypted=00000000000000000000000000000000 + Iterated 100 times=9E3FEF3F780B870042020D63719477CD + Iterated 1000 times=7DFD269706B0A0C83B71F545D3933324 + +Set 1, vector# 95: + key=00000000000000000000000100000000 + plain=00000000000000000000000000000000 + cipher=D16E04A8FBC435094F8D53ADF25F5084 + decrypted=00000000000000000000000000000000 + Iterated 100 times=6DC2C560C84B0B78169B0ECFBE3E791F + Iterated 1000 times=F646DF7ACC2F1321F3A947EDB4469E67 + +Set 1, vector# 96: + key=00000000000000000000000080000000 + plain=00000000000000000000000000000000 + cipher=EF13DC34BAB03E124EEAD8B6BF44B532 + decrypted=00000000000000000000000000000000 + Iterated 100 times=C9BF439002CB315F9D8478A1B4E11186 + Iterated 1000 times=754B49C581314659D3FBE610E752A900 + +Set 1, vector# 97: + key=00000000000000000000000040000000 + plain=00000000000000000000000000000000 + cipher=D94799075C24DCC067AF0D392049250D + decrypted=00000000000000000000000000000000 + Iterated 100 times=96B8EC0516A37DC1D73DAA92148AD67A + Iterated 1000 times=22E747973EC42CBAE96A17D07CEECA03 + +Set 1, vector# 98: + key=00000000000000000000000020000000 + plain=00000000000000000000000000000000 + cipher=14F431771EDDCE4764C21A2254B5E3C8 + decrypted=00000000000000000000000000000000 + Iterated 100 times=8961B07C406CEB1BE89F401C2C1D6E7C + Iterated 1000 times=3745D31B17893FC632D5C1C3EA1F3598 + +Set 1, vector# 99: + key=00000000000000000000000010000000 + plain=00000000000000000000000000000000 + cipher=7039329F36F2ED682B02991F28D64679 + decrypted=00000000000000000000000000000000 + Iterated 100 times=6597693F73133930B27441552358B96A + Iterated 1000 times=B21A8441A8CEB48B8976C7211C0FD1AA + +Set 1, vector#100: + key=00000000000000000000000008000000 + plain=00000000000000000000000000000000 + cipher=124EE24EDE5551639DB8B8B941F6141D + decrypted=00000000000000000000000000000000 + Iterated 100 times=AE4A2B55567BC1CDD84C5952E2A17315 + Iterated 1000 times=F4EBE9A9385F78FA2A8C82406E2684A1 + +Set 1, vector#101: + key=00000000000000000000000004000000 + plain=00000000000000000000000000000000 + cipher=C2852879A34D5184E478EC918B993FEE + decrypted=00000000000000000000000000000000 + Iterated 100 times=EB5CA63F474266E548FBD973EB580666 + Iterated 1000 times=773FE387A9995F5BC4396894DDE80E35 + +Set 1, vector#102: + key=00000000000000000000000002000000 + plain=00000000000000000000000000000000 + cipher=86A806A3525B93E432053C9AB5ABBEDF + decrypted=00000000000000000000000000000000 + Iterated 100 times=15D5355E1185C766B61B67B7E46BFE3A + Iterated 1000 times=ADB92EA774CA1580581042C406ABFEC5 + +Set 1, vector#103: + key=00000000000000000000000001000000 + plain=00000000000000000000000000000000 + cipher=C1609BF5A4F07E37C17A36366EC23ECC + decrypted=00000000000000000000000000000000 + Iterated 100 times=05C28F6815B61EE22F52AA73F92F9C49 + Iterated 1000 times=35067B314D7028A6005D5BEB51280EFF + +Set 1, vector#104: + key=00000000000000000000000000800000 + plain=00000000000000000000000000000000 + cipher=7E81E7CB92159A51FFCEA331B1E8EA53 + decrypted=00000000000000000000000000000000 + Iterated 100 times=A2EB57C4E29FC35A7198154F6B8B3532 + Iterated 1000 times=AAD698729C5EB6C6A7D6065F6780454F + +Set 1, vector#105: + key=00000000000000000000000000400000 + plain=00000000000000000000000000000000 + cipher=37A7BE002856C5A59A6E03EAFCE7729A + decrypted=00000000000000000000000000000000 + Iterated 100 times=A48F6B0A650CDC974677F9741CF479DC + Iterated 1000 times=49AA7F1C83D1C3ECECB2E1B858D2EF48 + +Set 1, vector#106: + key=00000000000000000000000000200000 + plain=00000000000000000000000000000000 + cipher=BDF98A5A4F91E890C9A1D1E5FAAB138F + decrypted=00000000000000000000000000000000 + Iterated 100 times=9A9B3C58356E72EB16EAF2CE5B479E7B + Iterated 1000 times=DC774EFC944EFE9C4D41F673B6F2F124 + +Set 1, vector#107: + key=00000000000000000000000000100000 + plain=00000000000000000000000000000000 + cipher=4E96ACB66E051F2BC739CC3D3E34A26B + decrypted=00000000000000000000000000000000 + Iterated 100 times=2944510C917F258D8E7309A7735ECB3B + Iterated 1000 times=45EFC1C76818076575E8FCC13E5A9B94 + +Set 1, vector#108: + key=00000000000000000000000000080000 + plain=00000000000000000000000000000000 + cipher=EE996CDD120EB86E21ECFA49E8E1FCF1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=B19226866F78163874ED14C7E73D539A + Iterated 1000 times=7BA291D9D0CF99E1DCD8CC0FC83DA7DA + +Set 1, vector#109: + key=00000000000000000000000000040000 + plain=00000000000000000000000000000000 + cipher=61B9E6B579DBF6070C351A1440DD85FF + decrypted=00000000000000000000000000000000 + Iterated 100 times=324CEB0CCD038B9ADF0965CE4761CA54 + Iterated 1000 times=7070F365A2961940D310442C16256190 + +Set 1, vector#110: + key=00000000000000000000000000020000 + plain=00000000000000000000000000000000 + cipher=AC369E484316440B40DFC83AA96E28E7 + decrypted=00000000000000000000000000000000 + Iterated 100 times=4B11DBE03E2CEEDE84F1B98A6C3B0A91 + Iterated 1000 times=5BF9C2CADAB155487511CC26514B41B8 + +Set 1, vector#111: + key=00000000000000000000000000010000 + plain=00000000000000000000000000000000 + cipher=0A2D16DE985C76D45C579C1159413BBE + decrypted=00000000000000000000000000000000 + Iterated 100 times=641BF20EF131B9E04D30E0F9B1928B74 + Iterated 1000 times=59266DCC6FEDD769659EFE40CF3134D4 + +Set 1, vector#112: + key=00000000000000000000000000008000 + plain=00000000000000000000000000000000 + cipher=DA3FDC38DA1D374FA4802CDA1A1C6B0F + decrypted=00000000000000000000000000000000 + Iterated 100 times=563F1B0C1EEFE6EE11E57C37000CBE5E + Iterated 1000 times=0D0A833BC19B9EF32F7D1826CB7983AF + +Set 1, vector#113: + key=00000000000000000000000000004000 + plain=00000000000000000000000000000000 + cipher=B842523D4C41C2211AFE43A5800ADCE3 + decrypted=00000000000000000000000000000000 + Iterated 100 times=C798D2DEAA7CD3174E28412C2C84F815 + Iterated 1000 times=A590B9A51C597D596196515912B451B1 + +Set 1, vector#114: + key=00000000000000000000000000002000 + plain=00000000000000000000000000000000 + cipher=9E2CDA90D8E992DBA6C73D8229567192 + decrypted=00000000000000000000000000000000 + Iterated 100 times=415205A2F2C7416331CC0CAD12D0956C + Iterated 1000 times=6DFB74EE38B611A6D410F1F6EA094414 + +Set 1, vector#115: + key=00000000000000000000000000001000 + plain=00000000000000000000000000000000 + cipher=D49583B781D9E20F5BE101415957FC49 + decrypted=00000000000000000000000000000000 + Iterated 100 times=66D377051FE4B3D1246D5723523FD803 + Iterated 1000 times=793F943E3F8757ABE7BC368C1957BAB6 + +Set 1, vector#116: + key=00000000000000000000000000000800 + plain=00000000000000000000000000000000 + cipher=EF09DA5C12B376E458B9B8670032498E + decrypted=00000000000000000000000000000000 + Iterated 100 times=746636688898EE5735EABD6CE39C9976 + Iterated 1000 times=4407FA856DBD9B9A830753CC5C38C556 + +Set 1, vector#117: + key=00000000000000000000000000000400 + plain=00000000000000000000000000000000 + cipher=A96BE0463DA774461A5E1D5A9DD1AC10 + decrypted=00000000000000000000000000000000 + Iterated 100 times=4F5ECDAD5D18A3CE8606FD62468138F1 + Iterated 1000 times=19C3F1DA62C546F3D4F0EE040CC64AC4 + +Set 1, vector#118: + key=00000000000000000000000000000200 + plain=00000000000000000000000000000000 + cipher=32CEE3341060790D2D4B1362EF397090 + decrypted=00000000000000000000000000000000 + Iterated 100 times=23DBB2B5B4436494B9AFB3BCE704488D + Iterated 1000 times=03CE8E754146EFE5DEDF4173FE61C4EE + +Set 1, vector#119: + key=00000000000000000000000000000100 + plain=00000000000000000000000000000000 + cipher=21CEA416A3D3359D2C4D58FB6A035F06 + decrypted=00000000000000000000000000000000 + Iterated 100 times=7BA589B1F4CE6D892C9B74EE607F331F + Iterated 1000 times=E95650B13504BE4926B4CFD5616E97DD + +Set 1, vector#120: + key=00000000000000000000000000000080 + plain=00000000000000000000000000000000 + cipher=172AEAB3D507678ECAF455C12587ADB7 + decrypted=00000000000000000000000000000000 + Iterated 100 times=2CC97FBD822E78F51440D03B25C27BB7 + Iterated 1000 times=3B21FEF167CE81B73A4A9807F0DFCB07 + +Set 1, vector#121: + key=00000000000000000000000000000040 + plain=00000000000000000000000000000000 + cipher=B6F897941EF8EBFF9FE80A567EF38478 + decrypted=00000000000000000000000000000000 + Iterated 100 times=66DCC38C41669503C7B42E7FA6649217 + Iterated 1000 times=E86F1231B9900A59C3B9DB6FB5195D7E + +Set 1, vector#122: + key=00000000000000000000000000000020 + plain=00000000000000000000000000000000 + cipher=A9723259D94A7DC662FB0C782CA3F1DD + decrypted=00000000000000000000000000000000 + Iterated 100 times=B1AA5832C3E731537A2271FD41792586 + Iterated 1000 times=CFF0DF7E56A4D1444199BA3378DDD1D3 + +Set 1, vector#123: + key=00000000000000000000000000000010 + plain=00000000000000000000000000000000 + cipher=2F91C984B9A4839F30001B9F430493B4 + decrypted=00000000000000000000000000000000 + Iterated 100 times=3B09481E66C1AFC132C668FC1E63B56A + Iterated 1000 times=345BFF584110DA5658D7BF3A6DA17510 + +Set 1, vector#124: + key=00000000000000000000000000000008 + plain=00000000000000000000000000000000 + cipher=0472406345A610B048CB99EE0EF3FA0F + decrypted=00000000000000000000000000000000 + Iterated 100 times=0B755BBE43A8912C52E908D58F7184BD + Iterated 1000 times=5DCFFA753C1A2805267BE65F126AAD03 + +Set 1, vector#125: + key=00000000000000000000000000000004 + plain=00000000000000000000000000000000 + cipher=F5F39086646F8C05ED16EFA4B617957C + decrypted=00000000000000000000000000000000 + Iterated 100 times=46692460B0C4217CA10CD90399E1CDBF + Iterated 1000 times=4BF1036DF0460E4C79D61F046D573FB8 + +Set 1, vector#126: + key=00000000000000000000000000000002 + plain=00000000000000000000000000000000 + cipher=26D50F485A30408D5AF47A5736292450 + decrypted=00000000000000000000000000000000 + Iterated 100 times=D50278EF08A882F30A8BD083A10EA4DF + Iterated 1000 times=DFCF9FD7AD4EAA7C514580C705C140EA + +Set 1, vector#127: + key=00000000000000000000000000000001 + plain=00000000000000000000000000000000 + cipher=0545AAD56DA2A97C3663D1432A3D1C84 + decrypted=00000000000000000000000000000000 + Iterated 100 times=431A588F93B5166A2273BDF6AF2BB852 + Iterated 1000 times=3404190E4DFCA1B5C8BADCC2431C56F6 + +Test vectors -- set 2 +===================== + +Set 2, vector# 0: + key=00000000000000000000000000000000 + plain=80000000000000000000000000000000 + cipher=3AD78E726C1EC02B7EBFE92B23D9EC34 + decrypted=80000000000000000000000000000000 + Iterated 100 times=690A23A652BD5FCABF7CE84B369E8ED4 + Iterated 1000 times=AEB75A7AFDF5837BFC12EB381FC624AF + +Set 2, vector# 1: + key=00000000000000000000000000000000 + plain=40000000000000000000000000000000 + cipher=45BC707D29E8204D88DFBA2F0B0CAD9B + decrypted=40000000000000000000000000000000 + Iterated 100 times=7ED34319D8CBEF6B5F2154FE48E6FD60 + Iterated 1000 times=9FD03D7869DF051825AA502A6E66BA76 + +Set 2, vector# 2: + key=00000000000000000000000000000000 + plain=20000000000000000000000000000000 + cipher=161556838018F52805CDBD6202002E3F + decrypted=20000000000000000000000000000000 + Iterated 100 times=7A4C17EBECF76338702F34029A4BD03B + Iterated 1000 times=71D8834872A5C1B9377D212AB1E350B9 + +Set 2, vector# 3: + key=00000000000000000000000000000000 + plain=10000000000000000000000000000000 + cipher=F5569B3AB6A6D11EFDE1BF0A64C6854A + decrypted=10000000000000000000000000000000 + Iterated 100 times=66C92A8E962637A1DE1F16507B7D27A6 + Iterated 1000 times=AA0F567198B81DD201914B76CAB324E7 + +Set 2, vector# 4: + key=00000000000000000000000000000000 + plain=08000000000000000000000000000000 + cipher=64E82B50E501FBD7DD4116921159B83E + decrypted=08000000000000000000000000000000 + Iterated 100 times=E1D206E01DB01026432CBEDDC4096E64 + Iterated 1000 times=C11936ABDF55F2A6CBD118BD8CEA1EF6 + +Set 2, vector# 5: + key=00000000000000000000000000000000 + plain=04000000000000000000000000000000 + cipher=BAAC12FB613A7DE11450375C74034041 + decrypted=04000000000000000000000000000000 + Iterated 100 times=3A8401261CC2065F2BBF8BA55E05D996 + Iterated 1000 times=B5C34A49643C9F1B9D6D3EA58A6AD4A2 + +Set 2, vector# 6: + key=00000000000000000000000000000000 + plain=02000000000000000000000000000000 + cipher=BCF176A7EAAD8085EBACEA362462A281 + decrypted=02000000000000000000000000000000 + Iterated 100 times=60D352F05501E2F1A522B47C7CAF9221 + Iterated 1000 times=3C61058D73A01DE98EFE2F1B2590C2E8 + +Set 2, vector# 7: + key=00000000000000000000000000000000 + plain=01000000000000000000000000000000 + cipher=47711816E91D6FF059BBBF2BF58E0FD3 + decrypted=01000000000000000000000000000000 + Iterated 100 times=BB6AC3ABBD2235F51C64EBFA4F5F9281 + Iterated 1000 times=12E3942DC063E43A26ED6773DB95F19A + +Set 2, vector# 8: + key=00000000000000000000000000000000 + plain=00800000000000000000000000000000 + cipher=B970DFBE40698AF1638FE38BD3DF3B2F + decrypted=00800000000000000000000000000000 + Iterated 100 times=D4CC9A14EBE6F469CF0AF2CD88D05B96 + Iterated 1000 times=1732A728221033E5C56E047D7C7BEE18 + +Set 2, vector# 9: + key=00000000000000000000000000000000 + plain=00400000000000000000000000000000 + cipher=F95B59A44F391E14CF20B74BDC32FCFF + decrypted=00400000000000000000000000000000 + Iterated 100 times=6D8A93A9AAFE39A9079602820CCE01D5 + Iterated 1000 times=09C285CCF9FD605FA11A063890086B76 + +Set 2, vector# 10: + key=00000000000000000000000000000000 + plain=00200000000000000000000000000000 + cipher=720F74AE04A2A435B9A7256E49378F5B + decrypted=00200000000000000000000000000000 + Iterated 100 times=7473BD92678CC15EE2A5F5298111EFC7 + Iterated 1000 times=5FBCB57959ED5DC776B118AB81F8D6D2 + +Set 2, vector# 11: + key=00000000000000000000000000000000 + plain=00100000000000000000000000000000 + cipher=2A0445F61D36BFA7E277070730CF76DA + decrypted=00100000000000000000000000000000 + Iterated 100 times=5FA2A2D53010CEDFE3A4EE299A207830 + Iterated 1000 times=1DD582BBFA29996D515DE0388E376C5A + +Set 2, vector# 12: + key=00000000000000000000000000000000 + plain=00080000000000000000000000000000 + cipher=8D0536B997AEFEC1D94011BAB6699A03 + decrypted=00080000000000000000000000000000 + Iterated 100 times=57F60FEC3C9D6A8A9207028CE7223C8F + Iterated 1000 times=0C0C5BCD1D8BF92E07D56783B006E2DC + +Set 2, vector# 13: + key=00000000000000000000000000000000 + plain=00040000000000000000000000000000 + cipher=674F002E19F6ED47EFF319E51FAD4498 + decrypted=00040000000000000000000000000000 + Iterated 100 times=D6E749D51E5C0AFD2E394CC4293D6748 + Iterated 1000 times=21E6FAB498CF1F4C0E702FEE150F4802 + +Set 2, vector# 14: + key=00000000000000000000000000000000 + plain=00020000000000000000000000000000 + cipher=292C02C5CB9163C80AC0F6CF1DD8E92D + decrypted=00020000000000000000000000000000 + Iterated 100 times=B7B223F4D9367F1D66F9F204B87B977C + Iterated 1000 times=1BF1CFCF91D502E14B8E220D57441879 + +Set 2, vector# 15: + key=00000000000000000000000000000000 + plain=00010000000000000000000000000000 + cipher=FA321CF18EF5FE727DD82A5C1E945141 + decrypted=00010000000000000000000000000000 + Iterated 100 times=B8BAB593D77A9B41CB9A0969AD606749 + Iterated 1000 times=9A87692588E286336C080317EA588F8B + +Set 2, vector# 16: + key=00000000000000000000000000000000 + plain=00008000000000000000000000000000 + cipher=A5A7AFE1034C39CCCEBE3C584BC0BE05 + decrypted=00008000000000000000000000000000 + Iterated 100 times=DB237EACD3F70615528D24F5F9D72F28 + Iterated 1000 times=B5DE1659410CD09C42CA5E809BD56CB4 + +Set 2, vector# 17: + key=00000000000000000000000000000000 + plain=00004000000000000000000000000000 + cipher=4FF5A52E697E77D081205DBDB21CEA39 + decrypted=00004000000000000000000000000000 + Iterated 100 times=C02874E7B54EB1CC6ECEA8E03DCAD8EB + Iterated 1000 times=1C0942009C79A2687E997DFF6ADAE332 + +Set 2, vector# 18: + key=00000000000000000000000000000000 + plain=00002000000000000000000000000000 + cipher=209E88DC94C9003000CE0769AF7B7166 + decrypted=00002000000000000000000000000000 + Iterated 100 times=4D23C3B70356950E928FEAC3004C371F + Iterated 1000 times=350310847C827B704085C90D071FA94B + +Set 2, vector# 19: + key=00000000000000000000000000000000 + plain=00001000000000000000000000000000 + cipher=5DEE41AF864CB4B650E5F51551824D38 + decrypted=00001000000000000000000000000000 + Iterated 100 times=C7ED28428E8C6A7A9B77C65689CFA0BE + Iterated 1000 times=CA09D5E400B92D418D697D5840926982 + +Set 2, vector# 20: + key=00000000000000000000000000000000 + plain=00000800000000000000000000000000 + cipher=A79A63FA7E4503AE6D6E09F5F9053030 + decrypted=00000800000000000000000000000000 + Iterated 100 times=70CC699E148C90035F33FC3214E17C91 + Iterated 1000 times=CEB01AAA56FC0708B2AB81F0DB747475 + +Set 2, vector# 21: + key=00000000000000000000000000000000 + plain=00000400000000000000000000000000 + cipher=A48316749FAE7FAC7002031A6AFD8BA7 + decrypted=00000400000000000000000000000000 + Iterated 100 times=9BC8D0D2E76D206F00D95F0487B44E6E + Iterated 1000 times=34DD8CCAE7C12F0FD7CCB2F52E423B80 + +Set 2, vector# 22: + key=00000000000000000000000000000000 + plain=00000200000000000000000000000000 + cipher=D6EEE8A7357A0E1D64262CA9C337AC42 + decrypted=00000200000000000000000000000000 + Iterated 100 times=854D29B5F5458478AA9E842D8D284E4E + Iterated 1000 times=12DDFE44FA1D305BAEF95422BD901303 + +Set 2, vector# 23: + key=00000000000000000000000000000000 + plain=00000100000000000000000000000000 + cipher=B013CA8A62A858053E9FB667ED39829E + decrypted=00000100000000000000000000000000 + Iterated 100 times=21603A0A05D1CB946AFA5286E5D0B5D9 + Iterated 1000 times=D145CEAA0738D9829645647360BB3352 + +Set 2, vector# 24: + key=00000000000000000000000000000000 + plain=00000080000000000000000000000000 + cipher=DF6EA9E4538A45A52D5C1A43C88F4B55 + decrypted=00000080000000000000000000000000 + Iterated 100 times=43DF3F62FC057B95937F3900D07964D9 + Iterated 1000 times=687AE4D0EA7647D4CE901091D8C4D567 + +Set 2, vector# 25: + key=00000000000000000000000000000000 + plain=00000040000000000000000000000000 + cipher=7D03BA451371591D3FD5547D9165C73B + decrypted=00000040000000000000000000000000 + Iterated 100 times=0B5F1EC9D1DC16C7CE781BF0B6972231 + Iterated 1000 times=16A633F7ECA24D4E21FDD5D3CE91CB84 + +Set 2, vector# 26: + key=00000000000000000000000000000000 + plain=00000020000000000000000000000000 + cipher=0E0426281A6277E186499D365D5F49FF + decrypted=00000020000000000000000000000000 + Iterated 100 times=03BE61B31F2C69058A05C6971165DE15 + Iterated 1000 times=61A1C7AF3CBF5CA5A925EA160867307C + +Set 2, vector# 27: + key=00000000000000000000000000000000 + plain=00000010000000000000000000000000 + cipher=DBC02169DD2059E6CC4C57C1FEDF5AB4 + decrypted=00000010000000000000000000000000 + Iterated 100 times=DA3604014E89CA879D45DD60E5569365 + Iterated 1000 times=0F1B60BC063F12BFD115FFFEC5B6AFBC + +Set 2, vector# 28: + key=00000000000000000000000000000000 + plain=00000008000000000000000000000000 + cipher=826590E05D167DA6F00DCC75E22788EB + decrypted=00000008000000000000000000000000 + Iterated 100 times=C2F4058B56AF01EA8587139F74A0F0F5 + Iterated 1000 times=BCCEEA583642D724BC6591F2CEBC2C91 + +Set 2, vector# 29: + key=00000000000000000000000000000000 + plain=00000004000000000000000000000000 + cipher=34A73F21A04421D9786335FAAB49423A + decrypted=00000004000000000000000000000000 + Iterated 100 times=245D587101FD7CC4AB31D9D322B9BBB5 + Iterated 1000 times=3D7201FF2B3FECF33C425A6A18DB107A + +Set 2, vector# 30: + key=00000000000000000000000000000000 + plain=00000002000000000000000000000000 + cipher=ED347D0E0128EE1A7392A1D36AB78AA9 + decrypted=00000002000000000000000000000000 + Iterated 100 times=CB5741181CA33721505D8656C2F518BF + Iterated 1000 times=520BF46A628B2735B6EF3D5FBB6018C3 + +Set 2, vector# 31: + key=00000000000000000000000000000000 + plain=00000001000000000000000000000000 + cipher=EE944B2FE6E9FC888042608DA9615F75 + decrypted=00000001000000000000000000000000 + Iterated 100 times=CB421AA73AC1837E6B08C7452DF83F71 + Iterated 1000 times=F8461E3BC84C276DB8B0897988FA62C4 + +Set 2, vector# 32: + key=00000000000000000000000000000000 + plain=00000000800000000000000000000000 + cipher=9E7C85A909EF7218BA7947CFB4718F46 + decrypted=00000000800000000000000000000000 + Iterated 100 times=3F4874E7A2C2BB4D01DD8011D07DCB11 + Iterated 1000 times=79984F6C7AEAD2B0AEF80DA66D10EBAB + +Set 2, vector# 33: + key=00000000000000000000000000000000 + plain=00000000400000000000000000000000 + cipher=811AE07A0B2B1F816587FA73699AE77D + decrypted=00000000400000000000000000000000 + Iterated 100 times=9BB3DB45B0B8B218F927852C5733B71F + Iterated 1000 times=97507077AE5610BA25B224C274FC6DB4 + +Set 2, vector# 34: + key=00000000000000000000000000000000 + plain=00000000200000000000000000000000 + cipher=68466FBF43C2FE13D4B18F7EC5EA745F + decrypted=00000000200000000000000000000000 + Iterated 100 times=2CA3B0C647DBC2AB1881E0C36932748A + Iterated 1000 times=74E570D21FA9B6CABBE8CDC56B79C029 + +Set 2, vector# 35: + key=00000000000000000000000000000000 + plain=00000000100000000000000000000000 + cipher=D20B015C7191B219780956E6101F9354 + decrypted=00000000100000000000000000000000 + Iterated 100 times=EE217C3F63D236391DC628A0827982B7 + Iterated 1000 times=D22FECCF3C2F9D2ED994FDA9B7DA20DA + +Set 2, vector# 36: + key=00000000000000000000000000000000 + plain=00000000080000000000000000000000 + cipher=5939D5C1BBF54EE1B3E326D757BDDE25 + decrypted=00000000080000000000000000000000 + Iterated 100 times=3858B1D5FEA23777825AC19419119CC6 + Iterated 1000 times=3761EFD4F3E634B9EDAF542C10F8C8E1 + +Set 2, vector# 37: + key=00000000000000000000000000000000 + plain=00000000040000000000000000000000 + cipher=B1FDAFE9A0240E8FFEA19CE94B5105D3 + decrypted=00000000040000000000000000000000 + Iterated 100 times=9D12B2CE9BDB610ECA7B12223BAA8A7F + Iterated 1000 times=48EB91DCD372CB2EECB86FE57C04D3F5 + +Set 2, vector# 38: + key=00000000000000000000000000000000 + plain=00000000020000000000000000000000 + cipher=D62962ECE02CDD68C06BDFEFB2F9495B + decrypted=00000000020000000000000000000000 + Iterated 100 times=15354E590C0A6A4E2BA32FA9AB114132 + Iterated 1000 times=7DE44CAB8BD4E721F083D6AECEF41C30 + +Set 2, vector# 39: + key=00000000000000000000000000000000 + plain=00000000010000000000000000000000 + cipher=B3BB2DE6F3C26587BA8BAC4F7AD9499A + decrypted=00000000010000000000000000000000 + Iterated 100 times=B3DBFDAF5D134FCFA87D9A62A42297C1 + Iterated 1000 times=E2EEC33AAC1B3D872DA58E9DEA83F0DA + +Set 2, vector# 40: + key=00000000000000000000000000000000 + plain=00000000008000000000000000000000 + cipher=E0B1072D6D9FF703D6FBEF77852B0A6B + decrypted=00000000008000000000000000000000 + Iterated 100 times=8D232B47D7E8331C8E2108B60425619F + Iterated 1000 times=BE998D3A5D1EDDF1802DF8DF9D1E3F40 + +Set 2, vector# 41: + key=00000000000000000000000000000000 + plain=00000000004000000000000000000000 + cipher=D8DD51C907F478DE0228E83E61FD1758 + decrypted=00000000004000000000000000000000 + Iterated 100 times=6A10C08A822D680F1F11445ECE93C4E5 + Iterated 1000 times=DEB3BA9F2B541764BD29055736AFEBD1 + +Set 2, vector# 42: + key=00000000000000000000000000000000 + plain=00000000002000000000000000000000 + cipher=A42DFFE6E7C1671C06A25236FDD10017 + decrypted=00000000002000000000000000000000 + Iterated 100 times=0B8A719444C383C3C55624E548AA638E + Iterated 1000 times=547B8A1CB3CA66E1F1FB081CBA11D399 + +Set 2, vector# 43: + key=00000000000000000000000000000000 + plain=00000000001000000000000000000000 + cipher=25ACF141550BFAB9EF451B6C6A5B2163 + decrypted=00000000001000000000000000000000 + Iterated 100 times=8368B9D8C4DF7DAF4DBA00F10442C604 + Iterated 1000 times=9965E0DFA878F0FD5734AD0F77059551 + +Set 2, vector# 44: + key=00000000000000000000000000000000 + plain=00000000000800000000000000000000 + cipher=4DA7FCA3949B16E821DBC84F19581018 + decrypted=00000000000800000000000000000000 + Iterated 100 times=59A246047C38058C94B40701787ECC8B + Iterated 1000 times=D216149C42C5A147ADDB0EEC5DACAEC2 + +Set 2, vector# 45: + key=00000000000000000000000000000000 + plain=00000000000400000000000000000000 + cipher=7D49B6347CBCC8919C7FA96A37A7A215 + decrypted=00000000000400000000000000000000 + Iterated 100 times=F8E495F5830AD35AA0A7B8D72A0597E3 + Iterated 1000 times=6BDC290B642DE75F96789D62F9DD185A + +Set 2, vector# 46: + key=00000000000000000000000000000000 + plain=00000000000200000000000000000000 + cipher=900024B29A08C6721B95BA3B753DDB4D + decrypted=00000000000200000000000000000000 + Iterated 100 times=370F7C312E4D15B2138FAE1CBEE31F21 + Iterated 1000 times=72DAC413E8D6BC343779EC31B01E763E + +Set 2, vector# 47: + key=00000000000000000000000000000000 + plain=00000000000100000000000000000000 + cipher=6D2182FB283B6934D90BA7848CAB5E66 + decrypted=00000000000100000000000000000000 + Iterated 100 times=04F4782C88CF987550C4DD3A873E5F49 + Iterated 1000 times=91A5FD9243C44CAF2ECFB0DF716E44F8 + +Set 2, vector# 48: + key=00000000000000000000000000000000 + plain=00000000000080000000000000000000 + cipher=F73EF01B448D23A4D90DE8B2F9666E7A + decrypted=00000000000080000000000000000000 + Iterated 100 times=D160EF5E908E0CDCB220A73C9F2E4AA1 + Iterated 1000 times=2B6429F3567EF875E7EF45E4F2882056 + +Set 2, vector# 49: + key=00000000000000000000000000000000 + plain=00000000000040000000000000000000 + cipher=4AD9CDA2418643E9A3D926AF5E6B0412 + decrypted=00000000000040000000000000000000 + Iterated 100 times=7B800B4BE59E2997862275E963FF6A44 + Iterated 1000 times=1021FF5779DB7E964C974559782B8097 + +Set 2, vector# 50: + key=00000000000000000000000000000000 + plain=00000000000020000000000000000000 + cipher=7CAEC8E7E5953997D545B033201C8C5B + decrypted=00000000000020000000000000000000 + Iterated 100 times=C014EB7B68FE4F6E3C831F50894CDFA1 + Iterated 1000 times=46865A24E4C3F800E959A495A71B06DE + +Set 2, vector# 51: + key=00000000000000000000000000000000 + plain=00000000000010000000000000000000 + cipher=3C43CA1F6B6864503E27B48D88230CF5 + decrypted=00000000000010000000000000000000 + Iterated 100 times=BB3E1CDD5A9AFCBE1F395298F064EA6F + Iterated 1000 times=644C3F84D58E4034199E569F93D9293A + +Set 2, vector# 52: + key=00000000000000000000000000000000 + plain=00000000000008000000000000000000 + cipher=44F779B93108FE9FEEC880D79BA74488 + decrypted=00000000000008000000000000000000 + Iterated 100 times=DDEA704E1D8491F59AB4E36CE68C7207 + Iterated 1000 times=3C3D259891051B58894E919D9D14673F + +Set 2, vector# 53: + key=00000000000000000000000000000000 + plain=00000000000004000000000000000000 + cipher=9E50E8D9CFD3A682A78E527C9072A1CF + decrypted=00000000000004000000000000000000 + Iterated 100 times=4BDA44BBDCDD9B1213CCE7435ABBECF8 + Iterated 1000 times=3E0D2E2657FB9E73FA3D9E33519E04B8 + +Set 2, vector# 54: + key=00000000000000000000000000000000 + plain=00000000000002000000000000000000 + cipher=68D000CBC838BBE3C505D6F814C01F28 + decrypted=00000000000002000000000000000000 + Iterated 100 times=F2EB7A0F59E2A50E95100E48CD5A5348 + Iterated 1000 times=AABADC51EA2A3CE4F9DCF597B596741E + +Set 2, vector# 55: + key=00000000000000000000000000000000 + plain=00000000000001000000000000000000 + cipher=2CB2A9FEC1ACD1D9B0FA05205E304F57 + decrypted=00000000000001000000000000000000 + Iterated 100 times=E097395C2ED86CBAE7E9B40B1A0EE121 + Iterated 1000 times=208D4502F933F3112C551B260F44F08F + +Set 2, vector# 56: + key=00000000000000000000000000000000 + plain=00000000000000800000000000000000 + cipher=01EB2806606E46444520A5CC6180CD4B + decrypted=00000000000000800000000000000000 + Iterated 100 times=CD71EE89B489BDBE460E40F5342CC17E + Iterated 1000 times=B99428D0AC19EA02384827D595C3E254 + +Set 2, vector# 57: + key=00000000000000000000000000000000 + plain=00000000000000400000000000000000 + cipher=DAA9B25168CC702326F217F1A0C0B162 + decrypted=00000000000000400000000000000000 + Iterated 100 times=DC5B60BBF0234E3FD676E80F7F9EF0CD + Iterated 1000 times=507934D711D48075F27E89E053DFA69A + +Set 2, vector# 58: + key=00000000000000000000000000000000 + plain=00000000000000200000000000000000 + cipher=3E07E648975D9578D03555B1755807ED + decrypted=00000000000000200000000000000000 + Iterated 100 times=2C5E244ABE853A6F8BEF2902BBCCB68A + Iterated 1000 times=FE0DDC9976F5F54771E46BBD9C2D2F43 + +Set 2, vector# 59: + key=00000000000000000000000000000000 + plain=00000000000000100000000000000000 + cipher=0B45F52E802C8B8DE09579425B80B711 + decrypted=00000000000000100000000000000000 + Iterated 100 times=7A541C0410355D6386FDABACA6C79E6D + Iterated 1000 times=CC1A2B6C6F4C75E8B43991F8D7C26221 + +Set 2, vector# 60: + key=00000000000000000000000000000000 + plain=00000000000000080000000000000000 + cipher=659595DA0B68F6DF0DD6CA77202986E1 + decrypted=00000000000000080000000000000000 + Iterated 100 times=36B61D437416E6FFED3F9954E81A6D5B + Iterated 1000 times=3FAF0B5E5015F602BD1504B099D2ED10 + +Set 2, vector# 61: + key=00000000000000000000000000000000 + plain=00000000000000040000000000000000 + cipher=05FF42873893536E58C8FA98A45C73C4 + decrypted=00000000000000040000000000000000 + Iterated 100 times=B6CB71EBBC17F4BC336F8581E11A16A9 + Iterated 1000 times=905F9C6093086288A25F275202335947 + +Set 2, vector# 62: + key=00000000000000000000000000000000 + plain=00000000000000020000000000000000 + cipher=B5B03421DE8BBFFC4EADEC767339A9BD + decrypted=00000000000000020000000000000000 + Iterated 100 times=2DBEA4D5736B477E21413068803A728C + Iterated 1000 times=56646075F7410436B1FF0F1EE3B54221 + +Set 2, vector# 63: + key=00000000000000000000000000000000 + plain=00000000000000010000000000000000 + cipher=788BCD111ECF73D4E78D2E21BEF55460 + decrypted=00000000000000010000000000000000 + Iterated 100 times=A16136DDDA40DF2DDA620018E36B00CC + Iterated 1000 times=EE3E82B2F39929A297055371176D15FC + +Set 2, vector# 64: + key=00000000000000000000000000000000 + plain=00000000000000008000000000000000 + cipher=909CD9EC6790359F982DC6F2393D5315 + decrypted=00000000000000008000000000000000 + Iterated 100 times=25D7FC4C7C72029D2BE754058952E2D8 + Iterated 1000 times=D76E74036BBD1B4E8C0ADAC323E7E4F9 + +Set 2, vector# 65: + key=00000000000000000000000000000000 + plain=00000000000000004000000000000000 + cipher=332950F361535FF24EFAC8C76293F12C + decrypted=00000000000000004000000000000000 + Iterated 100 times=7189084923E0FED7B155975926CBC15F + Iterated 1000 times=FBFF4C5B0BECA367B0EB0D82481292D7 + +Set 2, vector# 66: + key=00000000000000000000000000000000 + plain=00000000000000002000000000000000 + cipher=A68CCD4E330FFDA9D576DA436DB53D75 + decrypted=00000000000000002000000000000000 + Iterated 100 times=1567772CD46AA8EC6C8AC35D1602E222 + Iterated 1000 times=60106C646C3404DA1B25E821648300AE + +Set 2, vector# 67: + key=00000000000000000000000000000000 + plain=00000000000000001000000000000000 + cipher=27C8A1CCFDB0B015D1ED5B3E77143791 + decrypted=00000000000000001000000000000000 + Iterated 100 times=05359C8275ADFD384F9A397E460E085F + Iterated 1000 times=F18117F8F06892962C0ED48FA8BB7E26 + +Set 2, vector# 68: + key=00000000000000000000000000000000 + plain=00000000000000000800000000000000 + cipher=D76A4B95887A77DF610DD3E1D3B20325 + decrypted=00000000000000000800000000000000 + Iterated 100 times=C0A55FD7AE357DBC8E6D623275AEF94C + Iterated 1000 times=696BB463CBA7E8DB3F07F9C482176FE2 + +Set 2, vector# 69: + key=00000000000000000000000000000000 + plain=00000000000000000400000000000000 + cipher=C068AB0DE71C66DAE83C361EF4B2D989 + decrypted=00000000000000000400000000000000 + Iterated 100 times=8BF959A43AD4646F5E6D332C24B1AB13 + Iterated 1000 times=5BD9ED122B61AF3C256DF5D6F6C4E7EF + +Set 2, vector# 70: + key=00000000000000000000000000000000 + plain=00000000000000000200000000000000 + cipher=C2120BCD49EDA9A288B3B4BE79AC8158 + decrypted=00000000000000000200000000000000 + Iterated 100 times=59BB588D99A951C9FD3B2A89127B7F96 + Iterated 1000 times=8B10CFE8D89EB06272264CE1A0DECAB3 + +Set 2, vector# 71: + key=00000000000000000000000000000000 + plain=00000000000000000100000000000000 + cipher=0C546F62BF2773CD0F564FCECA7BA688 + decrypted=00000000000000000100000000000000 + Iterated 100 times=360AB821CE4662E3FC23B95E5B2BC60C + Iterated 1000 times=B59D3B4526B48DE9A30DEBC51C540122 + +Set 2, vector# 72: + key=00000000000000000000000000000000 + plain=00000000000000000080000000000000 + cipher=18F3462BEDE4920213CCB66DAB1640AA + decrypted=00000000000000000080000000000000 + Iterated 100 times=A9A29A6BA14BD61753DDA97B35EDA512 + Iterated 1000 times=1FB744242ECAC0E0EDC4746D2AA3D563 + +Set 2, vector# 73: + key=00000000000000000000000000000000 + plain=00000000000000000040000000000000 + cipher=FE42F245EDD0E24B216AEBD8B392D690 + decrypted=00000000000000000040000000000000 + Iterated 100 times=E4A84706D52094EE89E472E476795AF4 + Iterated 1000 times=326FD28E72ACCFDB3B92215C2FEDAB67 + +Set 2, vector# 74: + key=00000000000000000000000000000000 + plain=00000000000000000020000000000000 + cipher=3D3EEBC8D3D1558A194C2D00C337FF2B + decrypted=00000000000000000020000000000000 + Iterated 100 times=83CB3FC2EB5415624EEF6EE6772C2530 + Iterated 1000 times=D0FB43899903F0615DBA5DE06F0B27FE + +Set 2, vector# 75: + key=00000000000000000000000000000000 + plain=00000000000000000010000000000000 + cipher=29AAEDF043E785DB42836F79BE6CBA28 + decrypted=00000000000000000010000000000000 + Iterated 100 times=9274BEE0CE34D0A5A78E5B8FDC860827 + Iterated 1000 times=20ADF2287CFB03B14AF3893D5E681AFD + +Set 2, vector# 76: + key=00000000000000000000000000000000 + plain=00000000000000000008000000000000 + cipher=215F90C6744E2944358E78619159A611 + decrypted=00000000000000000008000000000000 + Iterated 100 times=AA55ECA7DF8714D4037817030E436124 + Iterated 1000 times=BC8ABEB2839FA1FF8895A9ABEC7C3194 + +Set 2, vector# 77: + key=00000000000000000000000000000000 + plain=00000000000000000004000000000000 + cipher=8606B1AA9E1D548E5442B06551E2C6DC + decrypted=00000000000000000004000000000000 + Iterated 100 times=AD952F067E8EA3B2A759F0828E00D3F3 + Iterated 1000 times=C436B7EE6A6BFB890407BEBE786AF6E0 + +Set 2, vector# 78: + key=00000000000000000000000000000000 + plain=00000000000000000002000000000000 + cipher=987BB4B8740EC0EDE7FEA97DF033B5B1 + decrypted=00000000000000000002000000000000 + Iterated 100 times=5894A7868035E82B976D63EFDB3717AB + Iterated 1000 times=384F226BBCC260B324F40EC9E5590CD1 + +Set 2, vector# 79: + key=00000000000000000000000000000000 + plain=00000000000000000001000000000000 + cipher=C0A3500DA5B0AE07D2F450930BEEDF1B + decrypted=00000000000000000001000000000000 + Iterated 100 times=C7E3ACAE15B1EA77CAA5D0FFF960A42E + Iterated 1000 times=04BBE15C5651A230AD203B527ABB4A97 + +Set 2, vector# 80: + key=00000000000000000000000000000000 + plain=00000000000000000000800000000000 + cipher=525FDF8312FE8F32C781481A8DAAAE37 + decrypted=00000000000000000000800000000000 + Iterated 100 times=673F883EA844CCC3D628A867616F6616 + Iterated 1000 times=82EDD22533ACE5C9FD9540710775C08C + +Set 2, vector# 81: + key=00000000000000000000000000000000 + plain=00000000000000000000400000000000 + cipher=BFD2C56AE5FB9C9DE33A6944572A6487 + decrypted=00000000000000000000400000000000 + Iterated 100 times=A9A62558024A25FAFE05D57C15DE0D3A + Iterated 1000 times=C4F652B5B92291F45CFC984210678D3E + +Set 2, vector# 82: + key=00000000000000000000000000000000 + plain=00000000000000000000200000000000 + cipher=7975A57A425CDF5AA1FA929101F650B0 + decrypted=00000000000000000000200000000000 + Iterated 100 times=24694301BB82114DC05FC0C508367CE1 + Iterated 1000 times=69FB650D342AEDF96735AFAF677F2CD5 + +Set 2, vector# 83: + key=00000000000000000000000000000000 + plain=00000000000000000000100000000000 + cipher=BF174BC49609A8709B2CD8366DAA79FE + decrypted=00000000000000000000100000000000 + Iterated 100 times=3BBDA598D67040F7FAF9E9BFC155EC6B + Iterated 1000 times=57B9CA0CF63E8B646AAE7CF06C44B737 + +Set 2, vector# 84: + key=00000000000000000000000000000000 + plain=00000000000000000000080000000000 + cipher=06C50C43222F56C874B1704E9F44BF7D + decrypted=00000000000000000000080000000000 + Iterated 100 times=6A81B9A26C8559F75E9632071CD19B0D + Iterated 1000 times=A477DB1E291C6F17923F853DAACB7E8D + +Set 2, vector# 85: + key=00000000000000000000000000000000 + plain=00000000000000000000040000000000 + cipher=0CEC48CD34043EA29CA3B8ED5278721E + decrypted=00000000000000000000040000000000 + Iterated 100 times=11F285E3239A8E695A9D63D5F3B36D26 + Iterated 1000 times=09C38E6A9207E9A57E96F85AB83B7C8C + +Set 2, vector# 86: + key=00000000000000000000000000000000 + plain=00000000000000000000020000000000 + cipher=9548EA34A1560197B304D0ACB8A1698D + decrypted=00000000000000000000020000000000 + Iterated 100 times=FBC2C4DFAE320EC37E5AC747305BC004 + Iterated 1000 times=0BED6C604E2FE99477C682BCC65516DD + +Set 2, vector# 87: + key=00000000000000000000000000000000 + plain=00000000000000000000010000000000 + cipher=22F9E9B1BD73B6B5B7D3062C986272F3 + decrypted=00000000000000000000010000000000 + Iterated 100 times=9E1A88C7F028483C211BDE6456CA2AFD + Iterated 1000 times=681AFC8E07CA63DEADB28BB77B35F8E9 + +Set 2, vector# 88: + key=00000000000000000000000000000000 + plain=00000000000000000000008000000000 + cipher=FEE8E934BD0873295059002230E298D4 + decrypted=00000000000000000000008000000000 + Iterated 100 times=B5D12852DA99CF62E8D7F0E674E8663D + Iterated 1000 times=4EA8F5E61F9E83DCEC065020F6D1A00A + +Set 2, vector# 89: + key=00000000000000000000000000000000 + plain=00000000000000000000004000000000 + cipher=1B08E2E3EB820D139CB4ABBDBE81D00D + decrypted=00000000000000000000004000000000 + Iterated 100 times=A47D956600CB87D04BCC33C3BD0C708E + Iterated 1000 times=C50F6CD10083223AA3C01A59D22DFC56 + +Set 2, vector# 90: + key=00000000000000000000000000000000 + plain=00000000000000000000002000000000 + cipher=0021177681E4D90CEAF69DCED0145125 + decrypted=00000000000000000000002000000000 + Iterated 100 times=26C2CA8B5518E686999CDB82C36605FD + Iterated 1000 times=D68E4E0240FD9FC53AAADECD9E77EC4D + +Set 2, vector# 91: + key=00000000000000000000000000000000 + plain=00000000000000000000001000000000 + cipher=4A8E314452CA8A8A3619FC54BC423643 + decrypted=00000000000000000000001000000000 + Iterated 100 times=A0A32ACD57FD9E39705FF2D95178E342 + Iterated 1000 times=C20E5E15BB78FC69BDFE97CF28C133F7 + +Set 2, vector# 92: + key=00000000000000000000000000000000 + plain=00000000000000000000000800000000 + cipher=65047474F7222C94C6965425FF1BFD0A + decrypted=00000000000000000000000800000000 + Iterated 100 times=CA21ADD9EB48B45C20498F4ED3E2A69E + Iterated 1000 times=CFB2B894D11D6ECFD3ABE6A0451A8CB9 + +Set 2, vector# 93: + key=00000000000000000000000000000000 + plain=00000000000000000000000400000000 + cipher=E123F551A9C4A8489622B16F961A9AA4 + decrypted=00000000000000000000000400000000 + Iterated 100 times=965AAF716A5EC5517D4181739B9AF4FF + Iterated 1000 times=31C96745D6C760B58F0B3DB2AEED07CA + +Set 2, vector# 94: + key=00000000000000000000000000000000 + plain=00000000000000000000000200000000 + cipher=EF05530948B80915028BB2B6FE429380 + decrypted=00000000000000000000000200000000 + Iterated 100 times=7883982CAE5AF1685F3B630739720CCE + Iterated 1000 times=DC91BF9B992CCF73302FD6F1BDEADBB7 + +Set 2, vector# 95: + key=00000000000000000000000000000000 + plain=00000000000000000000000100000000 + cipher=72535B7FE0F0F777CEDCD55CD77E2DDF + decrypted=00000000000000000000000100000000 + Iterated 100 times=BA084E4AB9C8A8C76AADD7F90137E262 + Iterated 1000 times=99262EE0A62985BC3BA5BF7322513E46 + +Set 2, vector# 96: + key=00000000000000000000000000000000 + plain=00000000000000000000000080000000 + cipher=3423D8EFC31FA2F4C365C77D8F3B5C63 + decrypted=00000000000000000000000080000000 + Iterated 100 times=4F994C160718CFDBD6F05018B0AA4E36 + Iterated 1000 times=F7DFC92343ED0761377910D8B3CA0537 + +Set 2, vector# 97: + key=00000000000000000000000000000000 + plain=00000000000000000000000040000000 + cipher=DE0E51C264663F3C5DBC59580A98D8E4 + decrypted=00000000000000000000000040000000 + Iterated 100 times=EB29B513C75686C1F8731A22D223FBB2 + Iterated 1000 times=BD26096524C5C97937B098D998B6AAC7 + +Set 2, vector# 98: + key=00000000000000000000000000000000 + plain=00000000000000000000000020000000 + cipher=B2D9391166680947AB09264156719679 + decrypted=00000000000000000000000020000000 + Iterated 100 times=7CD6B20E1B85192365CA16323BB1803E + Iterated 1000 times=6CCAF304424B44DFCD5E6BB321FE9B5F + +Set 2, vector# 99: + key=00000000000000000000000000000000 + plain=00000000000000000000000010000000 + cipher=10DB79F23B06D263835C424AF749ADB7 + decrypted=00000000000000000000000010000000 + Iterated 100 times=C086F33668C80900AF1EC2E483AB2BA9 + Iterated 1000 times=309CCB49CF0EEFB9EC2A62C7D0692652 + +Set 2, vector#100: + key=00000000000000000000000000000000 + plain=00000000000000000000000008000000 + cipher=DDF72D27E6B01EC107EA3E005B59563B + decrypted=00000000000000000000000008000000 + Iterated 100 times=9076E084CFD208D34876E0CC99765A03 + Iterated 1000 times=E1E37B90AE0D79554E025F58D2B86C0B + +Set 2, vector#101: + key=00000000000000000000000000000000 + plain=00000000000000000000000004000000 + cipher=8266B57485A5954A4236751DE07F6694 + decrypted=00000000000000000000000004000000 + Iterated 100 times=8E8C6A95E3B5FDDE9852816AFAFBAF1E + Iterated 1000 times=FA6CB1A77DA90BFB64254633ACAD0481 + +Set 2, vector#102: + key=00000000000000000000000000000000 + plain=00000000000000000000000002000000 + cipher=669A501E1F1ADE6E5523DE01D6DBC987 + decrypted=00000000000000000000000002000000 + Iterated 100 times=5E2BD4DD44C8F4989D12C7D3C01F47E7 + Iterated 1000 times=F081FF7213C58061EF166281C2180A0E + +Set 2, vector#103: + key=00000000000000000000000000000000 + plain=00000000000000000000000001000000 + cipher=C20C48F2989725D461D1DB589DC0896E + decrypted=00000000000000000000000001000000 + Iterated 100 times=230D659CFD2E76398362D5851B4B4CC9 + Iterated 1000 times=71DC9971A159C9A140B83B953A79A040 + +Set 2, vector#104: + key=00000000000000000000000000000000 + plain=00000000000000000000000000800000 + cipher=DE35158E7810ED1191825D2AA98FA97D + decrypted=00000000000000000000000000800000 + Iterated 100 times=59C7810B1EA3C48BAB58CBE7085D81D2 + Iterated 1000 times=9DAD0829C634F54C079EDAEE5CABEFE7 + +Set 2, vector#105: + key=00000000000000000000000000000000 + plain=00000000000000000000000000400000 + cipher=4FE294F2C0F34D0671B693A237EBDDC8 + decrypted=00000000000000000000000000400000 + Iterated 100 times=9C535919AC1567DAC6B7B0455C4615CE + Iterated 1000 times=AF90F47F6850F53C4FA84CED4EAA22A9 + +Set 2, vector#106: + key=00000000000000000000000000000000 + plain=00000000000000000000000000200000 + cipher=087AE74B10CCBFDF6739FEB9559C01A4 + decrypted=00000000000000000000000000200000 + Iterated 100 times=6CAEB4FCAEC4B57221D8A442BCC9C53C + Iterated 1000 times=78771FF5EBED8C4E72E6EFF5A09A1AAD + +Set 2, vector#107: + key=00000000000000000000000000000000 + plain=00000000000000000000000000100000 + cipher=5DC278970B7DEF77A5536C77AB59C207 + decrypted=00000000000000000000000000100000 + Iterated 100 times=CA68BE7B9828A0ECA24DC75CBA31FFB6 + Iterated 1000 times=428E615A73D795C329A9064534860CE0 + +Set 2, vector#108: + key=00000000000000000000000000000000 + plain=00000000000000000000000000080000 + cipher=7607F078C77085184EAA9B060C1FBFFF + decrypted=00000000000000000000000000080000 + Iterated 100 times=2CA23A2F9D8131F2D19C1A583759E53F + Iterated 1000 times=66C3E8877683D7FCACDC88E10441358D + +Set 2, vector#109: + key=00000000000000000000000000000000 + plain=00000000000000000000000000040000 + cipher=9DB841531BCBE7998DAD19993FB3CC00 + decrypted=00000000000000000000000000040000 + Iterated 100 times=1C506CE6F1867F6067FC13B91E19A263 + Iterated 1000 times=D52B3764408D83FA32F4351397A66F3B + +Set 2, vector#110: + key=00000000000000000000000000000000 + plain=00000000000000000000000000020000 + cipher=D6A089B654854A94560BAE13298835B8 + decrypted=00000000000000000000000000020000 + Iterated 100 times=45BCCA4D35F15B9BDA2C763611A4C5B8 + Iterated 1000 times=F8FB10E04DD7BE2F649B8FB8410C3161 + +Set 2, vector#111: + key=00000000000000000000000000000000 + plain=00000000000000000000000000010000 + cipher=E1E223C4CF90CC5D195B370D65114622 + decrypted=00000000000000000000000000010000 + Iterated 100 times=3E5B2688A0BD3180C9CDCFC3E229D752 + Iterated 1000 times=0E1DC42B3042FD3E38D866A9DAAA05D4 + +Set 2, vector#112: + key=00000000000000000000000000000000 + plain=00000000000000000000000000008000 + cipher=1CBED73C50D053BDAD372CEEE54836A1 + decrypted=00000000000000000000000000008000 + Iterated 100 times=12A5FEEFDDD22254BA48FBFC81F135AD + Iterated 1000 times=6C572B1BB2AD4054B10BE8315BC5AF57 + +Set 2, vector#113: + key=00000000000000000000000000000000 + plain=00000000000000000000000000004000 + cipher=D309E69376D257ADF2BFDA152B26555F + decrypted=00000000000000000000000000004000 + Iterated 100 times=D7257B2577EA39F1EE68B96E27FEE569 + Iterated 1000 times=2DFF7804669EB7B40229BC29F34AC56B + +Set 2, vector#114: + key=00000000000000000000000000000000 + plain=00000000000000000000000000002000 + cipher=740F7649117F0DEE6EAA7789A9994C36 + decrypted=00000000000000000000000000002000 + Iterated 100 times=0C359B9D93B2ED034F04ED54A9539EF3 + Iterated 1000 times=D6581C38B981760103A6766875BEB308 + +Set 2, vector#115: + key=00000000000000000000000000000000 + plain=00000000000000000000000000001000 + cipher=76AE64417C297184D668C5FD908B3CE5 + decrypted=00000000000000000000000000001000 + Iterated 100 times=979CD7A7B7FDE86ACB05D3CD8BE77B2F + Iterated 1000 times=EB850B559D41A630FFF70EEB356B5BF9 + +Set 2, vector#116: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000800 + cipher=6095FEA4AA8035591F1787A819C48787 + decrypted=00000000000000000000000000000800 + Iterated 100 times=843A34BE64D4DB300BEDCA24ED141BD8 + Iterated 1000 times=2EAE17E984AB64980D4E888E592B017B + +Set 2, vector#117: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000400 + cipher=D1FF4E7ACD1C79967FEBAB0F7465D450 + decrypted=00000000000000000000000000000400 + Iterated 100 times=FF41A85231D085DB4800F838A67D4D4A + Iterated 1000 times=D65E55E9BADE42DB3048E0ECEBE8ECF3 + +Set 2, vector#118: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000200 + cipher=5F5AD3C42B9489557BB63BF49ECF5F8A + decrypted=00000000000000000000000000000200 + Iterated 100 times=3343416EA58A9F13D3930D3885A09796 + Iterated 1000 times=56829680B6A9402E61A562648CD44E0E + +Set 2, vector#119: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000100 + cipher=FB56CC09B680B1D07C5A52149E29F07C + decrypted=00000000000000000000000000000100 + Iterated 100 times=7C06B9D1DA0C5214264A62AEEF639952 + Iterated 1000 times=DD69D397B768806EAD168E0D4A4A0DE0 + +Set 2, vector#120: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000080 + cipher=FF49B8DF4A97CBE03833E66197620DAD + decrypted=00000000000000000000000000000080 + Iterated 100 times=DE832BD6F39A6A868C911DC2D4EA4CC7 + Iterated 1000 times=A7C7CC7102D51DC2D2A840E99E490CC0 + +Set 2, vector#121: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000040 + cipher=5E070ADE533D2E090ED0F5BE13BC0983 + decrypted=00000000000000000000000000000040 + Iterated 100 times=392FE70C2BF576EE39C6697B728BB371 + Iterated 1000 times=6B44259F291C48FCE6EC04061D4A1A7B + +Set 2, vector#122: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000020 + cipher=3AB4FB1D2B7BA376590A2C241D1F508D + decrypted=00000000000000000000000000000020 + Iterated 100 times=50989134235C1091C07AD1FFB9F1B05B + Iterated 1000 times=261DD3882D736C75FB667A1F1918A302 + +Set 2, vector#123: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000010 + cipher=58B2431BC0BEDE02550F40238969EC78 + decrypted=00000000000000000000000000000010 + Iterated 100 times=B4C924392E3BF62E3F4856B409986672 + Iterated 1000 times=FDD1B50C68A9F84BECF41251D89F13FD + +Set 2, vector#124: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000008 + cipher=0253786E126504F0DAB90C48A30321DE + decrypted=00000000000000000000000000000008 + Iterated 100 times=BF87291BDA3734574065D29290C48059 + Iterated 1000 times=4D7E77EB3C2EC8159EEA8604CD2A0B49 + +Set 2, vector#125: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000004 + cipher=200211214E7394DA2089B6ACD093ABE0 + decrypted=00000000000000000000000000000004 + Iterated 100 times=B6917CE6E4CE60210560D4F894100752 + Iterated 1000 times=940506825EE72DBE9D88FAE31B9B30D5 + +Set 2, vector#126: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000002 + cipher=0388DACE60B6A392F328C2B971B2FE78 + decrypted=00000000000000000000000000000002 + Iterated 100 times=C7B350BC23D13EB6FF1C109B212A2820 + Iterated 1000 times=A1786E528E59DE794F4F4160595F5E1D + +Set 2, vector#127: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000001 + cipher=58E2FCCEFA7E3061367F1D57A4E7455A + decrypted=00000000000000000000000000000001 + Iterated 100 times=8945825142F7CBBBDA3CBB0C2F59DBF7 + Iterated 1000 times=9751DEF17E6183E5BBD2FAD76870E5AF + +Test vectors -- set 3 +===================== + +Set 3, vector# 0: + key=00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=66E94BD4EF8A2C3B884CFA59CA342B2E + decrypted=00000000000000000000000000000000 + Iterated 100 times=73EC274B42DECC2A923D973D31289803 + Iterated 1000 times=ADC883CF76C234032F31B33734AA4B51 + +Set 3, vector# 1: + key=01010101010101010101010101010101 + plain=01010101010101010101010101010101 + cipher=5E77E59F8F85943489A24149C75F4EC9 + decrypted=01010101010101010101010101010101 + Iterated 100 times=12B53FDCA81E4ACEB38D46485BF24752 + Iterated 1000 times=A593C6383EE8EFB8F80B6AD349693818 + +Set 3, vector# 2: + key=02020202020202020202020202020202 + plain=02020202020202020202020202020202 + cipher=43B378ED857DA9A583C856EB51863406 + decrypted=02020202020202020202020202020202 + Iterated 100 times=C0237D95F2804364194F7A5F1665D756 + Iterated 1000 times=BBB6A3DEAE540BFEC8F7E11ECCAA0463 + +Set 3, vector# 3: + key=03030303030303030303030303030303 + plain=03030303030303030303030303030303 + cipher=A96234EEBFEE97D21499E90E501572D1 + decrypted=03030303030303030303030303030303 + Iterated 100 times=716BF13563AC345393B4A073EA641B99 + Iterated 1000 times=68FBEF3EDA724865E741DBB56ED9E5A3 + +Set 3, vector# 4: + key=04040404040404040404040404040404 + plain=04040404040404040404040404040404 + cipher=C919680C70B6A9BA9DA6F83E9326D306 + decrypted=04040404040404040404040404040404 + Iterated 100 times=A0CB255A64654B5B51D8A735E3A5CB1B + Iterated 1000 times=3DC54B23EC3A1C41C1F2804F9F6D8E16 + +Set 3, vector# 5: + key=05050505050505050505050505050505 + plain=05050505050505050505050505050505 + cipher=1DA2B348D561131CC9A404F09CE882A0 + decrypted=05050505050505050505050505050505 + Iterated 100 times=1A7DF386360471BEAD0F7234EE3C7A52 + Iterated 1000 times=64ECD61AA71E66B1649715BC07FC6C40 + +Set 3, vector# 6: + key=06060606060606060606060606060606 + plain=06060606060606060606060606060606 + cipher=D72321731DB4F1DB7D5337BE01845B7E + decrypted=06060606060606060606060606060606 + Iterated 100 times=ADAB138042F04D9964FA3DA1DFE4305A + Iterated 1000 times=D406C56E1DD28F896BD6BB1071110736 + +Set 3, vector# 7: + key=07070707070707070707070707070707 + plain=07070707070707070707070707070707 + cipher=DB52A07084A53D581CA429B3D2B910CC + decrypted=07070707070707070707070707070707 + Iterated 100 times=B0653FDF107EC12F0A036A0368F83D95 + Iterated 1000 times=8D7CD7D98EE7F4340ADFC26827DAF263 + +Set 3, vector# 8: + key=08080808080808080808080808080808 + plain=08080808080808080808080808080808 + cipher=E6647CDF2A31972EA75D172D05675C47 + decrypted=08080808080808080808080808080808 + Iterated 100 times=8D24D50EAEA276C54C45FC91CC370E4C + Iterated 1000 times=0CE0F8CCD3FD4F17FD7B05F44B487C02 + +Set 3, vector# 9: + key=09090909090909090909090909090909 + plain=09090909090909090909090909090909 + cipher=2BE7DCE7F186D5028A73C66F608F3F88 + decrypted=09090909090909090909090909090909 + Iterated 100 times=14BC6F437786A98815B8A47DF6477DD5 + Iterated 1000 times=39DAEF202600CE67069823518ED6DC28 + +Set 3, vector# 10: + key=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + plain=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + cipher=2556E5A934AA25CF8C707629F6324C0E + decrypted=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + Iterated 100 times=F9BF6AF8E14AB68D61A17AAE5E19E4B0 + Iterated 1000 times=AA6E057C9E022235DC90EC3777028303 + +Set 3, vector# 11: + key=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + plain=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + cipher=A5590B5F0D7DA9FB1D1DA3D095870F01 + decrypted=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + Iterated 100 times=6FE2EAE9B61940692613601D03F4D95A + Iterated 1000 times=8EE0E9D87F93020E94DE30251A46E4AC + +Set 3, vector# 12: + key=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + plain=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + cipher=A89E847D44E79544EB82AB83F314708F + decrypted=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + Iterated 100 times=2807AD206D85B20BB9DF0AE646799BB8 + Iterated 1000 times=F939470CDD372279E35DF4EE34AFB020 + +Set 3, vector# 13: + key=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + plain=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + cipher=BC09AB722626A15A3BD8D74E3B551593 + decrypted=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + Iterated 100 times=7F2FCD2FE926A8BF31384C9FB699C1F0 + Iterated 1000 times=C953CE830B24014A22A9294F92411B07 + +Set 3, vector# 14: + key=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + plain=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + cipher=80E0DC7F295597B5634482471B967C7D + decrypted=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + Iterated 100 times=DE2BFB41802DC9CFE482D18E9907FE98 + Iterated 1000 times=5FBCF26ACDDCA26E4C18345701E94290 + +Set 3, vector# 15: + key=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + plain=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + cipher=33B8D86C0DD8912745A971B93E09E788 + decrypted=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + Iterated 100 times=D671E86CBFDE153015D0D658FA2EEF74 + Iterated 1000 times=24601FD70A9FA49DDD22BC2657C1430C + +Set 3, vector# 16: + key=10101010101010101010101010101010 + plain=10101010101010101010101010101010 + cipher=171929D1D56D27F12B4E62B155A43BD8 + decrypted=10101010101010101010101010101010 + Iterated 100 times=B0D5972025FBA8327DBA2F52AF8E2105 + Iterated 1000 times=777336053E588142B50AE8A1649372A1 + +Set 3, vector# 17: + key=11111111111111111111111111111111 + plain=11111111111111111111111111111111 + cipher=E56E26F5608B8D268F2556E198A0E01B + decrypted=11111111111111111111111111111111 + Iterated 100 times=65ED4F686DD1C37AA621C58A8E0BEA05 + Iterated 1000 times=827459E370E7D621ADFD84B2E70F120E + +Set 3, vector# 18: + key=12121212121212121212121212121212 + plain=12121212121212121212121212121212 + cipher=B83CE2F57027607B647236BC9F9686A3 + decrypted=12121212121212121212121212121212 + Iterated 100 times=1E2D8364838D6A31736249A9A4F7E89D + Iterated 1000 times=CAC73D16C28EE1B355852C15D1C37605 + +Set 3, vector# 19: + key=13131313131313131313131313131313 + plain=13131313131313131313131313131313 + cipher=CBD2954391F227254DBAE61981F5B961 + decrypted=13131313131313131313131313131313 + Iterated 100 times=C30F50A6D0D00FA26802B806FF9FD7CC + Iterated 1000 times=893DC0A5B8485CE512EBFA0EA16FB3EF + +Set 3, vector# 20: + key=14141414141414141414141414141414 + plain=14141414141414141414141414141414 + cipher=BBCA0EE1F7D05659CE2461CED0294DBF + decrypted=14141414141414141414141414141414 + Iterated 100 times=53E5AEFA9B6501D192032A6375EB2D79 + Iterated 1000 times=B4824E377A59DE52339ADEFDD06E5F1D + +Set 3, vector# 21: + key=15151515151515151515151515151515 + plain=15151515151515151515151515151515 + cipher=92D09147A7E44BC31752726DFB634DE3 + decrypted=15151515151515151515151515151515 + Iterated 100 times=E6E1CC82EA434A2152139F91E9608C45 + Iterated 1000 times=F93E41D000B53672B895E0F24E6F2B01 + +Set 3, vector# 22: + key=16161616161616161616161616161616 + plain=16161616161616161616161616161616 + cipher=C19C2484C4986A5762AD2876847ADB2E + decrypted=16161616161616161616161616161616 + Iterated 100 times=236312F6B7D3A604A9B41D89230C15AA + Iterated 1000 times=F7CEA6E7E66E68AC864AF72DF1F92828 + +Set 3, vector# 23: + key=17171717171717171717171717171717 + plain=17171717171717171717171717171717 + cipher=C2977AF49EA6FB21E78154777B034E53 + decrypted=17171717171717171717171717171717 + Iterated 100 times=83659204FF7DCB76906570D3D330BC15 + Iterated 1000 times=AFC8934BF8FA675357AC337A903AA40E + +Set 3, vector# 24: + key=18181818181818181818181818181818 + plain=18181818181818181818181818181818 + cipher=8F562EEB76D8DD6A9C7B437E6761690C + decrypted=18181818181818181818181818181818 + Iterated 100 times=E5AEB68A95AEA4591294F72AC8722C0A + Iterated 1000 times=5F0940036DA816922E232B9BEEE07750 + +Set 3, vector# 25: + key=19191919191919191919191919191919 + plain=19191919191919191919191919191919 + cipher=6973A229A1E13651BFF4CCA2362959A1 + decrypted=19191919191919191919191919191919 + Iterated 100 times=4E6BAABB89E6FBD17AA363B4FB57759A + Iterated 1000 times=5540865D27E0D49B9FBEFDE5660F46A3 + +Set 3, vector# 26: + key=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + plain=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + cipher=A7453D5018B81360A74CE4655EF4A1FF + decrypted=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + Iterated 100 times=39FF2F283BB49217139A19D1C10C4585 + Iterated 1000 times=EA9BEA06D756AEA03EA39FE2A649FD2D + +Set 3, vector# 27: + key=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + plain=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + cipher=7A6BDEE340693ABC3EE6B614738F89DC + decrypted=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + Iterated 100 times=0CDE27B9C02C218775CDD9FFA8902A7E + Iterated 1000 times=EAC179EB4AC89645CD7CFE49DFBE04AB + +Set 3, vector# 28: + key=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + plain=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + cipher=156A94383A6478A7A698C3D237158D19 + decrypted=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + Iterated 100 times=FD46706C65DF3881183469F02D0641ED + Iterated 1000 times=C8742D713DBDB1D1363255E85B54285E + +Set 3, vector# 29: + key=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + plain=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + cipher=2BFFA8E7D7ECFCB62BFE6E3E3FD55F85 + decrypted=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + Iterated 100 times=13DA74A66EE9B89597B6C5B152776695 + Iterated 1000 times=11431C2C458B759A21EBE6E6498B217E + +Set 3, vector# 30: + key=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + plain=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + cipher=5522E0E50B07B5979110B8FAE65E34F1 + decrypted=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + Iterated 100 times=DAAAFA59C8C1F1A42631C288F4693678 + Iterated 1000 times=80D8C27884533D5A463BD2E6D2BC820D + +Set 3, vector# 31: + key=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + plain=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + cipher=23BD8169921B92656882982E26DBDF74 + decrypted=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + Iterated 100 times=EE76F161839FB0F2C6A00E8F99F6A5BE + Iterated 1000 times=12105814600889E5E9C2A5780D967410 + +Set 3, vector# 32: + key=20202020202020202020202020202020 + plain=20202020202020202020202020202020 + cipher=3F44B2F784D4D0226A32133663F62B12 + decrypted=20202020202020202020202020202020 + Iterated 100 times=30C1069E5322091C9471ECA679CD214A + Iterated 1000 times=643C8EBCEE0AA032C8D64DAAE8395FF6 + +Set 3, vector# 33: + key=21212121212121212121212121212121 + plain=21212121212121212121212121212121 + cipher=D353A8E349A98D1670EFE72DEFA4C7C8 + decrypted=21212121212121212121212121212121 + Iterated 100 times=2E711413EE99485C543AFA3C6B926F91 + Iterated 1000 times=F9AFBCE710C745CF2E16BCC239497100 + +Set 3, vector# 34: + key=22222222222222222222222222222222 + plain=22222222222222222222222222222222 + cipher=4687D5E0B238EDB0070A3CD0047E1B13 + decrypted=22222222222222222222222222222222 + Iterated 100 times=2C9D8FDD28DB01E727A1F109F05E3817 + Iterated 1000 times=F32867DAB144F4D1DA33248B5B901F1B + +Set 3, vector# 35: + key=23232323232323232323232323232323 + plain=23232323232323232323232323232323 + cipher=C884D8FEABB23A1673127E2E9EA60BA4 + decrypted=23232323232323232323232323232323 + Iterated 100 times=047C24E71089DAF9FC91DC70CD533B03 + Iterated 1000 times=6C8A6EAC37E1FBCB32C439084B9C3DB7 + +Set 3, vector# 36: + key=24242424242424242424242424242424 + plain=24242424242424242424242424242424 + cipher=AFCF8949356F105F6561DB734CD5BCD3 + decrypted=24242424242424242424242424242424 + Iterated 100 times=984ED0E84C15F5110B05B49D2FA3B443 + Iterated 1000 times=AB0F65AB3597DCBAEC7BC01A41BB9AA3 + +Set 3, vector# 37: + key=25252525252525252525252525252525 + plain=25252525252525252525252525252525 + cipher=4675AF86D7B8A016734039278277F22E + decrypted=25252525252525252525252525252525 + Iterated 100 times=04F07B37E20BFB54639D879297B06ABE + Iterated 1000 times=08E3755D1E7AFBF25E094E4599364C9F + +Set 3, vector# 38: + key=26262626262626262626262626262626 + plain=26262626262626262626262626262626 + cipher=8FA5063D3C3C74587163FADBA20625F4 + decrypted=26262626262626262626262626262626 + Iterated 100 times=56EF40C34EFC84A2438ADED72D4FAC8F + Iterated 1000 times=95E57DF936F6135F10EE0CFB11D52E63 + +Set 3, vector# 39: + key=27272727272727272727272727272727 + plain=27272727272727272727272727272727 + cipher=DD9BF68AA7563E69E2862A880286D398 + decrypted=27272727272727272727272727272727 + Iterated 100 times=C60B2841D1F55FF07C4E8CBC7094C1A5 + Iterated 1000 times=5933827E759196015D0D49EB081F0E32 + +Set 3, vector# 40: + key=28282828282828282828282828282828 + plain=28282828282828282828282828282828 + cipher=9989DD410418A4F8A37DF0D2476AE25D + decrypted=28282828282828282828282828282828 + Iterated 100 times=CFE381EE82A718EBAB30FDB8CB4E3243 + Iterated 1000 times=2B511832EAAC8225151AE06537D5DA8F + +Set 3, vector# 41: + key=29292929292929292929292929292929 + plain=29292929292929292929292929292929 + cipher=E5CB9FC301FFE43D265EA3101B0A128C + decrypted=29292929292929292929292929292929 + Iterated 100 times=FE6A368003DAE14A82F6231A4D53CAEA + Iterated 1000 times=166363130E884961D7D233CCEE72C8FF + +Set 3, vector# 42: + key=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + plain=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + cipher=AC693B6CF511256422D8766EC99F7489 + decrypted=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + Iterated 100 times=93D2A0AEFD960A13F57A6B46D8691D16 + Iterated 1000 times=33BD4B0E5D0C5B30F607373FB66AFFB5 + +Set 3, vector# 43: + key=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + plain=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + cipher=E99B371D2BAE0B182C0EB50131994DF5 + decrypted=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + Iterated 100 times=4C479122111D945561E4992A8D22DEDA + Iterated 1000 times=A28CBC2C55D54ADFB5521D229DEC1E22 + +Set 3, vector# 44: + key=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + plain=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + cipher=77FD181D237B26C01E49A0409140757E + decrypted=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + Iterated 100 times=A57397308686B8AB66745A8B0AD2250A + Iterated 1000 times=B57E098B3C31BB412B23298BFD99515B + +Set 3, vector# 45: + key=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + plain=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + cipher=53FC3259B840BC7425CF69754FB7AE8B + decrypted=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + Iterated 100 times=A1407164AA95666641E0772773A7F4EE + Iterated 1000 times=C4C4EC786F6B3F0297BD08C01FE3E98D + +Set 3, vector# 46: + key=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + plain=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + cipher=B3B24D095AAEF9E54CEA62CFDE3CE101 + decrypted=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + Iterated 100 times=BF7ABD243612EA11145E9193D8A1FA92 + Iterated 1000 times=58DEB29E6CA07FEA3C907412013C7400 + +Set 3, vector# 47: + key=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + plain=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + cipher=EC47C0C8177C386B475B311817FEB4EB + decrypted=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + Iterated 100 times=6321B39E7567549CFEA90678A2DAAA7C + Iterated 1000 times=13C96A77D58034121C660B010484DEB4 + +Set 3, vector# 48: + key=30303030303030303030303030303030 + plain=30303030303030303030303030303030 + cipher=F95C7F6B192B22BFFEFD1B779933FBFC + decrypted=30303030303030303030303030303030 + Iterated 100 times=6BB0621F7F61577D578EA7E5449310E6 + Iterated 1000 times=26583D6BC75604D20B77F92CDAF2BECC + +Set 3, vector# 49: + key=31313131313131313131313131313131 + plain=31313131313131313131313131313131 + cipher=AD0110483D0559D12E8CB97203E6C908 + decrypted=31313131313131313131313131313131 + Iterated 100 times=317FFC3C77F52155E275880A09286A8C + Iterated 1000 times=2E81523C75F0EED84D94FD717A968D88 + +Set 3, vector# 50: + key=32323232323232323232323232323232 + plain=32323232323232323232323232323232 + cipher=00CAE97F36A336EDB262E739C6E3D965 + decrypted=32323232323232323232323232323232 + Iterated 100 times=EAC2F74AF0CC75A9421493C0AD1DA65D + Iterated 1000 times=4D4BB00673F9761E6203B17C00DA12CC + +Set 3, vector# 51: + key=33333333333333333333333333333333 + plain=33333333333333333333333333333333 + cipher=018713F227CAEB2A890CE7437E943A63 + decrypted=33333333333333333333333333333333 + Iterated 100 times=990F8B83B437BD9520977D0C439925A8 + Iterated 1000 times=ECE206A3288B782AC4BA1CBCC7D45132 + +Set 3, vector# 52: + key=34343434343434343434343434343434 + plain=34343434343434343434343434343434 + cipher=F3D88AA0D8208487781F48B277DE99DD + decrypted=34343434343434343434343434343434 + Iterated 100 times=EC88F6109714724F15958977D9C72C4E + Iterated 1000 times=3A11C7D637945B3490149E180931C2FB + +Set 3, vector# 53: + key=35353535353535353535353535353535 + plain=35353535353535353535353535353535 + cipher=9E04528F488BCBB8FC95548933C0A888 + decrypted=35353535353535353535353535353535 + Iterated 100 times=6EC488FFAA288D547EF05F9D7C3175A8 + Iterated 1000 times=8BF581E036922DCB721AEC89167477EF + +Set 3, vector# 54: + key=36363636363636363636363636363636 + plain=36363636363636363636363636363636 + cipher=F202A5681C6A611A5744185BD70056BA + decrypted=36363636363636363636363636363636 + Iterated 100 times=717547ADBED5E768D6290011120AA557 + Iterated 1000 times=DE7ACBF30CE0D269018187D0473436ED + +Set 3, vector# 55: + key=37373737373737373737373737373737 + plain=37373737373737373737373737373737 + cipher=339DF7E58A3AA4532DDC374936386A8B + decrypted=37373737373737373737373737373737 + Iterated 100 times=F10B66CA6D45BEDD188EE4631D1DD4EA + Iterated 1000 times=419EB17340F6FF92E9DD55AF814A31DE + +Set 3, vector# 56: + key=38383838383838383838383838383838 + plain=38383838383838383838383838383838 + cipher=A2FF05B5D95045E6C3EA7841585E88ED + decrypted=38383838383838383838383838383838 + Iterated 100 times=D9D3411340B7E56996C37C128BB4E2CC + Iterated 1000 times=4DBF2D296BC175F7F22A5B5A0BF39988 + +Set 3, vector# 57: + key=39393939393939393939393939393939 + plain=39393939393939393939393939393939 + cipher=41B9425CFEF2892DFD6503A18DF02AFC + decrypted=39393939393939393939393939393939 + Iterated 100 times=BFEFC86F5CF0E5B78A99F37D08715708 + Iterated 1000 times=E276A0EB939083D9625D2891F041DF0A + +Set 3, vector# 58: + key=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + plain=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + cipher=63D7CE531EC3CB1912CD4EBC75681B80 + decrypted=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + Iterated 100 times=546C909603679CF009C3E9B6C6891240 + Iterated 1000 times=5AFA1B9B58ACCB1F2740F6F7306EE8F9 + +Set 3, vector# 59: + key=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + plain=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + cipher=082B20C357CA44CC20C79CCA0F6751FE + decrypted=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + Iterated 100 times=13F23C54EA28A554AF3AB4DD9CE59F81 + Iterated 1000 times=53FE3DE1DE8FE73105D9D818D5B202B8 + +Set 3, vector# 60: + key=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + plain=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + cipher=E377212943097FE6CBF6D6F57A266F74 + decrypted=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + Iterated 100 times=93FB5317887F78BB60E1218DE6AED005 + Iterated 1000 times=37F7C90C9AD37894C77168678E5E5556 + +Set 3, vector# 61: + key=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + plain=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + cipher=1BE8172140958AC493F127257D6459D0 + decrypted=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + Iterated 100 times=BA53F45B507C5A4062988AE62A1977CB + Iterated 1000 times=F4A23183ABDD1D2F8BDD7B267BD2D9A9 + +Set 3, vector# 62: + key=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + plain=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + cipher=0CBB3C86C01F7902EECC6B7FC42E6936 + decrypted=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + Iterated 100 times=E0B477421598343C6DAC5596045F78A2 + Iterated 1000 times=5BF59A422DABCFDC6C5BC20372532541 + +Set 3, vector# 63: + key=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + plain=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + cipher=1A3DD190CAA05A0BF5ACEE424A62A986 + decrypted=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + Iterated 100 times=E81D865B7EC8053247D59F0906C64C34 + Iterated 1000 times=5715EA3B4F28811BF5273FFFC5CAD783 + +Set 3, vector# 64: + key=40404040404040404040404040404040 + plain=40404040404040404040404040404040 + cipher=4712B27125929CE40DBDBD5C07F62EEE + decrypted=40404040404040404040404040404040 + Iterated 100 times=D04DA7D2439177910A3FDF3082C7C1F7 + Iterated 1000 times=C1A61229B2E94F1927DE7A529899695B + +Set 3, vector# 65: + key=41414141414141414141414141414141 + plain=41414141414141414141414141414141 + cipher=F8CBA1AA5B5120B4F2FDDA1B26CA0158 + decrypted=41414141414141414141414141414141 + Iterated 100 times=206ECFADB0960D82D110D463CD1DE9AE + Iterated 1000 times=D599AF142617C0A414A2C8A4D85993EE + +Set 3, vector# 66: + key=42424242424242424242424242424242 + plain=42424242424242424242424242424242 + cipher=567A53E29506CF447682283EF4245BBA + decrypted=42424242424242424242424242424242 + Iterated 100 times=4B051A949716ACF2ED36A52D234DF2B7 + Iterated 1000 times=534E4F5F7F1771C7CD2B01844ED927C9 + +Set 3, vector# 67: + key=43434343434343434343434343434343 + plain=43434343434343434343434343434343 + cipher=459BEBD7E4CEF28C6C48DA0DF355D1B9 + decrypted=43434343434343434343434343434343 + Iterated 100 times=3C868771CB75E64035EC890464910C92 + Iterated 1000 times=639E01C288EE85B05978237D956B9657 + +Set 3, vector# 68: + key=44444444444444444444444444444444 + plain=44444444444444444444444444444444 + cipher=8642513F820B6537E02A3D46DE3A0D80 + decrypted=44444444444444444444444444444444 + Iterated 100 times=55F3CECD38A0E033C6FC974D5028A176 + Iterated 1000 times=B599B0D7D41C06919C32F1CC89EC9EB3 + +Set 3, vector# 69: + key=45454545454545454545454545454545 + plain=45454545454545454545454545454545 + cipher=966698FB045025C1C31CC2CCBEA8B1AF + decrypted=45454545454545454545454545454545 + Iterated 100 times=B3DD648B27D453833E6FC18F1530AA46 + Iterated 1000 times=65839E54CC61ED7B12B4D1C2E197A689 + +Set 3, vector# 70: + key=46464646464646464646464646464646 + plain=46464646464646464646464646464646 + cipher=C82B0F7B732A66A94F50BEDB74FB4A93 + decrypted=46464646464646464646464646464646 + Iterated 100 times=F916B847EC096DE6272C02C014CD2EBD + Iterated 1000 times=228E3742201D66E53A38C21239CBCF32 + +Set 3, vector# 71: + key=47474747474747474747474747474747 + plain=47474747474747474747474747474747 + cipher=90BC6B630DBF6440ADC916BAB81C6D40 + decrypted=47474747474747474747474747474747 + Iterated 100 times=D90CF94D4D007A461748BAD0E49E05A3 + Iterated 1000 times=D82CA4ADF96E97AE90364E99CB6E1BC7 + +Set 3, vector# 72: + key=48484848484848484848484848484848 + plain=48484848484848484848484848484848 + cipher=EC4B5EE9437D678CB2709929604F0749 + decrypted=48484848484848484848484848484848 + Iterated 100 times=9957B37A9E8795FBFC5B6359A6D9F06F + Iterated 1000 times=1A868EC4F200C873BDC09745DE959185 + +Set 3, vector# 73: + key=49494949494949494949494949494949 + plain=49494949494949494949494949494949 + cipher=3E5A9E6A8A14AF8D2D5CE64541A1CD4B + decrypted=49494949494949494949494949494949 + Iterated 100 times=8C275AF0E8C72B2D693CA7D73E28CA4F + Iterated 1000 times=F28C5A65DD49D03082BD2963347D0D1B + +Set 3, vector# 74: + key=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + plain=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + cipher=E78D6E736C02A1FF23A2731A7BF5BBE8 + decrypted=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + Iterated 100 times=A213DDBA627324D95E8E395788C1767E + Iterated 1000 times=7AB9D2DC6790B3433783F6AD0FD89D44 + +Set 3, vector# 75: + key=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + plain=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + cipher=B5DCB72E0AB2F3883DF7F3B08C5CD56A + decrypted=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + Iterated 100 times=E4B21014D5F966892989F1CF14D21110 + Iterated 1000 times=E630E182C3DFF463EEABD7A534A96CB5 + +Set 3, vector# 76: + key=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + plain=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + cipher=2845207901A0DD3A5543D19B10C4DFD2 + decrypted=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + Iterated 100 times=E05033AB771D81486793D46BF312387B + Iterated 1000 times=1DA3AB59B258195B736BE72DADBF1D8F + +Set 3, vector# 77: + key=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + plain=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + cipher=63CF43D3D28B6501DDB21A479610BBFC + decrypted=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + Iterated 100 times=83E1BFC2F3328590A6829DD4196EFBAA + Iterated 1000 times=2C760F45F0EA61894EEE8BB55056259F + +Set 3, vector# 78: + key=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + plain=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + cipher=55AB97F299D656057EE6632B576B1920 + decrypted=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + Iterated 100 times=B2A1254D36C6811AEA13DAA9547B68AE + Iterated 1000 times=08B696C67E3A3A5300DFA6CDB00A7633 + +Set 3, vector# 79: + key=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + plain=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + cipher=C8D5FEBE2559C232B222E5AE3AD5E0D5 + decrypted=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + Iterated 100 times=653FB9110DAB2E5CE0841794AD222700 + Iterated 1000 times=7F200CD1412502FAF41F27B1C4E2615A + +Set 3, vector# 80: + key=50505050505050505050505050505050 + plain=50505050505050505050505050505050 + cipher=DFD2BA332F49375BFB3AB6AA4C1DE9BC + decrypted=50505050505050505050505050505050 + Iterated 100 times=2EEB862FA0B4E134A80C2155517A369A + Iterated 1000 times=2D0CFA8F07C0DAF0284D62126BF2771B + +Set 3, vector# 81: + key=51515151515151515151515151515151 + plain=51515151515151515151515151515151 + cipher=598336FD09BBA2E384E1530EBD7A204D + decrypted=51515151515151515151515151515151 + Iterated 100 times=C137687994E6306AE89B908E65F29222 + Iterated 1000 times=D99C5A01D96A691617FDA8EE529690E8 + +Set 3, vector# 82: + key=52525252525252525252525252525252 + plain=52525252525252525252525252525252 + cipher=B2C2995D67A4DA0EF7CBE2EE59F53784 + decrypted=52525252525252525252525252525252 + Iterated 100 times=EC787A98EEB4A07496EB8833A7ED6D74 + Iterated 1000 times=488920729025CC4F35B8DB4A7848B4A8 + +Set 3, vector# 83: + key=53535353535353535353535353535353 + plain=53535353535353535353535353535353 + cipher=0BB3D8E000FEC518A0563F13BAEEF48D + decrypted=53535353535353535353535353535353 + Iterated 100 times=D874A974ABE9503DB0417B8BC98B2874 + Iterated 1000 times=6264DD909CD0A716A24C188BAEBCE8B0 + +Set 3, vector# 84: + key=54545454545454545454545454545454 + plain=54545454545454545454545454545454 + cipher=8CCEBB324145EFED61C858A8605F4F2E + decrypted=54545454545454545454545454545454 + Iterated 100 times=89D1833365E06D476524F705536A3946 + Iterated 1000 times=4B561B30357D877D7458D4FFF2DCDFDB + +Set 3, vector# 85: + key=55555555555555555555555555555555 + plain=55555555555555555555555555555555 + cipher=78DADB1CE036468811E3E16DC11E81F1 + decrypted=55555555555555555555555555555555 + Iterated 100 times=1C88A8A085FB3DE15AA84D3C61E8F37A + Iterated 1000 times=02CA94A3C9058D2B3E94C9949512BBC8 + +Set 3, vector# 86: + key=56565656565656565656565656565656 + plain=56565656565656565656565656565656 + cipher=7F49AD495DF28297CB07EE632EFDE5C3 + decrypted=56565656565656565656565656565656 + Iterated 100 times=AB3BE2693318EB3690A18F9C811A5EEF + Iterated 1000 times=578A81965A3D9D71C16AEC013BB6A701 + +Set 3, vector# 87: + key=57575757575757575757575757575757 + plain=57575757575757575757575757575757 + cipher=12FFE38B26CA7F2C9A994FDFCF1A2F5C + decrypted=57575757575757575757575757575757 + Iterated 100 times=03BC1CD4452D64884A0228F98B7A68F7 + Iterated 1000 times=81D8AB6A39E35B33EC458AAE2F88D183 + +Set 3, vector# 88: + key=58585858585858585858585858585858 + plain=58585858585858585858585858585858 + cipher=903B2860A82613AA2582B6DB0A9ADD67 + decrypted=58585858585858585858585858585858 + Iterated 100 times=8785EDF7BD60F27BD3453AE77671A11B + Iterated 1000 times=CEE9758B79708EEBB3CD1B588635E16E + +Set 3, vector# 89: + key=59595959595959595959595959595959 + plain=59595959595959595959595959595959 + cipher=811598F100F884178A4E3217E7A26A7C + decrypted=59595959595959595959595959595959 + Iterated 100 times=84533F8A022325C8F2E842853B10EADC + Iterated 1000 times=0F4A05C4B8B0078BE32E3E29B078D580 + +Set 3, vector# 90: + key=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + plain=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + cipher=88EB211D22CCCE0BA112DD6FDA0BF581 + decrypted=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + Iterated 100 times=92BFFBC77785FB9FECA0B7D3E680A9A5 + Iterated 1000 times=1C2D6E2DA14A82449D610370B8EFD564 + +Set 3, vector# 91: + key=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + plain=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + cipher=88FFECB4006517A1364CCB65573C7CA8 + decrypted=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + Iterated 100 times=0BDB5D1204FB4D923DFD0ABA89F2DFCB + Iterated 1000 times=85D6AAB70DB052AE5CD950696D6CBDC9 + +Set 3, vector# 92: + key=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + plain=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + cipher=2854749B66B323DF056B0657C90E8919 + decrypted=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + Iterated 100 times=5FEA4120CF5875368F335D6B767D5735 + Iterated 1000 times=671E64A6CBFB1BFB96795B36FDEAD9BD + +Set 3, vector# 93: + key=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + plain=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + cipher=784EDBCBB8D4BCB8C5161023F1D36515 + decrypted=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + Iterated 100 times=5E5EF746C94E98DD2969BDBE004C4300 + Iterated 1000 times=AD40F6428E2D92F763D87C451CE8375A + +Set 3, vector# 94: + key=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + plain=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + cipher=67E66DBFF15A90C042D935E0CC3A3BEF + decrypted=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + Iterated 100 times=3511F4FE6BBF6AD4540E0A6F01FC9EFF + Iterated 1000 times=087841705719ED8F9FFD986FB0FD11C9 + +Set 3, vector# 95: + key=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + plain=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + cipher=3DFB649AADECE27C89946845371D6226 + decrypted=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + Iterated 100 times=B74453C69C38F65CD94FC570B1E6BBA8 + Iterated 1000 times=6AADAEC45D634996F76373390D4462D0 + +Set 3, vector# 96: + key=60606060606060606060606060606060 + plain=60606060606060606060606060606060 + cipher=2E62ED5B5C3B44A5A22EEADE6222A0F2 + decrypted=60606060606060606060606060606060 + Iterated 100 times=8117FE9306C27EE201604290E9F674F0 + Iterated 1000 times=482FCB856EC4800904B4C1C90C4FD334 + +Set 3, vector# 97: + key=61616161616161616161616161616161 + plain=61616161616161616161616161616161 + cipher=5188C6474B228CBDD242E9125EBE1D53 + decrypted=61616161616161616161616161616161 + Iterated 100 times=B35E75788E783E947B154E9FCF6CE05B + Iterated 1000 times=209CCC2155B5D06B8026E8F12B5D58D7 + +Set 3, vector# 98: + key=62626262626262626262626262626262 + plain=62626262626262626262626262626262 + cipher=4C69D8B103B807683363BC0DB98F6AB0 + decrypted=62626262626262626262626262626262 + Iterated 100 times=6932D46DC2547ACE751CD863C6A8DAC2 + Iterated 1000 times=24BF827A250C18A7AC34D600E20A1A7D + +Set 3, vector# 99: + key=63636363636363636363636363636363 + plain=63636363636363636363636363636363 + cipher=AF88C578156A507FCB6227F633E8B288 + decrypted=63636363636363636363636363636363 + Iterated 100 times=D8F9FD1A736DECE15880A18E131A7CB1 + Iterated 1000 times=C6919CF78B7DF2F0255C7F004907C9A3 + +Set 3, vector#100: + key=64646464646464646464646464646464 + plain=64646464646464646464646464646464 + cipher=F38AB812AC732EAA2331D06D0910D4D2 + decrypted=64646464646464646464646464646464 + Iterated 100 times=2A6BA53E53246CAF07C13FC4FB83DCED + Iterated 1000 times=EE8BEC739A8ADBA79CE5C1267032DCE7 + +Set 3, vector#101: + key=65656565656565656565656565656565 + plain=65656565656565656565656565656565 + cipher=65A60A11FD2D0025DB4EEB91C96314F7 + decrypted=65656565656565656565656565656565 + Iterated 100 times=5069BE3C1B2E66A92A671166CFA473D6 + Iterated 1000 times=598B43718C859596F05C5C09F27519ED + +Set 3, vector#102: + key=66666666666666666666666666666666 + plain=66666666666666666666666666666666 + cipher=91A66003BD4AC2D61B3FB4A0A882380E + decrypted=66666666666666666666666666666666 + Iterated 100 times=B93E55149FB38622A0A555165A37EC0C + Iterated 1000 times=BB57B26663E8E249A0FDC30FBBD2CAE2 + +Set 3, vector#103: + key=67676767676767676767676767676767 + plain=67676767676767676767676767676767 + cipher=8B0F529E64C2102885DC60A05D075F47 + decrypted=67676767676767676767676767676767 + Iterated 100 times=D88CE7B713AE98C6147A0A1B63C2CFF9 + Iterated 1000 times=1888A90EC8DA97E30C464DACC10F3786 + +Set 3, vector#104: + key=68686868686868686868686868686868 + plain=68686868686868686868686868686868 + cipher=01FC03141FD8624C86EEFC0EF99574BF + decrypted=68686868686868686868686868686868 + Iterated 100 times=67E8E1488C97AEC5CF1E08D6D9E2B8F2 + Iterated 1000 times=B8DBB2D5214037025B100DA3140C699B + +Set 3, vector#105: + key=69696969696969696969696969696969 + plain=69696969696969696969696969696969 + cipher=5564C495F745DC7B83044A71B95DAB73 + decrypted=69696969696969696969696969696969 + Iterated 100 times=60EC4AD5AA0F7F2019A8DB5E20DB5339 + Iterated 1000 times=16FCD39C0A4F6CF7BF0406784F2C3899 + +Set 3, vector#106: + key=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + plain=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + cipher=2A38E5A695B35F8BCEB4EF68B2D656D4 + decrypted=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + Iterated 100 times=5F73756CE2196BA0781702902A341430 + Iterated 1000 times=B2889A2F3981C8474D738CA604452385 + +Set 3, vector#107: + key=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + plain=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + cipher=D10E4B8CBC3EC467F80B12E739F3BFE0 + decrypted=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + Iterated 100 times=F4DF9D7A7101DD4B4E7FE77535E161DC + Iterated 1000 times=0D55359E2C57A5AE729396712D17471E + +Set 3, vector#108: + key=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + plain=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + cipher=71BC9C6371722F6FC41ADF477DEF5EF6 + decrypted=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + Iterated 100 times=8A6295AF31F19990253985BD6318FD0E + Iterated 1000 times=F0EA435C1C15AD95297B0BCAD996F3A2 + +Set 3, vector#109: + key=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + plain=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + cipher=92D4D3A4F644ED21B27FDF0803CA8EA3 + decrypted=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + Iterated 100 times=DD93909962829317D21708B93B7F505A + Iterated 1000 times=14BF83982E78522EE0FD8CA1D9416D2C + +Set 3, vector#110: + key=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + plain=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + cipher=DB27D3D5AE844A10BC899CE44B640ED1 + decrypted=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + Iterated 100 times=F9BB961E10188C5AF026B8964CED5FBC + Iterated 1000 times=E432F4ED21C1476DC8697A62DB917322 + +Set 3, vector#111: + key=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + plain=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + cipher=ABE7E8E66F5D2E785879FDF12CC348C8 + decrypted=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + Iterated 100 times=97536D53B444907EE2459DCC9765B0DB + Iterated 1000 times=DF58206DB8283BE360712A3EF2C20646 + +Set 3, vector#112: + key=70707070707070707070707070707070 + plain=70707070707070707070707070707070 + cipher=F7A6686DB468BF06ED259314EF9ACC12 + decrypted=70707070707070707070707070707070 + Iterated 100 times=2177FF3AB52598AF5877EA626FCFFA87 + Iterated 1000 times=CBB0EB0D8758EDDB11381F3D2538E0A0 + +Set 3, vector#113: + key=71717171717171717171717171717171 + plain=71717171717171717171717171717171 + cipher=30684EE473A9BC72C6AFF8928FFF8B45 + decrypted=71717171717171717171717171717171 + Iterated 100 times=68D489F6D98774871FC83CC9A4F120C8 + Iterated 1000 times=3913A7E95CB98F71BAB7E9852F734B2A + +Set 3, vector#114: + key=72727272727272727272727272727272 + plain=72727272727272727272727272727272 + cipher=F85E43AB1AEF357C54A9FE0899FCBC26 + decrypted=72727272727272727272727272727272 + Iterated 100 times=55C6E835F757EAA800FFE1F01F39FF49 + Iterated 1000 times=4D5CC87179CE547F0E0BB28F1D8D51C6 + +Set 3, vector#115: + key=73737373737373737373737373737373 + plain=73737373737373737373737373737373 + cipher=1AF59D5FF5D65D8A3BF45A35853FD483 + decrypted=73737373737373737373737373737373 + Iterated 100 times=060FC85294E03A0CBAA2A50B20FD3243 + Iterated 1000 times=E295CA2067B6C709D107F56CA65CD6E0 + +Set 3, vector#116: + key=74747474747474747474747474747474 + plain=74747474747474747474747474747474 + cipher=9A3A6FC446F797E3DB39B1C1F76D6C8F + decrypted=74747474747474747474747474747474 + Iterated 100 times=4A3D6735FA9F0F3F186F0B1CDB02FD8A + Iterated 1000 times=BB312D4F1E07AEDD3AE310B8DD702053 + +Set 3, vector#117: + key=75757575757575757575757575757575 + plain=75757575757575757575757575757575 + cipher=DD6CB1AB2949A8AC0AD79F2CF047E525 + decrypted=75757575757575757575757575757575 + Iterated 100 times=3D024C26ABC32EB7C5AAA9C76685FCBE + Iterated 1000 times=56ADD4E32841E03006B1F01BA63BF595 + +Set 3, vector#118: + key=76767676767676767676767676767676 + plain=76767676767676767676767676767676 + cipher=710D53A6CEEE9CBEABC8297246BBFC53 + decrypted=76767676767676767676767676767676 + Iterated 100 times=F3AB9B5D266838F96C57171866777F00 + Iterated 1000 times=9B523ABE72DF5E219439B9526094AE62 + +Set 3, vector#119: + key=77777777777777777777777777777777 + plain=77777777777777777777777777777777 + cipher=0AFE465C4E9F30901DE565641E77CF7C + decrypted=77777777777777777777777777777777 + Iterated 100 times=9B669E2CF6EF05847E63486C46312CB1 + Iterated 1000 times=933CA465C351214380FCC4D754E9E67A + +Set 3, vector#120: + key=78787878787878787878787878787878 + plain=78787878787878787878787878787878 + cipher=692DB8266D111CFCF6E8FFD11EA5FEA4 + decrypted=78787878787878787878787878787878 + Iterated 100 times=64CA712F93DCE3D4BE28F3CBA5D3DF71 + Iterated 1000 times=DE3F0B8ED34010238806415DA5E14B25 + +Set 3, vector#121: + key=79797979797979797979797979797979 + plain=79797979797979797979797979797979 + cipher=4CD45050B6987CE066DA2B14765915D4 + decrypted=79797979797979797979797979797979 + Iterated 100 times=30F599124967D4F443A2096352D2E5F0 + Iterated 1000 times=C4DD77690AB78078341E6462D6A8ECB1 + +Set 3, vector#122: + key=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + plain=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + cipher=B735C4725758B1DEB39E1AFF70AA6592 + decrypted=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + Iterated 100 times=AA21AD3796B610DFB3F07A8EBF7C085A + Iterated 1000 times=0902B09EB137ED42492FC43AEEF7420A + +Set 3, vector#123: + key=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + plain=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + cipher=0D0D9BDA653C3EECC33DFD89EA5250A8 + decrypted=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + Iterated 100 times=963C44BAC4E9DE760E80AF15DB02A981 + Iterated 1000 times=97B04F380F31A6CE4771F2AB360CA225 + +Set 3, vector#124: + key=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + plain=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + cipher=16A4C5CA2368FCD1D8310D129852620D + decrypted=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + Iterated 100 times=353C318CE6957F2AEEC3C89A4AEF3DEB + Iterated 1000 times=6C2A113EB94D80E5CEF97E0675B01F24 + +Set 3, vector#125: + key=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + plain=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + cipher=176B0AFB36F322D5B464D69878CCAA7F + decrypted=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + Iterated 100 times=087EC106BD33798033AE5EB54A67CF06 + Iterated 1000 times=946B9FFF2FC7B63C47C7301E38D045AC + +Set 3, vector#126: + key=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + plain=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + cipher=02F4B6C915A700755AC8DD5D293447B7 + decrypted=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + Iterated 100 times=7F73CA26C96AA95FA5F4725A06D62F55 + Iterated 1000 times=7166FC535BFADF3A0CEC5B8E9BF5AC2E + +Set 3, vector#127: + key=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + plain=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + cipher=25EFC5E40906723790B1366244A419D2 + decrypted=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + Iterated 100 times=57F71C5E5AF3B2E017DAEBE056B2767E + Iterated 1000 times=90582ABDD39D9D1094379F5CD5FDC454 + +Set 3, vector#128: + key=80808080808080808080808080808080 + plain=80808080808080808080808080808080 + cipher=E7F10B4318BFDE234B07329DBD798685 + decrypted=80808080808080808080808080808080 + Iterated 100 times=96BEC141E107645896D957092B575E2A + Iterated 1000 times=5C6CC433EBAD965A9B711C6A84A37643 + +Set 3, vector#129: + key=81818181818181818181818181818181 + plain=81818181818181818181818181818181 + cipher=64B585F673BA9E349F0C94E8B5138A9C + decrypted=81818181818181818181818181818181 + Iterated 100 times=9F259F424B98D1304A72FF2E666C8574 + Iterated 1000 times=459273E35BF7EBA0004BCAD845E183E6 + +Set 3, vector#130: + key=82828282828282828282828282828282 + plain=82828282828282828282828282828282 + cipher=045BE998FCB2CBCA7D02BA123E1DF8C5 + decrypted=82828282828282828282828282828282 + Iterated 100 times=B8FA424127CB5C92D825C91E51A40A31 + Iterated 1000 times=92B8A563B6D57804315E5B90DE319EDC + +Set 3, vector#131: + key=83838383838383838383838383838383 + plain=83838383838383838383838383838383 + cipher=9F221AFDB6D5FE7956533577279DC957 + decrypted=83838383838383838383838383838383 + Iterated 100 times=ED624488AD8791992F074771FFD7743D + Iterated 1000 times=8417278AC3B16E65DF39F47A2B30BFB1 + +Set 3, vector#132: + key=84848484848484848484848484848484 + plain=84848484848484848484848484848484 + cipher=FE68BF5BF900D6F09A8056E2B6D08299 + decrypted=84848484848484848484848484848484 + Iterated 100 times=2D1510AD15925D5B28F3C9A124ED5CA6 + Iterated 1000 times=A2BB4999ECD7F5C00043C0C7065A2C68 + +Set 3, vector#133: + key=85858585858585858585858585858585 + plain=85858585858585858585858585858585 + cipher=CDFEF36A3038A3B3FCE1C0A74B57E672 + decrypted=85858585858585858585858585858585 + Iterated 100 times=284DBD70D638630A081CE0F3DF7137E3 + Iterated 1000 times=E0DB3915CB88F21A34E922CDF411D9A0 + +Set 3, vector#134: + key=86868686868686868686868686868686 + plain=86868686868686868686868686868686 + cipher=14DBD15ABA51D09CD58BDC0DDE27CB2B + decrypted=86868686868686868686868686868686 + Iterated 100 times=D0FCB8B9248D7C435DB987CFE493D6E0 + Iterated 1000 times=F422FC9297B6A05CAF5CDF91AB95E355 + +Set 3, vector#135: + key=87878787878787878787878787878787 + plain=87878787878787878787878787878787 + cipher=821241BAA78C1A6783E3055560F8ADD3 + decrypted=87878787878787878787878787878787 + Iterated 100 times=A0F88BCCC686B9C8410C260A24DE6C55 + Iterated 1000 times=16599576B304D2676E695030BACA0233 + +Set 3, vector#136: + key=88888888888888888888888888888888 + plain=88888888888888888888888888888888 + cipher=6ECA382E5C8D922ED3D33DF35A2C9D1F + decrypted=88888888888888888888888888888888 + Iterated 100 times=9C689A8E8B2F5DFC8AA04FE8FBE1A48B + Iterated 1000 times=6378B96579421E33D32BB64D65F1C96B + +Set 3, vector#137: + key=89898989898989898989898989898989 + plain=89898989898989898989898989898989 + cipher=E3F51A435997A7205F0E8E6116200B65 + decrypted=89898989898989898989898989898989 + Iterated 100 times=4E9496D61781995A14A11A0CF85156CE + Iterated 1000 times=2059C52A4D3C65898A4EB37BC701CE5E + +Set 3, vector#138: + key=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + plain=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + cipher=8CE858C10F493A44552776238783595E + decrypted=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + Iterated 100 times=6990A41735C62D7B1383D52EDB81192E + Iterated 1000 times=DFA20469D4F05659B5D45D4D61384947 + +Set 3, vector#139: + key=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + plain=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + cipher=848750D1FF5C4884BEE1D8A11F8BF8EA + decrypted=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + Iterated 100 times=70760A65BC6BDDFEDDCBC785153848D9 + Iterated 1000 times=E8B834D7EC32467683D7BAAEEA9ADF22 + +Set 3, vector#140: + key=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + plain=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + cipher=5F7C191404107977D7607F6BBD3E6E42 + decrypted=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + Iterated 100 times=BC9D5F57EB78A9D51ABD55F1BDD5F56E + Iterated 1000 times=BFB801EB40D803CABA375C38F3F29154 + +Set 3, vector#141: + key=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + plain=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + cipher=CB5545F06400D02ADADC65972CCDE7A2 + decrypted=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + Iterated 100 times=C8CBE35C3F3F07D7733B959957CF867D + Iterated 1000 times=CE1E665B6790F052CE810694177B3A04 + +Set 3, vector#142: + key=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + plain=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + cipher=2948C4D818C89C00873AAD4B491AD499 + decrypted=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + Iterated 100 times=EBB922C3DC6036AA1213442EA00D264E + Iterated 1000 times=1BF3BCD1553EE9C5706689E73AD29E4B + +Set 3, vector#143: + key=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + plain=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + cipher=757B928394A9025AF1E807E4E0E5BBE0 + decrypted=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + Iterated 100 times=537BFA9CBAABBFC4CACC515933D02F2D + Iterated 1000 times=AC3425EF540052CA570F4D9177472EA7 + +Set 3, vector#144: + key=90909090909090909090909090909090 + plain=90909090909090909090909090909090 + cipher=9C1310EF0F14FA866B9D49C0581D1180 + decrypted=90909090909090909090909090909090 + Iterated 100 times=29EBFD5BA708EFEA8FE0AC3CDFFB1CCB + Iterated 1000 times=AD07C0CC51E1E3CD9BD99DCB25A624C2 + +Set 3, vector#145: + key=91919191919191919191919191919191 + plain=91919191919191919191919191919191 + cipher=7E29A1B1977EDB6260846BEB56B07FD8 + decrypted=91919191919191919191919191919191 + Iterated 100 times=27800FCDFF5BDD67CAFDBB448BBCEA0E + Iterated 1000 times=D0E77DA504F22B075FB4D13F86A7A88C + +Set 3, vector#146: + key=92929292929292929292929292929292 + plain=92929292929292929292929292929292 + cipher=2333B0990EFE684CB85FF6FFD423821B + decrypted=92929292929292929292929292929292 + Iterated 100 times=1B9F9DD9A5C38AA42BDA0F1E76ECFB46 + Iterated 1000 times=5B1760166D1BF9DB0B27291379EC2D0B + +Set 3, vector#147: + key=93939393939393939393939393939393 + plain=93939393939393939393939393939393 + cipher=7690D7E7D9FCDC4AA502348E8BBE51DA + decrypted=93939393939393939393939393939393 + Iterated 100 times=F8CA50C8EC8FEC11303748F96FE2876D + Iterated 1000 times=ED4384F6FADDF36EA2C49691117E158E + +Set 3, vector#148: + key=94949494949494949494949494949494 + plain=94949494949494949494949494949494 + cipher=00095F02666B77300AFC236C84FAF10C + decrypted=94949494949494949494949494949494 + Iterated 100 times=DA07E1B7ADFC221B5F0898ACAB8D570F + Iterated 1000 times=35BAE1CE9B7604BCB7AD363369E3F072 + +Set 3, vector#149: + key=95959595959595959595959595959595 + plain=95959595959595959595959595959595 + cipher=162D7C61C65535E578EA8D34355793A9 + decrypted=95959595959595959595959595959595 + Iterated 100 times=5FC0DA19A392AE83D32371CC23A50D1A + Iterated 1000 times=34B07059110A57D30249844F6201D45A + +Set 3, vector#150: + key=96969696969696969696969696969696 + plain=96969696969696969696969696969696 + cipher=6DF6B8C7EC5511BCC3B8E65CC9519D1E + decrypted=96969696969696969696969696969696 + Iterated 100 times=3F98D42DB4A899382673359FBC88BBFE + Iterated 1000 times=DD7A1540AB453F87BA13B717B29D44AA + +Set 3, vector#151: + key=97979797979797979797979797979797 + plain=97979797979797979797979797979797 + cipher=978806AF03E64C197F03557FA0C79D59 + decrypted=97979797979797979797979797979797 + Iterated 100 times=B0EC953231F93B58D4F1A354159BCDB9 + Iterated 1000 times=4F55F2630D209C4C3321AB0FC3A52C62 + +Set 3, vector#152: + key=98989898989898989898989898989898 + plain=98989898989898989898989898989898 + cipher=03CEF395B1FF3D1B85158503037D2865 + decrypted=98989898989898989898989898989898 + Iterated 100 times=E4C524D4602CD3C04F112E133FA9299A + Iterated 1000 times=EDC80CF8C64396AB939C9A6211BDF74E + +Set 3, vector#153: + key=99999999999999999999999999999999 + plain=99999999999999999999999999999999 + cipher=B81E2FDA9171537A40671AA842241FFE + decrypted=99999999999999999999999999999999 + Iterated 100 times=A4856B8AFBDE9754167DA73F8E1B52D1 + Iterated 1000 times=0719960C2C5901BB8F3A620155AEA7E9 + +Set 3, vector#154: + key=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + plain=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + cipher=4923D9B9629C69EB87AED6A32C2E35A8 + decrypted=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + Iterated 100 times=C836B59D447E6D83764E3B9F5D650D25 + Iterated 1000 times=399DF93E757CFE1C03256D466CA55A51 + +Set 3, vector#155: + key=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + plain=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + cipher=D7F81B57CCF75A6BBDA373E2F503A0D4 + decrypted=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + Iterated 100 times=4CC9C68D6F6F905D45C1DB51B6D215B8 + Iterated 1000 times=7B3407622CC842D8C95B7AB83F6E8882 + +Set 3, vector#156: + key=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + plain=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + cipher=A0C4A61319F500160A2196412E155AB6 + decrypted=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + Iterated 100 times=CC4DFFDA1C060E7AE57E81E57043FCF0 + Iterated 1000 times=57FB95F0E02F4A9127CD52556C9B56F7 + +Set 3, vector#157: + key=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + plain=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + cipher=C1FC6E9D502559FCC151B90A9E1C1B2A + decrypted=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + Iterated 100 times=7532F7BBD2A33E21E86A3230B7E20EEC + Iterated 1000 times=551EB3D613C5A0CF9D9CB57886FA90F4 + +Set 3, vector#158: + key=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + plain=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + cipher=861F8C30E50857998802B367EA414277 + decrypted=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + Iterated 100 times=CD9D388AE117BA145BADD56F2E952D60 + Iterated 1000 times=4252D0946D4284F910A38905074D1AA3 + +Set 3, vector#159: + key=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + plain=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + cipher=99C01FE09615B757456F6CBA0E0ACC49 + decrypted=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + Iterated 100 times=844E3E835A32C50EBFE29B56FC953580 + Iterated 1000 times=0702AA7AC3C43A8315830931F344253F + +Set 3, vector#160: + key=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + plain=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + cipher=17767204823C430CEA327D6BEB310968 + decrypted=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + Iterated 100 times=3928F12C03C27CF9A8169076C9912907 + Iterated 1000 times=F82C296E1B20E133E3E8FD74839F5A54 + +Set 3, vector#161: + key=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + plain=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + cipher=BACA3D870BBE4C73FD9C8375332288CF + decrypted=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + Iterated 100 times=B2F3820328BBB2572C98FDCB3252A568 + Iterated 1000 times=77CB5B6CA0959781365D85C13082FBC9 + +Set 3, vector#162: + key=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + plain=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + cipher=11D55DEB3DF20A0D7F5FA122D1A33037 + decrypted=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + Iterated 100 times=0FF5C4597E3715AAC99D8ECAAD3EDD17 + Iterated 1000 times=C3E8E5597A5C291E939DDCF676806717 + +Set 3, vector#163: + key=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + plain=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + cipher=C9B0303FA9A41D0FEFDF01486C514AD9 + decrypted=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + Iterated 100 times=363CABDC674680BD236CC367BFD75166 + Iterated 1000 times=AD8B74737D4E4443CC33D6FF532D0145 + +Set 3, vector#164: + key=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + plain=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + cipher=6A77EBFBB035CBA15DC9DFE1171F1CCD + decrypted=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + Iterated 100 times=96C2DD67392A11DBDE7ECFE80709CFC8 + Iterated 1000 times=09647E5D034A988BAECA7674A03A0769 + +Set 3, vector#165: + key=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + plain=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + cipher=2639543554B83D3DA62B0D67AA341841 + decrypted=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + Iterated 100 times=7768A56BAD4C9448C6A06C36C8E193EA + Iterated 1000 times=4B360734BAAC97C461A07E25B520A162 + +Set 3, vector#166: + key=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + plain=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + cipher=E736D24207FE7FBAC23280638004E2FC + decrypted=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + Iterated 100 times=74C173F8226B959E074F758E4245310B + Iterated 1000 times=E4727E4A92C6CD398634EBE82422A793 + +Set 3, vector#167: + key=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + plain=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + cipher=F69B7D01892796D5BE4E5DBC5D5391D1 + decrypted=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + Iterated 100 times=4DA8EE42BEFC8157D586FEA387EC8A1D + Iterated 1000 times=91C5132CFBBDA1E72FDD864C82C2286D + +Set 3, vector#168: + key=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + plain=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + cipher=CFB574BB158BAD30886874E6CB4D31C3 + decrypted=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + Iterated 100 times=1A87F951EB96435EE86B50C1596B01A8 + Iterated 1000 times=D89CD58FD7A72939778EA50A0162CF2F + +Set 3, vector#169: + key=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + plain=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + cipher=B0D5C8CFED7811B8019BF1697FB7EDBF + decrypted=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + Iterated 100 times=AAEB790654E6A085DA9D10F6CA9D153E + Iterated 1000 times=FDB9D273FFD4DBEB918911C9C138AF7C + +Set 3, vector#170: + key=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + plain=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + cipher=78498CDE07D82A92B6A07EFA970A854D + decrypted=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + Iterated 100 times=A62BC0BD6B2E29B6D5795CDE359C27B3 + Iterated 1000 times=299838140AE4F51086ED882CDEEEB09E + +Set 3, vector#171: + key=ABABABABABABABABABABABABABABABAB + plain=ABABABABABABABABABABABABABABABAB + cipher=5E7DD5E97F7261B6F4C626B921D844F8 + decrypted=ABABABABABABABABABABABABABABABAB + Iterated 100 times=8F5632FCFE58A8795CF339CDC9D3F37A + Iterated 1000 times=9817D3BDD40EAE4D32816B217A3B1CAC + +Set 3, vector#172: + key=ACACACACACACACACACACACACACACACAC + plain=ACACACACACACACACACACACACACACACAC + cipher=C0B698F73CF84963F0B62126D76E4F0A + decrypted=ACACACACACACACACACACACACACACACAC + Iterated 100 times=4A5CA36F20DCAD967359EE93E5CE8D2B + Iterated 1000 times=BFC2F65BD81F9C752B911B7FF88DC519 + +Set 3, vector#173: + key=ADADADADADADADADADADADADADADADAD + plain=ADADADADADADADADADADADADADADADAD + cipher=B22E6B75B69324108BD5A5B617E385E0 + decrypted=ADADADADADADADADADADADADADADADAD + Iterated 100 times=D48948E3D720E978468558AE0112AD1D + Iterated 1000 times=BD98DB56CD0A3B363AD16796BB7DE8BB + +Set 3, vector#174: + key=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + plain=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + cipher=62C081FD69B55352E32CF07871F8F29E + decrypted=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + Iterated 100 times=0DA24B774E0C547971974F152CAFAC9F + Iterated 1000 times=F98FF36EDEBC0C0128E8E2FD0E14E817 + +Set 3, vector#175: + key=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + plain=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + cipher=54F2693787BB01E3BC108CFFE28CC60B + decrypted=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + Iterated 100 times=96CC5A57A0715FCB59392A1362A22122 + Iterated 1000 times=633FF992CA39F7EBDE0F711FA180BC7A + +Set 3, vector#176: + key=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + plain=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + cipher=715C38276AD26985EB2954DAA883B27A + decrypted=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + Iterated 100 times=2B2A76CE0281EB870A32C969F95A1F4C + Iterated 1000 times=2D2DCFE8F0658EFF94D7E92DFE10CE0B + +Set 3, vector#177: + key=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + plain=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + cipher=6C2C48939DDFF18A9E7EF7E883DD4131 + decrypted=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + Iterated 100 times=1150AAC8B99F3A54C71C3A410883D78E + Iterated 1000 times=CFFDD3BC6B518BDAD80F9D0919E6BF23 + +Set 3, vector#178: + key=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + plain=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + cipher=5A3D9A6E76C11A96969E7D30439D8F1A + decrypted=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + Iterated 100 times=6D438EAF1844AD9DA4456AA5839EDE61 + Iterated 1000 times=C5B254C55B2DB5ED302F1A955FA527B5 + +Set 3, vector#179: + key=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + plain=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + cipher=7A3DB2953C2F50A107B7A7F228EA3F04 + decrypted=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + Iterated 100 times=AFF07D4C5C9587BF64C20D3C10F3052F + Iterated 1000 times=392DADC1B334C64AC77EA50E925DFE9D + +Set 3, vector#180: + key=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + plain=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + cipher=301639AA1F785408698F5F140FF51460 + decrypted=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + Iterated 100 times=863BC24BFC1825D58C0616A58F906131 + Iterated 1000 times=963B9BB726FCB556DD392335F71DBE8E + +Set 3, vector#181: + key=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + plain=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + cipher=F7A59D2EA051B20C9BF6833CF99CF0A0 + decrypted=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + Iterated 100 times=BD95FC7CD3ECAC98CDBFD7D72587135F + Iterated 1000 times=502E8DCF7FC8338D1A70FA2915058DB8 + +Set 3, vector#182: + key=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + plain=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + cipher=2D3AA57F95F565309CEFBA48F65EDD74 + decrypted=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + Iterated 100 times=F71C7F2608E2F496460A5D92EDB7D717 + Iterated 1000 times=CE0CC82031E48937CC3400F9D6CEB361 + +Set 3, vector#183: + key=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + plain=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + cipher=7AF5AF93B587D4664FB131139718A448 + decrypted=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + Iterated 100 times=5776B0166C43E14734C2FF2E363F207F + Iterated 1000 times=C9A60D90E65AE963AF458533E42B86E8 + +Set 3, vector#184: + key=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + plain=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + cipher=0C69A2ACB598C09621E55AB63C135DBB + decrypted=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + Iterated 100 times=FDD595380441E3A3A5FF8F58EF57F4FD + Iterated 1000 times=67C54523BDE1E9D43E591D097EBC61CE + +Set 3, vector#185: + key=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + plain=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + cipher=34B740E5580D6F948F24AFDF9F58BD71 + decrypted=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + Iterated 100 times=5CA90B6F12955913F5AEEE6CB0ECEB3C + Iterated 1000 times=5A78C73491D31D7BF84D61AB340008DF + +Set 3, vector#186: + key=BABABABABABABABABABABABABABABABA + plain=BABABABABABABABABABABABABABABABA + cipher=E06FEC37D76FDEEB7DE884E456E15A76 + decrypted=BABABABABABABABABABABABABABABABA + Iterated 100 times=A7FA358F9554EC90867DF2ED5DCB659E + Iterated 1000 times=2CB8A584251C481FF7E75040BC25B403 + +Set 3, vector#187: + key=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + plain=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + cipher=FF5AFE64213E5E63F6042B1DC08D27F6 + decrypted=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + Iterated 100 times=5679B54ACCBCE8BD80EADB3B40A1B50E + Iterated 1000 times=DC433A57250144DB4BB224556A2BB0C3 + +Set 3, vector#188: + key=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + plain=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + cipher=09A8802029E43DEC8C1958FE4B542CDC + decrypted=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + Iterated 100 times=F70346E34E326D407D613FDDC7CED1BE + Iterated 1000 times=E80C1C3E9C92868A9F19880BC0ABC470 + +Set 3, vector#189: + key=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + plain=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + cipher=C37C963AC3529701E2F81B0061D864B6 + decrypted=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + Iterated 100 times=57869373A51DD0E677F6D989F67C55C1 + Iterated 1000 times=CB8B7D184C963FEAAA010EEE3F1EEED9 + +Set 3, vector#190: + key=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + plain=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + cipher=486C0E64DA6AB339AB81833793ED0E03 + decrypted=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + Iterated 100 times=EAB747A4D002301A3DD9AE3EA1852277 + Iterated 1000 times=C2433726B19A93A7B63039F9E6E57D29 + +Set 3, vector#191: + key=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + plain=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + cipher=BE77B89968EED40C9DBBB839B5ADF031 + decrypted=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + Iterated 100 times=F71142638FC9E47526EBF1F59A53ECF2 + Iterated 1000 times=DAB6F4948C0416B88B134BF9DCEEDBB8 + +Set 3, vector#192: + key=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + plain=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + cipher=F72BEA6B7C1A6F83143807889B191142 + decrypted=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + Iterated 100 times=B14230080C9954FBB070A9681D68533F + Iterated 1000 times=2F8273D402F9E31DE62C69A3BF582324 + +Set 3, vector#193: + key=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + plain=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + cipher=3B6CE73EE032B03A9DC114532E86B491 + decrypted=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + Iterated 100 times=BD0B8D49C040A2F29BB5BE516E67551C + Iterated 1000 times=24BC165042DB5204301B174E84CA95C1 + +Set 3, vector#194: + key=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + plain=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + cipher=6BECF5953A0455893F676EDF633A05EF + decrypted=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + Iterated 100 times=45B4B9CCFDC27DDFC5069D8F1B94411C + Iterated 1000 times=526704D8E4E23ED2FD0A29FB68F77187 + +Set 3, vector#195: + key=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + plain=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + cipher=6C549BF4ABA28AF34A3B9338875ADF70 + decrypted=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + Iterated 100 times=A3C3D071BCC1C5BE4FC68D594AB7FBC2 + Iterated 1000 times=E8A8963F6D9C0B2F1C68EF8B1C961BB0 + +Set 3, vector#196: + key=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + plain=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + cipher=2907CF30FB30BAFC243C257FFCC7681B + decrypted=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + Iterated 100 times=A396F3D7428A50ECE79465D5E51BAF6F + Iterated 1000 times=80ED1131423F0780946112968651C4FF + +Set 3, vector#197: + key=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + plain=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + cipher=A0781F72F378343C324509C3CD8CAAD6 + decrypted=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + Iterated 100 times=98A5759D1A441C5BA55AE80E2CBCB9C8 + Iterated 1000 times=8E8C830CBE2F931326755D22870B3239 + +Set 3, vector#198: + key=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + plain=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + cipher=637BACDC98ECDEA03EBF12C787742A1D + decrypted=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + Iterated 100 times=86AD8D83AFA5677C48C3F2254EE4D054 + Iterated 1000 times=9879FF7440E3877C28E4D821BFBBDDCA + +Set 3, vector#199: + key=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + plain=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + cipher=B9AF2B4E1860868FA6096225B65BADC2 + decrypted=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + Iterated 100 times=53214E9805B3A71DC7EC9A95BD36A707 + Iterated 1000 times=DD9A9182690C123FB7B9173F37A7BF6E + +Set 3, vector#200: + key=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + plain=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + cipher=B6C1D13A4C3B19CA118F4A33B332919B + decrypted=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + Iterated 100 times=02AEE10BB3C7542C1D75E5A331A88E8A + Iterated 1000 times=8FDA8D5F8E99242FAF53D7A192D3129C + +Set 3, vector#201: + key=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + plain=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + cipher=51EC5F89DB8791B4C4EC86037E8AE572 + decrypted=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + Iterated 100 times=355CA981E4377099689F7CACE2FC178F + Iterated 1000 times=D34A57691FAFB689945523005A2F157C + +Set 3, vector#202: + key=CACACACACACACACACACACACACACACACA + plain=CACACACACACACACACACACACACACACACA + cipher=D871FD57C598A6A6646BDEEF7DE604C7 + decrypted=CACACACACACACACACACACACACACACACA + Iterated 100 times=9CAF65F2AAC6129ED11F5EEF4729B7F2 + Iterated 1000 times=9C4959A3223CC6EADC167A482CDE4EB3 + +Set 3, vector#203: + key=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + plain=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + cipher=CE7C998BE349891BEC788F7C72223A36 + decrypted=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + Iterated 100 times=DEFB25D1362ACEB84140E9A4F19C59F7 + Iterated 1000 times=B57BEFA2E623AB1E651EC7025943DAF7 + +Set 3, vector#204: + key=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + plain=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + cipher=200A327B088858257CB53BF02209ED4C + decrypted=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + Iterated 100 times=12268FC2243873C6681FAF5D3BF5553E + Iterated 1000 times=AB0634091847162BED992F625F43A582 + +Set 3, vector#205: + key=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + plain=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + cipher=C1592FAC3F29007170E75FCB61A4FEF5 + decrypted=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + Iterated 100 times=00119BBE0557839AC0F81C639B19CE88 + Iterated 1000 times=508E30553FF2899F5576AFD6CEF23EA9 + +Set 3, vector#206: + key=CECECECECECECECECECECECECECECECE + plain=CECECECECECECECECECECECECECECECE + cipher=654A2073FFDE839F4BD5E089C2D250E8 + decrypted=CECECECECECECECECECECECECECECECE + Iterated 100 times=7074C0BECBE6612A81610361F53C7EEF + Iterated 1000 times=C26247DCC13990B040032BAF13C80C99 + +Set 3, vector#207: + key=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + plain=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + cipher=073294D0F71D5C770E837287C6FEA1F1 + decrypted=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + Iterated 100 times=68F604BDA020C2993627CDADA7100D02 + Iterated 1000 times=95DD5FA7F1AFFC1D61C7D9833C69142F + +Set 3, vector#208: + key=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + plain=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + cipher=1009699B9D4B31CA531A5A3E213BE4D1 + decrypted=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + Iterated 100 times=D37DC1BF2FB31CB9267B795314A1F918 + Iterated 1000 times=BC50210ACA8AEB84063EE56A138E88D2 + +Set 3, vector#209: + key=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + plain=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + cipher=2B5C7F1E7649D447AAFB791969B9AEE1 + decrypted=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + Iterated 100 times=2B597181ADF72CC8BF96811A8303E410 + Iterated 1000 times=209B5EC2F683963321EC82C1F2D3BAF2 + +Set 3, vector#210: + key=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + plain=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + cipher=AC4E86B71FFF1989CF907FE3837F7B59 + decrypted=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + Iterated 100 times=FED1015E732AD7273B456C7AA40FDD0F + Iterated 1000 times=9CDC0D9B87357F4A0B893813E989BF64 + +Set 3, vector#211: + key=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + plain=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + cipher=EA4B583AF73E39C59A34D143AA7CC0E6 + decrypted=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + Iterated 100 times=1C0F9BD029E673B66773434C4C9B453E + Iterated 1000 times=96E3FFA8FBA9A97F9CF6B179F88BFA2D + +Set 3, vector#212: + key=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + plain=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + cipher=C1E52134888FBB5AB7D13A422BA723D3 + decrypted=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + Iterated 100 times=8F1ABBE43BC3FA58E5BE47D267B01BC6 + Iterated 1000 times=E13F50EA12BBE30D7FEE95340F4BDA51 + +Set 3, vector#213: + key=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + plain=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + cipher=FC18E975DFD672F3C2023F34E6343CE7 + decrypted=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + Iterated 100 times=2C71DD526466273942E382708ECB89C4 + Iterated 1000 times=C1DC6E4FEA53E86FD755602A04B2BFB4 + +Set 3, vector#214: + key=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + plain=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + cipher=BCC674F055D592E3327C909DDE606A6A + decrypted=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + Iterated 100 times=0267991F3019F600292DAF10B920970F + Iterated 1000 times=84DA86AE3272ADE27B7BBF732BF91594 + +Set 3, vector#215: + key=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + plain=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + cipher=6DB68484E2545094F67DBC7F786CCE7C + decrypted=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + Iterated 100 times=C7A2B37D833771F0EBC34083A268DA78 + Iterated 1000 times=48D79B742572FA73CECCDBC919A63A6D + +Set 3, vector#216: + key=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + plain=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + cipher=CBE3F99DA7F0F740CE2C79819B8A11C2 + decrypted=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + Iterated 100 times=34F6E12A0AB0AABC8A5A2A35ACD07F6A + Iterated 1000 times=2A4734CE163110DDAAB1790890662339 + +Set 3, vector#217: + key=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + plain=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + cipher=06A99526CE377DC638967B3B64567BF6 + decrypted=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + Iterated 100 times=CF1EFE4E468D423D56B66C80F4A411BA + Iterated 1000 times=6B1ABC415920A55F0E314334B9EF3CE8 + +Set 3, vector#218: + key=DADADADADADADADADADADADADADADADA + plain=DADADADADADADADADADADADADADADADA + cipher=4A11E1EFEEB2E53C628E47DB1D5852E8 + decrypted=DADADADADADADADADADADADADADADADA + Iterated 100 times=81F2D202013C8B9DEF1C955D748538B5 + Iterated 1000 times=8C64FF3A6D32BE216A709EF81524CEA8 + +Set 3, vector#219: + key=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + plain=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + cipher=047CDDD3D3E109AAB04B7C608AB7106B + decrypted=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + Iterated 100 times=935723D0E25EE389F3DC13ED883201AB + Iterated 1000 times=7DB984498598F1492C5FAFFA536DF20A + +Set 3, vector#220: + key=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + plain=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + cipher=356584683F1367AF973B73B7229A4D4E + decrypted=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + Iterated 100 times=5A77B196B42C0734DE9A6BC9CDF1A85D + Iterated 1000 times=6A969C0CC123D251D476C084FB8E3543 + +Set 3, vector#221: + key=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + plain=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + cipher=6FA799FE070D97EE0CDBB043B8033E38 + decrypted=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + Iterated 100 times=DDB4CE3B2B04AFACF05B958F36E57349 + Iterated 1000 times=044C8EA6C89B61B5DB78757E908C39B2 + +Set 3, vector#222: + key=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + plain=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + cipher=75B8A529C6A8BECD1CF2B0B71A6FAFD6 + decrypted=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + Iterated 100 times=E26CC561E91A341ACD39954EB94B3EE4 + Iterated 1000 times=37D49337B2507A4E64D1192A3B0F8BE8 + +Set 3, vector#223: + key=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + plain=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + cipher=C2546918F3FAB713EA1FF4A4500B8A3F + decrypted=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + Iterated 100 times=63A6C41158EBEE6C0D888B11F332DCA6 + Iterated 1000 times=CFEA929937AA4C9EA2CC28C9EA05CA15 + +Set 3, vector#224: + key=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + plain=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + cipher=CCE56ACBB61FBCC571F25AB5FE4F2804 + decrypted=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + Iterated 100 times=FB0F21EF2571BA2D4ABB88A6D4E5AA2C + Iterated 1000 times=D7601258EE543FA8B913C3D014567538 + +Set 3, vector#225: + key=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + plain=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + cipher=EE7234502527BB99D46CB6B129ED861F + decrypted=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + Iterated 100 times=FF2A246CF0B3E41F63FC430949E3A949 + Iterated 1000 times=44F8007AF687F929A83BE34A5760339F + +Set 3, vector#226: + key=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + plain=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + cipher=B4B60530013B4E8193E6568BB7FA9C16 + decrypted=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + Iterated 100 times=9D8C6633C3CDBA8126F7B4785C7F9BEE + Iterated 1000 times=5752CD0E44F26D364EC5FF3DD988D88C + +Set 3, vector#227: + key=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + plain=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + cipher=BB0D2C29B9997587A9B7EB38DB9C7FC5 + decrypted=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + Iterated 100 times=882D45482834017B60DDAC4AF3F41E94 + Iterated 1000 times=20ECC401D08899F91938AF12519200C7 + +Set 3, vector#228: + key=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + plain=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + cipher=535CEEDDBFD6D4ECFD7D42735DEC3515 + decrypted=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + Iterated 100 times=017EFACDC084A7D7490DAAAE0281C53D + Iterated 1000 times=FB29575D3454D0D772DA502CD14F6468 + +Set 3, vector#229: + key=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + plain=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + cipher=77B677426379093989EDDCAE9E37A3B9 + decrypted=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + Iterated 100 times=219394BD41F66CA21A45603577EF1935 + Iterated 1000 times=C5E39DF2C0552C15F8F359EF4D7E0290 + +Set 3, vector#230: + key=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + plain=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + cipher=71B44626F54DC3D7ACD689F1A335AFAF + decrypted=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + Iterated 100 times=1A39AD098879855E806E1974564699C9 + Iterated 1000 times=94624E3304525FC3074315AB5430F9B7 + +Set 3, vector#231: + key=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + plain=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + cipher=0874F08965F69B528C820DA2A9A4F8ED + decrypted=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + Iterated 100 times=94D6C51AB69FA5A4FECCAD98A845EDBC + Iterated 1000 times=994A5FFE693E8B8979A9B9CF74A97CB4 + +Set 3, vector#232: + key=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + plain=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + cipher=93C576470BF5817E85C2A2CA5030A19D + decrypted=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + Iterated 100 times=F79869F727364CEA8537A539E680D9F8 + Iterated 1000 times=F2377F2116CE0963F740EBB4AC17C5CC + +Set 3, vector#233: + key=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + plain=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + cipher=567C06E7C1C386BB3DB2AEBDA00507B6 + decrypted=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + Iterated 100 times=BDB3E59B553C6AAF30C4BCB120B84CA6 + Iterated 1000 times=2D6CDE69471A741DF57250C2EE06C77B + +Set 3, vector#234: + key=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + plain=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + cipher=4E6034AEA39C228174E75CC65E38A1FD + decrypted=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + Iterated 100 times=27B82257175EE86A2BFF485100156DE4 + Iterated 1000 times=B2A244CC08EC102D0FABBA83BC4C8888 + +Set 3, vector#235: + key=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + plain=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + cipher=98DB77DA1A0290EF1345F41B0FBD786C + decrypted=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + Iterated 100 times=843EA03B5EA4BE09363DFEFE1F839054 + Iterated 1000 times=86FE535BC08183E4CC84B7FD6138B9E6 + +Set 3, vector#236: + key=ECECECECECECECECECECECECECECECEC + plain=ECECECECECECECECECECECECECECECEC + cipher=92C0A337D890834B5D252A1E997C0B7B + decrypted=ECECECECECECECECECECECECECECECEC + Iterated 100 times=4CD926A5537EF9A5ED861E1147204378 + Iterated 1000 times=58F1A2808E5D72CE4A5AE5BE14C2329D + +Set 3, vector#237: + key=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + plain=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + cipher=DCEE4193D85617A7804DD92224383B35 + decrypted=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + Iterated 100 times=F22C889F1DEE9BF267CA309BF26F411C + Iterated 1000 times=09FFEF40D2EAD0520A71ADB0891CD126 + +Set 3, vector#238: + key=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + plain=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + cipher=01D7FBAAD916A9CCD172B1155DEF68B0 + decrypted=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + Iterated 100 times=055EBFDF0F5D6B4DE0A2B712D42DD8E8 + Iterated 1000 times=DCBA58BDCE97D31CAC90B371CD6710BC + +Set 3, vector#239: + key=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + plain=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + cipher=934603C1D9130D615D0CEF3EEBF1068D + decrypted=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + Iterated 100 times=59659B1003D44C294203ED26F98B8C1E + Iterated 1000 times=1091FAFF212E594D4E43E6B2BA76F4B0 + +Set 3, vector#240: + key=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + plain=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + cipher=8E8FBDA52F3937D86A1B5BF2771B36FA + decrypted=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + Iterated 100 times=C47C83F4BBCF2D453E1023D350C6F225 + Iterated 1000 times=AD3A3AE224FEF7851152203A01DB16CA + +Set 3, vector#241: + key=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + plain=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + cipher=FC0DC02B21F96E0BC6018F147FC1BBB2 + decrypted=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + Iterated 100 times=A31DC1FDCF9E58BBB984DC7BAF99FFF8 + Iterated 1000 times=299B2D3E286A22E3B681EF7B18FE0322 + +Set 3, vector#242: + key=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + plain=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + cipher=AE3807240321F062B15956A2B5844069 + decrypted=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + Iterated 100 times=DA42F67A676EF535D9584402619C9EBB + Iterated 1000 times=B01134A8027A23ADF129B5317B38A9CA + +Set 3, vector#243: + key=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + plain=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + cipher=DF900871ED5CADFF06634E4121BA3720 + decrypted=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + Iterated 100 times=B7A8B9E26B165E74AD7CCDD271C08001 + Iterated 1000 times=C97787E4856F87A8B6F3A65549E8D4A3 + +Set 3, vector#244: + key=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + plain=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + cipher=E77A9DCE79EAA4B80B4E448E39192142 + decrypted=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + Iterated 100 times=A04C93AE922A2DD938DC105220E844CF + Iterated 1000 times=D9F4C581C054D647115084C495B487E6 + +Set 3, vector#245: + key=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + plain=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + cipher=66B4AC7BD6C79F1A9A2D14B244C6DE61 + decrypted=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + Iterated 100 times=1407428C3317B7894425DB9B7B6DE3AB + Iterated 1000 times=5280E9A9326DCFDC22DC120C0671BF8F + +Set 3, vector#246: + key=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + plain=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + cipher=E6C4EA3D6FA1E1E6AFCF4FA97DC6D4AF + decrypted=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + Iterated 100 times=231ADF598D17DF17A031FB13A6EE8CEE + Iterated 1000 times=5B9B9A162E17A7179B2A53DED0319C6B + +Set 3, vector#247: + key=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + plain=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + cipher=E4ABA9E109DD9A17FF66F5E37FEF8AA1 + decrypted=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + Iterated 100 times=477FA8D4D70D0353B81E0C1CBD8CFB17 + Iterated 1000 times=14DF8DEECA0C21F6DD17355865F2A29F + +Set 3, vector#248: + key=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + plain=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + cipher=7B883B1968F19DAE47C1F952459C925B + decrypted=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + Iterated 100 times=83165423288FAD8FC7B6CC313E9FB299 + Iterated 1000 times=ECFBF04487F6886EFDE115E0F807A516 + +Set 3, vector#249: + key=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + plain=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + cipher=B1569C920CAC8C5F603AA5C0EC054E3E + decrypted=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + Iterated 100 times=59BABDB70128720F49982BDF88DDD224 + Iterated 1000 times=33AE8418F323A16FC72CB9809F746279 + +Set 3, vector#250: + key=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + plain=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + cipher=DBB58BAD9E3C29669E9E1465AECD5A1C + decrypted=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + Iterated 100 times=492191C110D2C91A8B3A15EC3402C9FA + Iterated 1000 times=3B8B329DDC6F7A1123F442A033CF06C3 + +Set 3, vector#251: + key=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + plain=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + cipher=EEB0967C0A763112F7AFABBCCF16E179 + decrypted=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + Iterated 100 times=2F113E789ED452AAB4DF458C865ABCC2 + Iterated 1000 times=6558103A626EFE073D0FFD3ECA7D3A01 + +Set 3, vector#252: + key=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + plain=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + cipher=9DC31DB1320A9286AC3634E17D94CCBF + decrypted=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + Iterated 100 times=47A2A3D46F3DC8ABB74833A5B10A6372 + Iterated 1000 times=AC319E44C979E576437B38A87D0F11F8 + +Set 3, vector#253: + key=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + plain=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + cipher=AE027A532851C8B93D84BA6A1C63A058 + decrypted=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + Iterated 100 times=11D7A51B401D0B55F9B9A3160B204690 + Iterated 1000 times=35FD87B1934F29CA4A7E20EE325121D7 + +Set 3, vector#254: + key=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + plain=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + cipher=992B366E9270BDC26A12398CFD84C53A + decrypted=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + Iterated 100 times=A093210DD61007D7095D5FC03F6E5C43 + Iterated 1000 times=DA7BF627AA9C20E87E944A7335694D17 + +Set 3, vector#255: + key=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + plain=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + cipher=BCBF217CB280CF30B2517052193AB979 + decrypted=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + Iterated 100 times=D86BE0C39F70A8052842D9360A6F390A + Iterated 1000 times=E3675EC52B7F61678C83D87EFD5964BC + +Test vectors -- set 4 +===================== + +Set 4, vector# 0: + key=000102030405060708090A0B0C0D0E0F + plain=00112233445566778899AABBCCDDEEFF + cipher=69C4E0D86A7B0430D8CDB78070B4C55A + decrypted=00112233445566778899AABBCCDDEEFF + Iterated 100 times=178BAFF4CE4DF4E2077F259215464AAA + Iterated 1000 times=B7449C8DA15DEFEB78DBC57EA81DB8EE + +Set 4, vector# 1: + key=2BD6459F82C5B300952C49104881FF48 + plain=EA024714AD5C4D84EA024714AD5C4D84 + cipher=13C2C18F15299BC26AEDADD118AE537D + decrypted=EA024714AD5C4D84EA024714AD5C4D84 + Iterated 100 times=D9010CC77860BF5B39D381B334910EE6 + Iterated 1000 times=850C4B90002090D6F4CB42F7C2DA0A1B + +Test vectors -- set 5 +===================== + +Set 5, vector# 0: + key=80000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=BCC968EFC8709B5F9FDCBABD87CA9961 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 1: + key=40000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=58F1F0C380969EE084A455F7BA4259DE + encrypted=00000000000000000000000000000000 + +Set 5, vector# 2: + key=20000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=920F58E597A49C5CDB582E9936D1BAC2 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 3: + key=10000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=C95665B5B8F1E25AA42E102DA22B19ED + encrypted=00000000000000000000000000000000 + +Set 5, vector# 4: + key=08000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=F2D73AC0B401CDA593288471252B3076 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 5: + key=04000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=78D3950202847ADD7F4CB8964DDD29AF + encrypted=00000000000000000000000000000000 + +Set 5, vector# 6: + key=02000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=5427FB8F7026446773C3B03F3EDED0A6 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 7: + key=01000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=F0BCA5EF49FCA4CBE5658D5B4225E449 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 8: + key=00800000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=E9E4F0717C45C74C06DDA91F7155E016 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 9: + key=00400000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=B931AC22414B01AC77E24FCF296011F7 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 10: + key=00200000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=BA3368FFFD44964EB658FD1F8B20819F + encrypted=00000000000000000000000000000000 + +Set 5, vector# 11: + key=00100000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=A0A03C0285A3D1AF43BB2542A9E3337B + encrypted=00000000000000000000000000000000 + +Set 5, vector# 12: + key=00080000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=69A3D433321912B3D95891854453033B + encrypted=00000000000000000000000000000000 + +Set 5, vector# 13: + key=00040000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=3B6420D5574BB05AA0382D8A3FC298F1 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 14: + key=00020000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=4B3FD4DF3A9477951832E0184EEF7577 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 15: + key=00010000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=C069FB64A00E28008F17EA3CDBA8F655 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 16: + key=00008000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=0D3E1BA28D845C11BFAECB16A8080352 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 17: + key=00004000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=5F5C531B47EDDBE9AD19D06AB754BCA8 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 18: + key=00002000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=2F54746D9F76620B5AB3BEAFB9835AFA + encrypted=00000000000000000000000000000000 + +Set 5, vector# 19: + key=00001000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=470D05DB93FBDEC8B7FAA031B49FFF63 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 20: + key=00000800000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=10B8E47253222DC1D8159C4CEF6710C2 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 21: + key=00000400000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=191839783042AD0059A9C60B0F5DDF6D + encrypted=00000000000000000000000000000000 + +Set 5, vector# 22: + key=00000200000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=58296E28D28E96F24CB05910A2C92F55 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 23: + key=00000100000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=06B301F28E9A1FFE4A36891FB1D696EE + encrypted=00000000000000000000000000000000 + +Set 5, vector# 24: + key=00000080000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=3A599539291BB825755CF4C2D507AD95 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 25: + key=00000040000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=25001A6347C70166A4708B40698A0369 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 26: + key=00000020000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=43B45600C6F214E910E65521C481712B + encrypted=00000000000000000000000000000000 + +Set 5, vector# 27: + key=00000010000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=A18E4A5FB8AC5E183B1538359FE14C8A + encrypted=00000000000000000000000000000000 + +Set 5, vector# 28: + key=00000008000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=DD7989907897057B1622DDEC2BF6D125 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 29: + key=00000004000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=F0AB8B8A53E06B01343F398C997A3D62 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 30: + key=00000002000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=248F66000EE1C2E35F3C701BC155176F + encrypted=00000000000000000000000000000000 + +Set 5, vector# 31: + key=00000001000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=77E5AEFCE863E448322DEDEB0F560187 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 32: + key=00000000800000000000000000000000 + cipher=00000000000000000000000000000000 + plain=E0BFE8BD475E46E7A58F86BA1AFEA51D + encrypted=00000000000000000000000000000000 + +Set 5, vector# 33: + key=00000000400000000000000000000000 + cipher=00000000000000000000000000000000 + plain=ADCAD33B7F125ADFA8A12049BDB21680 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 34: + key=00000000200000000000000000000000 + cipher=00000000000000000000000000000000 + plain=97C69E8EAA2A480CA59C8AAB79A39132 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 35: + key=00000000100000000000000000000000 + cipher=00000000000000000000000000000000 + plain=CF531AF7B6027BE570ACD98DD2093B00 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 36: + key=00000000080000000000000000000000 + cipher=00000000000000000000000000000000 + plain=DF96E4E020BA3C4193F8ED32F1D21EAB + encrypted=00000000000000000000000000000000 + +Set 5, vector# 37: + key=00000000040000000000000000000000 + cipher=00000000000000000000000000000000 + plain=2155E6A88D83067DAE0F27AFBD7D6C3C + encrypted=00000000000000000000000000000000 + +Set 5, vector# 38: + key=00000000020000000000000000000000 + cipher=00000000000000000000000000000000 + plain=7B3544EB91DB0A84AD93445CB85A3002 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 39: + key=00000000010000000000000000000000 + cipher=00000000000000000000000000000000 + plain=35095EC5B0F0B9AB8140EC7FEA920A61 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 40: + key=00000000008000000000000000000000 + cipher=00000000000000000000000000000000 + plain=88FF19D126FA936AC93AB221AE7CC1E7 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 41: + key=00000000004000000000000000000000 + cipher=00000000000000000000000000000000 + plain=3AC21A6E2CFCBDE29D6CDF2EAC5C3D34 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 42: + key=00000000002000000000000000000000 + cipher=00000000000000000000000000000000 + plain=89CF5512808ACEB146497FA0232FB5DB + encrypted=00000000000000000000000000000000 + +Set 5, vector# 43: + key=00000000001000000000000000000000 + cipher=00000000000000000000000000000000 + plain=E7AFDC1C811359721E04948489701526 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 44: + key=00000000000800000000000000000000 + cipher=00000000000000000000000000000000 + plain=A08C22B84C4BF6C0AE9B751CAAA3C1CB + encrypted=00000000000000000000000000000000 + +Set 5, vector# 45: + key=00000000000400000000000000000000 + cipher=00000000000000000000000000000000 + plain=B460801BB7E1E69E55F6176AD20B62C1 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 46: + key=00000000000200000000000000000000 + cipher=00000000000000000000000000000000 + plain=3902D487E0833812792B6635955566DC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 47: + key=00000000000100000000000000000000 + cipher=00000000000000000000000000000000 + plain=1059FBDF830197CF897708F4D43D4E71 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 48: + key=00000000000080000000000000000000 + cipher=00000000000000000000000000000000 + plain=9CEDB262DD9EC53D3D3F40C55952F7BC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 49: + key=00000000000040000000000000000000 + cipher=00000000000000000000000000000000 + plain=B1A9AFCD633170411F4E79555DD17FAA + encrypted=00000000000000000000000000000000 + +Set 5, vector# 50: + key=00000000000020000000000000000000 + cipher=00000000000000000000000000000000 + plain=AE23457E2B4A3C63D3491AA4961FE714 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 51: + key=00000000000010000000000000000000 + cipher=00000000000000000000000000000000 + plain=526BA5FE4BD7371088751EA96B1AA3CD + encrypted=00000000000000000000000000000000 + +Set 5, vector# 52: + key=00000000000008000000000000000000 + cipher=00000000000000000000000000000000 + plain=8DAE509BF13EA90CBD6CBCD5A7130E2E + encrypted=00000000000000000000000000000000 + +Set 5, vector# 53: + key=00000000000004000000000000000000 + cipher=00000000000000000000000000000000 + plain=B677B3A7E0BC773EE36BF4DB25C7D5CE + encrypted=00000000000000000000000000000000 + +Set 5, vector# 54: + key=00000000000002000000000000000000 + cipher=00000000000000000000000000000000 + plain=378581AEF8ED27E420034A36FED0C42F + encrypted=00000000000000000000000000000000 + +Set 5, vector# 55: + key=00000000000001000000000000000000 + cipher=00000000000000000000000000000000 + plain=7E3E34C04B2D2E6A5119D6EC61775C6B + encrypted=00000000000000000000000000000000 + +Set 5, vector# 56: + key=00000000000000800000000000000000 + cipher=00000000000000000000000000000000 + plain=C8910CD3A3AA2F9F129A507D8C62F2EE + encrypted=00000000000000000000000000000000 + +Set 5, vector# 57: + key=00000000000000400000000000000000 + cipher=00000000000000000000000000000000 + plain=C2A782A4A4C9FC13C6AF7A13F73AF273 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 58: + key=00000000000000200000000000000000 + cipher=00000000000000000000000000000000 + plain=8EDF055B404E9FA8272AB03355C59274 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 59: + key=00000000000000100000000000000000 + cipher=00000000000000000000000000000000 + plain=DC9FE161BBDAADD14C156A226C7083FC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 60: + key=00000000000000080000000000000000 + cipher=00000000000000000000000000000000 + plain=DAA9054002C16212891B98BC676B718C + encrypted=00000000000000000000000000000000 + +Set 5, vector# 61: + key=00000000000000040000000000000000 + cipher=00000000000000000000000000000000 + plain=3BA51B797FF6E5598C4446997D694E39 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 62: + key=00000000000000020000000000000000 + cipher=00000000000000000000000000000000 + plain=437FD01CDDEF0926D6CEF70462359ADC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 63: + key=00000000000000010000000000000000 + cipher=00000000000000000000000000000000 + plain=E2CF18926D740864F06EB8C939D62F05 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 64: + key=00000000000000008000000000000000 + cipher=00000000000000000000000000000000 + plain=44DF5AF1EC3984D0910E08D3719F24CF + encrypted=00000000000000000000000000000000 + +Set 5, vector# 65: + key=00000000000000004000000000000000 + cipher=00000000000000000000000000000000 + plain=AB71E610C7A35752DC31A23789DA3C1D + encrypted=00000000000000000000000000000000 + +Set 5, vector# 66: + key=00000000000000002000000000000000 + cipher=00000000000000000000000000000000 + plain=534502D887A2BDBA21AB2E39EF760BA0 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 67: + key=00000000000000001000000000000000 + cipher=00000000000000000000000000000000 + plain=3CD1EF809529B1F6C5210B6DB9E05641 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 68: + key=00000000000000000800000000000000 + cipher=00000000000000000000000000000000 + plain=D91A2B7C9D391FE68A1E93F1C9975D21 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 69: + key=00000000000000000400000000000000 + cipher=00000000000000000000000000000000 + plain=8549254C936BEB6435ADC66879A11C12 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 70: + key=00000000000000000200000000000000 + cipher=00000000000000000000000000000000 + plain=2E0D3CB69F80F6970712608831E95E26 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 71: + key=00000000000000000100000000000000 + cipher=00000000000000000000000000000000 + plain=BB5D05814A6F31213499C5F63B3BFF13 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 72: + key=00000000000000000080000000000000 + cipher=00000000000000000000000000000000 + plain=A21C0700EF4C52F01F51815EF18C9FDF + encrypted=00000000000000000000000000000000 + +Set 5, vector# 73: + key=00000000000000000040000000000000 + cipher=00000000000000000000000000000000 + plain=82AAFEA7953EA3553D2BC6FBACD7EA64 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 74: + key=00000000000000000020000000000000 + cipher=00000000000000000000000000000000 + plain=0581FC1B7AC6437DA874FFD40FFE9176 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 75: + key=00000000000000000010000000000000 + cipher=00000000000000000000000000000000 + plain=35B524C1E7CC5ACDCE98AD4A4F825ED3 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 76: + key=00000000000000000008000000000000 + cipher=00000000000000000000000000000000 + plain=0D5E1AAB486836015A29690E1FC92218 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 77: + key=00000000000000000004000000000000 + cipher=00000000000000000000000000000000 + plain=549A554D368BBAD80265EF7040812B20 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 78: + key=00000000000000000002000000000000 + cipher=00000000000000000000000000000000 + plain=5F5B11E4FC4155CD7CFCD52873672BAD + encrypted=00000000000000000000000000000000 + +Set 5, vector# 79: + key=00000000000000000001000000000000 + cipher=00000000000000000000000000000000 + plain=89DF134165511300D5363378F9427CA2 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 80: + key=00000000000000000000800000000000 + cipher=00000000000000000000000000000000 + plain=3ECB55AFD95EE1F72FE7B3D78AB7F69A + encrypted=00000000000000000000000000000000 + +Set 5, vector# 81: + key=00000000000000000000400000000000 + cipher=00000000000000000000000000000000 + plain=C96248446145F58F3762BCA09F6A0944 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 82: + key=00000000000000000000200000000000 + cipher=00000000000000000000000000000000 + plain=5A2B93A69F24C3610BCB22761754646F + encrypted=00000000000000000000000000000000 + +Set 5, vector# 83: + key=00000000000000000000100000000000 + cipher=00000000000000000000000000000000 + plain=7D25E3A9AC534C4E046FC97924FB6A18 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 84: + key=00000000000000000000080000000000 + cipher=00000000000000000000000000000000 + plain=DA7EF71940CC4F8CE847A070434E36E8 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 85: + key=00000000000000000000040000000000 + cipher=00000000000000000000000000000000 + plain=DE6192514FF80218C7EE0BF045EBCC05 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 86: + key=00000000000000000000020000000000 + cipher=00000000000000000000000000000000 + plain=6C73DBC3057FF70C63A0A155496D6285 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 87: + key=00000000000000000000010000000000 + cipher=00000000000000000000000000000000 + plain=C1DAA730EF7B6A7362A5BEBB0B6BD96E + encrypted=00000000000000000000000000000000 + +Set 5, vector# 88: + key=00000000000000000000008000000000 + cipher=00000000000000000000000000000000 + plain=A7611399EF539AC83FDE892EC5368305 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 89: + key=00000000000000000000004000000000 + cipher=00000000000000000000000000000000 + plain=2684240426DB27FC10196E8D3C9BD9F9 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 90: + key=00000000000000000000002000000000 + cipher=00000000000000000000000000000000 + plain=5474EE1FFF8B1FA9A3DFF46EEDC2A574 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 91: + key=00000000000000000000001000000000 + cipher=00000000000000000000000000000000 + plain=CBDE0E295A71B1923F1FF99010646EE6 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 92: + key=00000000000000000000000800000000 + cipher=00000000000000000000000000000000 + plain=B94767610A6F05F2144FB733E5928D82 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 93: + key=00000000000000000000000400000000 + cipher=00000000000000000000000000000000 + plain=FA62482DCAC19B6F4620D25EC8887B9B + encrypted=00000000000000000000000000000000 + +Set 5, vector# 94: + key=00000000000000000000000200000000 + cipher=00000000000000000000000000000000 + plain=6B47D254115BD81BB017CD1DFFD62A5F + encrypted=00000000000000000000000000000000 + +Set 5, vector# 95: + key=00000000000000000000000100000000 + cipher=00000000000000000000000000000000 + plain=8F1BC738C8F84ACCEE447BD66D0A9595 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 96: + key=00000000000000000000000080000000 + cipher=00000000000000000000000000000000 + plain=AAE8240A6240A85EE91582EA982FAC1C + encrypted=00000000000000000000000000000000 + +Set 5, vector# 97: + key=00000000000000000000000040000000 + cipher=00000000000000000000000000000000 + plain=C6B316A82F5D7B91E8E1F2A3BE193C9C + encrypted=00000000000000000000000000000000 + +Set 5, vector# 98: + key=00000000000000000000000020000000 + cipher=00000000000000000000000000000000 + plain=AEBF22185A722BC9B74842F67FCC7739 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 99: + key=00000000000000000000000010000000 + cipher=00000000000000000000000000000000 + plain=B01B79D7E5C7AC50BDB5C8E47B0993A3 + encrypted=00000000000000000000000000000000 + +Set 5, vector#100: + key=00000000000000000000000008000000 + cipher=00000000000000000000000000000000 + plain=8CD5A0BE8DE9746FDA9FF47C9A2BA968 + encrypted=00000000000000000000000000000000 + +Set 5, vector#101: + key=00000000000000000000000004000000 + cipher=00000000000000000000000000000000 + plain=73BD506033F5CE6BD6A813C0E083CCF6 + encrypted=00000000000000000000000000000000 + +Set 5, vector#102: + key=00000000000000000000000002000000 + cipher=00000000000000000000000000000000 + plain=BD8A488C66DC034BF5F86AFFDEE0E4EC + encrypted=00000000000000000000000000000000 + +Set 5, vector#103: + key=00000000000000000000000001000000 + cipher=00000000000000000000000000000000 + plain=AE35F6028331FB88E1E4320F36700E42 + encrypted=00000000000000000000000000000000 + +Set 5, vector#104: + key=00000000000000000000000000800000 + cipher=00000000000000000000000000000000 + plain=6FD9239BF5424A572D99189736E8DE2D + encrypted=00000000000000000000000000000000 + +Set 5, vector#105: + key=00000000000000000000000000400000 + cipher=00000000000000000000000000000000 + plain=3F59E3C177937E8D24C52DCEE57F2669 + encrypted=00000000000000000000000000000000 + +Set 5, vector#106: + key=00000000000000000000000000200000 + cipher=00000000000000000000000000000000 + plain=F8F68A193EDF76A85B7898AD7D02B768 + encrypted=00000000000000000000000000000000 + +Set 5, vector#107: + key=00000000000000000000000000100000 + cipher=00000000000000000000000000000000 + plain=198D27F0E10CE8464AD97B16494D5C30 + encrypted=00000000000000000000000000000000 + +Set 5, vector#108: + key=00000000000000000000000000080000 + cipher=00000000000000000000000000000000 + plain=364DF777B427BCADA2CD43B86BB94EFF + encrypted=00000000000000000000000000000000 + +Set 5, vector#109: + key=00000000000000000000000000040000 + cipher=00000000000000000000000000000000 + plain=FDE09D00B86EC26C9F7393720F20269F + encrypted=00000000000000000000000000000000 + +Set 5, vector#110: + key=00000000000000000000000000020000 + cipher=00000000000000000000000000000000 + plain=339232DDC18263D48D7CAE4B8F04F542 + encrypted=00000000000000000000000000000000 + +Set 5, vector#111: + key=00000000000000000000000000010000 + cipher=00000000000000000000000000000000 + plain=C2D628DE9F7A302EE50E1B65EC08DFD8 + encrypted=00000000000000000000000000000000 + +Set 5, vector#112: + key=00000000000000000000000000008000 + cipher=00000000000000000000000000000000 + plain=C1C56076C3B02ED8CF9B0C418A2FFC05 + encrypted=00000000000000000000000000000000 + +Set 5, vector#113: + key=00000000000000000000000000004000 + cipher=00000000000000000000000000000000 + plain=D730E82B284E7E0EFAA9D1497DBEF209 + encrypted=00000000000000000000000000000000 + +Set 5, vector#114: + key=00000000000000000000000000002000 + cipher=00000000000000000000000000000000 + plain=0C04093AF6ABDC511A6E902DB6471047 + encrypted=00000000000000000000000000000000 + +Set 5, vector#115: + key=00000000000000000000000000001000 + cipher=00000000000000000000000000000000 + plain=B61A908AD12B716E7D463504959A1730 + encrypted=00000000000000000000000000000000 + +Set 5, vector#116: + key=00000000000000000000000000000800 + cipher=00000000000000000000000000000000 + plain=F0817CA29ACACE500C3C191A3D4E09A0 + encrypted=00000000000000000000000000000000 + +Set 5, vector#117: + key=00000000000000000000000000000400 + cipher=00000000000000000000000000000000 + plain=8FBBCB9899F8E6E0ACD7979E79046562 + encrypted=00000000000000000000000000000000 + +Set 5, vector#118: + key=00000000000000000000000000000200 + cipher=00000000000000000000000000000000 + plain=6DB2920E626C046A8B0060BB7DFF4768 + encrypted=00000000000000000000000000000000 + +Set 5, vector#119: + key=00000000000000000000000000000100 + cipher=00000000000000000000000000000000 + plain=90719857EB2504CF4159B8B62C31CBE0 + encrypted=00000000000000000000000000000000 + +Set 5, vector#120: + key=00000000000000000000000000000080 + cipher=00000000000000000000000000000000 + plain=06772292B64B42F154C287A39DB464FE + encrypted=00000000000000000000000000000000 + +Set 5, vector#121: + key=00000000000000000000000000000040 + cipher=00000000000000000000000000000000 + plain=A50CA690BE298DD94B4D818211992EBB + encrypted=00000000000000000000000000000000 + +Set 5, vector#122: + key=00000000000000000000000000000020 + cipher=00000000000000000000000000000000 + plain=B256DDCD54DC879DC26DEF5D6E5A7846 + encrypted=00000000000000000000000000000000 + +Set 5, vector#123: + key=00000000000000000000000000000010 + cipher=00000000000000000000000000000000 + plain=B372F4A8EDCAA10BE92C970E2B8EC285 + encrypted=00000000000000000000000000000000 + +Set 5, vector#124: + key=00000000000000000000000000000008 + cipher=00000000000000000000000000000000 + plain=3CB34DBE63DE8BE9D5831955473C0005 + encrypted=00000000000000000000000000000000 + +Set 5, vector#125: + key=00000000000000000000000000000004 + cipher=00000000000000000000000000000000 + plain=9F0F79A0732ABA12FED1D469A79D227F + encrypted=00000000000000000000000000000000 + +Set 5, vector#126: + key=00000000000000000000000000000002 + cipher=00000000000000000000000000000000 + plain=75002A9D2721363DF6AE6877AF4E08D5 + encrypted=00000000000000000000000000000000 + +Set 5, vector#127: + key=00000000000000000000000000000001 + cipher=00000000000000000000000000000000 + plain=F034C659871A7442B0A03236EF17E8EC + encrypted=00000000000000000000000000000000 + +Test vectors -- set 6 +===================== + +Set 6, vector# 0: + key=00000000000000000000000000000000 + cipher=80000000000000000000000000000000 + plain=7636B952AEA4D79F16D5CC3F05FDC0FA + encrypted=80000000000000000000000000000000 + +Set 6, vector# 1: + key=00000000000000000000000000000000 + cipher=40000000000000000000000000000000 + plain=88FB0C82D06C6891163E348EDDD3E56E + encrypted=40000000000000000000000000000000 + +Set 6, vector# 2: + key=00000000000000000000000000000000 + cipher=20000000000000000000000000000000 + plain=60E3B32B3B545C73EDA24832B11F7E3D + encrypted=20000000000000000000000000000000 + +Set 6, vector# 3: + key=00000000000000000000000000000000 + cipher=10000000000000000000000000000000 + plain=0837840FB7C9FD0B7998C3CBF973C204 + encrypted=10000000000000000000000000000000 + +Set 6, vector# 4: + key=00000000000000000000000000000000 + cipher=08000000000000000000000000000000 + plain=6FCDB8A23558DA812210832F7E9ACF7D + encrypted=08000000000000000000000000000000 + +Set 6, vector# 5: + key=00000000000000000000000000000000 + cipher=04000000000000000000000000000000 + plain=E60F7A5F564710B6585DE58962A80B7A + encrypted=04000000000000000000000000000000 + +Set 6, vector# 6: + key=00000000000000000000000000000000 + cipher=02000000000000000000000000000000 + plain=ED427564233EC6E586D1A6B42F1D8D4F + encrypted=02000000000000000000000000000000 + +Set 6, vector# 7: + key=00000000000000000000000000000000 + cipher=01000000000000000000000000000000 + plain=2EE095782ED23F692A238A0DA7580C54 + encrypted=01000000000000000000000000000000 + +Set 6, vector# 8: + key=00000000000000000000000000000000 + cipher=00800000000000000000000000000000 + plain=F7BD29AADAF23FD6C77933F6ABEAA013 + encrypted=00800000000000000000000000000000 + +Set 6, vector# 9: + key=00000000000000000000000000000000 + cipher=00400000000000000000000000000000 + plain=40DE112E415C3AE5C65BD2E91C2FE2CC + encrypted=00400000000000000000000000000000 + +Set 6, vector# 10: + key=00000000000000000000000000000000 + cipher=00200000000000000000000000000000 + plain=1002989D2197BE7E17BE94E91319FABB + encrypted=00200000000000000000000000000000 + +Set 6, vector# 11: + key=00000000000000000000000000000000 + cipher=00100000000000000000000000000000 + plain=1F7FEEEFE27F4C1A02AAAF9A5D632E6A + encrypted=00100000000000000000000000000000 + +Set 6, vector# 12: + key=00000000000000000000000000000000 + cipher=00080000000000000000000000000000 + plain=87B2EE9C7F8B03D33CCA05537A5AA659 + encrypted=00080000000000000000000000000000 + +Set 6, vector# 13: + key=00000000000000000000000000000000 + cipher=00040000000000000000000000000000 + plain=008E4F49D674D2CC1BF83C6F701ACCB6 + encrypted=00040000000000000000000000000000 + +Set 6, vector# 14: + key=00000000000000000000000000000000 + cipher=00020000000000000000000000000000 + plain=E46C90317826C3AD5E1B008882F31CD9 + encrypted=00020000000000000000000000000000 + +Set 6, vector# 15: + key=00000000000000000000000000000000 + cipher=00010000000000000000000000000000 + plain=72D2C1590CBE60C1B172E68CC6B71528 + encrypted=00010000000000000000000000000000 + +Set 6, vector# 16: + key=00000000000000000000000000000000 + cipher=00008000000000000000000000000000 + plain=4BCBEC19776D2C4A89AE53D62E43841C + encrypted=00008000000000000000000000000000 + +Set 6, vector# 17: + key=00000000000000000000000000000000 + cipher=00004000000000000000000000000000 + plain=E842595995D32B5BF05A19B931C16504 + encrypted=00004000000000000000000000000000 + +Set 6, vector# 18: + key=00000000000000000000000000000000 + cipher=00002000000000000000000000000000 + plain=84A0D8BB05F0354EFD60913A94D34582 + encrypted=00002000000000000000000000000000 + +Set 6, vector# 19: + key=00000000000000000000000000000000 + cipher=00001000000000000000000000000000 + plain=8B0BD82791A3C16F1B2C5B45958EB9AB + encrypted=00001000000000000000000000000000 + +Set 6, vector# 20: + key=00000000000000000000000000000000 + cipher=00000800000000000000000000000000 + plain=AC8261E66D2BB20D6E14E8FA7B2CB1EF + encrypted=00000800000000000000000000000000 + +Set 6, vector# 21: + key=00000000000000000000000000000000 + cipher=00000400000000000000000000000000 + plain=BB45E25A828BF7065F10670A045B5B83 + encrypted=00000400000000000000000000000000 + +Set 6, vector# 22: + key=00000000000000000000000000000000 + cipher=00000200000000000000000000000000 + plain=05FB76E3C8A3F2EC74B2F3842FEA0F97 + encrypted=00000200000000000000000000000000 + +Set 6, vector# 23: + key=00000000000000000000000000000000 + cipher=00000100000000000000000000000000 + plain=41DEC83160AD2B0E738FC05B9AC0BD36 + encrypted=00000100000000000000000000000000 + +Set 6, vector# 24: + key=00000000000000000000000000000000 + cipher=00000080000000000000000000000000 + plain=B35CF96703329E3BEBE2EF17B8A3308F + encrypted=00000080000000000000000000000000 + +Set 6, vector# 25: + key=00000000000000000000000000000000 + cipher=00000040000000000000000000000000 + plain=C8CA81D4E4CBDD0A7AF211EBAB7BF683 + encrypted=00000040000000000000000000000000 + +Set 6, vector# 26: + key=00000000000000000000000000000000 + cipher=00000020000000000000000000000000 + plain=E26EA490CF991CDB65C5D337CBD74E43 + encrypted=00000020000000000000000000000000 + +Set 6, vector# 27: + key=00000000000000000000000000000000 + cipher=00000010000000000000000000000000 + plain=2FBF5BDA691D0CD5BE42ABAB0ED7CB7A + encrypted=00000010000000000000000000000000 + +Set 6, vector# 28: + key=00000000000000000000000000000000 + cipher=00000008000000000000000000000000 + plain=86D8686FA4993ECED696CA760FAF9146 + encrypted=00000008000000000000000000000000 + +Set 6, vector# 29: + key=00000000000000000000000000000000 + cipher=00000004000000000000000000000000 + plain=E8D4AE284A2D70ACB2B57C68879DC4AF + encrypted=00000004000000000000000000000000 + +Set 6, vector# 30: + key=00000000000000000000000000000000 + cipher=00000002000000000000000000000000 + plain=386CA280DD6361CDFE7D7FCA7D19F18E + encrypted=00000002000000000000000000000000 + +Set 6, vector# 31: + key=00000000000000000000000000000000 + cipher=00000001000000000000000000000000 + plain=721A1C26B479914B0CE4A8C456BD47B3 + encrypted=00000001000000000000000000000000 + +Set 6, vector# 32: + key=00000000000000000000000000000000 + cipher=00000000800000000000000000000000 + plain=C11305F225F680EA40A8771359455F45 + encrypted=00000000800000000000000000000000 + +Set 6, vector# 33: + key=00000000000000000000000000000000 + cipher=00000000400000000000000000000000 + plain=2D31D07F62D4E40DC08FDEE13A2A11AE + encrypted=00000000400000000000000000000000 + +Set 6, vector# 34: + key=00000000000000000000000000000000 + cipher=00000000200000000000000000000000 + plain=60DD827F2802C727A7FDBDF19A327F97 + encrypted=00000000200000000000000000000000 + +Set 6, vector# 35: + key=00000000000000000000000000000000 + cipher=00000000100000000000000000000000 + plain=55835D3C3A9A22E2B45F46F92DA977CB + encrypted=00000000100000000000000000000000 + +Set 6, vector# 36: + key=00000000000000000000000000000000 + cipher=00000000080000000000000000000000 + plain=33FB0E98AB36E82259342C55BA1C46E5 + encrypted=00000000080000000000000000000000 + +Set 6, vector# 37: + key=00000000000000000000000000000000 + cipher=00000000040000000000000000000000 + plain=A318C0FD69854691A6445688470F5BB3 + encrypted=00000000040000000000000000000000 + +Set 6, vector# 38: + key=00000000000000000000000000000000 + cipher=00000000020000000000000000000000 + plain=5DCDE553B6981D5289B565ED2A943574 + encrypted=00000000020000000000000000000000 + +Set 6, vector# 39: + key=00000000000000000000000000000000 + cipher=00000000010000000000000000000000 + plain=AA0CD15A5F94558AAE52B5D9E319AE86 + encrypted=00000000010000000000000000000000 + +Set 6, vector# 40: + key=00000000000000000000000000000000 + cipher=00000000008000000000000000000000 + plain=340056BC3BDD76171AAB4D6D687F8CBE + encrypted=00000000008000000000000000000000 + +Set 6, vector# 41: + key=00000000000000000000000000000000 + cipher=00000000004000000000000000000000 + plain=19A14748A8DEF34F750283A39259363A + encrypted=00000000004000000000000000000000 + +Set 6, vector# 42: + key=00000000000000000000000000000000 + cipher=00000000002000000000000000000000 + plain=D564C1381D5E0E7B74FEBE2337286D75 + encrypted=00000000002000000000000000000000 + +Set 6, vector# 43: + key=00000000000000000000000000000000 + cipher=00000000001000000000000000000000 + plain=89DE6423B2999E08D4DB0B9A2AA61405 + encrypted=00000000001000000000000000000000 + +Set 6, vector# 44: + key=00000000000000000000000000000000 + cipher=00000000000800000000000000000000 + plain=7A42A477966FED611A74BFACB8C1106A + encrypted=00000000000800000000000000000000 + +Set 6, vector# 45: + key=00000000000000000000000000000000 + cipher=00000000000400000000000000000000 + plain=15B45EAA2400CDCD33D1EED66904DA12 + encrypted=00000000000400000000000000000000 + +Set 6, vector# 46: + key=00000000000000000000000000000000 + cipher=00000000000200000000000000000000 + plain=8FB128F1D2CAFA42A22E3D031A0F433E + encrypted=00000000000200000000000000000000 + +Set 6, vector# 47: + key=00000000000000000000000000000000 + cipher=00000000000100000000000000000000 + plain=319F913A257E8B0665C68BE9CE97FFC0 + encrypted=00000000000100000000000000000000 + +Set 6, vector# 48: + key=00000000000000000000000000000000 + cipher=00000000000080000000000000000000 + plain=41BAB8CB6628FA8EF04A046C37D812EC + encrypted=00000000000080000000000000000000 + +Set 6, vector# 49: + key=00000000000000000000000000000000 + cipher=00000000000040000000000000000000 + plain=AD5BB97AE29CFA84D359A0D6B9A6F27D + encrypted=00000000000040000000000000000000 + +Set 6, vector# 50: + key=00000000000000000000000000000000 + cipher=00000000000020000000000000000000 + plain=BE0F2DF164141AB0397B91F9663F3CBD + encrypted=00000000000020000000000000000000 + +Set 6, vector# 51: + key=00000000000000000000000000000000 + cipher=00000000000010000000000000000000 + plain=4AEBB3B353B433D2E69A62D8BD289584 + encrypted=00000000000010000000000000000000 + +Set 6, vector# 52: + key=00000000000000000000000000000000 + cipher=00000000000008000000000000000000 + plain=8A51E50E7C2A9E44038A84D95398FA7D + encrypted=00000000000008000000000000000000 + +Set 6, vector# 53: + key=00000000000000000000000000000000 + cipher=00000000000004000000000000000000 + plain=F80FD5AFE661415CE62EE1B8F685357E + encrypted=00000000000004000000000000000000 + +Set 6, vector# 54: + key=00000000000000000000000000000000 + cipher=00000000000002000000000000000000 + plain=A0517FE5DBC4CC0801850FE8708CDC70 + encrypted=00000000000002000000000000000000 + +Set 6, vector# 55: + key=00000000000000000000000000000000 + cipher=00000000000001000000000000000000 + plain=91204F8D81774D9355D42CE4F243A938 + encrypted=00000000000001000000000000000000 + +Set 6, vector# 56: + key=00000000000000000000000000000000 + cipher=00000000000000800000000000000000 + plain=453946D3514D7144F3FD439385982E33 + encrypted=00000000000000800000000000000000 + +Set 6, vector# 57: + key=00000000000000000000000000000000 + cipher=00000000000000400000000000000000 + plain=7592452621512196534390C456473E54 + encrypted=00000000000000400000000000000000 + +Set 6, vector# 58: + key=00000000000000000000000000000000 + cipher=00000000000000200000000000000000 + plain=4B74194045A7030A25A0CAB2F6A6C1B8 + encrypted=00000000000000200000000000000000 + +Set 6, vector# 59: + key=00000000000000000000000000000000 + cipher=00000000000000100000000000000000 + plain=CC7D0CB348508C2FCBF078A6DF9752EA + encrypted=00000000000000100000000000000000 + +Set 6, vector# 60: + key=00000000000000000000000000000000 + cipher=00000000000000080000000000000000 + plain=645D0B75C1BA6C6D14AF012C7C0C9B26 + encrypted=00000000000000080000000000000000 + +Set 6, vector# 61: + key=00000000000000000000000000000000 + cipher=00000000000000040000000000000000 + plain=78DF09BCA3713B4D2E8561F0AEB15321 + encrypted=00000000000000040000000000000000 + +Set 6, vector# 62: + key=00000000000000000000000000000000 + cipher=00000000000000020000000000000000 + plain=2B44DBAF3E5C19192955B034027F94DB + encrypted=00000000000000020000000000000000 + +Set 6, vector# 63: + key=00000000000000000000000000000000 + cipher=00000000000000010000000000000000 + plain=7183D79BDAB56449B46177AA8E1C5054 + encrypted=00000000000000010000000000000000 + +Set 6, vector# 64: + key=00000000000000000000000000000000 + cipher=00000000000000008000000000000000 + plain=128F078E99B941100A1779041812D82E + encrypted=00000000000000008000000000000000 + +Set 6, vector# 65: + key=00000000000000000000000000000000 + cipher=00000000000000004000000000000000 + plain=6EC71CE31FF68E058CE44C92BBDC8671 + encrypted=00000000000000004000000000000000 + +Set 6, vector# 66: + key=00000000000000000000000000000000 + cipher=00000000000000002000000000000000 + plain=008C46C1CA7B354E9597C4413334E5A4 + encrypted=00000000000000002000000000000000 + +Set 6, vector# 67: + key=00000000000000000000000000000000 + cipher=00000000000000001000000000000000 + plain=1FD3E4A0F9F22D1F895A76AEB8340DA7 + encrypted=00000000000000001000000000000000 + +Set 6, vector# 68: + key=00000000000000000000000000000000 + cipher=00000000000000000800000000000000 + plain=F556D80CF617B1688A411B21F9E5F028 + encrypted=00000000000000000800000000000000 + +Set 6, vector# 69: + key=00000000000000000000000000000000 + cipher=00000000000000000400000000000000 + plain=D8D87DE045D4C92B034105EE8E07FEF6 + encrypted=00000000000000000400000000000000 + +Set 6, vector# 70: + key=00000000000000000000000000000000 + cipher=00000000000000000200000000000000 + plain=9A4C6E8D8E9A938EABC05F4C6258ED80 + encrypted=00000000000000000200000000000000 + +Set 6, vector# 71: + key=00000000000000000000000000000000 + cipher=00000000000000000100000000000000 + plain=5206EEF7B1EB68D0D11277DB8A3C286A + encrypted=00000000000000000100000000000000 + +Set 6, vector# 72: + key=00000000000000000000000000000000 + cipher=00000000000000000080000000000000 + plain=70DFC9A35BDAC031BC57C2FF301C8F70 + encrypted=00000000000000000080000000000000 + +Set 6, vector# 73: + key=00000000000000000000000000000000 + cipher=00000000000000000040000000000000 + plain=30AB0EDB8B147636BC4164A2D7467ECB + encrypted=00000000000000000040000000000000 + +Set 6, vector# 74: + key=00000000000000000000000000000000 + cipher=00000000000000000020000000000000 + plain=7A1638FCD9B44A1F1F463D281A5EF5C5 + encrypted=00000000000000000020000000000000 + +Set 6, vector# 75: + key=00000000000000000000000000000000 + cipher=00000000000000000010000000000000 + plain=1325CA57F0967C75BA6934E7A2080938 + encrypted=00000000000000000010000000000000 + +Set 6, vector# 76: + key=00000000000000000000000000000000 + cipher=00000000000000000008000000000000 + plain=44037E53CAA2EC68D3687719CBC67548 + encrypted=00000000000000000008000000000000 + +Set 6, vector# 77: + key=00000000000000000000000000000000 + cipher=00000000000000000004000000000000 + plain=B76AA69E2663D2BC7F0FA3F6C84E6214 + encrypted=00000000000000000004000000000000 + +Set 6, vector# 78: + key=00000000000000000000000000000000 + cipher=00000000000000000002000000000000 + plain=808AB8466DB1806AFB8555E4F3DBE9AE + encrypted=00000000000000000002000000000000 + +Set 6, vector# 79: + key=00000000000000000000000000000000 + cipher=00000000000000000001000000000000 + plain=C88C4DFBE5C2F10BE0F8AB0598A67B6D + encrypted=00000000000000000001000000000000 + +Set 6, vector# 80: + key=00000000000000000000000000000000 + cipher=00000000000000000000800000000000 + plain=D21A073B869220B55BD3FCB36FFA029E + encrypted=00000000000000000000800000000000 + +Set 6, vector# 81: + key=00000000000000000000000000000000 + cipher=00000000000000000000400000000000 + plain=D9B023A6CFD5203FDBF0F9C3583742FA + encrypted=00000000000000000000400000000000 + +Set 6, vector# 82: + key=00000000000000000000000000000000 + cipher=00000000000000000000200000000000 + plain=E06EEA578A4406C7B7690E65F6A8ED09 + encrypted=00000000000000000000200000000000 + +Set 6, vector# 83: + key=00000000000000000000000000000000 + cipher=00000000000000000000100000000000 + plain=11E36A651910897A32806FF79952A645 + encrypted=00000000000000000000100000000000 + +Set 6, vector# 84: + key=00000000000000000000000000000000 + cipher=00000000000000000000080000000000 + plain=4E5C042BEF5421FE7F713F0391970D2F + encrypted=00000000000000000000080000000000 + +Set 6, vector# 85: + key=00000000000000000000000000000000 + cipher=00000000000000000000040000000000 + plain=6C5E8BDE189C2FAC60EF87AA4CBABE38 + encrypted=00000000000000000000040000000000 + +Set 6, vector# 86: + key=00000000000000000000000000000000 + cipher=00000000000000000000020000000000 + plain=9A8CC07C8FDFAB6EBFCEA23FAA3F0C04 + encrypted=00000000000000000000020000000000 + +Set 6, vector# 87: + key=00000000000000000000000000000000 + cipher=00000000000000000000010000000000 + plain=B92DEADD1C5A248F68C935F0D97A2DE8 + encrypted=00000000000000000000010000000000 + +Set 6, vector# 88: + key=00000000000000000000000000000000 + cipher=00000000000000000000008000000000 + plain=075520DEAE9FAD9294BEB79DEDD1FE23 + encrypted=00000000000000000000008000000000 + +Set 6, vector# 89: + key=00000000000000000000000000000000 + cipher=00000000000000000000004000000000 + plain=9CF1144679D9EFFB1B64EF67FDB911BC + encrypted=00000000000000000000004000000000 + +Set 6, vector# 90: + key=00000000000000000000000000000000 + cipher=00000000000000000000002000000000 + plain=84C0140325D49CCDD106F9F785CD839B + encrypted=00000000000000000000002000000000 + +Set 6, vector# 91: + key=00000000000000000000000000000000 + cipher=00000000000000000000001000000000 + plain=83B1AD3FD9BA8FE1A3F74B90840D91BD + encrypted=00000000000000000000001000000000 + +Set 6, vector# 92: + key=00000000000000000000000000000000 + cipher=00000000000000000000000800000000 + plain=6D62FA7EC5ED431E0CB18A73BBDE2BA5 + encrypted=00000000000000000000000800000000 + +Set 6, vector# 93: + key=00000000000000000000000000000000 + cipher=00000000000000000000000400000000 + plain=C643A379D58808D5D750935D2CCE8A04 + encrypted=00000000000000000000000400000000 + +Set 6, vector# 94: + key=00000000000000000000000000000000 + cipher=00000000000000000000000200000000 + plain=1CAE7C8C10D5CF98203E223F9190D745 + encrypted=00000000000000000000000200000000 + +Set 6, vector# 95: + key=00000000000000000000000000000000 + cipher=00000000000000000000000100000000 + plain=DD858CF8B7A3C7BD5E403A8E37F36F5B + encrypted=00000000000000000000000100000000 + +Set 6, vector# 96: + key=00000000000000000000000000000000 + cipher=00000000000000000000000080000000 + plain=559DEFC7EEC487F555D1FCB224932162 + encrypted=00000000000000000000000080000000 + +Set 6, vector# 97: + key=00000000000000000000000000000000 + cipher=00000000000000000000000040000000 + plain=C1077FF4FB228996F61B87F8A6F0A73E + encrypted=00000000000000000000000040000000 + +Set 6, vector# 98: + key=00000000000000000000000000000000 + cipher=00000000000000000000000020000000 + plain=6A17062BD105E0EF78EDA6C99C260B11 + encrypted=00000000000000000000000020000000 + +Set 6, vector# 99: + key=00000000000000000000000000000000 + cipher=00000000000000000000000010000000 + plain=4FD0D575DE8D8FA36F4D6A92F6438BFC + encrypted=00000000000000000000000010000000 + +Set 6, vector#100: + key=00000000000000000000000000000000 + cipher=00000000000000000000000008000000 + plain=F63F24C4AA23DEB6B07000A8CE1C79B1 + encrypted=00000000000000000000000008000000 + +Set 6, vector#101: + key=00000000000000000000000000000000 + cipher=00000000000000000000000004000000 + plain=6CD69E3FCFFA007B2BB3BBE38E0EE59F + encrypted=00000000000000000000000004000000 + +Set 6, vector#102: + key=00000000000000000000000000000000 + cipher=00000000000000000000000002000000 + plain=29CBC71B35906A59642D371FA77BC54D + encrypted=00000000000000000000000002000000 + +Set 6, vector#103: + key=00000000000000000000000000000000 + cipher=00000000000000000000000001000000 + plain=CE08208B8F450701FAE4196572CDDF4D + encrypted=00000000000000000000000001000000 + +Set 6, vector#104: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000800000 + plain=E38DD4CA5D765D22039FC8321778C54E + encrypted=00000000000000000000000000800000 + +Set 6, vector#105: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000400000 + plain=3EEB149E661D4F203C0AB91ECEFB94B3 + encrypted=00000000000000000000000000400000 + +Set 6, vector#106: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000200000 + plain=2B5241143EFD37F5B311FFA8A315E8AB + encrypted=00000000000000000000000000200000 + +Set 6, vector#107: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000100000 + plain=6C8698E3BFF3FA8577A655AC5F625F5A + encrypted=00000000000000000000000000100000 + +Set 6, vector#108: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000080000 + plain=B040EEDAC8DD40872685F91B911FC209 + encrypted=00000000000000000000000000080000 + +Set 6, vector#109: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000040000 + plain=7E9C2A2936279860ADD0CAF3EB51499F + encrypted=00000000000000000000000000040000 + +Set 6, vector#110: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000020000 + plain=97A33D3B72AFEF7F0CAA1E08714A4370 + encrypted=00000000000000000000000000020000 + +Set 6, vector#111: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000010000 + plain=7CCB85D86FF93E895C5F40DC0D03FC1B + encrypted=00000000000000000000000000010000 + +Set 6, vector#112: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000008000 + plain=1B8678C22FB8A870EEC2AB10096BC0B7 + encrypted=00000000000000000000000000008000 + +Set 6, vector#113: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000004000 + plain=10A9CC03B2750A41B3BC906C87940DCB + encrypted=00000000000000000000000000004000 + +Set 6, vector#114: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000002000 + plain=C716D4CCE9D8353E0FBDB072F384FF81 + encrypted=00000000000000000000000000002000 + +Set 6, vector#115: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000001000 + plain=1F9DC13E77B325BDDF11C691D21CF265 + encrypted=00000000000000000000000000001000 + +Set 6, vector#116: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000800 + plain=3629CAFC7CFD75D3B63EEB31E68F6570 + encrypted=00000000000000000000000000000800 + +Set 6, vector#117: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000400 + plain=DCB63EBCCA5C923D1E4B67AFF90ADF8F + encrypted=00000000000000000000000000000400 + +Set 6, vector#118: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000200 + plain=FE2C08BC67035E5D3895695A24EA6CB1 + encrypted=00000000000000000000000000000200 + +Set 6, vector#119: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000100 + plain=0441C0E5EAEDDC615AC8DE01E8FEE96D + encrypted=00000000000000000000000000000100 + +Set 6, vector#120: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000080 + plain=5F094759C27BA82A41203214581B8FAC + encrypted=00000000000000000000000000000080 + +Set 6, vector#121: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000040 + plain=B2764C05C5AB64F8C32F4E63FA3BA555 + encrypted=00000000000000000000000000000040 + +Set 6, vector#122: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000020 + plain=79B9ED11CDEBDFB59D4756FBD20DE21A + encrypted=00000000000000000000000000000020 + +Set 6, vector#123: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000010 + plain=459ED2AACEE26FC87459DF52FE408ACB + encrypted=00000000000000000000000000000010 + +Set 6, vector#124: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000008 + plain=44BAFB591EF6F08FF4EBD2EF8A159807 + encrypted=00000000000000000000000000000008 + +Set 6, vector#125: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000004 + plain=8815E0B323F87B1378B73E53718C5553 + encrypted=00000000000000000000000000000004 + +Set 6, vector#126: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000002 + plain=F1418594D50FBE9082ACCE6051A4DEC0 + encrypted=00000000000000000000000000000002 + +Set 6, vector#127: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000001 + plain=6C5A75D8A41802AD5A35818DD5ABFDDC + encrypted=00000000000000000000000000000001 + +Test vectors -- set 7 +===================== + +Set 7, vector# 0: + key=00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=140F0F1011B5223D79587717FFD9EC3A + encrypted=00000000000000000000000000000000 + +Set 7, vector# 1: + key=01010101010101010101010101010101 + cipher=01010101010101010101010101010101 + plain=BC6E2BAF23CA1E66AAD7B395C1D6A60A + encrypted=01010101010101010101010101010101 + +Set 7, vector# 2: + key=02020202020202020202020202020202 + cipher=02020202020202020202020202020202 + plain=5C2945A88EBA582116FD19A7DE6A5A25 + encrypted=02020202020202020202020202020202 + +Set 7, vector# 3: + key=03030303030303030303030303030303 + cipher=03030303030303030303030303030303 + plain=729822B63A7F2C157F884621B623EF2D + encrypted=03030303030303030303030303030303 + +Set 7, vector# 4: + key=04040404040404040404040404040404 + cipher=04040404040404040404040404040404 + plain=FFDAE16C0AC93F15D720FC3BB1920C76 + encrypted=04040404040404040404040404040404 + +Set 7, vector# 5: + key=05050505050505050505050505050505 + cipher=05050505050505050505050505050505 + plain=00FF0BA7FCA3D008CB44B8E3B476F2CA + encrypted=05050505050505050505050505050505 + +Set 7, vector# 6: + key=06060606060606060606060606060606 + cipher=06060606060606060606060606060606 + plain=BBB75CBFE1357B2CDFCF1AC15CA4479C + encrypted=06060606060606060606060606060606 + +Set 7, vector# 7: + key=07070707070707070707070707070707 + cipher=07070707070707070707070707070707 + plain=D57281C6F576924D43553B36D10C92EB + encrypted=07070707070707070707070707070707 + +Set 7, vector# 8: + key=08080808080808080808080808080808 + cipher=08080808080808080808080808080808 + plain=BC9D3539E3AA63F96DD4BFC3E3C1DA73 + encrypted=08080808080808080808080808080808 + +Set 7, vector# 9: + key=09090909090909090909090909090909 + cipher=09090909090909090909090909090909 + plain=B2BFF6CE20E91380B8E1AEA7F4C0682C + encrypted=09090909090909090909090909090909 + +Set 7, vector# 10: + key=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + cipher=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + plain=CB332417BD894DF0FE6B092F59390F7E + encrypted=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + +Set 7, vector# 11: + key=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + cipher=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + plain=111683A64176D0DC61D0F018C930D88D + encrypted=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + +Set 7, vector# 12: + key=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + cipher=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + plain=2B0080138B16F1D242837971EA2D6C29 + encrypted=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + +Set 7, vector# 13: + key=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + cipher=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + plain=B1FCADBE0AD1BD04457B0E7177A0E8BD + encrypted=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + +Set 7, vector# 14: + key=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + cipher=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + plain=237062C28C2470EC595A4B5F15184103 + encrypted=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + +Set 7, vector# 15: + key=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + cipher=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + plain=699FBCE40B81EF72369EBF5CCABC85A0 + encrypted=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + +Set 7, vector# 16: + key=10101010101010101010101010101010 + cipher=10101010101010101010101010101010 + plain=0C0492B37D1FB4C540835744D758D742 + encrypted=10101010101010101010101010101010 + +Set 7, vector# 17: + key=11111111111111111111111111111111 + cipher=11111111111111111111111111111111 + plain=C60002B94662D2560A1916D907C982B9 + encrypted=11111111111111111111111111111111 + +Set 7, vector# 18: + key=12121212121212121212121212121212 + cipher=12121212121212121212121212121212 + plain=89C75CFAEE8B2115301FB14329750E7C + encrypted=12121212121212121212121212121212 + +Set 7, vector# 19: + key=13131313131313131313131313131313 + cipher=13131313131313131313131313131313 + plain=720763C16586D435E11F23727F3E5765 + encrypted=13131313131313131313131313131313 + +Set 7, vector# 20: + key=14141414141414141414141414141414 + cipher=14141414141414141414141414141414 + plain=5745460D6A74E539186806FA737776B3 + encrypted=14141414141414141414141414141414 + +Set 7, vector# 21: + key=15151515151515151515151515151515 + cipher=15151515151515151515151515151515 + plain=FADF025EF36EF95DD542CB995ACC5E09 + encrypted=15151515151515151515151515151515 + +Set 7, vector# 22: + key=16161616161616161616161616161616 + cipher=16161616161616161616161616161616 + plain=724406E4D1FF6B8D6C562394823E64E1 + encrypted=16161616161616161616161616161616 + +Set 7, vector# 23: + key=17171717171717171717171717171717 + cipher=17171717171717171717171717171717 + plain=87DC2865B5F5346A1D2B89EE59CE84BA + encrypted=17171717171717171717171717171717 + +Set 7, vector# 24: + key=18181818181818181818181818181818 + cipher=18181818181818181818181818181818 + plain=CF9704F5E08D2CD16034FFC2340B1B90 + encrypted=18181818181818181818181818181818 + +Set 7, vector# 25: + key=19191919191919191919191919191919 + cipher=19191919191919191919191919191919 + plain=25082DC880527F24DE4CD77039155C3C + encrypted=19191919191919191919191919191919 + +Set 7, vector# 26: + key=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + cipher=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + plain=951C5D1A1D61D559D6ACB9AA52B35768 + encrypted=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + +Set 7, vector# 27: + key=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + cipher=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + plain=6CBE694E7B3EDBD5E2F7C2DB4E8B4D71 + encrypted=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + +Set 7, vector# 28: + key=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + cipher=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + plain=7A50D72D355A7645C0CCC640CAA7F2D3 + encrypted=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + +Set 7, vector# 29: + key=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + cipher=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + plain=812FB8687F2E0B91497E8CEB00750AFD + encrypted=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + +Set 7, vector# 30: + key=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + cipher=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + plain=A8C270C403B324989076F7799349A821 + encrypted=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + +Set 7, vector# 31: + key=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + cipher=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + plain=4812680D4C2AC98223378EA2B546CD56 + encrypted=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + +Set 7, vector# 32: + key=20202020202020202020202020202020 + cipher=20202020202020202020202020202020 + plain=EC8211FE4D2573DCE7DA514DBEDCB6F9 + encrypted=20202020202020202020202020202020 + +Set 7, vector# 33: + key=21212121212121212121212121212121 + cipher=21212121212121212121212121212121 + plain=814381DFD79BFF014D1AADB021B60B83 + encrypted=21212121212121212121212121212121 + +Set 7, vector# 34: + key=22222222222222222222222222222222 + cipher=22222222222222222222222222222222 + plain=5BF8B09ABD02A1602E61638567F12766 + encrypted=22222222222222222222222222222222 + +Set 7, vector# 35: + key=23232323232323232323232323232323 + cipher=23232323232323232323232323232323 + plain=4858F8392041E904B199F5126235CD32 + encrypted=23232323232323232323232323232323 + +Set 7, vector# 36: + key=24242424242424242424242424242424 + cipher=24242424242424242424242424242424 + plain=5D984C185392D7B3EAE14A71E2B22FC4 + encrypted=24242424242424242424242424242424 + +Set 7, vector# 37: + key=25252525252525252525252525252525 + cipher=25252525252525252525252525252525 + plain=A5D990875845B6F2B3C550653B2A151A + encrypted=25252525252525252525252525252525 + +Set 7, vector# 38: + key=26262626262626262626262626262626 + cipher=26262626262626262626262626262626 + plain=7ED69C8369750E6DEC8645F7DB42E9EE + encrypted=26262626262626262626262626262626 + +Set 7, vector# 39: + key=27272727272727272727272727272727 + cipher=27272727272727272727272727272727 + plain=BB5C544A85790D46BC57651396D40D52 + encrypted=27272727272727272727272727272727 + +Set 7, vector# 40: + key=28282828282828282828282828282828 + cipher=28282828282828282828282828282828 + plain=B41575CA2E6697BD0C0FBFF32E7A48AF + encrypted=28282828282828282828282828282828 + +Set 7, vector# 41: + key=29292929292929292929292929292929 + cipher=29292929292929292929292929292929 + plain=0AC98CEF45943BEAB36FF0E89C93BC37 + encrypted=29292929292929292929292929292929 + +Set 7, vector# 42: + key=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + cipher=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + plain=8A907BFBAE6E336BCD365FBF76D02394 + encrypted=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + +Set 7, vector# 43: + key=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + cipher=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + plain=3C746F4163414801999FD414729DC017 + encrypted=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + +Set 7, vector# 44: + key=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + cipher=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + plain=C99CEEE06EA2940DBF9B8C6B5D3DC4E1 + encrypted=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + +Set 7, vector# 45: + key=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + cipher=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + plain=206F25454DFF93AB04B3C7F555658AFB + encrypted=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + +Set 7, vector# 46: + key=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + cipher=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + plain=A75E743D1FA6A505E301322C5E4C5EBD + encrypted=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + +Set 7, vector# 47: + key=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + cipher=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + plain=5E61F51867D6142503B2E4919CE7C05C + encrypted=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + +Set 7, vector# 48: + key=30303030303030303030303030303030 + cipher=30303030303030303030303030303030 + plain=AB4BC5FF39C0C04865184854896B1BB6 + encrypted=30303030303030303030303030303030 + +Set 7, vector# 49: + key=31313131313131313131313131313131 + cipher=31313131313131313131313131313131 + plain=640D5465BB301639F754787F7EC79868 + encrypted=31313131313131313131313131313131 + +Set 7, vector# 50: + key=32323232323232323232323232323232 + cipher=32323232323232323232323232323232 + plain=6A334476D84993D6F8A46A2E19364F6D + encrypted=32323232323232323232323232323232 + +Set 7, vector# 51: + key=33333333333333333333333333333333 + cipher=33333333333333333333333333333333 + plain=FB33D88C3106CBB38893A6CEE9F4F0BC + encrypted=33333333333333333333333333333333 + +Set 7, vector# 52: + key=34343434343434343434343434343434 + cipher=34343434343434343434343434343434 + plain=51BAC28A79B318E14C2682C405CB42B6 + encrypted=34343434343434343434343434343434 + +Set 7, vector# 53: + key=35353535353535353535353535353535 + cipher=35353535353535353535353535353535 + plain=36E9B1E52A8CD12E25457E367668881E + encrypted=35353535353535353535353535353535 + +Set 7, vector# 54: + key=36363636363636363636363636363636 + cipher=36363636363636363636363636363636 + plain=8767598B083B19A53254BD5C4287FD51 + encrypted=36363636363636363636363636363636 + +Set 7, vector# 55: + key=37373737373737373737373737373737 + cipher=37373737373737373737373737373737 + plain=590B8DFF4D3ADFB48623E966E15A2C21 + encrypted=37373737373737373737373737373737 + +Set 7, vector# 56: + key=38383838383838383838383838383838 + cipher=38383838383838383838383838383838 + plain=53501E706BB3034E9E0140FF3FF69A1E + encrypted=38383838383838383838383838383838 + +Set 7, vector# 57: + key=39393939393939393939393939393939 + cipher=39393939393939393939393939393939 + plain=7D8F0756BA9C5D611589977BC5D0C378 + encrypted=39393939393939393939393939393939 + +Set 7, vector# 58: + key=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + cipher=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + plain=A253B43BA6C6C2175C03D83022B97D06 + encrypted=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + +Set 7, vector# 59: + key=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + cipher=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + plain=92C69411184D292AE15D103B4D7A023D + encrypted=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + +Set 7, vector# 60: + key=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + cipher=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + plain=EC88636FF858ADB6817C09CE4356171F + encrypted=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + +Set 7, vector# 61: + key=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + cipher=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + plain=B3BD7673F1C3CA8B19919CEA8D8AF9B5 + encrypted=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + +Set 7, vector# 62: + key=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + cipher=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + plain=A15C6B4804CF95E4E06F0DD11C95EA8D + encrypted=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + +Set 7, vector# 63: + key=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + cipher=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + plain=0CABBEF0799B0A9DAE6B5F30A6BD1439 + encrypted=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + +Set 7, vector# 64: + key=40404040404040404040404040404040 + cipher=40404040404040404040404040404040 + plain=FBC778605BA77AFABD9A02BEF13CBE09 + encrypted=40404040404040404040404040404040 + +Set 7, vector# 65: + key=41414141414141414141414141414141 + cipher=41414141414141414141414141414141 + plain=B5F95B27340B6D439E6284A654B31502 + encrypted=41414141414141414141414141414141 + +Set 7, vector# 66: + key=42424242424242424242424242424242 + cipher=42424242424242424242424242424242 + plain=A1F7564524B6D339A72FB1C2EB0191E8 + encrypted=42424242424242424242424242424242 + +Set 7, vector# 67: + key=43434343434343434343434343434343 + cipher=43434343434343434343434343434343 + plain=C6DF46DF70216148C3E0EE48844BC828 + encrypted=43434343434343434343434343434343 + +Set 7, vector# 68: + key=44444444444444444444444444444444 + cipher=44444444444444444444444444444444 + plain=78F36499CF82AEBFA62B1075B1EC16CD + encrypted=44444444444444444444444444444444 + +Set 7, vector# 69: + key=45454545454545454545454545454545 + cipher=45454545454545454545454545454545 + plain=933A328945D598F93792376F37024B21 + encrypted=45454545454545454545454545454545 + +Set 7, vector# 70: + key=46464646464646464646464646464646 + cipher=46464646464646464646464646464646 + plain=E4A92B8692D56C34964650280E725F50 + encrypted=46464646464646464646464646464646 + +Set 7, vector# 71: + key=47474747474747474747474747474747 + cipher=47474747474747474747474747474747 + plain=81806121BE4F1B08DE6E6A0DEFE0C522 + encrypted=47474747474747474747474747474747 + +Set 7, vector# 72: + key=48484848484848484848484848484848 + cipher=48484848484848484848484848484848 + plain=F2EE8BD64EFB2CA39400D260C058DB9E + encrypted=48484848484848484848484848484848 + +Set 7, vector# 73: + key=49494949494949494949494949494949 + cipher=49494949494949494949494949494949 + plain=93C4E34A722F74B19AB9811EB6044EAF + encrypted=49494949494949494949494949494949 + +Set 7, vector# 74: + key=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + cipher=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + plain=84456B0D0FA4C52D948DAF09908F97FE + encrypted=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + +Set 7, vector# 75: + key=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + cipher=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + plain=894C27B005B5C2EE63563C49192B1825 + encrypted=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + +Set 7, vector# 76: + key=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + cipher=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + plain=FFFBFBCC971D1CC128C0EEDB84EA5489 + encrypted=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + +Set 7, vector# 77: + key=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + cipher=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + plain=BF0BC7D2B0E00891E0352A9A0040E02C + encrypted=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + +Set 7, vector# 78: + key=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + cipher=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + plain=EE00C5989D78273157AFD399A5319CBE + encrypted=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + +Set 7, vector# 79: + key=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + cipher=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + plain=5B73DA6CE24BD9D8F24DCA0230892518 + encrypted=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + +Set 7, vector# 80: + key=50505050505050505050505050505050 + cipher=50505050505050505050505050505050 + plain=4B71338171BB628E417A7D51626ABCD6 + encrypted=50505050505050505050505050505050 + +Set 7, vector# 81: + key=51515151515151515151515151515151 + cipher=51515151515151515151515151515151 + plain=95F6CA3C2CD5DEF6297F944947EE4537 + encrypted=51515151515151515151515151515151 + +Set 7, vector# 82: + key=52525252525252525252525252525252 + cipher=52525252525252525252525252525252 + plain=5F4D1491BC6350886E0629D43B1D2213 + encrypted=52525252525252525252525252525252 + +Set 7, vector# 83: + key=53535353535353535353535353535353 + cipher=53535353535353535353535353535353 + plain=B9FD0E69BB40B54D5389DB5FE33E08EA + encrypted=53535353535353535353535353535353 + +Set 7, vector# 84: + key=54545454545454545454545454545454 + cipher=54545454545454545454545454545454 + plain=20E721C49A4C50A073FC4CFDEFE15A6C + encrypted=54545454545454545454545454545454 + +Set 7, vector# 85: + key=55555555555555555555555555555555 + cipher=55555555555555555555555555555555 + plain=65BD1E868F5AC7ED71708E2CE0E0EDF6 + encrypted=55555555555555555555555555555555 + +Set 7, vector# 86: + key=56565656565656565656565656565656 + cipher=56565656565656565656565656565656 + plain=5C95551672A1A554513802A11D157661 + encrypted=56565656565656565656565656565656 + +Set 7, vector# 87: + key=57575757575757575757575757575757 + cipher=57575757575757575757575757575757 + plain=63BDDE4EC17128B6C1ED1BB75BA5E57A + encrypted=57575757575757575757575757575757 + +Set 7, vector# 88: + key=58585858585858585858585858585858 + cipher=58585858585858585858585858585858 + plain=60D3E974B35069FCD14A8D58E916DAAA + encrypted=58585858585858585858585858585858 + +Set 7, vector# 89: + key=59595959595959595959595959595959 + cipher=59595959595959595959595959595959 + plain=8B782A8122973C129CC5FFE63B1B80A3 + encrypted=59595959595959595959595959595959 + +Set 7, vector# 90: + key=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + cipher=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + plain=73454B4CBF177A1C6B76ECCE75E7DE12 + encrypted=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + +Set 7, vector# 91: + key=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + cipher=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + plain=66461D44057525ED0032E264621070E0 + encrypted=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + +Set 7, vector# 92: + key=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + cipher=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + plain=C62A0A15D00733A9116E12E68FC7F68F + encrypted=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + +Set 7, vector# 93: + key=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + cipher=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + plain=A5A3FF4D7BD3FCA77EF597E8D168A061 + encrypted=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + +Set 7, vector# 94: + key=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + cipher=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + plain=023228440E8F2AED796D4BB80203B527 + encrypted=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + +Set 7, vector# 95: + key=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + cipher=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + plain=E36AC3DC9F255CCCEDAD03C4D88826D9 + encrypted=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + +Set 7, vector# 96: + key=60606060606060606060606060606060 + cipher=60606060606060606060606060606060 + plain=D8BA0B5951BB700749D91A0B7C816315 + encrypted=60606060606060606060606060606060 + +Set 7, vector# 97: + key=61616161616161616161616161616161 + cipher=61616161616161616161616161616161 + plain=B8E93BBC0F976259B6B588AEE98DE596 + encrypted=61616161616161616161616161616161 + +Set 7, vector# 98: + key=62626262626262626262626262626262 + cipher=62626262626262626262626262626262 + plain=1AACAA2FEEF54571B7866757ABFDDA92 + encrypted=62626262626262626262626262626262 + +Set 7, vector# 99: + key=63636363636363636363636363636363 + cipher=63636363636363636363636363636363 + plain=D39137767E2938970684869F77B9B1AB + encrypted=63636363636363636363636363636363 + +Set 7, vector#100: + key=64646464646464646464646464646464 + cipher=64646464646464646464646464646464 + plain=A22377C4945F399225BABDE72B4C50A2 + encrypted=64646464646464646464646464646464 + +Set 7, vector#101: + key=65656565656565656565656565656565 + cipher=65656565656565656565656565656565 + plain=2F824C76C49504E3F33E8F9738597D37 + encrypted=65656565656565656565656565656565 + +Set 7, vector#102: + key=66666666666666666666666666666666 + cipher=66666666666666666666666666666666 + plain=E6BDF4642F510B13422B7393A8C9D614 + encrypted=66666666666666666666666666666666 + +Set 7, vector#103: + key=67676767676767676767676767676767 + cipher=67676767676767676767676767676767 + plain=8754684CF7D8B113FC20BBF787C1311B + encrypted=67676767676767676767676767676767 + +Set 7, vector#104: + key=68686868686868686868686868686868 + cipher=68686868686868686868686868686868 + plain=49274124923838E0B9B9A2AF58819685 + encrypted=68686868686868686868686868686868 + +Set 7, vector#105: + key=69696969696969696969696969696969 + cipher=69696969696969696969696969696969 + plain=8FE995C21CF52B12E7F957EA532112BB + encrypted=69696969696969696969696969696969 + +Set 7, vector#106: + key=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + cipher=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + plain=EE8B6BAD8B4F5A82AB061A2DE5B51DE6 + encrypted=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + +Set 7, vector#107: + key=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + cipher=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + plain=ACF57B441A929102DC350A803C9CCCE4 + encrypted=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + +Set 7, vector#108: + key=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + cipher=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + plain=DD8B77C680B1CFFCEF4A79D9A612A6D8 + encrypted=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + +Set 7, vector#109: + key=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + cipher=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + plain=CDA59D10639F4167DE284FF1CB6D7B04 + encrypted=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + +Set 7, vector#110: + key=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + cipher=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + plain=0284D03B1F7202D60E797ACF1BEF269E + encrypted=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + +Set 7, vector#111: + key=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + cipher=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + plain=4CE9CC5773284DF406E5779135DDD973 + encrypted=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + +Set 7, vector#112: + key=70707070707070707070707070707070 + cipher=70707070707070707070707070707070 + plain=A572D9794FF84B1A0E526B8427C32EDF + encrypted=70707070707070707070707070707070 + +Set 7, vector#113: + key=71717171717171717171717171717171 + cipher=71717171717171717171717171717171 + plain=79173D8F7A69ADB978D0B1C8F7FB5B9F + encrypted=71717171717171717171717171717171 + +Set 7, vector#114: + key=72727272727272727272727272727272 + cipher=72727272727272727272727272727272 + plain=0843E6F5122B5D357FE2D0CF5C17B303 + encrypted=72727272727272727272727272727272 + +Set 7, vector#115: + key=73737373737373737373737373737373 + cipher=73737373737373737373737373737373 + plain=3949CFC04936EAC91F687EBE5B9A3E3F + encrypted=73737373737373737373737373737373 + +Set 7, vector#116: + key=74747474747474747474747474747474 + cipher=74747474747474747474747474747474 + plain=9D5BB72AC898BE09EEC7F06118FBDC71 + encrypted=74747474747474747474747474747474 + +Set 7, vector#117: + key=75757575757575757575757575757575 + cipher=75757575757575757575757575757575 + plain=1FA3D2AD5F634178C0C853976B865B95 + encrypted=75757575757575757575757575757575 + +Set 7, vector#118: + key=76767676767676767676767676767676 + cipher=76767676767676767676767676767676 + plain=22DC8C8EC5D95EE96B36211D70249E9E + encrypted=76767676767676767676767676767676 + +Set 7, vector#119: + key=77777777777777777777777777777777 + cipher=77777777777777777777777777777777 + plain=9DB3B197022EE43D9F9F011467AFEF6B + encrypted=77777777777777777777777777777777 + +Set 7, vector#120: + key=78787878787878787878787878787878 + cipher=78787878787878787878787878787878 + plain=DD03B15E7E4CAA00DC4312D46509F4F0 + encrypted=78787878787878787878787878787878 + +Set 7, vector#121: + key=79797979797979797979797979797979 + cipher=79797979797979797979797979797979 + plain=D58BC1B730752BE20A64ABE0EF97D62C + encrypted=79797979797979797979797979797979 + +Set 7, vector#122: + key=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + cipher=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + plain=99C43815FBAEF03F839CD768B2E03CA9 + encrypted=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + +Set 7, vector#123: + key=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + cipher=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + plain=7951BCBDD4693DED0565657AD01DC034 + encrypted=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + +Set 7, vector#124: + key=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + cipher=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + plain=8D5ED090BAD40F6B30A77F6A97EAD842 + encrypted=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + +Set 7, vector#125: + key=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + cipher=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + plain=E6490854F089ADFFFB3895A01DB80BCE + encrypted=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + +Set 7, vector#126: + key=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + cipher=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + plain=ACCC429C840D311DDC87CEA53F78F5E4 + encrypted=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + +Set 7, vector#127: + key=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + cipher=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + plain=1BF13529F5B637D05B2AF545279510B1 + encrypted=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + +Set 7, vector#128: + key=80808080808080808080808080808080 + cipher=80808080808080808080808080808080 + plain=584882A7960AED334B9618A24B98E471 + encrypted=80808080808080808080808080808080 + +Set 7, vector#129: + key=81818181818181818181818181818181 + cipher=81818181818181818181818181818181 + plain=85434C381075FE10359EFD8B6B997E16 + encrypted=81818181818181818181818181818181 + +Set 7, vector#130: + key=82828282828282828282828282828282 + cipher=82828282828282828282828282828282 + plain=F3E650935EF794013C34142DB9C34520 + encrypted=82828282828282828282828282828282 + +Set 7, vector#131: + key=83838383838383838383838383838383 + cipher=83838383838383838383838383838383 + plain=9828A075E1D85480408673E60C732198 + encrypted=83838383838383838383838383838383 + +Set 7, vector#132: + key=84848484848484848484848484848484 + cipher=84848484848484848484848484848484 + plain=F6F731E205567F0C48209646F25968F8 + encrypted=84848484848484848484848484848484 + +Set 7, vector#133: + key=85858585858585858585858585858585 + cipher=85858585858585858585858585858585 + plain=F15B650F35B7BEACB2F779B4FD90F420 + encrypted=85858585858585858585858585858585 + +Set 7, vector#134: + key=86868686868686868686868686868686 + cipher=86868686868686868686868686868686 + plain=A815AC889666674841F4ADB2BF092953 + encrypted=86868686868686868686868686868686 + +Set 7, vector#135: + key=87878787878787878787878787878787 + cipher=87878787878787878787878787878787 + plain=86E13E4D84810EFD4E6069F655CB66C5 + encrypted=87878787878787878787878787878787 + +Set 7, vector#136: + key=88888888888888888888888888888888 + cipher=88888888888888888888888888888888 + plain=3544B612E7B85D0D20B4167B4AB51817 + encrypted=88888888888888888888888888888888 + +Set 7, vector#137: + key=89898989898989898989898989898989 + cipher=89898989898989898989898989898989 + plain=404CCACF92D084413E83E1F7E5B6D00E + encrypted=89898989898989898989898989898989 + +Set 7, vector#138: + key=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + cipher=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + plain=CB778FADDE03FA5BC0FB90CBD25AFE71 + encrypted=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + +Set 7, vector#139: + key=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + cipher=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + plain=FB536275B762F5A70E566756F8BC3FAA + encrypted=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + +Set 7, vector#140: + key=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + cipher=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + plain=B6C34E0F1C6484C850E1191326CD6435 + encrypted=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + +Set 7, vector#141: + key=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + cipher=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + plain=7E0F0C522E995BF6EDF47B50845513A8 + encrypted=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + +Set 7, vector#142: + key=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + cipher=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + plain=99DD44277654589225866B5AF3A1B07E + encrypted=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + +Set 7, vector#143: + key=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + cipher=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + plain=D11D05ECFA393580CA899A15C4922ACC + encrypted=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + +Set 7, vector#144: + key=90909090909090909090909090909090 + cipher=90909090909090909090909090909090 + plain=9A3248EDA7C3EFDE359C6078266E91DB + encrypted=90909090909090909090909090909090 + +Set 7, vector#145: + key=91919191919191919191919191919191 + cipher=91919191919191919191919191919191 + plain=6F1A73C86D978875CAD2409B833D0BF2 + encrypted=91919191919191919191919191919191 + +Set 7, vector#146: + key=92929292929292929292929292929292 + cipher=92929292929292929292929292929292 + plain=EC5F3B8C9EBB7DA795FDA78126B8E24A + encrypted=92929292929292929292929292929292 + +Set 7, vector#147: + key=93939393939393939393939393939393 + cipher=93939393939393939393939393939393 + plain=CE71C211EECFC344BBFBE3869A5FCC85 + encrypted=93939393939393939393939393939393 + +Set 7, vector#148: + key=94949494949494949494949494949494 + cipher=94949494949494949494949494949494 + plain=3F2D656752D11BD5FB0A3D03A1D1C913 + encrypted=94949494949494949494949494949494 + +Set 7, vector#149: + key=95959595959595959595959595959595 + cipher=95959595959595959595959595959595 + plain=FF54AF22036F00577DC9931CAA50117C + encrypted=95959595959595959595959595959595 + +Set 7, vector#150: + key=96969696969696969696969696969696 + cipher=96969696969696969696969696969696 + plain=D98C402B868466CCC36BA936D06A9580 + encrypted=96969696969696969696969696969696 + +Set 7, vector#151: + key=97979797979797979797979797979797 + cipher=97979797979797979797979797979797 + plain=21BB7A6FD0C7BE24926C7161BC91BB41 + encrypted=97979797979797979797979797979797 + +Set 7, vector#152: + key=98989898989898989898989898989898 + cipher=98989898989898989898989898989898 + plain=07DE5A58367D2470EEE292B0822A16E9 + encrypted=98989898989898989898989898989898 + +Set 7, vector#153: + key=99999999999999999999999999999999 + cipher=99999999999999999999999999999999 + plain=A380C3D888F2B0531917813FFC59CC56 + encrypted=99999999999999999999999999999999 + +Set 7, vector#154: + key=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + cipher=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + plain=3DFD223963F09D5248B6615C26D3F218 + encrypted=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + +Set 7, vector#155: + key=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + cipher=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + plain=9A23AAF4B4A6BF7BD29E75D9D60B1AC3 + encrypted=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + +Set 7, vector#156: + key=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + cipher=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + plain=4CB3EF24A14D546EC6A951F64C8022B6 + encrypted=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + +Set 7, vector#157: + key=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + cipher=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + plain=1F0B56DB5DBDBA4E52748007957329CA + encrypted=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + +Set 7, vector#158: + key=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + cipher=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + plain=730E243E4578C1C6963A37DE79AA8691 + encrypted=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + +Set 7, vector#159: + key=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + cipher=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + plain=07CE9139D4E060D8A372DBE7999FB05E + encrypted=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + +Set 7, vector#160: + key=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + cipher=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + plain=E84B9B4140B12DC6CDB8215329ADD24C + encrypted=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + +Set 7, vector#161: + key=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + cipher=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + plain=3D204781AD22716A79C978FEEADBA978 + encrypted=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + +Set 7, vector#162: + key=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + cipher=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + plain=D501CEEB2B7BB64BB03260AFB71A89A9 + encrypted=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + +Set 7, vector#163: + key=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + cipher=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + plain=691C4B7BC981990CA7D434F72E2E9794 + encrypted=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + +Set 7, vector#164: + key=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + cipher=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + plain=38079D35804E16829A76920E08AD39AB + encrypted=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + +Set 7, vector#165: + key=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + cipher=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + plain=CF7E5A7C4251970A29AAB862F0645CB1 + encrypted=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + +Set 7, vector#166: + key=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + cipher=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + plain=4600E79368AD3A2FEE81BE2A9E68CE47 + encrypted=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + +Set 7, vector#167: + key=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + cipher=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + plain=7BAC8B72BC85B63EBE5DBAC56D991C80 + encrypted=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + +Set 7, vector#168: + key=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + cipher=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + plain=55ABEA195948D2662421D724B73EB0C3 + encrypted=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + +Set 7, vector#169: + key=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + cipher=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + plain=D8621DEA3BA0BA4375403A6771E80EBD + encrypted=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + +Set 7, vector#170: + key=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + cipher=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + plain=504BE0E800BFAC5EB71791A75BA34D1A + encrypted=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + +Set 7, vector#171: + key=ABABABABABABABABABABABABABABABAB + cipher=ABABABABABABABABABABABABABABABAB + plain=5C85367844FEE036C920C53DC430C1E0 + encrypted=ABABABABABABABABABABABABABABABAB + +Set 7, vector#172: + key=ACACACACACACACACACACACACACACACAC + cipher=ACACACACACACACACACACACACACACACAC + plain=DE4CC2B23225E35337BEE42A4B2537EB + encrypted=ACACACACACACACACACACACACACACACAC + +Set 7, vector#173: + key=ADADADADADADADADADADADADADADADAD + cipher=ADADADADADADADADADADADADADADADAD + plain=0ABBD5B48A9746BF228B346662F4266B + encrypted=ADADADADADADADADADADADADADADADAD + +Set 7, vector#174: + key=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + cipher=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + plain=712AFDA678CD451975EFFD58861BD214 + encrypted=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + +Set 7, vector#175: + key=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + cipher=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + plain=BB765BA1A4B88B2F11F79C73BD1B6E0C + encrypted=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + +Set 7, vector#176: + key=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + cipher=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + plain=6A47CF67209E5C82A3BD8AF30D40A76C + encrypted=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + +Set 7, vector#177: + key=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + cipher=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + plain=902D0175017058F3F0109E0C832D148E + encrypted=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + +Set 7, vector#178: + key=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + cipher=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + plain=EA345A6781BBD6D3669D74DAC9DEB532 + encrypted=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + +Set 7, vector#179: + key=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + cipher=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + plain=DCE105E66973DD108708EA08B4632E2B + encrypted=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + +Set 7, vector#180: + key=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + cipher=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + plain=469BBCFC14DD804CDFCE9CCE0BA27EDD + encrypted=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + +Set 7, vector#181: + key=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + cipher=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + plain=2DA45565CC1F93C483A7EE676DCDD97F + encrypted=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + +Set 7, vector#182: + key=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + cipher=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + plain=AB0EC7F318BE12F695815309FDB97340 + encrypted=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + +Set 7, vector#183: + key=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + cipher=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + plain=9063731C70D9E94251CA42CBD7A11796 + encrypted=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + +Set 7, vector#184: + key=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + cipher=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + plain=E6EAD9B43BBD95F4B7C563551CAD1D83 + encrypted=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + +Set 7, vector#185: + key=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + cipher=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + plain=72EA6399251075BBB704835464D690B4 + encrypted=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + +Set 7, vector#186: + key=BABABABABABABABABABABABABABABABA + cipher=BABABABABABABABABABABABABABABABA + plain=2D41066A050E5EAC0973D1BB72BBD393 + encrypted=BABABABABABABABABABABABABABABABA + +Set 7, vector#187: + key=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + cipher=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + plain=2CABFB419F2243BB8EA725D38060D4AF + encrypted=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + +Set 7, vector#188: + key=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + cipher=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + plain=A07FA1E0FEFD17D2B1108B6826DE4740 + encrypted=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + +Set 7, vector#189: + key=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + cipher=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + plain=7609DDCDFCDD2A5C091B8C1BFBD57144 + encrypted=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + +Set 7, vector#190: + key=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + cipher=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + plain=BB427C78D5632AA6FD76495A94DF754D + encrypted=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + +Set 7, vector#191: + key=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + cipher=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + plain=4C861892F9B1EDF74430A70BAAFFD5B7 + encrypted=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + +Set 7, vector#192: + key=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + cipher=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + plain=6EB7AAEBE45BFE33FD0C005EEF2632EF + encrypted=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + +Set 7, vector#193: + key=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + cipher=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + plain=C1FF4C55BD55D8193564F1048E0BF5CB + encrypted=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + +Set 7, vector#194: + key=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + cipher=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + plain=F561C28C48D5602FA36B93453CA0A3A4 + encrypted=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + +Set 7, vector#195: + key=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + cipher=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + plain=6B6AAD1E105A30985BEF5C35E13245B5 + encrypted=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + +Set 7, vector#196: + key=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + cipher=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + plain=C9EDD1D5DD1C483532D61F0833BD0D20 + encrypted=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + +Set 7, vector#197: + key=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + cipher=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + plain=D74EF185B72BD105EA3281E197708C07 + encrypted=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + +Set 7, vector#198: + key=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + cipher=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + plain=977F456C7E837C073F4F0C63386F88C6 + encrypted=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + +Set 7, vector#199: + key=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + cipher=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + plain=BBCF12427329D6A1A460C1C6B6D1C85E + encrypted=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + +Set 7, vector#200: + key=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + cipher=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + plain=0296A30C613BB7BB9748728111B91727 + encrypted=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + +Set 7, vector#201: + key=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + cipher=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + plain=726194D9E489798577DFEB5F36C844C5 + encrypted=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + +Set 7, vector#202: + key=CACACACACACACACACACACACACACACACA + cipher=CACACACACACACACACACACACACACACACA + plain=FBE2E0C1568F6F5A0EEC2596BD69893B + encrypted=CACACACACACACACACACACACACACACACA + +Set 7, vector#203: + key=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + cipher=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + plain=FB7BCD4B8C5EC38693E1ADC784434897 + encrypted=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + +Set 7, vector#204: + key=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + cipher=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + plain=001F6AD008F41917D2F1CC3830CDB080 + encrypted=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + +Set 7, vector#205: + key=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + cipher=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + plain=DAD26FE3BE7E503EA86A5636A8D12234 + encrypted=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + +Set 7, vector#206: + key=CECECECECECECECECECECECECECECECE + cipher=CECECECECECECECECECECECECECECECE + plain=07C19D6C6C07E3C27440FF5A1F9329A4 + encrypted=CECECECECECECECECECECECECECECECE + +Set 7, vector#207: + key=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + cipher=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + plain=4D3F661F6C85A668A1C88C30BB7BEA96 + encrypted=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + +Set 7, vector#208: + key=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + cipher=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + plain=93C6091E7075D2704272730FD24BF8AE + encrypted=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + +Set 7, vector#209: + key=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + cipher=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + plain=26C1108B66EECBD386E30D0454CC376E + encrypted=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + +Set 7, vector#210: + key=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + cipher=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + plain=1DBE46AF0F48CDF82F233BE4B9DFA781 + encrypted=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + +Set 7, vector#211: + key=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + cipher=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + plain=4DA379C74C7A5E546F2DD55AF2E771CB + encrypted=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + +Set 7, vector#212: + key=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + cipher=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + plain=D772889291FC67F3CAE6790EE9D3CFA4 + encrypted=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + +Set 7, vector#213: + key=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + cipher=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + plain=773FD3A009A9AAB52F681E0F4DC2003B + encrypted=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + +Set 7, vector#214: + key=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + cipher=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + plain=F97012F49E4A7084DC37C568D2A437E4 + encrypted=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + +Set 7, vector#215: + key=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + cipher=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + plain=48F0FC2A1C790800E66A89DDB673C8EE + encrypted=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + +Set 7, vector#216: + key=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + cipher=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + plain=DFE6470F2641EB40569E7E3F01B124F8 + encrypted=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + +Set 7, vector#217: + key=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + cipher=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + plain=2BA7D17C8EAFB24D8B74050EFF7BC22A + encrypted=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + +Set 7, vector#218: + key=DADADADADADADADADADADADADADADADA + cipher=DADADADADADADADADADADADADADADADA + plain=A2357CB16B8F18669235C992EE87FAE9 + encrypted=DADADADADADADADADADADADADADADADA + +Set 7, vector#219: + key=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + cipher=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + plain=DC55067694D56370D94417DB91BBAEC0 + encrypted=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + +Set 7, vector#220: + key=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + cipher=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + plain=1CA2C6E9B0484188A2281EA4DB44E4C4 + encrypted=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + +Set 7, vector#221: + key=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + cipher=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + plain=DDF2C3AD06D91FF226CD6F55C4F80803 + encrypted=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + +Set 7, vector#222: + key=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + cipher=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + plain=68CEE55E81A2E58623E4891B707F08F8 + encrypted=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + +Set 7, vector#223: + key=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + cipher=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + plain=8A93CC21A1162AC98A65ABA0E7D08B8E + encrypted=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + +Set 7, vector#224: + key=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + cipher=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + plain=CC6A5A2FC7EBEC35A28D718E0A3DD6BC + encrypted=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + +Set 7, vector#225: + key=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + cipher=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + plain=4C4DED7CEE2D94C40223664AC9351707 + encrypted=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + +Set 7, vector#226: + key=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + cipher=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + plain=BA70BB944BD7A9B7E470824208D4E1AE + encrypted=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + +Set 7, vector#227: + key=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + cipher=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + plain=B26CDC9AFB0354B44540B0DB63DA7D64 + encrypted=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + +Set 7, vector#228: + key=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + cipher=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + plain=C1FE619C36F0E52336A77CAEBD734F97 + encrypted=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + +Set 7, vector#229: + key=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + cipher=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + plain=2B62446AD704C27F0704E938227B985A + encrypted=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + +Set 7, vector#230: + key=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + cipher=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + plain=E87A862724FD7A8775B964B16D7C14EB + encrypted=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + +Set 7, vector#231: + key=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + cipher=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + plain=264CAAAA13100A25FE07D5CE205B9A95 + encrypted=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + +Set 7, vector#232: + key=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + cipher=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + plain=8AFF003E02F579D1BAA47D1C464FFF98 + encrypted=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + +Set 7, vector#233: + key=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + cipher=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + plain=05A121401D59CAF91B762DEFAA6B3FF0 + encrypted=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + +Set 7, vector#234: + key=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + cipher=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + plain=B69F20427DF3A0FDF2A358171E537E74 + encrypted=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + +Set 7, vector#235: + key=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + cipher=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + plain=C7A3E2912B3D8EC430B424EAC3DFCCB5 + encrypted=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + +Set 7, vector#236: + key=ECECECECECECECECECECECECECECECEC + cipher=ECECECECECECECECECECECECECECECEC + plain=CD7F28DCF88DFD5C1DC36D4FB2B7FD60 + encrypted=ECECECECECECECECECECECECECECECEC + +Set 7, vector#237: + key=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + cipher=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + plain=EE828E8843FDF36D255E0D0A486E10D0 + encrypted=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + +Set 7, vector#238: + key=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + cipher=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + plain=4749602F9AA44E50702FB0BBB46A0845 + encrypted=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + +Set 7, vector#239: + key=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + cipher=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + plain=F65149E271F3DF2A2AE9DE559E3BBE34 + encrypted=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + +Set 7, vector#240: + key=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + cipher=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + plain=D6B197332CCBB50526AEBA86605B0CCD + encrypted=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + +Set 7, vector#241: + key=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + cipher=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + plain=55F154395541D8407852CE78565D62E2 + encrypted=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + +Set 7, vector#242: + key=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + cipher=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + plain=4E9C165D29FFA1E4D35A08F7B247A6B1 + encrypted=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + +Set 7, vector#243: + key=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + cipher=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + plain=3A122739A17BE0913AC2076FEACBA31B + encrypted=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + +Set 7, vector#244: + key=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + cipher=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + plain=B6A2C64BB36929F7331A20CF108A7ACA + encrypted=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + +Set 7, vector#245: + key=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + cipher=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + plain=533B33681A2965FA26A7F4FAD44815DD + encrypted=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + +Set 7, vector#246: + key=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + cipher=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + plain=7DF9DE4284CCF961DC3280109A759EFF + encrypted=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + +Set 7, vector#247: + key=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + cipher=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + plain=F48FA3C4CDD1DE9F6AC907342A6894F0 + encrypted=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + +Set 7, vector#248: + key=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + cipher=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + plain=1CC143BB5AB0F917703F6F00B1A0DC03 + encrypted=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + +Set 7, vector#249: + key=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + cipher=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + plain=D9A80CC1EC8CA2934A1F168B6BF835C3 + encrypted=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + +Set 7, vector#250: + key=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + cipher=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + plain=3D97CD8FC1A2D9703E57E5FA737389CC + encrypted=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + +Set 7, vector#251: + key=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + cipher=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + plain=9C901D80A2ED385950F573278E847C28 + encrypted=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + +Set 7, vector#252: + key=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + cipher=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + plain=02F3BA87E6F1F8541E687DDB2A8C3C5B + encrypted=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + +Set 7, vector#253: + key=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + cipher=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + plain=02B44F90FBC97775BE6E2097712A2036 + encrypted=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + +Set 7, vector#254: + key=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + cipher=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + plain=D3E884CBAAE7DC61E1BA60F84461E6F1 + encrypted=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + +Set 7, vector#255: + key=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + cipher=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + plain=179892489FBD2DA4E73009226B5756C9 + encrypted=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + +Test vectors -- set 8 +===================== + +Set 8, vector# 0: + key=000102030405060708090A0B0C0D0E0F + cipher=00112233445566778899AABBCCDDEEFF + plain=762A5AB50929189CEFDB99434790AAD8 + encrypted=00112233445566778899AABBCCDDEEFF + +Set 8, vector# 1: + key=2BD6459F82C5B300952C49104881FF48 + cipher=EA024714AD5C4D84EA024714AD5C4D84 + plain=E99388EED41AD8058D6162B0CF4667E6 + encrypted=EA024714AD5C4D84EA024714AD5C4D84 + + + +End of test vectors diff --git a/testvectors/Rijndael-192-128.unverified.test-vectors b/testvectors/Rijndael-192-128.unverified.test-vectors new file mode 100644 index 0000000..636cb0d --- /dev/null +++ b/testvectors/Rijndael-192-128.unverified.test-vectors @@ -0,0 +1,8128 @@ +******************************************************************************** +*Project NESSIE - New European Schemes for Signature, Integrity, and Encryption* +******************************************************************************** + +Primitive Name: Rijndael +======================== +Key size: 192 bits +Block size: 128 bits + +Test vectors -- set 1 +===================== + +Set 1, vector# 0: + key=800000000000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=DE885DC87F5A92594082D02CC1E1B42C + decrypted=00000000000000000000000000000000 + Iterated 100 times=41F33CE9B93657DCCCCC616456DD98FE + Iterated 1000 times=44BC3F145B43F395140F08C1048D0E2C + +Set 1, vector# 1: + key=400000000000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=C749194F94673F9DD2AA1932849630C1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=EB14959494544D1EB5350FCBC2D8E063 + Iterated 1000 times=FF474BF8DF84B2D98190F43FC4FF2BFD + +Set 1, vector# 2: + key=200000000000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=0CEF643313912934D310297B90F56ECC + decrypted=00000000000000000000000000000000 + Iterated 100 times=3F4A3965E43D49A22CD5C5C8BC079B7E + Iterated 1000 times=6A0EC0D15BB842E0713328B28BEDDDD8 + +Set 1, vector# 3: + key=100000000000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=C4495D39D4A553B225FBA02A7B1B87E1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=3984B85F3DDB933391A65D81B4A6689E + Iterated 1000 times=9BCFA308E7837AA7A8C0E3016602BDF0 + +Set 1, vector# 4: + key=080000000000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=636D10B1A0BCAB541D680A7970ADC830 + decrypted=00000000000000000000000000000000 + Iterated 100 times=DF49BE957FC9562ABF217CB51E965B93 + Iterated 1000 times=6962E12EEA38C553063B5E55D95101C3 + +Set 1, vector# 5: + key=040000000000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=07CF045786BD6AFCC147D99E45A901A7 + decrypted=00000000000000000000000000000000 + Iterated 100 times=60E75B84443C6B1CAA9A4F67296C9F3A + Iterated 1000 times=A1103FC94BDD95DBFF3EE2618622D975 + +Set 1, vector# 6: + key=020000000000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=6A8E3F425A7599348F95398448827976 + decrypted=00000000000000000000000000000000 + Iterated 100 times=15A68C2A1EFEE1AFB5FF107614472503 + Iterated 1000 times=C6B2D0302D61B9F06944FEAC17A89A49 + +Set 1, vector# 7: + key=010000000000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=5518276836148A00D91089A20D8BFF57 + decrypted=00000000000000000000000000000000 + Iterated 100 times=C19F6F2CBE906B2206412E1CAF67856D + Iterated 1000 times=0EFAAC2B92B84FE4A884C5C5C27BFC0B + +Set 1, vector# 8: + key=008000000000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=F267E07B5E87E3BC20B969C61D4FCB06 + decrypted=00000000000000000000000000000000 + Iterated 100 times=6D3403342AD48BCE4631257A1A575013 + Iterated 1000 times=1EB997C27CF0D06D245C998AA2BAB5EE + +Set 1, vector# 9: + key=004000000000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=5A1CDE69571D401BFCD20DEBADA2212C + decrypted=00000000000000000000000000000000 + Iterated 100 times=304D419ECBECBE5DE8EB4910C14133FA + Iterated 1000 times=5B37237B78FFBCD22DBB046F8C0B7A2D + +Set 1, vector# 10: + key=002000000000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=70A9057263254701D12ADD7D74CD509E + decrypted=00000000000000000000000000000000 + Iterated 100 times=CCD66E64434B8692DD3851E03D5E5D24 + Iterated 1000 times=E5D5C235E033CD6123507C0D5513D657 + +Set 1, vector# 11: + key=001000000000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=35713A7E108031279388A33A0FE2E190 + decrypted=00000000000000000000000000000000 + Iterated 100 times=AA1DB8938B9C4C5DA741E0BB50EC210E + Iterated 1000 times=7779887FF748A79DF940CA237611331D + +Set 1, vector# 12: + key=000800000000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=E74EDE82B1254714F0C7B4B243108655 + decrypted=00000000000000000000000000000000 + Iterated 100 times=6EA9C03BF70F0F55C445362FF01D4EBF + Iterated 1000 times=C539478BAFB4AC8FEFBB8665095594C0 + +Set 1, vector# 13: + key=000400000000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=39272E3100FAA37B55B862320D1B3EB3 + decrypted=00000000000000000000000000000000 + Iterated 100 times=C8E8A6691FD493BB9BE1E17831B2DF9A + Iterated 1000 times=BD14DF8DD17AE7677CB456829171439A + +Set 1, vector# 14: + key=000200000000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=6D6E24C659FC5AEF712F77BCA19C9DD0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=0095D91A2ED8B146825D2BB7B50A1C1C + Iterated 1000 times=D846F35761C9474D6268BE9960CE4636 + +Set 1, vector# 15: + key=000100000000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=76D18212F972370D3CC2C6C372C6CF2F + decrypted=00000000000000000000000000000000 + Iterated 100 times=E9C2A161C728BB311B980EB93F79DF23 + Iterated 1000 times=417CABB1497E279AADDEF45B71E25A52 + +Set 1, vector# 16: + key=000080000000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=B21A1F0BAE39E55C7594ED570A7783EA + decrypted=00000000000000000000000000000000 + Iterated 100 times=2124A7F33EEE86C35775BAF261F2666F + Iterated 1000 times=C0DEFE2377C7049C89F88B92B0DA0902 + +Set 1, vector# 17: + key=000040000000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=77DE202111895AC48DD1C974B358B458 + decrypted=00000000000000000000000000000000 + Iterated 100 times=ABBFB8728568C1FBB37688351984581D + Iterated 1000 times=D984057F153E40AEDBDDCD7673CB5E9B + +Set 1, vector# 18: + key=000020000000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=67810B311969012AAF7B504FFAF39FD1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=FC562A3DE26F205B6800A9D7B0564A30 + Iterated 1000 times=37FACA853A7B928E0257DAC0F1180834 + +Set 1, vector# 19: + key=000010000000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=C22EA2344D3E9417A6BA07843E713AEA + decrypted=00000000000000000000000000000000 + Iterated 100 times=D664FCD04B2962858EEDC4F17294FA65 + Iterated 1000 times=BAABA7E7055C2B9A2F7731B509B2ACCB + +Set 1, vector# 20: + key=000008000000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=C79CAF4B97BEE0BD0630AB354539D653 + decrypted=00000000000000000000000000000000 + Iterated 100 times=FFDF6B4B9782211CB64597472AFE565F + Iterated 1000 times=7F92456FB2DB99E2A9B01BFE37F7E55C + +Set 1, vector# 21: + key=000004000000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=135FD1AF761D9AE23DF4AA6B86760DB4 + decrypted=00000000000000000000000000000000 + Iterated 100 times=73756431433E30411C0F5B21D8291C35 + Iterated 1000 times=6700FA90C41D5A72658F7DE1C63FB1DB + +Set 1, vector# 22: + key=000002000000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=D4659D0B06ACD4D56AB8D11A16FD83B9 + decrypted=00000000000000000000000000000000 + Iterated 100 times=81C54E331BC08EF171C2B778A332FFC6 + Iterated 1000 times=AEB7FECAEB302CB84129011F466439E2 + +Set 1, vector# 23: + key=000001000000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=F7D270028FC188E4E4F35A4AAA25D4D4 + decrypted=00000000000000000000000000000000 + Iterated 100 times=2766F477923B0099C52E51293286D09F + Iterated 1000 times=A486A2C7BCD419D34DB7F01A0FA11AB7 + +Set 1, vector# 24: + key=000000800000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=345CAE5A8C9620A9913D5473985852FF + decrypted=00000000000000000000000000000000 + Iterated 100 times=35E22AA48E27E967708A2A0140FDBA3B + Iterated 1000 times=695C857AFD949F71A43DFE3A5E0495BF + +Set 1, vector# 25: + key=000000400000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=4E8980ADDE60B0E42C0B287FEA41E729 + decrypted=00000000000000000000000000000000 + Iterated 100 times=EB100030E331858EA490D7290336EA95 + Iterated 1000 times=C86EB55564A2023E51FE400449EE01D9 + +Set 1, vector# 26: + key=000000200000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=F11B6D74E1F15155633DC39743C1A527 + decrypted=00000000000000000000000000000000 + Iterated 100 times=F208FCF16B7CA8FCE148549F920F281B + Iterated 1000 times=B490C2EF95C8FFC9E55A49FA22673FDC + +Set 1, vector# 27: + key=000000100000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=9C87916C0180064F9D3179C6F5DD8C35 + decrypted=00000000000000000000000000000000 + Iterated 100 times=B45264B813666D4A4CF371EAF2304345 + Iterated 1000 times=9081B628D3CC058AB69997404B600FE8 + +Set 1, vector# 28: + key=000000080000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=71AB186BCAEA518E461D4F7FAD230E6A + decrypted=00000000000000000000000000000000 + Iterated 100 times=3DB5BEDCCD315882457D0F0109F38EAB + Iterated 1000 times=F741D8510571D888F4C17E23C53CFB34 + +Set 1, vector# 29: + key=000000040000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=C4A31BBC3DAAF742F9141C2A5001A49C + decrypted=00000000000000000000000000000000 + Iterated 100 times=B74B094DF039B85D5E77374967F29D49 + Iterated 1000 times=D19C99065E61E63B8AA5B86F22156FA6 + +Set 1, vector# 30: + key=000000020000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=E7C47B7B1D40F182A8928C8A55671D07 + decrypted=00000000000000000000000000000000 + Iterated 100 times=D6F647F92F9915DF9453592A5543AA3B + Iterated 1000 times=D837D7ABA1E6BC39F6F2AB011A6388DC + +Set 1, vector# 31: + key=000000010000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=8E17F294B28FA373C6249538868A7EEF + decrypted=00000000000000000000000000000000 + Iterated 100 times=6D71A7BF23AB60877113F5827596461A + Iterated 1000 times=15D91A418AEAC31404880D58B70675EB + +Set 1, vector# 32: + key=000000008000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=754404096A5CBC08AF09491BE249141A + decrypted=00000000000000000000000000000000 + Iterated 100 times=3D07CFD92DD32DA4665ADC9D20D1AFEB + Iterated 1000 times=75713FBFA699E0C6E51D4B0B2C401EFF + +Set 1, vector# 33: + key=000000004000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=101CB56E55F05D86369B6D1069204F0A + decrypted=00000000000000000000000000000000 + Iterated 100 times=B8DBCE1BBF75F88E397BFF9189ACB2EC + Iterated 1000 times=0CC9D9AAA90EA2F9F4980619B777B8BC + +Set 1, vector# 34: + key=000000002000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=73F19BB6604205C6EE227B9759791E41 + decrypted=00000000000000000000000000000000 + Iterated 100 times=C8F4E724B3DD31E431A08C25AF164836 + Iterated 1000 times=30110D0A0BB54DF2DFFF616ADE9618A1 + +Set 1, vector# 35: + key=000000001000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=6270C0028F0D136C37A56B2CB64D24D6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=55D7228DCC90C792522BFE26F42FE3D4 + Iterated 1000 times=02116587B2699EE6E935B3E768C280E3 + +Set 1, vector# 36: + key=000000000800000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=A3BF7C2C38D1114A087ECF212E694346 + decrypted=00000000000000000000000000000000 + Iterated 100 times=EA0CB244C306D12915CC2BBF93108B95 + Iterated 1000 times=18928D2F0A15BAB97232F96DDF20E197 + +Set 1, vector# 37: + key=000000000400000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=49CABFF2CEF7D9F95F5EFB1F7A1A7DDE + decrypted=00000000000000000000000000000000 + Iterated 100 times=C3B3029EB4107DA76766D672D2D72385 + Iterated 1000 times=00C51CA032943A5FA61B36C306A02076 + +Set 1, vector# 38: + key=000000000200000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=EC7F8A47CC59B849469255AD49F62752 + decrypted=00000000000000000000000000000000 + Iterated 100 times=A7F38580DCF78B3C274763ACCD985CE4 + Iterated 1000 times=9F9A6E5207DEAFEB6EB56DE15AA7C48F + +Set 1, vector# 39: + key=000000000100000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=68FAE55A13EFAF9B07B3552A8A0DC9D1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=F407F9387A1B17965022BDBE532958E5 + Iterated 1000 times=E41A52955D020BD81EAE7CACFAF0033C + +Set 1, vector# 40: + key=000000000080000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=211E6B19C69FAEF481F64F24099CDA65 + decrypted=00000000000000000000000000000000 + Iterated 100 times=68AADC00D7F6A6B0BE3BA9A4FABBC9A3 + Iterated 1000 times=CD0D1C6FB13E955D75F8B9F0FC233024 + +Set 1, vector# 41: + key=000000000040000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=DBB918C75BC5732416F79FB0C8EE4C5C + decrypted=00000000000000000000000000000000 + Iterated 100 times=BD356360A6BC55D4C63FD0DA9733E916 + Iterated 1000 times=622F02ABB1721E27D849E333C6140D84 + +Set 1, vector# 42: + key=000000000020000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=98D494E5D963A6C8B92536D3EC35E3FD + decrypted=00000000000000000000000000000000 + Iterated 100 times=366A3192F5BB8AEDB0A43FE3EFABF0E0 + Iterated 1000 times=8510D5021CA747587D2C83D9D5C400F6 + +Set 1, vector# 43: + key=000000000010000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=C9A873404D403D6F074190851D67781A + decrypted=00000000000000000000000000000000 + Iterated 100 times=FA1E09F23BF12DA8432EF480DB3215D0 + Iterated 1000 times=6DCE6142A2B338B24E39F39B877E8105 + +Set 1, vector# 44: + key=000000000008000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=073AEF4A7C77D921928CB0DD9D27CAE7 + decrypted=00000000000000000000000000000000 + Iterated 100 times=04411CFCA097C12798DBC684760DDDD9 + Iterated 1000 times=CA01D740FDE8BCDEDFCCF3AE64F13D65 + +Set 1, vector# 45: + key=000000000004000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=89BDE25CEE36FDE769A10E52298CF90F + decrypted=00000000000000000000000000000000 + Iterated 100 times=9D46F2CCBB53E6F6212B07EDC5C2FA50 + Iterated 1000 times=EBFB04918A6FA6A0EA042CD4359479B6 + +Set 1, vector# 46: + key=000000000002000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=26D0842D37EAD38557C65E0A5E5F122E + decrypted=00000000000000000000000000000000 + Iterated 100 times=0B487F88A00CFDAC4A99A8F365177243 + Iterated 1000 times=ED71561C14FCF894DBE26A10945CA5FA + +Set 1, vector# 47: + key=000000000001000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=F8294BA375AF46B3F22905BBAFFAB107 + decrypted=00000000000000000000000000000000 + Iterated 100 times=80504817D4115B72E05A88C7EA3973F5 + Iterated 1000 times=E2D292A098EB6119963E0B7E617B711A + +Set 1, vector# 48: + key=000000000000800000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=2AD63EB4D0D43813B979CF72B35BDB94 + decrypted=00000000000000000000000000000000 + Iterated 100 times=AA15D7A945E14A6CCFE52284724D1387 + Iterated 1000 times=E17090C80486563A12F37A65172CA2A1 + +Set 1, vector# 49: + key=000000000000400000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=7710C171EE0F4EFA39BE4C995180181D + decrypted=00000000000000000000000000000000 + Iterated 100 times=BE3551E2D151E4D7BA8D6A5B5ADD50E9 + Iterated 1000 times=DE8BD1C771EFBC620F778C75BCAEB082 + +Set 1, vector# 50: + key=000000000000200000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=C0CB2B40DBA7BE8C0698FAE1E4B80FF8 + decrypted=00000000000000000000000000000000 + Iterated 100 times=61988491B5BD2D8C562CE64C64F408FD + Iterated 1000 times=9E8FFE34E00B11B01A3A2CF176D5BFF7 + +Set 1, vector# 51: + key=000000000000100000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=97970E505194622FD955CA1B80B784E9 + decrypted=00000000000000000000000000000000 + Iterated 100 times=3FCFEF5236841210D29F4F6DAA4E37D7 + Iterated 1000 times=567771C49F011949FA4192A197ED9692 + +Set 1, vector# 52: + key=000000000000080000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=7CB1824B29F850900DF2CAD9CF04C1CF + decrypted=00000000000000000000000000000000 + Iterated 100 times=E3E7CF7918DFC7E00D14BB523821AACA + Iterated 1000 times=3034452482065C4556D2BADD62F66AE5 + +Set 1, vector# 53: + key=000000000000040000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=FDF4F036BB988E42F2F62DE63FE19A64 + decrypted=00000000000000000000000000000000 + Iterated 100 times=BD3DEE2B86881AD03408133F11F1B57A + Iterated 1000 times=3ACB2B7480F81392BBEA59C577857D89 + +Set 1, vector# 54: + key=000000000000020000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=08908CFE2C82606B2C15DF61B75CF3E2 + decrypted=00000000000000000000000000000000 + Iterated 100 times=9F2F90EC19C01373018630E6B83DE90B + Iterated 1000 times=39EFB120F3E2E9A79DE8A145FCE0051C + +Set 1, vector# 55: + key=000000000000010000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=B3AA689EF2D07FF365ACB9ADBA2AF07A + decrypted=00000000000000000000000000000000 + Iterated 100 times=698B85BE71FFCDF68D40D58B420DDDE2 + Iterated 1000 times=14C3AF54405F0F85599B20AEFD1C7DF1 + +Set 1, vector# 56: + key=000000000000008000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=F2672CD8EAA3B98776660D0263656F5C + decrypted=00000000000000000000000000000000 + Iterated 100 times=D63C1191B6D51CDA1D6D5E2E425AD0AC + Iterated 1000 times=B6DDE2E9D8672FD1580740A8D8C2DCDE + +Set 1, vector# 57: + key=000000000000004000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=5BDEAC00E986687B9E1D94A0DA7BF452 + decrypted=00000000000000000000000000000000 + Iterated 100 times=7028A67A9681D5AE53FAC8A83B8C0F54 + Iterated 1000 times=0EAF9CA6DFD04DA0A1A972CC0A2B2638 + +Set 1, vector# 58: + key=000000000000002000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=E6D57BD66EA1627363EE0C4B711B0B21 + decrypted=00000000000000000000000000000000 + Iterated 100 times=2B3683AF6CA92BF0CA579AD74448660E + Iterated 1000 times=29AC777E929322151F8C307F80E2AFEA + +Set 1, vector# 59: + key=000000000000001000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=03730DD6ACB4AD9996A63BE7765EC06F + decrypted=00000000000000000000000000000000 + Iterated 100 times=FC097AD6E6AE617004BF73959F913526 + Iterated 1000 times=F5DC68000D272FD93870F78C12B7A519 + +Set 1, vector# 60: + key=000000000000000800000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=A470E361AA5437B2BE8586D2F78DE582 + decrypted=00000000000000000000000000000000 + Iterated 100 times=D8262D0CF5E40B7AC2DF6BE84D1D3BCE + Iterated 1000 times=C867D214E76E6A20B9A3CC8A193F6844 + +Set 1, vector# 61: + key=000000000000000400000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=7567FEEFA559911FD479670246B484E3 + decrypted=00000000000000000000000000000000 + Iterated 100 times=1F240BFAC021DA4182BD5631CC20DA68 + Iterated 1000 times=D565F2BC5799CE947849FABDD0947144 + +Set 1, vector# 62: + key=000000000000000200000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=29829DEA15A4E7A4C049045E7B106E29 + decrypted=00000000000000000000000000000000 + Iterated 100 times=1F9FDAA8350FFE2AAECF3D4702571050 + Iterated 1000 times=CFF2959BA831EE2F73F58FBFB5EDE864 + +Set 1, vector# 63: + key=000000000000000100000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=A407834C3D89D48A2CB7A152208FA4ED + decrypted=00000000000000000000000000000000 + Iterated 100 times=D1528E187510C740F5A72BBAC36CB1E7 + Iterated 1000 times=6F52860A139628100356532CB598EB95 + +Set 1, vector# 64: + key=000000000000000080000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=68F948053F78FEF0D8F9FE7EF3A89819 + decrypted=00000000000000000000000000000000 + Iterated 100 times=49410C63D9B7245B15DD2DD8B11504E9 + Iterated 1000 times=8DEF41F788444DEB067FC6D9442BA6BB + +Set 1, vector# 65: + key=000000000000000040000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=B605174CAB13AD8FE3B20DA3AE7B0234 + decrypted=00000000000000000000000000000000 + Iterated 100 times=2EB33367510645485118185A8D0E7C79 + Iterated 1000 times=67053875842652CCBB7D46ACB162BE6B + +Set 1, vector# 66: + key=000000000000000020000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=CCAB8F0AEBFF032893996D383CBFDBFA + decrypted=00000000000000000000000000000000 + Iterated 100 times=FC1826E309683923709A31C6671E5DA6 + Iterated 1000 times=B509291B2F756891AA066010B5C121E3 + +Set 1, vector# 67: + key=000000000000000010000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=AF14BB8428C9730B7DC17B6C1CBEBCC8 + decrypted=00000000000000000000000000000000 + Iterated 100 times=0B20CC45F7783173CB32D1AD46EF574A + Iterated 1000 times=C7B2BDF7817DEE7038A0C0CD6BEDB50A + +Set 1, vector# 68: + key=000000000000000008000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=5A41A21332040877EB7B89E8E80D19FE + decrypted=00000000000000000000000000000000 + Iterated 100 times=11A010E5364AA8A5DD77DE2C60C6DC67 + Iterated 1000 times=7D5E970170CB0D8E4E674188CBB301B2 + +Set 1, vector# 69: + key=000000000000000004000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=AC1BA52EFCDDE368B1596F2F0AD893A0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=C88C4533C7B7E9032EE94773E753F779 + Iterated 1000 times=43731EBED898BE4627E497B04C1115D4 + +Set 1, vector# 70: + key=000000000000000002000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=41B890E31B9045E6ECDC1BC3F2DB9BCC + decrypted=00000000000000000000000000000000 + Iterated 100 times=79B5A0AD2CFEA2FB9D8BEC8820661904 + Iterated 1000 times=D8D67933F8A919F9D7D3CB9C3A61D18B + +Set 1, vector# 71: + key=000000000000000001000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=4D54A549728E55B19A23660424A0F146 + decrypted=00000000000000000000000000000000 + Iterated 100 times=D878D3EA527709E7C4B8E0A97ED84D73 + Iterated 1000 times=363864DDE04BF24E334BF27FBA4BC702 + +Set 1, vector# 72: + key=000000000000000000800000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=A917581F41C47C7DDCFFD5285E2D6A61 + decrypted=00000000000000000000000000000000 + Iterated 100 times=1BC16362AEDE59992812F55AB10BF265 + Iterated 1000 times=A4852184FA45E051FE1194A49114B1A6 + +Set 1, vector# 73: + key=000000000000000000400000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=604DF24BA6099B93A7405A524D764FCB + decrypted=00000000000000000000000000000000 + Iterated 100 times=A8726911AB25F89604426722FC1DAA0E + Iterated 1000 times=BB7E63708B8C11291F6E2488A912BC71 + +Set 1, vector# 74: + key=000000000000000000200000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=78D9D156F28B190E232D1B7AE7FC730A + decrypted=00000000000000000000000000000000 + Iterated 100 times=1D515A56A07C8E1C7F86157BFD6F0F1E + Iterated 1000 times=1C2E37A81B4F2323EBD0CB3DE6F9C1D9 + +Set 1, vector# 75: + key=000000000000000000100000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=5A12C39E442CD7F27B3CD77F5D029582 + decrypted=00000000000000000000000000000000 + Iterated 100 times=1BD7E441E08C18743B084FC61B04D191 + Iterated 1000 times=0F545447326AF3B29CCF9D8EDCFF28CF + +Set 1, vector# 76: + key=000000000000000000080000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=FF2BF2F47CF7B0F28EE25AF95DBF790D + decrypted=00000000000000000000000000000000 + Iterated 100 times=918B812BD9985FCD4483DF06A41FDB2F + Iterated 1000 times=5FE06BE59A270189C5AB101B3B31A124 + +Set 1, vector# 77: + key=000000000000000000040000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=1863BB7D193BDA39DF090659EB8AE48B + decrypted=00000000000000000000000000000000 + Iterated 100 times=692876CA4FEC5B1F53C1C46E65D4D513 + Iterated 1000 times=D190B905782BCA02CDA6F09AF38D750E + +Set 1, vector# 78: + key=000000000000000000020000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=38178F2FB4CFCF31E87E1ABCDC023EB5 + decrypted=00000000000000000000000000000000 + Iterated 100 times=3565165FCE7794087E27129463C0CE8F + Iterated 1000 times=5E3122F29E62A3AADD00EB12E5BEFA85 + +Set 1, vector# 79: + key=000000000000000000010000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=F5B13DC690CC0D541C6BA533023DC8C9 + decrypted=00000000000000000000000000000000 + Iterated 100 times=6A8C21D173BC2B3BB7CD2725BFAD57F2 + Iterated 1000 times=7D55B118383C57797102B1F28E9B5D14 + +Set 1, vector# 80: + key=000000000000000000008000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=48EC05238D7375D126DC9D08884D4827 + decrypted=00000000000000000000000000000000 + Iterated 100 times=228BC0AFCA9FDD010D1AED2442066244 + Iterated 1000 times=6CC6AFB20D1F731697F94EC0DB9EB6A3 + +Set 1, vector# 81: + key=000000000000000000004000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=ACD0D81139691B310B92A6E377BACC87 + decrypted=00000000000000000000000000000000 + Iterated 100 times=D9094FCDC02F9C3D7247E2ED862B0BC1 + Iterated 1000 times=A0BC0AFF1BD8A6ADC1F2009BF4C50941 + +Set 1, vector# 82: + key=000000000000000000002000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=9A4AA43578B55CE9CC178F0D2E162C79 + decrypted=00000000000000000000000000000000 + Iterated 100 times=A61808F195B0C6FD715CFAEBB0B49A87 + Iterated 1000 times=7B9353D2B57FC171BC16983152288788 + +Set 1, vector# 83: + key=000000000000000000001000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=08AD94BC737DB3C87D49B9E01B720D81 + decrypted=00000000000000000000000000000000 + Iterated 100 times=4C8037A26C43FF18A0067503ED42A058 + Iterated 1000 times=E39BCA7D8DF1419A49D14DFDC25858A8 + +Set 1, vector# 84: + key=000000000000000000000800000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=3BCFB2D5D210E8332900C5991D551A2A + decrypted=00000000000000000000000000000000 + Iterated 100 times=2A8CD9B148ED772CA795107C05DCF636 + Iterated 1000 times=836CF9560156B7B298D213F381D3C962 + +Set 1, vector# 85: + key=000000000000000000000400000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=C5F0C6B9397ACB29635CE1A0DA2D8D96 + decrypted=00000000000000000000000000000000 + Iterated 100 times=EA43554F9098FC600B7A0D43B8969B66 + Iterated 1000 times=7D4161DF2E87B6E9CE50C5AAAE65C70F + +Set 1, vector# 86: + key=000000000000000000000200000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=844A29EFC693E2FA9900F87FBF5DCD5F + decrypted=00000000000000000000000000000000 + Iterated 100 times=C89321A594F616E16998AEB5C54B9312 + Iterated 1000 times=794DB42535B208EEBA7EEC9108896D4D + +Set 1, vector# 87: + key=000000000000000000000100000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=5126A1C41051FEA158BE41200E1EA59D + decrypted=00000000000000000000000000000000 + Iterated 100 times=726341746C5FC9E629FCED5DE93F6F12 + Iterated 1000 times=37CEA220CCA323946E409F5D7841FF39 + +Set 1, vector# 88: + key=000000000000000000000080000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=302123CA7B4F46D667FFFB0EB6AA7703 + decrypted=00000000000000000000000000000000 + Iterated 100 times=DCE175E0DDF0A3FB45B896D62A29770E + Iterated 1000 times=9BFF9E1A88362606FEEC44AF76CACC9E + +Set 1, vector# 89: + key=000000000000000000000040000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=A9D16BCE7DB5C024277709EE2A88D91A + decrypted=00000000000000000000000000000000 + Iterated 100 times=1219FF40C7DAF28452132A9FF6F4AECA + Iterated 1000 times=6CB5E6DFEFDC5D82CE9FCA4FA7A3EE47 + +Set 1, vector# 90: + key=000000000000000000000020000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=F013C5EC123A26CFC34B598C992A996B + decrypted=00000000000000000000000000000000 + Iterated 100 times=0E0718196F51228EED0558844F3CE482 + Iterated 1000 times=E36DCBCA226DE52FE67EACA8A5E3700E + +Set 1, vector# 91: + key=000000000000000000000010000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=E38A825CD971A1D2E56FB1DBA248F2A8 + decrypted=00000000000000000000000000000000 + Iterated 100 times=209D6DB01AE27F0769B2003BB6BAF06C + Iterated 1000 times=57A8D5EF0A67A7B20F23C5465131F7B5 + +Set 1, vector# 92: + key=000000000000000000000008000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=6E701773C0311E0BD4C5A097406D22B3 + decrypted=00000000000000000000000000000000 + Iterated 100 times=8241AB6C9CF67B7E70FD6FDCCFC7D486 + Iterated 1000 times=6DD485783575FB90728E79D1FE699BF9 + +Set 1, vector# 93: + key=000000000000000000000004000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=754262CEF0C64BE4C3E67C35ABE439F7 + decrypted=00000000000000000000000000000000 + Iterated 100 times=DCF808FB587B9F611D738B0577F25D46 + Iterated 1000 times=64278D693D4A7BFB5911239B7937A93D + +Set 1, vector# 94: + key=000000000000000000000002000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=C9C2D4C47DF7D55CFA0EE5F1FE5070F4 + decrypted=00000000000000000000000000000000 + Iterated 100 times=6A5DCABFDD38005F96B4BB5D7FCAEAF2 + Iterated 1000 times=AD9756875E5ED10167B179E478CB37E9 + +Set 1, vector# 95: + key=000000000000000000000001000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=6AB4BEA85B172573D8BD2D5F4329F13D + decrypted=00000000000000000000000000000000 + Iterated 100 times=96D4EBFC3ED6E5F9606EDE6DF6D4708F + Iterated 1000 times=3BED64582AFEA939FD315BC039ED3B29 + +Set 1, vector# 96: + key=000000000000000000000000800000000000000000000000 + plain=00000000000000000000000000000000 + cipher=11F03EF28E2CC9AE5165C587F7396C8C + decrypted=00000000000000000000000000000000 + Iterated 100 times=EB663F2FFCD934698B9D0F8EB3B631B9 + Iterated 1000 times=47770230E4B37693F9FDFB27D61259A7 + +Set 1, vector# 97: + key=000000000000000000000000400000000000000000000000 + plain=00000000000000000000000000000000 + cipher=0682F2EB1A68BAC7949922C630DD27FA + decrypted=00000000000000000000000000000000 + Iterated 100 times=0CB219DC71EA982C92D1888670BE8260 + Iterated 1000 times=B7C4618085125FBCE56D9B9EEFEABDA8 + +Set 1, vector# 98: + key=000000000000000000000000200000000000000000000000 + plain=00000000000000000000000000000000 + cipher=ABB0FEC0413D659AFE8E3DCF6BA873BB + decrypted=00000000000000000000000000000000 + Iterated 100 times=ADA085A49E2E6F085F3F4FD42FC95EE6 + Iterated 1000 times=9C4F100F2BD0CB065EE8A07317E7C8BE + +Set 1, vector# 99: + key=000000000000000000000000100000000000000000000000 + plain=00000000000000000000000000000000 + cipher=FE86A32E19F805D6569B2EFADD9C92AA + decrypted=00000000000000000000000000000000 + Iterated 100 times=DA10C1A59BBF7FFBC116583713CB628F + Iterated 1000 times=985AC6D9B750752B49FB1A2E79780546 + +Set 1, vector#100: + key=000000000000000000000000080000000000000000000000 + plain=00000000000000000000000000000000 + cipher=E434E472275D1837D3D717F2EECC88C3 + decrypted=00000000000000000000000000000000 + Iterated 100 times=8F93E0C0B83DC1B191AE3197C2CC9C00 + Iterated 1000 times=74707F741CF67EDDDBD7E3DF1CA5F16C + +Set 1, vector#101: + key=000000000000000000000000040000000000000000000000 + plain=00000000000000000000000000000000 + cipher=74E57DCD12A21D26EF8ADAFA5E60469A + decrypted=00000000000000000000000000000000 + Iterated 100 times=1FED1BD62B914102B0A462D271077F93 + Iterated 1000 times=BED3897E9AEFEB40C9101B156AE625B5 + +Set 1, vector#102: + key=000000000000000000000000020000000000000000000000 + plain=00000000000000000000000000000000 + cipher=C275429D6DAD45DDD423FA63C816A9C1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=685CE9C9EF3251F3DD7C09B766E2A54A + Iterated 1000 times=F22609F4303D87810BADABC37A7ED742 + +Set 1, vector#103: + key=000000000000000000000000010000000000000000000000 + plain=00000000000000000000000000000000 + cipher=7F6EC1A9AE729E86F7744AED4B8F4F07 + decrypted=00000000000000000000000000000000 + Iterated 100 times=DC1C858C59CAA6E65211528913D6DF3A + Iterated 1000 times=0842981F7B75FF9C68D89285D51B259F + +Set 1, vector#104: + key=000000000000000000000000008000000000000000000000 + plain=00000000000000000000000000000000 + cipher=48B5A71AB9292BD4F9E608EF102636B2 + decrypted=00000000000000000000000000000000 + Iterated 100 times=425978FC222C1C8969F47E027A7DF81E + Iterated 1000 times=4948A5D41008A3EB5C9FD76E9CC5E5BC + +Set 1, vector#105: + key=000000000000000000000000004000000000000000000000 + plain=00000000000000000000000000000000 + cipher=076FB95D5F536C78CBED3181BCCF3CF1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=0ED9E8C24C732290E87573FDD1CA9954 + Iterated 1000 times=4867C42E26AB7A0630F9E6E4DDEA7EE2 + +Set 1, vector#106: + key=000000000000000000000000002000000000000000000000 + plain=00000000000000000000000000000000 + cipher=BFA76BEA1E684FD3BF9256119EE0BC0F + decrypted=00000000000000000000000000000000 + Iterated 100 times=282CAC9E4894ED53B7A293477C9D2DCD + Iterated 1000 times=F0215ADC35B8E3333871C95F705CBB7D + +Set 1, vector#107: + key=000000000000000000000000001000000000000000000000 + plain=00000000000000000000000000000000 + cipher=7D395923D56577F3FF8670998F8C4A71 + decrypted=00000000000000000000000000000000 + Iterated 100 times=7BD0B2FF22B62A70EEA679707EF35B48 + Iterated 1000 times=608472B5F0FE2811C0994A602CC75E55 + +Set 1, vector#108: + key=000000000000000000000000000800000000000000000000 + plain=00000000000000000000000000000000 + cipher=BA02C986E529AC18A882C34BA389625F + decrypted=00000000000000000000000000000000 + Iterated 100 times=FBD57407D70F413AEC94879D08DEF96E + Iterated 1000 times=AB451D4E6238E4BE757A999AA9B291C8 + +Set 1, vector#109: + key=000000000000000000000000000400000000000000000000 + plain=00000000000000000000000000000000 + cipher=3DFCF2D882AFE75D3A191193013A84B5 + decrypted=00000000000000000000000000000000 + Iterated 100 times=50A6EF3A04A7A0109C9E532B8CC19262 + Iterated 1000 times=B487ACDDCF5B95950B3E7BF5BF3D99D9 + +Set 1, vector#110: + key=000000000000000000000000000200000000000000000000 + plain=00000000000000000000000000000000 + cipher=FAD1FDE1D0241784B63080D2C74D236C + decrypted=00000000000000000000000000000000 + Iterated 100 times=C64BCA8AD33AD54DCA0CC62B8AB4CA95 + Iterated 1000 times=7C463626610DC23AF2A989CE31CA3FA8 + +Set 1, vector#111: + key=000000000000000000000000000100000000000000000000 + plain=00000000000000000000000000000000 + cipher=7D6C80D39E41F007A14FB9CD2B2C15CD + decrypted=00000000000000000000000000000000 + Iterated 100 times=AC36DD54C9F384803A5943D2228A7A3F + Iterated 1000 times=E28B29E1C283F8A8903568C8517DE7EB + +Set 1, vector#112: + key=000000000000000000000000000080000000000000000000 + plain=00000000000000000000000000000000 + cipher=7975F401FC10637BB33EA2DB058FF6EC + decrypted=00000000000000000000000000000000 + Iterated 100 times=0650517C13263D3E6E1AD948DD270793 + Iterated 1000 times=CE24B257315BD0E82E3D9C7D2EDF02BA + +Set 1, vector#113: + key=000000000000000000000000000040000000000000000000 + plain=00000000000000000000000000000000 + cipher=657983865C55A818F02B7FCD52ED7E99 + decrypted=00000000000000000000000000000000 + Iterated 100 times=BC60BB46C1C1BCAE819EF50B09B71C5C + Iterated 1000 times=38E585D73975087ADA0DE083D6E5B429 + +Set 1, vector#114: + key=000000000000000000000000000020000000000000000000 + plain=00000000000000000000000000000000 + cipher=B32BEB1776F9827FF4C3AC9997E84B20 + decrypted=00000000000000000000000000000000 + Iterated 100 times=B13A135F15CF2D597A6772551757F0F7 + Iterated 1000 times=82AA3731CC8C584B45890B4FB74D015C + +Set 1, vector#115: + key=000000000000000000000000000010000000000000000000 + plain=00000000000000000000000000000000 + cipher=2AE2C7C374F0A41E3D46DBC3E66BB59F + decrypted=00000000000000000000000000000000 + Iterated 100 times=9A83004A501918D29DEAAFF52C21E3C8 + Iterated 1000 times=49889161CB845FE287AB7AF1E2A5432E + +Set 1, vector#116: + key=000000000000000000000000000008000000000000000000 + plain=00000000000000000000000000000000 + cipher=4D835E4ABDD4BDC6B88316A6E931A07F + decrypted=00000000000000000000000000000000 + Iterated 100 times=876AE2A98582A7536479E2F618E1A2BF + Iterated 1000 times=43E886E002665FE59513431893D0A9E2 + +Set 1, vector#117: + key=000000000000000000000000000004000000000000000000 + plain=00000000000000000000000000000000 + cipher=E07EFABFF1C353F7384EBB87B435A3F3 + decrypted=00000000000000000000000000000000 + Iterated 100 times=20ADD1D36ED49A8108A33D715BFAD874 + Iterated 1000 times=CDE4614B5A8B872629DF11388E007C9C + +Set 1, vector#118: + key=000000000000000000000000000002000000000000000000 + plain=00000000000000000000000000000000 + cipher=ED3088DC3FAF89AD87B4356FF1BB09C2 + decrypted=00000000000000000000000000000000 + Iterated 100 times=3CD5E34BF500C429E13C6C4986F4E53D + Iterated 1000 times=B0EBD790F4CA2D6C463004F0270B9948 + +Set 1, vector#119: + key=000000000000000000000000000001000000000000000000 + plain=00000000000000000000000000000000 + cipher=4324D01140C156FC898C2E32BA03FB05 + decrypted=00000000000000000000000000000000 + Iterated 100 times=FD4A74A63ED3ECF71BFDBD16A88F6FDE + Iterated 1000 times=496E1884139DAA81AF17E36D3D49E959 + +Set 1, vector#120: + key=000000000000000000000000000000800000000000000000 + plain=00000000000000000000000000000000 + cipher=BE15D016FACB5BAFBC24FA9289132166 + decrypted=00000000000000000000000000000000 + Iterated 100 times=A0064234C4BEC70D1FB573B405DF9107 + Iterated 1000 times=3568FBB04930A43D6117630AA28AB4DE + +Set 1, vector#121: + key=000000000000000000000000000000400000000000000000 + plain=00000000000000000000000000000000 + cipher=AC9B7048EDB1ACF4D97A5B0B3F50884B + decrypted=00000000000000000000000000000000 + Iterated 100 times=19E43649F1276CA06C21C28150523D05 + Iterated 1000 times=5706877BD38CF5F3D2BE1AA37DF45958 + +Set 1, vector#122: + key=000000000000000000000000000000200000000000000000 + plain=00000000000000000000000000000000 + cipher=448BECE1F86C7845DFA9A4BB2A016FB3 + decrypted=00000000000000000000000000000000 + Iterated 100 times=2A8587FF700ED8D05E0928BA744FBC76 + Iterated 1000 times=5DB12A001F5A0EC7F8ABE104F8A4F57D + +Set 1, vector#123: + key=000000000000000000000000000000100000000000000000 + plain=00000000000000000000000000000000 + cipher=10DD445E87686EB46EA9B1ABC49257F0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=C63329ACB9DEC2B1DD204F32EAE0C1DA + Iterated 1000 times=D0C42ACD79EDEEDD567048CFC3BF98CF + +Set 1, vector#124: + key=000000000000000000000000000000080000000000000000 + plain=00000000000000000000000000000000 + cipher=B7FCCF7659FA756D4B7303EEA6C07458 + decrypted=00000000000000000000000000000000 + Iterated 100 times=4E04F9C0DDB78F93B98E64A7F4B39343 + Iterated 1000 times=FD53A2E6A2CD5C0EB728B0D70DAA61FB + +Set 1, vector#125: + key=000000000000000000000000000000040000000000000000 + plain=00000000000000000000000000000000 + cipher=289117115CA3513BAA7640B1004872C2 + decrypted=00000000000000000000000000000000 + Iterated 100 times=C4435F9E53C16BC1317BEB9E5107F36B + Iterated 1000 times=8DA1E9C4BC8792B3995A0AA81747ABAD + +Set 1, vector#126: + key=000000000000000000000000000000020000000000000000 + plain=00000000000000000000000000000000 + cipher=57CB42F7EE7186051F50B93FFA7B35BF + decrypted=00000000000000000000000000000000 + Iterated 100 times=02EEEBFE46FF0DE39BFEFE24DC02E4F0 + Iterated 1000 times=181D97A3BA48E4D9F95E8DB675DA5366 + +Set 1, vector#127: + key=000000000000000000000000000000010000000000000000 + plain=00000000000000000000000000000000 + cipher=F2741BFBFB81663B9136802FB9C3126A + decrypted=00000000000000000000000000000000 + Iterated 100 times=578E4AED0C3F2C377A9739718E570A2C + Iterated 1000 times=C62A5BE5C2DE6304D00CFFE196431DE9 + +Set 1, vector#128: + key=000000000000000000000000000000008000000000000000 + plain=00000000000000000000000000000000 + cipher=E32DDDC5C7398C096E3BD535B31DB5CE + decrypted=00000000000000000000000000000000 + Iterated 100 times=69124C7ABCA1A07BC17C8846A4CF5AEA + Iterated 1000 times=B8AA33F82B96C16EE7027A88CC2620A2 + +Set 1, vector#129: + key=000000000000000000000000000000004000000000000000 + plain=00000000000000000000000000000000 + cipher=81D3C204E608AF9CC713EAEBCB72433F + decrypted=00000000000000000000000000000000 + Iterated 100 times=3CD309ABBE90F64135A8D2C33A930E83 + Iterated 1000 times=5AA1B9691789C8C0A72DBBA91B8AD13C + +Set 1, vector#130: + key=000000000000000000000000000000002000000000000000 + plain=00000000000000000000000000000000 + cipher=D4DEEF4BFC36AAA579496E6935F8F98E + decrypted=00000000000000000000000000000000 + Iterated 100 times=F4F2BFBAF7DC614410B856BBF623B5A6 + Iterated 1000 times=2726034A4F3231BF438E04DB7D276555 + +Set 1, vector#131: + key=000000000000000000000000000000001000000000000000 + plain=00000000000000000000000000000000 + cipher=C356DB082B97802B038571C392C5C8F6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=C0988FA73D53CE012ED4DB288E49A845 + Iterated 1000 times=0502C6DF10019040296ACE91BD00B2A2 + +Set 1, vector#132: + key=000000000000000000000000000000000800000000000000 + plain=00000000000000000000000000000000 + cipher=A3919ECD4861845F2527B77F06AC6A4E + decrypted=00000000000000000000000000000000 + Iterated 100 times=2AD07CFCC2864216332729D355232029 + Iterated 1000 times=A4E695277330E9BF0AA13C25E9EF156B + +Set 1, vector#133: + key=000000000000000000000000000000000400000000000000 + plain=00000000000000000000000000000000 + cipher=A53858E17A2F802A20E40D44494FFDA0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=9BC437D56AF186D9F0B11D05E825209D + Iterated 1000 times=C66D481ADC3129D8ADEE36AA5377A1FB + +Set 1, vector#134: + key=000000000000000000000000000000000200000000000000 + plain=00000000000000000000000000000000 + cipher=5D989E122B78C758921EDBEEB827F0C0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=E772D88AE1CD94EC674032EAA55960FD + Iterated 1000 times=FA4BFD3F0903D7E860D900CBCAF49EAD + +Set 1, vector#135: + key=000000000000000000000000000000000100000000000000 + plain=00000000000000000000000000000000 + cipher=4B1C0C8F9E7830CC3C4BE7BD226FA8DE + decrypted=00000000000000000000000000000000 + Iterated 100 times=B486380C3D91E30BD2BF851848982330 + Iterated 1000 times=357786197F0267414ECCF9440A75AB5B + +Set 1, vector#136: + key=000000000000000000000000000000000080000000000000 + plain=00000000000000000000000000000000 + cipher=82C40C5FD897FBCA7B899C70713573A1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=CD698C4AE41EC0A0F83EF398662CD1B3 + Iterated 1000 times=14B2C9AA477A83FC7696D6D24495E9EC + +Set 1, vector#137: + key=000000000000000000000000000000000040000000000000 + plain=00000000000000000000000000000000 + cipher=ED13EE2D45E00F75CCDB51EA8E3E36AD + decrypted=00000000000000000000000000000000 + Iterated 100 times=E168A3789F202A56586F53D1A1C06E23 + Iterated 1000 times=9307541BA9465FE4C350602B58BEF681 + +Set 1, vector#138: + key=000000000000000000000000000000000020000000000000 + plain=00000000000000000000000000000000 + cipher=F121799EEFE8432423176A3CCF6462BB + decrypted=00000000000000000000000000000000 + Iterated 100 times=64B92152247E168B1D732D55CB0D2511 + Iterated 1000 times=876C04A1350289F9DF77CA36F178D08B + +Set 1, vector#139: + key=000000000000000000000000000000000010000000000000 + plain=00000000000000000000000000000000 + cipher=4FA0C06F07997E98271DD86F7B355C50 + decrypted=00000000000000000000000000000000 + Iterated 100 times=75AA94391EEA252AEA7C9E61707BAE09 + Iterated 1000 times=549DE7A713713F7E75E3A578B75AEE98 + +Set 1, vector#140: + key=000000000000000000000000000000000008000000000000 + plain=00000000000000000000000000000000 + cipher=849EB364B4E81D058649DC5B1BF029B9 + decrypted=00000000000000000000000000000000 + Iterated 100 times=289AC1F30B3DBF14872B34A868B3ACE3 + Iterated 1000 times=7579F5E58856BA1D78B2AF6525366A3C + +Set 1, vector#141: + key=000000000000000000000000000000000004000000000000 + plain=00000000000000000000000000000000 + cipher=F48F9E0DE8DE7AD944A207809335D9B1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=FAF0ECE697C72F0AEEA30BF64AB0CFEF + Iterated 1000 times=77AE17BEF254D1DFE1FD65B0B03B2CD0 + +Set 1, vector#142: + key=000000000000000000000000000000000002000000000000 + plain=00000000000000000000000000000000 + cipher=E59E9205B5A81A4FD26DFCF308966022 + decrypted=00000000000000000000000000000000 + Iterated 100 times=D3DBDE1CE937C1DE130F4A7647F57E83 + Iterated 1000 times=65A8B2EA10040DC0D3CC159FF44DB6E0 + +Set 1, vector#143: + key=000000000000000000000000000000000001000000000000 + plain=00000000000000000000000000000000 + cipher=3A91A1BE14AAE9ED700BDF9D70018804 + decrypted=00000000000000000000000000000000 + Iterated 100 times=0BAB79CB8C5C4980CB864EFC65D32512 + Iterated 1000 times=1217672F92E3254F8EA9B969A9BA9395 + +Set 1, vector#144: + key=000000000000000000000000000000000000800000000000 + plain=00000000000000000000000000000000 + cipher=8ABAD78DCB79A48D79070E7DA89664EC + decrypted=00000000000000000000000000000000 + Iterated 100 times=19AC8905DF0AFF99880DE160D8867279 + Iterated 1000 times=848065DC58BCD7647E76EE6C42C86CCB + +Set 1, vector#145: + key=000000000000000000000000000000000000400000000000 + plain=00000000000000000000000000000000 + cipher=B68377D98AAE6044938A7457F6C649D9 + decrypted=00000000000000000000000000000000 + Iterated 100 times=47318504A22F7578D09DB6C9D903F4A6 + Iterated 1000 times=9A44A96A2D58ADDD181B18DB32FD6488 + +Set 1, vector#146: + key=000000000000000000000000000000000000200000000000 + plain=00000000000000000000000000000000 + cipher=E4E1275C42F5F1B63D662C099D6CE33D + decrypted=00000000000000000000000000000000 + Iterated 100 times=FC8C236C2DE4538C50159C63E051AE93 + Iterated 1000 times=195C1FF7AB87F292D3F41D82B1043AB9 + +Set 1, vector#147: + key=000000000000000000000000000000000000100000000000 + plain=00000000000000000000000000000000 + cipher=7DEF32A34C6BE668F17DA1BB193B06EF + decrypted=00000000000000000000000000000000 + Iterated 100 times=F11B796627B3C939F9A89EE93D45EA57 + Iterated 1000 times=654D4AF5540026E57E0A82FCC9AAABC5 + +Set 1, vector#148: + key=000000000000000000000000000000000000080000000000 + plain=00000000000000000000000000000000 + cipher=78B6000CC3D30CB3A74B68D0EDBD2B53 + decrypted=00000000000000000000000000000000 + Iterated 100 times=312FBA3E11F8666DAB46CB4300543C10 + Iterated 1000 times=CDA986F86FFFA56287188FFEB7AA31EA + +Set 1, vector#149: + key=000000000000000000000000000000000000040000000000 + plain=00000000000000000000000000000000 + cipher=0A47531DE88DD8AE5C23EAE4F7D1F2D5 + decrypted=00000000000000000000000000000000 + Iterated 100 times=269A65B182AECAFC9F549B54D11661FB + Iterated 1000 times=62B13AC5172B3067176AE47B5A667704 + +Set 1, vector#150: + key=000000000000000000000000000000000000020000000000 + plain=00000000000000000000000000000000 + cipher=667B24E8000CF68231EC484581D922E5 + decrypted=00000000000000000000000000000000 + Iterated 100 times=CA929EE6C71BA7A15A2EC509A0439355 + Iterated 1000 times=6F1ED356F970002E4F56D93E65CE2E24 + +Set 1, vector#151: + key=000000000000000000000000000000000000010000000000 + plain=00000000000000000000000000000000 + cipher=39DAA5EBD4AACAE130E9C33236C52024 + decrypted=00000000000000000000000000000000 + Iterated 100 times=55A671C7C59A974A2DE86616A2CB9ABE + Iterated 1000 times=703DDD8724E0B07A83158791983704F8 + +Set 1, vector#152: + key=000000000000000000000000000000000000008000000000 + plain=00000000000000000000000000000000 + cipher=E3C88760B3CB21360668A63E55BB45D1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=785D71D3B24FD0F4AEE1D1AAD25317D7 + Iterated 1000 times=A27582481FA3F154DF9A04DD513992AA + +Set 1, vector#153: + key=000000000000000000000000000000000000004000000000 + plain=00000000000000000000000000000000 + cipher=F131EE903C1CDB49D416866FD5D8DE51 + decrypted=00000000000000000000000000000000 + Iterated 100 times=D0FB78FFB680C68A39B44EDEBE906024 + Iterated 1000 times=4232FFF6C946844CA7421E5506157BE2 + +Set 1, vector#154: + key=000000000000000000000000000000000000002000000000 + plain=00000000000000000000000000000000 + cipher=7A1916135B0447CF4033FC13047A583A + decrypted=00000000000000000000000000000000 + Iterated 100 times=E2371669DF46F054FA8DA8A9E20AC446 + Iterated 1000 times=192E7C60FA5AC8BECEFE71506ABBE159 + +Set 1, vector#155: + key=000000000000000000000000000000000000001000000000 + plain=00000000000000000000000000000000 + cipher=F7D55FB27991143DCDFA90DDF0424FCB + decrypted=00000000000000000000000000000000 + Iterated 100 times=662B18C03752A92CC37FDE7F31320D51 + Iterated 1000 times=B13B4CCF5C43D6C38558BDF3768AA0EF + +Set 1, vector#156: + key=000000000000000000000000000000000000000800000000 + plain=00000000000000000000000000000000 + cipher=EA93E7D1CA1111DBD8F7EC111A848C0C + decrypted=00000000000000000000000000000000 + Iterated 100 times=A886352CFCAA7BAA253963F88DAB7795 + Iterated 1000 times=1601910768124AD8E5E0E3A75D9E64AB + +Set 1, vector#157: + key=000000000000000000000000000000000000000400000000 + plain=00000000000000000000000000000000 + cipher=2A689E39DFD3CBCBE221326E95888779 + decrypted=00000000000000000000000000000000 + Iterated 100 times=419DE615D13EFA3DF7C4E93171D2E917 + Iterated 1000 times=759995DC336472AB035A2D008A7DB293 + +Set 1, vector#158: + key=000000000000000000000000000000000000000200000000 + plain=00000000000000000000000000000000 + cipher=C1CE399CA762318AC2C40D1928B4C57D + decrypted=00000000000000000000000000000000 + Iterated 100 times=3DD9EC26F4C5CC57FA8BFC64BA525260 + Iterated 1000 times=EC9FC2BDC0051BB0E80C63D8B8E8F395 + +Set 1, vector#159: + key=000000000000000000000000000000000000000100000000 + plain=00000000000000000000000000000000 + cipher=D43FB6F2B2879C8BFAF0092DA2CA63ED + decrypted=00000000000000000000000000000000 + Iterated 100 times=7270AA80210A1E6AAF0C6F986E3ACD07 + Iterated 1000 times=E0F7AB2C9D90774FCCA340CCD4992A34 + +Set 1, vector#160: + key=000000000000000000000000000000000000000080000000 + plain=00000000000000000000000000000000 + cipher=224563E617158DF97650AF5D130E78A5 + decrypted=00000000000000000000000000000000 + Iterated 100 times=C207575338AF72D46E598018335AE654 + Iterated 1000 times=E7737A350C00D30E2C601FEFE0396B59 + +Set 1, vector#161: + key=000000000000000000000000000000000000000040000000 + plain=00000000000000000000000000000000 + cipher=6562FDF6833B7C4F7484AE6EBCC243DD + decrypted=00000000000000000000000000000000 + Iterated 100 times=CE7C44401606017DD39A42CF06DC7981 + Iterated 1000 times=C7263F4B0ACB8399329322F70021E56F + +Set 1, vector#162: + key=000000000000000000000000000000000000000020000000 + plain=00000000000000000000000000000000 + cipher=93D58BA7BED22615D661D002885A7457 + decrypted=00000000000000000000000000000000 + Iterated 100 times=6BBB72D41E00C3D7A76CF52D1519022F + Iterated 1000 times=5D3A451189A3E8A34593742CE9B9435A + +Set 1, vector#163: + key=000000000000000000000000000000000000000010000000 + plain=00000000000000000000000000000000 + cipher=9A0EF559003AD9E52D3E09ED3C1D3320 + decrypted=00000000000000000000000000000000 + Iterated 100 times=0C4021073EA24D57B2EA9CA26E5D9D63 + Iterated 1000 times=AE711922013AD98E52403AEB738B440D + +Set 1, vector#164: + key=000000000000000000000000000000000000000008000000 + plain=00000000000000000000000000000000 + cipher=96BAF5A7DC6F3DD27EB4C717A85D261C + decrypted=00000000000000000000000000000000 + Iterated 100 times=A9F57A30E8806883F9E9389ED0C0A703 + Iterated 1000 times=1D115A5ADD7BC11B32B3399E7C0B1526 + +Set 1, vector#165: + key=000000000000000000000000000000000000000004000000 + plain=00000000000000000000000000000000 + cipher=B8762E06884900E8452293190E19CCDB + decrypted=00000000000000000000000000000000 + Iterated 100 times=8A5E992C5DD667CD74F296D9AF7705C9 + Iterated 1000 times=776FA512EEB7EA305F72D6CC3766A826 + +Set 1, vector#166: + key=000000000000000000000000000000000000000002000000 + plain=00000000000000000000000000000000 + cipher=785416A22BD63CBABF4B1789355197D3 + decrypted=00000000000000000000000000000000 + Iterated 100 times=7732F6C5D8087D623DD9499B465C5650 + Iterated 1000 times=52CC2079D734AA3F3683F5BE24FA7B62 + +Set 1, vector#167: + key=000000000000000000000000000000000000000001000000 + plain=00000000000000000000000000000000 + cipher=A0D20CE1489BAA69A3612DCE90F7ABF6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5E4A75D6D4A0B0754AB45D4A5460532F + Iterated 1000 times=325DBC0F8DC6F79498E0AE1C1A2E0E78 + +Set 1, vector#168: + key=000000000000000000000000000000000000000000800000 + plain=00000000000000000000000000000000 + cipher=700244E93DC94230CC607FFBA0E48F32 + decrypted=00000000000000000000000000000000 + Iterated 100 times=3B93D6ECAFFC1ABA69CD6A23F0BD0FF4 + Iterated 1000 times=01E0AC02A7D23A18E19CCBE6444E65E0 + +Set 1, vector#169: + key=000000000000000000000000000000000000000000400000 + plain=00000000000000000000000000000000 + cipher=85329E476829F872A2B4A7E59F91FF2D + decrypted=00000000000000000000000000000000 + Iterated 100 times=260B3FE1D319128AB289F278BBC4A1E2 + Iterated 1000 times=5DB56A9FE893C6AA57D448159988C8AA + +Set 1, vector#170: + key=000000000000000000000000000000000000000000200000 + plain=00000000000000000000000000000000 + cipher=E4219B4935D988DB719B8B8B2B53D247 + decrypted=00000000000000000000000000000000 + Iterated 100 times=4998A846D92E19E67B4234C3918870E7 + Iterated 1000 times=C2EC4D8E7827A210606B8B381CDA7FBD + +Set 1, vector#171: + key=000000000000000000000000000000000000000000100000 + plain=00000000000000000000000000000000 + cipher=6ACDD04FD13D4DB4409FE8DD13FD737B + decrypted=00000000000000000000000000000000 + Iterated 100 times=51FE20DE01FADD16F1FB99FAD1869AB2 + Iterated 1000 times=56D6AD9DDA088DAF18F9DCF807D1DEFA + +Set 1, vector#172: + key=000000000000000000000000000000000000000000080000 + plain=00000000000000000000000000000000 + cipher=9EB7A670AB59E15BE582378701C1EC14 + decrypted=00000000000000000000000000000000 + Iterated 100 times=58EFC4BF98A20CEC0F74FAAB9DB38D9C + Iterated 1000 times=2911333E0D2B21D7CF83D1C7D04DB2B8 + +Set 1, vector#173: + key=000000000000000000000000000000000000000000040000 + plain=00000000000000000000000000000000 + cipher=29DF2D6935FE657763BC7A9F22D3D492 + decrypted=00000000000000000000000000000000 + Iterated 100 times=F1F61BCBCA48BFD4FBBDBEC6338AF714 + Iterated 1000 times=2F745736182063DB87D5D88B526BB92B + +Set 1, vector#174: + key=000000000000000000000000000000000000000000020000 + plain=00000000000000000000000000000000 + cipher=99303359D4A13AFDBE6C784028CE533A + decrypted=00000000000000000000000000000000 + Iterated 100 times=9015561227F1FB9C3307B959F557F5C7 + Iterated 1000 times=CC0875B735599D78C42EDE1435D496BE + +Set 1, vector#175: + key=000000000000000000000000000000000000000000010000 + plain=00000000000000000000000000000000 + cipher=FF5C70A6334545F33B9DBF7BEA0417CA + decrypted=00000000000000000000000000000000 + Iterated 100 times=8722D13E0C864C0A8E0D7EC40DC74ED4 + Iterated 1000 times=EFD082F591F55597C2E47CBB0E259FB5 + +Set 1, vector#176: + key=000000000000000000000000000000000000000000008000 + plain=00000000000000000000000000000000 + cipher=289F58A17E4C50EDA4269EFB3DF55815 + decrypted=00000000000000000000000000000000 + Iterated 100 times=AD1BDEF905ADD81029A111CD5181D3C2 + Iterated 1000 times=1E40966430CA26E80310CE0DD899E5B0 + +Set 1, vector#177: + key=000000000000000000000000000000000000000000004000 + plain=00000000000000000000000000000000 + cipher=EA35DCB416E9E1C2861D1682F062B5EB + decrypted=00000000000000000000000000000000 + Iterated 100 times=A020DD8AC4B4B83B5463C4BAF715DA39 + Iterated 1000 times=89229CD19CEE2EEEE02B2D2E3C4F44B4 + +Set 1, vector#178: + key=000000000000000000000000000000000000000000002000 + plain=00000000000000000000000000000000 + cipher=3A47BF354BE775383C50B0C0A83E3A58 + decrypted=00000000000000000000000000000000 + Iterated 100 times=208E523C6DB63E7305ED2ED919A6276B + Iterated 1000 times=FE690B28A121E998BC49FA3DF8A7A9EC + +Set 1, vector#179: + key=000000000000000000000000000000000000000000001000 + plain=00000000000000000000000000000000 + cipher=BF6C1DC069FB95D05D43B01D8206D66B + decrypted=00000000000000000000000000000000 + Iterated 100 times=EF7DD03EEAAE9692416CC778DD119C9F + Iterated 1000 times=01CC84BA03371D23B5A22FD6DFA8336C + +Set 1, vector#180: + key=000000000000000000000000000000000000000000000800 + plain=00000000000000000000000000000000 + cipher=046D1D580D5898DA6595F32FD1F0C33D + decrypted=00000000000000000000000000000000 + Iterated 100 times=FF75FD072C12DF6016AABE1893D965CA + Iterated 1000 times=A56C860BD582FBE6BCCCA77B654BAC29 + +Set 1, vector#181: + key=000000000000000000000000000000000000000000000400 + plain=00000000000000000000000000000000 + cipher=5F57803B7B82A110F7E9855D6A546082 + decrypted=00000000000000000000000000000000 + Iterated 100 times=B1EE829D7FD3E3E64CA445659A7829F6 + Iterated 1000 times=F4BE7F64AED4A80DA7F5B3EBC62A3EB6 + +Set 1, vector#182: + key=000000000000000000000000000000000000000000000200 + plain=00000000000000000000000000000000 + cipher=25336ECF34E7BE97862CDFF715FF05A8 + decrypted=00000000000000000000000000000000 + Iterated 100 times=CDA12E6FD296A88AD9B7E396D36FAFC8 + Iterated 1000 times=EFE9161E892AA057519E018F762C57DF + +Set 1, vector#183: + key=000000000000000000000000000000000000000000000100 + plain=00000000000000000000000000000000 + cipher=ACBAA2A943D8078022D693890E8C4FEF + decrypted=00000000000000000000000000000000 + Iterated 100 times=5463528162BC4FF4D5691C85A55763F2 + Iterated 1000 times=A558EBAF441305E1ABF890F866B1814D + +Set 1, vector#184: + key=000000000000000000000000000000000000000000000080 + plain=00000000000000000000000000000000 + cipher=3947597879F6B58E4E2F0DF825A83A38 + decrypted=00000000000000000000000000000000 + Iterated 100 times=9B0E6EE82D90447900E889CC8A43AC7E + Iterated 1000 times=8050B53537E53B474C04B2EC7B2C5AA6 + +Set 1, vector#185: + key=000000000000000000000000000000000000000000000040 + plain=00000000000000000000000000000000 + cipher=4EB8CC3335496130655BF3CA570A4FC0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=33307832DB67D61DD647EB750F7035C5 + Iterated 1000 times=F8EFAE53E65CCFD53E0051412F76ECEE + +Set 1, vector#186: + key=000000000000000000000000000000000000000000000020 + plain=00000000000000000000000000000000 + cipher=BBDA7769AD1FDA425E18332D97868824 + decrypted=00000000000000000000000000000000 + Iterated 100 times=8C6862BC6C9BAAB52DA43D54D2CDDDA6 + Iterated 1000 times=56505D0D503DDF637076D53DB1139BCC + +Set 1, vector#187: + key=000000000000000000000000000000000000000000000010 + plain=00000000000000000000000000000000 + cipher=5E7532D22DDB0829A29C868198397154 + decrypted=00000000000000000000000000000000 + Iterated 100 times=CCFFC89A09D9A5468A651F00BD9C5366 + Iterated 1000 times=5E2E0A8A84813746254D58B52EE7A0F4 + +Set 1, vector#188: + key=000000000000000000000000000000000000000000000008 + plain=00000000000000000000000000000000 + cipher=E66DA67B630AB7AE3E682855E1A1698E + decrypted=00000000000000000000000000000000 + Iterated 100 times=0608509BABF8EA086F9892BEFDF59A12 + Iterated 1000 times=D0CAFFBA858FC0145624DABFFDCB9922 + +Set 1, vector#189: + key=000000000000000000000000000000000000000000000004 + plain=00000000000000000000000000000000 + cipher=4D93800F671B48559A64D1EA030A590A + decrypted=00000000000000000000000000000000 + Iterated 100 times=E9550523D1390D5105513532D3F8B0AB + Iterated 1000 times=5A070035446FCD92E57C2E8F47A9D9B0 + +Set 1, vector#190: + key=000000000000000000000000000000000000000000000002 + plain=00000000000000000000000000000000 + cipher=F33159FCC7D9AE30C062CD3B322AC764 + decrypted=00000000000000000000000000000000 + Iterated 100 times=65F5DC36555BF95246EFE32C27423874 + Iterated 1000 times=37ED954526F76385074F7CBC2182C773 + +Set 1, vector#191: + key=000000000000000000000000000000000000000000000001 + plain=00000000000000000000000000000000 + cipher=8BAE4EFB70D33A9792EEA9BE70889D72 + decrypted=00000000000000000000000000000000 + Iterated 100 times=1447379A65E71DD1E7DDA7488EDBBDB7 + Iterated 1000 times=27B5E1D5474BF2BAE43C6E79903BF7FD + +Test vectors -- set 2 +===================== + +Set 2, vector# 0: + key=000000000000000000000000000000000000000000000000 + plain=80000000000000000000000000000000 + cipher=6CD02513E8D4DC986B4AFE087A60BD0C + decrypted=80000000000000000000000000000000 + Iterated 100 times=768A3191FEAF4B0F0CC198BA98347710 + Iterated 1000 times=62309634FB2DEC53ECF64C8E3ED09DB6 + +Set 2, vector# 1: + key=000000000000000000000000000000000000000000000000 + plain=40000000000000000000000000000000 + cipher=423D2772A0CA56DAABB48D2129062987 + decrypted=40000000000000000000000000000000 + Iterated 100 times=EFF28FDD06CBB02F5EC8BA4266828D5C + Iterated 1000 times=BCD91A1733A1F60DFABA6C1F4B9E2843 + +Set 2, vector# 2: + key=000000000000000000000000000000000000000000000000 + plain=20000000000000000000000000000000 + cipher=1021F2A8DA70EB2219DC16804445FF98 + decrypted=20000000000000000000000000000000 + Iterated 100 times=1DFD82216224743154894409FA52C626 + Iterated 1000 times=A8633D8351ED22B227CE1A239AF1DF4C + +Set 2, vector# 3: + key=000000000000000000000000000000000000000000000000 + plain=10000000000000000000000000000000 + cipher=C636E35B402577F96974D8804295EBB8 + decrypted=10000000000000000000000000000000 + Iterated 100 times=96A47C2543D0F62762ACF0848071AC5E + Iterated 1000 times=1FBB7F2B4333448EBA258600C134F9B3 + +Set 2, vector# 4: + key=000000000000000000000000000000000000000000000000 + plain=08000000000000000000000000000000 + cipher=1566D2E57E8393C19E29F892EA28A9A7 + decrypted=08000000000000000000000000000000 + Iterated 100 times=4A9A260ADD87A3C259BA9CF96CEC6F65 + Iterated 1000 times=075536E4AC00C602525572231E627B25 + +Set 2, vector# 5: + key=000000000000000000000000000000000000000000000000 + plain=04000000000000000000000000000000 + cipher=883C878FED70B36CC09D040F9619DD19 + decrypted=04000000000000000000000000000000 + Iterated 100 times=26ADF738ED45D5DCA7623DD81A795900 + Iterated 1000 times=8FE48CA048E1C1E1F6F9D7405022DE37 + +Set 2, vector# 6: + key=000000000000000000000000000000000000000000000000 + plain=02000000000000000000000000000000 + cipher=06734593A974965790E715594FC34AA9 + decrypted=02000000000000000000000000000000 + Iterated 100 times=5C0D602BB5BDE66E972C382BCAACF141 + Iterated 1000 times=FFEE1B384BEF382CBBAC40032E4798AE + +Set 2, vector# 7: + key=000000000000000000000000000000000000000000000000 + plain=01000000000000000000000000000000 + cipher=F19B389948D9A45534E5BD36C984134A + decrypted=01000000000000000000000000000000 + Iterated 100 times=D15B87143EF9D2A9632FC1083D27DC92 + Iterated 1000 times=A38A7F64A65F0265BE555A448E77C7D9 + +Set 2, vector# 8: + key=000000000000000000000000000000000000000000000000 + plain=00800000000000000000000000000000 + cipher=D8410DFC14FA6D175EC968EA8CAC514C + decrypted=00800000000000000000000000000000 + Iterated 100 times=73993815677C3520D37408AFDD08B57C + Iterated 1000 times=7342EFB32F814250A4559F785FC20A3D + +Set 2, vector# 9: + key=000000000000000000000000000000000000000000000000 + plain=00400000000000000000000000000000 + cipher=7E6C6EBB4029A177CF7B2FDD9AC6BB7A + decrypted=00400000000000000000000000000000 + Iterated 100 times=CFB9390155E9E7371B26D4F34E389ED6 + Iterated 1000 times=45389E3830ABAE2BF34A849F562BAF3E + +Set 2, vector# 10: + key=000000000000000000000000000000000000000000000000 + plain=00200000000000000000000000000000 + cipher=4B51DD4850DC0A6C3A46D924003D2C27 + decrypted=00200000000000000000000000000000 + Iterated 100 times=6C3F7CB51ECBB73C470EB12555079E16 + Iterated 1000 times=89D239EA68093D754903436DA4F158D6 + +Set 2, vector# 11: + key=000000000000000000000000000000000000000000000000 + plain=00100000000000000000000000000000 + cipher=2E510A9D917B15BE32A192B12A668F23 + decrypted=00100000000000000000000000000000 + Iterated 100 times=3645451FCDB8B3BA9A9736DABB475703 + Iterated 1000 times=E0BF05DC0912CE8511133EF92A2E9515 + +Set 2, vector# 12: + key=000000000000000000000000000000000000000000000000 + plain=00080000000000000000000000000000 + cipher=88F6F79962B0FB77FEA8E7C632D3108E + decrypted=00080000000000000000000000000000 + Iterated 100 times=08091DA1A54904A069E8F6808E4900D3 + Iterated 1000 times=1BCB8F9B389864F00816902370A553E7 + +Set 2, vector# 13: + key=000000000000000000000000000000000000000000000000 + plain=00040000000000000000000000000000 + cipher=A3A35AB1D88DAF07B52794A0F065383A + decrypted=00040000000000000000000000000000 + Iterated 100 times=B7A537BEB29CC18120A68B64E7DCDA37 + Iterated 1000 times=801358F1A1EC5D49B49CEC35C4F5CE0C + +Set 2, vector# 14: + key=000000000000000000000000000000000000000000000000 + plain=00020000000000000000000000000000 + cipher=DC6CC878433E2B3BB193049A4ECBFC53 + decrypted=00020000000000000000000000000000 + Iterated 100 times=79EFF0CF517341E38CE79E9CC6AEFFB5 + Iterated 1000 times=F7B8049196B643C1F9D4CF70795469C3 + +Set 2, vector# 15: + key=000000000000000000000000000000000000000000000000 + plain=00010000000000000000000000000000 + cipher=EFCD3763EB7B1A415938248A9A5B4FD5 + decrypted=00010000000000000000000000000000 + Iterated 100 times=88713AFC17093DA5960BDF88FB25A9EA + Iterated 1000 times=87CE0065A8DDB8382E13B09484C6DAD3 + +Set 2, vector# 16: + key=000000000000000000000000000000000000000000000000 + plain=00008000000000000000000000000000 + cipher=AB7E9FB9A66DBE5BB44854F07D9015EE + decrypted=00008000000000000000000000000000 + Iterated 100 times=1F217408BF51C8660C117EAC44BC9F19 + Iterated 1000 times=B63C5F20E208BCE41BA13EA42222DC37 + +Set 2, vector# 17: + key=000000000000000000000000000000000000000000000000 + plain=00004000000000000000000000000000 + cipher=8B8E9D3365F8F6743ECF7E33E99255A4 + decrypted=00004000000000000000000000000000 + Iterated 100 times=B5F22CB25F4F58A80B9D4D36F5DD908E + Iterated 1000 times=F5853BA778D4B1EAD9830FC19122542C + +Set 2, vector# 18: + key=000000000000000000000000000000000000000000000000 + plain=00002000000000000000000000000000 + cipher=54D37B4F176FF3D8F6AFC866066D8572 + decrypted=00002000000000000000000000000000 + Iterated 100 times=E7B54892D3826FC083FDBC99DC626E07 + Iterated 1000 times=FEDEAB64C00BEAA7AE881131BA4BDC4B + +Set 2, vector# 19: + key=000000000000000000000000000000000000000000000000 + plain=00001000000000000000000000000000 + cipher=E83310889480FBF3C00342E3126D0D02 + decrypted=00001000000000000000000000000000 + Iterated 100 times=1ECB3D24155ABA74D6C4C406A9F658ED + Iterated 1000 times=90D94A63D8356A23BF34C82CA1E66518 + +Set 2, vector# 20: + key=000000000000000000000000000000000000000000000000 + plain=00000800000000000000000000000000 + cipher=D321AB2511F92F098174AA2DE6E85DA2 + decrypted=00000800000000000000000000000000 + Iterated 100 times=60904823D46F79F84268F15B6A1AFE2E + Iterated 1000 times=8C4C3A1C11726528E45B979C52905753 + +Set 2, vector# 21: + key=000000000000000000000000000000000000000000000000 + plain=00000400000000000000000000000000 + cipher=D8E3F40B1112D5149D58C481DFA9983F + decrypted=00000400000000000000000000000000 + Iterated 100 times=45704C326384275FCFD3B698629BC51B + Iterated 1000 times=339A2DE1FD1F974FC97296DB0A5ACBEC + +Set 2, vector# 22: + key=000000000000000000000000000000000000000000000000 + plain=00000200000000000000000000000000 + cipher=2454C4E0806639DDF19854D6C68054AD + decrypted=00000200000000000000000000000000 + Iterated 100 times=8164C7ED87AFAFE5DA1BFA6D25A79FEC + Iterated 1000 times=A21E7FD23B11F6943F06183DF4632C7E + +Set 2, vector# 23: + key=000000000000000000000000000000000000000000000000 + plain=00000100000000000000000000000000 + cipher=A5506D410F7CA32F3955DD79D9D09418 + decrypted=00000100000000000000000000000000 + Iterated 100 times=2439B409A14A346A3C98133B78696094 + Iterated 1000 times=8C15BABCC6CB72783367C0E05E449520 + +Set 2, vector# 24: + key=000000000000000000000000000000000000000000000000 + plain=00000080000000000000000000000000 + cipher=7908EE40677699568A7DC1AA317C7E4E + decrypted=00000080000000000000000000000000 + Iterated 100 times=F9BE3BAE018BBB01B3EF8A08E0E68B0A + Iterated 1000 times=E84C3CDDB1334C3C6A963E12CBCEEA0D + +Set 2, vector# 25: + key=000000000000000000000000000000000000000000000000 + plain=00000040000000000000000000000000 + cipher=B4B7B29DD43B2F5CF765E25192273982 + decrypted=00000040000000000000000000000000 + Iterated 100 times=D93C19E7ACB04D1C64295FD402FCD401 + Iterated 1000 times=727A214F17942774BBC260FEC620EA42 + +Set 2, vector# 26: + key=000000000000000000000000000000000000000000000000 + plain=00000020000000000000000000000000 + cipher=92AFE9668159BEFFE2A86F8503260164 + decrypted=00000020000000000000000000000000 + Iterated 100 times=146183BAABADFA6193B60D3590FF44B1 + Iterated 1000 times=C524B9B7CAEF53E04757E04950A6B91C + +Set 2, vector# 27: + key=000000000000000000000000000000000000000000000000 + plain=00000010000000000000000000000000 + cipher=5C36A232FBA6D187A84657AD4028B18F + decrypted=00000010000000000000000000000000 + Iterated 100 times=5D802D933519E62FE59C114F9160F16F + Iterated 1000 times=77449457A08CA67FE4BDC25745A9C0AE + +Set 2, vector# 28: + key=000000000000000000000000000000000000000000000000 + plain=00000008000000000000000000000000 + cipher=A2E994DFAB3A798DF8F54F6DA87E58E2 + decrypted=00000008000000000000000000000000 + Iterated 100 times=2DAFAD130B9585BDB726347AB896B8D1 + Iterated 1000 times=AF9E5F459A619D18B7C5B1BE70DE309B + +Set 2, vector# 29: + key=000000000000000000000000000000000000000000000000 + plain=00000004000000000000000000000000 + cipher=6CDAB10A72ADF77D71D0765BAAE95631 + decrypted=00000004000000000000000000000000 + Iterated 100 times=25977F615BE852B389E23E2699D6D3E4 + Iterated 1000 times=CB00EC790079F9D2F5A8A3F48E8177CD + +Set 2, vector# 30: + key=000000000000000000000000000000000000000000000000 + plain=00000002000000000000000000000000 + cipher=9FE3C801BCAAF7BB800F2E6BF3278E21 + decrypted=00000002000000000000000000000000 + Iterated 100 times=67EBF96673643BEADBCDC492E3710704 + Iterated 1000 times=FA38B701326E9E762156EBAC7FEF787B + +Set 2, vector# 31: + key=000000000000000000000000000000000000000000000000 + plain=00000001000000000000000000000000 + cipher=B459D90D9A6C392E5493BC91CF5A0863 + decrypted=00000001000000000000000000000000 + Iterated 100 times=195781FECCF46B2905A2983A183394AA + Iterated 1000 times=FCBF4548599A7DBC11C7941DA2E304AF + +Set 2, vector# 32: + key=000000000000000000000000000000000000000000000000 + plain=00000000800000000000000000000000 + cipher=0518A9FA5007F6787E0FB4E5AC27D758 + decrypted=00000000800000000000000000000000 + Iterated 100 times=B8D148D484A8BBD906A734D17C748644 + Iterated 1000 times=006270F1DFEC0C44B2D094728A37D531 + +Set 2, vector# 33: + key=000000000000000000000000000000000000000000000000 + plain=00000000400000000000000000000000 + cipher=BED9795415D28599700ED7952384A963 + decrypted=00000000400000000000000000000000 + Iterated 100 times=FA50254E8EEF2CEAA4AF7B5DA8438C35 + Iterated 1000 times=57F367D321E67A2398EE56767B315159 + +Set 2, vector# 34: + key=000000000000000000000000000000000000000000000000 + plain=00000000200000000000000000000000 + cipher=F0140421173D60251EF6CAB0229B1B50 + decrypted=00000000200000000000000000000000 + Iterated 100 times=BA960772F059DCF9110882342881C905 + Iterated 1000 times=8655BBCF08DE10D68CE5C19E3536F5B0 + +Set 2, vector# 35: + key=000000000000000000000000000000000000000000000000 + plain=00000000100000000000000000000000 + cipher=460EB4652B3F6779EA28CB11B37529ED + decrypted=00000000100000000000000000000000 + Iterated 100 times=17167469C149F4301EFEE210F04BAD21 + Iterated 1000 times=5CF7BC4F90319EA217497B1C6D7CAF51 + +Set 2, vector# 36: + key=000000000000000000000000000000000000000000000000 + plain=00000000080000000000000000000000 + cipher=C4283D351C960A6AC13CD19CCF03AE38 + decrypted=00000000080000000000000000000000 + Iterated 100 times=28724914DE18EDCFD76FDD93D34D9FF8 + Iterated 1000 times=4E81EB5C7F88EF1FF2711F722C0EC4CA + +Set 2, vector# 37: + key=000000000000000000000000000000000000000000000000 + plain=00000000040000000000000000000000 + cipher=6815A10047B2C834A798EBDCC6786C75 + decrypted=00000000040000000000000000000000 + Iterated 100 times=238AE75866A263C4FCDAFBF9D0C656B4 + Iterated 1000 times=CC4345BB2926A530CAD42EEE8CC07547 + +Set 2, vector# 38: + key=000000000000000000000000000000000000000000000000 + plain=00000000020000000000000000000000 + cipher=99BA19F0CDD5990D0386B32CE56C9C4C + decrypted=00000000020000000000000000000000 + Iterated 100 times=9D1D09E203D5128D4008EF80CA783150 + Iterated 1000 times=1D631107DCE63616FDC378BF6CDBA623 + +Set 2, vector# 39: + key=000000000000000000000000000000000000000000000000 + plain=00000000010000000000000000000000 + cipher=DE76F62C61E07915162DA13E79679DEC + decrypted=00000000010000000000000000000000 + Iterated 100 times=A84595B947B961C03AAADE9E847ABCB9 + Iterated 1000 times=24A2E3E8EAF83DFAB10BF90F5044AF86 + +Set 2, vector# 40: + key=000000000000000000000000000000000000000000000000 + plain=00000000008000000000000000000000 + cipher=DD0325D6854803D06D1D2277D5FB8D67 + decrypted=00000000008000000000000000000000 + Iterated 100 times=45ECDA14DCB6A37CCEA666CF2BE88DE8 + Iterated 1000 times=7A894AA211305A419FD7315F0A35EC9C + +Set 2, vector# 41: + key=000000000000000000000000000000000000000000000000 + plain=00000000004000000000000000000000 + cipher=580B71A41DE37D6FAC83CCB0B3BB1C97 + decrypted=00000000004000000000000000000000 + Iterated 100 times=0C24C583FCE9BCCC5CDEF5F3DC80613A + Iterated 1000 times=31127F36D35D6CECA0EC73D194F600E3 + +Set 2, vector# 42: + key=000000000000000000000000000000000000000000000000 + plain=00000000002000000000000000000000 + cipher=E9B1AB470A1B02EF0FF5E6754A092C96 + decrypted=00000000002000000000000000000000 + Iterated 100 times=101190F3AB7318EF51C6808CD537ADCB + Iterated 1000 times=53591F93FD31BF1DC57023D233BC2EF6 + +Set 2, vector# 43: + key=000000000000000000000000000000000000000000000000 + plain=00000000001000000000000000000000 + cipher=8590620F5AF5993B7410282F4126BC1F + decrypted=00000000001000000000000000000000 + Iterated 100 times=F8D6D2D02D99DAA1831321736FC07DD0 + Iterated 1000 times=319C12F00B9082B845DE774C215E12F7 + +Set 2, vector# 44: + key=000000000000000000000000000000000000000000000000 + plain=00000000000800000000000000000000 + cipher=8D4914D2F1B22B2E268E66E532D29D7C + decrypted=00000000000800000000000000000000 + Iterated 100 times=ADD6FB226F2FED3A18F0EE2177804C72 + Iterated 1000 times=A8E2D558A6FDCCE5EC3AA17B398C2CEB + +Set 2, vector# 45: + key=000000000000000000000000000000000000000000000000 + plain=00000000000400000000000000000000 + cipher=FD826CE48E62C5E30867044B86BA4B56 + decrypted=00000000000400000000000000000000 + Iterated 100 times=B98B248BADA8CB2030B266531A7229D4 + Iterated 1000 times=634EC2721721102AD00CF1CAEF6C6EEA + +Set 2, vector# 46: + key=000000000000000000000000000000000000000000000000 + plain=00000000000200000000000000000000 + cipher=100E7B831C9F35FA1271F5F1316C6FCF + decrypted=00000000000200000000000000000000 + Iterated 100 times=19D754C695DB669A17337E3EFF04AA0D + Iterated 1000 times=EF0EB9327C38A609D31CC7478FE248A0 + +Set 2, vector# 47: + key=000000000000000000000000000000000000000000000000 + plain=00000000000100000000000000000000 + cipher=0A2DD0C17F68B996AA96C007003D0B31 + decrypted=00000000000100000000000000000000 + Iterated 100 times=4E8A0B97F3EA264A455FA24CD45652D7 + Iterated 1000 times=E1BC82950FDD08CC9F02340A50645064 + +Set 2, vector# 48: + key=000000000000000000000000000000000000000000000000 + plain=00000000000080000000000000000000 + cipher=C95F68C57E06B0A2E1F623C83C5D80BF + decrypted=00000000000080000000000000000000 + Iterated 100 times=3BE884BE04316828D6AA791B653B23A8 + Iterated 1000 times=9903556259C994E3E5D1E597AE3FFE05 + +Set 2, vector# 49: + key=000000000000000000000000000000000000000000000000 + plain=00000000000040000000000000000000 + cipher=571CAFC92C7C8A5EC54C0741E186905C + decrypted=00000000000040000000000000000000 + Iterated 100 times=0C058910CE279D0775C08AC35719C731 + Iterated 1000 times=3680606291AFA6312B406990D7167FAB + +Set 2, vector# 50: + key=000000000000000000000000000000000000000000000000 + plain=00000000000020000000000000000000 + cipher=22514353E95312C112255E1EED0B2DF6 + decrypted=00000000000020000000000000000000 + Iterated 100 times=7753D7A5EFE9A7018A74F69FBECB53E6 + Iterated 1000 times=0BBDB3B0C4AF2384B18060E824BF5AD0 + +Set 2, vector# 51: + key=000000000000000000000000000000000000000000000000 + plain=00000000000010000000000000000000 + cipher=791A8BF462BD17580BD9152C6D11C6C5 + decrypted=00000000000010000000000000000000 + Iterated 100 times=C8611FF2FAEC311F9A61915A6826235F + Iterated 1000 times=AEA9097DA6531E126D1F3F2B250D5A6B + +Set 2, vector# 52: + key=000000000000000000000000000000000000000000000000 + plain=00000000000008000000000000000000 + cipher=5882A0178D548F84A165DB809C60DC28 + decrypted=00000000000008000000000000000000 + Iterated 100 times=46C1F27FA089191BAFE3C36074378B3F + Iterated 1000 times=418188DD3B41FA761255AF70917D3464 + +Set 2, vector# 53: + key=000000000000000000000000000000000000000000000000 + plain=00000000000004000000000000000000 + cipher=3CE4A90EED4458CA6039E42DDADB71C3 + decrypted=00000000000004000000000000000000 + Iterated 100 times=79033A1B05BB3454778627949477C29F + Iterated 1000 times=A3012E40A5853AB9CD3770472365A56D + +Set 2, vector# 54: + key=000000000000000000000000000000000000000000000000 + plain=00000000000002000000000000000000 + cipher=D3CBAB261207A16BE2751E77044FD7C9 + decrypted=00000000000002000000000000000000 + Iterated 100 times=DB04E3EF0855F789A05ABC8C0FACF9BA + Iterated 1000 times=F1B924118B3B03D1AA6917EAC69C5720 + +Set 2, vector# 55: + key=000000000000000000000000000000000000000000000000 + plain=00000000000001000000000000000000 + cipher=24E32B698A7B32217093628B01F424AB + decrypted=00000000000001000000000000000000 + Iterated 100 times=2293539E1B8E7FE3D5F7BD02C35F4069 + Iterated 1000 times=4189997BB4783F363ABC8D76FB559656 + +Set 2, vector# 56: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000800000000000000000 + cipher=9F6AFC0AF27CF565110C77E3C24F4F5B + decrypted=00000000000000800000000000000000 + Iterated 100 times=B879787C46EE5724A0E463938FC434A3 + Iterated 1000 times=6FD8728A9384732952DBAF718FB641D3 + +Set 2, vector# 57: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000400000000000000000 + cipher=E088AA5CDA20EF267BB039B00C72C45B + decrypted=00000000000000400000000000000000 + Iterated 100 times=C532403EB5FB93CE71A744791CFC0035 + Iterated 1000 times=7BBA8949BA0A6BE2149CC329D77527EE + +Set 2, vector# 58: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000200000000000000000 + cipher=5CF1018B7E0BA1775601C2E279900360 + decrypted=00000000000000200000000000000000 + Iterated 100 times=E22A6848F8FF4F8E74D3665FD0C481AD + Iterated 1000 times=3EB902C6519A2ED0DE7487A15CEACF25 + +Set 2, vector# 59: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000100000000000000000 + cipher=3B1A7388B89FB9416AD8753CF5AF35D2 + decrypted=00000000000000100000000000000000 + Iterated 100 times=62F14BAEDF4BC32032E713873399E0CB + Iterated 1000 times=B34795233758EAA857D8D1FDF89ED4A7 + +Set 2, vector# 60: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000080000000000000000 + cipher=137FA4ED00AFCD9F5D8BC0D14BD5837A + decrypted=00000000000000080000000000000000 + Iterated 100 times=74F080CC92906B35EF44CC3E7205275B + Iterated 1000 times=723ED6710D9CE4AC170B9250BF3D10FD + +Set 2, vector# 61: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000040000000000000000 + cipher=806F5C9B663559BB56F234881E4A3E60 + decrypted=00000000000000040000000000000000 + Iterated 100 times=6BF3861BA8C077E7B9981E1511CF7E05 + Iterated 1000 times=84DC06A65DDA70BF23022ADE62364E81 + +Set 2, vector# 62: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000020000000000000000 + cipher=8069A449152292DF2DE8642992C632B6 + decrypted=00000000000000020000000000000000 + Iterated 100 times=5796566F659E4EA054A1609982C657F1 + Iterated 1000 times=1116A78F766D3D550B826BB00DE743AC + +Set 2, vector# 63: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000010000000000000000 + cipher=37C6CF2A1ABD1B1F1922B46C7B4A280D + decrypted=00000000000000010000000000000000 + Iterated 100 times=9D80FB7B4F25B992D39674F82998E04E + Iterated 1000 times=6BB9C9624CC3623418F5CEAAB40DDB0F + +Set 2, vector# 64: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000008000000000000000 + cipher=7A2835260E5A0AA2B5DC301800EC8438 + decrypted=00000000000000008000000000000000 + Iterated 100 times=92437979E7228E48642A6A593FD15882 + Iterated 1000 times=5FD9BB3DC44B52FB142E70D228B7A211 + +Set 2, vector# 65: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000004000000000000000 + cipher=EE81FAF2F9058213FFCACF281CB8509E + decrypted=00000000000000004000000000000000 + Iterated 100 times=8ED080DD1666F70A0F0345B8155CCA5E + Iterated 1000 times=35FECD457FE11D7D4A3D31E125C2ABDB + +Set 2, vector# 66: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000002000000000000000 + cipher=57F22D93C37129BA331FDBA38E005A1E + decrypted=00000000000000002000000000000000 + Iterated 100 times=F993AD3EFC2EF9A89EE4B698B3373EF3 + Iterated 1000 times=145E42AC9328EAD8B24BAD52EF586EF6 + +Set 2, vector# 67: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000001000000000000000 + cipher=EC798782E87B7D9F780CC3C3A46519B5 + decrypted=00000000000000001000000000000000 + Iterated 100 times=A46CB2B3EB35A3DF621E9B359EE74827 + Iterated 1000 times=5E6ED076CE4B41084A8E5DD47AF42936 + +Set 2, vector# 68: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000800000000000000 + cipher=43EA28497F5D40E3A4744FA2EDAA42DE + decrypted=00000000000000000800000000000000 + Iterated 100 times=D26841E187A405BE5E29A8310F0AEDAE + Iterated 1000 times=E3B0147B4ABED87E099114C2A611D261 + +Set 2, vector# 69: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000400000000000000 + cipher=91F004E7DEBF41B3414DD8C5C317372C + decrypted=00000000000000000400000000000000 + Iterated 100 times=D2C01D2F48E1FC0EDB20796207CDB19F + Iterated 1000 times=DF33D714132F89BA4A464AE2F46BDB5D + +Set 2, vector# 70: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000200000000000000 + cipher=C249EAE54E7B4DF43B938C1B4CC28314 + decrypted=00000000000000000200000000000000 + Iterated 100 times=6CEB6FE281FC629E857F381A83002FF9 + Iterated 1000 times=298C1AA649C1884C91A2FDC0E3B26722 + +Set 2, vector# 71: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000100000000000000 + cipher=32C289D7EEFB99D2F17AD7B7D45FE1EC + decrypted=00000000000000000100000000000000 + Iterated 100 times=2E75657F9A89D6D169044BCCC780CC5F + Iterated 1000 times=111A52F9C1BA459C20181EFC4D99EF70 + +Set 2, vector# 72: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000080000000000000 + cipher=A675FB2E8DDBF810CEF01CF2B728CD2B + decrypted=00000000000000000080000000000000 + Iterated 100 times=F2283BA3B577EFC309EEFD709B5508D3 + Iterated 1000 times=802589EB7A86929C1053D980F6A245F5 + +Set 2, vector# 73: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000040000000000000 + cipher=A418AAAB6E6921CC731AA8A349386080 + decrypted=00000000000000000040000000000000 + Iterated 100 times=40C57776D5BF0ACF8EB702D199EBB7FE + Iterated 1000 times=C4F63BDE0D238B8A5DE1D7D20608006F + +Set 2, vector# 74: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000020000000000000 + cipher=2E2B0F44863E67D9B0215C4ABD60417F + decrypted=00000000000000000020000000000000 + Iterated 100 times=10A71456AB76A6CA3A1EC89EE25D40F9 + Iterated 1000 times=61BDB36564A18427DAA151B6510DD4A0 + +Set 2, vector# 75: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000010000000000000 + cipher=F0AF7CB19E911D481F6426DAEFDD2240 + decrypted=00000000000000000010000000000000 + Iterated 100 times=6B5CA5716FC17291E325EB691E80CAC5 + Iterated 1000 times=3E2E00FCCC7D1D0847F64BBFAFDD368A + +Set 2, vector# 76: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000008000000000000 + cipher=CB1304DAAA2DF6878F56AC2E0F887E04 + decrypted=00000000000000000008000000000000 + Iterated 100 times=F097D3F6F79E9B9D4F1E8F91B291128F + Iterated 1000 times=FDACF4E222BC1AE83B8062A907B9BDE7 + +Set 2, vector# 77: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000004000000000000 + cipher=B1B70A7E6A0CD1916D9B78BEA19084AE + decrypted=00000000000000000004000000000000 + Iterated 100 times=2DF6CAF5BF852DABFC60F09130411764 + Iterated 1000 times=2C22D0CF162B3B9C5640F02C917C206B + +Set 2, vector# 78: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000002000000000000 + cipher=0CDE9F9BE646A5FCE3436B794A9CFC65 + decrypted=00000000000000000002000000000000 + Iterated 100 times=1A2BCA0D27DDF80D401BDFB18925436C + Iterated 1000 times=65FE893510CB08314E99DD82AC878237 + +Set 2, vector# 79: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000001000000000000 + cipher=68C7946D476A0A36674B36AFD7E5DF33 + decrypted=00000000000000000001000000000000 + Iterated 100 times=CAE33E241D0BB3D9560E2BF659E16A84 + Iterated 1000 times=AD74AA23CA68CD3B0C96FDEE3A5D1413 + +Set 2, vector# 80: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000800000000000 + cipher=48770159A07DD8DFFF06C80105F8D57C + decrypted=00000000000000000000800000000000 + Iterated 100 times=4BB3AF1FC9CAF3AB363F00A35E17DD05 + Iterated 1000 times=C15DD2CF700D6A9021C0A9F190ED8AAE + +Set 2, vector# 81: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000400000000000 + cipher=665E62801B3260E3C45BD3BE34DFDEBE + decrypted=00000000000000000000400000000000 + Iterated 100 times=14871997C742E515839654A33F547FE2 + Iterated 1000 times=246F75651C30B58BF1214062D4DD9AD5 + +Set 2, vector# 82: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000200000000000 + cipher=4159C1F686BFBE5B0E50BDB0DA532B69 + decrypted=00000000000000000000200000000000 + Iterated 100 times=362944C38DD1A11B6A05AD23CC7F303E + Iterated 1000 times=4ACE300D078AAB974FDC91300DF556AF + +Set 2, vector# 83: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000100000000000 + cipher=6333100A5A4AD917DC2D4E78A04869A3 + decrypted=00000000000000000000100000000000 + Iterated 100 times=556BCB5A6C9196C2F056D408E4EF2328 + Iterated 1000 times=F525BB2DAD402A599DBF6B8AAE1F9D97 + +Set 2, vector# 84: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000080000000000 + cipher=866A4519AB1D199F25886B89D0539ACC + decrypted=00000000000000000000080000000000 + Iterated 100 times=C35622D2846F3631F2C64707883E5D3A + Iterated 1000 times=CAAD7817810C229AAF155D622AFC80FC + +Set 2, vector# 85: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000040000000000 + cipher=EC0CFD37E4CBC7E8BE385283F7AEA75A + decrypted=00000000000000000000040000000000 + Iterated 100 times=B8D8C4AD231D483E66BECC27E101C8A7 + Iterated 1000 times=3F5FE6A176D99F945295027652886C35 + +Set 2, vector# 86: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000020000000000 + cipher=CA2F383AACCA0810AA13F3E710621422 + decrypted=00000000000000000000020000000000 + Iterated 100 times=AA35313A17BC79F8872B5267FB93C203 + Iterated 1000 times=D4405E07132766A8274CE0230B190567 + +Set 2, vector# 87: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000010000000000 + cipher=1D0EEF6870444F950937831EC0A55D98 + decrypted=00000000000000000000010000000000 + Iterated 100 times=341B3DFFDD8A03E1C3EEAD137ED724F7 + Iterated 1000 times=7F0C5A18AF488C2C53BA24320365F4FF + +Set 2, vector# 88: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000008000000000 + cipher=37839B35ED6801E7670496D479A95017 + decrypted=00000000000000000000008000000000 + Iterated 100 times=62B2209FAFACDD2E8D331AA38E042A78 + Iterated 1000 times=EB628CCBFDB9A8DC760FA59902FF71C4 + +Set 2, vector# 89: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000004000000000 + cipher=02317C8C7098C4F94AB867AC7A49DD8D + decrypted=00000000000000000000004000000000 + Iterated 100 times=2F235DDBDCB04182353C56324D1FED4E + Iterated 1000 times=584E416027E267E4A3717F49E4EA9BD5 + +Set 2, vector# 90: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000002000000000 + cipher=FFB4CB4E3F7F8BF3367EBD43236518B4 + decrypted=00000000000000000000002000000000 + Iterated 100 times=514A8782BD51058976DABB88DC2B6512 + Iterated 1000 times=DE2B9647BA4F0EEABAA3EFB20EAD0ECC + +Set 2, vector# 91: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000001000000000 + cipher=36BEDEF1E4AA3E4A40A305741713FCBF + decrypted=00000000000000000000001000000000 + Iterated 100 times=81943AD55AF7213F37E02BF25FF26C74 + Iterated 1000 times=D0E21AD59FA6D9E39FA2D402F2851D21 + +Set 2, vector# 92: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000800000000 + cipher=B2DFE3C4870269C1E3FEEC39161540D9 + decrypted=00000000000000000000000800000000 + Iterated 100 times=82649009FE0D5706FDF400DF5C149FFE + Iterated 1000 times=84B2B35EA7FA913D9F51DBBFE3D13974 + +Set 2, vector# 93: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000400000000 + cipher=147EF2518AD45DA0026056ECBF6A3DFA + decrypted=00000000000000000000000400000000 + Iterated 100 times=CA211A997437F8869DF0BB729926B6D6 + Iterated 1000 times=9DC9D0E00A2C767DB1B0FE076DDDB23A + +Set 2, vector# 94: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000200000000 + cipher=027A75E4DE635790E47ACE90D7928804 + decrypted=00000000000000000000000200000000 + Iterated 100 times=BBCD90198DBB49AB8B6DE332E0C714B6 + Iterated 1000 times=B970393CB8AFEB9D92FC1BCAED6EBF8E + +Set 2, vector# 95: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000100000000 + cipher=C4CF3CCB59BF87D0AFBD629F48CFBB7B + decrypted=00000000000000000000000100000000 + Iterated 100 times=F95DD7F1DCD8CE932132F0E858CF9267 + Iterated 1000 times=4EC8E4A3D03C4B0CDF57328F74BBCD85 + +Set 2, vector# 96: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000080000000 + cipher=35165C93F564C97E1C32EF97E8151A87 + decrypted=00000000000000000000000080000000 + Iterated 100 times=5FC21440B02481AF45AF46618A778C28 + Iterated 1000 times=CF07CC32287BE0E57C4443BA6346867C + +Set 2, vector# 97: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000040000000 + cipher=449DE37F7D5A1BBD628ABBE7E061701D + decrypted=00000000000000000000000040000000 + Iterated 100 times=A37E750FDB44D78B6A0EE5B5CC1C210A + Iterated 1000 times=5C3291A388762A4963EB21B1DDE1789E + +Set 2, vector# 98: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000020000000 + cipher=B1D45EAF218F1799B149BAD677FE129F + decrypted=00000000000000000000000020000000 + Iterated 100 times=6C291A5F564FA7B8CE9C78F4623643AC + Iterated 1000 times=A8631A05F09A5FA4EAAD316E3603744C + +Set 2, vector# 99: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000010000000 + cipher=BE08AC6DB6BD0583AA9D2ABC71C73DCD + decrypted=00000000000000000000000010000000 + Iterated 100 times=B7FC073ADA593F2D028E1A9FF625B3A7 + Iterated 1000 times=A8878A0A031E913F1334CE07E9A74C43 + +Set 2, vector#100: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000008000000 + cipher=BCC835BD3DF1A79E4C7C145B899A5C25 + decrypted=00000000000000000000000008000000 + Iterated 100 times=D3A5B07E74701981BE8049F2C22CF338 + Iterated 1000 times=88581C3906742E79784539D5792575C1 + +Set 2, vector#101: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000004000000 + cipher=3D311EA611FF5AF371301C58A8E9912D + decrypted=00000000000000000000000004000000 + Iterated 100 times=87BF7643F4D6F20D1AF5A9BD7DDB3C82 + Iterated 1000 times=96029A3F4AF11746056D4D8FBC57E1B7 + +Set 2, vector#102: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000002000000 + cipher=A5A1BEA594ACC7CA80F09EA5ADDB5C71 + decrypted=00000000000000000000000002000000 + Iterated 100 times=791BA694A714322355AE2C7015A6E99B + Iterated 1000 times=8A88E0DB1F89B8827666BE82E651E186 + +Set 2, vector#103: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000001000000 + cipher=0F09492429FE7222D6CD8190D9F2FFBF + decrypted=00000000000000000000000001000000 + Iterated 100 times=7B3A15546B1184FED28F1F75C7029787 + Iterated 1000 times=CDCE4DC53180466ACBEDE2061791B0F4 + +Set 2, vector#104: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000000800000 + cipher=816D2220A16B8AAEE71364FD43636C6F + decrypted=00000000000000000000000000800000 + Iterated 100 times=BD52464D479D3F77E3ED231286A09A18 + Iterated 1000 times=2231E9C3268DECA42CF739808CA61E5F + +Set 2, vector#105: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000000400000 + cipher=D7E8702408419ED73191B107EAF75A0B + decrypted=00000000000000000000000000400000 + Iterated 100 times=B97ACECC467D3CB2FCEC2D6BFBDC271D + Iterated 1000 times=18CB69F73347B092047ABED597AECC4E + +Set 2, vector#106: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000000200000 + cipher=9B170EFB1E235B433C78E276BEA082F0 + decrypted=00000000000000000000000000200000 + Iterated 100 times=B9F9F73BBDE21A7C618F7EE96AF7548E + Iterated 1000 times=DD1C08A2749A795A4B6B8098F9DC0DDD + +Set 2, vector#107: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000000100000 + cipher=03BBECC5598AE974430F29395522F096 + decrypted=00000000000000000000000000100000 + Iterated 100 times=21376638497FC5F3F884BB9FC3F58E9B + Iterated 1000 times=7BF40AA3ACF86B41CD552000157A03E3 + +Set 2, vector#108: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000000080000 + cipher=DB53517766C0E8CF42059607CBA89380 + decrypted=00000000000000000000000000080000 + Iterated 100 times=01D237BB41AF6820CD1C160666D51E2A + Iterated 1000 times=0208E475F184763854728A260D1ECB18 + +Set 2, vector#109: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000000040000 + cipher=2E2AF4B7931F0AEFFAC5471148A5BB97 + decrypted=00000000000000000000000000040000 + Iterated 100 times=BC90E1695F901C37FCD7748D2C3860A2 + Iterated 1000 times=1DD3AA2E010A8284A57FAD9257708D7B + +Set 2, vector#110: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000000020000 + cipher=C872C0408266403B984F635FF5683DE4 + decrypted=00000000000000000000000000020000 + Iterated 100 times=CE1A03354502234F0D0EB0B6F95B45D5 + Iterated 1000 times=B918A00E96EC5255839BEB5F3D2AE119 + +Set 2, vector#111: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000000010000 + cipher=15DCF750B0E3A68AD1F4EFD07E8967B4 + decrypted=00000000000000000000000000010000 + Iterated 100 times=A6161D948CB2702B595E918B0C1AFD88 + Iterated 1000 times=4F74A4B597D4D85E73A748455F6708B0 + +Set 2, vector#112: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000000008000 + cipher=B41092048E9E6A749F6FD8CE515A23A3 + decrypted=00000000000000000000000000008000 + Iterated 100 times=F5CA3DC9349C517C7C25E9B475C80B4B + Iterated 1000 times=77106F01CBB1A6D61DD7852D2D4BEEC8 + +Set 2, vector#113: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000000004000 + cipher=4DA9267D62507994312BD5C99ADDE730 + decrypted=00000000000000000000000000004000 + Iterated 100 times=CEB9BC9520308CB2B1107378CFAA8A95 + Iterated 1000 times=5ADBEC3A109756BBE31EA332DC8E2B85 + +Set 2, vector#114: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000000002000 + cipher=9E2FCA6D1D626E9C6A924EBF7DBF618A + decrypted=00000000000000000000000000002000 + Iterated 100 times=A593472EE3142570E581840072037E7B + Iterated 1000 times=59AAA91B929077D575A58D6F8BDED9C2 + +Set 2, vector#115: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000000001000 + cipher=E092E8D7EF2C2465AEFB2493C3063590 + decrypted=00000000000000000000000000001000 + Iterated 100 times=B2F0254F5976F1641C123DFD5876D81D + Iterated 1000 times=5E5A661B543A0C11A78362036E3F228B + +Set 2, vector#116: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000000000800 + cipher=1C0E58DA37D1068378A88DBE2EDE4E10 + decrypted=00000000000000000000000000000800 + Iterated 100 times=BC3F1CEFC22B7BA0DE8DC1797A4271F0 + Iterated 1000 times=4916B9F87B1DA4D3C10C3904EE931FE3 + +Set 2, vector#117: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000000000400 + cipher=19063F854232B8509A6A3A6D46809959 + decrypted=00000000000000000000000000000400 + Iterated 100 times=7781DBB5F5E65433F9AAA9EB1701A947 + Iterated 1000 times=4C9F0C2FDD25560F65BA153FA9EBB0DC + +Set 2, vector#118: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000000000200 + cipher=447FB09E54EFA285F7530F25C4EA0022 + decrypted=00000000000000000000000000000200 + Iterated 100 times=DB95F3565421066EC32F6DDB5DF69E7F + Iterated 1000 times=39C0FFD89E4CCE001F09E8FA4CB39DD0 + +Set 2, vector#119: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000000000100 + cipher=F6ABE86321BE40E1FBFDAFED37CC1D9B + decrypted=00000000000000000000000000000100 + Iterated 100 times=7C93BD861198891A4860B98F6E0058EA + Iterated 1000 times=82799217C02E92C670BC504834C04AEA + +Set 2, vector#120: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000000000080 + cipher=4E8506CD006666341D6CF51F98B41F35 + decrypted=00000000000000000000000000000080 + Iterated 100 times=9B6B4BE590EFB2767D99A60592DF618B + Iterated 1000 times=F7C8C735D6F7F9E994E85007362CB990 + +Set 2, vector#121: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000000000040 + cipher=53995DE0009CA18BECAFB8307C54C14C + decrypted=00000000000000000000000000000040 + Iterated 100 times=C5C5582E3B1FCEE8AA65DEFDB6599C66 + Iterated 1000 times=3834F039278B3BF1EB82CF497FB3F9C8 + +Set 2, vector#122: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000000000020 + cipher=2006BF99F4C58B6CC2627856593FAEEA + decrypted=00000000000000000000000000000020 + Iterated 100 times=189EA76FABAAEFD338995DDAC1005D05 + Iterated 1000 times=0F0C957348F09D6DD07CBDE09E8DA6CD + +Set 2, vector#123: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000000000010 + cipher=2DA697D2737CB30B744A4644FA1CBC6E + decrypted=00000000000000000000000000000010 + Iterated 100 times=2369C647F1CB471A0799438C5859F756 + Iterated 1000 times=C08A2EBD0D8B9AC0989F3B9691ADB5DA + +Set 2, vector#124: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000000000008 + cipher=47A22ACDB60C3A986A8F76ECD0EA3433 + decrypted=00000000000000000000000000000008 + Iterated 100 times=E6696E9C13221EFC101955CE4408BFDF + Iterated 1000 times=5786E172E7FC90014C1306BB5EA8318A + +Set 2, vector#125: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000000000004 + cipher=FDAA17C2CDE20268FE36E164EA532151 + decrypted=00000000000000000000000000000004 + Iterated 100 times=3ACBFD498232B16ACC525E53C0DD6719 + Iterated 1000 times=88A803B674023EF8784784CE0D1C39F2 + +Set 2, vector#126: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000000000002 + cipher=98E7247C07F0FE411C267E4384B0F600 + decrypted=00000000000000000000000000000002 + Iterated 100 times=D701DDAB0D36B2277E8481FFC3A89CF2 + Iterated 1000 times=CC3C41EDC750C93F9C8C60047893BF98 + +Set 2, vector#127: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000000000001 + cipher=CD33B28AC773F74BA00ED1F312572435 + decrypted=00000000000000000000000000000001 + Iterated 100 times=C1FF2D849AF532173782DB660AD8B67E + Iterated 1000 times=A8CB7DE02B2E57503DC2823D8D28D7DE + +Test vectors -- set 3 +===================== + +Set 3, vector# 0: + key=000000000000000000000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=AAE06992ACBF52A3E8F4A96EC9300BD7 + decrypted=00000000000000000000000000000000 + Iterated 100 times=AE228C23F2F8E26A9B21336EF06FC041 + Iterated 1000 times=96BD35DD817A2D381A66D6F2C7BEC1A9 + +Set 3, vector# 1: + key=010101010101010101010101010101010101010101010101 + plain=01010101010101010101010101010101 + cipher=98B895A145CA4E0BF83E693281C1A097 + decrypted=01010101010101010101010101010101 + Iterated 100 times=30622196C85AF306B086D7E68B0EFAD8 + Iterated 1000 times=6566398C6FF620EC7D31530B2266D3C0 + +Set 3, vector# 2: + key=020202020202020202020202020202020202020202020202 + plain=02020202020202020202020202020202 + cipher=3384BB554861DA93EF84982257425B7C + decrypted=02020202020202020202020202020202 + Iterated 100 times=51B5EEC8591943183D2A0C5672003021 + Iterated 1000 times=2599B88014612BFB095B0C9B5F22C968 + +Set 3, vector# 3: + key=030303030303030303030303030303030303030303030303 + plain=03030303030303030303030303030303 + cipher=977E9D22953DBB8B093003CACB38C5E2 + decrypted=03030303030303030303030303030303 + Iterated 100 times=D4FC6ACC2868D35B9292013C4100B329 + Iterated 1000 times=C448D854A52FB2922B6CCA12E0F12E92 + +Set 3, vector# 4: + key=040404040404040404040404040404040404040404040404 + plain=04040404040404040404040404040404 + cipher=7F8ED4BBEE5459CCA649614FAC0E1CA1 + decrypted=04040404040404040404040404040404 + Iterated 100 times=5751745F394202439A6A192DBA102855 + Iterated 1000 times=C0B1106EC2D0343925F533E73A2A5BBC + +Set 3, vector# 5: + key=050505050505050505050505050505050505050505050505 + plain=05050505050505050505050505050505 + cipher=27267BC9A8639964C926BAC7509CCE5C + decrypted=05050505050505050505050505050505 + Iterated 100 times=2A2831FFF23A498890AF6548CC2FAC13 + Iterated 1000 times=9851583396BE7339A1D2415988AD10AE + +Set 3, vector# 6: + key=060606060606060606060606060606060606060606060606 + plain=06060606060606060606060606060606 + cipher=BF203BA8FAF50DEC12D19A78A6AAD0F0 + decrypted=06060606060606060606060606060606 + Iterated 100 times=16E428A627C984B1008269F179CCE2CE + Iterated 1000 times=C641160CAF99AAC24F8E7CCDDA36E000 + +Set 3, vector# 7: + key=070707070707070707070707070707070707070707070707 + plain=07070707070707070707070707070707 + cipher=B44642B29B06DB0EAEC2D51F73F99BFD + decrypted=07070707070707070707070707070707 + Iterated 100 times=A1608BBCD3980FB698DFF1378FBC682D + Iterated 1000 times=7FA12CA0D70F80B432661AC17E076926 + +Set 3, vector# 8: + key=080808080808080808080808080808080808080808080808 + plain=08080808080808080808080808080808 + cipher=865F95B929EF7951A0C4DD104DE9BF37 + decrypted=08080808080808080808080808080808 + Iterated 100 times=2F15E7DF41006DACA39B5A73775CF5FC + Iterated 1000 times=04EDB51A88590F41E4B3EC69D0DF9CA6 + +Set 3, vector# 9: + key=090909090909090909090909090909090909090909090909 + plain=09090909090909090909090909090909 + cipher=B3366CBD08304A6DD969934A28FB84FF + decrypted=09090909090909090909090909090909 + Iterated 100 times=E691F04A4BFCDCB5DFBD02AE71C8F2B9 + Iterated 1000 times=6D6D49C2F3FBBABFC7A73CC4F30ED6EF + +Set 3, vector# 10: + key=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + plain=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + cipher=CFCCE8CB844145AAFE7E285B36D90D30 + decrypted=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + Iterated 100 times=530C37166440E9B42384D74640F22104 + Iterated 1000 times=3ED89A293452FFF355EF3813FA6E8AE0 + +Set 3, vector# 11: + key=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + plain=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + cipher=7712215662FBAB5B0E70D85E332E1B37 + decrypted=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + Iterated 100 times=58AB8A7529989AA89D074A97AE46F0A3 + Iterated 1000 times=DADFC09416E25BB9BA13057669C456CC + +Set 3, vector# 12: + key=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + plain=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + cipher=C974415D3AD69EBB5EE0225864645E9D + decrypted=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + Iterated 100 times=FF22FCDCC21F751A2E4B08DEDE5DE5B9 + Iterated 1000 times=75F854AE5A250367E04EF35007DB0252 + +Set 3, vector# 13: + key=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + plain=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + cipher=39C44D977695F5E84F98E63B4282E3A5 + decrypted=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + Iterated 100 times=222A028654BF86B25AB0591C47746967 + Iterated 1000 times=69F711D9B328DB658519699F9A9C8546 + +Set 3, vector# 14: + key=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + plain=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + cipher=2B3248DD3F805D7CE0FDC11A36ABD378 + decrypted=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + Iterated 100 times=D251987A25479EFAAB22FE95BECA33E0 + Iterated 1000 times=C9AB2EDD2E5FE5BC11724875FB2BF326 + +Set 3, vector# 15: + key=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + plain=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + cipher=F5A2CD95BD4FD26E6E8F915E8B53BB81 + decrypted=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + Iterated 100 times=28EB4BFCA6180F4AC6D5FA1D0EF07FDB + Iterated 1000 times=41925949D4F3596180B4FD2F108BCA7F + +Set 3, vector# 16: + key=101010101010101010101010101010101010101010101010 + plain=10101010101010101010101010101010 + cipher=7F90FCC37AF551F8C43D0DB430C4B035 + decrypted=10101010101010101010101010101010 + Iterated 100 times=13B8A0309E1180ECEA38872170BD4384 + Iterated 1000 times=AA0F948E99DE0E3EB366929041C38A2A + +Set 3, vector# 17: + key=111111111111111111111111111111111111111111111111 + plain=11111111111111111111111111111111 + cipher=EC6DA4F113B52797E974FDAA95A79954 + decrypted=11111111111111111111111111111111 + Iterated 100 times=2037401CFFA44B96A97ADF8DD9FBFAB7 + Iterated 1000 times=E8206E47B0D6123848A66DCA25CF3BF0 + +Set 3, vector# 18: + key=121212121212121212121212121212121212121212121212 + plain=12121212121212121212121212121212 + cipher=CA3B6CDF303FB24B18DBE918BE751CD9 + decrypted=12121212121212121212121212121212 + Iterated 100 times=FE56B3DA009604776E4405DE350A5BD7 + Iterated 1000 times=48EF2F1FBD8D111CA64AA2350679FF94 + +Set 3, vector# 19: + key=131313131313131313131313131313131313131313131313 + plain=13131313131313131313131313131313 + cipher=1476DBF43AA9A3FCC25FE125B9715634 + decrypted=13131313131313131313131313131313 + Iterated 100 times=39A5511B2CBAAB66301E72B94CF086AE + Iterated 1000 times=04F6F8B9E106F3EF068644D180D2596A + +Set 3, vector# 20: + key=141414141414141414141414141414141414141414141414 + plain=14141414141414141414141414141414 + cipher=08A98391BB3875CC35660B4D5A045F64 + decrypted=14141414141414141414141414141414 + Iterated 100 times=12DB7CD440C7825007B4AB2CC9E9FD9E + Iterated 1000 times=B0F0E111AA830D837CD18AF4BA6615AD + +Set 3, vector# 21: + key=151515151515151515151515151515151515151515151515 + plain=15151515151515151515151515151515 + cipher=7067C31E721E5B9EB5B5FBA69B531403 + decrypted=15151515151515151515151515151515 + Iterated 100 times=5EA45131BC4363FD1D3EBA6F6A25BC40 + Iterated 1000 times=2C336D4CFA2CD9238C5B632818A1B3E6 + +Set 3, vector# 22: + key=161616161616161616161616161616161616161616161616 + plain=16161616161616161616161616161616 + cipher=40AEBF8E3AB528E1FF9B862C62E01575 + decrypted=16161616161616161616161616161616 + Iterated 100 times=BBD2D251D82BE85E7178C325291C344B + Iterated 1000 times=75E1CC6FB99DBF2B7EC304476BEB530B + +Set 3, vector# 23: + key=171717171717171717171717171717171717171717171717 + plain=17171717171717171717171717171717 + cipher=ABED2E423A9F808902237FE490E705E3 + decrypted=17171717171717171717171717171717 + Iterated 100 times=0EC66F11AE7439F4D85DD94B9D08E091 + Iterated 1000 times=FD5F592F539D66FD0B5240504C493392 + +Set 3, vector# 24: + key=181818181818181818181818181818181818181818181818 + plain=18181818181818181818181818181818 + cipher=1DF1E89A31AD8BB43261319AE31685D4 + decrypted=18181818181818181818181818181818 + Iterated 100 times=CDEA7D6F61C4ED718A5C04A2F5B4A00D + Iterated 1000 times=878B585A752ADE6CD573363685EE87C8 + +Set 3, vector# 25: + key=191919191919191919191919191919191919191919191919 + plain=19191919191919191919191919191919 + cipher=FCA2BF5157AB185E8B421B2D10068045 + decrypted=19191919191919191919191919191919 + Iterated 100 times=3C9393980CF4454045BE1EC6AC819D0A + Iterated 1000 times=D1FACEF83A7AACF69020263B2E6F8F62 + +Set 3, vector# 26: + key=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + plain=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + cipher=5D1C31C86A6D9E9F36ABB907059ACFF9 + decrypted=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + Iterated 100 times=786775C7DB2381E0D39ABBCE557B832D + Iterated 1000 times=BC9ECB0ECF1A14EE573CF3DA99A8F2FD + +Set 3, vector# 27: + key=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + plain=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + cipher=E451F4CB354A95609D43FEB5EA027B71 + decrypted=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + Iterated 100 times=701B99128E8A9052BA1F5F8F28F51467 + Iterated 1000 times=253ECA0C7EB3B6E4097928380E7F3F96 + +Set 3, vector# 28: + key=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + plain=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + cipher=1618417194AEB8699958EC51209351A9 + decrypted=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + Iterated 100 times=9D01B953093DFF2CB96B0B93DD533AD5 + Iterated 1000 times=4383C6909E6A698391D13320DE2D253B + +Set 3, vector# 29: + key=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + plain=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + cipher=A70ED58AC6601B687309FE02CDC8DA46 + decrypted=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + Iterated 100 times=BDA9EC038D43E36418C59D997E5D130D + Iterated 1000 times=18ED79266914F8C95D90BFBDE6D59A6C + +Set 3, vector# 30: + key=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + plain=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + cipher=13C70B48154FA5AE0B96CE22593E724B + decrypted=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + Iterated 100 times=379A8CF459E31C2535242A74A6B0E482 + Iterated 1000 times=9FC67A0AF6BFEA48427FF5D0F6350D76 + +Set 3, vector# 31: + key=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + plain=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + cipher=4EC2B1320365545FCD7A9DA34244B1A2 + decrypted=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + Iterated 100 times=47FFB55FF8B71B35B02584D2E811CA6E + Iterated 1000 times=2D81BC9783486F7980D1174A1F66165B + +Set 3, vector# 32: + key=202020202020202020202020202020202020202020202020 + plain=20202020202020202020202020202020 + cipher=9407428C354C6C649E4894116AE41040 + decrypted=20202020202020202020202020202020 + Iterated 100 times=4CA14DDFFC52512E7734AA20C67B0714 + Iterated 1000 times=A1D26CE8AAA86178235FB7BB8F3C4284 + +Set 3, vector# 33: + key=212121212121212121212121212121212121212121212121 + plain=21212121212121212121212121212121 + cipher=DD2EB5907C13CD989FD486D1E1F3C6D4 + decrypted=21212121212121212121212121212121 + Iterated 100 times=A89BA6BDB144E6AB626AF2F6A1DD93EC + Iterated 1000 times=49E72DDF1768B1D22FA403C03FEBCB19 + +Set 3, vector# 34: + key=222222222222222222222222222222222222222222222222 + plain=22222222222222222222222222222222 + cipher=B1D833768D603C1437A34CAE140084AC + decrypted=22222222222222222222222222222222 + Iterated 100 times=1C0E9F2FA33EC819090777D04C788085 + Iterated 1000 times=72E83F6E41CF33B91761512C1722DA5C + +Set 3, vector# 35: + key=232323232323232323232323232323232323232323232323 + plain=23232323232323232323232323232323 + cipher=4DB4B89F70C11CD738885A7AA602F7C7 + decrypted=23232323232323232323232323232323 + Iterated 100 times=37EFAC7C198236129BFCDB1FC9707A07 + Iterated 1000 times=47B12E3BD56AB158D140ACFA77AC2728 + +Set 3, vector# 36: + key=242424242424242424242424242424242424242424242424 + plain=24242424242424242424242424242424 + cipher=B5F08D84A897DAC34CB4840064BB2E6D + decrypted=24242424242424242424242424242424 + Iterated 100 times=DFCD7B4B3BAE0D3EEE0865EABD97B973 + Iterated 1000 times=154636DB802FF99F1C71A6E44933EB68 + +Set 3, vector# 37: + key=252525252525252525252525252525252525252525252525 + plain=25252525252525252525252525252525 + cipher=10BE5948E91E49ECD84ABF1DB92F3536 + decrypted=25252525252525252525252525252525 + Iterated 100 times=B3EABFD70BBD303DE2CC16D846CF8ACF + Iterated 1000 times=771E6817FCA0F61D6496E96DFB9E2D5C + +Set 3, vector# 38: + key=262626262626262626262626262626262626262626262626 + plain=26262626262626262626262626262626 + cipher=D5D5F231A9D3C683E78F1608343AE98F + decrypted=26262626262626262626262626262626 + Iterated 100 times=03D03613A6C5A5562B0D1478766D684A + Iterated 1000 times=E80916694002687CE8ADFFA7564B2BA9 + +Set 3, vector# 39: + key=272727272727272727272727272727272727272727272727 + plain=27272727272727272727272727272727 + cipher=572CEF6F3C6FC87C2A6DDA6E70471B44 + decrypted=27272727272727272727272727272727 + Iterated 100 times=A81CC822B439879EFAC2C4889F1396D9 + Iterated 1000 times=28DC2F2AFA665B73599CADB6388CFEE3 + +Set 3, vector# 40: + key=282828282828282828282828282828282828282828282828 + plain=28282828282828282828282828282828 + cipher=0BE5555C278EE6C8355E50E3170A17F2 + decrypted=28282828282828282828282828282828 + Iterated 100 times=B2AD425F18B34B4D2CFDA93A3F3C4453 + Iterated 1000 times=E1A89E20A8175CE646E6389B0B678235 + +Set 3, vector# 41: + key=292929292929292929292929292929292929292929292929 + plain=29292929292929292929292929292929 + cipher=FE858C9250C485783E4197AEA03E4DB7 + decrypted=29292929292929292929292929292929 + Iterated 100 times=0F07D125B9BAE3EB84CAFBFDB8C2ACCA + Iterated 1000 times=25901EC6FB098B8B4077175DC457C5EE + +Set 3, vector# 42: + key=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + plain=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + cipher=A09FE184AC225397E3BA077CC05E405B + decrypted=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + Iterated 100 times=0B5C8A7000AFD9024161532F6A7F245D + Iterated 1000 times=0444E00A11C59B31E72C6C8F71916514 + +Set 3, vector# 43: + key=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + plain=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + cipher=5B4C347B64EACF339A093033C11AE182 + decrypted=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + Iterated 100 times=45ED2C8ADF9FA05E5445082448DA2B05 + Iterated 1000 times=DDA28FB32269E847CE12A2F17376B904 + +Set 3, vector# 44: + key=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + plain=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + cipher=36388C047851F7B6AAAE5FD349911B44 + decrypted=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + Iterated 100 times=187B93F7866F565BD9F7EDB0D40524C6 + Iterated 1000 times=ABB7BF56CD104B4729BEFF404558C9D1 + +Set 3, vector# 45: + key=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + plain=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + cipher=5D071F688204D887140F9E909B6139A7 + decrypted=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + Iterated 100 times=C7643E2CD833331915960C9733DE1B4C + Iterated 1000 times=E7F5E27B0DAF3AFEDAFE06C989FE7099 + +Set 3, vector# 46: + key=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + plain=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + cipher=AD7A4EAA69C67E5B4AA7C0A94237B5BF + decrypted=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + Iterated 100 times=14D70EB25A6EE577186F04D94C4730F5 + Iterated 1000 times=69BCC066B2C35100ED2D9AAB99336CB8 + +Set 3, vector# 47: + key=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + plain=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + cipher=21A562C4DBCFA6837DA213D85FB1DCEB + decrypted=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + Iterated 100 times=F72602D984D492CB521AC14888F70C15 + Iterated 1000 times=4362A39E94CE0EF06FA787D6F7B45CDF + +Set 3, vector# 48: + key=303030303030303030303030303030303030303030303030 + plain=30303030303030303030303030303030 + cipher=821D6AA69FB54FE9CD40040C7E03874E + decrypted=30303030303030303030303030303030 + Iterated 100 times=892BC43D936DFC0116AA617BB5C2007D + Iterated 1000 times=6ADC206E55BA9215AE6E09E4B98C5AEB + +Set 3, vector# 49: + key=313131313131313131313131313131313131313131313131 + plain=31313131313131313131313131313131 + cipher=856CC2501277B0D9745E3DD2400A5574 + decrypted=31313131313131313131313131313131 + Iterated 100 times=5522F9456B0EB0AF4C344ED5E5674340 + Iterated 1000 times=31ECFA5F92C64545D6A204C4380B418D + +Set 3, vector# 50: + key=323232323232323232323232323232323232323232323232 + plain=32323232323232323232323232323232 + cipher=892A5659AA7FE097DB38F57C7282D3EB + decrypted=32323232323232323232323232323232 + Iterated 100 times=E77180425FDC7449D19FD51FA09C4BD4 + Iterated 1000 times=61AED68F15E08D90920414EDB1A88F44 + +Set 3, vector# 51: + key=333333333333333333333333333333333333333333333333 + plain=33333333333333333333333333333333 + cipher=23E7BDBF2B80B8FD7EEECD3BDB7F75EB + decrypted=33333333333333333333333333333333 + Iterated 100 times=4F1BE227DC5DDAC88FBA1B834D7A59EF + Iterated 1000 times=061D5D05333B673999887311239025BF + +Set 3, vector# 52: + key=343434343434343434343434343434343434343434343434 + plain=34343434343434343434343434343434 + cipher=EE2ACB64F08DEB4FC8893893691FBA7F + decrypted=34343434343434343434343434343434 + Iterated 100 times=34B8A3AA0AD7D407A5C8E0F86F1AD31F + Iterated 1000 times=4BD697C81F66C092B62D589A6AF25E5C + +Set 3, vector# 53: + key=353535353535353535353535353535353535353535353535 + plain=35353535353535353535353535353535 + cipher=48443048A20A39FD5D04D9FF1FFDB935 + decrypted=35353535353535353535353535353535 + Iterated 100 times=B143A2AD7F5C1A735A1899CC1465EAF8 + Iterated 1000 times=F795C4EE3DB932B6D32F8E8BCA0A1079 + +Set 3, vector# 54: + key=363636363636363636363636363636363636363636363636 + plain=36363636363636363636363636363636 + cipher=E153D2B3ADE247ABF4BD2F66531F1FB0 + decrypted=36363636363636363636363636363636 + Iterated 100 times=AC9A844E346452C6449852E35462F4F9 + Iterated 1000 times=4A0EB7E390528A83249F5C30F3FE18F7 + +Set 3, vector# 55: + key=373737373737373737373737373737373737373737373737 + plain=37373737373737373737373737373737 + cipher=3667AC45B5B1403ECB50FC5DD04B463D + decrypted=37373737373737373737373737373737 + Iterated 100 times=7BCB96EE57973A96680E5C5C7A82D5C3 + Iterated 1000 times=44E439A28F0D719B5DC36A23596A25B3 + +Set 3, vector# 56: + key=383838383838383838383838383838383838383838383838 + plain=38383838383838383838383838383838 + cipher=E146FA65A1D2D510BA394CC3D7291BB8 + decrypted=38383838383838383838383838383838 + Iterated 100 times=C2FD734674A579ED6FB2E5B66313482F + Iterated 1000 times=9955380507D6F184A07E22D6265530E6 + +Set 3, vector# 57: + key=393939393939393939393939393939393939393939393939 + plain=39393939393939393939393939393939 + cipher=4441C71D02F623E240CD776491DF4B09 + decrypted=39393939393939393939393939393939 + Iterated 100 times=056F1AF9485A714B93EE7A5AB85744D9 + Iterated 1000 times=FFCAEE3F84F6F9AC6DE04021B38B60B6 + +Set 3, vector# 58: + key=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + plain=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + cipher=99A36FF0CD7FEB67FB743A15EFB749A5 + decrypted=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + Iterated 100 times=366BE0325763DFFD1D60B3AF55293D69 + Iterated 1000 times=F433583D05E680213DDBFF0BCAEADD15 + +Set 3, vector# 59: + key=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + plain=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + cipher=5A6EDC30ED4B4163DDF954B657182409 + decrypted=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + Iterated 100 times=E7C3610E2E6171C44DAE05E8E0B5C7CD + Iterated 1000 times=9076A120CB77756A929F3F2679A2B7D6 + +Set 3, vector# 60: + key=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + plain=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + cipher=C7CD84DA22CAA0AF1F3608969BB21A5C + decrypted=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + Iterated 100 times=4B073ACDBDE6F8D24E72647AB55C2CC4 + Iterated 1000 times=92C5DF3AA7736578785741E399784E50 + +Set 3, vector# 61: + key=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + plain=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + cipher=9AFC9A95A0CCE6ED72C30DADC4A5C1FA + decrypted=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + Iterated 100 times=C198EE51CD4C9FF7A5DEB976BE37B2DB + Iterated 1000 times=14008704D937F2BB08CB9144840D25F5 + +Set 3, vector# 62: + key=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + plain=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + cipher=565E86F71E7AA33A4763EFE1C2F0C041 + decrypted=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + Iterated 100 times=27A160CB1077E58B45C750A3AD293396 + Iterated 1000 times=22610AC31094E729F5ACBC5D72EC82BC + +Set 3, vector# 63: + key=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + plain=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + cipher=D7420746CF16F533390A7884C8B51AB6 + decrypted=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + Iterated 100 times=99F7272F4D81562015D491B7A812EA94 + Iterated 1000 times=BE92CF4CDCC638D0D8A2D6803CA8517E + +Set 3, vector# 64: + key=404040404040404040404040404040404040404040404040 + plain=40404040404040404040404040404040 + cipher=0A0473ADE0791D10728E5B1EC0A02FC7 + decrypted=40404040404040404040404040404040 + Iterated 100 times=BD2CF99112810C0701954C7BBFA740E2 + Iterated 1000 times=72733CB9E5A8F10E1C84F81780F4296F + +Set 3, vector# 65: + key=414141414141414141414141414141414141414141414141 + plain=41414141414141414141414141414141 + cipher=F4E1118C9CCC6027929062EDC4DC5ED0 + decrypted=41414141414141414141414141414141 + Iterated 100 times=769AB1BE365ABD712E629A2394C17E53 + Iterated 1000 times=AB0517CFD028F59736A8D7FD5379958A + +Set 3, vector# 66: + key=424242424242424242424242424242424242424242424242 + plain=42424242424242424242424242424242 + cipher=FB7F88FD414AE9059CAE84B6D1A7608D + decrypted=42424242424242424242424242424242 + Iterated 100 times=ED44292DFC1D49E069CBD3EB9B956CC4 + Iterated 1000 times=37887B0C9B7DD0248A63F7A54B4B3B3A + +Set 3, vector# 67: + key=434343434343434343434343434343434343434343434343 + plain=43434343434343434343434343434343 + cipher=50B9FA5BAFC0A16D75FABCFA3B29E035 + decrypted=43434343434343434343434343434343 + Iterated 100 times=D8736EB5FF2A60EE753D3FBF437BD486 + Iterated 1000 times=F06379C9AD326F898A5C0C0A0482895B + +Set 3, vector# 68: + key=444444444444444444444444444444444444444444444444 + plain=44444444444444444444444444444444 + cipher=FBE4501BB3D63C59A55A82574225F566 + decrypted=44444444444444444444444444444444 + Iterated 100 times=4E57536CC463A3969D81B1C09251B531 + Iterated 1000 times=9AB56F9FE4B0C6181E279FCDF263BC1A + +Set 3, vector# 69: + key=454545454545454545454545454545454545454545454545 + plain=45454545454545454545454545454545 + cipher=F0BFE6174571997C01226E731AEBB5F4 + decrypted=45454545454545454545454545454545 + Iterated 100 times=D22A5F83AEBF80E837D972B456E0AF9C + Iterated 1000 times=BFC2F80EB8A0B2F786BCE4957B95526F + +Set 3, vector# 70: + key=464646464646464646464646464646464646464646464646 + plain=46464646464646464646464646464646 + cipher=9CC3D0DD8BEE34AEFB31266F1760BE70 + decrypted=46464646464646464646464646464646 + Iterated 100 times=049BDA5B152C78754F595421E70109CB + Iterated 1000 times=615835E186EC325FBC7298F412ECE12C + +Set 3, vector# 71: + key=474747474747474747474747474747474747474747474747 + plain=47474747474747474747474747474747 + cipher=69A7EFBBD721AF79A58C342952B5FD97 + decrypted=47474747474747474747474747474747 + Iterated 100 times=F4DBB53F46776DCC58AFE831DD1F09CE + Iterated 1000 times=5C426216C940B67986DBBEFAC554AB13 + +Set 3, vector# 72: + key=484848484848484848484848484848484848484848484848 + plain=48484848484848484848484848484848 + cipher=2D5F8534F68C3657447B86DFB6E15FF7 + decrypted=48484848484848484848484848484848 + Iterated 100 times=A7561485C4EA658C5B6D7D4A2AA0DFA3 + Iterated 1000 times=E1D0A4CCF35B6E01427CF886E3892FAC + +Set 3, vector# 73: + key=494949494949494949494949494949494949494949494949 + plain=49494949494949494949494949494949 + cipher=074277E85DB1C6C680D920F331DEEE8C + decrypted=49494949494949494949494949494949 + Iterated 100 times=721DAA58941F72B64599D8B4AC58709E + Iterated 1000 times=941D210A53248BC2A46D19D953DBFEAB + +Set 3, vector# 74: + key=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + plain=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + cipher=34A22D970DEB2B1278F54150D89D07DB + decrypted=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + Iterated 100 times=947E8E7BF6FA8FA794BB3362B984AE64 + Iterated 1000 times=52ABCA9A9F221D64E7591F2028B0076D + +Set 3, vector# 75: + key=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + plain=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + cipher=98AA51F3D0D955DC491EF67ED4D73AC8 + decrypted=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + Iterated 100 times=5F32B847E21285A13FE07A897788CD9E + Iterated 1000 times=4D1B1BB513AAB9A306790D30331640BD + +Set 3, vector# 76: + key=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + plain=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + cipher=5C1FE4E3BBAC2B2CF2FA3FA824C10781 + decrypted=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + Iterated 100 times=D6CBB28ABAB7BE676FC67C943C0A8867 + Iterated 1000 times=577DC376F43B361F408886F421D8CF2F + +Set 3, vector# 77: + key=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + plain=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + cipher=6392FA8364675C2F0D60301E52291562 + decrypted=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + Iterated 100 times=E2FBA0B363E77E3268B2B754F0120978 + Iterated 1000 times=B19F3781C0FA8D2F7FF764148EB1339B + +Set 3, vector# 78: + key=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + plain=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + cipher=77A71F77238A90FDE9458F3F7279EDDA + decrypted=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + Iterated 100 times=93C8BA49A99E509FDD2CA768AAD799F6 + Iterated 1000 times=607228B88C93B5ADF7FEA8BEB96D6D5F + +Set 3, vector# 79: + key=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + plain=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + cipher=4391AC77F4E9D0D92E998D3951C66354 + decrypted=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + Iterated 100 times=67A540819DF188665FDA77D8C332AC01 + Iterated 1000 times=550954B2FBE619C81778B517BDDECE6B + +Set 3, vector# 80: + key=505050505050505050505050505050505050505050505050 + plain=50505050505050505050505050505050 + cipher=6FE81A1F60B59AB6FDA88F20EB1FF761 + decrypted=50505050505050505050505050505050 + Iterated 100 times=DDDF696BA62E78AF2B67393FD8BCB2BC + Iterated 1000 times=4FB906D403DD025DF5F77B5FB534825E + +Set 3, vector# 81: + key=515151515151515151515151515151515151515151515151 + plain=51515151515151515151515151515151 + cipher=E055FB110DC90B5BC12A2849D14470E1 + decrypted=51515151515151515151515151515151 + Iterated 100 times=20DA692BA213053D31AF092A6124EAD9 + Iterated 1000 times=4976F6958674C5297B98E6DBA27BCC94 + +Set 3, vector# 82: + key=525252525252525252525252525252525252525252525252 + plain=52525252525252525252525252525252 + cipher=7E56A05790DE14B0154C5F24C40B12CC + decrypted=52525252525252525252525252525252 + Iterated 100 times=2F2FF9409EFC8E5C82E56A936DB60279 + Iterated 1000 times=BD2EBD14DBCF6D03D396F631441214CD + +Set 3, vector# 83: + key=535353535353535353535353535353535353535353535353 + plain=53535353535353535353535353535353 + cipher=2F9E9389776963F2EEF5F2A6F96E4C2E + decrypted=53535353535353535353535353535353 + Iterated 100 times=9795B6D65D7E67D6ECA047FF73BE87BB + Iterated 1000 times=FF473E19136B39A84F620B9A8F03B355 + +Set 3, vector# 84: + key=545454545454545454545454545454545454545454545454 + plain=54545454545454545454545454545454 + cipher=E740B1CB45E3A71A133E220A0C104417 + decrypted=54545454545454545454545454545454 + Iterated 100 times=24B060D2FF24794970EC5C6339C10897 + Iterated 1000 times=95CB6F864DB33D6A8754AEB196FB98C4 + +Set 3, vector# 85: + key=555555555555555555555555555555555555555555555555 + plain=55555555555555555555555555555555 + cipher=D8B4B8E8279D0BBFBC89DD1E811CCF4E + decrypted=55555555555555555555555555555555 + Iterated 100 times=C853A81DA4EBDCBB8FAC033DE039E7BC + Iterated 1000 times=06743D6E1AD084DD01F79B3B96714A4E + +Set 3, vector# 86: + key=565656565656565656565656565656565656565656565656 + plain=56565656565656565656565656565656 + cipher=96AFC92D70A7903E5940907C2E5A0692 + decrypted=56565656565656565656565656565656 + Iterated 100 times=3271B701C25118C575613A494A115F69 + Iterated 1000 times=1D35F3CC301C5EB8FA0B24982ED5FE89 + +Set 3, vector# 87: + key=575757575757575757575757575757575757575757575757 + plain=57575757575757575757575757575757 + cipher=3047ED60311E31866FEC0390B3F22A37 + decrypted=57575757575757575757575757575757 + Iterated 100 times=C82719CE3F627519DB931F5818EB9B5A + Iterated 1000 times=3A905601BC5B000B2C4AEE7D8B903B4A + +Set 3, vector# 88: + key=585858585858585858585858585858585858585858585858 + plain=58585858585858585858585858585858 + cipher=CD450A295322C5CB9B96061F86DB1323 + decrypted=58585858585858585858585858585858 + Iterated 100 times=CF01B6A08EF9725BF03110D14F684176 + Iterated 1000 times=B3C064124C2425D88DC88A1746AF4284 + +Set 3, vector# 89: + key=595959595959595959595959595959595959595959595959 + plain=59595959595959595959595959595959 + cipher=158DEF09CEF63410585B1A0A328B94B9 + decrypted=59595959595959595959595959595959 + Iterated 100 times=57EAF29D7D8DAD70B14051E3C6C72110 + Iterated 1000 times=2F5C4168E1C69F53CDE84293598E6B6D + +Set 3, vector# 90: + key=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + plain=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + cipher=CFC7407FF9571CC0B1FEBDC22DA2C470 + decrypted=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + Iterated 100 times=42ACFEF3400A47296FB2FFB86B99F929 + Iterated 1000 times=3137749C7DAA74BFABA457888D915C76 + +Set 3, vector# 91: + key=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + plain=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + cipher=CEDDC1C535129041E57FFCEDBE413207 + decrypted=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + Iterated 100 times=C8D800FBEC6B2E750DFD66303833DBF1 + Iterated 1000 times=31165BB56950199A2C518EEFB9BB06B7 + +Set 3, vector# 92: + key=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + plain=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + cipher=ED941D64FBB8CEE1A3D4A644C42046B4 + decrypted=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + Iterated 100 times=AE8E8740D3E184B51410126AA0D360F2 + Iterated 1000 times=168B636B25B00EDEF7EEB9B67FA7E971 + +Set 3, vector# 93: + key=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + plain=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + cipher=921825C149999097FE1429C251AD0281 + decrypted=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + Iterated 100 times=2AD35DF46698C6461EA23339920D576F + Iterated 1000 times=9E76DCE8DEE37F46C1C7D8EF78B4FA89 + +Set 3, vector# 94: + key=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + plain=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + cipher=017922FA82F1CC384F681BE6AFADEDD6 + decrypted=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + Iterated 100 times=91970FE0B1CE373D21BBFA2B06FD1421 + Iterated 1000 times=AB3F44384355254E0AA0A9B497C3F9CF + +Set 3, vector# 95: + key=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + plain=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + cipher=CD3C7C4D96130D103B3513FF612F9781 + decrypted=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + Iterated 100 times=41D7EE9B5E9F2F02E7FEE5E2DCE454E8 + Iterated 1000 times=1F9F8FD9615FBAF9F451E7F355FF7EE7 + +Set 3, vector# 96: + key=606060606060606060606060606060606060606060606060 + plain=60606060606060606060606060606060 + cipher=B85B3EEA90AA7CBE6C92D572E861574B + decrypted=60606060606060606060606060606060 + Iterated 100 times=76C1DB4E1CE1634D054463A576E81844 + Iterated 1000 times=86A7BE88E692A7DF03B59A0C0AC73C9C + +Set 3, vector# 97: + key=616161616161616161616161616161616161616161616161 + plain=61616161616161616161616161616161 + cipher=B60700284ECBA59FA24962D00CF9C299 + decrypted=61616161616161616161616161616161 + Iterated 100 times=1ACBDC9B20B76FBB06C9894E2288AD53 + Iterated 1000 times=69C59CA79C00384140D2C963845A5B21 + +Set 3, vector# 98: + key=626262626262626262626262626262626262626262626262 + plain=62626262626262626262626262626262 + cipher=5CD7AAA891B4338D902C66CA8999564A + decrypted=62626262626262626262626262626262 + Iterated 100 times=3802BBF525DC439396D37666ACE7891C + Iterated 1000 times=F09E91897CAE3C2424FEE3C326ED8668 + +Set 3, vector# 99: + key=636363636363636363636363636363636363636363636363 + plain=63636363636363636363636363636363 + cipher=0FB2A5C504E939182650CE80A2D97E05 + decrypted=63636363636363636363636363636363 + Iterated 100 times=A60FA3A607E110F3C0CC4B9E7CEBFEC6 + Iterated 1000 times=E92D3171C88AEBDDBB4FF1AD97BD704D + +Set 3, vector#100: + key=646464646464646464646464646464646464646464646464 + plain=64646464646464646464646464646464 + cipher=3D9D50531FA3BD094012682ED8C44182 + decrypted=64646464646464646464646464646464 + Iterated 100 times=3E37A29A1294BE0F60DE71CBDE84292D + Iterated 1000 times=1EADED0CB05B4150E0A7283C0C8F0150 + +Set 3, vector#101: + key=656565656565656565656565656565656565656565656565 + plain=65656565656565656565656565656565 + cipher=5DF78634E865BE6B3DB07CE08CFDC8DD + decrypted=65656565656565656565656565656565 + Iterated 100 times=493DB75E3ED4010D23F264A934E60A13 + Iterated 1000 times=94F7AA843755A51AC346B930991C1531 + +Set 3, vector#102: + key=666666666666666666666666666666666666666666666666 + plain=66666666666666666666666666666666 + cipher=ED275B6DE4D56122ACB55FFB1242287B + decrypted=66666666666666666666666666666666 + Iterated 100 times=C3E5C3B310A262C8DB032CE1687EDB5A + Iterated 1000 times=0B20A639BF8684A7BCD3241BAB1FBE4A + +Set 3, vector#103: + key=676767676767676767676767676767676767676767676767 + plain=67676767676767676767676767676767 + cipher=B6D031F7DCCF28CFF98A3C4B4E8B28CE + decrypted=67676767676767676767676767676767 + Iterated 100 times=96AF3C6FF40DE58490D3AE4420FD9229 + Iterated 1000 times=0DEBC3078939896961CF444C01329A24 + +Set 3, vector#104: + key=686868686868686868686868686868686868686868686868 + plain=68686868686868686868686868686868 + cipher=CD4019C03F8A7FBEBFE521F35905B448 + decrypted=68686868686868686868686868686868 + Iterated 100 times=D27BA356C01B1BA3DC7811C98691382F + Iterated 1000 times=8BBEE18747B3C70668D0194D9DA3C607 + +Set 3, vector#105: + key=696969696969696969696969696969696969696969696969 + plain=69696969696969696969696969696969 + cipher=AA7C3833D84E5DD9E30AC1E7EC05C680 + decrypted=69696969696969696969696969696969 + Iterated 100 times=746757BE8B8B5B398B489EB707DEF357 + Iterated 1000 times=A81E4121C7CAC7E4F4B5AC2F5DE01B14 + +Set 3, vector#106: + key=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + plain=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + cipher=598EB26C79402C793E2864F8654C94AD + decrypted=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + Iterated 100 times=D570CB47AC38FEE15FB3CF2CDEF6380E + Iterated 1000 times=1B7664022DD1D1E3FB29D812302C147B + +Set 3, vector#107: + key=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + plain=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + cipher=2A1FF8AE2F9495C03338222536CAB6C8 + decrypted=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + Iterated 100 times=D16949CDE2552C86933E4F0C834C5D23 + Iterated 1000 times=F3B516248B9523526A69F74A794BDF88 + +Set 3, vector#108: + key=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + plain=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + cipher=5368EDBAB3837ACBC18345B35847C836 + decrypted=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + Iterated 100 times=5976FCE486CCA5994F722B20FC912B04 + Iterated 1000 times=785F2ED6524C1B3078678F83FEEB125B + +Set 3, vector#109: + key=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + plain=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + cipher=72E3F1036F288AEDC1D55EB2EA57D568 + decrypted=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + Iterated 100 times=5FFCC60129E72B6A44D41FC5B3457303 + Iterated 1000 times=0F4107816A0A9E9BE9E53D15B5B6757E + +Set 3, vector#110: + key=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + plain=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + cipher=847AD3349D5D4A1E4F153B5EA07A20C3 + decrypted=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + Iterated 100 times=95F1C8076F3A4A7B35678DD998A3D936 + Iterated 1000 times=F6B23EA505905751C18506393F3C06A9 + +Set 3, vector#111: + key=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + plain=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + cipher=5E1BE4D0130A2CB5F2CF204681A2A609 + decrypted=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + Iterated 100 times=6D7ABA48B97DA6D694484D139B32461B + Iterated 1000 times=5CC40ED2F1658570B441114C7BD365D5 + +Set 3, vector#112: + key=707070707070707070707070707070707070707070707070 + plain=70707070707070707070707070707070 + cipher=9CB95AE635966323B5ABE2902AEADF22 + decrypted=70707070707070707070707070707070 + Iterated 100 times=F63CDF02C6C85C6D5F70B3CD163A0F0B + Iterated 1000 times=878BF83C6E26511E3617B95D30D48076 + +Set 3, vector#113: + key=717171717171717171717171717171717171717171717171 + plain=71717171717171717171717171717171 + cipher=48C747263A674EF179125405FCF1D2F8 + decrypted=71717171717171717171717171717171 + Iterated 100 times=CEC639F4D7E9C92A3B392FBA4D74BAA7 + Iterated 1000 times=84249819F5B166E681BDC72511C85918 + +Set 3, vector#114: + key=727272727272727272727272727272727272727272727272 + plain=72727272727272727272727272727272 + cipher=B1F813C47E33AEA05FC72CA513C580C1 + decrypted=72727272727272727272727272727272 + Iterated 100 times=0BBF4DC59E5D53BFC2F8106F822F4E15 + Iterated 1000 times=7F6ED8D0D59D174598FF1A5C325739A3 + +Set 3, vector#115: + key=737373737373737373737373737373737373737373737373 + plain=73737373737373737373737373737373 + cipher=2E3FACAEA4A3A18F611010E5D83E1E43 + decrypted=73737373737373737373737373737373 + Iterated 100 times=E5683FE4FF7EAA883E99A83ACF0AD628 + Iterated 1000 times=A7AD3F7224A507F2C2454D6C70178824 + +Set 3, vector#116: + key=747474747474747474747474747474747474747474747474 + plain=74747474747474747474747474747474 + cipher=CD922AF6AB5FE56681806BC85FBFD7E7 + decrypted=74747474747474747474747474747474 + Iterated 100 times=F0FD42705E6972ED8FD9E43238602C96 + Iterated 1000 times=9C11D91953756BC30BB9AA8989CE8EC4 + +Set 3, vector#117: + key=757575757575757575757575757575757575757575757575 + plain=75757575757575757575757575757575 + cipher=44FF04DAEB36C9C04F85CE0B17C3726F + decrypted=75757575757575757575757575757575 + Iterated 100 times=9872D98BA4B06BFE543A83DC392FD1AF + Iterated 1000 times=D040B4C88D1F7CE38A6325038E3E65B1 + +Set 3, vector#118: + key=767676767676767676767676767676767676767676767676 + plain=76767676767676767676767676767676 + cipher=D4B58AE3A2530A52D6D81F5DA830C9D9 + decrypted=76767676767676767676767676767676 + Iterated 100 times=5228CE253C06BDBD3FE54AC2B4A05E53 + Iterated 1000 times=E3BE3A66BFCC3BDBE8B4F4AC0E31F621 + +Set 3, vector#119: + key=777777777777777777777777777777777777777777777777 + plain=77777777777777777777777777777777 + cipher=4AC313A9501DB8AE3F601083108DED59 + decrypted=77777777777777777777777777777777 + Iterated 100 times=AB92CDD96147381856EE511DF407116A + Iterated 1000 times=069C5C1FB3619C1FA436755A6655DEC4 + +Set 3, vector#120: + key=787878787878787878787878787878787878787878787878 + plain=78787878787878787878787878787878 + cipher=DD2D90842EFC4F479EB06DE18AAB40D8 + decrypted=78787878787878787878787878787878 + Iterated 100 times=90C2BD1D9BFF9AADC295D16E8EA39D58 + Iterated 1000 times=857506A53CEEF69343769FADC123A0E1 + +Set 3, vector#121: + key=797979797979797979797979797979797979797979797979 + plain=79797979797979797979797979797979 + cipher=4FDF60132BDC4B78B9F3200AB75A95C5 + decrypted=79797979797979797979797979797979 + Iterated 100 times=E4070F8931FD2B6FADFFE0FC4D758DDA + Iterated 1000 times=F64E34A39FB36155CF505611AF45A681 + +Set 3, vector#122: + key=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + plain=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + cipher=F848E3FEE0E41088500E294E6B21CAB4 + decrypted=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + Iterated 100 times=48DD6E09C879E1DD037E4A5F257BA2F1 + Iterated 1000 times=9D3B2C1416E1597D049C16584B3CA5F5 + +Set 3, vector#123: + key=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + plain=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + cipher=A630C9DC414D16A5E4917B64952BB5AC + decrypted=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + Iterated 100 times=FEE9D30EEF59FFC5909264D80216AE1E + Iterated 1000 times=F7B98CD66CF54C0114A8834225A26629 + +Set 3, vector#124: + key=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + plain=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + cipher=9C8D971E8602B18C8213F2F3C8A3A16D + decrypted=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + Iterated 100 times=DB7C1EF20F38743D5B30E1B11E6A33BC + Iterated 1000 times=A27BAD84FC974EEF022F879709C75D31 + +Set 3, vector#125: + key=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + plain=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + cipher=5E2243516536EF7853401D586CD9DD48 + decrypted=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + Iterated 100 times=9891E2B0165E689BBB4BD28161DB213B + Iterated 1000 times=C72A2C5ECD1544757F2074DBF7760A1D + +Set 3, vector#126: + key=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + plain=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + cipher=8BB745D510D4D3F5346DFE4CFDF6A93D + decrypted=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + Iterated 100 times=D6C67EE443ABE4CC7B32779D4BB295D8 + Iterated 1000 times=DC90C7BBA440EFF53D50B27DFC0FC767 + +Set 3, vector#127: + key=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + plain=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + cipher=CF69434491262A68C340E10E593AEA2C + decrypted=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + Iterated 100 times=65B3AA186E07FF680B733FBEC1279A26 + Iterated 1000 times=BFBF5E4C0EE48CE95E8277FCE7A5B149 + +Set 3, vector#128: + key=808080808080808080808080808080808080808080808080 + plain=80808080808080808080808080808080 + cipher=1D08A80F9FB7F489EB7F656D931A2610 + decrypted=80808080808080808080808080808080 + Iterated 100 times=FC0D941C458D2BABCF4B7DE501F97A23 + Iterated 1000 times=A58D91FCB5AC6E99010F4CD4BFD4578D + +Set 3, vector#129: + key=818181818181818181818181818181818181818181818181 + plain=81818181818181818181818181818181 + cipher=A77BF1A5719F8152D17973A8E9640C30 + decrypted=81818181818181818181818181818181 + Iterated 100 times=0AAA6C1DA8EF957C734D5153B6745F5A + Iterated 1000 times=FA0AD72D9AF05ECD408804EE25E2935F + +Set 3, vector#130: + key=828282828282828282828282828282828282828282828282 + plain=82828282828282828282828282828282 + cipher=DE6596B8D81FC56005EC439C684A68C6 + decrypted=82828282828282828282828282828282 + Iterated 100 times=0A0A1D6FF7719D6E16DC7E7C36899A64 + Iterated 1000 times=340502EAF5E1385AC0131433190B7BCA + +Set 3, vector#131: + key=838383838383838383838383838383838383838383838383 + plain=83838383838383838383838383838383 + cipher=FF148B372FA591F269FDDE518B53F0E9 + decrypted=83838383838383838383838383838383 + Iterated 100 times=EAC673E95F3EB980581AC68FA13BFD79 + Iterated 1000 times=CE564872F0879E0817CE225CC533C269 + +Set 3, vector#132: + key=848484848484848484848484848484848484848484848484 + plain=84848484848484848484848484848484 + cipher=27B18454802C46EA1C47A355D21500A3 + decrypted=84848484848484848484848484848484 + Iterated 100 times=5AA8543F40F330CDCEF1C86C5D67F4FE + Iterated 1000 times=754F989A51EE6B4D4C6C75C4EF674C2A + +Set 3, vector#133: + key=858585858585858585858585858585858585858585858585 + plain=85858585858585858585858585858585 + cipher=064A8832358916E278561E26231D3DD1 + decrypted=85858585858585858585858585858585 + Iterated 100 times=547571C182B69BAD08C470B87F71AD7E + Iterated 1000 times=EBC045B41575D76F177BB5B671899144 + +Set 3, vector#134: + key=868686868686868686868686868686868686868686868686 + plain=86868686868686868686868686868686 + cipher=B2D295F648E2B270DE8535C58C69E1B1 + decrypted=86868686868686868686868686868686 + Iterated 100 times=BBFE5DE774BE6D55A0A7B77CAEE8E712 + Iterated 1000 times=A23D2425A3C0D20FE390370F4272D8FD + +Set 3, vector#135: + key=878787878787878787878787878787878787878787878787 + plain=87878787878787878787878787878787 + cipher=E950A5037E7EE1825EB1D0BCA1E85400 + decrypted=87878787878787878787878787878787 + Iterated 100 times=C67D3E92B2CA5DCA1F4B4B10418299B4 + Iterated 1000 times=F90C27188027525AC8AD75967DD5BD0B + +Set 3, vector#136: + key=888888888888888888888888888888888888888888888888 + plain=88888888888888888888888888888888 + cipher=45438B08172F53E47DFB8C0A7242387B + decrypted=88888888888888888888888888888888 + Iterated 100 times=C660C354D6A1D829B01A86276EAF16C9 + Iterated 1000 times=A375E21133AE79139F3A0F726B2AC14C + +Set 3, vector#137: + key=898989898989898989898989898989898989898989898989 + plain=89898989898989898989898989898989 + cipher=18FE5D14956A828B3C2B7216DC6C14A0 + decrypted=89898989898989898989898989898989 + Iterated 100 times=4C1F003EB9F3164AE79AE2FE3A3870A4 + Iterated 1000 times=A30514B22F41429487A499D946ADE162 + +Set 3, vector#138: + key=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + plain=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + cipher=256F624531DBB1CE8D6ABAC863AD2453 + decrypted=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + Iterated 100 times=508844F9E8447CCB3D8C489ED0551B59 + Iterated 1000 times=C1DF37279D9EACA610F792E8FFFE0D2B + +Set 3, vector#139: + key=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + plain=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + cipher=6077221186633E4A5845CBB2A5007C36 + decrypted=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + Iterated 100 times=BCFBFA465B7B7F7AAC6647130ACC108C + Iterated 1000 times=76E1EBE7BAB370CBBA24CC98460120EA + +Set 3, vector#140: + key=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + plain=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + cipher=EE16ABC5C7802EED3B8B8736055B7CC9 + decrypted=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + Iterated 100 times=A3E521B1C502FF577A06BEF8A7569A47 + Iterated 1000 times=E6ED07FC098722B79E2F6C08778541FF + +Set 3, vector#141: + key=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + plain=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + cipher=F3188487ED57D031A9F621E74C5517CF + decrypted=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + Iterated 100 times=2BDEFAE6FD131F08172520B70B4466E2 + Iterated 1000 times=30F1DA639184EE6159CE60A522CB4E67 + +Set 3, vector#142: + key=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + plain=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + cipher=138635A6C012A680DEBF68A4DF66F77E + decrypted=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + Iterated 100 times=AB5F252965E9CEE786FC3EDE1A9D9064 + Iterated 1000 times=A477EF93436F65A261BC9C1FBFD71A40 + +Set 3, vector#143: + key=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + plain=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + cipher=7266DBB1627B6C9CD2DB504BF43FD5DD + decrypted=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + Iterated 100 times=328E0846CDC0F290092935EA0F44A6A9 + Iterated 1000 times=24C5FAA916A148FA1373453B69009017 + +Set 3, vector#144: + key=909090909090909090909090909090909090909090909090 + plain=90909090909090909090909090909090 + cipher=A9FF9704938E63A710FE8407D6DD350E + decrypted=90909090909090909090909090909090 + Iterated 100 times=3B9CA076CE11C912E524CE2AF4BC38B5 + Iterated 1000 times=C02F4C0DF1787223C01D83DD34569DA2 + +Set 3, vector#145: + key=919191919191919191919191919191919191919191919191 + plain=91919191919191919191919191919191 + cipher=925B189E92F0513B8D3F94EA646EDBDB + decrypted=91919191919191919191919191919191 + Iterated 100 times=6CF6BD35FFD5E23135919105A1774779 + Iterated 1000 times=75845546D69645C40226032A89DB5CF6 + +Set 3, vector#146: + key=929292929292929292929292929292929292929292929292 + plain=92929292929292929292929292929292 + cipher=FCE64BE3D2B108D573BB566C8C7A6EEA + decrypted=92929292929292929292929292929292 + Iterated 100 times=4200BC1D845319EB421BCCB8D6F45B73 + Iterated 1000 times=F3612590C04BD669525FCFA79CD92EAF + +Set 3, vector#147: + key=939393939393939393939393939393939393939393939393 + plain=93939393939393939393939393939393 + cipher=E435FB2C6B2F61847663BA110AAED47D + decrypted=93939393939393939393939393939393 + Iterated 100 times=414FDABAED93721EFAB51C8B9A13AD09 + Iterated 1000 times=9553BB8178039D4C8152FC2F9FD0982B + +Set 3, vector#148: + key=949494949494949494949494949494949494949494949494 + plain=94949494949494949494949494949494 + cipher=75E1CEDF1932E13619FD6841EBC3D667 + decrypted=94949494949494949494949494949494 + Iterated 100 times=B71E825CD1E720BE08A059F72C099DE3 + Iterated 1000 times=6C5656F438DA1C7FD1B62F66A636CFC6 + +Set 3, vector#149: + key=959595959595959595959595959595959595959595959595 + plain=95959595959595959595959595959595 + cipher=6451C579F3DC9700CA0D26A2758618D7 + decrypted=95959595959595959595959595959595 + Iterated 100 times=9574157E3135E8403E15F146DC8BDC75 + Iterated 1000 times=3C6519CC599CFFD271942AC5536D337F + +Set 3, vector#150: + key=969696969696969696969696969696969696969696969696 + plain=96969696969696969696969696969696 + cipher=A7F0DCF80B8B2FF1EDA46F40F57F505D + decrypted=96969696969696969696969696969696 + Iterated 100 times=74A75C7ACA11B79F2E8348F14983CF98 + Iterated 1000 times=9A74082E019DC38CC2919FA8BCAE663E + +Set 3, vector#151: + key=979797979797979797979797979797979797979797979797 + plain=97979797979797979797979797979797 + cipher=0E6B788A275EE3A991841DE1D617F84D + decrypted=97979797979797979797979797979797 + Iterated 100 times=FBA5840760748769277C77FFAB9D7585 + Iterated 1000 times=5C6F0D5E7A13CC8DD9A345ABA88421C7 + +Set 3, vector#152: + key=989898989898989898989898989898989898989898989898 + plain=98989898989898989898989898989898 + cipher=C5F857EDA85D0292C19515FBA19C7741 + decrypted=98989898989898989898989898989898 + Iterated 100 times=98155C8446E3F2726195DF576AE1F2BD + Iterated 1000 times=DCE90304E620E8AE62643E366D694920 + +Set 3, vector#153: + key=999999999999999999999999999999999999999999999999 + plain=99999999999999999999999999999999 + cipher=428E5655A6AF60D2CC0909B43F8BDA25 + decrypted=99999999999999999999999999999999 + Iterated 100 times=14895C1A0CD0F33EDB97062522FD47F0 + Iterated 1000 times=D40EE73C1F82C5EE5F7A7A268C125CCD + +Set 3, vector#154: + key=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + plain=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + cipher=D5F05B425D1B98F136F7B6EB9CDC99FA + decrypted=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + Iterated 100 times=4E325F3BD3B7DE08A50B03002B87DE79 + Iterated 1000 times=91813259ACDD432E92C3160DE7D30CAE + +Set 3, vector#155: + key=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + plain=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + cipher=AFA5353FC1FB82D0DB48F8077775BA12 + decrypted=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + Iterated 100 times=743709A7B093A8CF60BC6BFDE686DCBD + Iterated 1000 times=D0D2507114936728D2A4909D5BC8368A + +Set 3, vector#156: + key=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + plain=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + cipher=8814A7F43DB38B9EBF65F2C9AB635F2A + decrypted=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + Iterated 100 times=7D592E7087815A8738F3F82939663C80 + Iterated 1000 times=DEA3AB9831B33670F7293D93E9FA7FA8 + +Set 3, vector#157: + key=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + plain=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + cipher=4484AB7CE857D9A9B90D916875D937AF + decrypted=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + Iterated 100 times=2F3263278DB531CDEEDE67E0015511C7 + Iterated 1000 times=5C350D458267711E1D44343CE1556229 + +Set 3, vector#158: + key=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + plain=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + cipher=0EDCE67042608A1A292B7ACB2E0A18D0 + decrypted=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + Iterated 100 times=E52260000E0C715A213553FF41571A54 + Iterated 1000 times=1132B073C76CEB5EFCD75FDCC95D1EF9 + +Set 3, vector#159: + key=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + plain=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + cipher=77F079F37E7430BE094B8D3AD48245F7 + decrypted=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + Iterated 100 times=103623AE182BB2C55A854BA54788AFE6 + Iterated 1000 times=655F58C43DECCC326841A61E91C5A731 + +Set 3, vector#160: + key=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + plain=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + cipher=A8E758F22485DD51618248DF97D3EA47 + decrypted=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + Iterated 100 times=861F42EE4D92144D868664356F8B50DC + Iterated 1000 times=0D8363F2808581A9FBDF700F7F21E09B + +Set 3, vector#161: + key=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + plain=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + cipher=DE5BE44AA8820ACC6E0EED21073AEF89 + decrypted=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + Iterated 100 times=91ADBA39E156ECB27DA584C2276A38A5 + Iterated 1000 times=53175729859206B8CC7D82A8F0252042 + +Set 3, vector#162: + key=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + plain=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + cipher=C3DBBB607C2678A87E2659AC4DD42379 + decrypted=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + Iterated 100 times=18DE15AE7CF6E316C67574673508B275 + Iterated 1000 times=8DBCB02B91CF9DB6553AB17111BB54F1 + +Set 3, vector#163: + key=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + plain=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + cipher=214918236075238CF834A40B0235B655 + decrypted=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + Iterated 100 times=9F58578BF3D0F1EC55459DE3815D1DAD + Iterated 1000 times=D6C99DBCC16F5586AA8202BAE2956979 + +Set 3, vector#164: + key=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + plain=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + cipher=43DAA8D0BB135901A6DBF676803BC977 + decrypted=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + Iterated 100 times=0F3E678E3D4472EE790679F70034CC4C + Iterated 1000 times=B1E15263DD6D5F2514D2FEC5CAD4114E + +Set 3, vector#165: + key=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + plain=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + cipher=6AE8B4EA14D66C1EC088FE637D3A75C5 + decrypted=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + Iterated 100 times=CB1724D3FAB4D6CEC251835F7D85507C + Iterated 1000 times=A0BED6001CF324DCFBD52A4ED5506F0A + +Set 3, vector#166: + key=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + plain=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + cipher=3E5F4EA9D84F96B26976F76F9259E0B7 + decrypted=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + Iterated 100 times=DE0ABCC6717640D9FCF07FAB455EDCC4 + Iterated 1000 times=F9C2F0ABF446198CC8CCC80DA449DD14 + +Set 3, vector#167: + key=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + plain=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + cipher=D90D7598069BD158AC89E72286A2D1CF + decrypted=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + Iterated 100 times=FA2345C730D448049EFAA838F59CF31A + Iterated 1000 times=A7279405778B4FC4C699C2D79FF4CAB3 + +Set 3, vector#168: + key=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + plain=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + cipher=57A1F9C7DA6EC1D895EBD73B3E59FDD0 + decrypted=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + Iterated 100 times=DDEC0C94D80C9B8B1A2DFECC81FE7092 + Iterated 1000 times=9E0547048EDAB2FCF2A46C0F4009C58A + +Set 3, vector#169: + key=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + plain=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + cipher=09F96E5E03BFA89E96AFAC511A76DA5D + decrypted=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + Iterated 100 times=A816CEB1D9DAEBA480EBFE3215D18DAB + Iterated 1000 times=4FB5E2A891738D451F0AADC34259D28F + +Set 3, vector#170: + key=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + plain=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + cipher=23377DCD5FB79C1DE85A4B9FFB4D8EDB + decrypted=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + Iterated 100 times=31F6080791A887793DA54C8591C5638A + Iterated 1000 times=5AB34791589900644456C864621F7BCC + +Set 3, vector#171: + key=ABABABABABABABABABABABABABABABABABABABABABABABAB + plain=ABABABABABABABABABABABABABABABAB + cipher=3CA18AF74DE262F16582A618A860D119 + decrypted=ABABABABABABABABABABABABABABABAB + Iterated 100 times=22C86D7C356E93CD3F38F4CE1FD68C59 + Iterated 1000 times=4A83FFA92C68F2881F0AC924FD825A2F + +Set 3, vector#172: + key=ACACACACACACACACACACACACACACACACACACACACACACACAC + plain=ACACACACACACACACACACACACACACACAC + cipher=1C4894B07892AC6FFF2144BEE57F8E69 + decrypted=ACACACACACACACACACACACACACACACAC + Iterated 100 times=2E61F7A58631D7F433019E2F95A0A82E + Iterated 1000 times=BF3374EE66E6C1B8E2F1006B5FD63417 + +Set 3, vector#173: + key=ADADADADADADADADADADADADADADADADADADADADADADADAD + plain=ADADADADADADADADADADADADADADADAD + cipher=A2CA512F960B091ED8D8D4E506BB2DDF + decrypted=ADADADADADADADADADADADADADADADAD + Iterated 100 times=C79B8A65DD3864DF6B61727E8CBD87E2 + Iterated 1000 times=4D1F5C0816D2505ACAF63A6BCF98ACF6 + +Set 3, vector#174: + key=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + plain=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + cipher=113CAD3E8D6C278B0F4425B16A891D25 + decrypted=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + Iterated 100 times=00ED1525E9DE04BDC6CE3BCEF4F47C8C + Iterated 1000 times=C3BFFD3EDD38FDAAD39807EF6D35518D + +Set 3, vector#175: + key=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + plain=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + cipher=0D3EFA44FF12E9363CD003A08F7E2E1D + decrypted=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + Iterated 100 times=C04479B8F8F0A20B2B05D5BE47B729CE + Iterated 1000 times=B6D6F86C79EFBA4C102011E28E66867D + +Set 3, vector#176: + key=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + plain=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + cipher=17C5A1930C92FD37A8174F5B7889DA10 + decrypted=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + Iterated 100 times=72D0B6EA2E618B945EB91697C2978AA9 + Iterated 1000 times=6920A07A98C0D34BB9BBA85D61FF46FF + +Set 3, vector#177: + key=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + plain=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + cipher=63B57D935F44C02A468CF207174BBB01 + decrypted=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + Iterated 100 times=F2735BC7D0C06C0DE3CF7DFB9ABF84B8 + Iterated 1000 times=CB5660A4F05D38913084EA6DAC118EC5 + +Set 3, vector#178: + key=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + plain=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + cipher=38B635F02EE409D47E03CA07CC9E6D6B + decrypted=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + Iterated 100 times=BDD815E63C36ED5B24B3E9D16C86CE27 + Iterated 1000 times=A1C21F189B914D55962CDA5849585B30 + +Set 3, vector#179: + key=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + plain=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + cipher=F1ABDA2C1CA9AFBE5E50E43DFF725B28 + decrypted=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + Iterated 100 times=4DEAFE23DEA957B91BF04581EC94003A + Iterated 1000 times=34C7C1226918E3A116C5C634C64724AF + +Set 3, vector#180: + key=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + plain=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + cipher=E56E360BCF299BB48F3ED9785ECD2BF8 + decrypted=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + Iterated 100 times=989FD37E7D3AB38F7F494053BA324BE0 + Iterated 1000 times=7DC57DB277F06925670A17D526FCA655 + +Set 3, vector#181: + key=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + plain=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + cipher=8EADDD4BF673665072243BA2827D5C72 + decrypted=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + Iterated 100 times=4657647CECD28692CADEECA180A3B0DA + Iterated 1000 times=0F64FAE80FFADBD7DA6B6FECE363F894 + +Set 3, vector#182: + key=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + plain=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + cipher=9557C635E230268CC10AB8627DD61216 + decrypted=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + Iterated 100 times=A968C5CB9D677D4DED34343962520044 + Iterated 1000 times=8FB745D6F64DB8A15F56F1C56D2B1429 + +Set 3, vector#183: + key=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + plain=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + cipher=456D256283A5DAE9FBA9C6C79E5977A6 + decrypted=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + Iterated 100 times=521C2B83E30D89F5467B82C1E09CF07D + Iterated 1000 times=5C2D2FBCC484C233D7895907AB796040 + +Set 3, vector#184: + key=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + plain=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + cipher=4BF27FB9759EF10A933109D1F7D6634E + decrypted=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + Iterated 100 times=84E5096140D7CF084DDE643CEFEB8CF0 + Iterated 1000 times=C28137195CD773A834430406310D0BBB + +Set 3, vector#185: + key=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + plain=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + cipher=B3E13FD0FFA8685BAD14DB2CDAD09F78 + decrypted=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + Iterated 100 times=086780115526DB04F0D2F56745A9353D + Iterated 1000 times=9D0CA1F18AA2771BBF98F976CCBC1C91 + +Set 3, vector#186: + key=BABABABABABABABABABABABABABABABABABABABABABABABA + plain=BABABABABABABABABABABABABABABABA + cipher=8632F491FA906DAC20607318C99E49E2 + decrypted=BABABABABABABABABABABABABABABABA + Iterated 100 times=CFC6E1B2A63DBFB268DA86D14A4C853F + Iterated 1000 times=F62BEEDF6B256421938A6BE5A7B122EB + +Set 3, vector#187: + key=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + plain=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + cipher=FDF34CCC092318FE5BDFBF7B02679E70 + decrypted=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + Iterated 100 times=9D53781C872FD303B060A5A8FA67FECB + Iterated 1000 times=9FED0B97F9DDF4E14FBB95ABD57A0298 + +Set 3, vector#188: + key=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + plain=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + cipher=7F8FA1F8C328B50D987A861F3C292192 + decrypted=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + Iterated 100 times=1A5F932CE4F833E6660048D74495915D + Iterated 1000 times=9C927F0B3F28F6DF535063855DFD2F11 + +Set 3, vector#189: + key=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + plain=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + cipher=E1BFAEF68780BAAB8E6FB00BC8A65EA9 + decrypted=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + Iterated 100 times=27B337CEE52E57CD89C35E37CE7B029A + Iterated 1000 times=668B653DA90329D727F0122ECBD1B571 + +Set 3, vector#190: + key=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + plain=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + cipher=801EE07DDC38335236DA6874C4521897 + decrypted=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + Iterated 100 times=94229FADED6B46C665419AD3A3C9AECD + Iterated 1000 times=8C6319C3A39005BD271ED0EA2E7F5459 + +Set 3, vector#191: + key=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + plain=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + cipher=AE7819D9CEF1C104BD811377F5C6F2B0 + decrypted=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + Iterated 100 times=7D0BDA861DE16E85B520BA3370C7F76F + Iterated 1000 times=48C181A0F8DFE789CC74B448D76EDBCA + +Set 3, vector#192: + key=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + plain=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + cipher=4926E1F79F8AD7B300FE9D5F36BA3D43 + decrypted=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + Iterated 100 times=06873A29BA0EA07A3C906A3E3B433837 + Iterated 1000 times=FDC18888AD259D8203744278E62FE61B + +Set 3, vector#193: + key=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + plain=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + cipher=3AC1ACCE42DC5536F3E5D0AF94711B98 + decrypted=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + Iterated 100 times=879F7EE1CA0FF5BC0D4C01828A61CB30 + Iterated 1000 times=564F78DE334F6C423664C3C937957B18 + +Set 3, vector#194: + key=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + plain=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + cipher=1730E521B8D2776F8E586A462610E749 + decrypted=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + Iterated 100 times=DEF90AD43AF0C4B80FDC9266BB8995CD + Iterated 1000 times=85C82080E1CEC844537D52DD4DE6990A + +Set 3, vector#195: + key=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + plain=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + cipher=423DC480EF39B80AABA53A0877A0C9DE + decrypted=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + Iterated 100 times=3954CE305385FB1C14B15B7C688E6009 + Iterated 1000 times=C84E1D505DF2D92B6D5489E7660475BA + +Set 3, vector#196: + key=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + plain=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + cipher=FE08F15E0FE6B5D8F33616BB28B7FB7F + decrypted=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + Iterated 100 times=75C77278A25B206A69DC962BDFBD7D6B + Iterated 1000 times=E78E7D2F3284E46A3C5D63B8546C80D0 + +Set 3, vector#197: + key=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + plain=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + cipher=0D5FF08C131F37852C05908ECF4D1827 + decrypted=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + Iterated 100 times=AD546CCE17431C783A01EF7E1250EE9F + Iterated 1000 times=D22147E6F4C68DF9BC79688076C2BF12 + +Set 3, vector#198: + key=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + plain=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + cipher=C2089DBC26CC34049D9A33C7545B5653 + decrypted=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + Iterated 100 times=05453C6B5AD18A1100B1927B4F3806F4 + Iterated 1000 times=0BA6A383DD48689F3F4BFA6D77181E32 + +Set 3, vector#199: + key=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + plain=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + cipher=C87E84E343033EC8E8B5AAE11A627688 + decrypted=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + Iterated 100 times=6CD3852975B07F74160FBC443A34F929 + Iterated 1000 times=E5EBB14F0C4728C5A4AC0ABABB9D3F7D + +Set 3, vector#200: + key=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + plain=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + cipher=A3EF123769BB1BC0E48612F9CCBADDF5 + decrypted=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + Iterated 100 times=95840F1F54E3DDB6C0ECC51145E8F2E1 + Iterated 1000 times=3E485264F3790021653E8F3E9EDE9593 + +Set 3, vector#201: + key=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + plain=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + cipher=277A79E79F3EDA3A269EA9EFBC66AF10 + decrypted=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + Iterated 100 times=A8A3B1415E5B69ABE7194CDC6B2891A1 + Iterated 1000 times=9ED927770E94900B0436AE85CA348D39 + +Set 3, vector#202: + key=CACACACACACACACACACACACACACACACACACACACACACACACA + plain=CACACACACACACACACACACACACACACACA + cipher=621200CB9CF90B7EF96E37FA9E793A9C + decrypted=CACACACACACACACACACACACACACACACA + Iterated 100 times=6685620BBCBC2FFA49B46ECBEBD3939A + Iterated 1000 times=5641250680BA3885E275238CD59253F9 + +Set 3, vector#203: + key=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + plain=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + cipher=EBA680C826DA0D7C38C0D8740FED9532 + decrypted=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + Iterated 100 times=2B275024C8607BDF39EE91BA3FB95E21 + Iterated 1000 times=C10867C5A72406B241E2281EF6AB6188 + +Set 3, vector#204: + key=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + plain=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + cipher=766C0EEAAEDBC7F6672B163FBE5BDDBC + decrypted=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + Iterated 100 times=495320F3827515A0DFDAE6FA2372CE25 + Iterated 1000 times=2FA11E04845E3F94F273EB212CB4A2D4 + +Set 3, vector#205: + key=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + plain=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + cipher=9A26C8A409A402738C358BC8ECEEFE41 + decrypted=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + Iterated 100 times=EE5B893D1AAB3D4223412FE38FAE5587 + Iterated 1000 times=1798853668DF309B02FA6CA593E86AE1 + +Set 3, vector#206: + key=CECECECECECECECECECECECECECECECECECECECECECECECE + plain=CECECECECECECECECECECECECECECECE + cipher=5B87AF4328993E1DA5AFA91591128D2E + decrypted=CECECECECECECECECECECECECECECECE + Iterated 100 times=5A897FA2E1599C24A1DC3DF079D596C4 + Iterated 1000 times=76433C2B1BBB6F2FFA885D9247CC3FFF + +Set 3, vector#207: + key=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + plain=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + cipher=668A8AE6B06093645A8F816B42DA6493 + decrypted=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + Iterated 100 times=04A01351393F9F6B04194ACC643AA89E + Iterated 1000 times=8F80A84884A7599E551876CEA7D566B5 + +Set 3, vector#208: + key=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + plain=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + cipher=051EF49497296815D68B7A53D27AF947 + decrypted=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + Iterated 100 times=4DC48C22A1DF552617724B82F5B443C4 + Iterated 1000 times=511AB7DD456225B39D2758B669FBE870 + +Set 3, vector#209: + key=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + plain=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + cipher=713B77E51753259FC591A2D767B35C2A + decrypted=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + Iterated 100 times=5E9F09AD88D3EC0637A31972A98F0A3B + Iterated 1000 times=3B8D46D64FADC32AAE3628B95E61472F + +Set 3, vector#210: + key=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + plain=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + cipher=52CE6558097CFD93F1895F658930F86B + decrypted=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + Iterated 100 times=A35BA550883B18C6EAB09566DA255E64 + Iterated 1000 times=992A18C8188FD9F384CB1D49529AE4D6 + +Set 3, vector#211: + key=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + plain=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + cipher=17E4112F368C160AB224398381027330 + decrypted=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + Iterated 100 times=0FEDC8FA865C5308DF4B693D05CE4E7B + Iterated 1000 times=5A7D5860559F328850293EDE880B0B77 + +Set 3, vector#212: + key=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + plain=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + cipher=BF22E48FAF91904E482F1B7FFA659B21 + decrypted=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + Iterated 100 times=18B37B518E0FAD4879341637F4E0B9B9 + Iterated 1000 times=954A74E2C1701E01F651A11C67986749 + +Set 3, vector#213: + key=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + plain=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + cipher=0B605E105CE9FEB0F2B5E17E1AEBF6F1 + decrypted=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + Iterated 100 times=66CC9B6A0748403D25882EF7FA646A30 + Iterated 1000 times=AED7F7D5C28D943F1AED96FA4B5A30D1 + +Set 3, vector#214: + key=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + plain=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + cipher=FAF326ECEB99C0BA46AFDA0042530D12 + decrypted=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + Iterated 100 times=9334D7D5B125623417AB49284B4BAB69 + Iterated 1000 times=3BB772680C1D6F8AF3440E7CBBF3B505 + +Set 3, vector#215: + key=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + plain=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + cipher=8BBA279D38C6F0E4851F017032AE5C03 + decrypted=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + Iterated 100 times=5F0C24D43F3854440925A59AFCDB7C15 + Iterated 1000 times=A4B11D2D4892E065A76618A71D375CFB + +Set 3, vector#216: + key=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + plain=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + cipher=1ABA80EC387B75C582E95A5A88E74DFE + decrypted=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + Iterated 100 times=3EA0A8559464EBBCA1648DF6308D49F9 + Iterated 1000 times=FD42F9158510E26C98A5141EA832E61D + +Set 3, vector#217: + key=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + plain=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + cipher=2E64271784317F4C4C06630D84793F4E + decrypted=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + Iterated 100 times=97C9DE96DA528D67EDB356D2F83FFE2B + Iterated 1000 times=A4A8160B76AB20B3AECCB925C873EC46 + +Set 3, vector#218: + key=DADADADADADADADADADADADADADADADADADADADADADADADA + plain=DADADADADADADADADADADADADADADADA + cipher=284AC6247EEC3F8AEBD61E1275FD5162 + decrypted=DADADADADADADADADADADADADADADADA + Iterated 100 times=16A36FF99F94FFF3D462C17506DBE03A + Iterated 1000 times=C41C6CC1F97894594B5F59C9D1D7AC89 + +Set 3, vector#219: + key=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + plain=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + cipher=461F601B1852976F112CF75E6A23FB0E + decrypted=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + Iterated 100 times=8196B10F6C4678D01C7A6713EF61E522 + Iterated 1000 times=BDD217DBA4C0DF3AD0A52F041802D385 + +Set 3, vector#220: + key=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + plain=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + cipher=48F7F33C9A28FC221578CCA20E7C26F7 + decrypted=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + Iterated 100 times=B5E92EE9EDBF99E3EDABD8FC038AF0B4 + Iterated 1000 times=8E963E59D9D0BC8C2BAB5F44023FC7C1 + +Set 3, vector#221: + key=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + plain=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + cipher=10DDB229007D0252E5490FAA25BF4DDE + decrypted=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + Iterated 100 times=45F265D0DBF9A61C823B7E99ADB2CC7C + Iterated 1000 times=4F439B1BA10B6CB38689DFC23F3CC396 + +Set 3, vector#222: + key=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + plain=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + cipher=EDDDFFD7F4287C63434F95785DDCCA09 + decrypted=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + Iterated 100 times=3DC04983441D4C63FBA926E54A4164E7 + Iterated 1000 times=4591AA3CA3998D9A1B4CA413967C4775 + +Set 3, vector#223: + key=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + plain=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + cipher=C42164A2195CE7855A858884E1478345 + decrypted=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + Iterated 100 times=22402484D2FB697F56D390C4F7D7F2A5 + Iterated 1000 times=18292989E5CB898AE71923F9BFC7A0DC + +Set 3, vector#224: + key=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + plain=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + cipher=1E794FD62A2322BA807995EB49FDF123 + decrypted=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + Iterated 100 times=11081EFCB7A2E57D21058C702C50F74C + Iterated 1000 times=FFE1901DB98B924A5F0B157A0F14F2D8 + +Set 3, vector#225: + key=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + plain=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + cipher=00E4D04DC41627FD1F81D1B295160942 + decrypted=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + Iterated 100 times=6C9CDF09B2D1FA9AFEBA7EF3B5C890C4 + Iterated 1000 times=12D3AC4482F5CA41BEFDD3D8AC491419 + +Set 3, vector#226: + key=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + plain=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + cipher=ACCE259423BD1242B13B04FED91D7957 + decrypted=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + Iterated 100 times=AAEF407EA688C699D4499B22EFF677C4 + Iterated 1000 times=06A2DD39E9538CE4062D172D789F5F8F + +Set 3, vector#227: + key=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + plain=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + cipher=8DB5CF2E7C71D130271DE140C557851E + decrypted=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + Iterated 100 times=9F59D01B3C958289A535CC498D78D542 + Iterated 1000 times=A9CFB416AD0AAAE9CA960DFDA6C5C1DC + +Set 3, vector#228: + key=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + plain=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + cipher=D66178BE0578A109C5295992D734CC29 + decrypted=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + Iterated 100 times=AC95FA9E2D52497CEDE5D9C6A32FE3E4 + Iterated 1000 times=A47870C05F62106925B856E4925C62D5 + +Set 3, vector#229: + key=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + plain=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + cipher=BA41E9DC3A7DE40883AF5F27466D226F + decrypted=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + Iterated 100 times=4E62DFACCD8A71E09A0D3006BEBF220F + Iterated 1000 times=FDE111AC652388526904379B91984538 + +Set 3, vector#230: + key=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + plain=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + cipher=C5E9D735772782016E3EF2071E7C4405 + decrypted=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + Iterated 100 times=098D8EADAE264469D05742708BE33B2C + Iterated 1000 times=08FFCBC9F521E2B2B736D537CC1A77AE + +Set 3, vector#231: + key=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + plain=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + cipher=26F31B8188155AEC061B2970A44E9000 + decrypted=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + Iterated 100 times=32C87701E73BF9F26A2257C94A230301 + Iterated 1000 times=85EDCBAFF8778E9C4AA153C43A000A2D + +Set 3, vector#232: + key=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + plain=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + cipher=C6FE63E1269DCBE36EC547BC4D9235D7 + decrypted=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + Iterated 100 times=AC5E18BB16D3613CAC5503FF935CD6C4 + Iterated 1000 times=AB545ECC6C95DF5D5146FAD87475C855 + +Set 3, vector#233: + key=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + plain=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + cipher=C81E4A90B86115F21FAA5A55EFA827E3 + decrypted=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + Iterated 100 times=BAF9504B5DF111B5255BBBB16ED49772 + Iterated 1000 times=5F3B9157129EB033DAD5046B692EC4B5 + +Set 3, vector#234: + key=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + plain=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + cipher=9843FC71101DB2D4B1601975A8013408 + decrypted=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + Iterated 100 times=4806222E9F7227E6C6B8F3F89B08A278 + Iterated 1000 times=72A22EF90570E35176B7764FBA831F75 + +Set 3, vector#235: + key=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + plain=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + cipher=9243BBE00C39CEB8B7E32BF007A63A68 + decrypted=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + Iterated 100 times=072A7AE30276BC3497F9645F91E14C7A + Iterated 1000 times=A320FEC5A547444EBC023EC9D184AAA1 + +Set 3, vector#236: + key=ECECECECECECECECECECECECECECECECECECECECECECECEC + plain=ECECECECECECECECECECECECECECECEC + cipher=7F02A424A85240A9DF374EFC2E11E761 + decrypted=ECECECECECECECECECECECECECECECEC + Iterated 100 times=4608E7205F95EE9D3AA31132E6305008 + Iterated 1000 times=6AD65C0EE69D50D6938B6446AF654D8B + +Set 3, vector#237: + key=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + plain=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + cipher=BF78EF4C4A518FF197620F7DD4694A95 + decrypted=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + Iterated 100 times=83BFB63DCB6E801EE0A66E60895D358F + Iterated 1000 times=09345F3CE330966C43AED65A9E449404 + +Set 3, vector#238: + key=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + plain=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + cipher=E35EC77656096D4E268579FA06F801AE + decrypted=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + Iterated 100 times=3CFA0B3DC96AE3468A81449A265E909F + Iterated 1000 times=7165FBF60265EFD6F9520A0E49A6F03A + +Set 3, vector#239: + key=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + plain=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + cipher=1F144DEDC37658F5EC6B675800789769 + decrypted=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + Iterated 100 times=1656BE61FBCA54591A4DDB0F3155F65F + Iterated 1000 times=1253E4E43AC2D30CB49424B6AA807334 + +Set 3, vector#240: + key=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + plain=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + cipher=3BF6A5697DBAC0408C2A121DA00EC66E + decrypted=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + Iterated 100 times=D275D6E660E7F48F0D121C3D444631F2 + Iterated 1000 times=88F3DBD11520C79C2026BC471313B269 + +Set 3, vector#241: + key=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + plain=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + cipher=E6FD853FDEF3061C9CBC75653C965CB0 + decrypted=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + Iterated 100 times=93579ED201259B95AE35285717D3B46D + Iterated 1000 times=2CAB6031FDFBB46671A9B43555897D7B + +Set 3, vector#242: + key=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + plain=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + cipher=2B3F1DBE2CDE3DEBF910AF209E8561D0 + decrypted=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + Iterated 100 times=99C26FD5E4DF820A9AF980ADCB04B303 + Iterated 1000 times=A1C7F571968DAB2201267850478B3E4B + +Set 3, vector#243: + key=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + plain=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + cipher=F0055827411C5B803522B6D1C33E0276 + decrypted=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + Iterated 100 times=DA988215A8E7BCB9AADDEE4439E4E6A9 + Iterated 1000 times=93256CF24E9E7CD56237C6F8E80FEB7B + +Set 3, vector#244: + key=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + plain=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + cipher=4838D77DB9F4BC6FC3E8B5A887D104A0 + decrypted=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + Iterated 100 times=442B36DBB4C7A71A8A8608A6D570BF32 + Iterated 1000 times=87CDE94DCCDFD8AA0B378E1FBE5F5A5E + +Set 3, vector#245: + key=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + plain=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + cipher=F0D58D297C4983DE86644D45594A2EBF + decrypted=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + Iterated 100 times=2BA494959E28C928C7E71E69B49C3377 + Iterated 1000 times=2AD4E917D5B53D8DB6AEF2A96F06D28B + +Set 3, vector#246: + key=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + plain=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + cipher=F024CE01CA8C474AE483FD8AD2F0508E + decrypted=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + Iterated 100 times=F75AEFBC1384F91F8B3F3C870FDC16EE + Iterated 1000 times=750911C1E9D81F0B7364FF6BE54C75A4 + +Set 3, vector#247: + key=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + plain=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + cipher=C5FBE1111FDF46FF98CE556CABCDFC2E + decrypted=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + Iterated 100 times=896F67BB721687A401DFED3331522671 + Iterated 1000 times=C92DC1E090D29D2D9172FE0C55B54564 + +Set 3, vector#248: + key=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + plain=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + cipher=5CB42DF8BB671E56D708A1939D616461 + decrypted=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + Iterated 100 times=098695E13374D3B1C6603D93716ED515 + Iterated 1000 times=115CB44B5E90E6FB1529D4B13A897B2D + +Set 3, vector#249: + key=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + plain=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + cipher=6F0B534C986FAE13F801E82567DEF363 + decrypted=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + Iterated 100 times=08176F14B473F1CEA51FC295766C131B + Iterated 1000 times=CA9F842810203ED607A6D60F0A7E9402 + +Set 3, vector#250: + key=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + plain=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + cipher=F85F166576A4807710F228060D898E2B + decrypted=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + Iterated 100 times=AF03907A827693BBC5CF98D5B20F829D + Iterated 1000 times=5721A51F63B546DCA0315762F27DBC44 + +Set 3, vector#251: + key=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + plain=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + cipher=9A54FCBC7AA04D442C74A73EA5440F71 + decrypted=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + Iterated 100 times=63301B689FEA215FC511A08194670BE7 + Iterated 1000 times=6984AE87146DEFC5D2EACE6CA19FD505 + +Set 3, vector#252: + key=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + plain=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + cipher=0B51463FFE682343D9625A67D1AE9671 + decrypted=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + Iterated 100 times=F445528495A87E370A4987CDED90D4E1 + Iterated 1000 times=742C412269F4E1BD44DF070AA5B2CF77 + +Set 3, vector#253: + key=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + plain=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + cipher=66105380A3B49E9C084F7735C6D66A1B + decrypted=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + Iterated 100 times=4D779B4E4D1ABFB2733EBC5C89821EA1 + Iterated 1000 times=B47BDEC95BA59E0083BDE4F3CA350C7C + +Set 3, vector#254: + key=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + plain=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + cipher=D95EA429689B23B2887FE9EE4477EFC8 + decrypted=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + Iterated 100 times=E491F7F2520383F8418F643F4C093014 + Iterated 1000 times=21777380EE17794E55447EA7763CDE72 + +Set 3, vector#255: + key=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + plain=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + cipher=BF70034E29FF718EE48DDF36BB8174EF + decrypted=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + Iterated 100 times=5383BC22AE712CCB884E649913AC3B04 + Iterated 1000 times=1DD49FE8D7E8456D123755EAA0A6C8DB + +Test vectors -- set 4 +===================== + +Set 4, vector# 0: + key=000102030405060708090A0B0C0D0E0F1011121314151617 + plain=00112233445566778899AABBCCDDEEFF + cipher=DDA97CA4864CDFE06EAF70A0EC0D7191 + decrypted=00112233445566778899AABBCCDDEEFF + Iterated 100 times=692EA8554926B774A4B854A9458DC990 + Iterated 1000 times=D9D92FB5411433BD28973FC2FC543556 + +Set 4, vector# 1: + key=2BD6459F82C5B300952C49104881FF482BD6459F82C5B300 + plain=EA024714AD5C4D84EA024714AD5C4D84 + cipher=8B7F5D7796CE931AB87F6CB16FCF72AC + decrypted=EA024714AD5C4D84EA024714AD5C4D84 + Iterated 100 times=990D71AB69B9557E4A3A019E18A07A42 + Iterated 1000 times=A7DACA65DCD1BACE84E2149CEF4BE7CB + +Test vectors -- set 5 +===================== + +Set 5, vector# 0: + key=800000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=D44A084F76F85B1833111998A761E7F4 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 1: + key=400000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=8785050C6804D1E61C149ECB70F591FE + encrypted=00000000000000000000000000000000 + +Set 5, vector# 2: + key=200000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=69EF5132AD063B3AAD9E12A0A4C45EFF + encrypted=00000000000000000000000000000000 + +Set 5, vector# 3: + key=100000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=7FCF49F37F6931BEDFD548E15E6166B8 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 4: + key=080000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=FEB83055177CF634203FDA6A41544B4C + encrypted=00000000000000000000000000000000 + +Set 5, vector# 5: + key=040000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=F8DAD90FF08CF1F086D5A7CD1B370878 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 6: + key=020000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=0DCE5558E832E59CEBCA54FE79CC2B0D + encrypted=00000000000000000000000000000000 + +Set 5, vector# 7: + key=010000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=0525CD9F9353F0BBECBF3C80B4111BBE + encrypted=00000000000000000000000000000000 + +Set 5, vector# 8: + key=008000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=6230983CD31C93EBA3716EFE0436FFF5 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 9: + key=004000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=A71F8917E0F5EEE65D80944241D1CFF2 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 10: + key=002000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=25F13035EE73C44A69FE316868C64776 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 11: + key=001000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=257CAECAD792DAB1FD23D63EA247C355 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 12: + key=000800000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=259E1571859C8DCBA7B13AF305F0F705 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 13: + key=000400000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=8C45C9C77543E8709874255E56881CFE + encrypted=00000000000000000000000000000000 + +Set 5, vector# 14: + key=000200000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=E32F45B7F181C1D367CDDF37982D8C9D + encrypted=00000000000000000000000000000000 + +Set 5, vector# 15: + key=000100000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=F88C604D47A24DF6C62508AA501546F4 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 16: + key=000080000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=3A3B2FE1AB5F1A8C87C51FC95D67AF3C + encrypted=00000000000000000000000000000000 + +Set 5, vector# 17: + key=000040000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=EA409F9CEBC846E2B54B0FBABB4EC3AA + encrypted=00000000000000000000000000000000 + +Set 5, vector# 18: + key=000020000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=31465E1DEB8D8FC8F3E2C08A17C86AB4 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 19: + key=000010000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=014E7629DE347D79A9D13037EF4C64B7 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 20: + key=000008000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=A4462BE79207FFAAB2289CAB70B60B1E + encrypted=00000000000000000000000000000000 + +Set 5, vector# 21: + key=000004000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=0DDC30941BF354EA7DFC01667B6D76E4 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 22: + key=000002000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=59E7852A1FAB3C0728D68E8EBAB2CCD2 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 23: + key=000001000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=E0640DCCFA87A6A30628539C6D9C41DA + encrypted=00000000000000000000000000000000 + +Set 5, vector# 24: + key=000000800000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=9A2DBACDA97566A54C7C1989B20106AF + encrypted=00000000000000000000000000000000 + +Set 5, vector# 25: + key=000000400000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=9C8796E3A3C2515810FF960EFEADDE05 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 26: + key=000000200000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=C1A09EFAAD89F284FB7837805898E2F0 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 27: + key=000000100000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=DF8D62DD2B0D95862857ACBFED9BC97B + encrypted=00000000000000000000000000000000 + +Set 5, vector# 28: + key=000000080000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=99B6FB63D21D6D0BDA9548D07B878CC6 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 29: + key=000000040000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=93BD1E464779C5D6673406F34D3F50F9 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 30: + key=000000020000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=8C11C160FB9064D3569C9DE096E17193 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 31: + key=000000010000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=0AABA47D7C466C4B1A66F057FDAAAFBD + encrypted=00000000000000000000000000000000 + +Set 5, vector# 32: + key=000000008000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=645620BC817149916DF369BE87D1561B + encrypted=00000000000000000000000000000000 + +Set 5, vector# 33: + key=000000004000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=4465CCF888AB6604258EEFCB8923FFF2 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 34: + key=000000002000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=EF1B796ADCD06CE8079D8959C800FBAA + encrypted=00000000000000000000000000000000 + +Set 5, vector# 35: + key=000000001000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=A266EF87397DC2B7C2196F3F62E08BC4 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 36: + key=000000000800000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=37AE0EFE26EC8840B215D4C026EA55C6 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 37: + key=000000000400000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=42EF0D01C64E90976539B6F92EA275C1 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 38: + key=000000000200000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=E1DBF3A5AB6959C049DA8580A615F894 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 39: + key=000000000100000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=2B75C2470EFC12E58AB9B6251C4FFDCE + encrypted=00000000000000000000000000000000 + +Set 5, vector# 40: + key=000000000080000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=FFA4FDD17C9FDB589D00AAD2B97AB240 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 41: + key=000000000040000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=E568A9826DFC58E385E0F17790C7AB99 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 42: + key=000000000020000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=9B41D29ED35C5CEBB2F118548E9C90EC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 43: + key=000000000010000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=BAD4B5613954A93433FD96804D5C601F + encrypted=00000000000000000000000000000000 + +Set 5, vector# 44: + key=000000000008000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=E11C6206D9DF5F2556306AC2D74A8A88 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 45: + key=000000000004000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=14F20CC9D1436C87B1B52209BC595FE1 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 46: + key=000000000002000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=B3B03C7BF2725E836C27258462E09FDB + encrypted=00000000000000000000000000000000 + +Set 5, vector# 47: + key=000000000001000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=D0AF1A9DCFD01232F7BD9522B7C1AE51 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 48: + key=000000000000800000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=DA4D988F29D6E7CE2C06E6506C3F7534 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 49: + key=000000000000400000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=31DEB9BF0E916F0CE806A279607CABC3 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 50: + key=000000000000200000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=0FA65033395997C64582CB1C41817F26 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 51: + key=000000000000100000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=439F4C30A9EDAA0D37F10E6FCD281624 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 52: + key=000000000000080000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=FA74BA3332C89B3D32B9DA6BF973CAD0 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 53: + key=000000000000040000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=9B18066FD2A188509DBD6004239E431C + encrypted=00000000000000000000000000000000 + +Set 5, vector# 54: + key=000000000000020000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=1244CF8F71530013CAD8BE4ECA369136 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 55: + key=000000000000010000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=A83BFB49F73E0290E6443BDB133BAC03 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 56: + key=000000000000008000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=49D5C4FD486076A8B884E4D8A6E90EC9 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 57: + key=000000000000004000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=796B0961581D872E0512E7F50A7026BA + encrypted=00000000000000000000000000000000 + +Set 5, vector# 58: + key=000000000000002000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=EAB90F75B7ED84533E2B3FB7EC40D1E0 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 59: + key=000000000000001000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=2B02645F9304FC3B329D302B285B49F0 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 60: + key=000000000000000800000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=769E96175A481410A9D59770558317A0 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 61: + key=000000000000000400000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=16974C3BC4CC8769A0A428F283B5F8A0 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 62: + key=000000000000000200000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=774D9528FB210228ECDE77C29351FC72 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 63: + key=000000000000000100000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=FE48E45F6090AA303323B9E4C35F390B + encrypted=00000000000000000000000000000000 + +Set 5, vector# 64: + key=000000000000000080000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=80643B7E6314FE45744118FD8EF15D57 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 65: + key=000000000000000040000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=192F408916335CCC45649DA140D30DB1 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 66: + key=000000000000000020000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=7180BC1119EA98C217D4663C86BC688E + encrypted=00000000000000000000000000000000 + +Set 5, vector# 67: + key=000000000000000010000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=49557D4AF2C76C75C35C386C3F744F50 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 68: + key=000000000000000008000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=7078569C2A8CA93F657802FB42C982DC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 69: + key=000000000000000004000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=1072BFB1D2D527076C4124F7DED91A6F + encrypted=00000000000000000000000000000000 + +Set 5, vector# 70: + key=000000000000000002000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=7A46292269714FDF52A74806A7F3F9C3 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 71: + key=000000000000000001000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=766CCE19C702C591399BF6C96EF87D8A + encrypted=00000000000000000000000000000000 + +Set 5, vector# 72: + key=000000000000000000800000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=53C1868E5E618C2743EFD202CD03DF53 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 73: + key=000000000000000000400000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=7351E84298A5FA2C3D7B1967898A416D + encrypted=00000000000000000000000000000000 + +Set 5, vector# 74: + key=000000000000000000200000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=BA3CD73BC313A6C71B12A106616D529F + encrypted=00000000000000000000000000000000 + +Set 5, vector# 75: + key=000000000000000000100000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=709C5348A5CF138B8357216D10D16777 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 76: + key=000000000000000000080000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=18809B1A7F1C896E5E9362536A983F9F + encrypted=00000000000000000000000000000000 + +Set 5, vector# 77: + key=000000000000000000040000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=6DD44CB242593CAF1830048168761F02 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 78: + key=000000000000000000020000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=2F2279448925B1845109A9B8099078BE + encrypted=00000000000000000000000000000000 + +Set 5, vector# 79: + key=000000000000000000010000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=F961B0608C4E211DEBA1B3AEFA2E159B + encrypted=00000000000000000000000000000000 + +Set 5, vector# 80: + key=000000000000000000008000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=AC21167113C6DDA0E69174BD2D0048C3 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 81: + key=000000000000000000004000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=B9B36D73FD760EE6C51A8F8616AE824F + encrypted=00000000000000000000000000000000 + +Set 5, vector# 82: + key=000000000000000000002000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=7A4F80EF134FAC03DB469582EBF71EBD + encrypted=00000000000000000000000000000000 + +Set 5, vector# 83: + key=000000000000000000001000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=0306F8F86AD227E6DE410DA425C72597 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 84: + key=000000000000000000000800000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=53D1531B28C196BDF2161041ACAD3E11 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 85: + key=000000000000000000000400000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=8C248C48CB0CB25C90052749010047EC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 86: + key=000000000000000000000200000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=AAC1F1F7D6C459CA364935F8D05F555B + encrypted=00000000000000000000000000000000 + +Set 5, vector# 87: + key=000000000000000000000100000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=C10AB0056BBFA82E646520CFAF8B3384 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 88: + key=000000000000000000000080000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=7A3DA85B2AC138F9E48A4AF02E067EDB + encrypted=00000000000000000000000000000000 + +Set 5, vector# 89: + key=000000000000000000000040000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=0BA67FB6719652BBA9D182D2B92FF632 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 90: + key=000000000000000000000020000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=79177314C872C837CC734D08D2D85412 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 91: + key=000000000000000000000010000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=F7ADDEFF84AA4F0A56F77716A14292B8 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 92: + key=000000000000000000000008000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=24D54567028AB6FD9F6D58F86DF86D08 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 93: + key=000000000000000000000004000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=55EF8320B59DA9FE3D993B3A8B60BC63 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 94: + key=000000000000000000000002000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=31017E385F9896EFDD677742EC00C2D3 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 95: + key=000000000000000000000001000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=FE2C12A975B27730437919DD87A510D9 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 96: + key=000000000000000000000000800000000000000000000000 + cipher=00000000000000000000000000000000 + plain=4B0AD5F92376722E306C6C0B90028B45 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 97: + key=000000000000000000000000400000000000000000000000 + cipher=00000000000000000000000000000000 + plain=4833CFCEEDD81A9570C4F683C62090B1 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 98: + key=000000000000000000000000200000000000000000000000 + cipher=00000000000000000000000000000000 + plain=D36289A60559F2CC2B4BD1BDA3744334 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 99: + key=000000000000000000000000100000000000000000000000 + cipher=00000000000000000000000000000000 + plain=FB03DD41ED038BC62A17AFDC8A3889A4 + encrypted=00000000000000000000000000000000 + +Set 5, vector#100: + key=000000000000000000000000080000000000000000000000 + cipher=00000000000000000000000000000000 + plain=98F30C417EA5742571DC10993EC641BA + encrypted=00000000000000000000000000000000 + +Set 5, vector#101: + key=000000000000000000000000040000000000000000000000 + cipher=00000000000000000000000000000000 + plain=3A4A40BB7811845D88A27744A1D553C0 + encrypted=00000000000000000000000000000000 + +Set 5, vector#102: + key=000000000000000000000000020000000000000000000000 + cipher=00000000000000000000000000000000 + plain=7750E6558D551DB5CB1BA7BA3AA3D6D5 + encrypted=00000000000000000000000000000000 + +Set 5, vector#103: + key=000000000000000000000000010000000000000000000000 + cipher=00000000000000000000000000000000 + plain=00348FD8EE657D915DF5793A6242F8A7 + encrypted=00000000000000000000000000000000 + +Set 5, vector#104: + key=000000000000000000000000008000000000000000000000 + cipher=00000000000000000000000000000000 + plain=2E7F1D279CA9BFDEBDA64AAFAE5729B2 + encrypted=00000000000000000000000000000000 + +Set 5, vector#105: + key=000000000000000000000000004000000000000000000000 + cipher=00000000000000000000000000000000 + plain=7A40AEC4E4B62B38BAF718A6C8B880EC + encrypted=00000000000000000000000000000000 + +Set 5, vector#106: + key=000000000000000000000000002000000000000000000000 + cipher=00000000000000000000000000000000 + plain=03E7666EC4A539893CED67915D9EC298 + encrypted=00000000000000000000000000000000 + +Set 5, vector#107: + key=000000000000000000000000001000000000000000000000 + cipher=00000000000000000000000000000000 + plain=8C6528AD9432E9A14AC0A8851A7C31BB + encrypted=00000000000000000000000000000000 + +Set 5, vector#108: + key=000000000000000000000000000800000000000000000000 + cipher=00000000000000000000000000000000 + plain=CEC13CD85CB6DC0B3BCDE120B584DDF1 + encrypted=00000000000000000000000000000000 + +Set 5, vector#109: + key=000000000000000000000000000400000000000000000000 + cipher=00000000000000000000000000000000 + plain=543EF137AEC4D3B6D5EB1264F156964C + encrypted=00000000000000000000000000000000 + +Set 5, vector#110: + key=000000000000000000000000000200000000000000000000 + cipher=00000000000000000000000000000000 + plain=71FFA8324FD9E4BFCFF7602FE08594F7 + encrypted=00000000000000000000000000000000 + +Set 5, vector#111: + key=000000000000000000000000000100000000000000000000 + cipher=00000000000000000000000000000000 + plain=B6660FD7823F782D4D978F9B11155635 + encrypted=00000000000000000000000000000000 + +Set 5, vector#112: + key=000000000000000000000000000080000000000000000000 + cipher=00000000000000000000000000000000 + plain=7E709E65962EA0E1DBEBABC7076F8040 + encrypted=00000000000000000000000000000000 + +Set 5, vector#113: + key=000000000000000000000000000040000000000000000000 + cipher=00000000000000000000000000000000 + plain=E099E87569A7D723C605320920E18338 + encrypted=00000000000000000000000000000000 + +Set 5, vector#114: + key=000000000000000000000000000020000000000000000000 + cipher=00000000000000000000000000000000 + plain=AB1ACC2E8B48C7A04DBF12EAAC0CF2CC + encrypted=00000000000000000000000000000000 + +Set 5, vector#115: + key=000000000000000000000000000010000000000000000000 + cipher=00000000000000000000000000000000 + plain=E8CB8D93D22A683C49C976CD336FB13F + encrypted=00000000000000000000000000000000 + +Set 5, vector#116: + key=000000000000000000000000000008000000000000000000 + cipher=00000000000000000000000000000000 + plain=B0FD75003D179027D65825BAC0624A85 + encrypted=00000000000000000000000000000000 + +Set 5, vector#117: + key=000000000000000000000000000004000000000000000000 + cipher=00000000000000000000000000000000 + plain=9D8A5BE26F1847E16BE43F2DC36AC3D5 + encrypted=00000000000000000000000000000000 + +Set 5, vector#118: + key=000000000000000000000000000002000000000000000000 + cipher=00000000000000000000000000000000 + plain=2629825DBBE36957164F9316B8AD68A8 + encrypted=00000000000000000000000000000000 + +Set 5, vector#119: + key=000000000000000000000000000001000000000000000000 + cipher=00000000000000000000000000000000 + plain=A9255ED3D1318C0C1CF92BEABF63DB79 + encrypted=00000000000000000000000000000000 + +Set 5, vector#120: + key=000000000000000000000000000000800000000000000000 + cipher=00000000000000000000000000000000 + plain=118FF3258521D05FEF9E27440496B062 + encrypted=00000000000000000000000000000000 + +Set 5, vector#121: + key=000000000000000000000000000000400000000000000000 + cipher=00000000000000000000000000000000 + plain=ABF97BFD872E2AD0A5F2D8BAD28BE643 + encrypted=00000000000000000000000000000000 + +Set 5, vector#122: + key=000000000000000000000000000000200000000000000000 + cipher=00000000000000000000000000000000 + plain=A8EE39E40DC1CC887773C3E4FB709AE5 + encrypted=00000000000000000000000000000000 + +Set 5, vector#123: + key=000000000000000000000000000000100000000000000000 + cipher=00000000000000000000000000000000 + plain=4B32385D147509819F4A769567889B5F + encrypted=00000000000000000000000000000000 + +Set 5, vector#124: + key=000000000000000000000000000000080000000000000000 + cipher=00000000000000000000000000000000 + plain=AD29878C16319DCD2D9C4A7F728E17D9 + encrypted=00000000000000000000000000000000 + +Set 5, vector#125: + key=000000000000000000000000000000040000000000000000 + cipher=00000000000000000000000000000000 + plain=9EBC75DB918FF55431E8C97575A828F7 + encrypted=00000000000000000000000000000000 + +Set 5, vector#126: + key=000000000000000000000000000000020000000000000000 + cipher=00000000000000000000000000000000 + plain=1E10BA02DA1215562346EB670077189C + encrypted=00000000000000000000000000000000 + +Set 5, vector#127: + key=000000000000000000000000000000010000000000000000 + cipher=00000000000000000000000000000000 + plain=AB49B2E750134BA83DDFA4B2FAD6D293 + encrypted=00000000000000000000000000000000 + +Set 5, vector#128: + key=000000000000000000000000000000008000000000000000 + cipher=00000000000000000000000000000000 + plain=9E2C8EC3C1E2E1931C1670030E6A90A7 + encrypted=00000000000000000000000000000000 + +Set 5, vector#129: + key=000000000000000000000000000000004000000000000000 + cipher=00000000000000000000000000000000 + plain=B20BE9E8BFD83D3DC4718002FD533D83 + encrypted=00000000000000000000000000000000 + +Set 5, vector#130: + key=000000000000000000000000000000002000000000000000 + cipher=00000000000000000000000000000000 + plain=0C2AAE0D91EDCC9256AE5C6B37A7EF56 + encrypted=00000000000000000000000000000000 + +Set 5, vector#131: + key=000000000000000000000000000000001000000000000000 + cipher=00000000000000000000000000000000 + plain=4DD7050FE9676538E9B055D446ABF91F + encrypted=00000000000000000000000000000000 + +Set 5, vector#132: + key=000000000000000000000000000000000800000000000000 + cipher=00000000000000000000000000000000 + plain=FF3A8DC05A1F4DA2FD854A2AB9467FFF + encrypted=00000000000000000000000000000000 + +Set 5, vector#133: + key=000000000000000000000000000000000400000000000000 + cipher=00000000000000000000000000000000 + plain=E9283108D8BA37D12609A7FF5D31EDFA + encrypted=00000000000000000000000000000000 + +Set 5, vector#134: + key=000000000000000000000000000000000200000000000000 + cipher=00000000000000000000000000000000 + plain=F1D82DCA800FD3A224A5CE3F40561A82 + encrypted=00000000000000000000000000000000 + +Set 5, vector#135: + key=000000000000000000000000000000000100000000000000 + cipher=00000000000000000000000000000000 + plain=3AEF5CFC5A041FC436F1F0C1766B2D76 + encrypted=00000000000000000000000000000000 + +Set 5, vector#136: + key=000000000000000000000000000000000080000000000000 + cipher=00000000000000000000000000000000 + plain=EFC27DD2F0720427844F97D451DABFB9 + encrypted=00000000000000000000000000000000 + +Set 5, vector#137: + key=000000000000000000000000000000000040000000000000 + cipher=00000000000000000000000000000000 + plain=89C761038A8FCC0C0043C0F128652487 + encrypted=00000000000000000000000000000000 + +Set 5, vector#138: + key=000000000000000000000000000000000020000000000000 + cipher=00000000000000000000000000000000 + plain=F49B1BEBD96A7488E87CAB646FD3C68D + encrypted=00000000000000000000000000000000 + +Set 5, vector#139: + key=000000000000000000000000000000000010000000000000 + cipher=00000000000000000000000000000000 + plain=6492BBCF1A7C8B521698A92B190DEB2E + encrypted=00000000000000000000000000000000 + +Set 5, vector#140: + key=000000000000000000000000000000000008000000000000 + cipher=00000000000000000000000000000000 + plain=D18642E4C6CB8777C04F671C8C3CE822 + encrypted=00000000000000000000000000000000 + +Set 5, vector#141: + key=000000000000000000000000000000000004000000000000 + cipher=00000000000000000000000000000000 + plain=22BC30913BF4AFBD2810AEE40F16C730 + encrypted=00000000000000000000000000000000 + +Set 5, vector#142: + key=000000000000000000000000000000000002000000000000 + cipher=00000000000000000000000000000000 + plain=6FDA109FE0DAB7D9E58BEE508343AA83 + encrypted=00000000000000000000000000000000 + +Set 5, vector#143: + key=000000000000000000000000000000000001000000000000 + cipher=00000000000000000000000000000000 + plain=DC6E9497B3F144C27229E0E102C9DBCB + encrypted=00000000000000000000000000000000 + +Set 5, vector#144: + key=000000000000000000000000000000000000800000000000 + cipher=00000000000000000000000000000000 + plain=2089B6AE4B3CAF5929EC3EA98D2D6F60 + encrypted=00000000000000000000000000000000 + +Set 5, vector#145: + key=000000000000000000000000000000000000400000000000 + cipher=00000000000000000000000000000000 + plain=ED4A3A191999E57E7BE5F59DA270D39F + encrypted=00000000000000000000000000000000 + +Set 5, vector#146: + key=000000000000000000000000000000000000200000000000 + cipher=00000000000000000000000000000000 + plain=BA51705CF3516D7FD6A63D3B01600BDC + encrypted=00000000000000000000000000000000 + +Set 5, vector#147: + key=000000000000000000000000000000000000100000000000 + cipher=00000000000000000000000000000000 + plain=401C749BD461FB4E9A8CAF0C76D8F4D3 + encrypted=00000000000000000000000000000000 + +Set 5, vector#148: + key=000000000000000000000000000000000000080000000000 + cipher=00000000000000000000000000000000 + plain=D4430304A8D8FC645466881B5A0BAE15 + encrypted=00000000000000000000000000000000 + +Set 5, vector#149: + key=000000000000000000000000000000000000040000000000 + cipher=00000000000000000000000000000000 + plain=7D7548F550257ED7DF4C37F6D446B018 + encrypted=00000000000000000000000000000000 + +Set 5, vector#150: + key=000000000000000000000000000000000000020000000000 + cipher=00000000000000000000000000000000 + plain=97F8BCB5AB116A37A4D07F1EC38FC212 + encrypted=00000000000000000000000000000000 + +Set 5, vector#151: + key=000000000000000000000000000000000000010000000000 + cipher=00000000000000000000000000000000 + plain=A81B37212C7A5B0BA4DF86DA466084A9 + encrypted=00000000000000000000000000000000 + +Set 5, vector#152: + key=000000000000000000000000000000000000008000000000 + cipher=00000000000000000000000000000000 + plain=4C4E2689563BB5976CC4BA2DE804275B + encrypted=00000000000000000000000000000000 + +Set 5, vector#153: + key=000000000000000000000000000000000000004000000000 + cipher=00000000000000000000000000000000 + plain=147AA9C2928FECD49814757A202B1898 + encrypted=00000000000000000000000000000000 + +Set 5, vector#154: + key=000000000000000000000000000000000000002000000000 + cipher=00000000000000000000000000000000 + plain=337B49EF6A31A7C6F080E8A2BD28F9DA + encrypted=00000000000000000000000000000000 + +Set 5, vector#155: + key=000000000000000000000000000000000000001000000000 + cipher=00000000000000000000000000000000 + plain=6271B6D0F298DBB4858C7FA0B35B9F6D + encrypted=00000000000000000000000000000000 + +Set 5, vector#156: + key=000000000000000000000000000000000000000800000000 + cipher=00000000000000000000000000000000 + plain=B6DF42FD9CADABDE29AC9066B983145F + encrypted=00000000000000000000000000000000 + +Set 5, vector#157: + key=000000000000000000000000000000000000000400000000 + cipher=00000000000000000000000000000000 + plain=F7956031647FDDF127F2809896280FC2 + encrypted=00000000000000000000000000000000 + +Set 5, vector#158: + key=000000000000000000000000000000000000000200000000 + cipher=00000000000000000000000000000000 + plain=A8D23A7073DED8886A13B93064F0EFAC + encrypted=00000000000000000000000000000000 + +Set 5, vector#159: + key=000000000000000000000000000000000000000100000000 + cipher=00000000000000000000000000000000 + plain=FA52526B5A470A8DD63E599F8AA7CCA3 + encrypted=00000000000000000000000000000000 + +Set 5, vector#160: + key=000000000000000000000000000000000000000080000000 + cipher=00000000000000000000000000000000 + plain=D83C46EF257805ACBCCA0D3F580A5FDD + encrypted=00000000000000000000000000000000 + +Set 5, vector#161: + key=000000000000000000000000000000000000000040000000 + cipher=00000000000000000000000000000000 + plain=1DB848508384ACBA5B47845122084C48 + encrypted=00000000000000000000000000000000 + +Set 5, vector#162: + key=000000000000000000000000000000000000000020000000 + cipher=00000000000000000000000000000000 + plain=2DBFF78F8FBF2F8C0FFCBA25953B55B8 + encrypted=00000000000000000000000000000000 + +Set 5, vector#163: + key=000000000000000000000000000000000000000010000000 + cipher=00000000000000000000000000000000 + plain=98BF47485196A9F0E06C93190E4CB7EC + encrypted=00000000000000000000000000000000 + +Set 5, vector#164: + key=000000000000000000000000000000000000000008000000 + cipher=00000000000000000000000000000000 + plain=DA4A49F1375C088CCC6959C22A46D430 + encrypted=00000000000000000000000000000000 + +Set 5, vector#165: + key=000000000000000000000000000000000000000004000000 + cipher=00000000000000000000000000000000 + plain=CACC7F4F6871A8DE8201E83931003607 + encrypted=00000000000000000000000000000000 + +Set 5, vector#166: + key=000000000000000000000000000000000000000002000000 + cipher=00000000000000000000000000000000 + plain=B4A775965A20AF26BA115186F124F95A + encrypted=00000000000000000000000000000000 + +Set 5, vector#167: + key=000000000000000000000000000000000000000001000000 + cipher=00000000000000000000000000000000 + plain=F235645C05B8ACDD0D5F8C8DD0C22DBB + encrypted=00000000000000000000000000000000 + +Set 5, vector#168: + key=000000000000000000000000000000000000000000800000 + cipher=00000000000000000000000000000000 + plain=835370ACCDF84ADE4083ABA42D02C446 + encrypted=00000000000000000000000000000000 + +Set 5, vector#169: + key=000000000000000000000000000000000000000000400000 + cipher=00000000000000000000000000000000 + plain=982708184C8D18272B570C4A9CC479E8 + encrypted=00000000000000000000000000000000 + +Set 5, vector#170: + key=000000000000000000000000000000000000000000200000 + cipher=00000000000000000000000000000000 + plain=33B6BA72EEC02152EB0E2792DD8112E3 + encrypted=00000000000000000000000000000000 + +Set 5, vector#171: + key=000000000000000000000000000000000000000000100000 + cipher=00000000000000000000000000000000 + plain=8555100C8FFC8E51D8736957FF19B12F + encrypted=00000000000000000000000000000000 + +Set 5, vector#172: + key=000000000000000000000000000000000000000000080000 + cipher=00000000000000000000000000000000 + plain=214D34796DE7F5774D7AB3452E64EBF2 + encrypted=00000000000000000000000000000000 + +Set 5, vector#173: + key=000000000000000000000000000000000000000000040000 + cipher=00000000000000000000000000000000 + plain=361277A8FA25523C854B99A6DB2ED734 + encrypted=00000000000000000000000000000000 + +Set 5, vector#174: + key=000000000000000000000000000000000000000000020000 + cipher=00000000000000000000000000000000 + plain=FE12B7DC913BB81306B6CA6B3B2920FC + encrypted=00000000000000000000000000000000 + +Set 5, vector#175: + key=000000000000000000000000000000000000000000010000 + cipher=00000000000000000000000000000000 + plain=4FA2D056FC17A4E8BE4D55990913D97A + encrypted=00000000000000000000000000000000 + +Set 5, vector#176: + key=000000000000000000000000000000000000000000008000 + cipher=00000000000000000000000000000000 + plain=174DA58231D39A8AEEDA26AC2714B9D8 + encrypted=00000000000000000000000000000000 + +Set 5, vector#177: + key=000000000000000000000000000000000000000000004000 + cipher=00000000000000000000000000000000 + plain=41202299B4A9CCDEF0589C99F7A8C0D5 + encrypted=00000000000000000000000000000000 + +Set 5, vector#178: + key=000000000000000000000000000000000000000000002000 + cipher=00000000000000000000000000000000 + plain=B852E6DB18F0D2B8382F61E67C8F4D5F + encrypted=00000000000000000000000000000000 + +Set 5, vector#179: + key=000000000000000000000000000000000000000000001000 + cipher=00000000000000000000000000000000 + plain=1CD87847CE43AE7F80D2D5CDE45D0C1D + encrypted=00000000000000000000000000000000 + +Set 5, vector#180: + key=000000000000000000000000000000000000000000000800 + cipher=00000000000000000000000000000000 + plain=F7B00A7F832A449D0FBD8CD0CC14E875 + encrypted=00000000000000000000000000000000 + +Set 5, vector#181: + key=000000000000000000000000000000000000000000000400 + cipher=00000000000000000000000000000000 + plain=FA6450EFF48BA081AA855C27F49F9121 + encrypted=00000000000000000000000000000000 + +Set 5, vector#182: + key=000000000000000000000000000000000000000000000200 + cipher=00000000000000000000000000000000 + plain=24A587CBF3547FB4782E61ED8DABB195 + encrypted=00000000000000000000000000000000 + +Set 5, vector#183: + key=000000000000000000000000000000000000000000000100 + cipher=00000000000000000000000000000000 + plain=EA1215939EF4A9F2756EAE89FB6E062F + encrypted=00000000000000000000000000000000 + +Set 5, vector#184: + key=000000000000000000000000000000000000000000000080 + cipher=00000000000000000000000000000000 + plain=A438B58E48A33A829F5C6EF5E7980B44 + encrypted=00000000000000000000000000000000 + +Set 5, vector#185: + key=000000000000000000000000000000000000000000000040 + cipher=00000000000000000000000000000000 + plain=98090094EC7EF34AD7A90BF39819E121 + encrypted=00000000000000000000000000000000 + +Set 5, vector#186: + key=000000000000000000000000000000000000000000000020 + cipher=00000000000000000000000000000000 + plain=59A9424A3489EA93882FBEF48C123F76 + encrypted=00000000000000000000000000000000 + +Set 5, vector#187: + key=000000000000000000000000000000000000000000000010 + cipher=00000000000000000000000000000000 + plain=EBE21C0FF077CE1F58DD193F493988BD + encrypted=00000000000000000000000000000000 + +Set 5, vector#188: + key=000000000000000000000000000000000000000000000008 + cipher=00000000000000000000000000000000 + plain=EF2671738BB7C503A808FA653BF439AE + encrypted=00000000000000000000000000000000 + +Set 5, vector#189: + key=000000000000000000000000000000000000000000000004 + cipher=00000000000000000000000000000000 + plain=E642BCE9DD35DBDB2D46CA25AB873F77 + encrypted=00000000000000000000000000000000 + +Set 5, vector#190: + key=000000000000000000000000000000000000000000000002 + cipher=00000000000000000000000000000000 + plain=EEE3BC12D5AC2FD86F73D76D728F65CE + encrypted=00000000000000000000000000000000 + +Set 5, vector#191: + key=000000000000000000000000000000000000000000000001 + cipher=00000000000000000000000000000000 + plain=929BD0DB93AAD40FC596705C85C0CCD9 + encrypted=00000000000000000000000000000000 + +Test vectors -- set 6 +===================== + +Set 6, vector# 0: + key=000000000000000000000000000000000000000000000000 + cipher=80000000000000000000000000000000 + plain=4BDFAEC1EF94597645DBDBCF63CF72BB + encrypted=80000000000000000000000000000000 + +Set 6, vector# 1: + key=000000000000000000000000000000000000000000000000 + cipher=40000000000000000000000000000000 + plain=357AC4EF4B6BB1EFAE5AF27004EAE032 + encrypted=40000000000000000000000000000000 + +Set 6, vector# 2: + key=000000000000000000000000000000000000000000000000 + cipher=20000000000000000000000000000000 + plain=16C4D1C484FE63D9CDD879D99CBE11B3 + encrypted=20000000000000000000000000000000 + +Set 6, vector# 3: + key=000000000000000000000000000000000000000000000000 + cipher=10000000000000000000000000000000 + plain=AAAA748104E2CDDF9F944A60F8DEF504 + encrypted=10000000000000000000000000000000 + +Set 6, vector# 4: + key=000000000000000000000000000000000000000000000000 + cipher=08000000000000000000000000000000 + plain=C1D888A8270901E5E2FAD46F50D3A5C4 + encrypted=08000000000000000000000000000000 + +Set 6, vector# 5: + key=000000000000000000000000000000000000000000000000 + cipher=04000000000000000000000000000000 + plain=494D0DF5AD1D6B849F1D8A9F18E21489 + encrypted=04000000000000000000000000000000 + +Set 6, vector# 6: + key=000000000000000000000000000000000000000000000000 + cipher=02000000000000000000000000000000 + plain=CA13FC49147D6B9F76020EFB10D2C0CD + encrypted=02000000000000000000000000000000 + +Set 6, vector# 7: + key=000000000000000000000000000000000000000000000000 + cipher=01000000000000000000000000000000 + plain=A1B8760ADDE417E7600573BB69F40EFF + encrypted=01000000000000000000000000000000 + +Set 6, vector# 8: + key=000000000000000000000000000000000000000000000000 + cipher=00800000000000000000000000000000 + plain=EB43334C0000F18FF885D7000861530B + encrypted=00800000000000000000000000000000 + +Set 6, vector# 9: + key=000000000000000000000000000000000000000000000000 + cipher=00400000000000000000000000000000 + plain=ED23A01348968467733ED087A3E097CF + encrypted=00400000000000000000000000000000 + +Set 6, vector# 10: + key=000000000000000000000000000000000000000000000000 + cipher=00200000000000000000000000000000 + plain=7401D27559825D57A545CDB489914C8B + encrypted=00200000000000000000000000000000 + +Set 6, vector# 11: + key=000000000000000000000000000000000000000000000000 + cipher=00100000000000000000000000000000 + plain=ED6585CBAD0FA21A194444983B9BBD0A + encrypted=00100000000000000000000000000000 + +Set 6, vector# 12: + key=000000000000000000000000000000000000000000000000 + cipher=00080000000000000000000000000000 + plain=457EFD8E46CC4D510857A37FFC2CB42E + encrypted=00080000000000000000000000000000 + +Set 6, vector# 13: + key=000000000000000000000000000000000000000000000000 + cipher=00040000000000000000000000000000 + plain=9B2F89541B492553AF00DFC8CB989265 + encrypted=00040000000000000000000000000000 + +Set 6, vector# 14: + key=000000000000000000000000000000000000000000000000 + cipher=00020000000000000000000000000000 + plain=5866CA7ED6F3C062E7F51DE2ACD3F26E + encrypted=00020000000000000000000000000000 + +Set 6, vector# 15: + key=000000000000000000000000000000000000000000000000 + cipher=00010000000000000000000000000000 + plain=E86B3F42C126990F571034D313218207 + encrypted=00010000000000000000000000000000 + +Set 6, vector# 16: + key=000000000000000000000000000000000000000000000000 + cipher=00008000000000000000000000000000 + plain=5D07E10FC76C80211F5E6AF7F0A6DEAF + encrypted=00008000000000000000000000000000 + +Set 6, vector# 17: + key=000000000000000000000000000000000000000000000000 + cipher=00004000000000000000000000000000 + plain=0B575EF5DFE2D9BAADB5720E1BCBA9A8 + encrypted=00004000000000000000000000000000 + +Set 6, vector# 18: + key=000000000000000000000000000000000000000000000000 + cipher=00002000000000000000000000000000 + plain=5D9B451CA08F0D2003FB8EA8DBBE7D78 + encrypted=00002000000000000000000000000000 + +Set 6, vector# 19: + key=000000000000000000000000000000000000000000000000 + cipher=00001000000000000000000000000000 + plain=758C752DA96F9AA5BF355E1368030431 + encrypted=00001000000000000000000000000000 + +Set 6, vector# 20: + key=000000000000000000000000000000000000000000000000 + cipher=00000800000000000000000000000000 + plain=88834D3B12F40456DE445F0E5AC4A639 + encrypted=00000800000000000000000000000000 + +Set 6, vector# 21: + key=000000000000000000000000000000000000000000000000 + cipher=00000400000000000000000000000000 + plain=59BA85E67D9B0702BDBB19D1D52F13E3 + encrypted=00000400000000000000000000000000 + +Set 6, vector# 22: + key=000000000000000000000000000000000000000000000000 + cipher=00000200000000000000000000000000 + plain=70571A818050BB8B499898188BFDE3C3 + encrypted=00000200000000000000000000000000 + +Set 6, vector# 23: + key=000000000000000000000000000000000000000000000000 + cipher=00000100000000000000000000000000 + plain=E1C1923B49FF7BA5411B8BE748A8FAF1 + encrypted=00000100000000000000000000000000 + +Set 6, vector# 24: + key=000000000000000000000000000000000000000000000000 + cipher=00000080000000000000000000000000 + plain=C7F97F2462723D8936E3E02C8F64C6FF + encrypted=00000080000000000000000000000000 + +Set 6, vector# 25: + key=000000000000000000000000000000000000000000000000 + cipher=00000040000000000000000000000000 + plain=20815C0BF34766B5DC7EFC0078C7D06F + encrypted=00000040000000000000000000000000 + +Set 6, vector# 26: + key=000000000000000000000000000000000000000000000000 + cipher=00000020000000000000000000000000 + plain=7CC338030E2C3579F51CF6B64F485508 + encrypted=00000020000000000000000000000000 + +Set 6, vector# 27: + key=000000000000000000000000000000000000000000000000 + cipher=00000010000000000000000000000000 + plain=59D584340DC87E30C5EF892B361AA5B7 + encrypted=00000010000000000000000000000000 + +Set 6, vector# 28: + key=000000000000000000000000000000000000000000000000 + cipher=00000008000000000000000000000000 + plain=B1E9B768E499AB21C89E3C1F8384127C + encrypted=00000008000000000000000000000000 + +Set 6, vector# 29: + key=000000000000000000000000000000000000000000000000 + cipher=00000004000000000000000000000000 + plain=2382930ADAF3F759129EA0CBF46862CD + encrypted=00000004000000000000000000000000 + +Set 6, vector# 30: + key=000000000000000000000000000000000000000000000000 + cipher=00000002000000000000000000000000 + plain=6D1E0D739CAA0E6E6F567A39E8B3D3F7 + encrypted=00000002000000000000000000000000 + +Set 6, vector# 31: + key=000000000000000000000000000000000000000000000000 + cipher=00000001000000000000000000000000 + plain=F17DD3E25491AD4E2CB9E8F28C0D8330 + encrypted=00000001000000000000000000000000 + +Set 6, vector# 32: + key=000000000000000000000000000000000000000000000000 + cipher=00000000800000000000000000000000 + plain=D63CF44BCB6B828D90C403FC37B6F0F8 + encrypted=00000000800000000000000000000000 + +Set 6, vector# 33: + key=000000000000000000000000000000000000000000000000 + cipher=00000000400000000000000000000000 + plain=3BCC1AE3E7BFDC013F5DC92164FB33E7 + encrypted=00000000400000000000000000000000 + +Set 6, vector# 34: + key=000000000000000000000000000000000000000000000000 + cipher=00000000200000000000000000000000 + plain=8EEA69813D3B29D4F602F8ECF28D7781 + encrypted=00000000200000000000000000000000 + +Set 6, vector# 35: + key=000000000000000000000000000000000000000000000000 + cipher=00000000100000000000000000000000 + plain=EBD36EA135CCEF59035388332A5A364E + encrypted=00000000100000000000000000000000 + +Set 6, vector# 36: + key=000000000000000000000000000000000000000000000000 + cipher=00000000080000000000000000000000 + plain=E5F2FDC4E505A3C43DBD3F6439D9F8F5 + encrypted=00000000080000000000000000000000 + +Set 6, vector# 37: + key=000000000000000000000000000000000000000000000000 + cipher=00000000040000000000000000000000 + plain=32E78C02CD4D67EC71670FF6B2C493BD + encrypted=00000000040000000000000000000000 + +Set 6, vector# 38: + key=000000000000000000000000000000000000000000000000 + cipher=00000000020000000000000000000000 + plain=818D706C0C246EE8B8E48FA29458F758 + encrypted=00000000020000000000000000000000 + +Set 6, vector# 39: + key=000000000000000000000000000000000000000000000000 + cipher=00000000010000000000000000000000 + plain=7CCC512C5E14C8FE119C02AB256BD759 + encrypted=00000000010000000000000000000000 + +Set 6, vector# 40: + key=000000000000000000000000000000000000000000000000 + cipher=00000000008000000000000000000000 + plain=31FBAB2DFBBFF4E9C81B1D9616FAC829 + encrypted=00000000008000000000000000000000 + +Set 6, vector# 41: + key=000000000000000000000000000000000000000000000000 + cipher=00000000004000000000000000000000 + plain=604033E70D942DAAF50B8BA55FBDEBA4 + encrypted=00000000004000000000000000000000 + +Set 6, vector# 42: + key=000000000000000000000000000000000000000000000000 + cipher=00000000002000000000000000000000 + plain=14C9261530196B2D2535466B5A24C117 + encrypted=00000000002000000000000000000000 + +Set 6, vector# 43: + key=000000000000000000000000000000000000000000000000 + cipher=00000000001000000000000000000000 + plain=D7E54ABC780FBA48D8D0B836D7310082 + encrypted=00000000001000000000000000000000 + +Set 6, vector# 44: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000800000000000000000000 + plain=C0203D3D9DD6A4292D619898D6E0DDC2 + encrypted=00000000000800000000000000000000 + +Set 6, vector# 45: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000400000000000000000000 + plain=98BA7E7E55983EF4B18D11CDE2D36108 + encrypted=00000000000400000000000000000000 + +Set 6, vector# 46: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000200000000000000000000 + plain=D3E42611C720BCCC89640E5137A4C7E3 + encrypted=00000000000200000000000000000000 + +Set 6, vector# 47: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000100000000000000000000 + plain=4748F106F0C9A6DD8DFBC1AAB3377ECD + encrypted=00000000000100000000000000000000 + +Set 6, vector# 48: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000080000000000000000000 + plain=731FA01DC0E7D5EE0272978927B2F5D5 + encrypted=00000000000080000000000000000000 + +Set 6, vector# 49: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000040000000000000000000 + plain=0B01BCBACA98D94D48DFB06FD339ED53 + encrypted=00000000000040000000000000000000 + +Set 6, vector# 50: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000020000000000000000000 + plain=016AB9ADF36AAB93084DA4620431F936 + encrypted=00000000000020000000000000000000 + +Set 6, vector# 51: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000010000000000000000000 + plain=9C7F5734CECC2E7895997FC1E0127BF0 + encrypted=00000000000010000000000000000000 + +Set 6, vector# 52: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000008000000000000000000 + plain=D0B6B3FE192D8B5F13AA196DF2D2C5A9 + encrypted=00000000000008000000000000000000 + +Set 6, vector# 53: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000004000000000000000000 + plain=824E886F713CC0554441334FB5411D18 + encrypted=00000000000004000000000000000000 + +Set 6, vector# 54: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000002000000000000000000 + plain=64EDD52C095195FFA339DBB8E4B39D9D + encrypted=00000000000002000000000000000000 + +Set 6, vector# 55: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000001000000000000000000 + plain=71E00F42F766E9CFEFDEBFBCA500F64E + encrypted=00000000000001000000000000000000 + +Set 6, vector# 56: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000800000000000000000 + plain=3542781B2AEB14B8D1E92D1D3EE2A1BE + encrypted=00000000000000800000000000000000 + +Set 6, vector# 57: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000400000000000000000 + plain=4F8F1A3DD403262D77539F0F75DEF48B + encrypted=00000000000000400000000000000000 + +Set 6, vector# 58: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000200000000000000000 + plain=F289C6DDC5C34E70A1313D7170C7FE1C + encrypted=00000000000000200000000000000000 + +Set 6, vector# 59: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000100000000000000000 + plain=0EAEC3555F8119AEEB8CED0B61B506D9 + encrypted=00000000000000100000000000000000 + +Set 6, vector# 60: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000080000000000000000 + plain=9BA3B935B1DA80B33F1489B1F2A663AD + encrypted=00000000000000080000000000000000 + +Set 6, vector# 61: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000040000000000000000 + plain=D0B835883194DA077D6EA2CE0927482F + encrypted=00000000000000040000000000000000 + +Set 6, vector# 62: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000020000000000000000 + plain=B14A5D3E64EE03DD5090BAB8E7D5BB27 + encrypted=00000000000000020000000000000000 + +Set 6, vector# 63: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000010000000000000000 + plain=82C858C966CD27C9800E68A556C43ED4 + encrypted=00000000000000010000000000000000 + +Set 6, vector# 64: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000008000000000000000 + plain=0B80EBA5C16213A69F882DC93490543F + encrypted=00000000000000008000000000000000 + +Set 6, vector# 65: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000004000000000000000 + plain=49ABE2EFA27CB2C3782380A24F81F151 + encrypted=00000000000000004000000000000000 + +Set 6, vector# 66: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000002000000000000000 + plain=74A91DD0555F28DD95AD127471F287B9 + encrypted=00000000000000002000000000000000 + +Set 6, vector# 67: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000001000000000000000 + plain=93E1FD4E9B790B2664625C9781294AF2 + encrypted=00000000000000001000000000000000 + +Set 6, vector# 68: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000800000000000000 + plain=678043FAB93DB8EA61A792B2E646E298 + encrypted=00000000000000000800000000000000 + +Set 6, vector# 69: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000400000000000000 + plain=5644FB31002031BF17E42CDD4FD0DAB2 + encrypted=00000000000000000400000000000000 + +Set 6, vector# 70: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000200000000000000 + plain=33DF2433551576529977A8CA23DF7AD4 + encrypted=00000000000000000200000000000000 + +Set 6, vector# 71: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000100000000000000 + plain=E757E120AC1E5DD7C83FBEB1D869041C + encrypted=00000000000000000100000000000000 + +Set 6, vector# 72: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000080000000000000 + plain=3D2E7FE126CD5FA6BD08975C200DE30C + encrypted=00000000000000000080000000000000 + +Set 6, vector# 73: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000040000000000000 + plain=1291426E8A9334B26BB7BB86C792B229 + encrypted=00000000000000000040000000000000 + +Set 6, vector# 74: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000020000000000000 + plain=4EE46435ABAD8B6861343E559599B153 + encrypted=00000000000000000020000000000000 + +Set 6, vector# 75: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000010000000000000 + plain=1C87540D758E4F75E1B599AC810BEC04 + encrypted=00000000000000000010000000000000 + +Set 6, vector# 76: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000008000000000000 + plain=35B59FC5C3B7CDC8729AA67E28C3352C + encrypted=00000000000000000008000000000000 + +Set 6, vector# 77: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000004000000000000 + plain=46CC89C9DFD43594F532A49A310026D3 + encrypted=00000000000000000004000000000000 + +Set 6, vector# 78: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000002000000000000 + plain=AFB4289E589234071E2349768C69BCED + encrypted=00000000000000000002000000000000 + +Set 6, vector# 79: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000001000000000000 + plain=56FA5EF2427BDD50D4D273B8A6853BCF + encrypted=00000000000000000001000000000000 + +Set 6, vector# 80: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000800000000000 + plain=7382A0956395A4417BDEADD809310147 + encrypted=00000000000000000000800000000000 + +Set 6, vector# 81: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000400000000000 + plain=8FA3487912C2B54CB8D90DA654FBBCB3 + encrypted=00000000000000000000400000000000 + +Set 6, vector# 82: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000200000000000 + plain=0994C5FF38DBF6BDC2430C0BDC5F1ED3 + encrypted=00000000000000000000200000000000 + +Set 6, vector# 83: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000100000000000 + plain=26198BF8F342D97D04AC5B77B7627994 + encrypted=00000000000000000000100000000000 + +Set 6, vector# 84: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000080000000000 + plain=D653241D8CB4E42FD99AFA4BFB16C4FC + encrypted=00000000000000000000080000000000 + +Set 6, vector# 85: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000040000000000 + plain=B5CE2989477F9DBCCD15BFCCC7B3B7CC + encrypted=00000000000000000000040000000000 + +Set 6, vector# 86: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000020000000000 + plain=91DDD656697C752230B901DCF736B276 + encrypted=00000000000000000000020000000000 + +Set 6, vector# 87: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000010000000000 + plain=9B92F46BDBB14998769621A2440D6379 + encrypted=00000000000000000000010000000000 + +Set 6, vector# 88: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000008000000000 + plain=DE1587CB0747A4545C8B5A99E81C5246 + encrypted=00000000000000000000008000000000 + +Set 6, vector# 89: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000004000000000 + plain=42BBE5B7C9C5E60035D8691FDD744940 + encrypted=00000000000000000000004000000000 + +Set 6, vector# 90: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000002000000000 + plain=F33C52578A290F7C96E0EE89B9454784 + encrypted=00000000000000000000002000000000 + +Set 6, vector# 91: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000001000000000 + plain=D99CD7546996D6805A6FA08427F99B42 + encrypted=00000000000000000000001000000000 + +Set 6, vector# 92: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000800000000 + plain=A4AC4DB609F995B9D349CE761B130ED6 + encrypted=00000000000000000000000800000000 + +Set 6, vector# 93: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000400000000 + plain=1C9FE54B00D40A029E6FA5D9778D6906 + encrypted=00000000000000000000000400000000 + +Set 6, vector# 94: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000200000000 + plain=0AE23C05B898A3BDFCB2E865D4DFF220 + encrypted=00000000000000000000000200000000 + +Set 6, vector# 95: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000100000000 + plain=2E802656362F5A8CA299C80F20016BDE + encrypted=00000000000000000000000100000000 + +Set 6, vector# 96: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000080000000 + plain=720C457313CD9462E0986E1EC09A2277 + encrypted=00000000000000000000000080000000 + +Set 6, vector# 97: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000040000000 + plain=C3C946E5912FC8CFFFF189D4BCB8C518 + encrypted=00000000000000000000000040000000 + +Set 6, vector# 98: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000020000000 + plain=438FC4DACAC56C06CAA944AA5090495F + encrypted=00000000000000000000000020000000 + +Set 6, vector# 99: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000010000000 + plain=2B870D225C6AB10FE5FF405F93B4B6F6 + encrypted=00000000000000000000000010000000 + +Set 6, vector#100: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000008000000 + plain=2EEA4A3B526A01FF51E1117463CE2C90 + encrypted=00000000000000000000000008000000 + +Set 6, vector#101: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000004000000 + plain=763866B0B92DB350B8D036B8DAA6B7BB + encrypted=00000000000000000000000004000000 + +Set 6, vector#102: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000002000000 + plain=CCD2FB722AF9C95E3711575537E222EF + encrypted=00000000000000000000000002000000 + +Set 6, vector#103: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000001000000 + plain=E2DC6A05E1BCE277EC2D7355692AA876 + encrypted=00000000000000000000000001000000 + +Set 6, vector#104: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000800000 + plain=D1DE6409BAD318ACBBBA430A9409B9E8 + encrypted=00000000000000000000000000800000 + +Set 6, vector#105: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000400000 + plain=738A997AFE43BC9F18539289460BB663 + encrypted=00000000000000000000000000400000 + +Set 6, vector#106: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000200000 + plain=A27EF1560115147C129D92A890954CCB + encrypted=00000000000000000000000000200000 + +Set 6, vector#107: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000100000 + plain=3B2BAA66DB8B008A8E03D1D7B02B31CB + encrypted=00000000000000000000000000100000 + +Set 6, vector#108: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000080000 + plain=9918FC9DFBFEA635270EEE7A404B4ADB + encrypted=00000000000000000000000000080000 + +Set 6, vector#109: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000040000 + plain=35CD888AC4C41EF9A240E4C17CCA303A + encrypted=00000000000000000000000000040000 + +Set 6, vector#110: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000020000 + plain=5F7006452D08876569B19D9EFE13258E + encrypted=00000000000000000000000000020000 + +Set 6, vector#111: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000010000 + plain=1829AA2AC747801A270E08D1FF7E90EE + encrypted=00000000000000000000000000010000 + +Set 6, vector#112: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000008000 + plain=E9F2AFA57FD779CF921FDC35D607EF33 + encrypted=00000000000000000000000000008000 + +Set 6, vector#113: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000004000 + plain=2048685BDEABF6193EF1A63367C33FBC + encrypted=00000000000000000000000000004000 + +Set 6, vector#114: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000002000 + plain=C993A3A5E4BB04E60A5F980D12614CBC + encrypted=00000000000000000000000000002000 + +Set 6, vector#115: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000001000 + plain=3F1997EB05BF79F14A55771F7786979F + encrypted=00000000000000000000000000001000 + +Set 6, vector#116: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000800 + plain=8C73E0191E9B5E82274326AD832C42C3 + encrypted=00000000000000000000000000000800 + +Set 6, vector#117: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000400 + plain=9229E476D8E3CDCC4E3A3085C5F3B2BF + encrypted=00000000000000000000000000000400 + +Set 6, vector#118: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000200 + plain=D2134F3DCE3A31546A957E760E887405 + encrypted=00000000000000000000000000000200 + +Set 6, vector#119: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000100 + plain=6208F16843D4556398F2BCA90DD2F55C + encrypted=00000000000000000000000000000100 + +Set 6, vector#120: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000080 + plain=3704C4E19D9B165A24FCB1DB73BA9711 + encrypted=00000000000000000000000000000080 + +Set 6, vector#121: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000040 + plain=23EDF76129ABF4FE3552FD9A3287EC64 + encrypted=00000000000000000000000000000040 + +Set 6, vector#122: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000020 + plain=DE89B5D4F26D103FDCDFFC5F3E13C4CD + encrypted=00000000000000000000000000000020 + +Set 6, vector#123: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000010 + plain=1BDC2A865DC08ACD4CA2773D1B585B66 + encrypted=00000000000000000000000000000010 + +Set 6, vector#124: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000008 + plain=AF843C5FC5F1103A07C72C19723C8482 + encrypted=00000000000000000000000000000008 + +Set 6, vector#125: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000004 + plain=3540B785FFE4D5C935A2EE66CDFAB452 + encrypted=00000000000000000000000000000004 + +Set 6, vector#126: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000002 + plain=21E2CE54B483472AB6BC9FFCE7C68C6D + encrypted=00000000000000000000000000000002 + +Set 6, vector#127: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000001 + plain=8A0662E4DE45A4325FE8128E8237ACD1 + encrypted=00000000000000000000000000000001 + +Test vectors -- set 7 +===================== + +Set 7, vector# 0: + key=000000000000000000000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=13460E87A8FC023EF2501AFE7FF51C51 + encrypted=00000000000000000000000000000000 + +Set 7, vector# 1: + key=010101010101010101010101010101010101010101010101 + cipher=01010101010101010101010101010101 + plain=364DC2020C14535D6034434899F1C35F + encrypted=01010101010101010101010101010101 + +Set 7, vector# 2: + key=020202020202020202020202020202020202020202020202 + cipher=02020202020202020202020202020202 + plain=A47FCAD24C47F4F4CF4683801AB4A772 + encrypted=02020202020202020202020202020202 + +Set 7, vector# 3: + key=030303030303030303030303030303030303030303030303 + cipher=03030303030303030303030303030303 + plain=FA1EB21008D2C3659CF9C10DBDDEC8C9 + encrypted=03030303030303030303030303030303 + +Set 7, vector# 4: + key=040404040404040404040404040404040404040404040404 + cipher=04040404040404040404040404040404 + plain=3064DCD7D4A03A1E6C1EDF9673C27A1C + encrypted=04040404040404040404040404040404 + +Set 7, vector# 5: + key=050505050505050505050505050505050505050505050505 + cipher=05050505050505050505050505050505 + plain=52E508AAB976352DE06054DF94CC9E7B + encrypted=05050505050505050505050505050505 + +Set 7, vector# 6: + key=060606060606060606060606060606060606060606060606 + cipher=06060606060606060606060606060606 + plain=B98FE50CE702EF2FFCFD019AAAF03298 + encrypted=06060606060606060606060606060606 + +Set 7, vector# 7: + key=070707070707070707070707070707070707070707070707 + cipher=07070707070707070707070707070707 + plain=65821BE3F6535449E0A6497F85F646EA + encrypted=07070707070707070707070707070707 + +Set 7, vector# 8: + key=080808080808080808080808080808080808080808080808 + cipher=08080808080808080808080808080808 + plain=A7E36700C1C3239E1AF8F07C958B0913 + encrypted=08080808080808080808080808080808 + +Set 7, vector# 9: + key=090909090909090909090909090909090909090909090909 + cipher=09090909090909090909090909090909 + plain=5C7E5297E07F7EE9B015C0228A87178F + encrypted=09090909090909090909090909090909 + +Set 7, vector# 10: + key=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + cipher=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + plain=FF9F39BEC9B4A48D444DBE65474AA803 + encrypted=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + +Set 7, vector# 11: + key=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + cipher=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + plain=BAA5D38C14889C61D8845008F9E49B10 + encrypted=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + +Set 7, vector# 12: + key=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + cipher=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + plain=7DDAF818773823E8E4E9B51F15296269 + encrypted=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + +Set 7, vector# 13: + key=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + cipher=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + plain=8325CF927FBB0469E52C4E55D63B2A3B + encrypted=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + +Set 7, vector# 14: + key=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + cipher=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + plain=F241ACE0FDD29C42CDBE81A96874B11D + encrypted=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + +Set 7, vector# 15: + key=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + cipher=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + plain=407F444B2B333E55D8ED924D09E64161 + encrypted=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + +Set 7, vector# 16: + key=101010101010101010101010101010101010101010101010 + cipher=10101010101010101010101010101010 + plain=D98CE2DF699D695412C7326EE9C36956 + encrypted=10101010101010101010101010101010 + +Set 7, vector# 17: + key=111111111111111111111111111111111111111111111111 + cipher=11111111111111111111111111111111 + plain=FE53F7A3B42D7D12CD0175D8562B5FC5 + encrypted=11111111111111111111111111111111 + +Set 7, vector# 18: + key=121212121212121212121212121212121212121212121212 + cipher=12121212121212121212121212121212 + plain=F5A5F5B51F9FE01ECA4281CF85289325 + encrypted=12121212121212121212121212121212 + +Set 7, vector# 19: + key=131313131313131313131313131313131313131313131313 + cipher=13131313131313131313131313131313 + plain=32B13D42900A9C85A19A5D2785FF0C09 + encrypted=13131313131313131313131313131313 + +Set 7, vector# 20: + key=141414141414141414141414141414141414141414141414 + cipher=14141414141414141414141414141414 + plain=083BBE3B93C46B20D2FB6C14510890BC + encrypted=14141414141414141414141414141414 + +Set 7, vector# 21: + key=151515151515151515151515151515151515151515151515 + cipher=15151515151515151515151515151515 + plain=767EDE43C80A5EBC45CED9A6CE030C11 + encrypted=15151515151515151515151515151515 + +Set 7, vector# 22: + key=161616161616161616161616161616161616161616161616 + cipher=16161616161616161616161616161616 + plain=3D0038C0E3BF82086C1F1886B5E094C3 + encrypted=16161616161616161616161616161616 + +Set 7, vector# 23: + key=171717171717171717171717171717171717171717171717 + cipher=17171717171717171717171717171717 + plain=590950C2D3E8B0FA81CD35C1701EF976 + encrypted=17171717171717171717171717171717 + +Set 7, vector# 24: + key=181818181818181818181818181818181818181818181818 + cipher=18181818181818181818181818181818 + plain=500CD4F29DE20FF8D70E56906F9742A5 + encrypted=18181818181818181818181818181818 + +Set 7, vector# 25: + key=191919191919191919191919191919191919191919191919 + cipher=19191919191919191919191919191919 + plain=486086DCB86864FC80ED468424996967 + encrypted=19191919191919191919191919191919 + +Set 7, vector# 26: + key=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + cipher=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + plain=E5764798686971191E3FBB3A0EC87BF2 + encrypted=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + +Set 7, vector# 27: + key=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + cipher=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + plain=7A4A67B595E20A7225F32D864244783F + encrypted=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + +Set 7, vector# 28: + key=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + cipher=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + plain=23BA88F67C4D80084EC313CFCFEFC063 + encrypted=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + +Set 7, vector# 29: + key=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + cipher=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + plain=9DD3AE401CF95BF8F7CB67BFE999B4E3 + encrypted=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + +Set 7, vector# 30: + key=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + cipher=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + plain=F7F26F4CC0A1D7A941E09586BEEE755F + encrypted=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + +Set 7, vector# 31: + key=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + cipher=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + plain=2B8701C290B76A3476A10DD3F91208F9 + encrypted=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + +Set 7, vector# 32: + key=202020202020202020202020202020202020202020202020 + cipher=20202020202020202020202020202020 + plain=8954E9154FBEA5490FE0F0F4A6B73218 + encrypted=20202020202020202020202020202020 + +Set 7, vector# 33: + key=212121212121212121212121212121212121212121212121 + cipher=21212121212121212121212121212121 + plain=56779206C973E23ECC214E53DF8533A7 + encrypted=21212121212121212121212121212121 + +Set 7, vector# 34: + key=222222222222222222222222222222222222222222222222 + cipher=22222222222222222222222222222222 + plain=1C7B2493AC555F081F20021041E81272 + encrypted=22222222222222222222222222222222 + +Set 7, vector# 35: + key=232323232323232323232323232323232323232323232323 + cipher=23232323232323232323232323232323 + plain=ADBAB6DB648736CBCA5BF04D862BEA36 + encrypted=23232323232323232323232323232323 + +Set 7, vector# 36: + key=242424242424242424242424242424242424242424242424 + cipher=24242424242424242424242424242424 + plain=91445E3B9C7B420BDD0D9C760663AAD1 + encrypted=24242424242424242424242424242424 + +Set 7, vector# 37: + key=252525252525252525252525252525252525252525252525 + cipher=25252525252525252525252525252525 + plain=1624045ECEF8F7466DD32BD02850DC76 + encrypted=25252525252525252525252525252525 + +Set 7, vector# 38: + key=262626262626262626262626262626262626262626262626 + cipher=26262626262626262626262626262626 + plain=4B3B355B1781C554723C598B0F8454B6 + encrypted=26262626262626262626262626262626 + +Set 7, vector# 39: + key=272727272727272727272727272727272727272727272727 + cipher=27272727272727272727272727272727 + plain=3D551E64CA2AA073700FAF39E5A7F74B + encrypted=27272727272727272727272727272727 + +Set 7, vector# 40: + key=282828282828282828282828282828282828282828282828 + cipher=28282828282828282828282828282828 + plain=4122D01237B5E8D9507B80EA74037340 + encrypted=28282828282828282828282828282828 + +Set 7, vector# 41: + key=292929292929292929292929292929292929292929292929 + cipher=29292929292929292929292929292929 + plain=BBDC35A8ADF5DEE1336EB040A9CB4B1F + encrypted=29292929292929292929292929292929 + +Set 7, vector# 42: + key=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + cipher=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + plain=CFB37E5B2E2E06E16E8C525184EA81AA + encrypted=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + +Set 7, vector# 43: + key=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + cipher=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + plain=330A20B27BA9EAFFCA344B2E4FADB9DE + encrypted=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + +Set 7, vector# 44: + key=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + cipher=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + plain=FD19DBBE34940BA1C7AEBB3558EBA8D4 + encrypted=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + +Set 7, vector# 45: + key=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + cipher=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + plain=6C8D125581D619FEA41979AD7B1782E3 + encrypted=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + +Set 7, vector# 46: + key=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + cipher=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + plain=0BF30D6792E5BF8BD8CAAC8C7DC3ABBB + encrypted=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + +Set 7, vector# 47: + key=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + cipher=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + plain=ABF74FFA72B9AA8E7BC6F4C056E80CEF + encrypted=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + +Set 7, vector# 48: + key=303030303030303030303030303030303030303030303030 + cipher=30303030303030303030303030303030 + plain=098181AD9608679CA4241758A4A91F1D + encrypted=30303030303030303030303030303030 + +Set 7, vector# 49: + key=313131313131313131313131313131313131313131313131 + cipher=31313131313131313131313131313131 + plain=09DB24D5E9576F13A9B44944316A7F1A + encrypted=31313131313131313131313131313131 + +Set 7, vector# 50: + key=323232323232323232323232323232323232323232323232 + cipher=32323232323232323232323232323232 + plain=DF675B978229C60E5980FCF5772D305F + encrypted=32323232323232323232323232323232 + +Set 7, vector# 51: + key=333333333333333333333333333333333333333333333333 + cipher=33333333333333333333333333333333 + plain=EA07BAE22EB1020859C5B9C61C7A13EB + encrypted=33333333333333333333333333333333 + +Set 7, vector# 52: + key=343434343434343434343434343434343434343434343434 + cipher=34343434343434343434343434343434 + plain=3AC82F753E934FFB2ACDB0BBC820E6B9 + encrypted=34343434343434343434343434343434 + +Set 7, vector# 53: + key=353535353535353535353535353535353535353535353535 + cipher=35353535353535353535353535353535 + plain=750988C2E7FCA943D322E0AA199FA768 + encrypted=35353535353535353535353535353535 + +Set 7, vector# 54: + key=363636363636363636363636363636363636363636363636 + cipher=36363636363636363636363636363636 + plain=B6B5A0CA2E2180088701A7B7CB1090F2 + encrypted=36363636363636363636363636363636 + +Set 7, vector# 55: + key=373737373737373737373737373737373737373737373737 + cipher=37373737373737373737373737373737 + plain=5EFC75FEB0EC0FB57A6289CE8F626BBC + encrypted=37373737373737373737373737373737 + +Set 7, vector# 56: + key=383838383838383838383838383838383838383838383838 + cipher=38383838383838383838383838383838 + plain=379DF7578CB263E03D4C36E877AC00F9 + encrypted=38383838383838383838383838383838 + +Set 7, vector# 57: + key=393939393939393939393939393939393939393939393939 + cipher=39393939393939393939393939393939 + plain=BF533D52F5667D9B2263910E8A766755 + encrypted=39393939393939393939393939393939 + +Set 7, vector# 58: + key=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + cipher=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + plain=C3160B2F70823A4867E31F9B8558E7A9 + encrypted=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + +Set 7, vector# 59: + key=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + cipher=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + plain=64279C85DD055F9584C04496DFE9823A + encrypted=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + +Set 7, vector# 60: + key=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + cipher=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + plain=BF69053C4904E72AC2237AFD7074E5FB + encrypted=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + +Set 7, vector# 61: + key=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + cipher=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + plain=A6A1FCBB9689217085C2E4B8DA09C69F + encrypted=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + +Set 7, vector# 62: + key=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + cipher=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + plain=3034E0AAE6A4DBD80D8CF9CB4995BF8A + encrypted=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + +Set 7, vector# 63: + key=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + cipher=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + plain=1819955EFAEE4B05ADB8FB812C9876B4 + encrypted=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + +Set 7, vector# 64: + key=404040404040404040404040404040404040404040404040 + cipher=40404040404040404040404040404040 + plain=9978E1F77214E091FFACD5F34DB45855 + encrypted=40404040404040404040404040404040 + +Set 7, vector# 65: + key=414141414141414141414141414141414141414141414141 + cipher=41414141414141414141414141414141 + plain=9F3F72C6611403825BF38251EB655F40 + encrypted=41414141414141414141414141414141 + +Set 7, vector# 66: + key=424242424242424242424242424242424242424242424242 + cipher=42424242424242424242424242424242 + plain=68E2CF814F303FBF5FC12954EF3871E5 + encrypted=42424242424242424242424242424242 + +Set 7, vector# 67: + key=434343434343434343434343434343434343434343434343 + cipher=43434343434343434343434343434343 + plain=A6F0EAFDF16DA8853409A1AF0543F280 + encrypted=43434343434343434343434343434343 + +Set 7, vector# 68: + key=444444444444444444444444444444444444444444444444 + cipher=44444444444444444444444444444444 + plain=106758F3DEE82A2166A0074A2C498CA6 + encrypted=44444444444444444444444444444444 + +Set 7, vector# 69: + key=454545454545454545454545454545454545454545454545 + cipher=45454545454545454545454545454545 + plain=42C7CFB68E94DBF33AA8B0A365B79DE6 + encrypted=45454545454545454545454545454545 + +Set 7, vector# 70: + key=464646464646464646464646464646464646464646464646 + cipher=46464646464646464646464646464646 + plain=11ED5F9AA88E7D6E097112257E2F2B78 + encrypted=46464646464646464646464646464646 + +Set 7, vector# 71: + key=474747474747474747474747474747474747474747474747 + cipher=47474747474747474747474747474747 + plain=6EB368A48EC3596633C6F9F8E8EBCF18 + encrypted=47474747474747474747474747474747 + +Set 7, vector# 72: + key=484848484848484848484848484848484848484848484848 + cipher=48484848484848484848484848484848 + plain=21DB598D8583FE6C94299A099EA928B4 + encrypted=48484848484848484848484848484848 + +Set 7, vector# 73: + key=494949494949494949494949494949494949494949494949 + cipher=49494949494949494949494949494949 + plain=D6C5144A783FB22251E3F751C2674467 + encrypted=49494949494949494949494949494949 + +Set 7, vector# 74: + key=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + cipher=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + plain=4AA7FEFE06D46B3DF71A11A9668214CD + encrypted=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + +Set 7, vector# 75: + key=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + cipher=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + plain=96FD4AD8E863F0DEF1AA35C60E08A063 + encrypted=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + +Set 7, vector# 76: + key=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + cipher=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + plain=296C505263F28C349FEE270C974AC727 + encrypted=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + +Set 7, vector# 77: + key=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + cipher=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + plain=17D981594B942C105888D5B5BB33508A + encrypted=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + +Set 7, vector# 78: + key=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + cipher=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + plain=0A23C05135A5FEBD4295B2B5FB8F59D1 + encrypted=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + +Set 7, vector# 79: + key=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + cipher=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + plain=DAF1CD7755F7DF83B660D2629EDEFF51 + encrypted=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + +Set 7, vector# 80: + key=505050505050505050505050505050505050505050505050 + cipher=50505050505050505050505050505050 + plain=1FED68F36C75EFAFDBD1A8FE7C3F3B65 + encrypted=50505050505050505050505050505050 + +Set 7, vector# 81: + key=515151515151515151515151515151515151515151515151 + cipher=51515151515151515151515151515151 + plain=96CD1F6C822DFCEB3F3F3C07C645B994 + encrypted=51515151515151515151515151515151 + +Set 7, vector# 82: + key=525252525252525252525252525252525252525252525252 + cipher=52525252525252525252525252525252 + plain=CF0DA3AB3B78DD8E6C78C6F09D30A55B + encrypted=52525252525252525252525252525252 + +Set 7, vector# 83: + key=535353535353535353535353535353535353535353535353 + cipher=53535353535353535353535353535353 + plain=50544269802F7C269260EDDABF088837 + encrypted=53535353535353535353535353535353 + +Set 7, vector# 84: + key=545454545454545454545454545454545454545454545454 + cipher=54545454545454545454545454545454 + plain=EDF3F19C6CF3181C50D61A40E37D4CEE + encrypted=54545454545454545454545454545454 + +Set 7, vector# 85: + key=555555555555555555555555555555555555555555555555 + cipher=55555555555555555555555555555555 + plain=22A60E64CBFA7F8126133D49F31E2E9F + encrypted=55555555555555555555555555555555 + +Set 7, vector# 86: + key=565656565656565656565656565656565656565656565656 + cipher=56565656565656565656565656565656 + plain=288F4BA66C014AD04109DF3EF3534641 + encrypted=56565656565656565656565656565656 + +Set 7, vector# 87: + key=575757575757575757575757575757575757575757575757 + cipher=57575757575757575757575757575757 + plain=4A6FD1A19057C1A3589A74C260D2B5D8 + encrypted=57575757575757575757575757575757 + +Set 7, vector# 88: + key=585858585858585858585858585858585858585858585858 + cipher=58585858585858585858585858585858 + plain=92AF457A3BB363CD278AD168B378EC69 + encrypted=58585858585858585858585858585858 + +Set 7, vector# 89: + key=595959595959595959595959595959595959595959595959 + cipher=59595959595959595959595959595959 + plain=66336B9555DC423BEBDC50649A9A698F + encrypted=59595959595959595959595959595959 + +Set 7, vector# 90: + key=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + cipher=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + plain=BE80460DFEAD8A34BC5D301DB6BD080B + encrypted=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + +Set 7, vector# 91: + key=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + cipher=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + plain=A3BBC80386B26CD051A24EE674AC8E4A + encrypted=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + +Set 7, vector# 92: + key=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + cipher=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + plain=4FFEA4E553D310678B7F3CA1CF15CDB3 + encrypted=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + +Set 7, vector# 93: + key=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + cipher=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + plain=6CF8386100617045D7E092DA8B224FAF + encrypted=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + +Set 7, vector# 94: + key=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + cipher=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + plain=593F1632D8F67546BE8F6D6D035623EE + encrypted=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + +Set 7, vector# 95: + key=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + cipher=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + plain=2B64BA2C42473157D5D633E3269F623B + encrypted=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + +Set 7, vector# 96: + key=606060606060606060606060606060606060606060606060 + cipher=60606060606060606060606060606060 + plain=B2A3C7DBE4EE9B567F67D2979AA01683 + encrypted=60606060606060606060606060606060 + +Set 7, vector# 97: + key=616161616161616161616161616161616161616161616161 + cipher=61616161616161616161616161616161 + plain=7A8FBD46EC7CE720266A42C91A11F806 + encrypted=61616161616161616161616161616161 + +Set 7, vector# 98: + key=626262626262626262626262626262626262626262626262 + cipher=62626262626262626262626262626262 + plain=20E3AFDE45148CBA5BB83EB97E7ABBD8 + encrypted=62626262626262626262626262626262 + +Set 7, vector# 99: + key=636363636363636363636363636363636363636363636363 + cipher=63636363636363636363636363636363 + plain=CA936E1FA09983B810C53106B1E50685 + encrypted=63636363636363636363636363636363 + +Set 7, vector#100: + key=646464646464646464646464646464646464646464646464 + cipher=64646464646464646464646464646464 + plain=1C1FAEA8187B220177B37B7E9105EAA4 + encrypted=64646464646464646464646464646464 + +Set 7, vector#101: + key=656565656565656565656565656565656565656565656565 + cipher=65656565656565656565656565656565 + plain=24DB52F2959DFEEE7F66B11B13F3D67E + encrypted=65656565656565656565656565656565 + +Set 7, vector#102: + key=666666666666666666666666666666666666666666666666 + cipher=66666666666666666666666666666666 + plain=4FFAF870A2916E1466D64535B5751813 + encrypted=66666666666666666666666666666666 + +Set 7, vector#103: + key=676767676767676767676767676767676767676767676767 + cipher=67676767676767676767676767676767 + plain=491C48ADDEBDC500B56A9D8A9E3C1202 + encrypted=67676767676767676767676767676767 + +Set 7, vector#104: + key=686868686868686868686868686868686868686868686868 + cipher=68686868686868686868686868686868 + plain=BC5F04C9DC59D4EA00C29CEB8B6AF756 + encrypted=68686868686868686868686868686868 + +Set 7, vector#105: + key=696969696969696969696969696969696969696969696969 + cipher=69696969696969696969696969696969 + plain=6747953DE71F8ADB85A35B2A51ED1682 + encrypted=69696969696969696969696969696969 + +Set 7, vector#106: + key=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + cipher=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + plain=A63D628A374D781279070C4F0437556B + encrypted=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + +Set 7, vector#107: + key=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + cipher=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + plain=F68C0A7BB764A018A3DB4273D55C4FFB + encrypted=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + +Set 7, vector#108: + key=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + cipher=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + plain=FE722C26E1D28B15AB545016EAE23F1B + encrypted=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + +Set 7, vector#109: + key=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + cipher=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + plain=3C7A00955B8D4F541A03400038A35617 + encrypted=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + +Set 7, vector#110: + key=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + cipher=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + plain=AFDDBC9A0E395B0EE4876B3BE2B640FA + encrypted=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + +Set 7, vector#111: + key=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + cipher=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + plain=745E88730DC32D21B193D934C2C95742 + encrypted=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + +Set 7, vector#112: + key=707070707070707070707070707070707070707070707070 + cipher=70707070707070707070707070707070 + plain=911CF145B43BE53B08BA8496EED1E297 + encrypted=70707070707070707070707070707070 + +Set 7, vector#113: + key=717171717171717171717171717171717171717171717171 + cipher=71717171717171717171717171717171 + plain=0791C72E97AE9DE99B700003096931D0 + encrypted=71717171717171717171717171717171 + +Set 7, vector#114: + key=727272727272727272727272727272727272727272727272 + cipher=72727272727272727272727272727272 + plain=DA794654D43D25C6E53120E092E068DE + encrypted=72727272727272727272727272727272 + +Set 7, vector#115: + key=737373737373737373737373737373737373737373737373 + cipher=73737373737373737373737373737373 + plain=3F1E5657F17E3755C9C6298BCD99DC48 + encrypted=73737373737373737373737373737373 + +Set 7, vector#116: + key=747474747474747474747474747474747474747474747474 + cipher=74747474747474747474747474747474 + plain=770598146849F2E0D569F32CCC2D33E5 + encrypted=74747474747474747474747474747474 + +Set 7, vector#117: + key=757575757575757575757575757575757575757575757575 + cipher=75757575757575757575757575757575 + plain=E944CD25C27D405A6A2C9D0D3BEEDF87 + encrypted=75757575757575757575757575757575 + +Set 7, vector#118: + key=767676767676767676767676767676767676767676767676 + cipher=76767676767676767676767676767676 + plain=73719B1E98876ADEC0AC882D589993EF + encrypted=76767676767676767676767676767676 + +Set 7, vector#119: + key=777777777777777777777777777777777777777777777777 + cipher=77777777777777777777777777777777 + plain=42AB3181D6168309F522C5048B9959B9 + encrypted=77777777777777777777777777777777 + +Set 7, vector#120: + key=787878787878787878787878787878787878787878787878 + cipher=78787878787878787878787878787878 + plain=D52C5D4CA8015A2D0FF578D4C3485D61 + encrypted=78787878787878787878787878787878 + +Set 7, vector#121: + key=797979797979797979797979797979797979797979797979 + cipher=79797979797979797979797979797979 + plain=5BDE76546C1CE2378F21A1041B312DA9 + encrypted=79797979797979797979797979797979 + +Set 7, vector#122: + key=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + cipher=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + plain=D7C08CF48A8FC188814F683FEEF09E8C + encrypted=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + +Set 7, vector#123: + key=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + cipher=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + plain=D905BA0677FFAA2D189C3C203BE6321F + encrypted=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + +Set 7, vector#124: + key=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + cipher=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + plain=58EE009E256EF0820FE2A6C4FC4C2776 + encrypted=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + +Set 7, vector#125: + key=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + cipher=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + plain=96A0769D14BC084C953E73BC1F7D7193 + encrypted=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + +Set 7, vector#126: + key=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + cipher=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + plain=5141FD2F3F1B508D70D4622DB02B4418 + encrypted=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + +Set 7, vector#127: + key=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + cipher=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + plain=110F125CBC6567950EEACE3EAC1E9F34 + encrypted=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + +Set 7, vector#128: + key=808080808080808080808080808080808080808080808080 + cipher=80808080808080808080808080808080 + plain=C214E1A7A7276679A9CADF9BB49BB167 + encrypted=80808080808080808080808080808080 + +Set 7, vector#129: + key=818181818181818181818181818181818181818181818181 + cipher=81818181818181818181818181818181 + plain=075D613E33D3D15FA80555D5A2403A8F + encrypted=81818181818181818181818181818181 + +Set 7, vector#130: + key=828282828282828282828282828282828282828282828282 + cipher=82828282828282828282828282828282 + plain=50BD2412270B3986958C23C638FD6355 + encrypted=82828282828282828282828282828282 + +Set 7, vector#131: + key=838383838383838383838383838383838383838383838383 + cipher=83838383838383838383838383838383 + plain=A7A06A6D8DD9AED11888CF408EC46CD4 + encrypted=83838383838383838383838383838383 + +Set 7, vector#132: + key=848484848484848484848484848484848484848484848484 + cipher=84848484848484848484848484848484 + plain=D1D6FD70551E3C42354F52004041CAE2 + encrypted=84848484848484848484848484848484 + +Set 7, vector#133: + key=858585858585858585858585858585858585858585858585 + cipher=85858585858585858585858585858585 + plain=9E7ECA451B92E9BF41DFDC26143B2A28 + encrypted=85858585858585858585858585858585 + +Set 7, vector#134: + key=868686868686868686868686868686868686868686868686 + cipher=86868686868686868686868686868686 + plain=4D06CBC6E36957CE5E79B7C083BE5A27 + encrypted=86868686868686868686868686868686 + +Set 7, vector#135: + key=878787878787878787878787878787878787878787878787 + cipher=87878787878787878787878787878787 + plain=3B72B94278A6FAB0E39356970077F5B8 + encrypted=87878787878787878787878787878787 + +Set 7, vector#136: + key=888888888888888888888888888888888888888888888888 + cipher=88888888888888888888888888888888 + plain=105D937616971917C3FD725647993E7C + encrypted=88888888888888888888888888888888 + +Set 7, vector#137: + key=898989898989898989898989898989898989898989898989 + cipher=89898989898989898989898989898989 + plain=85E1FE2E98D05B1B325B2AC829175AB7 + encrypted=89898989898989898989898989898989 + +Set 7, vector#138: + key=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + cipher=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + plain=121E7B54205CB6CE21BFE832ECE4BC6A + encrypted=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + +Set 7, vector#139: + key=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + cipher=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + plain=7CC40DE4A697055ECB5985B075EDF785 + encrypted=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + +Set 7, vector#140: + key=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + cipher=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + plain=D4EEB357DBEF39216140228ECCCC2284 + encrypted=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + +Set 7, vector#141: + key=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + cipher=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + plain=1214E1F887D3A385EE2A8A535E45F6D5 + encrypted=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + +Set 7, vector#142: + key=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + cipher=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + plain=B50E5F377DC1C1520BEABAF14FDCE853 + encrypted=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + +Set 7, vector#143: + key=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + cipher=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + plain=7EBEAD6C00092E6CB317906503BAE06A + encrypted=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + +Set 7, vector#144: + key=909090909090909090909090909090909090909090909090 + cipher=90909090909090909090909090909090 + plain=627262DF8841B6231BB7F3C771B85809 + encrypted=90909090909090909090909090909090 + +Set 7, vector#145: + key=919191919191919191919191919191919191919191919191 + cipher=91919191919191919191919191919191 + plain=6D451CEB0BCF14A4AED0D561016B3A7D + encrypted=91919191919191919191919191919191 + +Set 7, vector#146: + key=929292929292929292929292929292929292929292929292 + cipher=92929292929292929292929292929292 + plain=2CD7339973812A4AA3A5231C1694BCB5 + encrypted=92929292929292929292929292929292 + +Set 7, vector#147: + key=939393939393939393939393939393939393939393939393 + cipher=93939393939393939393939393939393 + plain=D0370EA3094514845C61C4E485E9B48C + encrypted=93939393939393939393939393939393 + +Set 7, vector#148: + key=949494949494949494949494949494949494949494949494 + cipher=94949494949494949494949494949494 + plain=581939F6AF70D63ACC7F07C8234B9767 + encrypted=94949494949494949494949494949494 + +Set 7, vector#149: + key=959595959595959595959595959595959595959595959595 + cipher=95959595959595959595959595959595 + plain=A7B54A498DE16720AF16106B006493DF + encrypted=95959595959595959595959595959595 + +Set 7, vector#150: + key=969696969696969696969696969696969696969696969696 + cipher=96969696969696969696969696969696 + plain=393B16D08F3C1369B624DF1BE5109BE5 + encrypted=96969696969696969696969696969696 + +Set 7, vector#151: + key=979797979797979797979797979797979797979797979797 + cipher=97979797979797979797979797979797 + plain=504D226B8E1A398A66D573715C13F5AB + encrypted=97979797979797979797979797979797 + +Set 7, vector#152: + key=989898989898989898989898989898989898989898989898 + cipher=98989898989898989898989898989898 + plain=C0F87D776AA58435548C7741DA35D636 + encrypted=98989898989898989898989898989898 + +Set 7, vector#153: + key=999999999999999999999999999999999999999999999999 + cipher=99999999999999999999999999999999 + plain=A7135B014710B4F9A133BE1823571A32 + encrypted=99999999999999999999999999999999 + +Set 7, vector#154: + key=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + cipher=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + plain=F26A8B950CA988537990D088855659A1 + encrypted=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + +Set 7, vector#155: + key=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + cipher=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + plain=7837AE37C0581B7D2E1AA043C173C502 + encrypted=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + +Set 7, vector#156: + key=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + cipher=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + plain=2590B25CB83BD69E5745AAF6AE59A864 + encrypted=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + +Set 7, vector#157: + key=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + cipher=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + plain=1DCF978029F22D1712A3673C02FFAB80 + encrypted=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + +Set 7, vector#158: + key=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + cipher=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + plain=3D7DB2E73040DE8A82569B9A62749FCA + encrypted=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + +Set 7, vector#159: + key=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + cipher=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + plain=F78CB29540307A61423B9338D5A2A100 + encrypted=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + +Set 7, vector#160: + key=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + cipher=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + plain=B73657935A995D61639EDF4B2B011C75 + encrypted=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + +Set 7, vector#161: + key=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + cipher=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + plain=E60CCE23D35F36069BC003EA59283F5C + encrypted=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + +Set 7, vector#162: + key=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + cipher=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + plain=E2B28D1203ACE595EE23E13B668A3A92 + encrypted=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + +Set 7, vector#163: + key=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + cipher=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + plain=D72D5F515B5FC631FF4B8071CF211EE4 + encrypted=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + +Set 7, vector#164: + key=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + cipher=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + plain=F8892ADF79721661422904C301E416A2 + encrypted=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + +Set 7, vector#165: + key=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + cipher=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + plain=E1644EC3542EFBBB2070C2973C584CFB + encrypted=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + +Set 7, vector#166: + key=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + cipher=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + plain=0B0C276A98E1900D2412C081F5D1CED7 + encrypted=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + +Set 7, vector#167: + key=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + cipher=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + plain=EA00A274FD9626B1E7134EC39C2555D6 + encrypted=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + +Set 7, vector#168: + key=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + cipher=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + plain=C04403AC0709D87FA2C8BFC8061DEE80 + encrypted=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + +Set 7, vector#169: + key=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + cipher=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + plain=C7927996A3454403417B65E1F87E1BB8 + encrypted=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + +Set 7, vector#170: + key=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + cipher=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + plain=5256FC2CA2CC989EA8C5EDADB8DD3EEB + encrypted=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + +Set 7, vector#171: + key=ABABABABABABABABABABABABABABABABABABABABABABABAB + cipher=ABABABABABABABABABABABABABABABAB + plain=1106A84CD52D217A16E9414E606C2498 + encrypted=ABABABABABABABABABABABABABABABAB + +Set 7, vector#172: + key=ACACACACACACACACACACACACACACACACACACACACACACACAC + cipher=ACACACACACACACACACACACACACACACAC + plain=3F313A28D37DD881E9440965E5A530E7 + encrypted=ACACACACACACACACACACACACACACACAC + +Set 7, vector#173: + key=ADADADADADADADADADADADADADADADADADADADADADADADAD + cipher=ADADADADADADADADADADADADADADADAD + plain=D94108CEB78E41E09F87A3A8944E1B0F + encrypted=ADADADADADADADADADADADADADADADAD + +Set 7, vector#174: + key=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + cipher=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + plain=9DD1AD555949FF0A40A14C626F172D7F + encrypted=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + +Set 7, vector#175: + key=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + cipher=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + plain=2A81BF491D07B9E41B988CEDF24050B3 + encrypted=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + +Set 7, vector#176: + key=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + cipher=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + plain=D20CED442D8A485D6E88AFFEFC038771 + encrypted=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + +Set 7, vector#177: + key=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + cipher=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + plain=87C9D2251955D14DDD403657F300E8E1 + encrypted=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + +Set 7, vector#178: + key=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + cipher=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + plain=992CE2968A4C4E09485ABC0531C9F729 + encrypted=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + +Set 7, vector#179: + key=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + cipher=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + plain=B1F3FF2AB8DDC81F8F6A6B4B216A72A5 + encrypted=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + +Set 7, vector#180: + key=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + cipher=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + plain=FE2F277FAC96346298D92887DEE8FAA2 + encrypted=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + +Set 7, vector#181: + key=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + cipher=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + plain=E04F0E71D78C6DD4651C69B0C876FA0F + encrypted=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + +Set 7, vector#182: + key=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + cipher=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + plain=766B93C9E3F9A7FABE7DD33C4A089CB2 + encrypted=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + +Set 7, vector#183: + key=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + cipher=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + plain=E05782245908A4B6C0377DB64E0139DB + encrypted=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + +Set 7, vector#184: + key=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + cipher=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + plain=68FD1BB6F3855969BA9F83EBE4A62520 + encrypted=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + +Set 7, vector#185: + key=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + cipher=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + plain=225C81BDAD687C143CD0F1CF0EF32CA9 + encrypted=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + +Set 7, vector#186: + key=BABABABABABABABABABABABABABABABABABABABABABABABA + cipher=BABABABABABABABABABABABABABABABA + plain=10D1999F0B545DFDD90147C97F16FC7C + encrypted=BABABABABABABABABABABABABABABABA + +Set 7, vector#187: + key=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + cipher=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + plain=495EFB0E54974AC6DA712B02CF2FDB86 + encrypted=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + +Set 7, vector#188: + key=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + cipher=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + plain=8310CB0EEC346C2AABC5D5C8201E7B1E + encrypted=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + +Set 7, vector#189: + key=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + cipher=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + plain=2565CFC02A395866F499E23F4BCF0848 + encrypted=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + +Set 7, vector#190: + key=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + cipher=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + plain=FC178A47E57AE8FFFA9EB912602892F4 + encrypted=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + +Set 7, vector#191: + key=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + cipher=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + plain=6A28059881D50FAC94AC4E2030CE6CC4 + encrypted=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + +Set 7, vector#192: + key=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + cipher=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + plain=ED2C3F587868159B81EBA941B78899D3 + encrypted=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + +Set 7, vector#193: + key=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + cipher=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + plain=5F2A81664986470CA6BE761F4A857035 + encrypted=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + +Set 7, vector#194: + key=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + cipher=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + plain=BC12AB252D017A0162577695631480C9 + encrypted=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + +Set 7, vector#195: + key=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + cipher=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + plain=C56A06C4F15D74C287DB88F3A1EEC96A + encrypted=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + +Set 7, vector#196: + key=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + cipher=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + plain=2970CB708D59F99F928ADCCDFDE69BB2 + encrypted=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + +Set 7, vector#197: + key=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + cipher=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + plain=AD031257BF373BD18F2DFA52AA277018 + encrypted=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + +Set 7, vector#198: + key=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + cipher=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + plain=C79FDD789F2364F8EAB9218BC2E57C0E + encrypted=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + +Set 7, vector#199: + key=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + cipher=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + plain=7F62C69B525AF337E9226C824406BBA6 + encrypted=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + +Set 7, vector#200: + key=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + cipher=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + plain=C6D86F37CF346CEEC7744DDE4198F078 + encrypted=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + +Set 7, vector#201: + key=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + cipher=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + plain=BBCF8EF01FA96F66592CE812CFF13B7B + encrypted=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + +Set 7, vector#202: + key=CACACACACACACACACACACACACACACACACACACACACACACACA + cipher=CACACACACACACACACACACACACACACACA + plain=3A14FB7FDC5E67A352463D6EEF9E1C1A + encrypted=CACACACACACACACACACACACACACACACA + +Set 7, vector#203: + key=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + cipher=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + plain=D521F79C5E34B0292C6C9D15C3BAEFFA + encrypted=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + +Set 7, vector#204: + key=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + cipher=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + plain=CE30D8E4EC1857F3D0F219A0E686886B + encrypted=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + +Set 7, vector#205: + key=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + cipher=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + plain=1816244AC09C7826E5CC218E24C9C2D0 + encrypted=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + +Set 7, vector#206: + key=CECECECECECECECECECECECECECECECECECECECECECECECE + cipher=CECECECECECECECECECECECECECECECE + plain=AD07650223C161FD39223E13A9A7AD6E + encrypted=CECECECECECECECECECECECECECECECE + +Set 7, vector#207: + key=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + cipher=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + plain=854CA932F4DC3476617324BFF6409975 + encrypted=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + +Set 7, vector#208: + key=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + cipher=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + plain=3D93036FB3A870DE7EFC8EA8794BF47B + encrypted=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + +Set 7, vector#209: + key=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + cipher=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + plain=5CB48F13CBA2C18D07FA24B1DBE23245 + encrypted=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + +Set 7, vector#210: + key=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + cipher=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + plain=9C24346F32F40C8AE4A24A348AC93441 + encrypted=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + +Set 7, vector#211: + key=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + cipher=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + plain=C6EDD38A9C48325909B43E69178085FD + encrypted=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + +Set 7, vector#212: + key=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + cipher=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + plain=D26C06E8DFB27B0D37FDD3A762A9BE1A + encrypted=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + +Set 7, vector#213: + key=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + cipher=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + plain=3846347D4AFA42801192EE2784C96146 + encrypted=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + +Set 7, vector#214: + key=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + cipher=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + plain=705147DE56585845595A147C771E30FA + encrypted=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + +Set 7, vector#215: + key=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + cipher=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + plain=2C7EC14D047ED61430EC20B6D5F578CC + encrypted=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + +Set 7, vector#216: + key=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + cipher=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + plain=23E364A8F774E91FD663DBABF7C36D0C + encrypted=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + +Set 7, vector#217: + key=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + cipher=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + plain=2260D7B984DF624EFDD06C836866489A + encrypted=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + +Set 7, vector#218: + key=DADADADADADADADADADADADADADADADADADADADADADADADA + cipher=DADADADADADADADADADADADADADADADA + plain=D2D6FE56EED9ADB0697F44AC14B8B5FD + encrypted=DADADADADADADADADADADADADADADADA + +Set 7, vector#219: + key=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + cipher=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + plain=9D3D93794369138AC10CA997935FBA67 + encrypted=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + +Set 7, vector#220: + key=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + cipher=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + plain=99DAE4F2A29AA35FBCF06F1C575C5887 + encrypted=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + +Set 7, vector#221: + key=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + cipher=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + plain=A52320BB3F92AB1764A622AE0DC5480D + encrypted=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + +Set 7, vector#222: + key=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + cipher=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + plain=2C1D863268327A15125B44AE0074CD21 + encrypted=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + +Set 7, vector#223: + key=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + cipher=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + plain=71296DD337D273FC755BEDA4F8549074 + encrypted=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + +Set 7, vector#224: + key=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + cipher=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + plain=FFCF4853B75628BEBE07700D1AE8561C + encrypted=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + +Set 7, vector#225: + key=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + cipher=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + plain=65F47F74811AAA0CC5C95751AEA85A24 + encrypted=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + +Set 7, vector#226: + key=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + cipher=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + plain=FF56576D3E1CBBA78C27D1A16A25E12B + encrypted=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + +Set 7, vector#227: + key=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + cipher=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + plain=31F74F13D12D9AC46DDE21500C2193F3 + encrypted=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + +Set 7, vector#228: + key=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + cipher=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + plain=03486C4882B7E44F93EEAC7E7F719239 + encrypted=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + +Set 7, vector#229: + key=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + cipher=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + plain=F2D7F7CE8F596355EF484A5AC573C6E2 + encrypted=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + +Set 7, vector#230: + key=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + cipher=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + plain=FE3F9B8C63874EF3A970DA1006B112E6 + encrypted=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + +Set 7, vector#231: + key=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + cipher=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + plain=B470F9E35FFF9531ED05E2A671242118 + encrypted=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + +Set 7, vector#232: + key=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + cipher=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + plain=BBF204F822F6C44358780B4C1CB7D9A5 + encrypted=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + +Set 7, vector#233: + key=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + cipher=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + plain=CECC4CCF126E4E722D9F933F8CBFB5C1 + encrypted=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + +Set 7, vector#234: + key=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + cipher=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + plain=E24670B1B8E57705C1D08DB257160B36 + encrypted=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + +Set 7, vector#235: + key=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + cipher=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + plain=E0F0FC604975395B240F44042963B726 + encrypted=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + +Set 7, vector#236: + key=ECECECECECECECECECECECECECECECECECECECECECECECEC + cipher=ECECECECECECECECECECECECECECECEC + plain=73EDFF511CE877872BD24846FC5E4BB5 + encrypted=ECECECECECECECECECECECECECECECEC + +Set 7, vector#237: + key=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + cipher=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + plain=E740FD29255E63DF76A1CE78C5F1102C + encrypted=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + +Set 7, vector#238: + key=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + cipher=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + plain=D3109FA7A7F4680C7BF567228056B59E + encrypted=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + +Set 7, vector#239: + key=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + cipher=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + plain=AEBC5CF734682A68B7408907E30ABF32 + encrypted=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + +Set 7, vector#240: + key=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + cipher=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + plain=AF50E9153274B90CFAC67CADA9E9FD11 + encrypted=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + +Set 7, vector#241: + key=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + cipher=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + plain=86AC35E340C4632F61C56DFF04A253DD + encrypted=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + +Set 7, vector#242: + key=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + cipher=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + plain=DFE147D9FE52213F622B9C6C25085741 + encrypted=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + +Set 7, vector#243: + key=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + cipher=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + plain=5BDED16084BBAB923CB51DD36E80354A + encrypted=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + +Set 7, vector#244: + key=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + cipher=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + plain=9E11D566802CB960EDDED6A11698D2D5 + encrypted=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + +Set 7, vector#245: + key=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + cipher=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + plain=29D43796AC0E1B239491E5CC03BBFE8A + encrypted=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + +Set 7, vector#246: + key=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + cipher=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + plain=A3E1B15F561411B5578D5732DC4B0A61 + encrypted=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + +Set 7, vector#247: + key=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + cipher=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + plain=4BCA44B020E17E3D9FFB62FE8E2DD1BD + encrypted=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + +Set 7, vector#248: + key=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + cipher=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + plain=B37C3486DC50930A4094220312D13350 + encrypted=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + +Set 7, vector#249: + key=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + cipher=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + plain=49D33F098E072CB53D6E93A97503632D + encrypted=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + +Set 7, vector#250: + key=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + cipher=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + plain=1FDF8487DACED2BE305B4DCF84A7A074 + encrypted=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + +Set 7, vector#251: + key=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + cipher=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + plain=696357D5CF085657CA01AF4389DDBC71 + encrypted=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + +Set 7, vector#252: + key=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + cipher=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + plain=2423E8B35199620990D555B575262E56 + encrypted=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + +Set 7, vector#253: + key=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + cipher=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + plain=5D2AAF8476ACDD86206983735A351110 + encrypted=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + +Set 7, vector#254: + key=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + cipher=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + plain=DF8E87329143EF105577C0C700275C5C + encrypted=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + +Set 7, vector#255: + key=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + cipher=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + plain=6A815B659F8B1DC6A685987726671E9F + encrypted=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + +Test vectors -- set 8 +===================== + +Set 8, vector# 0: + key=000102030405060708090A0B0C0D0E0F1011121314151617 + cipher=00112233445566778899AABBCCDDEEFF + plain=3369EB82973635E9C2E96D687724C790 + encrypted=00112233445566778899AABBCCDDEEFF + +Set 8, vector# 1: + key=2BD6459F82C5B300952C49104881FF482BD6459F82C5B300 + cipher=EA024714AD5C4D84EA024714AD5C4D84 + plain=A4C5C1F3858A5A596189E928B4469EA2 + encrypted=EA024714AD5C4D84EA024714AD5C4D84 + + + +End of test vectors diff --git a/testvectors/Rijndael-256-128.unverified.test-vectors b/testvectors/Rijndael-256-128.unverified.test-vectors new file mode 100644 index 0000000..37d537d --- /dev/null +++ b/testvectors/Rijndael-256-128.unverified.test-vectors @@ -0,0 +1,10308 @@ +******************************************************************************** +*Project NESSIE - New European Schemes for Signature, Integrity, and Encryption* +******************************************************************************** + +Primitive Name: Rijndael +======================== +Key size: 256 bits +Block size: 128 bits + +Test vectors -- set 1 +===================== + +Set 1, vector# 0: + key=80000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=E35A6DCB19B201A01EBCFA8AA22B5759 + decrypted=00000000000000000000000000000000 + Iterated 100 times=13758F7C544655456990850D7FB19656 + Iterated 1000 times=B2C0E7ED6C95994D480C5309619F8BCB + +Set 1, vector# 1: + key=40000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=5075C2405B76F22F553488CAE47CE90B + decrypted=00000000000000000000000000000000 + Iterated 100 times=E121A62E49F8149C79AA6F4010EE2D76 + Iterated 1000 times=40D71D338D5969DF647BA13757D57C53 + +Set 1, vector# 2: + key=20000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=49DF95D844A0145A7DE01C91793302D3 + decrypted=00000000000000000000000000000000 + Iterated 100 times=CAC4C76A688DED05660AE8B258A02B03 + Iterated 1000 times=4C3C427C302AEC099DFE76B42DFC771D + +Set 1, vector# 3: + key=10000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=E7396D778E940B8418A86120E5F421FE + decrypted=00000000000000000000000000000000 + Iterated 100 times=393776CB03EF2ECD403960A3E49DC11B + Iterated 1000 times=ECED82E2B23B7A7A7DFBC45A953FDEE8 + +Set 1, vector# 4: + key=08000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=05F535C36FCEDE4657BE37F4087DB1EF + decrypted=00000000000000000000000000000000 + Iterated 100 times=DF49E5B61E84C60A31106923B02693D2 + Iterated 1000 times=4A17EBD7DDE98984A9F3A78FF8938F17 + +Set 1, vector# 5: + key=04000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=D0C1DDDD10DA777C68AB36AF51F2C204 + decrypted=00000000000000000000000000000000 + Iterated 100 times=3A8FDB705417B8F0B111DEC1E2F19CA0 + Iterated 1000 times=0CF248725AADF770A69E6CC62B133009 + +Set 1, vector# 6: + key=02000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=1C55FB811B5C6464C4E5DE1535A75514 + decrypted=00000000000000000000000000000000 + Iterated 100 times=835225FD400C72FB4369559FBA044764 + Iterated 1000 times=DEFB2FED0ACDE63FA43E2839E664F2F7 + +Set 1, vector# 7: + key=01000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=52917F3AE957D5230D3A2AF57C7B5A71 + decrypted=00000000000000000000000000000000 + Iterated 100 times=F8C46DE011552685E17F5FDD3319585F + Iterated 1000 times=9A76EBB879F2DCD551E2269EDD5DCB61 + +Set 1, vector# 8: + key=00800000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=C6E3D5501752DD5E9AEF086D6B45D705 + decrypted=00000000000000000000000000000000 + Iterated 100 times=43CB166D7D14F4CE8727CA794B7B76DC + Iterated 1000 times=0C3044DB8F87CED362BFC5FEC92053D2 + +Set 1, vector# 9: + key=00400000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=A24A9C7AF1D9B1E17E1C9A3E711B3FA7 + decrypted=00000000000000000000000000000000 + Iterated 100 times=75ED689F82A40493A443CC2723E82907 + Iterated 1000 times=4742CAF9C348AA2C58D6CBD6A5DC9871 + +Set 1, vector# 10: + key=00200000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=B881ECA724A6D43DBC6B96F6F59A0D20 + decrypted=00000000000000000000000000000000 + Iterated 100 times=F8264C3D05512B59A996E934BACB4771 + Iterated 1000 times=2D708466CAB3053E53288EDC4FF9C148 + +Set 1, vector# 11: + key=00100000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=EC524D9A24DFFF2A9639879B83B8E137 + decrypted=00000000000000000000000000000000 + Iterated 100 times=BF3A132CEBD1A192883C166EE657F299 + Iterated 1000 times=3960A7B7C3E0189C4F5A3564842A890D + +Set 1, vector# 12: + key=00080000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=34C4F345F5466215A037F443635D6F75 + decrypted=00000000000000000000000000000000 + Iterated 100 times=82C3155A86A0E185CDB2B78F97DDC1FA + Iterated 1000 times=B4CBAF9D2450D139AF0C36E097A9F30E + +Set 1, vector# 13: + key=00040000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=5BA5055BEDB8895F672E29F2EB5A355D + decrypted=00000000000000000000000000000000 + Iterated 100 times=B3026D78DD134A0E3114F911AA072E0E + Iterated 1000 times=669FC13A57CF09CDDA86F4B5B9155BC1 + +Set 1, vector# 14: + key=00020000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=B3F692AA3A435259EBBEF9B51AD1E08D + decrypted=00000000000000000000000000000000 + Iterated 100 times=2DE59B26E744256D569924DC8A3B22BF + Iterated 1000 times=F0DD692679986CE414BCBC2944E1CC2E + +Set 1, vector# 15: + key=00010000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=414FEB4376F2C64A5D2FBB2ED531BA7D + decrypted=00000000000000000000000000000000 + Iterated 100 times=AB96DC48727C5AA53818C805846C1ED7 + Iterated 1000 times=47381F2EB57FC66218204A44B9B47BAD + +Set 1, vector# 16: + key=00008000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=A20D519E3BCA3303F07E81719F61605E + decrypted=00000000000000000000000000000000 + Iterated 100 times=9F4A47017C741C852E330D92A7ED5861 + Iterated 1000 times=2B4F87F916557D85AAD2DF9B117D4A3E + +Set 1, vector# 17: + key=00004000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=A08D10E520AF811F45BD60A2DC0DC4B1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=BE1EE832F42EB1C73D955D244E658C29 + Iterated 1000 times=3D7D7C3792A62E56469277433E76AE25 + +Set 1, vector# 18: + key=00002000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=B06893A8C563C430E6F3858826EFBBE4 + decrypted=00000000000000000000000000000000 + Iterated 100 times=A54070EBB2592BC89D6C09D135EA14BF + Iterated 1000 times=51BD1BA68ECF2FFD64D07774322105E6 + +Set 1, vector# 19: + key=00001000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=0FFEE26AE2D3929C6BD9C6BEDFF84409 + decrypted=00000000000000000000000000000000 + Iterated 100 times=DDA81D4F52379AF6C142232559E416A0 + Iterated 1000 times=4236C319E08E7658ACDB21EA3E3B4455 + +Set 1, vector# 20: + key=00000800000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=4D0F5E906ED77801FC0EF53EDC5F9E2B + decrypted=00000000000000000000000000000000 + Iterated 100 times=09203B164EA36B01180C141470FD35D4 + Iterated 1000 times=91397E76BFE37017B367750542F76D81 + +Set 1, vector# 21: + key=00000400000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=8B6EC00119AD8B026DCE56EA7DEFE930 + decrypted=00000000000000000000000000000000 + Iterated 100 times=74CF6D26F0A16A454968FAA051423338 + Iterated 1000 times=70A8759829EC04D5ABD8EAA9797B97F1 + +Set 1, vector# 22: + key=00000200000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=69026591D43363EE9D83B5007F0B484E + decrypted=00000000000000000000000000000000 + Iterated 100 times=6BEDE3E252E55C5416E2148212A78982 + Iterated 1000 times=6CB0ECF167ADF4C1C63600380344A12A + +Set 1, vector# 23: + key=00000100000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=27135D86950C6A2F86872706279A4761 + decrypted=00000000000000000000000000000000 + Iterated 100 times=521B1E207B71FF0F76444FC22031C976 + Iterated 1000 times=D0A1ABB9C441054C8B3C2428D7E236C8 + +Set 1, vector# 24: + key=00000080000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=35E6DB8723F281DA410C3AC8535ED77C + decrypted=00000000000000000000000000000000 + Iterated 100 times=46CE8A7CCF59167376167DCB32F247B5 + Iterated 1000 times=75AD43CE601182CD871514035A11F68C + +Set 1, vector# 25: + key=00000040000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=57427CF214B8C28E4BBF487CCB8D0E09 + decrypted=00000000000000000000000000000000 + Iterated 100 times=71E2369913C1936FEC5E7962B216A08F + Iterated 1000 times=9BA20BAB3A3FE60006F1382F42F2C916 + +Set 1, vector# 26: + key=00000020000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=6DF01BF56E5131AC87F96E99CAB86367 + decrypted=00000000000000000000000000000000 + Iterated 100 times=40A6DD4B2AD29FEC88EAAFA5A5D37632 + Iterated 1000 times=F54EE7C8C9A08EAADC1D8BE18FECB5BF + +Set 1, vector# 27: + key=00000010000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=3856C5B55790B768BBF7D43031579BCF + decrypted=00000000000000000000000000000000 + Iterated 100 times=BF2CBAC652B48F1B286F9468EED31909 + Iterated 1000 times=757D3C0E2812C81EA220920ACDB2ECF0 + +Set 1, vector# 28: + key=00000008000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=1E6ED8FB7C15BC4D2F63BA7037ED44D0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=1F9D66AB751CBA4B8EACBD52E647051A + Iterated 1000 times=2959B773176ED7DEE3C16435686FA96F + +Set 1, vector# 29: + key=00000004000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=E1B2ED6CD8D93D455534E401156D4BCF + decrypted=00000000000000000000000000000000 + Iterated 100 times=8F8464244DF24C4F457FBD84F669B311 + Iterated 1000 times=160E3C8FD3DE1A2424ED1199C56FF1CA + +Set 1, vector# 30: + key=00000002000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=EFBCCA5BDFDAD10E875F02336212CE36 + decrypted=00000000000000000000000000000000 + Iterated 100 times=FACF113045427B53EF0130C5B9336DB4 + Iterated 1000 times=61833192B50A1AC62BBCF9D2644AF429 + +Set 1, vector# 31: + key=00000001000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=0B777F02FD18DCE2646DCFE868DFAFAD + decrypted=00000000000000000000000000000000 + Iterated 100 times=C02149546AB4F401B4A04A449BD6A360 + Iterated 1000 times=F4B377FF58F800B5815D936E07DE8C65 + +Set 1, vector# 32: + key=00000000800000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=C8A104B5693D1B14F5BF1F10100BF508 + decrypted=00000000000000000000000000000000 + Iterated 100 times=54DE789938B3F016662DC887418E866A + Iterated 1000 times=5ACDE0F49FDF56B24104335AD4054A98 + +Set 1, vector# 33: + key=00000000400000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=4CCE6615244AFCB38408FECE219962EA + decrypted=00000000000000000000000000000000 + Iterated 100 times=84F6A393FFB909050F36986DDFD724EB + Iterated 1000 times=6CA737A71FB86D17EF96783A7A7BD104 + +Set 1, vector# 34: + key=00000000200000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=F99E7845D3A255B394C9C050CBA258B1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=C5EA3006546AB7B9C6544C82418E623B + Iterated 1000 times=E6A699925104B93E3114EBA80B38583E + +Set 1, vector# 35: + key=00000000100000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=B4AFBB787F9BCFB7B55FDF447F611295 + decrypted=00000000000000000000000000000000 + Iterated 100 times=7749175D7566280D15BD599AA5A6D5F6 + Iterated 1000 times=925BEBF4AB517987B392DBCF1FDA3545 + +Set 1, vector# 36: + key=00000000080000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=AE1C426A697FAF2808B7EF6ADDB5C020 + decrypted=00000000000000000000000000000000 + Iterated 100 times=9B808DD0BE463B2DECFE5E056652737B + Iterated 1000 times=28FAAE73B071C4D35B201B23AA21DF91 + +Set 1, vector# 37: + key=00000000040000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=7572F92811A85B9BDD38DEAD9945BCAE + decrypted=00000000000000000000000000000000 + Iterated 100 times=69BFE54C3412CAC0BFA7F328688CB046 + Iterated 1000 times=DC667334ABF19CA94E8F3A36AF1D2EA1 + +Set 1, vector# 38: + key=00000000020000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=71BC7AA46E43FB95A181527D9F6A360F + decrypted=00000000000000000000000000000000 + Iterated 100 times=BCD95FEB19FD943ECD85AE40DFB37E6C + Iterated 1000 times=4F402F5B32D1D2313C29CEAC52E37F6A + +Set 1, vector# 39: + key=00000000010000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=5542EF2923066F1EC8F546DD0D8E7CA8 + decrypted=00000000000000000000000000000000 + Iterated 100 times=AEDA117030EC7B92C27D98D415E381BB + Iterated 1000 times=F70B85E60A33647C263B0334E5516E60 + +Set 1, vector# 40: + key=00000000008000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=6B92317C7D623790B748FDD7EFC42422 + decrypted=00000000000000000000000000000000 + Iterated 100 times=2B9BA83B2136E36E4E15ED18DB598F58 + Iterated 1000 times=FA8B6E8434101898F52104F1B2C72DF3 + +Set 1, vector# 41: + key=00000000004000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=0FE7C097E899C71EF045360F8D6C25CF + decrypted=00000000000000000000000000000000 + Iterated 100 times=736F2D09CE4CD18A46FF20BE36C20D1A + Iterated 1000 times=1DA1D2E21BE46677DF5C74C9661E7059 + +Set 1, vector# 42: + key=00000000002000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=4ECE7EE107D0264D04693151C25B9DF6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=BB95CB0D72C25276EA70DD967F4DDE54 + Iterated 1000 times=3849059FA0D28F167EB83293E1A9A718 + +Set 1, vector# 43: + key=00000000001000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=FD6AE687CBFCA9E301045888D3BB9605 + decrypted=00000000000000000000000000000000 + Iterated 100 times=8EAC8F01D83BE4A83966B72B5D523549 + Iterated 1000 times=A94C1B176AAFAB0DCE66FC183ABA8A2E + +Set 1, vector# 44: + key=00000000000800000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=476B579C8556C7254424902CC1D6D36E + decrypted=00000000000000000000000000000000 + Iterated 100 times=F57F8DE81BE6A66E33ABBA602F259108 + Iterated 1000 times=DCC7F019489A048039FD4E8D3053F0C8 + +Set 1, vector# 45: + key=00000000000400000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=4133CBCDFDD6B8860A1FC18665D6D71B + decrypted=00000000000000000000000000000000 + Iterated 100 times=FB11E097E6EE00B3D98680B1A1F4F6EC + Iterated 1000 times=EF6CD6BF679B1E7CBCEF4F35C658D23E + +Set 1, vector# 46: + key=00000000000200000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=3B36EC2664798C108B816812C65DFDC7 + decrypted=00000000000000000000000000000000 + Iterated 100 times=315E4CE3576107A216A3E7D036FD4BC6 + Iterated 1000 times=C9B3CE7B0F3B977E7B3CB6C600216BAE + +Set 1, vector# 47: + key=00000000000100000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=364E20A234FEA385D48DC5A09C9E70CF + decrypted=00000000000000000000000000000000 + Iterated 100 times=3D4E35E7014714CB075106597F43EA87 + Iterated 1000 times=85A423D38747702559DA916E1169B10B + +Set 1, vector# 48: + key=00000000000080000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=4A4BA25969DE3F5EE5642C71AAD0EFD1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=B97B8F01A8FD7CF5FD1AAA853C388BAA + Iterated 1000 times=F8BAD08BEAA61B266920AE8F91945201 + +Set 1, vector# 49: + key=00000000000040000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=E42CBAAE43297F67A76C1C501BB79E36 + decrypted=00000000000000000000000000000000 + Iterated 100 times=4953A050B2C221C4941779C1852FB88F + Iterated 1000 times=662340235077F7A8F8B7F4C53C16A895 + +Set 1, vector# 50: + key=00000000000020000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=23CEDEDA4C15B4C037E8C61492217937 + decrypted=00000000000000000000000000000000 + Iterated 100 times=6D53D46C2F4114012E7AB61166F934C1 + Iterated 1000 times=0BF1CA10B367743A10F3156549741878 + +Set 1, vector# 51: + key=00000000000010000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=A1719147A1F4A1A1180BD16E8593DCDE + decrypted=00000000000000000000000000000000 + Iterated 100 times=FADC0D739B90542F98F7702976763435 + Iterated 1000 times=C5C528D75F96601F76D2F2D48691944A + +Set 1, vector# 52: + key=00000000000008000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=AB82337E9FB0EC60D1F25A1D0014192C + decrypted=00000000000000000000000000000000 + Iterated 100 times=61B3C1CCF6A44568DF0727886B562AE4 + Iterated 1000 times=5B760AD984FB0FC6A62381DA8FAEB1C4 + +Set 1, vector# 53: + key=00000000000004000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=74BF2D8FC5A8388DF1A3A4D7D33FC164 + decrypted=00000000000000000000000000000000 + Iterated 100 times=D4FA7F2A58F5CCB4805F5CC0C6F4E918 + Iterated 1000 times=AC5C71EEE08D050AAAC08CE3498638A4 + +Set 1, vector# 54: + key=00000000000002000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=D5B493317E6FBC6FFFD664B3C491368A + decrypted=00000000000000000000000000000000 + Iterated 100 times=1829AF9FA1E41A14A1D0ACB0F206FBEE + Iterated 1000 times=D37C1B7C7C2491E77EB636DC5699394E + +Set 1, vector# 55: + key=00000000000001000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=BA767381586DA56A2A8D503D5F7ADA0B + decrypted=00000000000000000000000000000000 + Iterated 100 times=08AA4DBD60D833C2EF3B28FB596F8839 + Iterated 1000 times=A2DAF458BAC686991F5DB043D2B8A6DA + +Set 1, vector# 56: + key=00000000000000800000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=E8E6BC57DFE9CCADB0DECABF4E5CF91F + decrypted=00000000000000000000000000000000 + Iterated 100 times=31F3307F1FAFF697D10C81CBDAB17034 + Iterated 1000 times=129DC43D8A0E840405C999697E6DF7BF + +Set 1, vector# 57: + key=00000000000000400000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=3C8E5A5CDC9CEED90815D1F84BB2998C + decrypted=00000000000000000000000000000000 + Iterated 100 times=7C9B2D6012057760859F6918F7DDCD29 + Iterated 1000 times=87523B5BDFD96E77765A38F7A6DCA97E + +Set 1, vector# 58: + key=00000000000000200000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=283843020BA38F056001B2FD585F7CC9 + decrypted=00000000000000000000000000000000 + Iterated 100 times=2614EED53CAE3F678FF0D971523C6648 + Iterated 1000 times=6941F1098DD6CB2BFBE84B07D19992BA + +Set 1, vector# 59: + key=00000000000000100000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=D8ADC7426F623ECE8741A70621D28870 + decrypted=00000000000000000000000000000000 + Iterated 100 times=B8DCB272EA41A94AEB2FA8EAB159F1AC + Iterated 1000 times=97293555B17DFC566FD0BB7656561F34 + +Set 1, vector# 60: + key=00000000000000080000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=D7C5C215592D06F00E6A80DA69A28EA9 + decrypted=00000000000000000000000000000000 + Iterated 100 times=E50D31619644A9593851562D14382653 + Iterated 1000 times=8D7B727A06CF29000959A76930CA033E + +Set 1, vector# 61: + key=00000000000000040000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=52CF6FA433C3C870CAC70190358F7F16 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5DD98459870E37D2AAD57839CFF3A7C0 + Iterated 1000 times=7C7BDBD986E77A8D076FE05679680A32 + +Set 1, vector# 62: + key=00000000000000020000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=F63D442A584DA71786ADEC9F3346DF75 + decrypted=00000000000000000000000000000000 + Iterated 100 times=DD023AEB9BC4D42FAAEE18371F75A3AB + Iterated 1000 times=73DC940E3F9EE8C7EB4FFADE48516BA7 + +Set 1, vector# 63: + key=00000000000000010000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=549078F4B0CA7079B45F9A5ADAFAFD99 + decrypted=00000000000000000000000000000000 + Iterated 100 times=0D8E8CB666D20177D9EC072CC5986772 + Iterated 1000 times=E6A7182DBBCEE9DC4F1B2A450FBB560C + +Set 1, vector# 64: + key=00000000000000008000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=F2A5986EE4E9984BE2BAFB79EA8152FA + decrypted=00000000000000000000000000000000 + Iterated 100 times=375FE69A318847A9F01A8C8FB5FDA60A + Iterated 1000 times=37CC1981D26DF0983B6A37E07FDED098 + +Set 1, vector# 65: + key=00000000000000004000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=8A74535017B4DB2776668A1FAE64384C + decrypted=00000000000000000000000000000000 + Iterated 100 times=127B49C42168076576E411D41D927CD3 + Iterated 1000 times=3FD0276A3450809E0D9464E984AE2463 + +Set 1, vector# 66: + key=00000000000000002000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=E613342F57A97FD95DC088711A5D0ECD + decrypted=00000000000000000000000000000000 + Iterated 100 times=4906F91303B39407EC7C7C48E96C2001 + Iterated 1000 times=ECA646712011514843C103C1D181D188 + +Set 1, vector# 67: + key=00000000000000001000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=3FFAEBF6B22CF1DC82AE17CD48175B01 + decrypted=00000000000000000000000000000000 + Iterated 100 times=84A6AC27848C2A8B90C455A3F67B9B45 + Iterated 1000 times=ABFA611BD82937FE76FECE5C0A9E6196 + +Set 1, vector# 68: + key=00000000000000000800000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=BAFD52EFA15C248CCBF9757735E6B1CE + decrypted=00000000000000000000000000000000 + Iterated 100 times=E862ADF1A3046B319F16AB39DCACA8B9 + Iterated 1000 times=E706B00B7E067AD370B7E74484B6DFB7 + +Set 1, vector# 69: + key=00000000000000000400000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=7AF94BC018D9DDD4539D2DD1C6F4000F + decrypted=00000000000000000000000000000000 + Iterated 100 times=9E73041A441F19DBD324176B5D6DF998 + Iterated 1000 times=38D2ED586C451109C2CFE187A09D7B95 + +Set 1, vector# 70: + key=00000000000000000200000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=FE177AD61CA0FDB281086FBA8FE76803 + decrypted=00000000000000000000000000000000 + Iterated 100 times=1EEDAA169C3F09AE8D6304C89A55EA22 + Iterated 1000 times=68F46C488B1056E407619E1812C42A48 + +Set 1, vector# 71: + key=00000000000000000100000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=74DBEA15E2E9285BAD163D7D534251B6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=49BF88DFCCED65212D08A59A90D1E301 + Iterated 1000 times=D0046C9D462ED16C3B35BD6877A8BB88 + +Set 1, vector# 72: + key=00000000000000000080000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=23DD21331B3A92F200FE56FF050FFE74 + decrypted=00000000000000000000000000000000 + Iterated 100 times=1A2562AE4C4F8B384F99FC6031192954 + Iterated 1000 times=653480A29E44B00479CB37D565DA68C7 + +Set 1, vector# 73: + key=00000000000000000040000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=A69C5AA34AB20A858CAFA766EACED6D8 + decrypted=00000000000000000000000000000000 + Iterated 100 times=B2CF8E01BC2E006BEA4D2ECED0869F65 + Iterated 1000 times=D1B94AF1F84A57BC6417F34D2496066C + +Set 1, vector# 74: + key=00000000000000000020000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=3F72BB4DF2A4F941A4A09CB78F04B97A + decrypted=00000000000000000000000000000000 + Iterated 100 times=3C6ACD6786CCEFAFB851A41C9B48CB71 + Iterated 1000 times=7E5DCF85807753597433C5DEA9910826 + +Set 1, vector# 75: + key=00000000000000000010000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=72CC43577E1FD5FD14622D24D97FCDCC + decrypted=00000000000000000000000000000000 + Iterated 100 times=A2058DF43FC8ECB1A061A972EDA837E9 + Iterated 1000 times=CF80FEB7E384B407E27FAEDED8D2E34B + +Set 1, vector# 76: + key=00000000000000000008000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=D83AF8EBE93E0B6B99CAFADE224937D1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=603743B1A68652B7ED04C198811C87B9 + Iterated 1000 times=974F72FFD7C9DD8CBDA6CF104466C83F + +Set 1, vector# 77: + key=00000000000000000004000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=44042329128D56CAA8D084C8BD769D1E + decrypted=00000000000000000000000000000000 + Iterated 100 times=C8CC80CBAB921DBE20265BE7C6606792 + Iterated 1000 times=B2E2BDA573DB87712BD23CB06DA4C416 + +Set 1, vector# 78: + key=00000000000000000002000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=14102D72290DE4F2C430ADD1ED64BA1D + decrypted=00000000000000000000000000000000 + Iterated 100 times=63E5A6F18774014113862EC7C2D00F3D + Iterated 1000 times=9FA439C86D0DAAEF4A946987AC70647C + +Set 1, vector# 79: + key=00000000000000000001000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=449124097B1ECD0AE7065206DF06F03C + decrypted=00000000000000000000000000000000 + Iterated 100 times=E247260A6F79B3B4F70A57F070041E1E + Iterated 1000 times=3EA52CD3AB140BB31D3E010EB3C5AB2B + +Set 1, vector# 80: + key=00000000000000000000800000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=D060A99F8CC153A42E11E5F97BD7584A + decrypted=00000000000000000000000000000000 + Iterated 100 times=9301BD91917B4E53AB4337CAE1285032 + Iterated 1000 times=1F0EB74EC59C30CDF872890FDDCDFEAE + +Set 1, vector# 81: + key=00000000000000000000400000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=65605B3EA9261488D53E48602ADEA299 + decrypted=00000000000000000000000000000000 + Iterated 100 times=1E290E49D5334306C7E52FFE4605C386 + Iterated 1000 times=C70B13FF20EA230406062632F092A7A4 + +Set 1, vector# 82: + key=00000000000000000000200000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=C5E5CAD7A208DE8EA6BE049EFE5C7346 + decrypted=00000000000000000000000000000000 + Iterated 100 times=CAAA6DF770E0BEA77A8FB92893E963D4 + Iterated 1000 times=B4DE82C7254D8F6E5B32D56243E8A10B + +Set 1, vector# 83: + key=00000000000000000000100000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=4C280C46D2181646048DD5BC0C0831A5 + decrypted=00000000000000000000000000000000 + Iterated 100 times=ABC679709BA793817691D4CDB40A28DE + Iterated 1000 times=EC0A3845B54FCDB7E4B570500543F34D + +Set 1, vector# 84: + key=00000000000000000000080000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=5DD65CF37F2A0929559AABAFDA08E730 + decrypted=00000000000000000000000000000000 + Iterated 100 times=607C0DD59C6F309D3314660E1052E66A + Iterated 1000 times=BCF15624B2AD7BECF6B33F8CB6ADFE0F + +Set 1, vector# 85: + key=00000000000000000000040000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=31F2335CAAF264172F69A693225E6D22 + decrypted=00000000000000000000000000000000 + Iterated 100 times=8E1FD23D9F7F4A83507479FDCEFC6AF0 + Iterated 1000 times=37BFB56B0EF1D2183085B893DD635B95 + +Set 1, vector# 86: + key=00000000000000000000020000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=3E28B35F99A72662590DA96426DD377F + decrypted=00000000000000000000000000000000 + Iterated 100 times=59A4364FB112EE4A94F7765D5676D84B + Iterated 1000 times=C00E41BBA64405F4090EC2D20678E328 + +Set 1, vector# 87: + key=00000000000000000000010000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=570F40F5D7B20441486578ED344343BE + decrypted=00000000000000000000000000000000 + Iterated 100 times=EC10F31A803D241A1C6EBDBA912E44D6 + Iterated 1000 times=F55089D0B8EADDCF17FB765FD3D0B039 + +Set 1, vector# 88: + key=00000000000000000000008000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=C54308AD1C9E3B19F8B7417873045A8C + decrypted=00000000000000000000000000000000 + Iterated 100 times=2BCD0E80130612A21BFEE20CECD083D1 + Iterated 1000 times=2F19CDBC72F42A35CDF254A1BB46B727 + +Set 1, vector# 89: + key=00000000000000000000004000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=CBF335E39CE13ADE2B696179E8FD0CE1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=7831775674486CCFDDB7F4B356C61022 + Iterated 1000 times=58E8EE447CB012AD2915276E83CBF397 + +Set 1, vector# 90: + key=00000000000000000000002000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=9C2FBF422355D8293083D51F4A3C18A9 + decrypted=00000000000000000000000000000000 + Iterated 100 times=42361554FA7A07D66EC841EC1467F16A + Iterated 1000 times=F081709A054E583EE070E512E51CAE91 + +Set 1, vector# 91: + key=00000000000000000000001000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=5ED8B5A31ECEFAB16C9AA6986DA67BCE + decrypted=00000000000000000000000000000000 + Iterated 100 times=79DF6A51C55292DF5AB125733739E803 + Iterated 1000 times=214053B856C361B58A7BF3162E7DD1EF + +Set 1, vector# 92: + key=00000000000000000000000800000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=627815DCFC814ABC75900041B1DD7B59 + decrypted=00000000000000000000000000000000 + Iterated 100 times=376E80BE2AA99DD3A72AC6D782C9AF38 + Iterated 1000 times=D339DD64DB3A79F2CFEF3F6285E7DAFE + +Set 1, vector# 93: + key=00000000000000000000000400000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=9EF3E82A50A59F166260494F7A7F2CC3 + decrypted=00000000000000000000000000000000 + Iterated 100 times=19105A468B56D80D260C6C54DB24126B + Iterated 1000 times=55B3E0CC6B32212F2F9B8D372E1B410D + +Set 1, vector# 94: + key=00000000000000000000000200000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=878CD0D8D920888B5935D6C351128737 + decrypted=00000000000000000000000000000000 + Iterated 100 times=C1ACB0B9EF98DAB4B9B215686E8DF756 + Iterated 1000 times=5AC256DD03500FA234EE83B869B25B5A + +Set 1, vector# 95: + key=00000000000000000000000100000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=E44429474D6FC3084EB2A6B8B46AF754 + decrypted=00000000000000000000000000000000 + Iterated 100 times=EEB3F3B3416F081C4A4E5352F88EB927 + Iterated 1000 times=D9B73F318420A48792E26DA957817A15 + +Set 1, vector# 96: + key=00000000000000000000000080000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=EBAACF9641D54E1FB18D0A2BE4F19BE5 + decrypted=00000000000000000000000000000000 + Iterated 100 times=42BC4F1F1A465D4CAC919DCE6B958DA9 + Iterated 1000 times=9EBAB0727EC9431BEE73BA2B7D7EA4CE + +Set 1, vector# 97: + key=00000000000000000000000040000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=13B3BF497CEE780E123C7E193DEA3A01 + decrypted=00000000000000000000000000000000 + Iterated 100 times=D38F31ED018C87A41A3C59050B0D4281 + Iterated 1000 times=E6F3E22B3399C6EE68B1DF501103B622 + +Set 1, vector# 98: + key=00000000000000000000000020000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=6E8F381DE00A41161F0DF03B4155BFD4 + decrypted=00000000000000000000000000000000 + Iterated 100 times=745ED8F36D903A942D99A1E8C4646359 + Iterated 1000 times=D2E1839953DA34092F5BF565F14C4BCE + +Set 1, vector# 99: + key=00000000000000000000000010000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=35E4F29BBA2BAE01144910783C3FEF49 + decrypted=00000000000000000000000000000000 + Iterated 100 times=23732024AC31AAEB135E1F1FF36F77BD + Iterated 1000 times=FCFA654D00C86B7FB406EA7083960161 + +Set 1, vector#100: + key=00000000000000000000000008000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=55B17BD66788CEAC366398A31F289FFB + decrypted=00000000000000000000000000000000 + Iterated 100 times=2AC519EB50660B9BBF0E8D69BE31FEE5 + Iterated 1000 times=B2D06EA94AD909D65C8C8599CB92C1B3 + +Set 1, vector#101: + key=00000000000000000000000004000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=11341F56C0D6D1008D28741DAA7679CE + decrypted=00000000000000000000000000000000 + Iterated 100 times=CFB327E1D1D752DD72D8BC4C35B78A9D + Iterated 1000 times=206722C8B6DA72A22F5FC500A86C6F54 + +Set 1, vector#102: + key=00000000000000000000000002000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=4DF7253DF421D83358BDBE924745D98C + decrypted=00000000000000000000000000000000 + Iterated 100 times=AB9D04D32C0C81D09BE7566C7A8B786E + Iterated 1000 times=1B95895D7484EF5EF79FCC59733FE25A + +Set 1, vector#103: + key=00000000000000000000000001000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=BAE2EE651116D93EDC8E83B5F3347BE1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=2B7A9B7439C37323E65ED9490D06FFF7 + Iterated 1000 times=5C88804BD66411511632195E1DB8993B + +Set 1, vector#104: + key=00000000000000000000000000800000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=F9721ABD06709157183AF3965A659D9D + decrypted=00000000000000000000000000000000 + Iterated 100 times=01ECF756F838625458D9FA7BCE4E2BEC + Iterated 1000 times=E515B2E5A4AB4E419E6FF868C6342FB6 + +Set 1, vector#105: + key=00000000000000000000000000400000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=19A1C252A613FE2860A4AE6D75CE6FA3 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5CB878428EAE40C2EB60DE0D136B2C69 + Iterated 1000 times=AB2CEC980D0A6C2AA561B860570C164A + +Set 1, vector#106: + key=00000000000000000000000000200000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=B5DDB2F5D9752C949FBDE3FFF5556C6E + decrypted=00000000000000000000000000000000 + Iterated 100 times=4D91AC6A30B4098D710156C2AC5C3961 + Iterated 1000 times=3229BE14BFB176C8A52914D5C272DD5B + +Set 1, vector#107: + key=00000000000000000000000000100000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=81B044FCFFC78ECCFCD171AAD0405C66 + decrypted=00000000000000000000000000000000 + Iterated 100 times=E6D239D0BDF593DAF35C789BCF65AF03 + Iterated 1000 times=69E069D6277A55AB33FD6434480FDA0F + +Set 1, vector#108: + key=00000000000000000000000000080000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=C640566D3C06020EB2C42F1D62E56A9B + decrypted=00000000000000000000000000000000 + Iterated 100 times=0D1CBC6933A065EDC4F0520752A2C1D0 + Iterated 1000 times=AC502DEB35EF1887E57E8135518C9A63 + +Set 1, vector#109: + key=00000000000000000000000000040000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=EA6C4BCF425291679FDFFD26A424FBCC + decrypted=00000000000000000000000000000000 + Iterated 100 times=A90695A655BDC3F8BEBB0564AFF3EEC5 + Iterated 1000 times=6FE273C7E24AD11CFD557191314FD0A0 + +Set 1, vector#110: + key=00000000000000000000000000020000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=57F6901465D9440D9F15EE2CBA5A4090 + decrypted=00000000000000000000000000000000 + Iterated 100 times=34F31862666354A9B3F3FC56C86038AB + Iterated 1000 times=906EA5A0A75C5128D9781549753C9854 + +Set 1, vector#111: + key=00000000000000000000000000010000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=FBCFA74CADC7406260F63D96C8AAB6B1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=E1178F11016B18D345DCC304AFA64572 + Iterated 1000 times=03069970781518808294A57647943084 + +Set 1, vector#112: + key=00000000000000000000000000008000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=DFF4F096CEA211D4BBDACA033D0EC7D1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=05EB30B2A18D3FF0ADA39F095CB3C43E + Iterated 1000 times=F07C9959C901D2241AEB0FE83768E1A5 + +Set 1, vector#113: + key=00000000000000000000000000004000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=1EE5190D551F0F42F675227A381296A9 + decrypted=00000000000000000000000000000000 + Iterated 100 times=02DBC241DD7CFB85F4E59C7828522EB3 + Iterated 1000 times=7E6144D979A83715E25617654B4B332A + +Set 1, vector#114: + key=00000000000000000000000000002000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=F98E1905012E580F097623C10B93054F + decrypted=00000000000000000000000000000000 + Iterated 100 times=E5675F25AFCB930B5E3703805953D6CB + Iterated 1000 times=914960CAEE66D882496697E6E5218A49 + +Set 1, vector#115: + key=00000000000000000000000000001000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=E7D43743D21DD3C9F168C86856558B9A + decrypted=00000000000000000000000000000000 + Iterated 100 times=84F86AE895AB2C5FD0C7947433630EE8 + Iterated 1000 times=90CA6B21B73AD7257F56971B630B944D + +Set 1, vector#116: + key=00000000000000000000000000000800 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=632A9DDA730DAB67593C5D08D8AC1059 + decrypted=00000000000000000000000000000000 + Iterated 100 times=F37100AC8CA69AFDAE5953BF423BD9DA + Iterated 1000 times=6C65D76B8A3A9A216C72B3EC1A4BF7E2 + +Set 1, vector#117: + key=00000000000000000000000000000400 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=E084317000715B9057BC9DE9F3AB6124 + decrypted=00000000000000000000000000000000 + Iterated 100 times=F007565CB52E0D7C0988E2EA61355198 + Iterated 1000 times=A96BE12238D62A0933AE59E301EFE2C3 + +Set 1, vector#118: + key=00000000000000000000000000000200 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=61F9EF33A0BB4E666C2ED99101919FAB + decrypted=00000000000000000000000000000000 + Iterated 100 times=7D53D5EE223F221F8545B5A5B06324EA + Iterated 1000 times=30F3E7BADD0E3A76C9BFDEDFA9A4A6DE + +Set 1, vector#119: + key=00000000000000000000000000000100 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=6DC1D68A11834657D46703C22578D59A + decrypted=00000000000000000000000000000000 + Iterated 100 times=288878F8A56CA85EB95B629AA9E894DA + Iterated 1000 times=1C2AE57345B2E242340A41C29CABCA5F + +Set 1, vector#120: + key=00000000000000000000000000000080 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=53AC1548863D3D16F1D4DC7242E05F2C + decrypted=00000000000000000000000000000000 + Iterated 100 times=BEC9206DE91619C16F7E0776ACBD154D + Iterated 1000 times=3EB47241D71EDC6015534F4F1E1BF448 + +Set 1, vector#121: + key=00000000000000000000000000000040 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=E82CD587A408306AD78CEAE0916B9F8C + decrypted=00000000000000000000000000000000 + Iterated 100 times=2118A9CF1C41182B79937B76CE8CC292 + Iterated 1000 times=77B5AED504FAE045B7D205D9968606F7 + +Set 1, vector#122: + key=00000000000000000000000000000020 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=0FD2D40EA6AD17A3A767F0A8600D6295 + decrypted=00000000000000000000000000000000 + Iterated 100 times=CB982B5F80B87127B49BBDC59DAA8245 + Iterated 1000 times=3E9927F946E8034AF0C31655AF89A47A + +Set 1, vector#123: + key=00000000000000000000000000000010 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=AD84CC8255ADB39DFCA23F92761AE7E9 + decrypted=00000000000000000000000000000000 + Iterated 100 times=0002C35296F93CBCC7A8D837ED67121C + Iterated 1000 times=7C8E7EA619A676FEF56EF81A149A1B23 + +Set 1, vector#124: + key=00000000000000000000000000000008 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=F4F20CF7D51BEE7DA024A2B11A7ECA0B + decrypted=00000000000000000000000000000000 + Iterated 100 times=4862717789A6E5316BBF7B18F4D9DA2E + Iterated 1000 times=3CE624E864B97B70F3A472DB509C5E7C + +Set 1, vector#125: + key=00000000000000000000000000000004 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=5057691B85D9CE93A193214DB0A016B6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=CED7C4E9C4A9EFD2773C33FBE57D1BE8 + Iterated 1000 times=1C010CCC5D485EE73F4CCBF51913737A + +Set 1, vector#126: + key=00000000000000000000000000000002 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=0F58C960876390BDEF4BB6BE95CAA1EE + decrypted=00000000000000000000000000000000 + Iterated 100 times=1240ABC3AF87386C345A052D0996BB5D + Iterated 1000 times=C90B6216F68207F437261AAF2AA22362 + +Set 1, vector#127: + key=00000000000000000000000000000001 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=9A3E66EEBC21BC0BD9430B341EF465FA + decrypted=00000000000000000000000000000000 + Iterated 100 times=5E453461041441E047F1258CC8702ED8 + Iterated 1000 times=ECE5A5DD535408B339BBC35055C17A78 + +Set 1, vector#128: + key=00000000000000000000000000000000 + 80000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=20415035F34B8BCBCB28ABF07F78F0D4 + decrypted=00000000000000000000000000000000 + Iterated 100 times=7AC7B479AD10809989592C8A7911DE89 + Iterated 1000 times=F6D4FE04B650C9A2BC15A2FB66943BF4 + +Set 1, vector#129: + key=00000000000000000000000000000000 + 40000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=AC89FC7BA10479EBF10DE65BCEF89B3C + decrypted=00000000000000000000000000000000 + Iterated 100 times=8540B2D2F1E6AB83CCE35BE587725CF2 + Iterated 1000 times=2DF470B8580FC9AD2A60E3A1D6C72CF8 + +Set 1, vector#130: + key=00000000000000000000000000000000 + 20000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=068FA75A30BE443171AF3F6FEB1A20D2 + decrypted=00000000000000000000000000000000 + Iterated 100 times=03C713EEE89C4EACAD5D763416C4540A + Iterated 1000 times=F479100385C2D323B37A6CB40D6B399F + +Set 1, vector#131: + key=00000000000000000000000000000000 + 10000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=50E02F213246C525A8C27700CA34B502 + decrypted=00000000000000000000000000000000 + Iterated 100 times=E03AE5E655C7F7BA2959FB0D5903B3EA + Iterated 1000 times=23A1755BB88A06BDBE6D197177B054A0 + +Set 1, vector#132: + key=00000000000000000000000000000000 + 08000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=227DA47D5A0906DB3AB042BB0A695FB6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=BC65BC4752C55AD3FB5D1B9D8BC41AC6 + Iterated 1000 times=B9DD6411624F0CFAD03A7E5A4DFB29F3 + +Set 1, vector#133: + key=00000000000000000000000000000000 + 04000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=8663AC30ED12514F1DE46777F4514BFC + decrypted=00000000000000000000000000000000 + Iterated 100 times=06ACEC559195F90E1F7EF5C7E8BB8250 + Iterated 1000 times=B6D489760A1B2B1D47BCC7D536DA2003 + +Set 1, vector#134: + key=00000000000000000000000000000000 + 02000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=A987D4BC12E1DE9F4B6DF43567C34A8B + decrypted=00000000000000000000000000000000 + Iterated 100 times=4515580ECFB718A2A696CAD896BFEC9D + Iterated 1000 times=7E8C1B1BA4414A1DA5DC893C82ED5276 + +Set 1, vector#135: + key=00000000000000000000000000000000 + 01000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=6D5A0370F599ACA605F63B04E5143D0C + decrypted=00000000000000000000000000000000 + Iterated 100 times=E1C3B5C6A096C8438D0B33D4612A07A3 + Iterated 1000 times=310090D97A14DDB720F47852952172D1 + +Set 1, vector#136: + key=00000000000000000000000000000000 + 00800000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=9809266E378B07B7AFDB3BAA97B7E442 + decrypted=00000000000000000000000000000000 + Iterated 100 times=BA15E79739E0649047508E9072DDDC77 + Iterated 1000 times=9855A00AA50806C1610096625D6AC063 + +Set 1, vector#137: + key=00000000000000000000000000000000 + 00400000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=8F753252B30CCCACE12D9A301F4D5090 + decrypted=00000000000000000000000000000000 + Iterated 100 times=B31228EDFC60B867408619FE5BBDBC26 + Iterated 1000 times=DBDCA3931056389077FA8B36362D16BD + +Set 1, vector#138: + key=00000000000000000000000000000000 + 00200000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=032465F6C0CE34D41962F561692A1AFF + decrypted=00000000000000000000000000000000 + Iterated 100 times=B555135460B228F480CAA395C7DEB4BF + Iterated 1000 times=E065CD1E23D4BF3F18D343E5EBB8D782 + +Set 1, vector#139: + key=00000000000000000000000000000000 + 00100000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=C50E9AD5BEB8F3B00821DD47FF8AC093 + decrypted=00000000000000000000000000000000 + Iterated 100 times=D8A07729858DDDD3BCFBC8EAB0ECC9E8 + Iterated 1000 times=FFEF25D32E24EB6DAC6B4F1B7FAF3BA4 + +Set 1, vector#140: + key=00000000000000000000000000000000 + 00080000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=9C6FEA3D46268D54A6829B2AD25BB276 + decrypted=00000000000000000000000000000000 + Iterated 100 times=83D1D34265FC617A7A0EDC5B17B87B89 + Iterated 1000 times=08A843FA0EA33C612D7631271F59FBCD + +Set 1, vector#141: + key=00000000000000000000000000000000 + 00040000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=0FD8575E87706F561343D7B3A41E044A + decrypted=00000000000000000000000000000000 + Iterated 100 times=90F840D7C559351BBA10D9ABCE457240 + Iterated 1000 times=ED091FE6A726C06B0A0554AA6C4A84F5 + +Set 1, vector#142: + key=00000000000000000000000000000000 + 00020000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=BEE9BEB3739540D88CBCE77925F0A114 + decrypted=00000000000000000000000000000000 + Iterated 100 times=1C6B4F3F930580EA26799687A2875F67 + Iterated 1000 times=BE277BEFB625283830E821098DA3783A + +Set 1, vector#143: + key=00000000000000000000000000000000 + 00010000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=D24EAEE7FFFBAC3D6F26C2DCE0DCDE28 + decrypted=00000000000000000000000000000000 + Iterated 100 times=B9E39245576AD6C9862760E1154E2C89 + Iterated 1000 times=B3F9F4BE94D9A711B9A8A38672060E5D + +Set 1, vector#144: + key=00000000000000000000000000000000 + 00008000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=47771A90398FF0F7FA821C2F8F5E1398 + decrypted=00000000000000000000000000000000 + Iterated 100 times=09B6DFA278F0AF70256B1B3D76726E67 + Iterated 1000 times=0A201CD42FD1098CABB12EB226E2AFD8 + +Set 1, vector#145: + key=00000000000000000000000000000000 + 00004000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=4639741B6F84B135AD118C8249B64ED0 + decrypted=00000000000000000000000000000000 + Iterated 100 times=3541DEEE0FE15EDDCC91E8F4772048F2 + Iterated 1000 times=F91DE4A24C88C8CA125C7696B6C282D4 + +Set 1, vector#146: + key=00000000000000000000000000000000 + 00002000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=8EE5505EC85567697A3306F250A27720 + decrypted=00000000000000000000000000000000 + Iterated 100 times=FF73E5E836570C62CDAFC9A9B03F2AAD + Iterated 1000 times=65E050E48716286B72E4547639286F97 + +Set 1, vector#147: + key=00000000000000000000000000000000 + 00001000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=7C8A19AC1AEFBC5E0119D91A5F05D4C2 + decrypted=00000000000000000000000000000000 + Iterated 100 times=C4841CEE3BEDBEEB7714C9B106B86393 + Iterated 1000 times=ABB506C0619D6629B57A70D5700FBB25 + +Set 1, vector#148: + key=00000000000000000000000000000000 + 00000800000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=5141B9B672E54773B672E3A6C424887B + decrypted=00000000000000000000000000000000 + Iterated 100 times=71BB6397FAE96FD9F0115B5A8E686A50 + Iterated 1000 times=2B7074B20B9F8CF22B086F8153AF5142 + +Set 1, vector#149: + key=00000000000000000000000000000000 + 00000400000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=B5A2D3CD206653C6402F34FB0AE3613D + decrypted=00000000000000000000000000000000 + Iterated 100 times=8864396A4A770CA87E5D76F7305025D7 + Iterated 1000 times=EF8F24B62C4A77D9D92B82B508BBA387 + +Set 1, vector#150: + key=00000000000000000000000000000000 + 00000200000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=0F5BD9408738231D114B0A82753279A3 + decrypted=00000000000000000000000000000000 + Iterated 100 times=013257DCDD349DAA2804B311A24BE0DB + Iterated 1000 times=E6BCB5CD1CDE0144CF4C5C734B6A4C57 + +Set 1, vector#151: + key=00000000000000000000000000000000 + 00000100000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=FEF033FF4268EA487FC74C5E43A45338 + decrypted=00000000000000000000000000000000 + Iterated 100 times=F0563C8E2BD5B5017F78F12788B5FD1C + Iterated 1000 times=12F836A1FC6303D1F5EC14EA1CE95C97 + +Set 1, vector#152: + key=00000000000000000000000000000000 + 00000080000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=A3EDC09DCD529B113910D904AD855581 + decrypted=00000000000000000000000000000000 + Iterated 100 times=10C0A20D91A94B79A43FE67654034D50 + Iterated 1000 times=85780A71E39CFFA49EA8346828F19765 + +Set 1, vector#153: + key=00000000000000000000000000000000 + 00000040000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=AB8FBB6F27A0AC7C55B59FDD36B72F1C + decrypted=00000000000000000000000000000000 + Iterated 100 times=D4BAF6DFE95AA400B95D345CA81E252D + Iterated 1000 times=6F195CAA2A19D73BB8EA12650D2C2CA7 + +Set 1, vector#154: + key=00000000000000000000000000000000 + 00000020000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=EEA44D5ED4D769CC930CD83D8999EC46 + decrypted=00000000000000000000000000000000 + Iterated 100 times=2A5022E5C68E87DBC98109A09C71FA8E + Iterated 1000 times=E3E67549FD0E627E7447F50B1819517E + +Set 1, vector#155: + key=00000000000000000000000000000000 + 00000010000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=6972276803AE9AA7C6F431AB10979C34 + decrypted=00000000000000000000000000000000 + Iterated 100 times=533779C07BF87365B5C3DD307BAD0DD4 + Iterated 1000 times=9AB5516D34262A12B63FCC72E9B5BF61 + +Set 1, vector#156: + key=00000000000000000000000000000000 + 00000008000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=86DEAA9F39244101818178474D7DBDE9 + decrypted=00000000000000000000000000000000 + Iterated 100 times=A868BF9126478519DB2F6B2E4E8EFE81 + Iterated 1000 times=E7DA4CB3D1E964D6E282F3815308E2D2 + +Set 1, vector#157: + key=00000000000000000000000000000000 + 00000004000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=88C6B466EA361D662D8D08CBF181F4FE + decrypted=00000000000000000000000000000000 + Iterated 100 times=9A05229D54995AA983AC66E3E0034B09 + Iterated 1000 times=AC1C76FAE4DEB18FBEB699964AAEA5BA + +Set 1, vector#158: + key=00000000000000000000000000000000 + 00000002000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=91AB2C6B7C63FF59F7CBEEBF91B20B95 + decrypted=00000000000000000000000000000000 + Iterated 100 times=57425B195D6DF848E554AE174254BC70 + Iterated 1000 times=ED909DCAD6BCEE0BCFCE4347E66BF949 + +Set 1, vector#159: + key=00000000000000000000000000000000 + 00000001000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=2DFE6C146AD5B3D8C3C1718F13B48E01 + decrypted=00000000000000000000000000000000 + Iterated 100 times=58457B207D76A319A6031CC3F650A85A + Iterated 1000 times=41ABCA98381891DC0B237C82054A3769 + +Set 1, vector#160: + key=00000000000000000000000000000000 + 00000000800000000000000000000000 + plain=00000000000000000000000000000000 + cipher=C7CFF1623451711391A302EEC3584AAA + decrypted=00000000000000000000000000000000 + Iterated 100 times=45F89DBEE1F2377D29F8DCC99D802D04 + Iterated 1000 times=5089367292600DFCA0894C269E5F7193 + +Set 1, vector#161: + key=00000000000000000000000000000000 + 00000000400000000000000000000000 + plain=00000000000000000000000000000000 + cipher=089FE845CC05011686C66019D18BE050 + decrypted=00000000000000000000000000000000 + Iterated 100 times=F109EC9217B3FAABB33A82644FBEA92D + Iterated 1000 times=6903CD28B14E71C36CB1E8EF76681F21 + +Set 1, vector#162: + key=00000000000000000000000000000000 + 00000000200000000000000000000000 + plain=00000000000000000000000000000000 + cipher=08C8410B9B427211A67124B0DCCEAD48 + decrypted=00000000000000000000000000000000 + Iterated 100 times=23B2BF2CF7B8A2A45FC295C2C7796C27 + Iterated 1000 times=E4ED39CC2D5235C6A50FE648B572733B + +Set 1, vector#163: + key=00000000000000000000000000000000 + 00000000100000000000000000000000 + plain=00000000000000000000000000000000 + cipher=8D91592F5566085254784606334D7629 + decrypted=00000000000000000000000000000000 + Iterated 100 times=78C2E389EB9839989938F793F6823505 + Iterated 1000 times=C2B8CB74FF4E4F1CBC90F78F94D8BE54 + +Set 1, vector#164: + key=00000000000000000000000000000000 + 00000000080000000000000000000000 + plain=00000000000000000000000000000000 + cipher=3298FEAAF2E1201D6299FF8846639C97 + decrypted=00000000000000000000000000000000 + Iterated 100 times=EAAAB8E2EAB1C16737F5098974B48A5D + Iterated 1000 times=862531AA0D0901689E42EE06D6E66938 + +Set 1, vector#165: + key=00000000000000000000000000000000 + 00000000040000000000000000000000 + plain=00000000000000000000000000000000 + cipher=C497CB9F0BDFE0EFC8C2F3F90760AA72 + decrypted=00000000000000000000000000000000 + Iterated 100 times=A38E15FDF8EAF7484F78AC3A1DB79740 + Iterated 1000 times=48503CA85926CBD1858CB85FEC4EC398 + +Set 1, vector#166: + key=00000000000000000000000000000000 + 00000000020000000000000000000000 + plain=00000000000000000000000000000000 + cipher=2788AFD046E0309CBE4424690DA2AB89 + decrypted=00000000000000000000000000000000 + Iterated 100 times=E393D65945B77A4FB6344CDF16554BFE + Iterated 1000 times=26567B373EAEB47F7E6FC1D51AF17CF4 + +Set 1, vector#167: + key=00000000000000000000000000000000 + 00000000010000000000000000000000 + plain=00000000000000000000000000000000 + cipher=E9891707F25EF29FEE372890D4258982 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5EBCA0DDFFF1B1172E8157389F023E6E + Iterated 1000 times=9C794AE139D6727C5E8405DA5BCEE77E + +Set 1, vector#168: + key=00000000000000000000000000000000 + 00000000008000000000000000000000 + plain=00000000000000000000000000000000 + cipher=DB041D94A23D45D4D4DCED5A030CAF61 + decrypted=00000000000000000000000000000000 + Iterated 100 times=0A9E2CDC475FEDD1465AF54A70FE58D1 + Iterated 1000 times=5058D136FE92487E2570A4AF267FC427 + +Set 1, vector#169: + key=00000000000000000000000000000000 + 00000000004000000000000000000000 + plain=00000000000000000000000000000000 + cipher=FFAFDBF0ECB18DF9EA02C27077448E6D + decrypted=00000000000000000000000000000000 + Iterated 100 times=DA40E0CD1136C8A9E27854644AAA9B3B + Iterated 1000 times=77BA82FE03273FADA4EDC1CAABC35BC4 + +Set 1, vector#170: + key=00000000000000000000000000000000 + 00000000002000000000000000000000 + plain=00000000000000000000000000000000 + cipher=2DAAA42A7D0A1D3B0E4761D99CF2150A + decrypted=00000000000000000000000000000000 + Iterated 100 times=0C202D554F8493D498343DF4ADEF17B7 + Iterated 1000 times=46652FAE7B2D63EDA5784BBBA97A9178 + +Set 1, vector#171: + key=00000000000000000000000000000000 + 00000000001000000000000000000000 + plain=00000000000000000000000000000000 + cipher=3B7A54CB7CF30ABE263DD6ED5BFE8D63 + decrypted=00000000000000000000000000000000 + Iterated 100 times=FA2BF5FDC47C07AD79D3CEB6F87FB0DA + Iterated 1000 times=8ECA7CBD49454D8922AADC9200A0E23F + +Set 1, vector#172: + key=00000000000000000000000000000000 + 00000000000800000000000000000000 + plain=00000000000000000000000000000000 + cipher=EEFA090174C590C448A55D43648F534A + decrypted=00000000000000000000000000000000 + Iterated 100 times=869AF6EFD9F3775C3B22BDFEB2DC3003 + Iterated 1000 times=F54FDD0E1F7DB750888D087B75BD7B2C + +Set 1, vector#173: + key=00000000000000000000000000000000 + 00000000000400000000000000000000 + plain=00000000000000000000000000000000 + cipher=9E15798731ED42F43EA2740A691DA872 + decrypted=00000000000000000000000000000000 + Iterated 100 times=545B5E086AB2B0026F07DB9E6B0F4F3A + Iterated 1000 times=6970DB796F23A8FCBD82386C3793E0F5 + +Set 1, vector#174: + key=00000000000000000000000000000000 + 00000000000200000000000000000000 + plain=00000000000000000000000000000000 + cipher=31FBD661540A5DEAAD1017CFD3909EC8 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5B1BAF684B7693ACC09041DC87B54A6C + Iterated 1000 times=350AA2FC8CCBC46434363C36926E51A0 + +Set 1, vector#175: + key=00000000000000000000000000000000 + 00000000000100000000000000000000 + plain=00000000000000000000000000000000 + cipher=CDA9AE05F224140E28CB951721B44D6A + decrypted=00000000000000000000000000000000 + Iterated 100 times=3ECB34CBBDACB4B825FBB6AA657CB306 + Iterated 1000 times=A758B2990D0AF71F97BBE54E73CB6041 + +Set 1, vector#176: + key=00000000000000000000000000000000 + 00000000000080000000000000000000 + plain=00000000000000000000000000000000 + cipher=0C5BC512C60A1EAC3434EFB1A8FBB182 + decrypted=00000000000000000000000000000000 + Iterated 100 times=34FFB9545CA86AE39BB032A0DE774C4D + Iterated 1000 times=061F62A26C9BA701703CBE2910FCB883 + +Set 1, vector#177: + key=00000000000000000000000000000000 + 00000000000040000000000000000000 + plain=00000000000000000000000000000000 + cipher=AA863610DEEEEB62D045E87EA30B59B5 + decrypted=00000000000000000000000000000000 + Iterated 100 times=61B8B92B3377C8589CD19D96EF0169F2 + Iterated 1000 times=33F9A3A941B4C7825F2D3A3B53D63144 + +Set 1, vector#178: + key=00000000000000000000000000000000 + 00000000000020000000000000000000 + plain=00000000000000000000000000000000 + cipher=6AC2448DE568D279C7EEBE1DF403920C + decrypted=00000000000000000000000000000000 + Iterated 100 times=B44C9B559E2D211F78F305665E3D4273 + Iterated 1000 times=D13100603DA4F50EF03A04B99467A02B + +Set 1, vector#179: + key=00000000000000000000000000000000 + 00000000000010000000000000000000 + plain=00000000000000000000000000000000 + cipher=E2011E3D292B26888AE801215FD0CB40 + decrypted=00000000000000000000000000000000 + Iterated 100 times=7B4521097765F61EC4A8339F8F449DD5 + Iterated 1000 times=0FBF04AFAD20477210D52F86E4565918 + +Set 1, vector#180: + key=00000000000000000000000000000000 + 00000000000008000000000000000000 + plain=00000000000000000000000000000000 + cipher=E06F3E15EE3A61672D1C99BADE5B9DBE + decrypted=00000000000000000000000000000000 + Iterated 100 times=DF2DA28EAA96B99A648859A69A734A66 + Iterated 1000 times=F3D49F6E8CFB456118BA542B7A717C2F + +Set 1, vector#181: + key=00000000000000000000000000000000 + 00000000000004000000000000000000 + plain=00000000000000000000000000000000 + cipher=BB7027F0548CF6712CEB4C7A4B28E178 + decrypted=00000000000000000000000000000000 + Iterated 100 times=F506B9EDC0A835C0FA8BD8E24DA7B4CA + Iterated 1000 times=E9352DA9D3BCD32A3FCC027948403E32 + +Set 1, vector#182: + key=00000000000000000000000000000000 + 00000000000002000000000000000000 + plain=00000000000000000000000000000000 + cipher=061EC21FB70FADBDF87C3BD2AE23825B + decrypted=00000000000000000000000000000000 + Iterated 100 times=290C6435EE97E56CD97B3622F522D832 + Iterated 1000 times=D69B93D009F025B14D314D4011B6859C + +Set 1, vector#183: + key=00000000000000000000000000000000 + 00000000000001000000000000000000 + plain=00000000000000000000000000000000 + cipher=4C21F26FE94ABBAC381352375314C3EB + decrypted=00000000000000000000000000000000 + Iterated 100 times=C63744A6840C126A012FCD53E8CFE54E + Iterated 1000 times=B741B9DB27E0EB37740E9CA4EF2C52F9 + +Set 1, vector#184: + key=00000000000000000000000000000000 + 00000000000000800000000000000000 + plain=00000000000000000000000000000000 + cipher=F7CEE6DD99909C2B569EEDA61ED8942E + decrypted=00000000000000000000000000000000 + Iterated 100 times=421DC2C048835FCB7B3B298740706C76 + Iterated 1000 times=F3F5DECFCD1806BCB25DBBC915497E40 + +Set 1, vector#185: + key=00000000000000000000000000000000 + 00000000000000400000000000000000 + plain=00000000000000000000000000000000 + cipher=CE98C4A876C65E4CCB261EBB1D9DF7F5 + decrypted=00000000000000000000000000000000 + Iterated 100 times=FB19CE612FC688EA0CD1D826A3E9E329 + Iterated 1000 times=880123F1F42B2A5B4C59B7E6F4AC1E9A + +Set 1, vector#186: + key=00000000000000000000000000000000 + 00000000000000200000000000000000 + plain=00000000000000000000000000000000 + cipher=A5491881CF833C3604ABC08044F402AC + decrypted=00000000000000000000000000000000 + Iterated 100 times=7781015B1BC4FEB88C12A95037894876 + Iterated 1000 times=9699516524A1A0EA821C4DDB1B4D70A5 + +Set 1, vector#187: + key=00000000000000000000000000000000 + 00000000000000100000000000000000 + plain=00000000000000000000000000000000 + cipher=A1BA16E64CCCB3087D57A768507B0BFC + decrypted=00000000000000000000000000000000 + Iterated 100 times=40E7A4251928B80769680C35A30F7835 + Iterated 1000 times=C6AF07589644F41619BE141729F8B72E + +Set 1, vector#188: + key=00000000000000000000000000000000 + 00000000000000080000000000000000 + plain=00000000000000000000000000000000 + cipher=D55951E202D2949EBD3BE43120C738BF + decrypted=00000000000000000000000000000000 + Iterated 100 times=2C4C443A556EC8B35E7B994DAC16D8CD + Iterated 1000 times=1D2F95DC2081FC25BBFE254BC19B5444 + +Set 1, vector#189: + key=00000000000000000000000000000000 + 00000000000000040000000000000000 + plain=00000000000000000000000000000000 + cipher=EBB8E43069E69F450EFEC65DCD52B7FD + decrypted=00000000000000000000000000000000 + Iterated 100 times=DEEB25F4ED2D4C6314B9B6622099BDDB + Iterated 1000 times=73AE4CD3539647CEB27F7E582AFC58D7 + +Set 1, vector#190: + key=00000000000000000000000000000000 + 00000000000000020000000000000000 + plain=00000000000000000000000000000000 + cipher=2B292135663B4AA5ABFE9423D57E7EE9 + decrypted=00000000000000000000000000000000 + Iterated 100 times=2815D4471B5AD5F9696B912077B44267 + Iterated 1000 times=72779EF2C1C97CBB461DD58F6F040BEA + +Set 1, vector#191: + key=00000000000000000000000000000000 + 00000000000000010000000000000000 + plain=00000000000000000000000000000000 + cipher=E91BF974B3BE3AD966249D8655292A85 + decrypted=00000000000000000000000000000000 + Iterated 100 times=3D31A50F4A72461AFF6A72CC9953EF03 + Iterated 1000 times=CF2E2B19FB4338EAE6B8E7A6C7755D1E + +Set 1, vector#192: + key=00000000000000000000000000000000 + 00000000000000008000000000000000 + plain=00000000000000000000000000000000 + cipher=384365998EAA9562236CC58F6ADF9610 + decrypted=00000000000000000000000000000000 + Iterated 100 times=AADBDA1C43DDAA25C41D41A98CEF93FE + Iterated 1000 times=9EBBF470013B474BB5F21D6F1509C22E + +Set 1, vector#193: + key=00000000000000000000000000000000 + 00000000000000004000000000000000 + plain=00000000000000000000000000000000 + cipher=C2E997012AA3D4D8D359C9A947CBE69F + decrypted=00000000000000000000000000000000 + Iterated 100 times=A13CB18C91738BAB676FED4E9AE12A4E + Iterated 1000 times=B7BF64F4401F9EB5E7F82520D3DB9385 + +Set 1, vector#194: + key=00000000000000000000000000000000 + 00000000000000002000000000000000 + plain=00000000000000000000000000000000 + cipher=F49421204148BA213BE87E2D5C22B0BF + decrypted=00000000000000000000000000000000 + Iterated 100 times=AED1BB2B79E181979C41029EB8D54C55 + Iterated 1000 times=4E3B2EBCA03B7DB9EC5065F0E657FF5E + +Set 1, vector#195: + key=00000000000000000000000000000000 + 00000000000000001000000000000000 + plain=00000000000000000000000000000000 + cipher=82ED0ED9953AA92E4DF30929CA65C00F + decrypted=00000000000000000000000000000000 + Iterated 100 times=A0723555F35A11BCD81A83BEE77FEC98 + Iterated 1000 times=9DB08B1F22AB7C1DD9C0494CDAA5832F + +Set 1, vector#196: + key=00000000000000000000000000000000 + 00000000000000000800000000000000 + plain=00000000000000000000000000000000 + cipher=291EB1D11653C8479437C74A977F5106 + decrypted=00000000000000000000000000000000 + Iterated 100 times=CFD1F9A0F446DB2F22642FB7E5E87D59 + Iterated 1000 times=6EDB23A00506A1B26836D6ED2DC58F76 + +Set 1, vector#197: + key=00000000000000000000000000000000 + 00000000000000000400000000000000 + plain=00000000000000000000000000000000 + cipher=BCB997B1939B8983ABD550D6025683E3 + decrypted=00000000000000000000000000000000 + Iterated 100 times=022AE71B6612B4248B3A3850028B1325 + Iterated 1000 times=E1ABE3C242C7F0E076AD0CD47F123BBC + +Set 1, vector#198: + key=00000000000000000000000000000000 + 00000000000000000200000000000000 + plain=00000000000000000000000000000000 + cipher=1FBA2592C6F489775CAADA71F9B983E9 + decrypted=00000000000000000000000000000000 + Iterated 100 times=FAB37DCF812FB1382568FA61630C09F0 + Iterated 1000 times=26470FDC9396A7099FE54BF3F07AC52E + +Set 1, vector#199: + key=00000000000000000000000000000000 + 00000000000000000100000000000000 + plain=00000000000000000000000000000000 + cipher=969F66F217AF1A3DB9E41C1B29039824 + decrypted=00000000000000000000000000000000 + Iterated 100 times=45720E1C641370684A1E648D76761FC6 + Iterated 1000 times=5AB18A464C06F9AEA641169970AA0071 + +Set 1, vector#200: + key=00000000000000000000000000000000 + 00000000000000000080000000000000 + plain=00000000000000000000000000000000 + cipher=A54BB7D6B17E423AC0A7744C19073CB8 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5EE7A932672C7948ACF7D1CFC79E31CB + Iterated 1000 times=23EA4725D5301D0A85AA2AFBBEFEA47B + +Set 1, vector#201: + key=00000000000000000000000000000000 + 00000000000000000040000000000000 + plain=00000000000000000000000000000000 + cipher=B0AC6E6578D1021F47DCF9748A32EAD5 + decrypted=00000000000000000000000000000000 + Iterated 100 times=3A7B85B5541165D75E3364B855EDD40B + Iterated 1000 times=44473FC90904AEB0C2C248387FF87C73 + +Set 1, vector#202: + key=00000000000000000000000000000000 + 00000000000000000020000000000000 + plain=00000000000000000000000000000000 + cipher=B87B361C3B7B194C77A4358D4669153E + decrypted=00000000000000000000000000000000 + Iterated 100 times=DFE6DC7D7610525061B8A68C46502554 + Iterated 1000 times=9080A138969BD5960C82EC8B092C6D8C + +Set 1, vector#203: + key=00000000000000000000000000000000 + 00000000000000000010000000000000 + plain=00000000000000000000000000000000 + cipher=46A133847F96EAA8282A799DC8899D58 + decrypted=00000000000000000000000000000000 + Iterated 100 times=13D932EC13676F2864CDC10C7EC64175 + Iterated 1000 times=B618D10D9BD2223C078B582FFD3C7598 + +Set 1, vector#204: + key=00000000000000000000000000000000 + 00000000000000000008000000000000 + plain=00000000000000000000000000000000 + cipher=2265EC3A9F2D5C9547A091CC8CFB18EA + decrypted=00000000000000000000000000000000 + Iterated 100 times=A707BDBF5C3294C691BDAF2C627C8571 + Iterated 1000 times=66B6E28D2C10DB1309058A9BFD66D4C3 + +Set 1, vector#205: + key=00000000000000000000000000000000 + 00000000000000000004000000000000 + plain=00000000000000000000000000000000 + cipher=54CBF3A6FC4FE56D426117AA1FFD1DDE + decrypted=00000000000000000000000000000000 + Iterated 100 times=7BC19F9060CFFFA4CB954F7D16A87011 + Iterated 1000 times=CD8C848374836917315C9E0C0B798D43 + +Set 1, vector#206: + key=00000000000000000000000000000000 + 00000000000000000002000000000000 + plain=00000000000000000000000000000000 + cipher=5312877CCEAB6CFB0905394A370A8003 + decrypted=00000000000000000000000000000000 + Iterated 100 times=BFD34C1FC53170D835D7C5912552685B + Iterated 1000 times=8D7110B8CE0A045D7E451D5AC6CE6029 + +Set 1, vector#207: + key=00000000000000000000000000000000 + 00000000000000000001000000000000 + plain=00000000000000000000000000000000 + cipher=7190BD6EC613FE38B84ECFE28F702FE4 + decrypted=00000000000000000000000000000000 + Iterated 100 times=3919C0E3C321EE7CE89373771D31C472 + Iterated 1000 times=B6EBE8D60F338AEAA1768A47063BD2FA + +Set 1, vector#208: + key=00000000000000000000000000000000 + 00000000000000000000800000000000 + plain=00000000000000000000000000000000 + cipher=D1FA5B9CA89A43B04C05F0EF29EF68CD + decrypted=00000000000000000000000000000000 + Iterated 100 times=B93EAD8BE36FB2554BD69453DFB653C4 + Iterated 1000 times=324EAFD9D2E6499032CC4085FE022152 + +Set 1, vector#209: + key=00000000000000000000000000000000 + 00000000000000000000400000000000 + plain=00000000000000000000000000000000 + cipher=808285751548ED934FD1056D2D9AE8BA + decrypted=00000000000000000000000000000000 + Iterated 100 times=9F7863727BBCA5BE61A3A89C89934523 + Iterated 1000 times=37CFC1EEF1B5ACA754623BE336EC33C0 + +Set 1, vector#210: + key=00000000000000000000000000000000 + 00000000000000000000200000000000 + plain=00000000000000000000000000000000 + cipher=2758DEF3E7B95A9AE89777BE64D5A6CF + decrypted=00000000000000000000000000000000 + Iterated 100 times=9EADD4B5007706A1BC240DC25031788F + Iterated 1000 times=4F54BEC777A5F1E5AE32EDC366591F23 + +Set 1, vector#211: + key=00000000000000000000000000000000 + 00000000000000000000100000000000 + plain=00000000000000000000000000000000 + cipher=07D81F87DB3E0ACC82B01E08FB22F3C1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=393D807EF8D7238A2C429D77B537256C + Iterated 1000 times=C6144D4968DDCCF67C323FAF0A57EAEB + +Set 1, vector#212: + key=00000000000000000000000000000000 + 00000000000000000000080000000000 + plain=00000000000000000000000000000000 + cipher=8DA250E5553D650711A75EE1CB4FD1C7 + decrypted=00000000000000000000000000000000 + Iterated 100 times=0FE10509EBB275220D653018AEC5457E + Iterated 1000 times=C4FE928B71F7CB4E3E9F867AD97D2A0F + +Set 1, vector#213: + key=00000000000000000000000000000000 + 00000000000000000000040000000000 + plain=00000000000000000000000000000000 + cipher=A93D946BD0E87F32719DF5F158CEE669 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5A9A193BD51951B9FA72AF58436F0EAA + Iterated 1000 times=939A70448734D6588EBE6C19F054C341 + +Set 1, vector#214: + key=00000000000000000000000000000000 + 00000000000000000000020000000000 + plain=00000000000000000000000000000000 + cipher=03945236EC2A4D4EAF30B8ABEB54330D + decrypted=00000000000000000000000000000000 + Iterated 100 times=419F61FCAF97B9877B5ED0DB0DFA6800 + Iterated 1000 times=EC22A4CB1D27101C7E2C81416232867A + +Set 1, vector#215: + key=00000000000000000000000000000000 + 00000000000000000000010000000000 + plain=00000000000000000000000000000000 + cipher=11CC35301F24B79DDE31AEA2D1354F88 + decrypted=00000000000000000000000000000000 + Iterated 100 times=C9D71C37D7466685F998A780BEBCF33B + Iterated 1000 times=55562A7C11C87573A5003554DF204F7B + +Set 1, vector#216: + key=00000000000000000000000000000000 + 00000000000000000000008000000000 + plain=00000000000000000000000000000000 + cipher=E73715B3E8D9A290F44AE6FFBF247E5D + decrypted=00000000000000000000000000000000 + Iterated 100 times=8BCCA49FBFF7A8E089A740D7E582ED01 + Iterated 1000 times=FEE21F4F49426931F2713CFC39F48EEB + +Set 1, vector#217: + key=00000000000000000000000000000000 + 00000000000000000000004000000000 + plain=00000000000000000000000000000000 + cipher=7345E07732B71CB158BBF64CCA5C5B96 + decrypted=00000000000000000000000000000000 + Iterated 100 times=D9EE99A48BC1D6C2A0A3A5381660B18B + Iterated 1000 times=DC72B33541A198D428B3F91F620C8F9E + +Set 1, vector#218: + key=00000000000000000000000000000000 + 00000000000000000000002000000000 + plain=00000000000000000000000000000000 + cipher=6E128F296D24705A1924FD9B70C4ED04 + decrypted=00000000000000000000000000000000 + Iterated 100 times=B6CCCC0EE7D3F44B713E3B01EC363B95 + Iterated 1000 times=ED08CEDB53616252A7B19159A99A40B0 + +Set 1, vector#219: + key=00000000000000000000000000000000 + 00000000000000000000001000000000 + plain=00000000000000000000000000000000 + cipher=95A789776F036783FBD330947083F54F + decrypted=00000000000000000000000000000000 + Iterated 100 times=D9466F0C966C76967EF4EC47CA8FA148 + Iterated 1000 times=AC8E180D1B4A003D1832BCB85710149B + +Set 1, vector#220: + key=00000000000000000000000000000000 + 00000000000000000000000800000000 + plain=00000000000000000000000000000000 + cipher=360DEC2533EA4AA2E3E54FD3DE2906EB + decrypted=00000000000000000000000000000000 + Iterated 100 times=235EF16F5D2C8B946582F1B1B10655C2 + Iterated 1000 times=F41B38B0CD54DE6B219F6897389A41D1 + +Set 1, vector#221: + key=00000000000000000000000000000000 + 00000000000000000000000400000000 + plain=00000000000000000000000000000000 + cipher=E68EFD7FECF4D601EA22727BD764965B + decrypted=00000000000000000000000000000000 + Iterated 100 times=4F01B42EDE9C23E7D40C7C2F794DE7F4 + Iterated 1000 times=03652D3B6B1CEEBBB04AFADCF89CDA55 + +Set 1, vector#222: + key=00000000000000000000000000000000 + 00000000000000000000000200000000 + plain=00000000000000000000000000000000 + cipher=9065C64A8BFF44AC33EDBB611CF83D7B + decrypted=00000000000000000000000000000000 + Iterated 100 times=9B5421F9B6360A3658278EA089C2DEB9 + Iterated 1000 times=187008083286FD25B509D10161845EE7 + +Set 1, vector#223: + key=00000000000000000000000000000000 + 00000000000000000000000100000000 + plain=00000000000000000000000000000000 + cipher=8F33C8DF2A7A51CE8090E8F123BC3723 + decrypted=00000000000000000000000000000000 + Iterated 100 times=03CABFA8DC49E82B817A5D3574389EE0 + Iterated 1000 times=7753FB2E3637E4DC5563A99C7FF1391E + +Set 1, vector#224: + key=00000000000000000000000000000000 + 00000000000000000000000080000000 + plain=00000000000000000000000000000000 + cipher=807F391FFBA8291BA625623210F99018 + decrypted=00000000000000000000000000000000 + Iterated 100 times=376963B270447326482C3DB1664558F9 + Iterated 1000 times=41900D8D68CA0A612A698D3791FEABAD + +Set 1, vector#225: + key=00000000000000000000000000000000 + 00000000000000000000000040000000 + plain=00000000000000000000000000000000 + cipher=5E8B3F3A701522CE5CAA761C929D6292 + decrypted=00000000000000000000000000000000 + Iterated 100 times=43EB56683BC5D165D2B8AC798FBF01B4 + Iterated 1000 times=38A207F3F73BF71722CA99787B18D62E + +Set 1, vector#226: + key=00000000000000000000000000000000 + 00000000000000000000000020000000 + plain=00000000000000000000000000000000 + cipher=3BA404DC38735A78289E3809E8364835 + decrypted=00000000000000000000000000000000 + Iterated 100 times=16CED6906AB0ABF35944D8B120CA5B39 + Iterated 1000 times=72C4EF8BC18184883FF609DE398CB23D + +Set 1, vector#227: + key=00000000000000000000000000000000 + 00000000000000000000000010000000 + plain=00000000000000000000000000000000 + cipher=D23BEDBAD229F8305DC425B6B759DCC9 + decrypted=00000000000000000000000000000000 + Iterated 100 times=199B1F25033B98DAB1A30A2541044D12 + Iterated 1000 times=E39B2759C730DC2EFC68B03BD5AB93FC + +Set 1, vector#228: + key=00000000000000000000000000000000 + 00000000000000000000000008000000 + plain=00000000000000000000000000000000 + cipher=44880F21CF5913040AE376AEE2A10AD8 + decrypted=00000000000000000000000000000000 + Iterated 100 times=30E5CAD8D9548715F5DD9312214295DD + Iterated 1000 times=2AA321A9914B19B41A6EC8B5E9286A1B + +Set 1, vector#229: + key=00000000000000000000000000000000 + 00000000000000000000000004000000 + plain=00000000000000000000000000000000 + cipher=9BC98E29D057C0E828C3B5CCE69256C1 + decrypted=00000000000000000000000000000000 + Iterated 100 times=3155D71117F0A9D1F29F80F52ED4A99C + Iterated 1000 times=E2674FB0640771772C0854E091FE3612 + +Set 1, vector#230: + key=00000000000000000000000000000000 + 00000000000000000000000002000000 + plain=00000000000000000000000000000000 + cipher=B293CC7A975DA141A68279368057CC41 + decrypted=00000000000000000000000000000000 + Iterated 100 times=66402227DEEF65EDF1DABD17AC70A917 + Iterated 1000 times=DAB09A9D0FFE53A884B6381273DEB962 + +Set 1, vector#231: + key=00000000000000000000000000000000 + 00000000000000000000000001000000 + plain=00000000000000000000000000000000 + cipher=8D60FB87ACD91385B313BE5F1D7BD30F + decrypted=00000000000000000000000000000000 + Iterated 100 times=3CF57E9915B4942D3CB512109B14E7E0 + Iterated 1000 times=4BB6F10F31628D4B23FB822261E07732 + +Set 1, vector#232: + key=00000000000000000000000000000000 + 00000000000000000000000000800000 + plain=00000000000000000000000000000000 + cipher=2C8E56132D70291B303C48FDF75543CD + decrypted=00000000000000000000000000000000 + Iterated 100 times=8D86923B304C13F4518815D3C4AB4F97 + Iterated 1000 times=4498E772CF1C72FAFB004EAA892D98B8 + +Set 1, vector#233: + key=00000000000000000000000000000000 + 00000000000000000000000000400000 + plain=00000000000000000000000000000000 + cipher=D1F80035B826791F6CE4E59B7DB1BB0D + decrypted=00000000000000000000000000000000 + Iterated 100 times=D157514B15B2C2127DAEAC0CA4ECF8AA + Iterated 1000 times=EC29E03528ED3626BF4E73117E21C0DF + +Set 1, vector#234: + key=00000000000000000000000000000000 + 00000000000000000000000000200000 + plain=00000000000000000000000000000000 + cipher=42CE6224FC36469339A133DD08173BD4 + decrypted=00000000000000000000000000000000 + Iterated 100 times=A03A486B0DEC029BB81163CBDF96A639 + Iterated 1000 times=86DBC0EBCC296AE888F5334BC904A861 + +Set 1, vector#235: + key=00000000000000000000000000000000 + 00000000000000000000000000100000 + plain=00000000000000000000000000000000 + cipher=61817155EA41BCBA2AF7F06AE7CBF585 + decrypted=00000000000000000000000000000000 + Iterated 100 times=F1679212F9410623D43F1B89196903F6 + Iterated 1000 times=4A1F117CEF79FDEA01A2A109F04AD1D8 + +Set 1, vector#236: + key=00000000000000000000000000000000 + 00000000000000000000000000080000 + plain=00000000000000000000000000000000 + cipher=D1923A9866068D2EF5FB77D57C3315B6 + decrypted=00000000000000000000000000000000 + Iterated 100 times=42A545B9C756FD5F2802B5AD24813A74 + Iterated 1000 times=D5675C14A809B61A714CF94E266B0DA7 + +Set 1, vector#237: + key=00000000000000000000000000000000 + 00000000000000000000000000040000 + plain=00000000000000000000000000000000 + cipher=B37CBDB5D719F49691CA968EF2E84140 + decrypted=00000000000000000000000000000000 + Iterated 100 times=F4F75FD24B2721CD41C77ED9A6F07B33 + Iterated 1000 times=BB5D77D05CE84AD8246CE757731328DD + +Set 1, vector#238: + key=00000000000000000000000000000000 + 00000000000000000000000000020000 + plain=00000000000000000000000000000000 + cipher=EC974E653A055D7F8F22171030F68E1D + decrypted=00000000000000000000000000000000 + Iterated 100 times=8069507F735CFB3DB161985C5EFBF34C + Iterated 1000 times=2A712E3BF987009032AF38AB3F9970CE + +Set 1, vector#239: + key=00000000000000000000000000000000 + 00000000000000000000000000010000 + plain=00000000000000000000000000000000 + cipher=DDE5D3B9AAD9C32213BB3675A822499C + decrypted=00000000000000000000000000000000 + Iterated 100 times=9F08A1EE9F514669C4BE14F471020741 + Iterated 1000 times=3A6A2379AF494C7B1F09290584121E8B + +Set 1, vector#240: + key=00000000000000000000000000000000 + 00000000000000000000000000008000 + plain=00000000000000000000000000000000 + cipher=D3B6E9216EA1AE57EB1C628A3C38AB78 + decrypted=00000000000000000000000000000000 + Iterated 100 times=2C29950123009F898093D7345FD0D90D + Iterated 1000 times=3907F8B86B411BA7A9DAFB4B37F9A0C4 + +Set 1, vector#241: + key=00000000000000000000000000000000 + 00000000000000000000000000004000 + plain=00000000000000000000000000000000 + cipher=82C99ECC69472B7E96324B042AE8B87A + decrypted=00000000000000000000000000000000 + Iterated 100 times=0A4035F678C141904666227F3AC754DB + Iterated 1000 times=556A0AEBC4348E7EFBDFB47F96E1DC2F + +Set 1, vector#242: + key=00000000000000000000000000000000 + 00000000000000000000000000002000 + plain=00000000000000000000000000000000 + cipher=97144DC5338C43600F84439C0AA0D147 + decrypted=00000000000000000000000000000000 + Iterated 100 times=FBC57C04C146F967AC20239CFF42866E + Iterated 1000 times=3E1DD0BDA9386315C14A05FFE0B1B3BF + +Set 1, vector#243: + key=00000000000000000000000000000000 + 00000000000000000000000000001000 + plain=00000000000000000000000000000000 + cipher=400AC4A0BBADA1DB2121EB144C7E5209 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5DBA6D99924C61C7FE3539223901CFD0 + Iterated 1000 times=C8EE41906ADE80B181417544CC7ABAFE + +Set 1, vector#244: + key=00000000000000000000000000000000 + 00000000000000000000000000000800 + plain=00000000000000000000000000000000 + cipher=EFD9D550EB419ED278F4885A490AB54C + decrypted=00000000000000000000000000000000 + Iterated 100 times=510544481CF395C8CEBE65A6A19A6764 + Iterated 1000 times=2A66135FAAC436AD5E8BA334BB4CD080 + +Set 1, vector#245: + key=00000000000000000000000000000000 + 00000000000000000000000000000400 + plain=00000000000000000000000000000000 + cipher=2AB7816E149B7C0404C88A8857793670 + decrypted=00000000000000000000000000000000 + Iterated 100 times=AF10ACD0171B5564E81EFADF0B9999C3 + Iterated 1000 times=76E2B1B8E2BEC1C55A6648E969D6918C + +Set 1, vector#246: + key=00000000000000000000000000000000 + 00000000000000000000000000000200 + plain=00000000000000000000000000000000 + cipher=5B591DFF9E8DEE15BAD24C025DBCA481 + decrypted=00000000000000000000000000000000 + Iterated 100 times=E6924DA855AB7B58B710CC33B2405157 + Iterated 1000 times=A69AB2CE67F7C2FAA2BAA5D73450FF44 + +Set 1, vector#247: + key=00000000000000000000000000000000 + 00000000000000000000000000000100 + plain=00000000000000000000000000000000 + cipher=0C06633E30721C3749F49AD8CBF2B754 + decrypted=00000000000000000000000000000000 + Iterated 100 times=5E1BDF9BB8C2925019533BBF4BFA380B + Iterated 1000 times=B5F3426837128A85E4C90B580C72CD01 + +Set 1, vector#248: + key=00000000000000000000000000000000 + 00000000000000000000000000000080 + plain=00000000000000000000000000000000 + cipher=96D6D31A41B5123B2035FD91A921D4CA + decrypted=00000000000000000000000000000000 + Iterated 100 times=13D73D775A643C691F52A759D9291A6B + Iterated 1000 times=4325979AC67B1E7D863540F8C18BDDDB + +Set 1, vector#249: + key=00000000000000000000000000000000 + 00000000000000000000000000000040 + plain=00000000000000000000000000000000 + cipher=E7F6C34D86668BC2805CA7793C5E86AD + decrypted=00000000000000000000000000000000 + Iterated 100 times=CA0181A871CC160582A775882ECA22BC + Iterated 1000 times=F4EA71ABCCDCFA18F8E110446EAD6151 + +Set 1, vector#250: + key=00000000000000000000000000000000 + 00000000000000000000000000000020 + plain=00000000000000000000000000000000 + cipher=F46DFF5FF500D6879C4D3E45CF0CF0F3 + decrypted=00000000000000000000000000000000 + Iterated 100 times=25087D466ACA71E1A5F06182D6C91D84 + Iterated 1000 times=C661BD64561CD63B4CD6AE6D00E1D1C1 + +Set 1, vector#251: + key=00000000000000000000000000000000 + 00000000000000000000000000000010 + plain=00000000000000000000000000000000 + cipher=60D842D9C61DA7495C116197B7CECBBE + decrypted=00000000000000000000000000000000 + Iterated 100 times=429B453449809FD7FC27F1BDC63878AE + Iterated 1000 times=997B52AB4AB0E365FA8FCEEECDD47534 + +Set 1, vector#252: + key=00000000000000000000000000000000 + 00000000000000000000000000000008 + plain=00000000000000000000000000000000 + cipher=D45B24EDB673353EBDF248B8FA06B67A + decrypted=00000000000000000000000000000000 + Iterated 100 times=2C363FA402EA3B710BE89C440DAF4FD6 + Iterated 1000 times=D3E2C28C658AED43D71731CEDC2FAF74 + +Set 1, vector#253: + key=00000000000000000000000000000000 + 00000000000000000000000000000004 + plain=00000000000000000000000000000000 + cipher=119EAEBCC165D0BD02C0D35DC82EF992 + decrypted=00000000000000000000000000000000 + Iterated 100 times=60681D221E42CEB9323A46CA898BCAB4 + Iterated 1000 times=84188A1A5C57F2F4AAB2C420C6777740 + +Set 1, vector#254: + key=00000000000000000000000000000000 + 00000000000000000000000000000002 + plain=00000000000000000000000000000000 + cipher=E673143680414ADA301D0ED34626B9FE + decrypted=00000000000000000000000000000000 + Iterated 100 times=BDBBA2A5D8B112C1EBE935D686FE2C32 + Iterated 1000 times=FA6BCEF78853C65E88A7052D350356E8 + +Set 1, vector#255: + key=00000000000000000000000000000000 + 00000000000000000000000000000001 + plain=00000000000000000000000000000000 + cipher=6B6CFE160A6263631B292F879EEFF926 + decrypted=00000000000000000000000000000000 + Iterated 100 times=62FC699B6F1C0CD7F02BAA5F059D68D6 + Iterated 1000 times=1E14E98329531841EC7568BA35C2550C + +Test vectors -- set 2 +===================== + +Set 2, vector# 0: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=80000000000000000000000000000000 + cipher=DDC6BF790C15760D8D9AEB6F9A75FD4E + decrypted=80000000000000000000000000000000 + Iterated 100 times=72C3F3D011CAAB4052BFED56B9B493C7 + Iterated 1000 times=F218E015D0D36A81A4B03547EC47D7EA + +Set 2, vector# 1: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=40000000000000000000000000000000 + cipher=C7098C217C334D0C9BDF37EA13B0822C + decrypted=40000000000000000000000000000000 + Iterated 100 times=D7FB82AD2CBEDC2B2A57DF3B645DB76C + Iterated 1000 times=02D0D082D11DC74FE3CC832D99894D4B + +Set 2, vector# 2: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=20000000000000000000000000000000 + cipher=60F0FB0D4C56A8D4EEFEC5264204042D + decrypted=20000000000000000000000000000000 + Iterated 100 times=A60D920E9CC6D9B4B177D8A3F1B89B3A + Iterated 1000 times=D89F7EAC225D6E5AF5FD573D13C1A5F4 + +Set 2, vector# 3: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=10000000000000000000000000000000 + cipher=73376FBBF654D0686E0E84001477106B + decrypted=10000000000000000000000000000000 + Iterated 100 times=6F7AE4C75FFCBD4FE011611B9434B865 + Iterated 1000 times=FC6FCE18835491FFCE95EE2E2A24673E + +Set 2, vector# 4: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=08000000000000000000000000000000 + cipher=2F443B52BA5F0C6EA0602C7C4FD259B6 + decrypted=08000000000000000000000000000000 + Iterated 100 times=2473EDD80875D28FBB40950F65517D02 + Iterated 1000 times=7471687696DEEE5D20D80834181E2098 + +Set 2, vector# 5: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=04000000000000000000000000000000 + cipher=75D11B0E3A68C4223D88DBF017977DD7 + decrypted=04000000000000000000000000000000 + Iterated 100 times=04EE2DE191A578E9E9F9047063D28990 + Iterated 1000 times=9AC2BDBCA74C8B31C720AD247CA9C5B2 + +Set 2, vector# 6: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=02000000000000000000000000000000 + cipher=779B38D15BFFB63D8D609D551A5CC98E + decrypted=02000000000000000000000000000000 + Iterated 100 times=9E276E87A0797477B4BF30C485A0B4F6 + Iterated 1000 times=0626B24D287D06CCE49FE561EBF049C9 + +Set 2, vector# 7: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=01000000000000000000000000000000 + cipher=5275F3D86B4FB8684593133EBFA53CD3 + decrypted=01000000000000000000000000000000 + Iterated 100 times=A40937D34F3B443865CBBD1C2E608C5B + Iterated 1000 times=3B8142FCB8AE592D7C1E5CD68057C386 + +Set 2, vector# 8: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00800000000000000000000000000000 + cipher=1CEF2074B336CEC62F12DEA2F6AB1481 + decrypted=00800000000000000000000000000000 + Iterated 100 times=C40B1A3C0EEAB507D12A5A22D226D096 + Iterated 1000 times=9AFB123F8E11A3E93A490E483340B016 + +Set 2, vector# 9: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00400000000000000000000000000000 + cipher=1AEF5ABBAD9D7160874578DCD8BAE172 + decrypted=00400000000000000000000000000000 + Iterated 100 times=3BD0B16093BB2873EFBF4EF85C1ED973 + Iterated 1000 times=52A12D9E050189702ECBE4FD33ECBF65 + +Set 2, vector# 10: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00200000000000000000000000000000 + cipher=46C525DB17E72F26BF03216846B6F609 + decrypted=00200000000000000000000000000000 + Iterated 100 times=C64558B32CA5432EB34D7ED7BE2006B1 + Iterated 1000 times=90BC35726F7C06F7E66CCA5AC38EE05A + +Set 2, vector# 11: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00100000000000000000000000000000 + cipher=E24411F941BBE08788781E3EC52CBAA4 + decrypted=00100000000000000000000000000000 + Iterated 100 times=8A2CC7BA6020B0A80C9EC2E87289BA74 + Iterated 1000 times=D95B7FE2C1E348D3C4178AB09BD719A3 + +Set 2, vector# 12: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00080000000000000000000000000000 + cipher=83A3DEDD1DD27018F6A6477E40527581 + decrypted=00080000000000000000000000000000 + Iterated 100 times=DDAC6C22B27FB2196B843BCD13D1A6BC + Iterated 1000 times=A130C8FC0C9046CCB8467FD613B9F1CB + +Set 2, vector# 13: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00040000000000000000000000000000 + cipher=B68F8A2CDBAB0C923C67FC8F0F1087DE + decrypted=00040000000000000000000000000000 + Iterated 100 times=3BF73B2999CD612C524F22C20B699601 + Iterated 1000 times=A487EE7E67318C38DD50CBA5C8CC6DD5 + +Set 2, vector# 14: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00020000000000000000000000000000 + cipher=649944A70C32BF87A7409E7AE128FDE8 + decrypted=00020000000000000000000000000000 + Iterated 100 times=4471A83D0D34FBA96337EEEB14C83740 + Iterated 1000 times=3F7A866808183F91D60FF56C26005F19 + +Set 2, vector# 15: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00010000000000000000000000000000 + cipher=2846526D67387539C89314DE9E0C2D02 + decrypted=00010000000000000000000000000000 + Iterated 100 times=67F513680B47178F1961B43DA3B0FFF4 + Iterated 1000 times=0C674208A79965417D49E65BE0067D6F + +Set 2, vector# 16: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00008000000000000000000000000000 + cipher=A9A0B8402E53C70DD1688054BA58DDFD + decrypted=00008000000000000000000000000000 + Iterated 100 times=6A5D369018D2FFC1F3A682C7E8232A5C + Iterated 1000 times=63FDD3C957533E5638766FBA9654C97A + +Set 2, vector# 17: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00004000000000000000000000000000 + cipher=4A72E6E1B79C83AC4BE3EBA5699EED48 + decrypted=00004000000000000000000000000000 + Iterated 100 times=D141AD706A0B1EABCCDB22C6D2D05FF9 + Iterated 1000 times=2A224E365E3B417C019B19C45E3005A7 + +Set 2, vector# 18: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00002000000000000000000000000000 + cipher=B0E36B867BA4FF2B77D0614B0E364E4C + decrypted=00002000000000000000000000000000 + Iterated 100 times=19C73734F5DC8D23BB10316EEA6F5B55 + Iterated 1000 times=A3A1FBB5DB6D587A693151C85CBD29EF + +Set 2, vector# 19: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00001000000000000000000000000000 + cipher=49B57DE141F6418E3090F24DDD4014B6 + decrypted=00001000000000000000000000000000 + Iterated 100 times=ED25B202B2AF681A9188049C5E598D8E + Iterated 1000 times=18C80120E144158E31D492FA7CDC2AD2 + +Set 2, vector# 20: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000800000000000000000000000000 + cipher=A6C0D5B9797258E1987AC5F6CD20146D + decrypted=00000800000000000000000000000000 + Iterated 100 times=61CE28CCD180DA43F924D18B71A2950D + Iterated 1000 times=C12F695C177704ABE34F498E0A4C848A + +Set 2, vector# 21: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000400000000000000000000000000 + cipher=426CF4BDCAA369175965D26E7C71EEA2 + decrypted=00000400000000000000000000000000 + Iterated 100 times=6512E326189508E1FF59422F860E1A72 + Iterated 1000 times=7FE61E296D3F8C6334858B24485DDE80 + +Set 2, vector# 22: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000200000000000000000000000000 + cipher=E27F484CE54BC99BC1A52BDA3B518A26 + decrypted=00000200000000000000000000000000 + Iterated 100 times=70347F404B88FCB9B7127460AE2347AE + Iterated 1000 times=52E7CB005C0697C372CB6F11E6C79C1F + +Set 2, vector# 23: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000100000000000000000000000000 + cipher=D16D186284C7E6EE64B8104E0EF20BA5 + decrypted=00000100000000000000000000000000 + Iterated 100 times=416640558680EFB60468334071E6C9AF + Iterated 1000 times=8A11060223267DD354168BE8710932C4 + +Set 2, vector# 24: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000080000000000000000000000000 + cipher=6431F8538AD54E1E044A9F71F8EF556B + decrypted=00000080000000000000000000000000 + Iterated 100 times=CB00A38716468111E101C5D7BE0BC0DC + Iterated 1000 times=37ED3E8D76581BB14BBAD725F4A9C3B0 + +Set 2, vector# 25: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000040000000000000000000000000 + cipher=ECD57CEB451D27EB96C55B2042257E8E + decrypted=00000040000000000000000000000000 + Iterated 100 times=4777C5386C6A7E9FF2BAE0EB41C8C72A + Iterated 1000 times=31B4AAE3A5FF7DF8AE90642073D1AF00 + +Set 2, vector# 26: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000020000000000000000000000000 + cipher=4F0F188DC911B1954AFBC734C9F68872 + decrypted=00000020000000000000000000000000 + Iterated 100 times=51EAE0C87FD09253958393DF1F758456 + Iterated 1000 times=5DD15EEE725259FE9AC9A5B63EAB4E2E + +Set 2, vector# 27: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000010000000000000000000000000 + cipher=B54DEF0337626B65614E81EDFDE620F3 + decrypted=00000010000000000000000000000000 + Iterated 100 times=D9FAA94D3EEB3762F5E8F3DD9F9A9B3A + Iterated 1000 times=3DC472575507AFAE97865B4CC7F7F3FC + +Set 2, vector# 28: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000008000000000000000000000000 + cipher=6655D8074CAE0B90B0D3A3FE72D4D9DB + decrypted=00000008000000000000000000000000 + Iterated 100 times=74026A1350D24B0E241A8C80C6780046 + Iterated 1000 times=B97DD3821705CBB9F122B15DE65E2055 + +Set 2, vector# 29: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000004000000000000000000000000 + cipher=C6B74B6B9EB4FC0C9A237DB1B616D09A + decrypted=00000004000000000000000000000000 + Iterated 100 times=3B0E2B557BB3A3DD37FADB1629ED9585 + Iterated 1000 times=161AB133CA5E5B416BA635DDBEA4857F + +Set 2, vector# 30: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000002000000000000000000000000 + cipher=D7B5D076EA56EC2B20791D7AD51CCF8F + decrypted=00000002000000000000000000000000 + Iterated 100 times=2AF9847916DEDCC16044C105DA4C2C93 + Iterated 1000 times=D24DB8D1A07B3E71137B0A0687D33761 + +Set 2, vector# 31: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000001000000000000000000000000 + cipher=FE160C224BF003CE3BDDC90CB52ED22C + decrypted=00000001000000000000000000000000 + Iterated 100 times=3CB5637C39C054BF2B41EDDDEE2FA47E + Iterated 1000 times=DE32955D900BB67BC1BC4CF8CD58A7F6 + +Set 2, vector# 32: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000800000000000000000000000 + cipher=5E00DA9BA94B5EC0D258D8A8002E0F6A + decrypted=00000000800000000000000000000000 + Iterated 100 times=C667A7F7EA289163A5C4B89336C39CB9 + Iterated 1000 times=5ABFF75ED27D4C395E9731BB5F84FF7C + +Set 2, vector# 33: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000400000000000000000000000 + cipher=09AC6DCFF4DACFF1651E2BA212A292A3 + decrypted=00000000400000000000000000000000 + Iterated 100 times=88B3BB3CF53D9DC5320CEB8D4120FFE3 + Iterated 1000 times=3AF38AA7841761C7084EE92C3AA451F3 + +Set 2, vector# 34: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000200000000000000000000000 + cipher=B283617E318D99AF83A05D9810BA89F7 + decrypted=00000000200000000000000000000000 + Iterated 100 times=4756A17929902C61B2248F15E95E7711 + Iterated 1000 times=226E08D4AD01807BAAA2AE86F484923E + +Set 2, vector# 35: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000100000000000000000000000 + cipher=0B5F70CCB40B0EF2538AE9B4A9770B35 + decrypted=00000000100000000000000000000000 + Iterated 100 times=70684EC7F66F3F17D275B4F6E8288AEF + Iterated 1000 times=45B4697729DC1FA9D8C8FCD192BF955C + +Set 2, vector# 36: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000080000000000000000000000 + cipher=43282BF180248FB517839B37F4DDAAE4 + decrypted=00000000080000000000000000000000 + Iterated 100 times=8FF238863DB3F1776EBD7C3D8BF0B438 + Iterated 1000 times=051C393B83312418A2F42126FC5E684B + +Set 2, vector# 37: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000040000000000000000000000 + cipher=DDBD534C8B2E6D30A268F88C55AD765B + decrypted=00000000040000000000000000000000 + Iterated 100 times=46B576BE917709F4A6B5E80483266412 + Iterated 1000 times=6659FF5E8DEE45778A1D8796DEB37D4F + +Set 2, vector# 38: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000020000000000000000000000 + cipher=A41A164E50EC2D9F175E752B755E0B5C + decrypted=00000000020000000000000000000000 + Iterated 100 times=745546CFD8214C7402222962BBF71170 + Iterated 1000 times=BCA39E240F67C5D81B72668BF696B6B9 + +Set 2, vector# 39: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000010000000000000000000000 + cipher=37BFF99FF2F7AA97779E4ADF6F13FB10 + decrypted=00000000010000000000000000000000 + Iterated 100 times=EAC3F1969A18DFB317044BFDEF6B9EA9 + Iterated 1000 times=33E1C19A827B4C64DECE82E3761EA358 + +Set 2, vector# 40: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000008000000000000000000000 + cipher=9BA4F7BD298152903A683C4CEC669216 + decrypted=00000000008000000000000000000000 + Iterated 100 times=0208A1B10787D27F1F42FF75AFD402E3 + Iterated 1000 times=FB5CCBF1A69C92FD109B350158649FAC + +Set 2, vector# 41: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000004000000000000000000000 + cipher=5FB750C7CE10DE7B4504248914D0DA06 + decrypted=00000000004000000000000000000000 + Iterated 100 times=85BDCB555B6138977083595CD0D7D730 + Iterated 1000 times=97663CE18E3E109DED08922E74F9ED41 + +Set 2, vector# 42: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000002000000000000000000000 + cipher=3E748BFA108E086F51D56EC74A9E0FB9 + decrypted=00000000002000000000000000000000 + Iterated 100 times=54B6F01E4FFB94CC0CEB716AC4BE9D19 + Iterated 1000 times=69246D46189DE6FE2F59BBF3B4DB81C7 + +Set 2, vector# 43: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000001000000000000000000000 + cipher=31D4E56B99F5B73C1B8437DF332AFB98 + decrypted=00000000001000000000000000000000 + Iterated 100 times=25F25FB8423B9F9C5994A38DA483B41F + Iterated 1000 times=D54FE4FB7197D237F2C2D5865D1D51F0 + +Set 2, vector# 44: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000800000000000000000000 + cipher=9DC6717B84FC55D266E7B1D9B5C52A5F + decrypted=00000000000800000000000000000000 + Iterated 100 times=47BC70BC2967FFEF8D5F86F54C66354C + Iterated 1000 times=E6F272DB08E82B3C5EEF6FA195EED6B9 + +Set 2, vector# 45: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000400000000000000000000 + cipher=8EF8BA007F23C0A50FC120E07041BCCD + decrypted=00000000000400000000000000000000 + Iterated 100 times=43604ABBC20A0EA563906DFF18645770 + Iterated 1000 times=B8164DFCA3F7DE7E56EC475AB556A253 + +Set 2, vector# 46: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000200000000000000000000 + cipher=C58F38E1839FC1918A12B8C9E88C66B6 + decrypted=00000000000200000000000000000000 + Iterated 100 times=48CB514BF629570705BAAB1C9849C186 + Iterated 1000 times=8AA8280C3F9384AD8BBD75F04558007C + +Set 2, vector# 47: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000100000000000000000000 + cipher=B695D72A3FCF508C4050E12E40061C2D + decrypted=00000000000100000000000000000000 + Iterated 100 times=BC147547AB3120E00A2489C234FC5852 + Iterated 1000 times=4658920929A99E6F2398D548379BDF2C + +Set 2, vector# 48: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000080000000000000000000 + cipher=5D2736AD478A50583BC8C11BEFF16D7A + decrypted=00000000000080000000000000000000 + Iterated 100 times=C6DA87C2821C665175F8AE6F72DE19FC + Iterated 1000 times=DD838B7F1DF998387AF143478E094DBF + +Set 2, vector# 49: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000040000000000000000000 + cipher=DF0EACA8F17847AD41F9578F14C7B56B + decrypted=00000000000040000000000000000000 + Iterated 100 times=D6E80AB9C611B53E080CF33F013EAA11 + Iterated 1000 times=E35F5647F7F33489F190D95ED35F366E + +Set 2, vector# 50: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000020000000000000000000 + cipher=E5AA14AD48AD0A3C47CC35D5F8020E51 + decrypted=00000000000020000000000000000000 + Iterated 100 times=5454A2C9333B254FBA2C27331BF21E39 + Iterated 1000 times=D334CAEF184B8B91C28330BFE2DA0D4A + +Set 2, vector# 51: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000010000000000000000000 + cipher=11BE6C8F58EBD8CEF1A53F591A68E8CE + decrypted=00000000000010000000000000000000 + Iterated 100 times=4DC258E09E8656AD62929B7F175D3771 + Iterated 1000 times=3451F0DCE5834C9C219B4C64568F7240 + +Set 2, vector# 52: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000008000000000000000000 + cipher=ECFE7BAFCBF42C1FEE015488770B3053 + decrypted=00000000000008000000000000000000 + Iterated 100 times=72A8CAF98BD0F762137995CC665B8EDB + Iterated 1000 times=AF51E7E1EBF0E4F5F34008CE9181B3C7 + +Set 2, vector# 53: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000004000000000000000000 + cipher=E552649F8D8EC4A1E1CD6DF50B6E6777 + decrypted=00000000000004000000000000000000 + Iterated 100 times=5B30343168A53C05EC89314294499C9B + Iterated 1000 times=18481F72D998BCAF9A88F5D3010680AE + +Set 2, vector# 54: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000002000000000000000000 + cipher=521C0629DE93B9119CDB1DDC5809DDEA + decrypted=00000000000002000000000000000000 + Iterated 100 times=B9E976394E95FB45EB85467D5A4648E2 + Iterated 1000 times=6815C638BEF42D1091A691666B0E86DC + +Set 2, vector# 55: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000001000000000000000000 + cipher=CB38A62A0BAB1784156BA038CBA99BF6 + decrypted=00000000000001000000000000000000 + Iterated 100 times=36722BDFB9EA56A2ACD28071E4794A29 + Iterated 1000 times=92EA4010FA745D0EBD8E7954DD216A1F + +Set 2, vector# 56: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000800000000000000000 + cipher=76CCEE8AAACD394DE1EEF3DDA10CB54B + decrypted=00000000000000800000000000000000 + Iterated 100 times=5CFB0A8F6B299839A84AF9607F2344F5 + Iterated 1000 times=AD674F016F505DC977CE62BE93CDFD40 + +Set 2, vector# 57: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000400000000000000000 + cipher=6AFF910FA1D5673140E2DB59B8416049 + decrypted=00000000000000400000000000000000 + Iterated 100 times=C61A1437C33B5E6B0D8FCF76FD200156 + Iterated 1000 times=53260235324AB8C8FF950B32EECF5AF9 + +Set 2, vector# 58: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000200000000000000000 + cipher=064A12C0EF73FB386801BF4F35F3120D + decrypted=00000000000000200000000000000000 + Iterated 100 times=ED2AA89E280DCE866F29FF2DE323F7E0 + Iterated 1000 times=A7A17D773983CBF5A5E7E94DE66C656B + +Set 2, vector# 59: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000100000000000000000 + cipher=2240E374929D5B1BB8FF0FFDDDF640EC + decrypted=00000000000000100000000000000000 + Iterated 100 times=50D33648499CBF71B17135831D0E131F + Iterated 1000 times=70475E6C308E8D57A4DAE973855EBEED + +Set 2, vector# 60: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000080000000000000000 + cipher=D4BA15C904C7692185DE85C02052E180 + decrypted=00000000000000080000000000000000 + Iterated 100 times=A2441A448F3677B8F77CEC38BD06F717 + Iterated 1000 times=B7B2E4E2E3D2DB2B17F569C39614A3E9 + +Set 2, vector# 61: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000040000000000000000 + cipher=1714A315AB0166728A44CD91D4AE9018 + decrypted=00000000000000040000000000000000 + Iterated 100 times=BFCE540F63552514925525962940BF3E + Iterated 1000 times=BB82CB33107FC61B536F90DCFDB73BF9 + +Set 2, vector# 62: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000020000000000000000 + cipher=6C970BDD9F0E222722EA31A1D12DD0AD + decrypted=00000000000000020000000000000000 + Iterated 100 times=923CBAC8F80C4C9F0F453216E835EB76 + Iterated 1000 times=BC3C462DFAC8ECDC01AB61EB5099CC3A + +Set 2, vector# 63: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000010000000000000000 + cipher=F5956EDF02BD36A401BBB6CE77C3D3FB + decrypted=00000000000000010000000000000000 + Iterated 100 times=7E8E449466FA12E4AC7D12278DFB2EAF + Iterated 1000 times=503C19D7ADC1D5EAF08460AEB52D6EDD + +Set 2, vector# 64: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000008000000000000000 + cipher=0CA11F122CCD7C259DC597EED3DF9BC4 + decrypted=00000000000000008000000000000000 + Iterated 100 times=2A5AAE4FAB7D2BA5B45DF377ECEE0CDC + Iterated 1000 times=EC4CFA349B49BD960C46CFF7BAA3DD3E + +Set 2, vector# 65: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000004000000000000000 + cipher=50109AB4912AD2560B206F331B62EB6C + decrypted=00000000000000004000000000000000 + Iterated 100 times=5EF93EA41884CBC3BD7C5CB16A611A83 + Iterated 1000 times=A822E5FF5ECDD97E233A80D32DDC9B2A + +Set 2, vector# 66: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000002000000000000000 + cipher=DBE7C91A4175614889A2D4BEFD64845E + decrypted=00000000000000002000000000000000 + Iterated 100 times=A3C51FBE13B6E1E10D054078EF67E69C + Iterated 1000 times=C14B49EF6C95A914F1AC5165F7F91641 + +Set 2, vector# 67: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000001000000000000000 + cipher=0D3322853A571A6B46B79C0228E0DD25 + decrypted=00000000000000001000000000000000 + Iterated 100 times=21FE360C7807E8EEAD7B714C8C952E0E + Iterated 1000 times=33C5E3B0DF88E1D343C816CDEB44DD80 + +Set 2, vector# 68: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000800000000000000 + cipher=96E4EE0BB9A11C6FB8522F285BADDEB6 + decrypted=00000000000000000800000000000000 + Iterated 100 times=5F7E2F6C7E04D1A0A3483A3D1F936C7F + Iterated 1000 times=2A5046C8EE69CDCCC118EEB2E55EF570 + +Set 2, vector# 69: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000400000000000000 + cipher=96705C52D2CFCE82E630C93477C79C49 + decrypted=00000000000000000400000000000000 + Iterated 100 times=AAE4CF5AC2AFADBDE83804DD7662D840 + Iterated 1000 times=AF7520A947615191F52B31A82F1A0487 + +Set 2, vector# 70: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000200000000000000 + cipher=C50130AED6A126149D71F3888C83C232 + decrypted=00000000000000000200000000000000 + Iterated 100 times=FE519F6356A317565E727B27CED575A2 + Iterated 1000 times=08C3B2D5318869D849B0C2BEA91F1E36 + +Set 2, vector# 71: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000100000000000000 + cipher=4816EFE3DEB380566EBA0C17BF582090 + decrypted=00000000000000000100000000000000 + Iterated 100 times=8DC9DE496F816035FDA3819741B0F41F + Iterated 1000 times=D45F4A7828FBF4A3816723E2BF4F340F + +Set 2, vector# 72: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000080000000000000 + cipher=0390857B4C8C98E4CF7A2B6F3394C507 + decrypted=00000000000000000080000000000000 + Iterated 100 times=6FEF08A70BBB616526982667B114BBD5 + Iterated 1000 times=4C111656BD4063A6D7C355734C9047CE + +Set 2, vector# 73: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000040000000000000 + cipher=422E73A02025EBE8B8B5D6E0FA24FCB2 + decrypted=00000000000000000040000000000000 + Iterated 100 times=FE4A952949251DDAA4C6DEE4610FAB6F + Iterated 1000 times=312D6326685FFC88755F4D352722EE0C + +Set 2, vector# 74: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000020000000000000 + cipher=3271AA7F4BF1D7C38050A43076D4FF76 + decrypted=00000000000000000020000000000000 + Iterated 100 times=C2EFD4DD9BA81525C5EFFAA9B76A7F7B + Iterated 1000 times=05D1A84D6C6FDC81A18C5EE203743062 + +Set 2, vector# 75: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000010000000000000 + cipher=D2074946F0D37B8975607BFC2E70234C + decrypted=00000000000000000010000000000000 + Iterated 100 times=E65DD8869653FD84AF35F01E43F97828 + Iterated 1000 times=58F05F1D4143390AEF080C5637FED6EA + +Set 2, vector# 76: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000008000000000000 + cipher=1A509194C1270AB92E5A42D3A9F8D98B + decrypted=00000000000000000008000000000000 + Iterated 100 times=B3DAB8581097931248D619F3A575BE09 + Iterated 1000 times=2C3A5FA319C3996F624CBF71231CD4C0 + +Set 2, vector# 77: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000004000000000000 + cipher=512438946360CCC4A5C6D73F6EED7130 + decrypted=00000000000000000004000000000000 + Iterated 100 times=846ED8BF9FFFA4C2FA05806A8D381934 + Iterated 1000 times=55F2AF8E39438FB2EB1D8317685153C7 + +Set 2, vector# 78: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000002000000000000 + cipher=98CFCDEC46EBEA1A286B3004F2746A0D + decrypted=00000000000000000002000000000000 + Iterated 100 times=12EC0701400D1DA7A30170FB9D5262D2 + Iterated 1000 times=7C5AE1142F8ABDE9043BA0ED94BA7A58 + +Set 2, vector# 79: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000001000000000000 + cipher=A1CF369949677A3AF3D58E3EABF2741B + decrypted=00000000000000000001000000000000 + Iterated 100 times=A3D2BBFF6CA95C8762FE79500835DB08 + Iterated 1000 times=FBD06CCEB4883BADEF796F5231FF9973 + +Set 2, vector# 80: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000800000000000 + cipher=D84C2E1A0E4A52166FA8FF6889D1E5E2 + decrypted=00000000000000000000800000000000 + Iterated 100 times=820B5B4D82161D6D93E3D12CEEA51598 + Iterated 1000 times=C7C6E5C0BAE5D3AADD5EA3984AD10B7F + +Set 2, vector# 81: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000400000000000 + cipher=4AD91CCEEF60119B5078FD162D2735DE + decrypted=00000000000000000000400000000000 + Iterated 100 times=99DDBCADC5368FB1C844B7D62D5DBE80 + Iterated 1000 times=141866FC576BC9B8FAC2983517084D9D + +Set 2, vector# 82: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000200000000000 + cipher=2860793D818E97AAFF1D339D7702438D + decrypted=00000000000000000000200000000000 + Iterated 100 times=9C9346C127D5400690494D384BD5239D + Iterated 1000 times=1B4CEFAFD15E4A773032613524142399 + +Set 2, vector# 83: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000100000000000 + cipher=6F9068BE73364AE250D89D78A6C9CE6F + decrypted=00000000000000000000100000000000 + Iterated 100 times=50C1CA185257342ADCE7A13553DD55B6 + Iterated 1000 times=B95694EDDEC6F5760BCC42B58CB113C3 + +Set 2, vector# 84: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000080000000000 + cipher=024FC3FEF4883FEB1A8DD005305FECCE + decrypted=00000000000000000000080000000000 + Iterated 100 times=D217C22645998A6B4ACF0E4D92D5D6C3 + Iterated 1000 times=C94DB0A7967ECA2519DED361441421DD + +Set 2, vector# 85: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000040000000000 + cipher=08A61FE0816D75EA15EB3C9FB9CCDED6 + decrypted=00000000000000000000040000000000 + Iterated 100 times=5084D0FBE607291343E9C2AFB05BC0FA + Iterated 1000 times=EF4BE63818A4783932883E01E05E99FF + +Set 2, vector# 86: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000020000000000 + cipher=449C86DFA13F260175CE39797686FFA4 + decrypted=00000000000000000000020000000000 + Iterated 100 times=1619403DFF7F95BB0FBAE7A782CE2126 + Iterated 1000 times=3AF1A66DFE6ECC7DAEFF65E18964CD58 + +Set 2, vector# 87: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000010000000000 + cipher=4FFFFC29A59858E1133F2BFB1A8A4817 + decrypted=00000000000000000000010000000000 + Iterated 100 times=59C814204F635378D529F74663E591A9 + Iterated 1000 times=BDE3A9387CC678DA041F932D5A4DEF23 + +Set 2, vector# 88: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000008000000000 + cipher=19425D1F6480B25096561295697DC2B7 + decrypted=00000000000000000000008000000000 + Iterated 100 times=72E54249E835A31A73E0BEA42422CE5D + Iterated 1000 times=674FE8C48D4EDE1927EB5B185B6EE6A3 + +Set 2, vector# 89: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000004000000000 + cipher=31974727ECDD2C77C3A428FC3A8CB3FC + decrypted=00000000000000000000004000000000 + Iterated 100 times=81698B1C2E31DB6190D4D2D0F2799415 + Iterated 1000 times=852304522AD886701FD08230A12939D2 + +Set 2, vector# 90: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000002000000000 + cipher=A57CD704B3C95E744D08DF443458F2F5 + decrypted=00000000000000000000002000000000 + Iterated 100 times=0D1CCCA45905AB29781F73CA00F6FC15 + Iterated 1000 times=0B8FD9F8789A06DC1ACEAE2936A07835 + +Set 2, vector# 91: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000001000000000 + cipher=486D8C193DB1ED73ACB17990442FC40B + decrypted=00000000000000000000001000000000 + Iterated 100 times=8FA260FA3FF1B0F508DAF7D76EF3C038 + Iterated 1000 times=11043CC06208162EF3762F085FF3D53C + +Set 2, vector# 92: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000800000000 + cipher=5E4DBF4E83AB3BC055B9FCC7A6B3A763 + decrypted=00000000000000000000000800000000 + Iterated 100 times=C8C390C101A7D20AD9EBACCA3C049A86 + Iterated 1000 times=DAE97D25AF76522102ADBFCBB820A361 + +Set 2, vector# 93: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000400000000 + cipher=ACF2E0A693FBBCBA4D41B861E0D89E37 + decrypted=00000000000000000000000400000000 + Iterated 100 times=3725CC5B0D78CFBB5D606037EAE104C3 + Iterated 1000 times=1EE9DC703D621FA4956B278C6DE7A42E + +Set 2, vector# 94: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000200000000 + cipher=32A7CB2AE066A51D2B78FC4B4CFCB608 + decrypted=00000000000000000000000200000000 + Iterated 100 times=9677A1BB335F093141C0711BE4118EB0 + Iterated 1000 times=E20AF4286633150528C03DE8A231AF41 + +Set 2, vector# 95: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000100000000 + cipher=677D494DBB73CAF55C1990158DA12F14 + decrypted=00000000000000000000000100000000 + Iterated 100 times=B5389AE5B3817514F9E44FD37452D3DB + Iterated 1000 times=BA4D338E22E65EDBB259CC41E3A2DCC7 + +Set 2, vector# 96: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000080000000 + cipher=082A0D2367512ADF0D75A151BFBE0A17 + decrypted=00000000000000000000000080000000 + Iterated 100 times=425916302E086044EB39A238A23B6FFE + Iterated 1000 times=CA84D00F82D1DF8AD6E2DCB49DFFBA40 + +Set 2, vector# 97: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000040000000 + cipher=5E5BB7337923C482CE8CBA249E6A8C7D + decrypted=00000000000000000000000040000000 + Iterated 100 times=D876A5013454F0A98D83F382483EAFC2 + Iterated 1000 times=9E00DD26357BD528A2B07F0DCB44F2A7 + +Set 2, vector# 98: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000020000000 + cipher=D3001BA7C7026EE3E5003179530AFCFC + decrypted=00000000000000000000000020000000 + Iterated 100 times=0770CD37158B602C94F16F8C328E400F + Iterated 1000 times=EE942494DAFD4980617513420AC179A4 + +Set 2, vector# 99: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000010000000 + cipher=46EC44F8931E629FE8FD8961312EDDE1 + decrypted=00000000000000000000000010000000 + Iterated 100 times=23C34655AA0462CA5B7BE23E40C32800 + Iterated 1000 times=F649FD5DC69029D8FA477A1213FDA364 + +Set 2, vector#100: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000008000000 + cipher=C5F8ECD79C7B30E81D17E32079969310 + decrypted=00000000000000000000000008000000 + Iterated 100 times=B677A2C84A6DED3FF84E984852C2FA1B + Iterated 1000 times=5A89F4E983A5054302E6EA7E4BD9F90A + +Set 2, vector#101: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000004000000 + cipher=5B8AD6919E24CAEBCC55401AEE0C9802 + decrypted=00000000000000000000000004000000 + Iterated 100 times=5221191733D02EC7A8D5FDDC8CFAB0CB + Iterated 1000 times=793A7FAC9F4A3C1D35D8E52647B17B67 + +Set 2, vector#102: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000002000000 + cipher=C2302B7E701B5CC7F8B29E3516DBBFA6 + decrypted=00000000000000000000000002000000 + Iterated 100 times=E318DD7C4C40F5B21936349CEC5EA6CD + Iterated 1000 times=72B1D99D9101E2FEC2C67BEC83896D2E + +Set 2, vector#103: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000001000000 + cipher=A1D04D6A76F9F7A94D49FAA64A87F244 + decrypted=00000000000000000000000001000000 + Iterated 100 times=9D26E1D4BC3020E4FC69D4549172E83A + Iterated 1000 times=3DC0707360FE17B8C28832DA6CE23F3B + +Set 2, vector#104: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000800000 + cipher=7FB6F92D35B5CB6C631600EDB9E860BA + decrypted=00000000000000000000000000800000 + Iterated 100 times=BCCAF94B389ADE5A0E5E65605D862807 + Iterated 1000 times=7553AED056C44EB422A23C065817A1FA + +Set 2, vector#105: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000400000 + cipher=B2EF7078BCFACE07AEEC3F9B48830EB3 + decrypted=00000000000000000000000000400000 + Iterated 100 times=CAD4557B716C0E49B3D7AEBDCCDC0A28 + Iterated 1000 times=98E52DADE725001F61C6638035FF1E63 + +Set 2, vector#106: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000200000 + cipher=F475A7493D24C7036E53390374C378B3 + decrypted=00000000000000000000000000200000 + Iterated 100 times=B735908520743705B40B59714C24CBB7 + Iterated 1000 times=ACE04301DCC0ED45C1429CA46E3587F9 + +Set 2, vector#107: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000100000 + cipher=B36802AC987377A37BD8EADC97C57D60 + decrypted=00000000000000000000000000100000 + Iterated 100 times=80622051E30702D512985874F0208209 + Iterated 1000 times=663EF5461F295D8531988C444A45A1A8 + +Set 2, vector#108: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000080000 + cipher=ADDCD3D19689C4DDC738CE5F69DC9505 + decrypted=00000000000000000000000000080000 + Iterated 100 times=7C4DA92D9DDAB1EF0DD0574E9B16B1A4 + Iterated 1000 times=DFA1D180515D5FFF5058C12DFE085EC2 + +Set 2, vector#109: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000040000 + cipher=0DAF8CA22884915403C0F0BB1F4BD74F + decrypted=00000000000000000000000000040000 + Iterated 100 times=4A7B9D8E8086E1A4DAEF01F1E4256BAD + Iterated 1000 times=6CC9228EE782BE9D308A4D326F155897 + +Set 2, vector#110: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000020000 + cipher=4AF36BAE2660503B3248E4685059FD05 + decrypted=00000000000000000000000000020000 + Iterated 100 times=E1C5D93EBEEBEFE06BD890D97DFAD204 + Iterated 1000 times=8E50B38CD7CDB6C543B16AFBC5A08479 + +Set 2, vector#111: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000010000 + cipher=7D5631814DD8E917D97A0D514C743971 + decrypted=00000000000000000000000000010000 + Iterated 100 times=8375099F79F8C24C7CE1E26DD699922F + Iterated 1000 times=EB47452481A2F3A128E1483A3B0B6700 + +Set 2, vector#112: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000008000 + cipher=BC3352500FC0CBB9DB5B5F6B491C1BE8 + decrypted=00000000000000000000000000008000 + Iterated 100 times=55565ACC40AC13DEAD511D33F7935AB6 + Iterated 1000 times=83BB446A92B216070591A1F059FA867D + +Set 2, vector#113: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000004000 + cipher=6A4A30BA87E87AF65C90AEB7AFEDC76B + decrypted=00000000000000000000000000004000 + Iterated 100 times=5606B1A74D1570B5750DE9A686078604 + Iterated 1000 times=6A9845749465CB6AC81294E2C7E9DA21 + +Set 2, vector#114: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000002000 + cipher=77E6125897668AC8E73E8C79A6FF8336 + decrypted=00000000000000000000000000002000 + Iterated 100 times=EFBBA1266506EA4CA7B1C0CAE2A4F9E7 + Iterated 1000 times=BC1196502975379046C2A822ED2DECE5 + +Set 2, vector#115: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000001000 + cipher=3FA9D39104EBB323C7AAAA248960DD1E + decrypted=00000000000000000000000000001000 + Iterated 100 times=066FE6968F7D27867EB9DFC6A1B5FB2F + Iterated 1000 times=89548EC35CCC0A850D10F1AE8045F8FD + +Set 2, vector#116: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000800 + cipher=FAD75AD76AB10ADC49036B250E229D39 + decrypted=00000000000000000000000000000800 + Iterated 100 times=607518BEB568A19408021F2A76AA8AF2 + Iterated 1000 times=A958F9083DBF6E6791F82333EF322879 + +Set 2, vector#117: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000400 + cipher=2FACAA5FE35B228A16AC74088D702EC4 + decrypted=00000000000000000000000000000400 + Iterated 100 times=5FD8BC0CFA3D8591A4A12C5E08881714 + Iterated 1000 times=3DE7ACC820CE822B0BB433DDF21E6D3C + +Set 2, vector#118: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000200 + cipher=88B6CBCFDFEF8AD91720A1BB69A1F33E + decrypted=00000000000000000000000000000200 + Iterated 100 times=1B15434C990C923E8D43B1220C9BA90E + Iterated 1000 times=29EC22C43623C8784A3FC149F246EAD0 + +Set 2, vector#119: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000100 + cipher=C7E9D250998632D444356242EF04058D + decrypted=00000000000000000000000000000100 + Iterated 100 times=8FB0A5D4EF769657C827EDFD0EFDF31E + Iterated 1000 times=754E0C526495C03B14C20AA55F40D636 + +Set 2, vector#120: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000080 + cipher=B14DAD8D3D9153F46C0D3A1AD63C7A05 + decrypted=00000000000000000000000000000080 + Iterated 100 times=163EE0CF7063D6C7AA20BDB45738C355 + Iterated 1000 times=4BDB379408C00550DE29269016550634 + +Set 2, vector#121: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000040 + cipher=60ABA678A506608D0845966D29B5F790 + decrypted=00000000000000000000000000000040 + Iterated 100 times=F65F87A6DFEB7F9ED594B896B54EA28C + Iterated 1000 times=A7CCEEAD0780291B177172D062086CB4 + +Set 2, vector#122: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000020 + cipher=482DC43F2388EF25D24144E144BD834E + decrypted=00000000000000000000000000000020 + Iterated 100 times=1C8A2E173F3F4E5149EEB4EC3D699256 + Iterated 1000 times=9C125742331F7115EAF37BFF77B27B76 + +Set 2, vector#123: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000010 + cipher=1490A05A7CEE43BDE98B56E309DC0126 + decrypted=00000000000000000000000000000010 + Iterated 100 times=FEB860D5CBF07BDE470CFFBA3326A64F + Iterated 1000 times=5A30C7613C28DA7F1DED75F231153707 + +Set 2, vector#124: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000008 + cipher=ABFA77CD6E85DA245FB0BDC5E52CFC29 + decrypted=00000000000000000000000000000008 + Iterated 100 times=7BCE1CC734E0506D38664EFE4340AE2A + Iterated 1000 times=ABB2B73790B282378B8590CFB812316E + +Set 2, vector#125: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000004 + cipher=DD4AB1284D4AE17B41E85924470C36F7 + decrypted=00000000000000000000000000000004 + Iterated 100 times=C5B8E32249993E878DE807FABFC557DD + Iterated 1000 times=8B664BC78CA837B267450A16601F83A3 + +Set 2, vector#126: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000002 + cipher=CEA7403D4D606B6E074EC5D3BAF39D18 + decrypted=00000000000000000000000000000002 + Iterated 100 times=A5CB8B354011E3AD955DC2CDC277F4C4 + Iterated 1000 times=C01C39BDD20B052CD4DF0DB21F020034 + +Set 2, vector#127: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000001 + cipher=530F8AFBC74536B9A963B4F1C4CB738B + decrypted=00000000000000000000000000000001 + Iterated 100 times=F91324431CF9B4BBAC23F1F440541705 + Iterated 1000 times=508BB901424B417AA78973FC9FE9C6BE + +Test vectors -- set 3 +===================== + +Set 3, vector# 0: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + plain=00000000000000000000000000000000 + cipher=DC95C078A2408989AD48A21492842087 + decrypted=00000000000000000000000000000000 + Iterated 100 times=39C54B491E45845260021D63DB0CBA59 + Iterated 1000 times=709A586288928E038D0FB13C13BCEADE + +Set 3, vector# 1: + key=01010101010101010101010101010101 + 01010101010101010101010101010101 + plain=01010101010101010101010101010101 + cipher=9CAC94C6B48561F8FFAAA78616BA4892 + decrypted=01010101010101010101010101010101 + Iterated 100 times=1F5C21BC9066BB44B1A09280730BD82A + Iterated 1000 times=1FB07864B4E6E1259A21500231299066 + +Set 3, vector# 2: + key=02020202020202020202020202020202 + 02020202020202020202020202020202 + plain=02020202020202020202020202020202 + cipher=9C3AE9D3321030176CAA39562B008484 + decrypted=02020202020202020202020202020202 + Iterated 100 times=4B22387C44A0A13C5B23484830FCE882 + Iterated 1000 times=5F29CB0DBA5BB597A7BBE6D83148F6F9 + +Set 3, vector# 3: + key=03030303030303030303030303030303 + 03030303030303030303030303030303 + plain=03030303030303030303030303030303 + cipher=0F4DF0605D186C59A8DF3B45BC6820FC + decrypted=03030303030303030303030303030303 + Iterated 100 times=F9F9804E4949D2466CEE7369797105CB + Iterated 1000 times=921C5D16EDED096BBEAD9A19ED65AF00 + +Set 3, vector# 4: + key=04040404040404040404040404040404 + 04040404040404040404040404040404 + plain=04040404040404040404040404040404 + cipher=DA82BF2AF8FAB57DD60809248AFEC022 + decrypted=04040404040404040404040404040404 + Iterated 100 times=16E0F30CF7EC653958E444E37F786B33 + Iterated 1000 times=CE41EB82F83812DC8D1E01BC00AB38BA + +Set 3, vector# 5: + key=05050505050505050505050505050505 + 05050505050505050505050505050505 + plain=05050505050505050505050505050505 + cipher=F587A94FEC12BC7AC878536A627EAB88 + decrypted=05050505050505050505050505050505 + Iterated 100 times=C04E7BBB1D2157978D32C43C652718F8 + Iterated 1000 times=63F6E3775AFDE885D7EE97CA9D3211AB + +Set 3, vector# 6: + key=06060606060606060606060606060606 + 06060606060606060606060606060606 + plain=06060606060606060606060606060606 + cipher=9A6EEC058020261944FF9A60BA5C292A + decrypted=06060606060606060606060606060606 + Iterated 100 times=8002843B2C712E90E8571E30B28DA686 + Iterated 1000 times=912216187189DC471FFFFDE449F4744B + +Set 3, vector# 7: + key=07070707070707070707070707070707 + 07070707070707070707070707070707 + plain=07070707070707070707070707070707 + cipher=A870E25DF9D5331BB15E94EB9588BC4F + decrypted=07070707070707070707070707070707 + Iterated 100 times=3E80E194C5061BBC082BF1E53FD1C772 + Iterated 1000 times=DF7ADC40930408BCE046673F09427403 + +Set 3, vector# 8: + key=08080808080808080808080808080808 + 08080808080808080808080808080808 + plain=08080808080808080808080808080808 + cipher=930D19FFCE5F5F54F088BAD39F513D5E + decrypted=08080808080808080808080808080808 + Iterated 100 times=3C3B8D43E6C6F755A6DE3428777184E3 + Iterated 1000 times=008614B9B2DA975C77505884A0E777E1 + +Set 3, vector# 9: + key=09090909090909090909090909090909 + 09090909090909090909090909090909 + plain=09090909090909090909090909090909 + cipher=67D932C6CEA19AEE401FDBC9A2B7F8EC + decrypted=09090909090909090909090909090909 + Iterated 100 times=2C68ACB5D1E970A9E5C56985718522A9 + Iterated 1000 times=0BF6E3DC40CA39A05D2C24D0649982E4 + +Set 3, vector# 10: + key=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + 0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + plain=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + cipher=3E66200599F5361EE09C64C790C0CC0D + decrypted=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + Iterated 100 times=761FFC6D34EB605F781A51334615A613 + Iterated 1000 times=D9D19FE0DE7B5169BC8BDB388CE7D0FD + +Set 3, vector# 11: + key=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + 0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + plain=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + cipher=D3802EC973E6935AA32D7B88F56A2119 + decrypted=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + Iterated 100 times=B64C2C1943691B68EE05EF6E44B62AE3 + Iterated 1000 times=0992AF38924D4C031A3502BC815FFEFF + +Set 3, vector# 12: + key=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + 0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + plain=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + cipher=6A7AEC9101536F4D87793A7338EA6315 + decrypted=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + Iterated 100 times=A790458C7EBA5282E79EA39E9AE03F09 + Iterated 1000 times=D412AA85E50CDD44A0AA8A919DB079FB + +Set 3, vector# 13: + key=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + 0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + plain=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + cipher=740DCF7C01C180D3411FAFE704BF15A4 + decrypted=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + Iterated 100 times=9079A2E49F8ED8D47DA0DFA6ADC31F57 + Iterated 1000 times=F39D9C7DFFD0AEBA12130FF2231529C5 + +Set 3, vector# 14: + key=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + 0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + plain=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + cipher=BE3B58D21615678774131BAD6788B6BE + decrypted=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + Iterated 100 times=0E0EA0A6CD7B98DAE35E6D158F3A6804 + Iterated 1000 times=4BC97E3992BD879740AF690779EF03E3 + +Set 3, vector# 15: + key=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + 0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + plain=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + cipher=FB08769D7FEE4E974B974B28493AC4FD + decrypted=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + Iterated 100 times=F5FA8F60E49B90C488AE384ACB6BAB43 + Iterated 1000 times=852636C984BC1180ECED3A81E2BD16AD + +Set 3, vector# 16: + key=10101010101010101010101010101010 + 10101010101010101010101010101010 + plain=10101010101010101010101010101010 + cipher=99733457FE8BDE86AA19525349F6EB48 + decrypted=10101010101010101010101010101010 + Iterated 100 times=4A0248D0375E53A330AFEFAA981D59BB + Iterated 1000 times=47B5922C355084CC6CC0F95594D740F5 + +Set 3, vector# 17: + key=11111111111111111111111111111111 + 11111111111111111111111111111111 + plain=11111111111111111111111111111111 + cipher=863AE91FD4CF51132DC3E4EDF09DBC6E + decrypted=11111111111111111111111111111111 + Iterated 100 times=CBA3C18CEDC778277A0E4C9CA6715CCD + Iterated 1000 times=90F783E3BC8F8C401097332BA60E528B + +Set 3, vector# 18: + key=12121212121212121212121212121212 + 12121212121212121212121212121212 + plain=12121212121212121212121212121212 + cipher=198CC823C6E8649AAA5CD43CEB1FDB02 + decrypted=12121212121212121212121212121212 + Iterated 100 times=9B3094ED57A286A1A9FAD156E40D41CA + Iterated 1000 times=C33D11DBA5419E88FBE3030C7F3B3D50 + +Set 3, vector# 19: + key=13131313131313131313131313131313 + 13131313131313131313131313131313 + plain=13131313131313131313131313131313 + cipher=DA21144AC4D3A5CDC6B718868720EE67 + decrypted=13131313131313131313131313131313 + Iterated 100 times=596488552A3D569EDB806B257BE7C055 + Iterated 1000 times=A08B47A90F019761DBC369620C41534B + +Set 3, vector# 20: + key=14141414141414141414141414141414 + 14141414141414141414141414141414 + plain=14141414141414141414141414141414 + cipher=FDD71CC63815E1297C4D24C3B8F5DFE1 + decrypted=14141414141414141414141414141414 + Iterated 100 times=C5FC61D2BA2A7AD79C84B841AD17522D + Iterated 1000 times=C7F6BA31378411248FCF8D6E0C5B051C + +Set 3, vector# 21: + key=15151515151515151515151515151515 + 15151515151515151515151515151515 + plain=15151515151515151515151515151515 + cipher=E940249C1AEC914BA768B485FA2BF298 + decrypted=15151515151515151515151515151515 + Iterated 100 times=A837376EB6825D8A62BB772F5F353888 + Iterated 1000 times=5D4D840B81A155CE1BF8530AE7FC4731 + +Set 3, vector# 22: + key=16161616161616161616161616161616 + 16161616161616161616161616161616 + plain=16161616161616161616161616161616 + cipher=2D778757DBC6387F9B82A4B4F8EFBB3C + decrypted=16161616161616161616161616161616 + Iterated 100 times=979E7C74D511D58C39D44F5BF05A7775 + Iterated 1000 times=C378DDF0FDF5EE2A4D7C1300663F5966 + +Set 3, vector# 23: + key=17171717171717171717171717171717 + 17171717171717171717171717171717 + plain=17171717171717171717171717171717 + cipher=69304C8EC7B809C58D4A60DF2B3EA668 + decrypted=17171717171717171717171717171717 + Iterated 100 times=14427F2E044F654F04BECAD20425AAE3 + Iterated 1000 times=5C64E49C2FF4E52189C6468D136ABD7E + +Set 3, vector# 24: + key=18181818181818181818181818181818 + 18181818181818181818181818181818 + plain=18181818181818181818181818181818 + cipher=AE7B0708EEC353EA2CCA2DECD5B0863E + decrypted=18181818181818181818181818181818 + Iterated 100 times=D428A866509CBB0C2B0FBEF28924A30D + Iterated 1000 times=975013E331E689B6B210B7FE1117049D + +Set 3, vector# 25: + key=19191919191919191919191919191919 + 19191919191919191919191919191919 + plain=19191919191919191919191919191919 + cipher=D1FC31C14CB8F6094B009C80BC1A2FCF + decrypted=19191919191919191919191919191919 + Iterated 100 times=D24176DE2652CFD44231504DD4E56341 + Iterated 1000 times=6E454640AFA1D711E355EE481AEA00A9 + +Set 3, vector# 26: + key=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + 1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + plain=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + cipher=A7A25C1C6D477B8ED6C61150E5317CCE + decrypted=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + Iterated 100 times=C4067539286A3BEEAA26009BEAC1473A + Iterated 1000 times=F73530699B7F0216105CED2BE128A398 + +Set 3, vector# 27: + key=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + 1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + plain=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + cipher=04B4948396EEADE2F265026081F9C0DD + decrypted=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + Iterated 100 times=D693ABE6CDADC2A8477F4472596FED9F + Iterated 1000 times=8F751EE7CD7644954F51A9DA00672A3B + +Set 3, vector# 28: + key=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + 1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + plain=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + cipher=506E8961FBC06005749B194A41D2A2B0 + decrypted=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + Iterated 100 times=C518D88D8559A11A5E9B253BAE933517 + Iterated 1000 times=A7DDB096EAE279C8BC545574730BBBB6 + +Set 3, vector# 29: + key=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + 1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + plain=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + cipher=137201B0D109077FD81C506038DEB9BC + decrypted=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + Iterated 100 times=5A64371B205613D1A658FF66C6FAF042 + Iterated 1000 times=583A9F17DD9D6047A1FE4D5F02051678 + +Set 3, vector# 30: + key=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + 1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + plain=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + cipher=D83B61D433F3AD78D34871CE4FF57C9E + decrypted=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + Iterated 100 times=86287325424C5A0A681BC74D6252126E + Iterated 1000 times=8249F301D789619C44A129D7CEFE7982 + +Set 3, vector# 31: + key=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + 1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + plain=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + cipher=7D411FBD08F8D7AC728B5337272F83D2 + decrypted=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + Iterated 100 times=8317A178270F6791D967F9EE036E2C6B + Iterated 1000 times=E4552BD6E71D126B6247508503027FD7 + +Set 3, vector# 32: + key=20202020202020202020202020202020 + 20202020202020202020202020202020 + plain=20202020202020202020202020202020 + cipher=6BBD76BFCA850A3792D5BED2D2C4FB4F + decrypted=20202020202020202020202020202020 + Iterated 100 times=EDDD833BCD8384F2F6759D62B22BCCE2 + Iterated 1000 times=F405EC9E4B90835C7971D9DA0639E163 + +Set 3, vector# 33: + key=21212121212121212121212121212121 + 21212121212121212121212121212121 + plain=21212121212121212121212121212121 + cipher=0B35F9485F9D35B5BCDD9D9E5F87BC2A + decrypted=21212121212121212121212121212121 + Iterated 100 times=5E2B83BF753C14CABE4915C9BB03FDA9 + Iterated 1000 times=060C5A3B62EAB2E92019F278CAC609D6 + +Set 3, vector# 34: + key=22222222222222222222222222222222 + 22222222222222222222222222222222 + plain=22222222222222222222222222222222 + cipher=3A2CDE1B67B4FA860254C6CCB95BDC12 + decrypted=22222222222222222222222222222222 + Iterated 100 times=AC3676197EFBC55E59F52CAAB678AE0C + Iterated 1000 times=2F9293494F1A11225E2346EC73175FFE + +Set 3, vector# 35: + key=23232323232323232323232323232323 + 23232323232323232323232323232323 + plain=23232323232323232323232323232323 + cipher=AF572635C42081540E7CDD93E14E7AC0 + decrypted=23232323232323232323232323232323 + Iterated 100 times=6FEB60C66AE3D1C738462051D57429EA + Iterated 1000 times=E4B356BB890074AEE9BEE54397A7D219 + +Set 3, vector# 36: + key=24242424242424242424242424242424 + 24242424242424242424242424242424 + plain=24242424242424242424242424242424 + cipher=02AE4E9C51FC2FF7895C49230E0689E6 + decrypted=24242424242424242424242424242424 + Iterated 100 times=EF4D7683BFF97D9FF7DD36575E40B2EF + Iterated 1000 times=2DDDA280CEB5E9CA6319BA955E329AE1 + +Set 3, vector# 37: + key=25252525252525252525252525252525 + 25252525252525252525252525252525 + plain=25252525252525252525252525252525 + cipher=6A18B35DCE85680427D1C4F20F299F02 + decrypted=25252525252525252525252525252525 + Iterated 100 times=35DFA1EBD6552E557DAE57B3FCD85388 + Iterated 1000 times=13F13D52ACF84EE26AC766B6A6B36078 + +Set 3, vector# 38: + key=26262626262626262626262626262626 + 26262626262626262626262626262626 + plain=26262626262626262626262626262626 + cipher=F1C0F52ECA9796A791A5DAEAAD26FFF9 + decrypted=26262626262626262626262626262626 + Iterated 100 times=15CFE26821D37A741CE4E9E7E2C530DB + Iterated 1000 times=C696D912E7A5F6EBD939728BE018C787 + +Set 3, vector# 39: + key=27272727272727272727272727272727 + 27272727272727272727272727272727 + plain=27272727272727272727272727272727 + cipher=B2290CA500BD715C6748ACCF13DDEBD5 + decrypted=27272727272727272727272727272727 + Iterated 100 times=EC9B56CAA644DA428B542960309B3F60 + Iterated 1000 times=EC658078A62D3D73E49D488C4F9510F9 + +Set 3, vector# 40: + key=28282828282828282828282828282828 + 28282828282828282828282828282828 + plain=28282828282828282828282828282828 + cipher=996FF330FC7B69D90199AA290EF5D2D4 + decrypted=28282828282828282828282828282828 + Iterated 100 times=C69D879BA75F46F96468BC7FF0BD5EA5 + Iterated 1000 times=1D660BFE1AB01C2C9D21F512A83FB405 + +Set 3, vector# 41: + key=29292929292929292929292929292929 + 29292929292929292929292929292929 + plain=29292929292929292929292929292929 + cipher=B590C3860A7E5EF924B880C51839207F + decrypted=29292929292929292929292929292929 + Iterated 100 times=3B7D82A2AA598D113DFFE275CCAEA8B3 + Iterated 1000 times=FE554080E700438788BDDAC45C5AE03F + +Set 3, vector# 42: + key=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + 2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + plain=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + cipher=0E6E91A345786B963461003CFEFE87A7 + decrypted=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + Iterated 100 times=987EBAEB35F8890D83B5B9BC28878AF3 + Iterated 1000 times=87170270193D6E5DE08A383E91C99B83 + +Set 3, vector# 43: + key=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + 2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + plain=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + cipher=95ECF7AAEC5E6A646C84CBC15C556714 + decrypted=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + Iterated 100 times=CDA4BEEB81CE08867A1C7F42486A35B5 + Iterated 1000 times=0B3349E5FE6B0A026D95562C84301039 + +Set 3, vector# 44: + key=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + 2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + plain=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + cipher=1D008215D8E068663B0DCEDEA8B99BA5 + decrypted=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + Iterated 100 times=F554F5B519B20F3B31165B161AD5CE33 + Iterated 1000 times=CA98E183A634DA01D68A31349CD6ECC8 + +Set 3, vector# 45: + key=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + 2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + plain=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + cipher=E2F99B47E272D2AA921B669B3F7B607B + decrypted=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + Iterated 100 times=88CFF14CF38654A14E4E22304310BD28 + Iterated 1000 times=A7054C157C87B030904D1F4DD5461B14 + +Set 3, vector# 46: + key=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + 2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + plain=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + cipher=D483E3AF91D4B42BCC112E92BE26456D + decrypted=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + Iterated 100 times=39B5C4CC73ACBC0557C88695415258C0 + Iterated 1000 times=B4E8C69C70BD6F3BF30C0F44B3EF5550 + +Set 3, vector# 47: + key=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + 2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + plain=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + cipher=DBAE341748BE248729F03958FA9EE7C6 + decrypted=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + Iterated 100 times=6FBD9875F7C424118B3B635FF226BA58 + Iterated 1000 times=C435F0CF2D8D768012C80D79D7FAF552 + +Set 3, vector# 48: + key=30303030303030303030303030303030 + 30303030303030303030303030303030 + plain=30303030303030303030303030303030 + cipher=B0117FDB25C90CBAB4650EABA5F2A844 + decrypted=30303030303030303030303030303030 + Iterated 100 times=8BC489C36C43915137FF35672D698D69 + Iterated 1000 times=15220362D894E2E439E7E768E5D2E3D3 + +Set 3, vector# 49: + key=31313131313131313131313131313131 + 31313131313131313131313131313131 + plain=31313131313131313131313131313131 + cipher=AB6940D666395010132CA3BBBC69F428 + decrypted=31313131313131313131313131313131 + Iterated 100 times=44B7EBC72E1C1476096410BE334384AF + Iterated 1000 times=528FA45A72DE79B13650E2E792B892EE + +Set 3, vector# 50: + key=32323232323232323232323232323232 + 32323232323232323232323232323232 + plain=32323232323232323232323232323232 + cipher=AF85022EB42831E1BD43CBB5D8651471 + decrypted=32323232323232323232323232323232 + Iterated 100 times=86B1BA07EC230393701952FB86074CEA + Iterated 1000 times=28BDBCF28F12489F64CC2C822F3E33F5 + +Set 3, vector# 51: + key=33333333333333333333333333333333 + 33333333333333333333333333333333 + plain=33333333333333333333333333333333 + cipher=AB1F2B2EBDDD4A5689D4B4B299E7509C + decrypted=33333333333333333333333333333333 + Iterated 100 times=11DEAE134BEFA7DC201E8D05FDA6393E + Iterated 1000 times=A9732078EC03410F3D3E0AD0DB706AC4 + +Set 3, vector# 52: + key=34343434343434343434343434343434 + 34343434343434343434343434343434 + plain=34343434343434343434343434343434 + cipher=0D358F350065751C29EDCC9330AD4F82 + decrypted=34343434343434343434343434343434 + Iterated 100 times=6AFB272E8987B5C9F1F66BE4B48153C0 + Iterated 1000 times=8E572C683CF2D2679187B8F72D08F49E + +Set 3, vector# 53: + key=35353535353535353535353535353535 + 35353535353535353535353535353535 + plain=35353535353535353535353535353535 + cipher=4A8EB3CCA05AD5C85A61E002009AD325 + decrypted=35353535353535353535353535353535 + Iterated 100 times=6319C03240D95333E2629430BF92908D + Iterated 1000 times=AD13197E76E233802488AA79EE7EBFE2 + +Set 3, vector# 54: + key=36363636363636363636363636363636 + 36363636363636363636363636363636 + plain=36363636363636363636363636363636 + cipher=4DF68CFE4A93B2193AAD6FB61BFA34EE + decrypted=36363636363636363636363636363636 + Iterated 100 times=BB01F706CB427AEAE258E6AD8551C962 + Iterated 1000 times=DAC03C6FDB9C1EED2F3EE89FADD96BFA + +Set 3, vector# 55: + key=37373737373737373737373737373737 + 37373737373737373737373737373737 + plain=37373737373737373737373737373737 + cipher=1352ED61E938B8B91065A6C15B99DB62 + decrypted=37373737373737373737373737373737 + Iterated 100 times=2A49C1AA804C0D88F21EE68C2799B5E7 + Iterated 1000 times=7CBD03B058AA22591E4B479D71C8D63C + +Set 3, vector# 56: + key=38383838383838383838383838383838 + 38383838383838383838383838383838 + plain=38383838383838383838383838383838 + cipher=DD27DEDE473B05987CE09356187D0F26 + decrypted=38383838383838383838383838383838 + Iterated 100 times=9847E7D3BAC2D7CAF1A9D81B29F15A53 + Iterated 1000 times=E45124DF5A8CD21991902A74033CE337 + +Set 3, vector# 57: + key=39393939393939393939393939393939 + 39393939393939393939393939393939 + plain=39393939393939393939393939393939 + cipher=78EC90E2685A87FE9B770C9128946CD6 + decrypted=39393939393939393939393939393939 + Iterated 100 times=A6A90E490023F0F219EFDE29723896DF + Iterated 1000 times=2F6A4A73794A05643BFF85BD144D94E8 + +Set 3, vector# 58: + key=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + 3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + plain=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + cipher=322752C205E79D4DB1C10CA6AFE3AC1E + decrypted=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + Iterated 100 times=52DB0CB55032B2181555475788F84C69 + Iterated 1000 times=7A09C40A978B663E5D679D464502E4D9 + +Set 3, vector# 59: + key=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + 3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + plain=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + cipher=57875C85FDF4E82C6E0202F722028290 + decrypted=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + Iterated 100 times=F5B1C5A35CA4F374C3A137E3067C34C0 + Iterated 1000 times=EA83F9DA9B1EB80D4C3CD09BC2ED7467 + +Set 3, vector# 60: + key=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + 3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + plain=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + cipher=0BCB01F3DDE15E4335A1B657895B3B37 + decrypted=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + Iterated 100 times=2383D491A090A53C98499E9E5894A64E + Iterated 1000 times=7475E32189BA30AF6A784A3CAB723B66 + +Set 3, vector# 61: + key=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + 3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + plain=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + cipher=502BEF80053CAD472722EE84D688DE68 + decrypted=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + Iterated 100 times=789807D5FA3EAA3E547A933CF702943F + Iterated 1000 times=A8BD083DF497B23AF9DB5E69CF813309 + +Set 3, vector# 62: + key=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + 3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + plain=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + cipher=F3F00964D533708082E267A15BDEBF32 + decrypted=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + Iterated 100 times=4253894F4A0B3506AA880D3B3E55B016 + Iterated 1000 times=81BF572F9F2951C3AE9B1601BCA1FDA0 + +Set 3, vector# 63: + key=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + 3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + plain=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + cipher=D906150523B10417B44D558B5F11DA6F + decrypted=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + Iterated 100 times=DC0B7462A31A93DF45F5912475750A9D + Iterated 1000 times=C5EA89915223C46AE69E0F72B4EA7F8E + +Set 3, vector# 64: + key=40404040404040404040404040404040 + 40404040404040404040404040404040 + plain=40404040404040404040404040404040 + cipher=240C678B8016D5461CBF44C4725273EB + decrypted=40404040404040404040404040404040 + Iterated 100 times=2BB39CC8B0D18D5642BD16081048B32C + Iterated 1000 times=37001E54F7A04095C699BA745A0D8983 + +Set 3, vector# 65: + key=41414141414141414141414141414141 + 41414141414141414141414141414141 + plain=41414141414141414141414141414141 + cipher=207CA0EE7F5BDB8897CAA7B1F8FF2157 + decrypted=41414141414141414141414141414141 + Iterated 100 times=AEA7F590766ACFB30DEF28967036208E + Iterated 1000 times=662A90FF1CD49874BA9F99E925165EED + +Set 3, vector# 66: + key=42424242424242424242424242424242 + 42424242424242424242424242424242 + plain=42424242424242424242424242424242 + cipher=9A376F00A93BE70FE28FCB9485D4EB60 + decrypted=42424242424242424242424242424242 + Iterated 100 times=582E5517B4B14FA1155BE3B20A14C30B + Iterated 1000 times=B69DB1ABF920ACB71CA8359FF6FEED70 + +Set 3, vector# 67: + key=43434343434343434343434343434343 + 43434343434343434343434343434343 + plain=43434343434343434343434343434343 + cipher=4166A09CDD50ECDD3E100CD1D4875469 + decrypted=43434343434343434343434343434343 + Iterated 100 times=F31544984C394198FA889DCFB1660E2C + Iterated 1000 times=0E2EDCB2DD81B2D59F9E7E7432E34602 + +Set 3, vector# 68: + key=44444444444444444444444444444444 + 44444444444444444444444444444444 + plain=44444444444444444444444444444444 + cipher=39BF7564467626236885461A85B7B238 + decrypted=44444444444444444444444444444444 + Iterated 100 times=6DDAE28C799784DBDBB45A933D24CDD4 + Iterated 1000 times=7E817EA5EC1B82F6CCA4AB5C84D2972C + +Set 3, vector# 69: + key=45454545454545454545454545454545 + 45454545454545454545454545454545 + plain=45454545454545454545454545454545 + cipher=6BB4465B1A3978D99732115B141F5664 + decrypted=45454545454545454545454545454545 + Iterated 100 times=032EBD3AE436416195AA6BA161D17B3F + Iterated 1000 times=E06A1823C2CE6ECBAD17D84CF7E9CB3A + +Set 3, vector# 70: + key=46464646464646464646464646464646 + 46464646464646464646464646464646 + plain=46464646464646464646464646464646 + cipher=EA10BBA5620D292B2839CC1E2588C119 + decrypted=46464646464646464646464646464646 + Iterated 100 times=2DE667D3DDFD66E5575D9488F726C8C8 + Iterated 1000 times=FE050AFCFE3287B0C0A5B4E6E8BAEBD5 + +Set 3, vector# 71: + key=47474747474747474747474747474747 + 47474747474747474747474747474747 + plain=47474747474747474747474747474747 + cipher=15EBE87C04E25D20FDDAE00B4D789546 + decrypted=47474747474747474747474747474747 + Iterated 100 times=7D4B4F251AF805FA2963334FF81CEAA5 + Iterated 1000 times=709A7785EC2188AB5D642942E4971E46 + +Set 3, vector# 72: + key=48484848484848484848484848484848 + 48484848484848484848484848484848 + plain=48484848484848484848484848484848 + cipher=0B63697A1F734E14A87FFD5AA3821522 + decrypted=48484848484848484848484848484848 + Iterated 100 times=ECAF40A62B7E11402E6AC5F0E37B4625 + Iterated 1000 times=18CD9383A27D88520820BCA313363687 + +Set 3, vector# 73: + key=49494949494949494949494949494949 + 49494949494949494949494949494949 + plain=49494949494949494949494949494949 + cipher=6C84F2F13AA81F29346E932EAD0C6A84 + decrypted=49494949494949494949494949494949 + Iterated 100 times=B6BF5C65E1711BBA7A12102E29EA4B02 + Iterated 1000 times=74DB16A2C0542276D3A4AA702BD95F7B + +Set 3, vector# 74: + key=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + 4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + plain=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + cipher=DB1188DFCB2160424254C328EFA4E1F0 + decrypted=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + Iterated 100 times=E5202CE60525B3D0CCC0629319551393 + Iterated 1000 times=555C8DC32932AD4FD166DF3CD5C6BEEE + +Set 3, vector# 75: + key=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + 4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + plain=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + cipher=A41630F9C4F5DEB9725B5F6D2990120E + decrypted=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + Iterated 100 times=FF1427EBAC0A9A6DD0CB348754802F0F + Iterated 1000 times=914E029E110694D5C73AD8C30B968522 + +Set 3, vector# 76: + key=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + 4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + plain=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + cipher=B7A2C59A430FEFB8157C575C61E3B3A0 + decrypted=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + Iterated 100 times=5E696D6A189C380111A9269C3F0F90F6 + Iterated 1000 times=246E44D303801BF076CCE297A0CC3BF6 + +Set 3, vector# 77: + key=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + 4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + plain=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + cipher=97820BE513811A236C76B5A4169BE438 + decrypted=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + Iterated 100 times=BA62A621D20EE91C07C4E03799125721 + Iterated 1000 times=1E664C0DE6AD02B518F1F477AABEFA83 + +Set 3, vector# 78: + key=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + 4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + plain=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + cipher=C735C44C308F15A9DE5D9F31A0BEBB58 + decrypted=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + Iterated 100 times=56D8F3082896971ABE937B320A36485C + Iterated 1000 times=8C05F005870B95FE50B51DA5A7B5326F + +Set 3, vector# 79: + key=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + 4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + plain=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + cipher=7F55673EE013C0575522BE9976A71D49 + decrypted=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + Iterated 100 times=39CD2BF30DF04ABA1B9A84BB35088C91 + Iterated 1000 times=4A789B05BE4815CB919D1218E0CB6120 + +Set 3, vector# 80: + key=50505050505050505050505050505050 + 50505050505050505050505050505050 + plain=50505050505050505050505050505050 + cipher=6CA276ADA3DD588F0167354F3A17F2C9 + decrypted=50505050505050505050505050505050 + Iterated 100 times=D932244777D7744F8E8474E41A6E649C + Iterated 1000 times=14047163A6324BC805AC39099C047E18 + +Set 3, vector# 81: + key=51515151515151515151515151515151 + 51515151515151515151515151515151 + plain=51515151515151515151515151515151 + cipher=A9D14908F8FDF83A4BEF46664C59C52F + decrypted=51515151515151515151515151515151 + Iterated 100 times=70FC036412E70048E6D0C8E296A5EE6E + Iterated 1000 times=FF97D217E725AAE9FBB05DD11195D51E + +Set 3, vector# 82: + key=52525252525252525252525252525252 + 52525252525252525252525252525252 + plain=52525252525252525252525252525252 + cipher=8B7A96BB883079BC08777A187D9013DA + decrypted=52525252525252525252525252525252 + Iterated 100 times=D9AA8B381A7D84575AD7E3E0A098F6A2 + Iterated 1000 times=53280439464A05041F1BDBF9D9F9DA6A + +Set 3, vector# 83: + key=53535353535353535353535353535353 + 53535353535353535353535353535353 + plain=53535353535353535353535353535353 + cipher=BACA256262A8CE4C400E56CBD4A572F5 + decrypted=53535353535353535353535353535353 + Iterated 100 times=8DF40288F1A025E5C7D2D575E84CAD15 + Iterated 1000 times=DE133FEEAB0E58743BC76FD1466FCFE2 + +Set 3, vector# 84: + key=54545454545454545454545454545454 + 54545454545454545454545454545454 + plain=54545454545454545454545454545454 + cipher=E20DDB4C20EBD9A834F794C0F47C00E0 + decrypted=54545454545454545454545454545454 + Iterated 100 times=0ADAAE5C91F22556DF137749D8730326 + Iterated 1000 times=012F3DCF4EB195F7BDB6E938B43A6430 + +Set 3, vector# 85: + key=55555555555555555555555555555555 + 55555555555555555555555555555555 + plain=55555555555555555555555555555555 + cipher=345F77309858D7B78CEC9F93BFB5D362 + decrypted=55555555555555555555555555555555 + Iterated 100 times=3286B1032BB062F19602F5A7A64806D3 + Iterated 1000 times=DF60543FE6D8028AD1F79405FEAA9AD1 + +Set 3, vector# 86: + key=56565656565656565656565656565656 + 56565656565656565656565656565656 + plain=56565656565656565656565656565656 + cipher=83A01FB8BE27B3977EBE8683A431D3E0 + decrypted=56565656565656565656565656565656 + Iterated 100 times=365F4925CAD203959CC0AF9B9B537535 + Iterated 1000 times=3333AD867B28C602A2A473BDD690E522 + +Set 3, vector# 87: + key=57575757575757575757575757575757 + 57575757575757575757575757575757 + plain=57575757575757575757575757575757 + cipher=04E9D4066A08FF760928A02409C0DB30 + decrypted=57575757575757575757575757575757 + Iterated 100 times=5AFBD026C5F37502B56A7F6F0FCA9F61 + Iterated 1000 times=5640EC5009A94D15ADD572B5A6D2AA1D + +Set 3, vector# 88: + key=58585858585858585858585858585858 + 58585858585858585858585858585858 + plain=58585858585858585858585858585858 + cipher=CD1E5FD255C9F308CACCD057628ADF7A + decrypted=58585858585858585858585858585858 + Iterated 100 times=67E0B2F5AB99F2B30F21E0F418D65007 + Iterated 1000 times=D5C895C197A1C14F742B9C342C7DB944 + +Set 3, vector# 89: + key=59595959595959595959595959595959 + 59595959595959595959595959595959 + plain=59595959595959595959595959595959 + cipher=606ED6AA4C668CE6D81F43EFC04E26DC + decrypted=59595959595959595959595959595959 + Iterated 100 times=328D8A04824E9BAF98A13AF735B8515E + Iterated 1000 times=1528A608CD1FA229F10F8FC8AAB3B089 + +Set 3, vector# 90: + key=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + 5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + plain=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + cipher=6E31CD08CC5E000B5C8D97E44F956250 + decrypted=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + Iterated 100 times=2C3418A74F29A6D9FD96CF63D238C1AC + Iterated 1000 times=CA6185AF0BBFE605B0C49CA25E413CA8 + +Set 3, vector# 91: + key=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + 5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + plain=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + cipher=F3B0765B821FC10DABEE51C97F24C78D + decrypted=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + Iterated 100 times=03F4EA3E43F590E0E574AB6C1EDB982C + Iterated 1000 times=9A7B9ED9DF49FCF28D0E158443ADB052 + +Set 3, vector# 92: + key=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + 5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + plain=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + cipher=C01F05705D3780D525D1D7E3689BF07F + decrypted=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + Iterated 100 times=D2319255C014E45A78BDE72A80D2703F + Iterated 1000 times=059520316157556D67ABBE196C2ADA8C + +Set 3, vector# 93: + key=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + 5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + plain=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + cipher=5ABEB35F4090906A272F6FB5BC37D513 + decrypted=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + Iterated 100 times=6B3534225F58DDA443E4AEA3E94791E8 + Iterated 1000 times=FB3DC9218F30AF202FDC9C1B10D978BE + +Set 3, vector# 94: + key=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + 5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + plain=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + cipher=9949118D4E03E3B7C245B4A6524DBCF6 + decrypted=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + Iterated 100 times=79A688622C7B20CFF4E899F840CF7477 + Iterated 1000 times=80A1C22423E75DF9EF45C43523A3C0F9 + +Set 3, vector# 95: + key=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + 5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + plain=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + cipher=EC1187DDD2173BB00429A41962510077 + decrypted=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + Iterated 100 times=0C900BA824D6FF0A01709694E2F1CD74 + Iterated 1000 times=3850B400E1055138C7DF9A03A1F22CD5 + +Set 3, vector# 96: + key=60606060606060606060606060606060 + 60606060606060606060606060606060 + plain=60606060606060606060606060606060 + cipher=99E3602BFFABC39A517DE13CDD46990D + decrypted=60606060606060606060606060606060 + Iterated 100 times=8DF25D7EDC9828A10D058CCF665CA0CC + Iterated 1000 times=B37883981112E275AD223FAC7A6A8C41 + +Set 3, vector# 97: + key=61616161616161616161616161616161 + 61616161616161616161616161616161 + plain=61616161616161616161616161616161 + cipher=2CCD45896FC3525E03C7CB97B66895FF + decrypted=61616161616161616161616161616161 + Iterated 100 times=92F331334C9CAC418CCCA673E7907118 + Iterated 1000 times=605EC6C5214C1E607AE19DF8F99A585B + +Set 3, vector# 98: + key=62626262626262626262626262626262 + 62626262626262626262626262626262 + plain=62626262626262626262626262626262 + cipher=E4C944F2F73435D162010A4F0EA14D0A + decrypted=62626262626262626262626262626262 + Iterated 100 times=99F27A99744FE98D7548290216ACB546 + Iterated 1000 times=52BE48DF8A85D48A905554CAA30036DF + +Set 3, vector# 99: + key=63636363636363636363636363636363 + 63636363636363636363636363636363 + plain=63636363636363636363636363636363 + cipher=AD7AC5DC358C720BCA406FEE7D5375E2 + decrypted=63636363636363636363636363636363 + Iterated 100 times=F0A0183CD7E4E06F1E42F134632A5B83 + Iterated 1000 times=AFF162406B50B9EEEEA0DA1B1E38CCD2 + +Set 3, vector#100: + key=64646464646464646464646464646464 + 64646464646464646464646464646464 + plain=64646464646464646464646464646464 + cipher=4FBFD1237CB8E38B4C4D8CC6D4988C95 + decrypted=64646464646464646464646464646464 + Iterated 100 times=0EDA66846398D987BCE0C1A971FA4781 + Iterated 1000 times=4F8D3E1D2CE528C4DC86A11F04C38397 + +Set 3, vector#101: + key=65656565656565656565656565656565 + 65656565656565656565656565656565 + plain=65656565656565656565656565656565 + cipher=868695AF73DC2A3F2A5BC2B039298DD6 + decrypted=65656565656565656565656565656565 + Iterated 100 times=156938F042B1802A94024E9915B0AA1A + Iterated 1000 times=414BCB371F0659CCDE531DDF6A5CBE7C + +Set 3, vector#102: + key=66666666666666666666666666666666 + 66666666666666666666666666666666 + plain=66666666666666666666666666666666 + cipher=CE13D0A595D0F2DAABB9C361A022F740 + decrypted=66666666666666666666666666666666 + Iterated 100 times=B1276EE03314824C9E4AF0FC6EDF9274 + Iterated 1000 times=BFB3DF22C0BD835F1FF7C4C7EF338EC1 + +Set 3, vector#103: + key=67676767676767676767676767676767 + 67676767676767676767676767676767 + plain=67676767676767676767676767676767 + cipher=2C2D1EDA63C07792FA64E4CA15038134 + decrypted=67676767676767676767676767676767 + Iterated 100 times=4D6748E5D1B3CF15E8A8EA627022D28F + Iterated 1000 times=7B1A40BD398EA0BD8C1CE4CFA22E2BE8 + +Set 3, vector#104: + key=68686868686868686868686868686868 + 68686868686868686868686868686868 + plain=68686868686868686868686868686868 + cipher=80D0C71D38199F1F43B31138A9B8A0C0 + decrypted=68686868686868686868686868686868 + Iterated 100 times=62140D538204575FA42C24FC3B56D0DB + Iterated 1000 times=D0B9882368498BF1EC53C474468F5235 + +Set 3, vector#105: + key=69696969696969696969696969696969 + 69696969696969696969696969696969 + plain=69696969696969696969696969696969 + cipher=03B4CFAFBA8A0434E226D054A05C0BB6 + decrypted=69696969696969696969696969696969 + Iterated 100 times=FA134D1C60A6A8F0E2A79F3569BEC888 + Iterated 1000 times=26912AD6F6289A567DC0330AD81B1133 + +Set 3, vector#106: + key=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + 6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + plain=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + cipher=1C5FF3AB69FE212C7D52E23EC41088D6 + decrypted=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + Iterated 100 times=D7F18FD1952E5F8EBCE4F54042688A4A + Iterated 1000 times=75D55FCD21F14CC945DD95693C681E36 + +Set 3, vector#107: + key=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + 6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + plain=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + cipher=B6D6868F30BE00CCF089E8A59865592D + decrypted=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + Iterated 100 times=05602C7CDB1570268682F74A69712599 + Iterated 1000 times=47D5A31CE3E4C5D3998AAFBB18CCC7A8 + +Set 3, vector#108: + key=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + 6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + plain=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + cipher=9D4BBD7B1C58B4CE8B98CC5CB5F73746 + decrypted=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + Iterated 100 times=5AB85B78F1ABF82FC572C3E31ECEFE32 + Iterated 1000 times=DB4DF189344081465D5959A2F19A00BB + +Set 3, vector#109: + key=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + 6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + plain=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + cipher=06E2D7FEC04F4FE4AFC09254A97263E6 + decrypted=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + Iterated 100 times=BEAF5B5389E71A1300B867E0340756FE + Iterated 1000 times=EB4C201D514465A6A647ACB3499F6C6F + +Set 3, vector#110: + key=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + 6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + plain=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + cipher=7BA7F66C79700D4BD1D3E0DAF457C0FC + decrypted=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + Iterated 100 times=520AC5E890586CC22CDC8D195D67D4EA + Iterated 1000 times=DD63D1814E77DF60D383DA51FEFF89B6 + +Set 3, vector#111: + key=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + 6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + plain=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + cipher=A9FBF0DC5474AE7D3C25B9584CC809EE + decrypted=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + Iterated 100 times=B9B29BB6C8D3F6F50B5BC9ABC5491F08 + Iterated 1000 times=D97BD0DC6386628A0182A6E7EE0911CE + +Set 3, vector#112: + key=70707070707070707070707070707070 + 70707070707070707070707070707070 + plain=70707070707070707070707070707070 + cipher=575E4B3A55DD3E193BDE429FD68923C5 + decrypted=70707070707070707070707070707070 + Iterated 100 times=D19C4BF2F490AC99250F65F4DD5359A4 + Iterated 1000 times=91246C9F35BCF3849A376A5CB6CC35B4 + +Set 3, vector#113: + key=71717171717171717171717171717171 + 71717171717171717171717171717171 + plain=71717171717171717171717171717171 + cipher=AFD7C8A8AA18D5D6E6B0876FE6FE0E7A + decrypted=71717171717171717171717171717171 + Iterated 100 times=92EC763B404252CAA8E4C7ED713EF46A + Iterated 1000 times=3712323B9C9B7FD3F34050A2B91D9495 + +Set 3, vector#114: + key=72727272727272727272727272727272 + 72727272727272727272727272727272 + plain=72727272727272727272727272727272 + cipher=5FF899BE6DD7216C6CADB5E87E93704D + decrypted=72727272727272727272727272727272 + Iterated 100 times=A4BEEEF294ABCEF29C799AE4513B6C5A + Iterated 1000 times=61EA267583BCE87E27AC1C4B0CEFD783 + +Set 3, vector#115: + key=73737373737373737373737373737373 + 73737373737373737373737373737373 + plain=73737373737373737373737373737373 + cipher=7EA7816B2E08C23B8208CD19A496D78A + decrypted=73737373737373737373737373737373 + Iterated 100 times=F36937F22C029A73A495F188906298BA + Iterated 1000 times=7EE7CDFFCD482FE473945ED8296187DB + +Set 3, vector#116: + key=74747474747474747474747474747474 + 74747474747474747474747474747474 + plain=74747474747474747474747474747474 + cipher=8E096BE771259FC95B9FAE3714FB4401 + decrypted=74747474747474747474747474747474 + Iterated 100 times=EA7E7A4371AF54E2B75669E190A7A6D3 + Iterated 1000 times=DE71DC8B3DE87C9891759BA9543C0E61 + +Set 3, vector#117: + key=75757575757575757575757575757575 + 75757575757575757575757575757575 + plain=75757575757575757575757575757575 + cipher=8BD63433E29BC12D5A1AC75BD46B2078 + decrypted=75757575757575757575757575757575 + Iterated 100 times=8B890EABCB419536D39ACEEC66669F91 + Iterated 1000 times=F1BB26CE6E37D9D1F71E8CE97F2DA30E + +Set 3, vector#118: + key=76767676767676767676767676767676 + 76767676767676767676767676767676 + plain=76767676767676767676767676767676 + cipher=846B8C20DBAEF7F4EB0F749F592AB439 + decrypted=76767676767676767676767676767676 + Iterated 100 times=90A04C6F65B182CAE00E36D0FFFFD7F0 + Iterated 1000 times=6CF51D5D838985DED3FFA21FC223F62D + +Set 3, vector#119: + key=77777777777777777777777777777777 + 77777777777777777777777777777777 + plain=77777777777777777777777777777777 + cipher=2AA52F6AF8A43468EB4FD3075EAE3804 + decrypted=77777777777777777777777777777777 + Iterated 100 times=E3AE273987EB4E6EA972CB26C055B6D0 + Iterated 1000 times=A6B9116ABF09B0AB54AC2A053374B459 + +Set 3, vector#120: + key=78787878787878787878787878787878 + 78787878787878787878787878787878 + plain=78787878787878787878787878787878 + cipher=2B0E74C9B4F4865F0C5F0D48701166E6 + decrypted=78787878787878787878787878787878 + Iterated 100 times=31055DCF3B472857B0461455518D2A74 + Iterated 1000 times=57C2F34FC7802650EC187B662D8C7451 + +Set 3, vector#121: + key=79797979797979797979797979797979 + 79797979797979797979797979797979 + plain=79797979797979797979797979797979 + cipher=967600B3705DA3763BC130680C9302E6 + decrypted=79797979797979797979797979797979 + Iterated 100 times=F42ED958683A50D4C8FC581A770F32FD + Iterated 1000 times=88B1A63AB948D387703CC3C5531CEA0E + +Set 3, vector#122: + key=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + 7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + plain=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + cipher=E1CF357C12C8E8082705442ED4DD6536 + decrypted=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + Iterated 100 times=DD1ACA7A561E8D0CAA0E4DDB902896B2 + Iterated 1000 times=5A4C4704CDC3E822A94C29BCFFDDCD02 + +Set 3, vector#123: + key=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + 7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + plain=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + cipher=15C4F1E99B04A3C51301BE059A60EB46 + decrypted=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + Iterated 100 times=6F76FA88D802A2FCF3C0A2E9B7E6A13D + Iterated 1000 times=3280F35655C213BAEA599C475399DCD1 + +Set 3, vector#124: + key=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + 7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + plain=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + cipher=1B1ABF7405F148FBBED68866456F0967 + decrypted=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + Iterated 100 times=966D21B2F247CD4C7E1745A21EA24B5C + Iterated 1000 times=370E0A530CD6A1E7A0CF591F76E6E138 + +Set 3, vector#125: + key=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + 7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + plain=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + cipher=2AC4D514783573EFF9609213CC2F6196 + decrypted=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + Iterated 100 times=F335F5B4BB0D4028E6FF9593645560A8 + Iterated 1000 times=3BED316A28EFBDAEBE3E938C87D1CE3C + +Set 3, vector#126: + key=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + 7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + plain=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + cipher=4AA6C2B19C6FC0BDD82BAD88A0240FDF + decrypted=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + Iterated 100 times=2795FC0D4D6DBFAEF90CD35785467B0C + Iterated 1000 times=E523CDC9C6B2B637F115265DFE36F559 + +Set 3, vector#127: + key=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + 7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + plain=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + cipher=12EDEDA5DF9EB9744824B0364125D483 + decrypted=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + Iterated 100 times=027B5031FF4E678EC4B3F9F86F72F6A6 + Iterated 1000 times=864938A66263138FA8020075986E8D35 + +Set 3, vector#128: + key=80808080808080808080808080808080 + 80808080808080808080808080808080 + plain=80808080808080808080808080808080 + cipher=9B8A23155052B645447BBB25C4DD7ED9 + decrypted=80808080808080808080808080808080 + Iterated 100 times=B8CB07E2F06F6495BC22F03D3548B869 + Iterated 1000 times=8616D2CD09BA744E377983DF7BBED937 + +Set 3, vector#129: + key=81818181818181818181818181818181 + 81818181818181818181818181818181 + plain=81818181818181818181818181818181 + cipher=9A7618333FF303FB022695026F0417E4 + decrypted=81818181818181818181818181818181 + Iterated 100 times=E818ED94ED03084A1EFA80D514B75290 + Iterated 1000 times=67992F4E19123C65B084343A6DCE2F83 + +Set 3, vector#130: + key=82828282828282828282828282828282 + 82828282828282828282828282828282 + plain=82828282828282828282828282828282 + cipher=2D8E98CE3A4B00F094BEBD5D1D4A3C83 + decrypted=82828282828282828282828282828282 + Iterated 100 times=8ECF2822425245F0C39CF30E93645106 + Iterated 1000 times=F1AC400EE882D0565FF2B0DD5218E4ED + +Set 3, vector#131: + key=83838383838383838383838383838383 + 83838383838383838383838383838383 + plain=83838383838383838383838383838383 + cipher=F4ECED7C70DCF39B52B7DBAC4FD8FCD4 + decrypted=83838383838383838383838383838383 + Iterated 100 times=AB12955B836E124FD6CB45036A48D515 + Iterated 1000 times=B7A5ECE84664357C797543A0DE770BE7 + +Set 3, vector#132: + key=84848484848484848484848484848484 + 84848484848484848484848484848484 + plain=84848484848484848484848484848484 + cipher=B6377A9A226DAF918BA98B29A41C8DCB + decrypted=84848484848484848484848484848484 + Iterated 100 times=EFCE6803849371C06D31863BA5EC5323 + Iterated 1000 times=F7C6E325BE066300CEB6E04DAA0C6AC9 + +Set 3, vector#133: + key=85858585858585858585858585858585 + 85858585858585858585858585858585 + plain=85858585858585858585858585858585 + cipher=5E5CED23C2FA4FBE6ABCCDA310AD895F + decrypted=85858585858585858585858585858585 + Iterated 100 times=978573F863C44127BA71B755385C60D2 + Iterated 1000 times=76103F6C31B8261A339014E2958C3171 + +Set 3, vector#134: + key=86868686868686868686868686868686 + 86868686868686868686868686868686 + plain=86868686868686868686868686868686 + cipher=CF7DAE0433501E3FECE6C499D8E9DAF7 + decrypted=86868686868686868686868686868686 + Iterated 100 times=D82E3ABE9FA77A3D18FCB8A30EC053E5 + Iterated 1000 times=276DFAFCD6CB659281C490632C0CC4D9 + +Set 3, vector#135: + key=87878787878787878787878787878787 + 87878787878787878787878787878787 + plain=87878787878787878787878787878787 + cipher=753086461F2CE355D4C4C804AD5E52BA + decrypted=87878787878787878787878787878787 + Iterated 100 times=11F129D3402533E4CC9A1B11A28D006E + Iterated 1000 times=E996EE6990D840EAD51CF48C6FB1BD76 + +Set 3, vector#136: + key=88888888888888888888888888888888 + 88888888888888888888888888888888 + plain=88888888888888888888888888888888 + cipher=0A821CD23B785246763907A24E9B7E2D + decrypted=88888888888888888888888888888888 + Iterated 100 times=F27E6E61E865065E72CFC20FB22128B5 + Iterated 1000 times=D89F4B0AE92B0797F52492F6DC0DE7D9 + +Set 3, vector#137: + key=89898989898989898989898989898989 + 89898989898989898989898989898989 + plain=89898989898989898989898989898989 + cipher=6D78010576E1C2C124AF4982778B0163 + decrypted=89898989898989898989898989898989 + Iterated 100 times=82A50BB8005E3407EF024E8226ADA59E + Iterated 1000 times=6F3B8854AE2F7DF5A89BFF2FBEEAE00C + +Set 3, vector#138: + key=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + 8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + plain=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + cipher=E1C26EA439A56382FC386DC8CC218A1B + decrypted=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + Iterated 100 times=307089E7244E160F70B29688F436F207 + Iterated 1000 times=29B6BD082B8A872EF38EF64435278C6C + +Set 3, vector#139: + key=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + 8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + plain=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + cipher=4D65397DFF5A7ED0E5C5C2A17EE0CE47 + decrypted=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + Iterated 100 times=0432CEE51572CD046575AE235494346E + Iterated 1000 times=CE6F2629E95BC0F236B4AC65E72F0E8F + +Set 3, vector#140: + key=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + 8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + plain=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + cipher=C0C50BA54F2605BAD7A8448A9DA5CCFE + decrypted=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + Iterated 100 times=E7BABC1CE5F7C26A0FC53A7833BEAA28 + Iterated 1000 times=09329D050D7E8736D83CC6F16F824855 + +Set 3, vector#141: + key=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + 8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + plain=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + cipher=22022EA75C617B81C917B6491BC2848C + decrypted=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + Iterated 100 times=D414BF52C32EB3C0B4A0F3560365A0A4 + Iterated 1000 times=C49343687B472F7C31F59DBAD97B4766 + +Set 3, vector#142: + key=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + 8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + plain=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + cipher=2F178F9BE7246F32D6CC007060ACFA0D + decrypted=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + Iterated 100 times=D11CE893879CC2F1C7E058D0D2644E15 + Iterated 1000 times=37F46CFA563CB58FF772FFAA9916E012 + +Set 3, vector#143: + key=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + 8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + plain=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + cipher=F47BD0C68155ADBC8A755F0C5F5EAEDA + decrypted=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + Iterated 100 times=F5AE3EF86FD54AFAE558870AF9D9F647 + Iterated 1000 times=025D6B5D8259365E5CB4F4A03B17BACD + +Set 3, vector#144: + key=90909090909090909090909090909090 + 90909090909090909090909090909090 + plain=90909090909090909090909090909090 + cipher=7DBD4551B73876059E6FEDF35D9AC41E + decrypted=90909090909090909090909090909090 + Iterated 100 times=D08B7EADD2E49181A536800DE8BE8768 + Iterated 1000 times=61DEB0F18BD07335A90FA84F8F4A3BDA + +Set 3, vector#145: + key=91919191919191919191919191919191 + 91919191919191919191919191919191 + plain=91919191919191919191919191919191 + cipher=231549208FCFABE9495619B0DF885ED2 + decrypted=91919191919191919191919191919191 + Iterated 100 times=F8D31BAEA14B4B448F70F9C400D23288 + Iterated 1000 times=34DC713E91DB4D76753A7D47C2F1B6FE + +Set 3, vector#146: + key=92929292929292929292929292929292 + 92929292929292929292929292929292 + plain=92929292929292929292929292929292 + cipher=056A3F37746F95013958FBF1E8B3E92B + decrypted=92929292929292929292929292929292 + Iterated 100 times=EB63314198A6C63BD473B2027B85D090 + Iterated 1000 times=1B04681572FC97057FC9BCE3322970CC + +Set 3, vector#147: + key=93939393939393939393939393939393 + 93939393939393939393939393939393 + plain=93939393939393939393939393939393 + cipher=370EF68EAC424B3D478F26F950193896 + decrypted=93939393939393939393939393939393 + Iterated 100 times=EC5F4DE792DB9EB1B43E29AE46826D86 + Iterated 1000 times=DAEA90570729096DB9E6C622196D37ED + +Set 3, vector#148: + key=94949494949494949494949494949494 + 94949494949494949494949494949494 + plain=94949494949494949494949494949494 + cipher=276E89B81BEB0D10FE123FE0547E94CC + decrypted=94949494949494949494949494949494 + Iterated 100 times=FC480C02FF4A70DEF048708B8E484688 + Iterated 1000 times=CB29219FAA9D90844C3D2A13EB6079F5 + +Set 3, vector#149: + key=95959595959595959595959595959595 + 95959595959595959595959595959595 + plain=95959595959595959595959595959595 + cipher=2E60F293F1AC09D16607CBA651FA4963 + decrypted=95959595959595959595959595959595 + Iterated 100 times=3A87977B9F65ACDFF00F615D6E6034C6 + Iterated 1000 times=4B479D1AD2C4F1A73A8868667DAC1F7C + +Set 3, vector#150: + key=96969696969696969696969696969696 + 96969696969696969696969696969696 + plain=96969696969696969696969696969696 + cipher=5A8C72245ECF399DB4D1FC78D1F13241 + decrypted=96969696969696969696969696969696 + Iterated 100 times=855A84D5D30C9E25C6B105A0012FECF9 + Iterated 1000 times=D9DEECCCFF1F9689C63BBA4D48A04A62 + +Set 3, vector#151: + key=97979797979797979797979797979797 + 97979797979797979797979797979797 + plain=97979797979797979797979797979797 + cipher=203D6E4652A742BC3EAD6014EE28BA8B + decrypted=97979797979797979797979797979797 + Iterated 100 times=2A1C11D2850D69C2FB569FF570C59B76 + Iterated 1000 times=DD096132651926EA7CD5D6403B4F2B6A + +Set 3, vector#152: + key=98989898989898989898989898989898 + 98989898989898989898989898989898 + plain=98989898989898989898989898989898 + cipher=34FB8D2107E68A371B7D1562D60D68E5 + decrypted=98989898989898989898989898989898 + Iterated 100 times=24656029C502112CFDDF7019B3915B7F + Iterated 1000 times=D81D522B84669D129409BF633A9433E1 + +Set 3, vector#153: + key=99999999999999999999999999999999 + 99999999999999999999999999999999 + plain=99999999999999999999999999999999 + cipher=15551FE3E60AC600C3DC04584DC5C9B1 + decrypted=99999999999999999999999999999999 + Iterated 100 times=55BA1A42406AAF7F5D239BBA1A8093A6 + Iterated 1000 times=5852CB17A723B6FAA59755A07046DFB9 + +Set 3, vector#154: + key=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + 9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + plain=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + cipher=BAD57CCC47E5BF8E16C91662B738C27B + decrypted=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + Iterated 100 times=E5019896A446A87A4098BB7C4D350853 + Iterated 1000 times=D3DC2EEFFF244BDE7B1BA01E099775F5 + +Set 3, vector#155: + key=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + 9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + plain=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + cipher=C99F80976D05DDDDBE03883BF3A48D63 + decrypted=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + Iterated 100 times=9A936C1DBC33822E37699729C45DD320 + Iterated 1000 times=802D163AABEA29FCF7EB51FCFFBE0662 + +Set 3, vector#156: + key=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + 9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + plain=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + cipher=72F062757C8B236DA9BAF4D0017FE2D2 + decrypted=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + Iterated 100 times=ECB2DC0547D7CA0181EB525C8AF98D65 + Iterated 1000 times=EACD9E289D74FE6DE852DDA2026D35DA + +Set 3, vector#157: + key=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + 9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + plain=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + cipher=CF3A0BE7777A16C85AEC8C3D137A283A + decrypted=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + Iterated 100 times=95B3EC12ADD0FD912B5971CA343B1F50 + Iterated 1000 times=83657FCC7F8749E88D6B32DD2E288082 + +Set 3, vector#158: + key=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + 9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + plain=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + cipher=32E3A2CB2F135498E6281FE52DF3EBE6 + decrypted=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + Iterated 100 times=4D1644CD4A4242EF4F4CE9C541022B2B + Iterated 1000 times=3547B7B41364D0835F1B961B183D1FB3 + +Set 3, vector#159: + key=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + 9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + plain=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + cipher=A25BC5DBA74A38133AB973B23B717735 + decrypted=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + Iterated 100 times=0884B490CCA5B94319C788CB29B89F02 + Iterated 1000 times=98A639975ECDD6D38E0E4A05B6929486 + +Set 3, vector#160: + key=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + plain=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + cipher=D3112D50C88A841DAD7C3C7A016B5564 + decrypted=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + Iterated 100 times=CC29C5B2F5FC55969D50D4A5B8BD1285 + Iterated 1000 times=EEA1A497104B517AFF5D35EE0525774C + +Set 3, vector#161: + key=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + plain=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + cipher=38E79D7AA31E4D7367EB90CC71D6B73C + decrypted=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + Iterated 100 times=E642599A9709A602396A9741AE5AAA76 + Iterated 1000 times=70587D862D8708B92444F43E3E8AF29F + +Set 3, vector#162: + key=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + plain=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + cipher=938D34AA6645DB8A765EDF49D3AD6C38 + decrypted=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + Iterated 100 times=731B68E4BF95263A60629D5DA14AC993 + Iterated 1000 times=11D95A92699C2DC7D931E38F003F8D76 + +Set 3, vector#163: + key=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + plain=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + cipher=06EF44BA16B68F7CA69C17778A7D7FB9 + decrypted=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + Iterated 100 times=C9F64D0479A862FA869E671A8396A0C5 + Iterated 1000 times=D68AF2B61BC3370B6662E12C8C28AEF0 + +Set 3, vector#164: + key=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + plain=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + cipher=0ED29279FF862EC5C4122B5CC94BB8AB + decrypted=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + Iterated 100 times=4478376120A4FED113E316F886608A0A + Iterated 1000 times=5205FF88EA5ED286A1C503A006C08CBB + +Set 3, vector#165: + key=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + plain=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + cipher=3E365E3D7531E0C6DA5B9B35A7B31F9F + decrypted=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + Iterated 100 times=305BCBA36B26E7AEADAA814E9239C2CF + Iterated 1000 times=55FE87FE752A52FE0003DA9A4EC39707 + +Set 3, vector#166: + key=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + plain=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + cipher=7DD090F10891ED270F5E1F31A142E029 + decrypted=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + Iterated 100 times=8F6C5CB86774E79806265A36B95FAB7B + Iterated 1000 times=1B0BEAFC0EA51B5521A460B57667738F + +Set 3, vector#167: + key=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + plain=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + cipher=71157431B7332CED247DF01ABA2D62B3 + decrypted=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + Iterated 100 times=6FEDF17941B18910F94285E6936E4382 + Iterated 1000 times=72DE25253CAD77CA1502F0616CDF5C04 + +Set 3, vector#168: + key=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + plain=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + cipher=C94124504889ABAF30F7AB0C609A8B8D + decrypted=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + Iterated 100 times=884BCD5192B2BC993DFC8858B7F891CC + Iterated 1000 times=F87615BA4932CEB070CF9BDD96EC1728 + +Set 3, vector#169: + key=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + plain=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + cipher=4CAC5AC8F18FE6FA298A2BE726EE7933 + decrypted=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + Iterated 100 times=D5377E764E4F96264E4401E7036EB70A + Iterated 1000 times=4CE974D67D7AA16B113E66B8A2F72F91 + +Set 3, vector#170: + key=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + plain=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + cipher=00F0122444705643812EEC3DC6770693 + decrypted=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + Iterated 100 times=95EA8A589AAC0A8BBA179A2C860F1D88 + Iterated 1000 times=485A7410E8570D7F2FA45322102C70DD + +Set 3, vector#171: + key=ABABABABABABABABABABABABABABABAB + ABABABABABABABABABABABABABABABAB + plain=ABABABABABABABABABABABABABABABAB + cipher=591CEFED5AEC78D2608589599C7DC8BF + decrypted=ABABABABABABABABABABABABABABABAB + Iterated 100 times=CDDFE139C72323672B9841715C0E9338 + Iterated 1000 times=76902A71EF8840C746E095C73EAEC50D + +Set 3, vector#172: + key=ACACACACACACACACACACACACACACACAC + ACACACACACACACACACACACACACACACAC + plain=ACACACACACACACACACACACACACACACAC + cipher=49662EF8B5B6E7AEECB783142F0A1CFA + decrypted=ACACACACACACACACACACACACACACACAC + Iterated 100 times=433C62286BC2A59B151A99423FEF210E + Iterated 1000 times=5CA673DB8950D64497E4D7C55C585F49 + +Set 3, vector#173: + key=ADADADADADADADADADADADADADADADAD + ADADADADADADADADADADADADADADADAD + plain=ADADADADADADADADADADADADADADADAD + cipher=BB69B8336651EDD3EE84392AFF15A922 + decrypted=ADADADADADADADADADADADADADADADAD + Iterated 100 times=97B2BA60A965A61AB99A19346C568627 + Iterated 1000 times=ECDD31B74D4EDBF1D44CEA5769D6934B + +Set 3, vector#174: + key=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + plain=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + cipher=2DA5CCF5A15F179D7A2EC5BBCE8B0E17 + decrypted=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + Iterated 100 times=8C53DD0B2FEC9BC6A53B69C5A2BD1357 + Iterated 1000 times=6A14A00CD4E56361D8D08CD78BD8CC1D + +Set 3, vector#175: + key=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + plain=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + cipher=EE18BF9992729F040E3DDC34BF666F50 + decrypted=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + Iterated 100 times=B9E208A0F695128946867C26007570B7 + Iterated 1000 times=2FE83DB753741AC7A2981B8D303D8BDD + +Set 3, vector#176: + key=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + plain=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + cipher=DC6B87299CAB8F9CFEC3D60D6585D59C + decrypted=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + Iterated 100 times=3E6AA456FC211808304FB4D509E568F7 + Iterated 1000 times=BC097AAD6B3097C3794EABDE5F0E7279 + +Set 3, vector#177: + key=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + plain=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + cipher=9C7291AB9A649D6F67C878ED1A8240E9 + decrypted=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + Iterated 100 times=B9FEED3F05D51D50E8FB4EDE3C768A34 + Iterated 1000 times=BCF78EC5647113678ADE3662ED090EB6 + +Set 3, vector#178: + key=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + plain=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + cipher=5E6D4AC669D065C878007293FA5A574D + decrypted=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + Iterated 100 times=2A57EB7887D31AF6FA9D931998F76655 + Iterated 1000 times=2A4E930C6DF8F59672D9BF9B1EFD08D6 + +Set 3, vector#179: + key=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + plain=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + cipher=A0AA1FDC9E966F920CA3135DBC71094C + decrypted=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + Iterated 100 times=8DD41A6982B50C400EE66D3A1D7C96F1 + Iterated 1000 times=571E34907BC57D0D4CC3F31930A50D48 + +Set 3, vector#180: + key=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + plain=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + cipher=1A2713E0E8C69F6B362938FCE7CE1D42 + decrypted=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + Iterated 100 times=8FAFA12366F81F452FD65A41F2D4AC78 + Iterated 1000 times=72DFA0E4D7FB2D4FA185D08796A71E30 + +Set 3, vector#181: + key=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + plain=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + cipher=533EC4B7B6FEF154DAA3E2530E7D29B8 + decrypted=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + Iterated 100 times=D7DE11F454CE32D6D08CD81659B4EEE9 + Iterated 1000 times=D1EFCFB5480EEF9FD12BF811FCC32986 + +Set 3, vector#182: + key=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + plain=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + cipher=87AAA34452E42DD08684C4DE404DD3A0 + decrypted=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + Iterated 100 times=9A03A0C7FBE6AAA4EEA0C7BB0D1A9E96 + Iterated 1000 times=5677F12B66ADF3693FACD7618B71089B + +Set 3, vector#183: + key=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + plain=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + cipher=6C56E4BDA669AE9D85E67E556D4303EB + decrypted=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + Iterated 100 times=D4D3055E42781E2D2D183CB1350A6381 + Iterated 1000 times=E902129B73023A2F36AD4D7C420CDB37 + +Set 3, vector#184: + key=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + plain=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + cipher=44D5290654038D53815B6A8181B2371F + decrypted=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + Iterated 100 times=06CDED6D709D68C79CA166D90C0A042E + Iterated 1000 times=683441541316EA53CC43389D02893690 + +Set 3, vector#185: + key=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + plain=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + cipher=5BC6EBC50619B04F0739541FC4C87795 + decrypted=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + Iterated 100 times=F2849C75F66ED6BA1D5584FFD72CD31E + Iterated 1000 times=26D244F7ECB779675C64CFB28BC6A64C + +Set 3, vector#186: + key=BABABABABABABABABABABABABABABABA + BABABABABABABABABABABABABABABABA + plain=BABABABABABABABABABABABABABABABA + cipher=61D425780D3592ECFAC0CF1B75A041DE + decrypted=BABABABABABABABABABABABABABABABA + Iterated 100 times=5CEC3AF52EC293A0BE3166E5A028C1D2 + Iterated 1000 times=D482984E7449ACFAA24E292FDE85C35C + +Set 3, vector#187: + key=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + plain=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + cipher=4658DB86760C9B03791B31378BE192C6 + decrypted=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + Iterated 100 times=45441465C499A0086929872415C43A5C + Iterated 1000 times=08005EB84E762B85B6174B7C78042338 + +Set 3, vector#188: + key=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + plain=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + cipher=B8BA2C2DECD8544988B083A2FCB058EA + decrypted=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + Iterated 100 times=098E1FF1D17304C523CD4E8220F31494 + Iterated 1000 times=8429BA59AEA3DA7423E11E2A09F45E23 + +Set 3, vector#189: + key=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + plain=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + cipher=44FC514EA82647F0E92845191A3EFBC6 + decrypted=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + Iterated 100 times=EDCD2085ACD9426E9C1F9D2BB006D937 + Iterated 1000 times=61543150D29EC88DD3F5F0993EB5B59B + +Set 3, vector#190: + key=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + plain=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + cipher=4EB28C5D935F36F951E804A582E40C84 + decrypted=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + Iterated 100 times=5FC110A99F31422696EF984850C91BE9 + Iterated 1000 times=AE3C5BD32FBCBCF8D45907B2154ABF21 + +Set 3, vector#191: + key=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + plain=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + cipher=BC026595515EA64149360CF7AC4D0531 + decrypted=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + Iterated 100 times=E9F91099161A07DA94311F4429FF5C84 + Iterated 1000 times=33C7B27AA00491D0D6E2E698B861BB17 + +Set 3, vector#192: + key=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + plain=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + cipher=67C83A6CAC28BC4F01FAB6536E8C88FD + decrypted=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + Iterated 100 times=1746713A6DF49D1EF209550C343E7583 + Iterated 1000 times=07551845503DEBB46BE9A92D38E308F6 + +Set 3, vector#193: + key=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + plain=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + cipher=87DF0409B72556A750DA7EC7EF87AF88 + decrypted=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + Iterated 100 times=EA1F068C6A6646946AC8A6ACAB4C9875 + Iterated 1000 times=FEEED0466D79155155CB1528E3F356F9 + +Set 3, vector#194: + key=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + plain=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + cipher=E472DD7FB90600213013F0CD6BC3B70B + decrypted=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + Iterated 100 times=37A2BC6E16E311DA729F2143E0E945CC + Iterated 1000 times=ED04D541BAB4C97CE25B0A2AD938C359 + +Set 3, vector#195: + key=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + plain=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + cipher=11F89632D923495F22AADF850788B854 + decrypted=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + Iterated 100 times=934E317CE9B65EA5D0C267BB226A3884 + Iterated 1000 times=695B2B2AEAC35EF21CFBE3CEA2F4CB62 + +Set 3, vector#196: + key=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + plain=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + cipher=7C89C400F06E3AFBB12FB1C7C6CC9FA1 + decrypted=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + Iterated 100 times=83C217CBA86EEB163DC95B14610B659C + Iterated 1000 times=6952EB13B81EA53D3C33B482E46A2E37 + +Set 3, vector#197: + key=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + plain=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + cipher=F299B9A04909BB00840F1B763150D18A + decrypted=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + Iterated 100 times=DBB6D386DAA7D1EDD966FD64B92E8E5D + Iterated 1000 times=18A2A674E48E75D70780387AE6996353 + +Set 3, vector#198: + key=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + plain=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + cipher=58919302DA7A629D7609A74C816CCC1D + decrypted=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + Iterated 100 times=BAB5F600A583BC43DABE0C921E2598EC + Iterated 1000 times=1BD0CE88F27AD51369600C72730223B7 + +Set 3, vector#199: + key=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + plain=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + cipher=4A1A2E084E446CD83F301F8F429A2148 + decrypted=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + Iterated 100 times=42C6647DD1EEA3FB6A4DDE9E03678AB9 + Iterated 1000 times=6A7952D918AB142559C5DFAE9573B0D1 + +Set 3, vector#200: + key=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + plain=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + cipher=99FCB69F017F58495323A58C72824BFA + decrypted=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + Iterated 100 times=61256FE2EDA6DE1F0891DF3CCE05F005 + Iterated 1000 times=409BE7223091FC5E484D7210ACA072AF + +Set 3, vector#201: + key=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + plain=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + cipher=72A14DA5CFA0A1C6C5AA28E7EFCC62BE + decrypted=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + Iterated 100 times=9225C62BBEFE3CA7E44FF18C54223EA9 + Iterated 1000 times=00BB80BFEECD2A9E51CD77E4BAEC4141 + +Set 3, vector#202: + key=CACACACACACACACACACACACACACACACA + CACACACACACACACACACACACACACACACA + plain=CACACACACACACACACACACACACACACACA + cipher=AE27E3CDCFD66F66DAC8363B7CC036A1 + decrypted=CACACACACACACACACACACACACACACACA + Iterated 100 times=92D291A6C42D2643DBF85AEE4EFE3556 + Iterated 1000 times=F2FB262795B60C778E6A2B42F5D30192 + +Set 3, vector#203: + key=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + plain=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + cipher=A7678AB7570684FEA3ACDA2DB74368E5 + decrypted=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + Iterated 100 times=0956D2469581EE6EDFE5B03362483571 + Iterated 1000 times=B35E51D2FBE72F7BA4637D9F9CF40528 + +Set 3, vector#204: + key=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + plain=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + cipher=F81EF9B8B72E04B1B8FE79AC4BCBAD8C + decrypted=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + Iterated 100 times=7D61796848EB111DC23D4DE12FF8216C + Iterated 1000 times=AC29E797C589D1F80889A0775E3A229B + +Set 3, vector#205: + key=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + plain=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + cipher=15E658D3DD39BC5A18F01D55CD52BA37 + decrypted=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + Iterated 100 times=B91A7CDFD11576AD00EAB05663E1BEEB + Iterated 1000 times=46D57F0DC38A2959442CDC0783076D90 + +Set 3, vector#206: + key=CECECECECECECECECECECECECECECECE + CECECECECECECECECECECECECECECECE + plain=CECECECECECECECECECECECECECECECE + cipher=CB3949094AA2BC808859E6EBB80E44FA + decrypted=CECECECECECECECECECECECECECECECE + Iterated 100 times=746E37A609B34B13C183B4FCAD459117 + Iterated 1000 times=2520CB433C42FF17543915A8F1170D0B + +Set 3, vector#207: + key=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + plain=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + cipher=212AF90238A39D6D1524B21E2709765A + decrypted=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + Iterated 100 times=FA2133453664EB65DF9CB1913E35BE95 + Iterated 1000 times=D9593164EFA743A0D15FCBF762FAF99A + +Set 3, vector#208: + key=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + plain=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + cipher=E85536F0C9389950827D73B3A9625817 + decrypted=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + Iterated 100 times=5ACF42E8EA306881314670B3936346D9 + Iterated 1000 times=61BE8BD1CF5D1DCC37E3F1FB0F48F0AC + +Set 3, vector#209: + key=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + plain=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + cipher=EE0C7FF30BBA4D74A3F19EA107CA01F1 + decrypted=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + Iterated 100 times=4D088A66B5F6DD68644C368A8EA142B1 + Iterated 1000 times=00C20D397DA19D1F9EE869CCDFDD74E5 + +Set 3, vector#210: + key=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + plain=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + cipher=52135A28D25E1038E14AA81AB88FDC01 + decrypted=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + Iterated 100 times=06B73831145DB8D65E02EB927A69BDE9 + Iterated 1000 times=E5C7EA68697755B0DB20A60F01DDC08A + +Set 3, vector#211: + key=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + plain=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + cipher=522A07AF76A934AE40639A11389F0009 + decrypted=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + Iterated 100 times=A9192D8B126A9BDAD9541DF9A0AAB464 + Iterated 1000 times=4B2D3F3EB8158436944F3F597473118D + +Set 3, vector#212: + key=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + plain=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + cipher=356EBBEBF52208406E51E759BCF234E8 + decrypted=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + Iterated 100 times=C7AAAD9313A1DB3458951904D45F0B49 + Iterated 1000 times=4B39ED4CB9CE48CCE41E22BD17D55123 + +Set 3, vector#213: + key=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + plain=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + cipher=7AC8A6017FD216BEEA1D5ACAA2998F16 + decrypted=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + Iterated 100 times=EA09DD1D113CB299E0579A17DD405543 + Iterated 1000 times=A6A9D979E134F2FDF29918BBF397F7D2 + +Set 3, vector#214: + key=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + plain=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + cipher=007B72AAA2A133DF6D2BFC49DB2A9C01 + decrypted=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + Iterated 100 times=132350C0D107A1AE7FFD1A1694EC70A7 + Iterated 1000 times=8FD75CC8C25E26B0000820B9A8BB192B + +Set 3, vector#215: + key=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + plain=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + cipher=6E3494448A34F4E974749BEC60BF8AFE + decrypted=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + Iterated 100 times=84135DCC54CF8BEDA7BE3ABC8A0148E5 + Iterated 1000 times=50D44482852E46322AEFF1A2B9DCC55D + +Set 3, vector#216: + key=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + plain=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + cipher=F176CCB328EDC5295C175D47191AC5EA + decrypted=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + Iterated 100 times=C1A0724A042064C192DFF485B2AFC377 + Iterated 1000 times=D68BBCBF40ACD2FF70226A1534D777BF + +Set 3, vector#217: + key=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + plain=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + cipher=100940A2668446A14847B93631B69148 + decrypted=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + Iterated 100 times=81C339EBC7C1FD0817988BA194797730 + Iterated 1000 times=07497609C427D29EABAC0F4A5C0C6452 + +Set 3, vector#218: + key=DADADADADADADADADADADADADADADADA + DADADADADADADADADADADADADADADADA + plain=DADADADADADADADADADADADADADADADA + cipher=3A747A907B51A16C26F1B1652BC7801D + decrypted=DADADADADADADADADADADADADADADADA + Iterated 100 times=8A9A4F9416539291CA5FA3880FEE62EB + Iterated 1000 times=BB4BC91B7CA8542759B66ABAD73747AE + +Set 3, vector#219: + key=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + plain=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + cipher=27F91669B09586CF0A2FD56221817651 + decrypted=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + Iterated 100 times=0DA906415086CDA848AB546F9C808496 + Iterated 1000 times=7D4F0A2BC5823291A8EFEFA973D98F40 + +Set 3, vector#220: + key=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + plain=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + cipher=1810DF6A5F7282581F982B7C0F0F357A + decrypted=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + Iterated 100 times=D7E819B193B0C5009EFF248FA2FAAC5A + Iterated 1000 times=47DCB68B38542ECBE960CB64FF37A15D + +Set 3, vector#221: + key=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + plain=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + cipher=7B29DB43FE4C54C53743CB6565C5A098 + decrypted=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + Iterated 100 times=8123632165AB59363E849AE978E6D531 + Iterated 1000 times=0090D609A0DA98AFCEEB803B3F54874F + +Set 3, vector#222: + key=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + plain=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + cipher=A0D8040CF3F54835D3A3DEF8C1221CB8 + decrypted=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + Iterated 100 times=92304B796E15DB3C86E79670A845239C + Iterated 1000 times=5D4774FAAB4B0CE5820D0AB87D944023 + +Set 3, vector#223: + key=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + plain=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + cipher=7B92A2EFA96DAA04F5D45B9992CC4344 + decrypted=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + Iterated 100 times=992BEAFCD7E3519946B8118CBC8D2B2C + Iterated 1000 times=69DB53F274C0F1E7BDB094F8EF784A5F + +Set 3, vector#224: + key=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + plain=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + cipher=7B6A2CB3C43942C18E52C3D5976F1989 + decrypted=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + Iterated 100 times=FD6046C9E9C5A89FCC59C3C352CC5CFE + Iterated 1000 times=B07E2BC8A437289E29C99799D6AE3A6D + +Set 3, vector#225: + key=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + plain=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + cipher=77ECFF0BB072FE5D1B6FB3B70DFD6745 + decrypted=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + Iterated 100 times=99045E7F3B1A79F04D52A3CEF75A2987 + Iterated 1000 times=207F546613934AE89115A8718F21906E + +Set 3, vector#226: + key=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + plain=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + cipher=D66D538A8B70D88DCE76D4A4EB6A4766 + decrypted=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + Iterated 100 times=6387E27B189C78ECABAE19E3FDE8316E + Iterated 1000 times=71A633E43917C8E9CF32F0780C4577D8 + +Set 3, vector#227: + key=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + plain=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + cipher=C4F82E3F92133BF29C58D35F9D11C749 + decrypted=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + Iterated 100 times=6CF71C140998DF3FB54D4095FC4F7DD5 + Iterated 1000 times=67CC634CC69223210C61F9876C1D29A5 + +Set 3, vector#228: + key=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + plain=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + cipher=FC379C0A58AB25DFB847E455D99071D6 + decrypted=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + Iterated 100 times=6B94F031D4BCA35D6E9ECCB110EFF976 + Iterated 1000 times=8C835E280D60D7078B068F1C9F9DB3A1 + +Set 3, vector#229: + key=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + plain=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + cipher=177241D5588FED37394E35F7A29CAC96 + decrypted=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + Iterated 100 times=3B5EEB3E71596094FF163BEA4FD75934 + Iterated 1000 times=229AD1D3DE7519282DC4F6421654AB9C + +Set 3, vector#230: + key=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + plain=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + cipher=334629B8FB687DFF22458D9AECF431FB + decrypted=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + Iterated 100 times=346847064387B5A0BAB9862D0C7908E0 + Iterated 1000 times=C5157DA1921814BF243CC3964383F568 + +Set 3, vector#231: + key=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + plain=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + cipher=516F24438959D03AE312C8E96AE754BD + decrypted=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + Iterated 100 times=27876F8192220D8AC05F36BE8B5E4183 + Iterated 1000 times=D3A69625B22AE6F887D875F82DE07F1C + +Set 3, vector#232: + key=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + plain=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + cipher=54089FB7241C6D116E79EAE73FE1EF75 + decrypted=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + Iterated 100 times=038DD8DAEFEA02FB51C94649B17B5667 + Iterated 1000 times=524E6DC4E2917483F650A4BB1C101D31 + +Set 3, vector#233: + key=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + plain=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + cipher=892FD8EC36F38415E1B7AE7928FEEDFB + decrypted=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + Iterated 100 times=F89B1520EFCD752F8C3E0402A221D769 + Iterated 1000 times=BC6D1123B40A8B926AD2369109C2A198 + +Set 3, vector#234: + key=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + plain=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + cipher=1F58E5FCD84C19B0E7F2067C2A0527EA + decrypted=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + Iterated 100 times=C4D2609CB96ECBE22B75A21705F8EE45 + Iterated 1000 times=A8F618E827493A3D5BE31222A9A9EE9B + +Set 3, vector#235: + key=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + plain=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + cipher=547278516016D92DB5A4B631B7BB647D + decrypted=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + Iterated 100 times=264B2671AE9EF987E269692EC17ADA65 + Iterated 1000 times=754CC7CAAB1B5477A54193D73B7B44B8 + +Set 3, vector#236: + key=ECECECECECECECECECECECECECECECEC + ECECECECECECECECECECECECECECECEC + plain=ECECECECECECECECECECECECECECECEC + cipher=657E4A146B6E6E5FCB52FFBDF4A4D481 + decrypted=ECECECECECECECECECECECECECECECEC + Iterated 100 times=B5BFD89FFECED2B18BF8861BE41298C1 + Iterated 1000 times=D6E8751C690688642617EDF552734051 + +Set 3, vector#237: + key=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + plain=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + cipher=01A21094BC5796720499D88B3AE6BE0C + decrypted=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + Iterated 100 times=D9227323AFB4BB67B087D64B8CB998CA + Iterated 1000 times=6BD8A1D0FFC000F4C0AD4F885C2619C0 + +Set 3, vector#238: + key=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + plain=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + cipher=CCF792B6BDB6AB5B466EDF267907DB9A + decrypted=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + Iterated 100 times=AD59F38AE8C125235FCC709A2B053D84 + Iterated 1000 times=24399A3A79E53673ECBD0848778D5571 + +Set 3, vector#239: + key=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + plain=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + cipher=23447A4BE4E27F31CC14FEE0C256C048 + decrypted=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + Iterated 100 times=93AFB51D74D7377B9A6965002B39E9A8 + Iterated 1000 times=5A31B818DD8FF23898F0E2162B7D6BE2 + +Set 3, vector#240: + key=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + plain=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + cipher=40A450077E7CA713EF08C894226FDB14 + decrypted=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + Iterated 100 times=329D39A133194D446062A7ADE671B5C3 + Iterated 1000 times=11473F2544BCC06AAFD56E0FC6E210F2 + +Set 3, vector#241: + key=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + plain=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + cipher=8CF5B4C3C2082BBE97993463FB94592B + decrypted=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + Iterated 100 times=891F4D3106427239BD8DE60097B3E1C4 + Iterated 1000 times=F65E79B4D348C98AFC12511FB92CF21D + +Set 3, vector#242: + key=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + plain=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + cipher=15AEF8764216E1B8F64F94ED7620E9A7 + decrypted=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + Iterated 100 times=271C94345AF2581EE88B348600C94824 + Iterated 1000 times=7EEED77B3C0A03AC2CA49323D945551E + +Set 3, vector#243: + key=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + plain=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + cipher=8D4878C85E83E79C5AEF911946EF0503 + decrypted=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + Iterated 100 times=C050FB0CC8117FDA967B61B1B61B7C62 + Iterated 1000 times=5D8B58530E8C5FE6ED5615020A8884E8 + +Set 3, vector#244: + key=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + plain=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + cipher=65168A695521BDEAF492AD9505A48CEF + decrypted=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + Iterated 100 times=481D771D7671B8CDE8B2A90AB23468D4 + Iterated 1000 times=DECCF961AF7A6C26279E64ECCC98C5DD + +Set 3, vector#245: + key=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + plain=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + cipher=8A8A9E9F40A0741B0CEC093A55CD158A + decrypted=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + Iterated 100 times=5FF9442F1B3ACC6A25124A549908220E + Iterated 1000 times=9D9CA6E47F275B06244C7838724EB1EB + +Set 3, vector#246: + key=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + plain=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + cipher=B61733C4A63AD2E1DD551EB41185FECA + decrypted=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + Iterated 100 times=41AF129A4BC5840928D2AB2797143DF0 + Iterated 1000 times=787A08B890366FE4C024A6F248EB7FFE + +Set 3, vector#247: + key=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + plain=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + cipher=AB0C95378842984E645B2C718F4E0F38 + decrypted=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + Iterated 100 times=830BC3949B91B9FEF49D8BEEAF584E29 + Iterated 1000 times=59CBD028FAC84A6E922C3F8802409DED + +Set 3, vector#248: + key=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + plain=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + cipher=9BBE5ABC18F1F9CC079FED4114652642 + decrypted=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + Iterated 100 times=98A495E0BEABB6600E0A85F85D7186C3 + Iterated 1000 times=00FAA406168FC29A2CB754E89C75A3FC + +Set 3, vector#249: + key=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + plain=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + cipher=9439F228B5F5E92939B575C7B54ED493 + decrypted=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + Iterated 100 times=10A67D47362F2262A49D562222A69966 + Iterated 1000 times=91A3FF2ACD8FFD3DE51F62BD8C6B3822 + +Set 3, vector#250: + key=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + plain=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + cipher=A708491BFDE341D018D9F967B5F0F72B + decrypted=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + Iterated 100 times=D2948ED11D34C20310C7513490F5743F + Iterated 1000 times=B705396687FEF845210AEDF5D2087729 + +Set 3, vector#251: + key=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + plain=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + cipher=44A032B93DB1406F276EB2C12972D313 + decrypted=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + Iterated 100 times=37CAF7E99FC6DEB866E5CEB3C675A805 + Iterated 1000 times=6A14FD6F7E464DBE2A63C2F7E4705319 + +Set 3, vector#252: + key=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + plain=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + cipher=134F0BC8A3D632DB382BF93B31A88376 + decrypted=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + Iterated 100 times=4DE553F3CCA86F7F664282459E63299E + Iterated 1000 times=3057C98109929BCA8AD38C699FA88821 + +Set 3, vector#253: + key=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + plain=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + cipher=32B3A0F1686256BB419C485044471311 + decrypted=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + Iterated 100 times=E7E5DFC2D48C40292D3C046E25F21A5C + Iterated 1000 times=8794BFE0FB6D9E8B00EAD55D047EB70E + +Set 3, vector#254: + key=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + plain=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + cipher=C74507A54C0D24CE4E8F7A52D2A490EF + decrypted=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + Iterated 100 times=32EB85E72545ECE29578492E60E98625 + Iterated 1000 times=F3324FE4F1AEE89C7E760C30157AC591 + +Set 3, vector#255: + key=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + plain=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + cipher=D5F93D6D3311CB309F23621B02FBD5E2 + decrypted=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + Iterated 100 times=B2EE10405EB926A4CF3814CAA6B74C0A + Iterated 1000 times=129032E7B0C835A75971E8C1E2025698 + +Test vectors -- set 4 +===================== + +Set 4, vector# 0: + key=000102030405060708090A0B0C0D0E0F + 101112131415161718191A1B1C1D1E1F + plain=00112233445566778899AABBCCDDEEFF + cipher=8EA2B7CA516745BFEAFC49904B496089 + decrypted=00112233445566778899AABBCCDDEEFF + Iterated 100 times=4131F6807C4C8DFCE9758DA7A6321137 + Iterated 1000 times=FBE6E70F40A246E81B19EEE74949123C + +Set 4, vector# 1: + key=2BD6459F82C5B300952C49104881FF48 + 2BD6459F82C5B300952C49104881FF48 + plain=EA024714AD5C4D84EA024714AD5C4D84 + cipher=6A78191707F9FE76D151F241F3DD0BF9 + decrypted=EA024714AD5C4D84EA024714AD5C4D84 + Iterated 100 times=2F245B83D5E91A6B85D9CC75C43DF24E + Iterated 1000 times=1F121DC0A9B54FB97A872E346952E176 + +Test vectors -- set 5 +===================== + +Set 5, vector# 0: + key=80000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=1F226E7B321956FF1E54CD7BBF1D32F2 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 1: + key=40000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=D2F256550D71DD3FB19AAC3757391BF4 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 2: + key=20000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=E959EEE92FB2E6B8D14B81E4C155A72E + encrypted=00000000000000000000000000000000 + +Set 5, vector# 3: + key=10000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=6D8ADC2F1F54D4E66396D17BD8CA6DD1 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 4: + key=08000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=606AD304C9B34ED6ECE1605005B57F7D + encrypted=00000000000000000000000000000000 + +Set 5, vector# 5: + key=04000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=33AA9B310D6AF867BA1ADAFEA99700A8 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 6: + key=02000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=29B662A8795EC0704CF9016F92464F65 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 7: + key=01000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=ADA0E1B489566EB9FC27F1EDD76220CC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 8: + key=00800000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=5ACDA4873B5F695AF1F6416354B9FBF6 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 9: + key=00400000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=B61C1A78BD4B413D5528EA6A65D7D573 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 10: + key=00200000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=A8211A09DCFA0759360147F9650A5EEB + encrypted=00000000000000000000000000000000 + +Set 5, vector# 11: + key=00100000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=294FC3836AA64E9415342BA1A3514135 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 12: + key=00080000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=C90792A528714FFDEC52AC93644FBAAC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 13: + key=00040000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=6056A4906668C172F58DD9CB56BA6749 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 14: + key=00020000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=719494EBEAECBE0BCBFF07A278D0CD06 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 15: + key=00010000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=1A689DBA3A4D2A11ACD888EF4D515406 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 16: + key=00008000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=408A70EF4AEB4802A1B63C7987CE0824 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 17: + key=00004000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=FB336CD15FCBB5C6957E422C10B20F58 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 18: + key=00002000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=7D78881B35A34DFC197A974D80D1FE52 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 19: + key=00001000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=C835CD1FE7071CB0501547085C315D4A + encrypted=00000000000000000000000000000000 + +Set 5, vector# 20: + key=00000800000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=B54E32902B2466F66744754EF99A7835 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 21: + key=00000400000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=968D4BB1825F3081E3D0844128AB9395 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 22: + key=00000200000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=B0DB871F883153C43DD2C3196032E83A + encrypted=00000000000000000000000000000000 + +Set 5, vector# 23: + key=00000100000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=0DF19895637D6F2FE97EB8D2E865A55F + encrypted=00000000000000000000000000000000 + +Set 5, vector# 24: + key=00000080000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=5D823E9E8EC9225AAAAD53F39F39A0BC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 25: + key=00000040000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=FB3C249456116CC591A666C6EFA4AECD + encrypted=00000000000000000000000000000000 + +Set 5, vector# 26: + key=00000020000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=5DE070BB7EDF46749B2971B90F713A56 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 27: + key=00000010000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=A4EE92201F5BA7B86E1519DA243F370C + encrypted=00000000000000000000000000000000 + +Set 5, vector# 28: + key=00000008000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=B8BAE7B8D93A548AC992D469751F984D + encrypted=00000000000000000000000000000000 + +Set 5, vector# 29: + key=00000004000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=3A650F71F2CF24AA7E57D4FEA18CD393 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 30: + key=00000002000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=0A822676712F2E0B382164A099A2B086 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 31: + key=00000001000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=479DCD3859A7CF20FB3F1C1AFCBD9E32 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 32: + key=00000000800000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=48E2ADD0A4B0990AEAD1AC7D58321755 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 33: + key=00000000400000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=C3068DF523B6484CF925024A20FE4F84 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 34: + key=00000000200000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=BDA7A0175F8B7E69A6FC2AD975CF18D6 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 35: + key=00000000100000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=DCA50DF49298130A1F0B8DC5E058F30D + encrypted=00000000000000000000000000000000 + +Set 5, vector# 36: + key=00000000080000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=D32503616B6CF6BBC3362CD7F0EEDFAB + encrypted=00000000000000000000000000000000 + +Set 5, vector# 37: + key=00000000040000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=D80D5BAC4166C2A01A3399A78F6E6D7D + encrypted=00000000000000000000000000000000 + +Set 5, vector# 38: + key=00000000020000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=58DEFCA6EAFE9A2FABE8B3F34B854F21 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 39: + key=00000000010000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=F173B6DC9241D25DC2315D8875C224C4 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 40: + key=00000000008000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=40B6813D606419D0846D67BE2B293349 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 41: + key=00000000004000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=EF4E73A01BC03272536B414A1795C95E + encrypted=00000000000000000000000000000000 + +Set 5, vector# 42: + key=00000000002000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=2D6F823D647A949339C5623C5BA2905E + encrypted=00000000000000000000000000000000 + +Set 5, vector# 43: + key=00000000001000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=17900AB25FC3E3F95834B41911C7947C + encrypted=00000000000000000000000000000000 + +Set 5, vector# 44: + key=00000000000800000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=9ACAFACB40BCDB44703F8EFC5E0E2ACF + encrypted=00000000000000000000000000000000 + +Set 5, vector# 45: + key=00000000000400000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=E106CADC47334FBB88CB487016077588 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 46: + key=00000000000200000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=E0CF6BAA2049DB1D6A222293F2F5C2C5 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 47: + key=00000000000100000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=7728C224291FEB353CBD9AD6095BD4D1 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 48: + key=00000000000080000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=7ED6D9CE63768935E2088C70B5051793 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 49: + key=00000000000040000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=AED07915E394790A3CAA48FF66932D90 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 50: + key=00000000000020000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=861E2F29F12FBE2A95936F7211E7DBA1 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 51: + key=00000000000010000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=35069F309E2C5C43AAEA90624020E553 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 52: + key=00000000000008000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=CE49A7C560FB741AC4F12E236F46CDEC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 53: + key=00000000000004000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=C7C223332C0EA0431312AF1C14230A51 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 54: + key=00000000000002000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=DBE1BD9FE4F6CD6B0E507A7457F7AD09 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 55: + key=00000000000001000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=FDA9E7392E5D80CC9056831DF72004AA + encrypted=00000000000000000000000000000000 + +Set 5, vector# 56: + key=00000000000000800000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=D188C287C73E67671A618FD637D34F7C + encrypted=00000000000000000000000000000000 + +Set 5, vector# 57: + key=00000000000000400000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=507A26424446E4603A8743E648CF8FA2 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 58: + key=00000000000000200000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=16B1EB300F5546253318A7247D6E2573 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 59: + key=00000000000000100000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=5899F178EABF54BC8A6C6044EB294D3E + encrypted=00000000000000000000000000000000 + +Set 5, vector# 60: + key=00000000000000080000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=F109E6E20A2E5838D01DBB0461359DE7 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 61: + key=00000000000000040000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=EBB36ED9D2954D79F34664F11E46358B + encrypted=00000000000000000000000000000000 + +Set 5, vector# 62: + key=00000000000000020000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=E897F844289ED810B069082F8EF1BF0F + encrypted=00000000000000000000000000000000 + +Set 5, vector# 63: + key=00000000000000010000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=1F1D0F799E21459A53007B241BA3B0C8 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 64: + key=00000000000000008000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=C68B307F280236B374BD2B30607A28E2 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 65: + key=00000000000000004000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=00B344F1ACAF5DED62296E43C3DF18BB + encrypted=00000000000000000000000000000000 + +Set 5, vector# 66: + key=00000000000000002000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=85B66990163A7C13E1867379CA5536D0 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 67: + key=00000000000000001000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=6585FB51ADC24B131C122CDD026F09E0 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 68: + key=00000000000000000800000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=2B247E0AA21BA9D59F60FC53B54311FE + encrypted=00000000000000000000000000000000 + +Set 5, vector# 69: + key=00000000000000000400000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=AF9DE97C5A31386D09503C561979195E + encrypted=00000000000000000000000000000000 + +Set 5, vector# 70: + key=00000000000000000200000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=714166D59E379F70F27DC4225C768850 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 71: + key=00000000000000000100000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=B3BB663DB3AC8240FD0A6C25EB428117 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 72: + key=00000000000000000080000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=1290BD5284BBBB807BDA7DD48A4C2C09 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 73: + key=00000000000000000040000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=FD1F3AB50F6A0D66317441608D90F35C + encrypted=00000000000000000000000000000000 + +Set 5, vector# 74: + key=00000000000000000020000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=6F5B77F0CB778228B5FCA06B9CC06714 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 75: + key=00000000000000000010000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=8B5DC9328418D43DF7D03DB22ECB6006 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 76: + key=00000000000000000008000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=89412C068454F88BF3F5FACDFCFBB78D + encrypted=00000000000000000000000000000000 + +Set 5, vector# 77: + key=00000000000000000004000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=1083984254F25057ACEC3E5BED6653F1 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 78: + key=00000000000000000002000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=D2B930B30960B724039E6894ED808097 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 79: + key=00000000000000000001000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=DBC606CE407213F78F57E077BCEC991C + encrypted=00000000000000000000000000000000 + +Set 5, vector# 80: + key=00000000000000000000800000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=3D7E9809AB4CDB0D58BC937910D0C110 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 81: + key=00000000000000000000400000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=15D769CE1E9E5A251F0BAACFDD3167AC + encrypted=00000000000000000000000000000000 + +Set 5, vector# 82: + key=00000000000000000000200000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=2BE4CFAD0FADE9C34C34D27D7B8C8A52 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 83: + key=00000000000000000000100000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=C9DCA60B4615D0330B51F74E860AC3D1 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 84: + key=00000000000000000000080000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=85A7A1646212252EEF0E2A8EF59D9875 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 85: + key=00000000000000000000040000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=BC198D096271D992F48FAAF1DF4D68F9 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 86: + key=00000000000000000000020000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=1DDA940243368F98E427B694067E0FF0 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 87: + key=00000000000000000000010000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=90455C22215B186746144DF5A86A584D + encrypted=00000000000000000000000000000000 + +Set 5, vector# 88: + key=00000000000000000000008000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=7DD90B1891F3836A375EF4632901A133 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 89: + key=00000000000000000000004000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=D5DFB22886C1E3C1D3681844AD677703 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 90: + key=00000000000000000000002000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=0A39A8E21A909AE6D405E00AFBDBC0DD + encrypted=00000000000000000000000000000000 + +Set 5, vector# 91: + key=00000000000000000000001000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=27A29C6F14C5C6F4F5BC23CA741A18EB + encrypted=00000000000000000000000000000000 + +Set 5, vector# 92: + key=00000000000000000000000800000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=FE0D5E17C8E14F5BB6874385E92981F3 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 93: + key=00000000000000000000000400000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=8B5BBE4E6058897322BF0595951EEDE3 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 94: + key=00000000000000000000000200000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=674985835FD72F965C52002EB75FFD95 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 95: + key=00000000000000000000000100000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=88111939324EAB3666D52B784C118EE4 + encrypted=00000000000000000000000000000000 + +Set 5, vector# 96: + key=00000000000000000000000080000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=B5CD3F1154626E2FE6433E31EDC8F87F + encrypted=00000000000000000000000000000000 + +Set 5, vector# 97: + key=00000000000000000000000040000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=D367CB94CBF208982AD7B7B934E2BB8F + encrypted=00000000000000000000000000000000 + +Set 5, vector# 98: + key=00000000000000000000000020000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=C0454C69E978B42DA052F177F03044EB + encrypted=00000000000000000000000000000000 + +Set 5, vector# 99: + key=00000000000000000000000010000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=4FE554CEC9F70EEC12C50A97B0F21E42 + encrypted=00000000000000000000000000000000 + +Set 5, vector#100: + key=00000000000000000000000008000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=A6345F950C36D8D40986B9EB2A424372 + encrypted=00000000000000000000000000000000 + +Set 5, vector#101: + key=00000000000000000000000004000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=6801F0F3591BF79D29A4328C937224AE + encrypted=00000000000000000000000000000000 + +Set 5, vector#102: + key=00000000000000000000000002000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=AEF3661635F9895C39F505A87FC282FC + encrypted=00000000000000000000000000000000 + +Set 5, vector#103: + key=00000000000000000000000001000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=32BAA2D278625A73F03B3B58FACC34AF + encrypted=00000000000000000000000000000000 + +Set 5, vector#104: + key=00000000000000000000000000800000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=6D026898AC3623BBF4213D35BAC4A944 + encrypted=00000000000000000000000000000000 + +Set 5, vector#105: + key=00000000000000000000000000400000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=CCF9D980ED7663534D8F78A238B1007C + encrypted=00000000000000000000000000000000 + +Set 5, vector#106: + key=00000000000000000000000000200000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=E4542C5746F7F9CF0F30A238392B9BB5 + encrypted=00000000000000000000000000000000 + +Set 5, vector#107: + key=00000000000000000000000000100000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=96C38155C9C1F8CB53AEB80BE9B7B52D + encrypted=00000000000000000000000000000000 + +Set 5, vector#108: + key=00000000000000000000000000080000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=8DF973C4E218AD9107D103A2175837AA + encrypted=00000000000000000000000000000000 + +Set 5, vector#109: + key=00000000000000000000000000040000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=BECEB4FAE343BC52313FE9748386960D + encrypted=00000000000000000000000000000000 + +Set 5, vector#110: + key=00000000000000000000000000020000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=D58FD58E79160631D0FC69B7A79DAE9D + encrypted=00000000000000000000000000000000 + +Set 5, vector#111: + key=00000000000000000000000000010000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=00A241D12F8F813C8A1F911BA0970DEF + encrypted=00000000000000000000000000000000 + +Set 5, vector#112: + key=00000000000000000000000000008000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=9A8D15F5B8D14795EAB6063C8C645AFB + encrypted=00000000000000000000000000000000 + +Set 5, vector#113: + key=00000000000000000000000000004000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=5C7EAA6D40CF8E53A3717B33D6704742 + encrypted=00000000000000000000000000000000 + +Set 5, vector#114: + key=00000000000000000000000000002000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=00D8A0BF80A63EA06DF8D7058E157CCF + encrypted=00000000000000000000000000000000 + +Set 5, vector#115: + key=00000000000000000000000000001000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=7A22FF5A1BA98A0546B82F23760909FE + encrypted=00000000000000000000000000000000 + +Set 5, vector#116: + key=00000000000000000000000000000800 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=752E8D584F33D98515698033E8444C99 + encrypted=00000000000000000000000000000000 + +Set 5, vector#117: + key=00000000000000000000000000000400 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=7377E80E885D6AD4CC495372A9D0FD58 + encrypted=00000000000000000000000000000000 + +Set 5, vector#118: + key=00000000000000000000000000000200 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=8FEDA0A3A42249963A38F61587C392AA + encrypted=00000000000000000000000000000000 + +Set 5, vector#119: + key=00000000000000000000000000000100 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=8042025242346687D2BCF9B02D5D11D1 + encrypted=00000000000000000000000000000000 + +Set 5, vector#120: + key=00000000000000000000000000000080 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=1B58F1DF5D280E06A9FDC2BD8FF727CE + encrypted=00000000000000000000000000000000 + +Set 5, vector#121: + key=00000000000000000000000000000040 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=AEB7E8218166EB4719CA820511F6695B + encrypted=00000000000000000000000000000000 + +Set 5, vector#122: + key=00000000000000000000000000000020 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=D1A5CD57D162769DB500BAF72669B32D + encrypted=00000000000000000000000000000000 + +Set 5, vector#123: + key=00000000000000000000000000000010 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=239909B31F95CFE3346514CAF9C17A2F + encrypted=00000000000000000000000000000000 + +Set 5, vector#124: + key=00000000000000000000000000000008 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=D2013577C32FC3585C84D39AF4A2E005 + encrypted=00000000000000000000000000000000 + +Set 5, vector#125: + key=00000000000000000000000000000004 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=C099D826D49D43D63091B6857AAABD9B + encrypted=00000000000000000000000000000000 + +Set 5, vector#126: + key=00000000000000000000000000000002 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=5ACC0EE5FE8DFD4765C4607373C12524 + encrypted=00000000000000000000000000000000 + +Set 5, vector#127: + key=00000000000000000000000000000001 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=BE500610E5E28199669230A67DB04CD1 + encrypted=00000000000000000000000000000000 + +Set 5, vector#128: + key=00000000000000000000000000000000 + 80000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=49297701ED934375785280B633B0EB59 + encrypted=00000000000000000000000000000000 + +Set 5, vector#129: + key=00000000000000000000000000000000 + 40000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=C904D01A0E6B6B4AD4A520B1314F80B7 + encrypted=00000000000000000000000000000000 + +Set 5, vector#130: + key=00000000000000000000000000000000 + 20000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=D8FC98C4E0D5298091589E90343F17AA + encrypted=00000000000000000000000000000000 + +Set 5, vector#131: + key=00000000000000000000000000000000 + 10000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=B7B26EBA17F19CE78C839E5ADAD0F874 + encrypted=00000000000000000000000000000000 + +Set 5, vector#132: + key=00000000000000000000000000000000 + 08000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=A96EE226CD43F226E50EF716C334B737 + encrypted=00000000000000000000000000000000 + +Set 5, vector#133: + key=00000000000000000000000000000000 + 04000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=1BD4D4952E88E9C19298B415BB76E805 + encrypted=00000000000000000000000000000000 + +Set 5, vector#134: + key=00000000000000000000000000000000 + 02000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=CAE04405CE78B0611BBB008EB9AAAC4A + encrypted=00000000000000000000000000000000 + +Set 5, vector#135: + key=00000000000000000000000000000000 + 01000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=E499A4D865D5C6F33C322D017C74D66C + encrypted=00000000000000000000000000000000 + +Set 5, vector#136: + key=00000000000000000000000000000000 + 00800000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=92CECE369C5728C587679A7C93AEBBAA + encrypted=00000000000000000000000000000000 + +Set 5, vector#137: + key=00000000000000000000000000000000 + 00400000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=1FC631446BA9FB136086200D9D9489FE + encrypted=00000000000000000000000000000000 + +Set 5, vector#138: + key=00000000000000000000000000000000 + 00200000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=2E25BC529E5106D1B499CD981D1A3377 + encrypted=00000000000000000000000000000000 + +Set 5, vector#139: + key=00000000000000000000000000000000 + 00100000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=F3C4A2C615EA8D9D0361807D497B02B8 + encrypted=00000000000000000000000000000000 + +Set 5, vector#140: + key=00000000000000000000000000000000 + 00080000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=F0E15055D85B1410E8B2DFA797731A29 + encrypted=00000000000000000000000000000000 + +Set 5, vector#141: + key=00000000000000000000000000000000 + 00040000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=74328C3C5F64998FEB4AD34A58F2C0A3 + encrypted=00000000000000000000000000000000 + +Set 5, vector#142: + key=00000000000000000000000000000000 + 00020000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=60AF0378F771945E758D5AD6ECB32A27 + encrypted=00000000000000000000000000000000 + +Set 5, vector#143: + key=00000000000000000000000000000000 + 00010000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=205CCCAF5A85E8ED462A96FB643DE48E + encrypted=00000000000000000000000000000000 + +Set 5, vector#144: + key=00000000000000000000000000000000 + 00008000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=49AD7F0B6D18CB857A566580F9A577BD + encrypted=00000000000000000000000000000000 + +Set 5, vector#145: + key=00000000000000000000000000000000 + 00004000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=286285E96A7F4A4C56CC48BA26437ED5 + encrypted=00000000000000000000000000000000 + +Set 5, vector#146: + key=00000000000000000000000000000000 + 00002000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=B5984F96D5FD4680ECC8F194096DE0B7 + encrypted=00000000000000000000000000000000 + +Set 5, vector#147: + key=00000000000000000000000000000000 + 00001000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=91D5BD6930DC463464604F73B055E8ED + encrypted=00000000000000000000000000000000 + +Set 5, vector#148: + key=00000000000000000000000000000000 + 00000800000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=3FDAEB6473DC671F03A001BAF7EF1099 + encrypted=00000000000000000000000000000000 + +Set 5, vector#149: + key=00000000000000000000000000000000 + 00000400000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=68C5C489FD1464F411FC5A0D405D2F23 + encrypted=00000000000000000000000000000000 + +Set 5, vector#150: + key=00000000000000000000000000000000 + 00000200000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=174662355D28520D4280442DA46A7DCA + encrypted=00000000000000000000000000000000 + +Set 5, vector#151: + key=00000000000000000000000000000000 + 00000100000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=3C3B6F0B797AFCF7B87BADF5A77919F3 + encrypted=00000000000000000000000000000000 + +Set 5, vector#152: + key=00000000000000000000000000000000 + 00000080000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=79FE075231A20A0905A8FA6F0ACAE20D + encrypted=00000000000000000000000000000000 + +Set 5, vector#153: + key=00000000000000000000000000000000 + 00000040000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=01879563D0654998773B2C3430D99052 + encrypted=00000000000000000000000000000000 + +Set 5, vector#154: + key=00000000000000000000000000000000 + 00000020000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=37FC00B0DCCF1C44D7978E5CF8BE9ABE + encrypted=00000000000000000000000000000000 + +Set 5, vector#155: + key=00000000000000000000000000000000 + 00000010000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=464E666E3718BFBAA61EF3B55DB832C2 + encrypted=00000000000000000000000000000000 + +Set 5, vector#156: + key=00000000000000000000000000000000 + 00000008000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=E990A719694EB170B579859A45E1B6B6 + encrypted=00000000000000000000000000000000 + +Set 5, vector#157: + key=00000000000000000000000000000000 + 00000004000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=B7611A1F719269810A27A4EC357FADDC + encrypted=00000000000000000000000000000000 + +Set 5, vector#158: + key=00000000000000000000000000000000 + 00000002000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=A30CCFC0AFA43B4D22A591FEC244B719 + encrypted=00000000000000000000000000000000 + +Set 5, vector#159: + key=00000000000000000000000000000000 + 00000001000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=F5E85CB80B844C21F1AC5B9CBD2FB238 + encrypted=00000000000000000000000000000000 + +Set 5, vector#160: + key=00000000000000000000000000000000 + 00000000800000000000000000000000 + cipher=00000000000000000000000000000000 + plain=99097BD8F6E2D6D9FC7692EB79B4F6E6 + encrypted=00000000000000000000000000000000 + +Set 5, vector#161: + key=00000000000000000000000000000000 + 00000000400000000000000000000000 + cipher=00000000000000000000000000000000 + plain=E6DAFC0061415B986FAE98FB8A8CEC4F + encrypted=00000000000000000000000000000000 + +Set 5, vector#162: + key=00000000000000000000000000000000 + 00000000200000000000000000000000 + cipher=00000000000000000000000000000000 + plain=144DAEB80F2C6308C6FB9FE71141DADF + encrypted=00000000000000000000000000000000 + +Set 5, vector#163: + key=00000000000000000000000000000000 + 00000000100000000000000000000000 + cipher=00000000000000000000000000000000 + plain=7A7A5B34583ED79BDE0A56189609F937 + encrypted=00000000000000000000000000000000 + +Set 5, vector#164: + key=00000000000000000000000000000000 + 00000000080000000000000000000000 + cipher=00000000000000000000000000000000 + plain=EB533D02AB399235538E57032325099C + encrypted=00000000000000000000000000000000 + +Set 5, vector#165: + key=00000000000000000000000000000000 + 00000000040000000000000000000000 + cipher=00000000000000000000000000000000 + plain=8D5086FE2AF1DD93712150247AB73636 + encrypted=00000000000000000000000000000000 + +Set 5, vector#166: + key=00000000000000000000000000000000 + 00000000020000000000000000000000 + cipher=00000000000000000000000000000000 + plain=1F2C9439D76A6B2E377AD4727374234B + encrypted=00000000000000000000000000000000 + +Set 5, vector#167: + key=00000000000000000000000000000000 + 00000000010000000000000000000000 + cipher=00000000000000000000000000000000 + plain=E61AC5B4DE0B2FCB8B644894DB33E975 + encrypted=00000000000000000000000000000000 + +Set 5, vector#168: + key=00000000000000000000000000000000 + 00000000008000000000000000000000 + cipher=00000000000000000000000000000000 + plain=524CF4890251D9CA5468F85D29471DC3 + encrypted=00000000000000000000000000000000 + +Set 5, vector#169: + key=00000000000000000000000000000000 + 00000000004000000000000000000000 + cipher=00000000000000000000000000000000 + plain=7A304A0ADB5A999895D55552CF7024C7 + encrypted=00000000000000000000000000000000 + +Set 5, vector#170: + key=00000000000000000000000000000000 + 00000000002000000000000000000000 + cipher=00000000000000000000000000000000 + plain=C160409BE601AC459333CD6111995E3B + encrypted=00000000000000000000000000000000 + +Set 5, vector#171: + key=00000000000000000000000000000000 + 00000000001000000000000000000000 + cipher=00000000000000000000000000000000 + plain=DFB6BA7FA560141B2E36223D3F512772 + encrypted=00000000000000000000000000000000 + +Set 5, vector#172: + key=00000000000000000000000000000000 + 00000000000800000000000000000000 + cipher=00000000000000000000000000000000 + plain=11D2686C1FC78F374BD08B0A06114573 + encrypted=00000000000000000000000000000000 + +Set 5, vector#173: + key=00000000000000000000000000000000 + 00000000000400000000000000000000 + cipher=00000000000000000000000000000000 + plain=0A3A1BE194629BBE82AEB6321C4017B8 + encrypted=00000000000000000000000000000000 + +Set 5, vector#174: + key=00000000000000000000000000000000 + 00000000000200000000000000000000 + cipher=00000000000000000000000000000000 + plain=0E1C0C21F6AED4D514D5B21F3DDCD2A8 + encrypted=00000000000000000000000000000000 + +Set 5, vector#175: + key=00000000000000000000000000000000 + 00000000000100000000000000000000 + cipher=00000000000000000000000000000000 + plain=10FA91DEA86AE10CEBAE342D8B4EB650 + encrypted=00000000000000000000000000000000 + +Set 5, vector#176: + key=00000000000000000000000000000000 + 00000000000080000000000000000000 + cipher=00000000000000000000000000000000 + plain=D401D01F1C40CDDA8975A3C4DCD022B2 + encrypted=00000000000000000000000000000000 + +Set 5, vector#177: + key=00000000000000000000000000000000 + 00000000000040000000000000000000 + cipher=00000000000000000000000000000000 + plain=9863E30FC8A72DDB894BD4C53349CB7E + encrypted=00000000000000000000000000000000 + +Set 5, vector#178: + key=00000000000000000000000000000000 + 00000000000020000000000000000000 + cipher=00000000000000000000000000000000 + plain=EBEE510525DB64D72574BBEF36DA03FD + encrypted=00000000000000000000000000000000 + +Set 5, vector#179: + key=00000000000000000000000000000000 + 00000000000010000000000000000000 + cipher=00000000000000000000000000000000 + plain=36178F62FD879943B95BE780146D17A1 + encrypted=00000000000000000000000000000000 + +Set 5, vector#180: + key=00000000000000000000000000000000 + 00000000000008000000000000000000 + cipher=00000000000000000000000000000000 + plain=429C5DAC040D4195DC06F24D305E00FF + encrypted=00000000000000000000000000000000 + +Set 5, vector#181: + key=00000000000000000000000000000000 + 00000000000004000000000000000000 + cipher=00000000000000000000000000000000 + plain=37B56C7E6A6B95C6D4B2185224C61061 + encrypted=00000000000000000000000000000000 + +Set 5, vector#182: + key=00000000000000000000000000000000 + 00000000000002000000000000000000 + cipher=00000000000000000000000000000000 + plain=09B9E8A8B2564676718E087C5B3C3259 + encrypted=00000000000000000000000000000000 + +Set 5, vector#183: + key=00000000000000000000000000000000 + 00000000000001000000000000000000 + cipher=00000000000000000000000000000000 + plain=C946DC972AF2CBDEC2CEE65732DD68EF + encrypted=00000000000000000000000000000000 + +Set 5, vector#184: + key=00000000000000000000000000000000 + 00000000000000800000000000000000 + cipher=00000000000000000000000000000000 + plain=784AFBBAC474A69AC242AF128A5131F3 + encrypted=00000000000000000000000000000000 + +Set 5, vector#185: + key=00000000000000000000000000000000 + 00000000000000400000000000000000 + cipher=00000000000000000000000000000000 + plain=F34294E55620F6CDE147AEE1D97704BA + encrypted=00000000000000000000000000000000 + +Set 5, vector#186: + key=00000000000000000000000000000000 + 00000000000000200000000000000000 + cipher=00000000000000000000000000000000 + plain=0DEF558F7EA079877C93B4EE882EECD2 + encrypted=00000000000000000000000000000000 + +Set 5, vector#187: + key=00000000000000000000000000000000 + 00000000000000100000000000000000 + cipher=00000000000000000000000000000000 + plain=AA518AA978498CE449805B20F858DF83 + encrypted=00000000000000000000000000000000 + +Set 5, vector#188: + key=00000000000000000000000000000000 + 00000000000000080000000000000000 + cipher=00000000000000000000000000000000 + plain=0E4627F3D992D7D6274B55DEEBFC93D2 + encrypted=00000000000000000000000000000000 + +Set 5, vector#189: + key=00000000000000000000000000000000 + 00000000000000040000000000000000 + cipher=00000000000000000000000000000000 + plain=F85F42CC17F13FA7D1A0E61FDC764CCC + encrypted=00000000000000000000000000000000 + +Set 5, vector#190: + key=00000000000000000000000000000000 + 00000000000000020000000000000000 + cipher=00000000000000000000000000000000 + plain=262CD637E91E0EFBCEDA1CA2D9AA52E9 + encrypted=00000000000000000000000000000000 + +Set 5, vector#191: + key=00000000000000000000000000000000 + 00000000000000010000000000000000 + cipher=00000000000000000000000000000000 + plain=FC38380AFBE904EFE7C6F7ED5C5BDC30 + encrypted=00000000000000000000000000000000 + +Set 5, vector#192: + key=00000000000000000000000000000000 + 00000000000000008000000000000000 + cipher=00000000000000000000000000000000 + plain=1E04467777A9BEB583B61A6AF5D9C9A5 + encrypted=00000000000000000000000000000000 + +Set 5, vector#193: + key=00000000000000000000000000000000 + 00000000000000004000000000000000 + cipher=00000000000000000000000000000000 + plain=CCAA457E0F143E06E599376F6C65AF69 + encrypted=00000000000000000000000000000000 + +Set 5, vector#194: + key=00000000000000000000000000000000 + 00000000000000002000000000000000 + cipher=00000000000000000000000000000000 + plain=D341DD339685089DB5F70990F74B70DE + encrypted=00000000000000000000000000000000 + +Set 5, vector#195: + key=00000000000000000000000000000000 + 00000000000000001000000000000000 + cipher=00000000000000000000000000000000 + plain=E0123A8D6A3197509B1769AE6B62B82A + encrypted=00000000000000000000000000000000 + +Set 5, vector#196: + key=00000000000000000000000000000000 + 00000000000000000800000000000000 + cipher=00000000000000000000000000000000 + plain=B29356B62290FDBCF311AD270DE350FF + encrypted=00000000000000000000000000000000 + +Set 5, vector#197: + key=00000000000000000000000000000000 + 00000000000000000400000000000000 + cipher=00000000000000000000000000000000 + plain=5B2625BBEBB48FE4F9ABB6F84B1CAC78 + encrypted=00000000000000000000000000000000 + +Set 5, vector#198: + key=00000000000000000000000000000000 + 00000000000000000200000000000000 + cipher=00000000000000000000000000000000 + plain=867964DC8E318DE0CD6BFDA3673B1BDE + encrypted=00000000000000000000000000000000 + +Set 5, vector#199: + key=00000000000000000000000000000000 + 00000000000000000100000000000000 + cipher=00000000000000000000000000000000 + plain=EEFCA5A19E1AF98D434601AD9579725F + encrypted=00000000000000000000000000000000 + +Set 5, vector#200: + key=00000000000000000000000000000000 + 00000000000000000080000000000000 + cipher=00000000000000000000000000000000 + plain=B9859DF8921182281C0D67FE3E935375 + encrypted=00000000000000000000000000000000 + +Set 5, vector#201: + key=00000000000000000000000000000000 + 00000000000000000040000000000000 + cipher=00000000000000000000000000000000 + plain=D24B0BC4357BDD64505D368926285E5D + encrypted=00000000000000000000000000000000 + +Set 5, vector#202: + key=00000000000000000000000000000000 + 00000000000000000020000000000000 + cipher=00000000000000000000000000000000 + plain=4C4FA6B8116DBB6F6D3EFA427A2C1E9F + encrypted=00000000000000000000000000000000 + +Set 5, vector#203: + key=00000000000000000000000000000000 + 00000000000000000010000000000000 + cipher=00000000000000000000000000000000 + plain=2FFC4684D027F78F877C966A6EAA3404 + encrypted=00000000000000000000000000000000 + +Set 5, vector#204: + key=00000000000000000000000000000000 + 00000000000000000008000000000000 + cipher=00000000000000000000000000000000 + plain=913AE6801A6BC43F9523AC366768DB63 + encrypted=00000000000000000000000000000000 + +Set 5, vector#205: + key=00000000000000000000000000000000 + 00000000000000000004000000000000 + cipher=00000000000000000000000000000000 + plain=74554CB8F2A03D83B8255AF5460D91CA + encrypted=00000000000000000000000000000000 + +Set 5, vector#206: + key=00000000000000000000000000000000 + 00000000000000000002000000000000 + cipher=00000000000000000000000000000000 + plain=4931CAD4D4FE577B27091255731D2C91 + encrypted=00000000000000000000000000000000 + +Set 5, vector#207: + key=00000000000000000000000000000000 + 00000000000000000001000000000000 + cipher=00000000000000000000000000000000 + plain=5BDA32425E9F54A4F349C873B0043318 + encrypted=00000000000000000000000000000000 + +Set 5, vector#208: + key=00000000000000000000000000000000 + 00000000000000000000800000000000 + cipher=00000000000000000000000000000000 + plain=6FB8B85C7C0C7B1E470038EF4453FBF9 + encrypted=00000000000000000000000000000000 + +Set 5, vector#209: + key=00000000000000000000000000000000 + 00000000000000000000400000000000 + cipher=00000000000000000000000000000000 + plain=51423EA2B1B443A369CC0A772E7397FD + encrypted=00000000000000000000000000000000 + +Set 5, vector#210: + key=00000000000000000000000000000000 + 00000000000000000000200000000000 + cipher=00000000000000000000000000000000 + plain=C2646011DB2576D1025835147C6D04A5 + encrypted=00000000000000000000000000000000 + +Set 5, vector#211: + key=00000000000000000000000000000000 + 00000000000000000000100000000000 + cipher=00000000000000000000000000000000 + plain=228EAAC5017CEF9771692E27BEFF6953 + encrypted=00000000000000000000000000000000 + +Set 5, vector#212: + key=00000000000000000000000000000000 + 00000000000000000000080000000000 + cipher=00000000000000000000000000000000 + plain=A0FFCE4950D65D023273476100A5C649 + encrypted=00000000000000000000000000000000 + +Set 5, vector#213: + key=00000000000000000000000000000000 + 00000000000000000000040000000000 + cipher=00000000000000000000000000000000 + plain=F000D1BF73DC885F2496B0ECAEB39678 + encrypted=00000000000000000000000000000000 + +Set 5, vector#214: + key=00000000000000000000000000000000 + 00000000000000000000020000000000 + cipher=00000000000000000000000000000000 + plain=E42DDBD536F2A84B392588F80D0445F9 + encrypted=00000000000000000000000000000000 + +Set 5, vector#215: + key=00000000000000000000000000000000 + 00000000000000000000010000000000 + cipher=00000000000000000000000000000000 + plain=D73EADF0C284BB5EA5AB5C68D28EBE34 + encrypted=00000000000000000000000000000000 + +Set 5, vector#216: + key=00000000000000000000000000000000 + 00000000000000000000008000000000 + cipher=00000000000000000000000000000000 + plain=745B6F7F25A635CBE2706DC943E0FB50 + encrypted=00000000000000000000000000000000 + +Set 5, vector#217: + key=00000000000000000000000000000000 + 00000000000000000000004000000000 + cipher=00000000000000000000000000000000 + plain=DE6709A337E9E0DE75767C0230A38958 + encrypted=00000000000000000000000000000000 + +Set 5, vector#218: + key=00000000000000000000000000000000 + 00000000000000000000002000000000 + cipher=00000000000000000000000000000000 + plain=4666879101447FB7AC90153EAB4E66C7 + encrypted=00000000000000000000000000000000 + +Set 5, vector#219: + key=00000000000000000000000000000000 + 00000000000000000000001000000000 + cipher=00000000000000000000000000000000 + plain=685F16535511503D0B8FC80E00FB5B19 + encrypted=00000000000000000000000000000000 + +Set 5, vector#220: + key=00000000000000000000000000000000 + 00000000000000000000000800000000 + cipher=00000000000000000000000000000000 + plain=BDD14D5F7BE1550AB7C2900DC5174341 + encrypted=00000000000000000000000000000000 + +Set 5, vector#221: + key=00000000000000000000000000000000 + 00000000000000000000000400000000 + cipher=00000000000000000000000000000000 + plain=2A7D76B070481CECC57FD97E6BE98DAF + encrypted=00000000000000000000000000000000 + +Set 5, vector#222: + key=00000000000000000000000000000000 + 00000000000000000000000200000000 + cipher=00000000000000000000000000000000 + plain=AC85A5E2EC046F291F77E855E12ED325 + encrypted=00000000000000000000000000000000 + +Set 5, vector#223: + key=00000000000000000000000000000000 + 00000000000000000000000100000000 + cipher=00000000000000000000000000000000 + plain=18498A5946304EB1002E013F081A6C8A + encrypted=00000000000000000000000000000000 + +Set 5, vector#224: + key=00000000000000000000000000000000 + 00000000000000000000000080000000 + cipher=00000000000000000000000000000000 + plain=213CA85EEE95D25C99F58FD6D94BADD7 + encrypted=00000000000000000000000000000000 + +Set 5, vector#225: + key=00000000000000000000000000000000 + 00000000000000000000000040000000 + cipher=00000000000000000000000000000000 + plain=D8D1EA935EE9B78E41C14155E22D97B0 + encrypted=00000000000000000000000000000000 + +Set 5, vector#226: + key=00000000000000000000000000000000 + 00000000000000000000000020000000 + cipher=00000000000000000000000000000000 + plain=FDD091CB5E027222AAD3D66696D200D8 + encrypted=00000000000000000000000000000000 + +Set 5, vector#227: + key=00000000000000000000000000000000 + 00000000000000000000000010000000 + cipher=00000000000000000000000000000000 + plain=CADF62623914BB5FF1A2222197A21E0D + encrypted=00000000000000000000000000000000 + +Set 5, vector#228: + key=00000000000000000000000000000000 + 00000000000000000000000008000000 + cipher=00000000000000000000000000000000 + plain=AED821C940A9C26F3D14B1C3D7B25120 + encrypted=00000000000000000000000000000000 + +Set 5, vector#229: + key=00000000000000000000000000000000 + 00000000000000000000000004000000 + cipher=00000000000000000000000000000000 + plain=989AEA43DACDF3541B698203F2028E85 + encrypted=00000000000000000000000000000000 + +Set 5, vector#230: + key=00000000000000000000000000000000 + 00000000000000000000000002000000 + cipher=00000000000000000000000000000000 + plain=B2EC2FB7E80441C2DB4E1D53CAF94DB8 + encrypted=00000000000000000000000000000000 + +Set 5, vector#231: + key=00000000000000000000000000000000 + 00000000000000000000000001000000 + cipher=00000000000000000000000000000000 + plain=1B9D15020AF51B8F1A45B28C95FE3EA0 + encrypted=00000000000000000000000000000000 + +Set 5, vector#232: + key=00000000000000000000000000000000 + 00000000000000000000000000800000 + cipher=00000000000000000000000000000000 + plain=8A87647026BD8075E06F0873E13A02CF + encrypted=00000000000000000000000000000000 + +Set 5, vector#233: + key=00000000000000000000000000000000 + 00000000000000000000000000400000 + cipher=00000000000000000000000000000000 + plain=B2F1BA39CA625E1B53E4C9F9D34BC92D + encrypted=00000000000000000000000000000000 + +Set 5, vector#234: + key=00000000000000000000000000000000 + 00000000000000000000000000200000 + cipher=00000000000000000000000000000000 + plain=F27AE6C45AD5E6CBF018025359DEA0B6 + encrypted=00000000000000000000000000000000 + +Set 5, vector#235: + key=00000000000000000000000000000000 + 00000000000000000000000000100000 + cipher=00000000000000000000000000000000 + plain=7490C6CFD811ECF4E38D7CDFDBAB6E71 + encrypted=00000000000000000000000000000000 + +Set 5, vector#236: + key=00000000000000000000000000000000 + 00000000000000000000000000080000 + cipher=00000000000000000000000000000000 + plain=11DFCF54612590E07EB913A3653F1146 + encrypted=00000000000000000000000000000000 + +Set 5, vector#237: + key=00000000000000000000000000000000 + 00000000000000000000000000040000 + cipher=00000000000000000000000000000000 + plain=EAAEF8C233E9DECD26D3AC0B095E39ED + encrypted=00000000000000000000000000000000 + +Set 5, vector#238: + key=00000000000000000000000000000000 + 00000000000000000000000000020000 + cipher=00000000000000000000000000000000 + plain=1C32299309173035B6C927937856C03E + encrypted=00000000000000000000000000000000 + +Set 5, vector#239: + key=00000000000000000000000000000000 + 00000000000000000000000000010000 + cipher=00000000000000000000000000000000 + plain=344D1599EE2DB7585E2D05A28BF33E52 + encrypted=00000000000000000000000000000000 + +Set 5, vector#240: + key=00000000000000000000000000000000 + 00000000000000000000000000008000 + cipher=00000000000000000000000000000000 + plain=AA7CE5C36024139D5915DCF883B10954 + encrypted=00000000000000000000000000000000 + +Set 5, vector#241: + key=00000000000000000000000000000000 + 00000000000000000000000000004000 + cipher=00000000000000000000000000000000 + plain=FEAE867A7DC515D6FD77C296A204C8A8 + encrypted=00000000000000000000000000000000 + +Set 5, vector#242: + key=00000000000000000000000000000000 + 00000000000000000000000000002000 + cipher=00000000000000000000000000000000 + plain=4D5205EA903712695990E473E9C06763 + encrypted=00000000000000000000000000000000 + +Set 5, vector#243: + key=00000000000000000000000000000000 + 00000000000000000000000000001000 + cipher=00000000000000000000000000000000 + plain=62F47EDE741199E3A5FBCA13BA4F453E + encrypted=00000000000000000000000000000000 + +Set 5, vector#244: + key=00000000000000000000000000000000 + 00000000000000000000000000000800 + cipher=00000000000000000000000000000000 + plain=E460BB5841D7E07D5966B0C153846D53 + encrypted=00000000000000000000000000000000 + +Set 5, vector#245: + key=00000000000000000000000000000000 + 00000000000000000000000000000400 + cipher=00000000000000000000000000000000 + plain=E1AE27883FC43A59428688F601812128 + encrypted=00000000000000000000000000000000 + +Set 5, vector#246: + key=00000000000000000000000000000000 + 00000000000000000000000000000200 + cipher=00000000000000000000000000000000 + plain=63D098B90F7B25B15DD81C3A34DA0B5C + encrypted=00000000000000000000000000000000 + +Set 5, vector#247: + key=00000000000000000000000000000000 + 00000000000000000000000000000100 + cipher=00000000000000000000000000000000 + plain=2F3BCC5EEC349DDAD19BE3DFE10B1DFE + encrypted=00000000000000000000000000000000 + +Set 5, vector#248: + key=00000000000000000000000000000000 + 00000000000000000000000000000080 + cipher=00000000000000000000000000000000 + plain=C9A181EB139AC477AB15C6B98252B7C3 + encrypted=00000000000000000000000000000000 + +Set 5, vector#249: + key=00000000000000000000000000000000 + 00000000000000000000000000000040 + cipher=00000000000000000000000000000000 + plain=B9E4600F218473D28E334F5670006E47 + encrypted=00000000000000000000000000000000 + +Set 5, vector#250: + key=00000000000000000000000000000000 + 00000000000000000000000000000020 + cipher=00000000000000000000000000000000 + plain=F2F4DA5D6B881C9E8EC4948E68A2BCCE + encrypted=00000000000000000000000000000000 + +Set 5, vector#251: + key=00000000000000000000000000000000 + 00000000000000000000000000000010 + cipher=00000000000000000000000000000000 + plain=DBBB1D63EDB848FDF4951F0041950809 + encrypted=00000000000000000000000000000000 + +Set 5, vector#252: + key=00000000000000000000000000000000 + 00000000000000000000000000000008 + cipher=00000000000000000000000000000000 + plain=2A37D5C79DBFEF495304D0F2DA2D833E + encrypted=00000000000000000000000000000000 + +Set 5, vector#253: + key=00000000000000000000000000000000 + 00000000000000000000000000000004 + cipher=00000000000000000000000000000000 + plain=E31441D0CB9FB5371C8E49CC4CBC4193 + encrypted=00000000000000000000000000000000 + +Set 5, vector#254: + key=00000000000000000000000000000000 + 00000000000000000000000000000002 + cipher=00000000000000000000000000000000 + plain=55D85DC590770C7762F5CEC8B8B4BEFC + encrypted=00000000000000000000000000000000 + +Set 5, vector#255: + key=00000000000000000000000000000000 + 00000000000000000000000000000001 + cipher=00000000000000000000000000000000 + plain=A2A6034156B086FFDA3D3AF2E6854E8A + encrypted=00000000000000000000000000000000 + +Test vectors -- set 6 +===================== + +Set 6, vector# 0: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=80000000000000000000000000000000 + plain=B457A981342DDB2B4BCC8EB1DAD73CD0 + encrypted=80000000000000000000000000000000 + +Set 6, vector# 1: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=40000000000000000000000000000000 + plain=8CA18C144CB6A24A0DB991E7E57918D8 + encrypted=40000000000000000000000000000000 + +Set 6, vector# 2: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=20000000000000000000000000000000 + plain=CD9E768AA0ECD6CF4E4888DB108F9151 + encrypted=20000000000000000000000000000000 + +Set 6, vector# 3: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=10000000000000000000000000000000 + plain=590FCA83908378EAC9071D3AD81FE831 + encrypted=10000000000000000000000000000000 + +Set 6, vector# 4: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=08000000000000000000000000000000 + plain=A73584169B87FF430DB32A20FB2C2701 + encrypted=08000000000000000000000000000000 + +Set 6, vector# 5: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=04000000000000000000000000000000 + plain=931976A3B60657CE9C2B1D67B7942DA0 + encrypted=04000000000000000000000000000000 + +Set 6, vector# 6: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=02000000000000000000000000000000 + plain=4A27CC9CAAD831C9FF1DA88CB01659AC + encrypted=02000000000000000000000000000000 + +Set 6, vector# 7: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=01000000000000000000000000000000 + plain=171C22EF82BB0514574ED2AA6129C3DA + encrypted=01000000000000000000000000000000 + +Set 6, vector# 8: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00800000000000000000000000000000 + plain=2BBF217E7FC4E5B50D6AB391505FE558 + encrypted=00800000000000000000000000000000 + +Set 6, vector# 9: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00400000000000000000000000000000 + plain=1755E09130426AEC32330D11C0D79A47 + encrypted=00400000000000000000000000000000 + +Set 6, vector# 10: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00200000000000000000000000000000 + plain=39D46B8F887146FC7E1A745D995D9854 + encrypted=00200000000000000000000000000000 + +Set 6, vector# 11: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00100000000000000000000000000000 + plain=A78D705CBDEFC6D069923962A8AED72F + encrypted=00100000000000000000000000000000 + +Set 6, vector# 12: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00080000000000000000000000000000 + plain=65F4711A992A8718CAAAEF0B5101F418 + encrypted=00080000000000000000000000000000 + +Set 6, vector# 13: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00040000000000000000000000000000 + plain=A6B6514158547984915C4DD2B1118051 + encrypted=00040000000000000000000000000000 + +Set 6, vector# 14: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00020000000000000000000000000000 + plain=6A9CBDF116EFEE0C876619F004D1539E + encrypted=00020000000000000000000000000000 + +Set 6, vector# 15: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00010000000000000000000000000000 + plain=4F8BAEFFCCDEE158A477D5A187B62522 + encrypted=00010000000000000000000000000000 + +Set 6, vector# 16: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00008000000000000000000000000000 + plain=5BE401B262DD77F61F9AAE2042201D3D + encrypted=00008000000000000000000000000000 + +Set 6, vector# 17: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00004000000000000000000000000000 + plain=672FED24FA2FCA055FBE41EADA93A2BE + encrypted=00004000000000000000000000000000 + +Set 6, vector# 18: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00002000000000000000000000000000 + plain=6D9D20D98C30CEDA17FA09ADADB9981E + encrypted=00002000000000000000000000000000 + +Set 6, vector# 19: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00001000000000000000000000000000 + plain=3EBFCDB5E4AD323A042E56CE4A4DB29E + encrypted=00001000000000000000000000000000 + +Set 6, vector# 20: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000800000000000000000000000000 + plain=D26982EE637DA63FF060E6F7336B6246 + encrypted=00000800000000000000000000000000 + +Set 6, vector# 21: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000400000000000000000000000000 + plain=7F31671E1D3315C51D50D95FC0D01108 + encrypted=00000400000000000000000000000000 + +Set 6, vector# 22: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000200000000000000000000000000 + plain=53CB6AB23EB88DF590C6D7107D7D1F62 + encrypted=00000200000000000000000000000000 + +Set 6, vector# 23: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000100000000000000000000000000 + plain=5B0BC359128BC4E29E34FCD061732BED + encrypted=00000100000000000000000000000000 + +Set 6, vector# 24: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000080000000000000000000000000 + plain=2155F0D9FA0B6D5E31CFC649F8754023 + encrypted=00000080000000000000000000000000 + +Set 6, vector# 25: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000040000000000000000000000000 + plain=8FFBFBD8954A8456A4A52ED24178A0AA + encrypted=00000040000000000000000000000000 + +Set 6, vector# 26: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000020000000000000000000000000 + plain=F6B3590EAB896AF80B455DE5A194CA4F + encrypted=00000020000000000000000000000000 + +Set 6, vector# 27: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000010000000000000000000000000 + plain=C95C094F241DDD4C97728835660EE596 + encrypted=00000010000000000000000000000000 + +Set 6, vector# 28: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000008000000000000000000000000 + plain=AA123840FAD0435D7CEB126AF342270A + encrypted=00000008000000000000000000000000 + +Set 6, vector# 29: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000004000000000000000000000000 + plain=6DF69DFD49BDCA9C260076A8173ADD21 + encrypted=00000004000000000000000000000000 + +Set 6, vector# 30: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000002000000000000000000000000 + plain=61E123920B37EBE3A8363FEBE0DAC66F + encrypted=00000002000000000000000000000000 + +Set 6, vector# 31: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000001000000000000000000000000 + plain=8135FA2DC0F23F675CFB3CCBE8B4695A + encrypted=00000001000000000000000000000000 + +Set 6, vector# 32: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000800000000000000000000000 + plain=7317A0CF0AAD45AA63FB0FA9FADAD520 + encrypted=00000000800000000000000000000000 + +Set 6, vector# 33: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000400000000000000000000000 + plain=1F1AFAB13D8CB312D8B9D0F9AEFFF348 + encrypted=00000000400000000000000000000000 + +Set 6, vector# 34: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000200000000000000000000000 + plain=AB8117C4A677E47FA24C2012CA4BDCBB + encrypted=00000000200000000000000000000000 + +Set 6, vector# 35: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000100000000000000000000000 + plain=A9D0B2DDC09DA520172C9427C570683A + encrypted=00000000100000000000000000000000 + +Set 6, vector# 36: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000080000000000000000000000 + plain=B086483CBB619CD178D63B4B919709F4 + encrypted=00000000080000000000000000000000 + +Set 6, vector# 37: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000040000000000000000000000 + plain=CEBE600F50A25819D56A953BF9672D08 + encrypted=00000000040000000000000000000000 + +Set 6, vector# 38: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000020000000000000000000000 + plain=A21603CC9B623FC550A1414B4A0B59C7 + encrypted=00000000020000000000000000000000 + +Set 6, vector# 39: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000010000000000000000000000 + plain=7DBAEFA494A06C8E0BF9EB5BA715BEC5 + encrypted=00000000010000000000000000000000 + +Set 6, vector# 40: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000008000000000000000000000 + plain=91BB16EC6443C33D69AD9C4FDB6B3765 + encrypted=00000000008000000000000000000000 + +Set 6, vector# 41: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000004000000000000000000000 + plain=3AA4E2CF270D7179FD6043A4030EEB09 + encrypted=00000000004000000000000000000000 + +Set 6, vector# 42: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000002000000000000000000000 + plain=6EE21D95C9F87A3CE5097BBDF887F2E3 + encrypted=00000000002000000000000000000000 + +Set 6, vector# 43: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000001000000000000000000000 + plain=2057BF6B74BAF0D04510B76F64CEA48D + encrypted=00000000001000000000000000000000 + +Set 6, vector# 44: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000800000000000000000000 + plain=8F996D6184EDEBA22E780E51F34121A7 + encrypted=00000000000800000000000000000000 + +Set 6, vector# 45: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000400000000000000000000 + plain=60E40E74849D6141E9862E4340E18F9C + encrypted=00000000000400000000000000000000 + +Set 6, vector# 46: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000200000000000000000000 + plain=B9CAB22F6BD970F03A05C442F6808C5A + encrypted=00000000000200000000000000000000 + +Set 6, vector# 47: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000100000000000000000000 + plain=A16010E5453477E3A8B8F121D11D44AE + encrypted=00000000000100000000000000000000 + +Set 6, vector# 48: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000080000000000000000000 + plain=B22FC11C60715566481FF2ED82FE1EAC + encrypted=00000000000080000000000000000000 + +Set 6, vector# 49: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000040000000000000000000 + plain=205BAABFA3A697D4FF9B55E434E71698 + encrypted=00000000000040000000000000000000 + +Set 6, vector# 50: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000020000000000000000000 + plain=EA2B479DBC1D90A6309CC9D957986374 + encrypted=00000000000020000000000000000000 + +Set 6, vector# 51: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000010000000000000000000 + plain=5DE37992907CE48A80C13C8181E2E450 + encrypted=00000000000010000000000000000000 + +Set 6, vector# 52: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000008000000000000000000 + plain=0F66F5F1123F3C0521929579005C0E07 + encrypted=00000000000008000000000000000000 + +Set 6, vector# 53: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000004000000000000000000 + plain=DEDE31411D1502AC7882077BEAE0EE17 + encrypted=00000000000004000000000000000000 + +Set 6, vector# 54: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000002000000000000000000 + plain=69876E8EA89252BF6994011A9E2DF916 + encrypted=00000000000002000000000000000000 + +Set 6, vector# 55: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000001000000000000000000 + plain=0A8CECAFD72FE7AA0D043DF72D2EF54F + encrypted=00000000000001000000000000000000 + +Set 6, vector# 56: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000800000000000000000 + plain=88D91BBE9E2AB75B3C789FE9DC5CE155 + encrypted=00000000000000800000000000000000 + +Set 6, vector# 57: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000400000000000000000 + plain=21CFAE8B4713080F8B71BDF127D75E8F + encrypted=00000000000000400000000000000000 + +Set 6, vector# 58: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000200000000000000000 + plain=2C8961789EC9F5DFD8D87989206D9C8E + encrypted=00000000000000200000000000000000 + +Set 6, vector# 59: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000100000000000000000 + plain=B08D301248DD8201CACDBFDE550C7BC9 + encrypted=00000000000000100000000000000000 + +Set 6, vector# 60: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000080000000000000000 + plain=F877A09407ECC372AF878DBC9B16A9EF + encrypted=00000000000000080000000000000000 + +Set 6, vector# 61: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000040000000000000000 + plain=0A8B224766A30DFC6CF87C67530C218B + encrypted=00000000000000040000000000000000 + +Set 6, vector# 62: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000020000000000000000 + plain=87AA2FDB21FADCF4C2C05FC506C28A85 + encrypted=00000000000000020000000000000000 + +Set 6, vector# 63: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000010000000000000000 + plain=79964A719882671D5ADA83667F56C712 + encrypted=00000000000000010000000000000000 + +Set 6, vector# 64: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000008000000000000000 + plain=49A9D5E21EFFC2F940503C8EE3622D7D + encrypted=00000000000000008000000000000000 + +Set 6, vector# 65: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000004000000000000000 + plain=D31322DE983D72C0BAE38BBDA7331D78 + encrypted=00000000000000004000000000000000 + +Set 6, vector# 66: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000002000000000000000 + plain=93485F08F2867C9A438DD07D0A07D75C + encrypted=00000000000000002000000000000000 + +Set 6, vector# 67: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000001000000000000000 + plain=4EC2EBF2F7DCDD98CA3789748DB23FEC + encrypted=00000000000000001000000000000000 + +Set 6, vector# 68: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000800000000000000 + plain=A2A079D0FC50796EFF3FDD74201D7EF6 + encrypted=00000000000000000800000000000000 + +Set 6, vector# 69: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000400000000000000 + plain=99669881767A943862CFF58819A48BE3 + encrypted=00000000000000000400000000000000 + +Set 6, vector# 70: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000200000000000000 + plain=A12170755EA357F5B63E95F1E6CBE7B3 + encrypted=00000000000000000200000000000000 + +Set 6, vector# 71: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000100000000000000 + plain=4848D517D70C803AC35B2C2B0FACB702 + encrypted=00000000000000000100000000000000 + +Set 6, vector# 72: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000080000000000000 + plain=220EA62934883417CC6801A60B384EB0 + encrypted=00000000000000000080000000000000 + +Set 6, vector# 73: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000040000000000000 + plain=05788E5C5C7E88F0D762630DDF48B6B0 + encrypted=00000000000000000040000000000000 + +Set 6, vector# 74: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000020000000000000 + plain=2149B9FC93A2B6BC56936E13D08983F5 + encrypted=00000000000000000020000000000000 + +Set 6, vector# 75: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000010000000000000 + plain=58745181E114E79012A66E7B452E746F + encrypted=00000000000000000010000000000000 + +Set 6, vector# 76: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000008000000000000 + plain=3BF33CC83FB025A19F34E5E288973988 + encrypted=00000000000000000008000000000000 + +Set 6, vector# 77: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000004000000000000 + plain=6561518A14984D408239125B3DF5B794 + encrypted=00000000000000000004000000000000 + +Set 6, vector# 78: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000002000000000000 + plain=87FBD42E0F95097C767445EDD9C26FC9 + encrypted=00000000000000000002000000000000 + +Set 6, vector# 79: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000001000000000000 + plain=181E3559EB34602CDB3392B477E63029 + encrypted=00000000000000000001000000000000 + +Set 6, vector# 80: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000800000000000 + plain=C71ABC6BA16478DE444BB1D4EAB075BB + encrypted=00000000000000000000800000000000 + +Set 6, vector# 81: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000400000000000 + plain=9245DAA8D6C1ABD876AF97D3B844D3D7 + encrypted=00000000000000000000400000000000 + +Set 6, vector# 82: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000200000000000 + plain=4C002DA5684A980284FD62D0851596BF + encrypted=00000000000000000000200000000000 + +Set 6, vector# 83: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000100000000000 + plain=BCA06262774A5EF8D6B9ECAAC0121A7F + encrypted=00000000000000000000100000000000 + +Set 6, vector# 84: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000080000000000 + plain=7EF007A535792F99AABBF247AF858C3F + encrypted=00000000000000000000080000000000 + +Set 6, vector# 85: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000040000000000 + plain=5B5A8BBB0AA8F0858E592D37B5E83388 + encrypted=00000000000000000000040000000000 + +Set 6, vector# 86: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000020000000000 + plain=F2E8AD01B32357DB427576E05A98C621 + encrypted=00000000000000000000020000000000 + +Set 6, vector# 87: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000010000000000 + plain=B18D71CABF8B1424ED8C04226C388C2B + encrypted=00000000000000000000010000000000 + +Set 6, vector# 88: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000008000000000 + plain=7EFFD8E42CA77EDA65CCCEE59AAA2B60 + encrypted=00000000000000000000008000000000 + +Set 6, vector# 89: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000004000000000 + plain=777661C7079A82D3324AAEA0393D77E5 + encrypted=00000000000000000000004000000000 + +Set 6, vector# 90: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000002000000000 + plain=9E4424BE34667AB35A52A5206B77BF8B + encrypted=00000000000000000000002000000000 + +Set 6, vector# 91: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000001000000000 + plain=212F7CDB11435575DED578A52C6D6905 + encrypted=00000000000000000000001000000000 + +Set 6, vector# 92: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000800000000 + plain=2A7045C27FCCEDEA1B711F04928A25E3 + encrypted=00000000000000000000000800000000 + +Set 6, vector# 93: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000400000000 + plain=FD85F129D482E0EA7D42C40A7C723BA4 + encrypted=00000000000000000000000400000000 + +Set 6, vector# 94: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000200000000 + plain=9F2ABAF0B0DEB157009A968A5B9F9ACA + encrypted=00000000000000000000000200000000 + +Set 6, vector# 95: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000100000000 + plain=DE000F0F2C542DA951C86785E19BD4F1 + encrypted=00000000000000000000000100000000 + +Set 6, vector# 96: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000080000000 + plain=3287547C276047FAE2152EE92EB0769F + encrypted=00000000000000000000000080000000 + +Set 6, vector# 97: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000040000000 + plain=2FF6C18A9F1E673E5ACCCD64F0DEEEAC + encrypted=00000000000000000000000040000000 + +Set 6, vector# 98: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000020000000 + plain=CE112038BA13E8816F8E1751CFE71766 + encrypted=00000000000000000000000020000000 + +Set 6, vector# 99: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000010000000 + plain=10C7B4E31C8C66EF99A59689B238E76C + encrypted=00000000000000000000000010000000 + +Set 6, vector#100: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000008000000 + plain=2777360858540CCA16F33E089FF6DEFE + encrypted=00000000000000000000000008000000 + +Set 6, vector#101: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000004000000 + plain=EF0E5FB65D3E8B059254493150EB6BD5 + encrypted=00000000000000000000000004000000 + +Set 6, vector#102: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000002000000 + plain=C068D2CC45F293D58AE14CD708166A76 + encrypted=00000000000000000000000002000000 + +Set 6, vector#103: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000001000000 + plain=9312A270447AD4199CFCE84023CDE7D6 + encrypted=00000000000000000000000001000000 + +Set 6, vector#104: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000800000 + plain=28D00C8D1157CE7B0C2DBC89E51B7921 + encrypted=00000000000000000000000000800000 + +Set 6, vector#105: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000400000 + plain=330C9E6ED84D3CE64A04229F6C9921C5 + encrypted=00000000000000000000000000400000 + +Set 6, vector#106: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000200000 + plain=B279F4F4F72F302585A208D8689C97E4 + encrypted=00000000000000000000000000200000 + +Set 6, vector#107: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000100000 + plain=85F29E4F393DCCD878E85495AC4B6C8E + encrypted=00000000000000000000000000100000 + +Set 6, vector#108: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000080000 + plain=7501A28AC22A1885D713B5535BC69D53 + encrypted=00000000000000000000000000080000 + +Set 6, vector#109: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000040000 + plain=3CB7DCF60EA5CBAB1FA8B1EC86C21006 + encrypted=00000000000000000000000000040000 + +Set 6, vector#110: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000020000 + plain=7E7099ACAD7FB15CB3A6C582C7418A69 + encrypted=00000000000000000000000000020000 + +Set 6, vector#111: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000010000 + plain=14C63BE470DC12BF9381BE7FB14ECBE0 + encrypted=00000000000000000000000000010000 + +Set 6, vector#112: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000008000 + plain=517B4A40A55A6FB8F339AE25AA3E89C5 + encrypted=00000000000000000000000000008000 + +Set 6, vector#113: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000004000 + plain=ECA648B7D9789C13A871C0F29B1E4266 + encrypted=00000000000000000000000000004000 + +Set 6, vector#114: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000002000 + plain=1F21063999D258E28887961831A8A59D + encrypted=00000000000000000000000000002000 + +Set 6, vector#115: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000001000 + plain=E5D272F617C758E483DE4F1BDD9C02CE + encrypted=00000000000000000000000000001000 + +Set 6, vector#116: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000800 + plain=2D0CBE9B526DE2F1F6FAE2C9EC8A72EB + encrypted=00000000000000000000000000000800 + +Set 6, vector#117: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000400 + plain=0DD7FE067F372753E996CF5406C9BC79 + encrypted=00000000000000000000000000000400 + +Set 6, vector#118: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000200 + plain=2344CB716AD63989AFD3A444AED27127 + encrypted=00000000000000000000000000000200 + +Set 6, vector#119: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000100 + plain=91E7D0E039F64FE374E518946C9B3A39 + encrypted=00000000000000000000000000000100 + +Set 6, vector#120: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000080 + plain=536B963DEEB0DAE4FE3CA7260D0759F5 + encrypted=00000000000000000000000000000080 + +Set 6, vector#121: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000040 + plain=96FD6BEA05FB83E3DF208BB0460E779D + encrypted=00000000000000000000000000000040 + +Set 6, vector#122: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000020 + plain=39E7771DFDD98C4CB119D0368DE1DBB4 + encrypted=00000000000000000000000000000020 + +Set 6, vector#123: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000010 + plain=59C894FEF497F2F5AD54D0ACDF1FBD9C + encrypted=00000000000000000000000000000010 + +Set 6, vector#124: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000008 + plain=3494FEEC33ADD27341CD05567D93E171 + encrypted=00000000000000000000000000000008 + +Set 6, vector#125: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000004 + plain=7B474A967A0D6CBDD30F36797F4C2946 + encrypted=00000000000000000000000000000004 + +Set 6, vector#126: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000002 + plain=170B22DF20A7860310290C403AB2DF18 + encrypted=00000000000000000000000000000002 + +Set 6, vector#127: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000001 + plain=834BBD71B30E7E383CF46653D3C0CC0A + encrypted=00000000000000000000000000000001 + +Test vectors -- set 7 +===================== + +Set 7, vector# 0: + key=00000000000000000000000000000000 + 00000000000000000000000000000000 + cipher=00000000000000000000000000000000 + plain=67671CE1FA91DDEB0F8FBBB366B531B4 + encrypted=00000000000000000000000000000000 + +Set 7, vector# 1: + key=01010101010101010101010101010101 + 01010101010101010101010101010101 + cipher=01010101010101010101010101010101 + plain=7CBAE8A7D05C7343A851EFD1384BB46D + encrypted=01010101010101010101010101010101 + +Set 7, vector# 2: + key=02020202020202020202020202020202 + 02020202020202020202020202020202 + cipher=02020202020202020202020202020202 + plain=6F5B0C428135BFFC671EAFA43D37121B + encrypted=02020202020202020202020202020202 + +Set 7, vector# 3: + key=03030303030303030303030303030303 + 03030303030303030303030303030303 + cipher=03030303030303030303030303030303 + plain=3C61D58FB2F4612BA7C0814C8827E448 + encrypted=03030303030303030303030303030303 + +Set 7, vector# 4: + key=04040404040404040404040404040404 + 04040404040404040404040404040404 + cipher=04040404040404040404040404040404 + plain=EC6690C12FDEE24D6FEEA27C9C583FFE + encrypted=04040404040404040404040404040404 + +Set 7, vector# 5: + key=05050505050505050505050505050505 + 05050505050505050505050505050505 + cipher=05050505050505050505050505050505 + plain=B5641987B147E07F1C19AB80700538D4 + encrypted=05050505050505050505050505050505 + +Set 7, vector# 6: + key=06060606060606060606060606060606 + 06060606060606060606060606060606 + cipher=06060606060606060606060606060606 + plain=476AA83C59D063744CE70D69D8578BB2 + encrypted=06060606060606060606060606060606 + +Set 7, vector# 7: + key=07070707070707070707070707070707 + 07070707070707070707070707070707 + cipher=07070707070707070707070707070707 + plain=D354E73F2DEC9A38A09A5B89C27F0E27 + encrypted=07070707070707070707070707070707 + +Set 7, vector# 8: + key=08080808080808080808080808080808 + 08080808080808080808080808080808 + cipher=08080808080808080808080808080808 + plain=F25C78A918E52251BAC70A7FB410644F + encrypted=08080808080808080808080808080808 + +Set 7, vector# 9: + key=09090909090909090909090909090909 + 09090909090909090909090909090909 + cipher=09090909090909090909090909090909 + plain=2383EA99332D3991F66BD2EC3FA0E0E7 + encrypted=09090909090909090909090909090909 + +Set 7, vector# 10: + key=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + 0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + cipher=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + plain=8142831D684CB1F667C23A58BF7F1CB7 + encrypted=0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A + +Set 7, vector# 11: + key=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + 0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + cipher=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + plain=8EB9D706D46A2297A9956CA186C83DE8 + encrypted=0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B + +Set 7, vector# 12: + key=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + 0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + cipher=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + plain=08FBD7D813986692558B1627487FD6B2 + encrypted=0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C + +Set 7, vector# 13: + key=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + 0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + cipher=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + plain=C5DCF5F5562A8F95DEE8506E604DD054 + encrypted=0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D + +Set 7, vector# 14: + key=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + 0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + cipher=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + plain=D01A4E8366CF6CFF1E0DB7AF74BCC1DB + encrypted=0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E + +Set 7, vector# 15: + key=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + 0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + cipher=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + plain=C180A7E2233FF91585C55ECB48568215 + encrypted=0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F + +Set 7, vector# 16: + key=10101010101010101010101010101010 + 10101010101010101010101010101010 + cipher=10101010101010101010101010101010 + plain=E3DEED51241C3F8DE9A077EE93223E42 + encrypted=10101010101010101010101010101010 + +Set 7, vector# 17: + key=11111111111111111111111111111111 + 11111111111111111111111111111111 + cipher=11111111111111111111111111111111 + plain=FA86693FA6501A8C8D1B1D7119FC8260 + encrypted=11111111111111111111111111111111 + +Set 7, vector# 18: + key=12121212121212121212121212121212 + 12121212121212121212121212121212 + cipher=12121212121212121212121212121212 + plain=0367F2D92D44834D6ED9282A81248225 + encrypted=12121212121212121212121212121212 + +Set 7, vector# 19: + key=13131313131313131313131313131313 + 13131313131313131313131313131313 + cipher=13131313131313131313131313131313 + plain=E2672B9F42CB9FBDC33AA22227E49DB4 + encrypted=13131313131313131313131313131313 + +Set 7, vector# 20: + key=14141414141414141414141414141414 + 14141414141414141414141414141414 + cipher=14141414141414141414141414141414 + plain=BEDF6065F060EE3A385DB296D2932D8A + encrypted=14141414141414141414141414141414 + +Set 7, vector# 21: + key=15151515151515151515151515151515 + 15151515151515151515151515151515 + cipher=15151515151515151515151515151515 + plain=82E9CB931ABF0E24B3CA8139B9F2D29B + encrypted=15151515151515151515151515151515 + +Set 7, vector# 22: + key=16161616161616161616161616161616 + 16161616161616161616161616161616 + cipher=16161616161616161616161616161616 + plain=54798987825B532C7321F10206C28837 + encrypted=16161616161616161616161616161616 + +Set 7, vector# 23: + key=17171717171717171717171717171717 + 17171717171717171717171717171717 + cipher=17171717171717171717171717171717 + plain=972F040E65802EC19AB4720E3DC498E4 + encrypted=17171717171717171717171717171717 + +Set 7, vector# 24: + key=18181818181818181818181818181818 + 18181818181818181818181818181818 + cipher=18181818181818181818181818181818 + plain=FA6256D0339C7D0F1A22E2605FCC4DD6 + encrypted=18181818181818181818181818181818 + +Set 7, vector# 25: + key=19191919191919191919191919191919 + 19191919191919191919191919191919 + cipher=19191919191919191919191919191919 + plain=3299076707BE34C880F3E33BC1306F6A + encrypted=19191919191919191919191919191919 + +Set 7, vector# 26: + key=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + 1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + cipher=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + plain=DF218C762DF0802E0C7A8F89D4C92620 + encrypted=1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A + +Set 7, vector# 27: + key=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + 1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + cipher=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + plain=C20F814AC3DC421B9848CF7710D5FED5 + encrypted=1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B + +Set 7, vector# 28: + key=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + 1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + cipher=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + plain=18345FDB8100FAE8CBA0C172BCAAEF0E + encrypted=1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C + +Set 7, vector# 29: + key=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + 1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + cipher=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + plain=898A941483C849D3172E3B1E0684AA1E + encrypted=1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D + +Set 7, vector# 30: + key=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + 1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + cipher=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + plain=15FE9ECC106D05E1785B8187B591BAAE + encrypted=1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E + +Set 7, vector# 31: + key=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + 1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + cipher=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + plain=652EA88445912949D2D98D7A27A4225D + encrypted=1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F + +Set 7, vector# 32: + key=20202020202020202020202020202020 + 20202020202020202020202020202020 + cipher=20202020202020202020202020202020 + plain=A9FB2053634BC2F8C7D00D73F4ABE0F6 + encrypted=20202020202020202020202020202020 + +Set 7, vector# 33: + key=21212121212121212121212121212121 + 21212121212121212121212121212121 + cipher=21212121212121212121212121212121 + plain=5FF2603DE811A177E39AE611F9FC9E68 + encrypted=21212121212121212121212121212121 + +Set 7, vector# 34: + key=22222222222222222222222222222222 + 22222222222222222222222222222222 + cipher=22222222222222222222222222222222 + plain=C6CCC4EDECE58D3E8BFF093F62280DD3 + encrypted=22222222222222222222222222222222 + +Set 7, vector# 35: + key=23232323232323232323232323232323 + 23232323232323232323232323232323 + cipher=23232323232323232323232323232323 + plain=4B63E9E827E80CB02ECD877F1ED78617 + encrypted=23232323232323232323232323232323 + +Set 7, vector# 36: + key=24242424242424242424242424242424 + 24242424242424242424242424242424 + cipher=24242424242424242424242424242424 + plain=81BD5A7E7B3993AFCD496AB5D7C7FA36 + encrypted=24242424242424242424242424242424 + +Set 7, vector# 37: + key=25252525252525252525252525252525 + 25252525252525252525252525252525 + cipher=25252525252525252525252525252525 + plain=A30C106C1179F8C46157C1D3CB95C5A1 + encrypted=25252525252525252525252525252525 + +Set 7, vector# 38: + key=26262626262626262626262626262626 + 26262626262626262626262626262626 + cipher=26262626262626262626262626262626 + plain=BEB79807E4A7DDF8EC5FEB0321318F4C + encrypted=26262626262626262626262626262626 + +Set 7, vector# 39: + key=27272727272727272727272727272727 + 27272727272727272727272727272727 + cipher=27272727272727272727272727272727 + plain=C7763FDE11FA41B7BA46819C42855744 + encrypted=27272727272727272727272727272727 + +Set 7, vector# 40: + key=28282828282828282828282828282828 + 28282828282828282828282828282828 + cipher=28282828282828282828282828282828 + plain=CA70D3D30408696637F4CADE335E254E + encrypted=28282828282828282828282828282828 + +Set 7, vector# 41: + key=29292929292929292929292929292929 + 29292929292929292929292929292929 + cipher=29292929292929292929292929292929 + plain=A04FE69654C4341DAD5040318CFF157C + encrypted=29292929292929292929292929292929 + +Set 7, vector# 42: + key=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + 2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + cipher=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + plain=3A3F318E652CEECE213E56F68AD1E48E + encrypted=2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A + +Set 7, vector# 43: + key=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + 2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + cipher=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + plain=DC6F27E4C573281B12E5307D48AB7193 + encrypted=2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B + +Set 7, vector# 44: + key=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + 2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + cipher=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + plain=E0A3806C4E604B5695D5FAE1CEA3AE6C + encrypted=2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C + +Set 7, vector# 45: + key=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + 2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + cipher=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + plain=3F182E892899E8DCDD182CF6C48132B3 + encrypted=2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D + +Set 7, vector# 46: + key=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + 2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + cipher=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + plain=9B6619E552782A91F1510FDC7630ECF6 + encrypted=2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E + +Set 7, vector# 47: + key=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + 2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + cipher=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + plain=759BDE529DA4653C963377AF7CEE9D8D + encrypted=2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F + +Set 7, vector# 48: + key=30303030303030303030303030303030 + 30303030303030303030303030303030 + cipher=30303030303030303030303030303030 + plain=FA49E3F20D7262B649844F50C5897139 + encrypted=30303030303030303030303030303030 + +Set 7, vector# 49: + key=31313131313131313131313131313131 + 31313131313131313131313131313131 + cipher=31313131313131313131313131313131 + plain=8C9CAAD5B3BFB6456B31B451DAAF1D24 + encrypted=31313131313131313131313131313131 + +Set 7, vector# 50: + key=32323232323232323232323232323232 + 32323232323232323232323232323232 + cipher=32323232323232323232323232323232 + plain=42DEF994B712F4BF69FFC7D17BD94F1D + encrypted=32323232323232323232323232323232 + +Set 7, vector# 51: + key=33333333333333333333333333333333 + 33333333333333333333333333333333 + cipher=33333333333333333333333333333333 + plain=414E546355F0FFF977C21E9E2E27F4BE + encrypted=33333333333333333333333333333333 + +Set 7, vector# 52: + key=34343434343434343434343434343434 + 34343434343434343434343434343434 + cipher=34343434343434343434343434343434 + plain=1F5788DF52074D07D83B8470A472C89E + encrypted=34343434343434343434343434343434 + +Set 7, vector# 53: + key=35353535353535353535353535353535 + 35353535353535353535353535353535 + cipher=35353535353535353535353535353535 + plain=18976BD38C6A925F5D31632D6DB87590 + encrypted=35353535353535353535353535353535 + +Set 7, vector# 54: + key=36363636363636363636363636363636 + 36363636363636363636363636363636 + cipher=36363636363636363636363636363636 + plain=5573EA7AF805EFF77939128D7B097E5E + encrypted=36363636363636363636363636363636 + +Set 7, vector# 55: + key=37373737373737373737373737373737 + 37373737373737373737373737373737 + cipher=37373737373737373737373737373737 + plain=41E8405E749311A50907C79270ABD3B3 + encrypted=37373737373737373737373737373737 + +Set 7, vector# 56: + key=38383838383838383838383838383838 + 38383838383838383838383838383838 + cipher=38383838383838383838383838383838 + plain=EEAF295189DDFB171805BEBC60F02517 + encrypted=38383838383838383838383838383838 + +Set 7, vector# 57: + key=39393939393939393939393939393939 + 39393939393939393939393939393939 + cipher=39393939393939393939393939393939 + plain=3735F45C4C1A2345B02121326D7A7FED + encrypted=39393939393939393939393939393939 + +Set 7, vector# 58: + key=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + 3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + cipher=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + plain=949463B3060BCCCE602817F565E4FE77 + encrypted=3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A + +Set 7, vector# 59: + key=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + 3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + cipher=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + plain=8E41D13794F8436E08597A33088CC70C + encrypted=3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B + +Set 7, vector# 60: + key=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + 3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + cipher=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + plain=1113C947955082E2D2558645FABC5155 + encrypted=3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C + +Set 7, vector# 61: + key=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + 3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + cipher=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + plain=F5C48AF5550F4D37013D05F1A319A622 + encrypted=3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D + +Set 7, vector# 62: + key=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + 3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + cipher=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + plain=9D417B42B625ABFBDFBC89163687C6B6 + encrypted=3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E + +Set 7, vector# 63: + key=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + 3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + cipher=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + plain=A2BE3409DC63A311988A704CB45B6725 + encrypted=3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F + +Set 7, vector# 64: + key=40404040404040404040404040404040 + 40404040404040404040404040404040 + cipher=40404040404040404040404040404040 + plain=B97D2B31AB0EA7692D064FD0317DA870 + encrypted=40404040404040404040404040404040 + +Set 7, vector# 65: + key=41414141414141414141414141414141 + 41414141414141414141414141414141 + cipher=41414141414141414141414141414141 + plain=3C225AAF35F508FD0AEB173CE6F906CA + encrypted=41414141414141414141414141414141 + +Set 7, vector# 66: + key=42424242424242424242424242424242 + 42424242424242424242424242424242 + cipher=42424242424242424242424242424242 + plain=DDBC4E63F4F87A525F6499578CBC87BB + encrypted=42424242424242424242424242424242 + +Set 7, vector# 67: + key=43434343434343434343434343434343 + 43434343434343434343434343434343 + cipher=43434343434343434343434343434343 + plain=D701D06B5FCF649983EA00341E755667 + encrypted=43434343434343434343434343434343 + +Set 7, vector# 68: + key=44444444444444444444444444444444 + 44444444444444444444444444444444 + cipher=44444444444444444444444444444444 + plain=FEC85C5DBC547A87149F33AF375B4565 + encrypted=44444444444444444444444444444444 + +Set 7, vector# 69: + key=45454545454545454545454545454545 + 45454545454545454545454545454545 + cipher=45454545454545454545454545454545 + plain=192AF2B5E657CA203DF5517B667B3DE8 + encrypted=45454545454545454545454545454545 + +Set 7, vector# 70: + key=46464646464646464646464646464646 + 46464646464646464646464646464646 + cipher=46464646464646464646464646464646 + plain=863C2622C5F641B232B13EF7C342CC66 + encrypted=46464646464646464646464646464646 + +Set 7, vector# 71: + key=47474747474747474747474747474747 + 47474747474747474747474747474747 + cipher=47474747474747474747474747474747 + plain=C2419CCDF2CFE90CFEDAFB32E9AB1968 + encrypted=47474747474747474747474747474747 + +Set 7, vector# 72: + key=48484848484848484848484848484848 + 48484848484848484848484848484848 + cipher=48484848484848484848484848484848 + plain=8D65A79F960DE9BCE3A48166ACD64BBA + encrypted=48484848484848484848484848484848 + +Set 7, vector# 73: + key=49494949494949494949494949494949 + 49494949494949494949494949494949 + cipher=49494949494949494949494949494949 + plain=B57303A9E0B0D1EDD92C1379961288DB + encrypted=49494949494949494949494949494949 + +Set 7, vector# 74: + key=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + 4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + cipher=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + plain=0715CA59BDE67060055FC32542582F9F + encrypted=4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A + +Set 7, vector# 75: + key=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + 4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + cipher=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + plain=D51F7DF3C415698412A98B6BAC0E8415 + encrypted=4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B + +Set 7, vector# 76: + key=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + 4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + cipher=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + plain=2E0356123183C146C44F0DD830CBA7F8 + encrypted=4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C + +Set 7, vector# 77: + key=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + 4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + cipher=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + plain=7D69685727EB84CE19372029A3CC6B3F + encrypted=4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D + +Set 7, vector# 78: + key=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + 4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + cipher=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + plain=7C9892C6B215B914F096E097067CAC1C + encrypted=4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E + +Set 7, vector# 79: + key=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + 4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + cipher=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + plain=B5951B193AF3E79958DD416022199478 + encrypted=4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F + +Set 7, vector# 80: + key=50505050505050505050505050505050 + 50505050505050505050505050505050 + cipher=50505050505050505050505050505050 + plain=39A0FE9E3741806AEF52B06406486CA0 + encrypted=50505050505050505050505050505050 + +Set 7, vector# 81: + key=51515151515151515151515151515151 + 51515151515151515151515151515151 + cipher=51515151515151515151515151515151 + plain=0081B05FB52B6B8A4AFAAEEAA0BDA8B7 + encrypted=51515151515151515151515151515151 + +Set 7, vector# 82: + key=52525252525252525252525252525252 + 52525252525252525252525252525252 + cipher=52525252525252525252525252525252 + plain=42FF80AAE9AA09C3B677D0AB3EBBCC0D + encrypted=52525252525252525252525252525252 + +Set 7, vector# 83: + key=53535353535353535353535353535353 + 53535353535353535353535353535353 + cipher=53535353535353535353535353535353 + plain=87D176BF992CBC5519CA0C5DE9FFFB89 + encrypted=53535353535353535353535353535353 + +Set 7, vector# 84: + key=54545454545454545454545454545454 + 54545454545454545454545454545454 + cipher=54545454545454545454545454545454 + plain=6C46117901C3864A294880E42D8A3FA5 + encrypted=54545454545454545454545454545454 + +Set 7, vector# 85: + key=55555555555555555555555555555555 + 55555555555555555555555555555555 + cipher=55555555555555555555555555555555 + plain=651EDCD8C2900CA67FCB28E80E33FFF0 + encrypted=55555555555555555555555555555555 + +Set 7, vector# 86: + key=56565656565656565656565656565656 + 56565656565656565656565656565656 + cipher=56565656565656565656565656565656 + plain=55B25CA98BA66064988DEE90D596793D + encrypted=56565656565656565656565656565656 + +Set 7, vector# 87: + key=57575757575757575757575757575757 + 57575757575757575757575757575757 + cipher=57575757575757575757575757575757 + plain=2C23ED7E746020D9A2B4C2EC8F91002A + encrypted=57575757575757575757575757575757 + +Set 7, vector# 88: + key=58585858585858585858585858585858 + 58585858585858585858585858585858 + cipher=58585858585858585858585858585858 + plain=608358C10BE4D799826512F552BACBB6 + encrypted=58585858585858585858585858585858 + +Set 7, vector# 89: + key=59595959595959595959595959595959 + 59595959595959595959595959595959 + cipher=59595959595959595959595959595959 + plain=C0E898A417CD5AEAAD580DC749E18CAB + encrypted=59595959595959595959595959595959 + +Set 7, vector# 90: + key=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + 5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + cipher=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + plain=2D5F940D1E686EC7EB2DF1A0CC966FE5 + encrypted=5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A + +Set 7, vector# 91: + key=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + 5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + cipher=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + plain=1CA540FB9BE01CCA3B4396E67C6AC0A4 + encrypted=5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B + +Set 7, vector# 92: + key=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + 5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + cipher=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + plain=50C349C9C805FB68DDB78D7FB555D2A4 + encrypted=5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C + +Set 7, vector# 93: + key=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + 5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + cipher=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + plain=08042F8D180AA76D4B3C01419FC4677B + encrypted=5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D + +Set 7, vector# 94: + key=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + 5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + cipher=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + plain=63818D97E8DD7F55613FD4326EEDF570 + encrypted=5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E + +Set 7, vector# 95: + key=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + 5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + cipher=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + plain=37479D4D85BE0B646ABC46F1A3508268 + encrypted=5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F + +Set 7, vector# 96: + key=60606060606060606060606060606060 + 60606060606060606060606060606060 + cipher=60606060606060606060606060606060 + plain=9A6C1252AC9D5DC3551B7351A7967CAB + encrypted=60606060606060606060606060606060 + +Set 7, vector# 97: + key=61616161616161616161616161616161 + 61616161616161616161616161616161 + cipher=61616161616161616161616161616161 + plain=A78E79FAFFE4EC7B0FD00F87E2AF3CC4 + encrypted=61616161616161616161616161616161 + +Set 7, vector# 98: + key=62626262626262626262626262626262 + 62626262626262626262626262626262 + cipher=62626262626262626262626262626262 + plain=500C343F1392ED2007AC930A0BCE2821 + encrypted=62626262626262626262626262626262 + +Set 7, vector# 99: + key=63636363636363636363636363636363 + 63636363636363636363636363636363 + cipher=63636363636363636363636363636363 + plain=39F3A17B2DA55F7CC67FE773D2FF3E55 + encrypted=63636363636363636363636363636363 + +Set 7, vector#100: + key=64646464646464646464646464646464 + 64646464646464646464646464646464 + cipher=64646464646464646464646464646464 + plain=EC3C94AB9463EBCE082397DF9998DC1C + encrypted=64646464646464646464646464646464 + +Set 7, vector#101: + key=65656565656565656565656565656565 + 65656565656565656565656565656565 + cipher=65656565656565656565656565656565 + plain=CE2D3A00B6E2A80D220842E3639BC865 + encrypted=65656565656565656565656565656565 + +Set 7, vector#102: + key=66666666666666666666666666666666 + 66666666666666666666666666666666 + cipher=66666666666666666666666666666666 + plain=422F7A141F9B6048D19F614A9536980C + encrypted=66666666666666666666666666666666 + +Set 7, vector#103: + key=67676767676767676767676767676767 + 67676767676767676767676767676767 + cipher=67676767676767676767676767676767 + plain=D0769CE2DD218FF8F389F5FCA9515720 + encrypted=67676767676767676767676767676767 + +Set 7, vector#104: + key=68686868686868686868686868686868 + 68686868686868686868686868686868 + cipher=68686868686868686868686868686868 + plain=FB5E6A928F504E343184965D5E4436EE + encrypted=68686868686868686868686868686868 + +Set 7, vector#105: + key=69696969696969696969696969696969 + 69696969696969696969696969696969 + cipher=69696969696969696969696969696969 + plain=9BBFFACE8C94D5709E78197AA8ED3000 + encrypted=69696969696969696969696969696969 + +Set 7, vector#106: + key=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + 6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + cipher=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + plain=666FC07EFA4FD6AF78B9AA2EF9A65623 + encrypted=6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A + +Set 7, vector#107: + key=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + 6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + cipher=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + plain=6681E45A42288086E97D535C25326EBA + encrypted=6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B + +Set 7, vector#108: + key=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + 6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + cipher=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + plain=42A4E4F635F5D00A204703EF57AF7DC5 + encrypted=6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C + +Set 7, vector#109: + key=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + 6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + cipher=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + plain=BE2601187F0A82641824EABA43157A08 + encrypted=6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D + +Set 7, vector#110: + key=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + 6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + cipher=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + plain=8EE220C821CED2A72625D26694F520B8 + encrypted=6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E + +Set 7, vector#111: + key=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + 6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + cipher=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + plain=02E46366DCAAEFC7235B396A44024479 + encrypted=6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F + +Set 7, vector#112: + key=70707070707070707070707070707070 + 70707070707070707070707070707070 + cipher=70707070707070707070707070707070 + plain=5AB5120EF81D65CFEFB3EF226C5B93B0 + encrypted=70707070707070707070707070707070 + +Set 7, vector#113: + key=71717171717171717171717171717171 + 71717171717171717171717171717171 + cipher=71717171717171717171717171717171 + plain=C15A146EF8E939E47D9189BE25999B4B + encrypted=71717171717171717171717171717171 + +Set 7, vector#114: + key=72727272727272727272727272727272 + 72727272727272727272727272727272 + cipher=72727272727272727272727272727272 + plain=3A9C7D37C374AEBF62CB2B41DEE81D13 + encrypted=72727272727272727272727272727272 + +Set 7, vector#115: + key=73737373737373737373737373737373 + 73737373737373737373737373737373 + cipher=73737373737373737373737373737373 + plain=6119EFF933813CC92605BF9C699C7233 + encrypted=73737373737373737373737373737373 + +Set 7, vector#116: + key=74747474747474747474747474747474 + 74747474747474747474747474747474 + cipher=74747474747474747474747474747474 + plain=D0604D656065893DA7E35A2CCDCB8013 + encrypted=74747474747474747474747474747474 + +Set 7, vector#117: + key=75757575757575757575757575757575 + 75757575757575757575757575757575 + cipher=75757575757575757575757575757575 + plain=8FF70A90E4A18092118C8556F98021BE + encrypted=75757575757575757575757575757575 + +Set 7, vector#118: + key=76767676767676767676767676767676 + 76767676767676767676767676767676 + cipher=76767676767676767676767676767676 + plain=53D7B51E3B65A4786E2DF7C63EA32564 + encrypted=76767676767676767676767676767676 + +Set 7, vector#119: + key=77777777777777777777777777777777 + 77777777777777777777777777777777 + cipher=77777777777777777777777777777777 + plain=63E71CF2645FC5981AD2AF25582CA919 + encrypted=77777777777777777777777777777777 + +Set 7, vector#120: + key=78787878787878787878787878787878 + 78787878787878787878787878787878 + cipher=78787878787878787878787878787878 + plain=7F0A842B1FC43D01D57EBE95B4C732AF + encrypted=78787878787878787878787878787878 + +Set 7, vector#121: + key=79797979797979797979797979797979 + 79797979797979797979797979797979 + cipher=79797979797979797979797979797979 + plain=CAF6845273A944141BFAAE49D060B722 + encrypted=79797979797979797979797979797979 + +Set 7, vector#122: + key=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + 7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + cipher=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + plain=AAF620F1655C02FED66F718B7238AEAF + encrypted=7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A + +Set 7, vector#123: + key=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + 7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + cipher=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + plain=AC38942C0007FEB020FF662279BA6123 + encrypted=7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B + +Set 7, vector#124: + key=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + 7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + cipher=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + plain=2AB1AC978D691B4B89D60EDA9D7D800E + encrypted=7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C + +Set 7, vector#125: + key=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + 7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + cipher=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + plain=86108A9ECB17BD7771F05A26A9D311B2 + encrypted=7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D + +Set 7, vector#126: + key=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + 7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + cipher=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + plain=801FB7FCEBEA004CA728D7CBC7CB3137 + encrypted=7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E + +Set 7, vector#127: + key=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + 7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + cipher=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + plain=8C7247D09D93D2339F210BDC69592615 + encrypted=7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F + +Set 7, vector#128: + key=80808080808080808080808080808080 + 80808080808080808080808080808080 + cipher=80808080808080808080808080808080 + plain=C9FBBF19EC80FF9510AD882A55600A24 + encrypted=80808080808080808080808080808080 + +Set 7, vector#129: + key=81818181818181818181818181818181 + 81818181818181818181818181818181 + cipher=81818181818181818181818181818181 + plain=62AA0F240390B48564F86C28528E150C + encrypted=81818181818181818181818181818181 + +Set 7, vector#130: + key=82828282828282828282828282828282 + 82828282828282828282828282828282 + cipher=82828282828282828282828282828282 + plain=1B780E4AA14D0D8FC8F58D6B9F93D525 + encrypted=82828282828282828282828282828282 + +Set 7, vector#131: + key=83838383838383838383838383838383 + 83838383838383838383838383838383 + cipher=83838383838383838383838383838383 + plain=4F1891CBEAE25EFD32F1404A23C43852 + encrypted=83838383838383838383838383838383 + +Set 7, vector#132: + key=84848484848484848484848484848484 + 84848484848484848484848484848484 + cipher=84848484848484848484848484848484 + plain=6A75BB756832F78612BF850DD781CD47 + encrypted=84848484848484848484848484848484 + +Set 7, vector#133: + key=85858585858585858585858585858585 + 85858585858585858585858585858585 + cipher=85858585858585858585858585858585 + plain=430DEDCAC85487674AEF62736C6E9825 + encrypted=85858585858585858585858585858585 + +Set 7, vector#134: + key=86868686868686868686868686868686 + 86868686868686868686868686868686 + cipher=86868686868686868686868686868686 + plain=8783DD506268E47CEA31912D4E03937A + encrypted=86868686868686868686868686868686 + +Set 7, vector#135: + key=87878787878787878787878787878787 + 87878787878787878787878787878787 + cipher=87878787878787878787878787878787 + plain=65CE80F046BCCC1A184F9997327B2C32 + encrypted=87878787878787878787878787878787 + +Set 7, vector#136: + key=88888888888888888888888888888888 + 88888888888888888888888888888888 + cipher=88888888888888888888888888888888 + plain=94E2C4ED0A4B509F4750B6D2E91A16D9 + encrypted=88888888888888888888888888888888 + +Set 7, vector#137: + key=89898989898989898989898989898989 + 89898989898989898989898989898989 + cipher=89898989898989898989898989898989 + plain=B2319027C612EC59792FE47CDA49C1FC + encrypted=89898989898989898989898989898989 + +Set 7, vector#138: + key=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + 8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + cipher=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + plain=03EFCD1E9DAB387A1E7673C43E1BB5C1 + encrypted=8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A + +Set 7, vector#139: + key=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + 8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + cipher=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + plain=FD72B4B8A112331709E51B0E917A6D08 + encrypted=8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B + +Set 7, vector#140: + key=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + 8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + cipher=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + plain=5AEE1E106357F125CA6126DBD6BDE8F8 + encrypted=8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C + +Set 7, vector#141: + key=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + 8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + cipher=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + plain=2F8766206F4C2E7A92A6334CFEAD47DC + encrypted=8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D + +Set 7, vector#142: + key=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + 8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + cipher=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + plain=2571122F12AD63FDD72D9BA525B94ED7 + encrypted=8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E + +Set 7, vector#143: + key=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + 8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + cipher=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + plain=8582E58AFD8AC11876EF400914D4032A + encrypted=8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F + +Set 7, vector#144: + key=90909090909090909090909090909090 + 90909090909090909090909090909090 + cipher=90909090909090909090909090909090 + plain=F5D8A87B143CB21A88F31A126764AEEC + encrypted=90909090909090909090909090909090 + +Set 7, vector#145: + key=91919191919191919191919191919191 + 91919191919191919191919191919191 + cipher=91919191919191919191919191919191 + plain=F4206B4D223991CF06DD8AC7D4720104 + encrypted=91919191919191919191919191919191 + +Set 7, vector#146: + key=92929292929292929292929292929292 + 92929292929292929292929292929292 + cipher=92929292929292929292929292929292 + plain=305AD8E7F3D22ECDF5638C88C364BF4D + encrypted=92929292929292929292929292929292 + +Set 7, vector#147: + key=93939393939393939393939393939393 + 93939393939393939393939393939393 + cipher=93939393939393939393939393939393 + plain=8AA15AD18B5159E11E847C538FF36B51 + encrypted=93939393939393939393939393939393 + +Set 7, vector#148: + key=94949494949494949494949494949494 + 94949494949494949494949494949494 + cipher=94949494949494949494949494949494 + plain=C9F4C92FE830A2FA820DBD4D1829D90F + encrypted=94949494949494949494949494949494 + +Set 7, vector#149: + key=95959595959595959595959595959595 + 95959595959595959595959595959595 + cipher=95959595959595959595959595959595 + plain=69B7B764449112797C404D45A9B7E5A1 + encrypted=95959595959595959595959595959595 + +Set 7, vector#150: + key=96969696969696969696969696969696 + 96969696969696969696969696969696 + cipher=96969696969696969696969696969696 + plain=EFF90AD0D7884F2D08131FAD22094307 + encrypted=96969696969696969696969696969696 + +Set 7, vector#151: + key=97979797979797979797979797979797 + 97979797979797979797979797979797 + cipher=97979797979797979797979797979797 + plain=8E60FD12D2172388A7E2788940CB9126 + encrypted=97979797979797979797979797979797 + +Set 7, vector#152: + key=98989898989898989898989898989898 + 98989898989898989898989898989898 + cipher=98989898989898989898989898989898 + plain=1C8B5853E85943229E549E56E3E2A45D + encrypted=98989898989898989898989898989898 + +Set 7, vector#153: + key=99999999999999999999999999999999 + 99999999999999999999999999999999 + cipher=99999999999999999999999999999999 + plain=B065C7BB6E6A90BCC82B6CA40FD42566 + encrypted=99999999999999999999999999999999 + +Set 7, vector#154: + key=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + 9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + cipher=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + plain=82249AF3B871729FC3EB01CFD792F6D9 + encrypted=9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A + +Set 7, vector#155: + key=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + 9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + cipher=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + plain=4E12783A7BC7B9228F5A4EE2CFA9B11E + encrypted=9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B + +Set 7, vector#156: + key=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + 9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + cipher=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + plain=AD36A14EA6498DC20930D0E10A61EA4F + encrypted=9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C + +Set 7, vector#157: + key=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + 9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + cipher=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + plain=59FBC5D0E2CEDA53041AAB60976BE0A2 + encrypted=9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D + +Set 7, vector#158: + key=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + 9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + cipher=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + plain=620A69D52D2E0D50E41E5A4FA2CF9700 + encrypted=9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E + +Set 7, vector#159: + key=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + 9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + cipher=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + plain=32AE17B83FC8C47412998A89DE694769 + encrypted=9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F + +Set 7, vector#160: + key=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + cipher=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + plain=39F7DE02879A89737B76CFDF6AA11C9D + encrypted=A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0 + +Set 7, vector#161: + key=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + cipher=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + plain=AD96FAD56F4D03B26F40140A6EB86868 + encrypted=A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1 + +Set 7, vector#162: + key=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + cipher=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + plain=D67491851F22837952745E9968F36F49 + encrypted=A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2 + +Set 7, vector#163: + key=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + cipher=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + plain=9EF791CC122B7543EB02B7B409836E20 + encrypted=A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3A3 + +Set 7, vector#164: + key=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + cipher=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + plain=54375C7EBA74769FED32E91B78B5F50D + encrypted=A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4 + +Set 7, vector#165: + key=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + cipher=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + plain=F4C4B67617B9858E5F7EA0153F2525DD + encrypted=A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5A5 + +Set 7, vector#166: + key=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + cipher=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + plain=6731479FC3F0802654771D84DDEF4821 + encrypted=A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6 + +Set 7, vector#167: + key=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + cipher=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + plain=F02AFDC42CD6AFE70D328251F53DF1C1 + encrypted=A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7A7 + +Set 7, vector#168: + key=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + cipher=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + plain=B92EE86D8F7FB52637C924BCDF35C8F2 + encrypted=A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8 + +Set 7, vector#169: + key=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + cipher=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + plain=7D37FA61436E4FA57FA804DCEEA7BA6D + encrypted=A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9A9 + +Set 7, vector#170: + key=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + cipher=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + plain=F5DDE67E6999DC9A24E3B510F651EA6B + encrypted=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + +Set 7, vector#171: + key=ABABABABABABABABABABABABABABABAB + ABABABABABABABABABABABABABABABAB + cipher=ABABABABABABABABABABABABABABABAB + plain=818251B22C5B1DD36A9EE90CFF141209 + encrypted=ABABABABABABABABABABABABABABABAB + +Set 7, vector#172: + key=ACACACACACACACACACACACACACACACAC + ACACACACACACACACACACACACACACACAC + cipher=ACACACACACACACACACACACACACACACAC + plain=3AAE36DFA575A2E7BD061815EC9C4BCA + encrypted=ACACACACACACACACACACACACACACACAC + +Set 7, vector#173: + key=ADADADADADADADADADADADADADADADAD + ADADADADADADADADADADADADADADADAD + cipher=ADADADADADADADADADADADADADADADAD + plain=AF1139BF806259E5EEF22B7AE36C24A5 + encrypted=ADADADADADADADADADADADADADADADAD + +Set 7, vector#174: + key=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + cipher=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + plain=851468C0C7B5A61E23FDF3F7BE41A8FD + encrypted=AEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE + +Set 7, vector#175: + key=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + cipher=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + plain=733061F16BEF4B615B45A250E2977202 + encrypted=AFAFAFAFAFAFAFAFAFAFAFAFAFAFAFAF + +Set 7, vector#176: + key=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + cipher=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + plain=40970F6FBA45C3DA298F3955039BD203 + encrypted=B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0 + +Set 7, vector#177: + key=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + cipher=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + plain=EEA922B11D29249C0028AAD6B50D963D + encrypted=B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1 + +Set 7, vector#178: + key=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + cipher=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + plain=22FB1B79552A7104CE7467F68860E2A5 + encrypted=B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2 + +Set 7, vector#179: + key=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + cipher=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + plain=734ECE04F7AAF760E5C2E4C322B4BC9F + encrypted=B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3 + +Set 7, vector#180: + key=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + cipher=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + plain=E571DF9A1A3F55A3065BF72E4CBA3D20 + encrypted=B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4B4 + +Set 7, vector#181: + key=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + cipher=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + plain=819106C53846BA8866DC01565FDB1F0B + encrypted=B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5B5 + +Set 7, vector#182: + key=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + cipher=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + plain=06F394EC62B328CAB6EE4976347B9A5C + encrypted=B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6 + +Set 7, vector#183: + key=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + cipher=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + plain=206E3ADF2942D6CAA717600475E155C0 + encrypted=B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7B7 + +Set 7, vector#184: + key=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + cipher=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + plain=9591F0306DA92877331120BD9D2D4185 + encrypted=B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8 + +Set 7, vector#185: + key=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + cipher=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + plain=209C99E235DFD9AA363C4DA4F1DB8E77 + encrypted=B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9B9 + +Set 7, vector#186: + key=BABABABABABABABABABABABABABABABA + BABABABABABABABABABABABABABABABA + cipher=BABABABABABABABABABABABABABABABA + plain=AF50F8E9D1D1C4D803811722E00C6E35 + encrypted=BABABABABABABABABABABABABABABABA + +Set 7, vector#187: + key=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + cipher=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + plain=BB5E86C125482C0E4FB5326B78D76AB6 + encrypted=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB + +Set 7, vector#188: + key=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + cipher=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + plain=C041896602E2660B2C51EFD17D3D519F + encrypted=BCBCBCBCBCBCBCBCBCBCBCBCBCBCBCBC + +Set 7, vector#189: + key=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + cipher=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + plain=7AC7C683A7426841543429617D457E05 + encrypted=BDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD + +Set 7, vector#190: + key=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + cipher=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + plain=28360AB79ED9DF57271A33563C4B15FE + encrypted=BEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBE + +Set 7, vector#191: + key=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + cipher=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + plain=8441A33470EB2B76C3F401B1ACFDDECA + encrypted=BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF + +Set 7, vector#192: + key=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + cipher=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + plain=1A348C0B47AC7A04B6AC4B33E3E7031D + encrypted=C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 + +Set 7, vector#193: + key=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + cipher=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + plain=82671EC60A194CF4900188A549E11C98 + encrypted=C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 + +Set 7, vector#194: + key=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + cipher=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + plain=2DDE84A606BE3FFC00BF6501ED5ECAD8 + encrypted=C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2 + +Set 7, vector#195: + key=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + cipher=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + plain=EE43047C73E244FBDB2C54167899F72F + encrypted=C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3 + +Set 7, vector#196: + key=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + cipher=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + plain=1F33BA7E4FE3A9EE165BAABCAA8AF493 + encrypted=C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4C4 + +Set 7, vector#197: + key=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + cipher=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + plain=B6A7E8D4F851F5D6EC141613E9F4C6F3 + encrypted=C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5C5 + +Set 7, vector#198: + key=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + cipher=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + plain=90D4724D5B5157AB80F948829CA1352A + encrypted=C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6 + +Set 7, vector#199: + key=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + cipher=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + plain=CB32124824555D3F1E53289B4D5C36A0 + encrypted=C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7C7 + +Set 7, vector#200: + key=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + cipher=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + plain=57E5074F937F2A6D8D55CB8B1D43F5ED + encrypted=C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8 + +Set 7, vector#201: + key=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + cipher=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + plain=4F9E99686E922242D447752CE837A1DB + encrypted=C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9C9 + +Set 7, vector#202: + key=CACACACACACACACACACACACACACACACA + CACACACACACACACACACACACACACACACA + cipher=CACACACACACACACACACACACACACACACA + plain=EA58E2F2DB0BEA5D309E3F25EB174107 + encrypted=CACACACACACACACACACACACACACACACA + +Set 7, vector#203: + key=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + cipher=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + plain=C440E4BD2211E46EA84D658A08C9CD47 + encrypted=CBCBCBCBCBCBCBCBCBCBCBCBCBCBCBCB + +Set 7, vector#204: + key=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + cipher=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + plain=4F9696867F72E4DF6B0866F979116A4F + encrypted=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC + +Set 7, vector#205: + key=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + cipher=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + plain=66CB6B9057765E96B19000F36EFDE467 + encrypted=CDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCD + +Set 7, vector#206: + key=CECECECECECECECECECECECECECECECE + CECECECECECECECECECECECECECECECE + cipher=CECECECECECECECECECECECECECECECE + plain=822A7DC55F0A2428F42E800E8ED99C55 + encrypted=CECECECECECECECECECECECECECECECE + +Set 7, vector#207: + key=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + cipher=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + plain=5246B3AF0C9FA69166FB51D749E2871B + encrypted=CFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCF + +Set 7, vector#208: + key=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + cipher=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + plain=55E9C8DD1D33CA2D3F075838D4E9DA09 + encrypted=D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0 + +Set 7, vector#209: + key=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + cipher=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + plain=82ECCDA59AA63ABF2508EEBAA78323B3 + encrypted=D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1 + +Set 7, vector#210: + key=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + cipher=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + plain=7598857448C85326AA727C40A55EBEC8 + encrypted=D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2 + +Set 7, vector#211: + key=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + cipher=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + plain=D01364D20BB45539F1D756A327082583 + encrypted=D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3 + +Set 7, vector#212: + key=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + cipher=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + plain=0D91BFBFDF4E72CB4276337A3E6DBE2F + encrypted=D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4 + +Set 7, vector#213: + key=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + cipher=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + plain=2A03CCA208018938AA29372817DB16E4 + encrypted=D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5 + +Set 7, vector#214: + key=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + cipher=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + plain=2BB4BE3963BD2367DCF2634396003068 + encrypted=D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6 + +Set 7, vector#215: + key=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + cipher=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + plain=648AE793E1F64A4F0356A3BFE50C931E + encrypted=D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 + +Set 7, vector#216: + key=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + cipher=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + plain=001ED3190EBE70F4256CF017D1DE3FD4 + encrypted=D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D8 + +Set 7, vector#217: + key=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + cipher=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + plain=EBE1C6379FDAC8B319ABE1529F737BAC + encrypted=D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9 + +Set 7, vector#218: + key=DADADADADADADADADADADADADADADADA + DADADADADADADADADADADADADADADADA + cipher=DADADADADADADADADADADADADADADADA + plain=26C66E8451E8AB9A6AC69C25BE6DB5CB + encrypted=DADADADADADADADADADADADADADADADA + +Set 7, vector#219: + key=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + cipher=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + plain=B5D6B479614D2482DEF84822FA21FCBD + encrypted=DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDB + +Set 7, vector#220: + key=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + cipher=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + plain=AEB6FAAC5C5ABB85EAED695A15D4AA96 + encrypted=DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC + +Set 7, vector#221: + key=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + cipher=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + plain=4DAC69F2D1DD81946DBC03CBC02FE8A4 + encrypted=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD + +Set 7, vector#222: + key=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + cipher=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + plain=1CA6385BE5DF096EAE3E6BE1CF8F1B62 + encrypted=DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDE + +Set 7, vector#223: + key=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + cipher=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + plain=D0537BAD0E64F3B467A7B121519AE99D + encrypted=DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF + +Set 7, vector#224: + key=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + cipher=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + plain=D7B629F5596BE884F2961C68697C86D2 + encrypted=E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0 + +Set 7, vector#225: + key=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + cipher=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + plain=81586F9B09CAC9868838FAF965D275A9 + encrypted=E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1 + +Set 7, vector#226: + key=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + cipher=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + plain=D8953CAD72C0F1B1A8A68A0E3BFA27CE + encrypted=E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2 + +Set 7, vector#227: + key=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + cipher=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + plain=C5D959AF6EBBFB656E14D79251025DC8 + encrypted=E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3 + +Set 7, vector#228: + key=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + cipher=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + plain=3DAAF4935D0FF5EC801390C29A3EA4D4 + encrypted=E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4E4 + +Set 7, vector#229: + key=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + cipher=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + plain=0DA2506281B24588062099AE1617FCAD + encrypted=E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5E5 + +Set 7, vector#230: + key=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + cipher=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + plain=1F27FC72BECFDF90BD0AEC1AB8FCC913 + encrypted=E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6 + +Set 7, vector#231: + key=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + cipher=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + plain=921D22FD17E5BFF4016B0ADED3872241 + encrypted=E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7 + +Set 7, vector#232: + key=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + cipher=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + plain=687DF638AF2759B4655D5D063517CF3E + encrypted=E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8 + +Set 7, vector#233: + key=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + cipher=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + plain=E82C095E19A2C1CF4EAA6A5858080C21 + encrypted=E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 + +Set 7, vector#234: + key=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + cipher=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + plain=6D53EDC6CBEA0810753288884EB38F42 + encrypted=EAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEA + +Set 7, vector#235: + key=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + cipher=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + plain=F52018367B39CEB90998B2FCA243C362 + encrypted=EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB + +Set 7, vector#236: + key=ECECECECECECECECECECECECECECECEC + ECECECECECECECECECECECECECECECEC + cipher=ECECECECECECECECECECECECECECECEC + plain=4B16A6337ADDB6D2733B1F4D26D6047F + encrypted=ECECECECECECECECECECECECECECECEC + +Set 7, vector#237: + key=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + cipher=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + plain=CC3ACC2F9FFB3EAF33BE069DFA2FFD7B + encrypted=EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDED + +Set 7, vector#238: + key=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + cipher=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + plain=FEFC187B30214C53641437014FDC4952 + encrypted=EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE + +Set 7, vector#239: + key=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + cipher=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + plain=2E33C5E0FE7D6A629D0536F806498D5C + encrypted=EFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF + +Set 7, vector#240: + key=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + cipher=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + plain=DC43F4A0B45175B7296F72DF8EDBE2CE + encrypted=F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0 + +Set 7, vector#241: + key=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + cipher=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + plain=2F2B6A80B18A7CE4A0F20AFB9DC12CBD + encrypted=F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 + +Set 7, vector#242: + key=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + cipher=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + plain=E6ED4A50057C1D9B887EB23502B9FE0B + encrypted=F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 + +Set 7, vector#243: + key=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + cipher=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + plain=6D30B69D4573978AC5A2EC38C406F47E + encrypted=F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 + +Set 7, vector#244: + key=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + cipher=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + plain=5CBC89B39C024F4D04934E4E20A76ACC + encrypted=F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 + +Set 7, vector#245: + key=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + cipher=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + plain=EB981B54579757B58DAB3C8139545BBB + encrypted=F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 + +Set 7, vector#246: + key=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + cipher=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + plain=B96B229F31A2788CB5723380EA0B35D4 + encrypted=F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6 + +Set 7, vector#247: + key=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + cipher=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + plain=B7F961D17BE356B1428F5A9369C99CDA + encrypted=F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7 + +Set 7, vector#248: + key=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + cipher=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + plain=652F1316D19859D28A672A9BFE548607 + encrypted=F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8 + +Set 7, vector#249: + key=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + cipher=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + plain=A674B5FE70373C1EC408E30BD765BD53 + encrypted=F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9F9 + +Set 7, vector#250: + key=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + cipher=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + plain=9C4030764E587315CA23CB865DCA5FA0 + encrypted=FAFAFAFAFAFAFAFAFAFAFAFAFAFAFAFA + +Set 7, vector#251: + key=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + cipher=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + plain=6EDBF432427DD902307DD417110641DC + encrypted=FBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFB + +Set 7, vector#252: + key=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + cipher=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + plain=DBAB4D36268258ADBF07C0B05BF843B8 + encrypted=FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC + +Set 7, vector#253: + key=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + cipher=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + plain=C425423AADAB4C905FE3FF931973B4D5 + encrypted=FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD + +Set 7, vector#254: + key=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + cipher=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + plain=484E1EB50AD14BD83F67D778C1C196C5 + encrypted=FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE + +Set 7, vector#255: + key=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + cipher=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + plain=F21E61DEDB4B646220DFA009563FBCFC + encrypted=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF + +Test vectors -- set 8 +===================== + +Set 8, vector# 0: + key=000102030405060708090A0B0C0D0E0F + 101112131415161718191A1B1C1D1E1F + cipher=00112233445566778899AABBCCDDEEFF + plain=EAB487E68EC92DB4AC288A24757B0262 + encrypted=00112233445566778899AABBCCDDEEFF + +Set 8, vector# 1: + key=2BD6459F82C5B300952C49104881FF48 + 2BD6459F82C5B300952C49104881FF48 + cipher=EA024714AD5C4D84EA024714AD5C4D84 + plain=DFC295E9D04A30DB25940E4FCC64516F + encrypted=EA024714AD5C4D84EA024714AD5C4D84 + + + +End of test vectors diff --git a/twister-small.c b/twister-small.c index 2f46af0..4421285 100644 --- a/twister-small.c +++ b/twister-small.c @@ -53,7 +53,6 @@ void twister_small_nextBlock(twister_state_t* ctx, void* msg){ void twister_small_lastBlock(twister_state_t* ctx, void* msg, uint16_t length_b){ uint8_t tmp[64]; - uint8_t i; while(length_b>512){ twister_small_nextBlock(ctx, msg); msg = ((uint8_t*)msg)+64; -- 2.39.2