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