1[ 2 // F.2.1 (CBC-AES128.Encrypt) 3 // http://csrc.nist.gov/publications/nistpubs/800-38a/sp800-38a.pdf 4 { 5 "key": "2b7e151628aed2a6abf7158809cf4f3c", 6 "iv": "000102030405060708090a0b0c0d0e0f", 7 "plain_text": "6bc1bee22e409f96e93d7e117393172aae2d8a571e03ac9c9eb76fac45af8e5130c81c46a35ce411e5fbc1191a0a52eff69f2445df4f9b17ad2b417be66c3710", 8 // Added a padding block: encryption of {0x10, 0x10, ... 0x10}) (not given by the 9 // NIST test vector) 10 "cipher_text": "7649abac8119b246cee98e9b12e9197d5086cb9b507219ee95db113a917678b273bed6b8e3c1743b7116e69e222295163ff1caa1681fac09120eca307586e1a78cb82807230e1321d3fae00d18cc2012" 11 }, 12 13 // F.2.6 CBC-AES256.Decrypt [*] 14 // http://csrc.nist.gov/publications/nistpubs/800-38a/sp800-38a.pdf 15 // 16 // [*] Truncated 3 bytes off the plain text, so block 4 differs from the 17 // NIST vector. 18 { 19 "key": "603deb1015ca71be2b73aef0857d77811f352c073b6108d72d9810a30914dff4", 20 "iv": "000102030405060708090a0b0c0d0e0f", 21 // Truncated the last block to make it more interesting. 22 "plain_text": "6bc1bee22e409f96e93d7e117393172aae2d8a571e03ac9c9eb76fac45af8e5130c81c46a35ce411e5fbc1191a0a52eff69f2445df4f9b17ad2b417be6", 23 // Last block differs from source vector (due to truncation) 24 "cipher_text": "f58c4c04d6e5f1ba779eabfb5f7bfbd69cfc4e967edb808d679f777bc6702c7d39f23369a9d9bacfa530e26304231461c9aaf02a6a54e9e242ccbf48c59daca6" 25 }, 26 27 // Taken from encryptor_unittest.cc (EncryptorTest.EmptyEncrypt()) 28 { 29 "key": "3132383d5369787465656e4279746573", 30 "iv": "5377656574205369787465656e204956", 31 "plain_text": "", 32 "cipher_text": "8518b8878d34e7185e300d0fcc426396" 33 } 34] 35