added test vectors for AES128 CBC
This commit is contained in:
@@ -7,6 +7,7 @@ plugin_LTLIBRARIES = libstrongswan-test-vectors.la
|
||||
|
||||
libstrongswan_test_vectors_la_SOURCES = \
|
||||
test_vectors_plugin.h test_vectors_plugin.c \
|
||||
test_vectors/blowfish.c
|
||||
test_vectors/blowfish.c \
|
||||
test_vectors/aes_cbc.c
|
||||
libstrongswan_test_vectors_la_LDFLAGS = -module
|
||||
|
||||
|
||||
@@ -15,4 +15,7 @@
|
||||
|
||||
TEST_VECTOR_CRYPTER(blowfish1)
|
||||
TEST_VECTOR_CRYPTER(blowfish2)
|
||||
TEST_VECTOR_CRYPTER(aes_cbc1)
|
||||
TEST_VECTOR_CRYPTER(aes_cbc2)
|
||||
TEST_VECTOR_CRYPTER(aes_cbc3)
|
||||
|
||||
|
||||
@@ -0,0 +1,58 @@
|
||||
/*
|
||||
* Copyright (C) 2009 Martin Willi
|
||||
* Hochschule fuer Technik Rapperswil
|
||||
*
|
||||
* 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 2 of the Licenseor (at your
|
||||
* option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
|
||||
*
|
||||
* This program is distributed in the hope that it will be usefulbut
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include <crypto/crypto_tester.h>
|
||||
|
||||
/**
|
||||
* Test 1 of RFC3602
|
||||
*/
|
||||
crypter_test_vector_t aes_cbc1 = {
|
||||
.alg = ENCR_AES_CBC, .key_size = 16, .len = 16,
|
||||
.key = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b\x51\x2e\x03\xd5\x34\x12\x00\x06",
|
||||
.iv = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30\xb4\x22\xda\x80\x2c\x9f\xac\x41",
|
||||
.plain = "Single block msg",
|
||||
.cipher = "\xe3\x53\x77\x9c\x10\x79\xae\xb8\x27\x08\x94\x2d\xbe\x77\x18\x1a"
|
||||
};
|
||||
|
||||
/**
|
||||
* Test 2 of RFC3602
|
||||
*/
|
||||
crypter_test_vector_t aes_cbc2 = {
|
||||
.alg = ENCR_AES_CBC, .key_size = 16, .len = 32,
|
||||
.key = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0\x61\x1b\xbb\x3e\x20\x25\xa4\x5a",
|
||||
.iv = "\x56\x2e\x17\x99\x6d\x09\x3d\x28\xdd\xb3\xba\x69\x5a\x2e\x6f\x58",
|
||||
.plain = "\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
|
||||
"\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
|
||||
.cipher = "\xd2\x96\xcd\x94\xc2\xcc\xcf\x8a\x3a\x86\x30\x28\xb5\xe1\xdc\x0a"
|
||||
"\x75\x86\x60\x2d\x25\x3c\xff\xf9\x1b\x82\x66\xbe\xa6\xd6\x1a\xb1"
|
||||
};
|
||||
|
||||
/**
|
||||
* Test 3 of RFC3602
|
||||
*/
|
||||
crypter_test_vector_t aes_cbc3 = {
|
||||
.alg = ENCR_AES_CBC, .key_size = 16, .len = 64,
|
||||
.key = "\x56\xe4\x7a\x38\xc5\x59\x89\x74\xbc\x46\x90\x3d\xba\x29\x03\x49",
|
||||
.iv = "\x8c\xe8\x2e\xef\xbe\xa0\xda\x3c\x44\x69\x9e\xd7\xdb\x51\xb7\xd9",
|
||||
.plain = "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
|
||||
"\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
|
||||
"\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
|
||||
"\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf",
|
||||
.cipher = "\xc3\x0e\x32\xff\xed\xc0\x77\x4e\x6a\xff\x6a\xf0\x86\x9f\x71\xaa"
|
||||
"\x0f\x3a\xf0\x7a\x9a\x31\xa9\xc6\x84\xdb\x20\x7e\xb0\xef\x8e\x4e"
|
||||
"\x35\x90\x7a\xa6\x32\xc3\xff\xdf\x86\x8b\xb7\xb2\x9d\x3d\x46\xad"
|
||||
"\x83\xce\x9f\x9a\x10\x2e\xe9\x9d\x49\xa5\x3e\x87\xf4\xc3\xda\x55"
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user