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