Fix after PR comments

1. Don't set IV onECB
2. Fix style issues
3. reduce number of tests
This commit is contained in:
Ron Eldor 2017-09-25 18:22:32 +03:00 committed by Simon Butcher
parent 7b01244b99
commit 4e64e0b922
5 changed files with 36 additions and 474 deletions

View file

@ -258,7 +258,7 @@ static const mbedtls_cipher_info_t aes_128_ecb_info = {
MBEDTLS_MODE_ECB,
128,
"AES-128-ECB",
16,
0,
0,
16,
&aes_info
@ -269,7 +269,7 @@ static const mbedtls_cipher_info_t aes_192_ecb_info = {
MBEDTLS_MODE_ECB,
192,
"AES-192-ECB",
16,
0,
0,
16,
&aes_info
@ -280,7 +280,7 @@ static const mbedtls_cipher_info_t aes_256_ecb_info = {
MBEDTLS_MODE_ECB,
256,
"AES-256-ECB",
16,
0,
0,
16,
&aes_info