commit | 1f6301b3c889efb8e353aa8179f691123549d6c7 | [log] [tgz] |
---|---|---|
author | Andres Amaya Garcia <Andres.AmayaGarcia@arm.com> | Tue Apr 17 09:51:09 2018 -0500 |
committer | Andres Amaya Garcia <Andres.AmayaGarcia@arm.com> | Tue Apr 17 10:00:21 2018 -0500 |
tree | 277993b32c6eeff009eca7cdaee97300b18be783 | |
parent | 904e1efb8c69fc8395a5575a2a48d13ac3bfab22 [diff] [blame] |
Rename mbedtls_zeroize to mbedtls_platform_zeroize
diff --git a/library/arc4.c b/library/arc4.c index a6d2d4e..b8998ac 100644 --- a/library/arc4.c +++ b/library/arc4.c
@@ -33,7 +33,7 @@ #if defined(MBEDTLS_ARC4_C) #include "mbedtls/arc4.h" -#include "mbedtls/utils.h" +#include "mbedtls/platform_util.h" #include <string.h> @@ -58,7 +58,7 @@ if( ctx == NULL ) return; - mbedtls_zeroize( ctx, sizeof( mbedtls_arc4_context ) ); + mbedtls_platform_zeroize( ctx, sizeof( mbedtls_arc4_context ) ); } /*