diff options
author | Philippe Reynes <philippe.reynes@softathome.com> | 2020-01-06 15:22:37 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-01-17 10:15:49 -0500 |
commit | 1c6cd16de810f88c27c5c945a30e0e9f3842df68 (patch) | |
tree | f9aad0a464d2d7ae2c030074ddfdac8a4ee9e2af /test | |
parent | ebcdb8df513e721f10c7a7623fc71d7653a116a7 (diff) | |
download | u-boot-1c6cd16de810f88c27c5c945a30e0e9f3842df68.zip u-boot-1c6cd16de810f88c27c5c945a30e0e9f3842df68.tar.gz u-boot-1c6cd16de810f88c27c5c945a30e0e9f3842df68.tar.bz2 |
aes: add test unit for aes196 and aes256
This commit add test unit for aes196 and aes256.
Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test')
-rw-r--r-- | test/lib/test_aes.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/lib/test_aes.c b/test/lib/test_aes.c index 2b0e894..b7b4b77 100644 --- a/test/lib/test_aes.c +++ b/test/lib/test_aes.c @@ -26,6 +26,10 @@ struct test_aes_s { static struct test_aes_s test_aes[] = { { AES128_KEY_LENGTH, AES128_EXPAND_KEY_LENGTH, TEST_AES_ONE_BLOCK, 1 }, { AES128_KEY_LENGTH, AES128_EXPAND_KEY_LENGTH, TEST_AES_CBC_CHAIN, 16 }, + { AES192_KEY_LENGTH, AES192_EXPAND_KEY_LENGTH, TEST_AES_ONE_BLOCK, 1 }, + { AES192_KEY_LENGTH, AES192_EXPAND_KEY_LENGTH, TEST_AES_CBC_CHAIN, 16 }, + { AES256_KEY_LENGTH, AES256_EXPAND_KEY_LENGTH, TEST_AES_ONE_BLOCK, 1 }, + { AES256_KEY_LENGTH, AES256_EXPAND_KEY_LENGTH, TEST_AES_CBC_CHAIN, 16 }, }; static void rand_buf(u8 *buf, int size) |