From 26e281831efe7c0a1af724eedec1dd1e6bae9b21 Mon Sep 17 00:00:00 2001
From: Paul Bakker
Date: Tue, 26 Nov 2013 17:45:20 +0100
Subject: [PATCH] Renamed test_offset to prevent clash with one in ctr_drbg.c
---
tests/suites/test_suite_ctr_drbg.function | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/tests/suites/test_suite_ctr_drbg.function b/tests/suites/test_suite_ctr_drbg.function
index 155bfc520..a985fe473 100644
--- a/tests/suites/test_suite_ctr_drbg.function
+++ b/tests/suites/test_suite_ctr_drbg.function
@@ -1,12 +1,12 @@
BEGIN_HEADER
#include
-int test_offset;
+int test_offset_idx;
int entropy_func( void *data, unsigned char *buf, size_t len )
{
unsigned char *p = (unsigned char *) data;
- memcpy( buf, p + test_offset, len );
- test_offset += 32;
+ memcpy( buf, p + test_offset_idx, len );
+ test_offset_idx += 32;
return( 0 );
}
@@ -42,7 +42,7 @@ ctr_drbg_validate_pr:add_init_string:entropy_string:add1_string:add2_string:resu
add1_len = unhexify( add1, {add1_string} );
add2_len = unhexify( add2, {add2_string} );
- test_offset = 0;
+ test_offset_idx = 0;
TEST_ASSERT( ctr_drbg_init_entropy_len( &ctx, entropy_func, entropy, add_init, add_init_len, 32 ) == 0 );
ctr_drbg_set_prediction_resistance( &ctx, CTR_DRBG_PR_ON );
@@ -74,7 +74,7 @@ ctr_drbg_validate_nopr:add_init_string:entropy_string:add1_string:add_reseed_str
add_reseed_len = unhexify( add_reseed, {add_reseed_string} );
add2_len = unhexify( add2, {add2_string} );
- test_offset = 0;
+ test_offset_idx = 0;
TEST_ASSERT( ctr_drbg_init_entropy_len( &ctx, entropy_func, entropy, add_init, add_init_len, 32 ) == 0 );
TEST_ASSERT( ctr_drbg_random_with_add( &ctx, buf, 16, add1, add1_len ) == 0 );