summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatteo Brichese <matteo.brichese@wunderbar.com>2017-06-06 22:51:50 +0200
committerMatteo Brichese <matteo.brichese@wunderbar.com>2017-06-06 22:51:50 +0200
commit265d6bce6b62eba3b60e99a3dd8bac0f52d6dfe1 (patch)
treed36405af5c31e94cb6bcce32ca1f0567646c2908
parentMerge branch 'master' of https://github.com/bricke/tiny-AES128-C (diff)
downloadtiny-AES-c-265d6bce6b62eba3b60e99a3dd8bac0f52d6dfe1.tar
tiny-AES-c-265d6bce6b62eba3b60e99a3dd8bac0f52d6dfe1.tar.gz
tiny-AES-c-265d6bce6b62eba3b60e99a3dd8bac0f52d6dfe1.tar.bz2
tiny-AES-c-265d6bce6b62eba3b60e99a3dd8bac0f52d6dfe1.tar.lz
tiny-AES-c-265d6bce6b62eba3b60e99a3dd8bac0f52d6dfe1.tar.xz
tiny-AES-c-265d6bce6b62eba3b60e99a3dd8bac0f52d6dfe1.tar.zst
tiny-AES-c-265d6bce6b62eba3b60e99a3dd8bac0f52d6dfe1.zip
-rw-r--r--test.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/test.c b/test.c
index 8900e91..8908773 100644
--- a/test.c
+++ b/test.c
@@ -162,7 +162,6 @@ static void test_decrypt_cbc(void)
0x30, 0xc8, 0x1c, 0x46, 0xa3, 0x5c, 0xe4, 0x11, 0xe5, 0xfb, 0xc1, 0x19, 0x1a, 0x0a, 0x52, 0xef,
0xf6, 0x9f, 0x24, 0x45, 0xdf, 0x4f, 0x9b, 0x17, 0xad, 0x2b, 0x41, 0x7b, 0xe6, 0x6c, 0x37, 0x10 };
uint8_t buffer[64];
- uint8_t buffer2[64];
AES_CBC_decrypt_buffer(buffer, in, 64, key, iv);