Update test.c

This commit is contained in:
kokke 2014-06-03 01:01:22 +02:00
parent b459336cbb
commit c3b8c27ab8
1 changed files with 1 additions and 1 deletions

2
test.c
View File

@ -47,7 +47,7 @@ static void test_ECB(void)
printf("ciphertext:\n");
for(i = 0; i < 4; ++i)
{
AES128_ECB(plain_text + (i*16), key, buf+(i*16));
AES128_ECB_encrypt(plain_text + (i*16), key, buf+(i*16));
phex(buf + (i*16));
}
printf("\n");