diff options
Diffstat (limited to 'test/aes128cfb_encrypt.c')
-rw-r--r-- | test/aes128cfb_encrypt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/aes128cfb_encrypt.c b/test/aes128cfb_encrypt.c index a566922..922788b 100644 --- a/test/aes128cfb_encrypt.c +++ b/test/aes128cfb_encrypt.c @@ -52,7 +52,7 @@ int main(int argc, char** argv) fprintf(stderr, "Invalid 128-bit AES block '%s'\n", *argv); continue; } - cipher = aes128cfb_encrypt(plain, &key_schedule, iv, &iv); + cipher = aes128cfb_encrypt_block(plain, &key_schedule, iv, &iv); print_aes_block128(&cipher); } } |