From cd43a0beecc9879aad189be2e5489f3a0bc82a2d Mon Sep 17 00:00:00 2001
From: Paul Bakker
Date: Thu, 9 Jun 2011 13:55:44 +0000
Subject: [PATCH] - Adjusted to use proper size_t arguments
---
tests/suites/test_suite_aes.function | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/suites/test_suite_aes.function b/tests/suites/test_suite_aes.function
index 314470041..6c3085341 100644
--- a/tests/suites/test_suite_aes.function
+++ b/tests/suites/test_suite_aes.function
@@ -137,7 +137,7 @@ aes_encrypt_cfb128:hex_key_string:hex_iv_string:hex_src_string:hex_dst_string
unsigned char dst_str[100];
unsigned char output[100];
aes_context ctx;
- int iv_offset = 0;
+ size_t iv_offset = 0;
int key_len;
memset(key_str, 0x00, 100);
@@ -167,7 +167,7 @@ aes_decrypt_cfb128:hex_key_string:hex_iv_string:hex_src_string:hex_dst_string
unsigned char dst_str[100];
unsigned char output[100];
aes_context ctx;
- int iv_offset = 0;
+ size_t iv_offset = 0;
int key_len;
memset(key_str, 0x00, 100);