commit | b5c4671a80ddef83d3ef07493bea975efa3495f6 | [log] [tgz] |
---|---|---|
author | Teppo Järvelin <teppo.jarvelin@arm.com> | Fri Oct 04 13:35:55 2019 +0300 |
committer | Teppo Järvelin <teppo.jarvelin@arm.com> | Wed Oct 30 14:07:04 2019 +0200 |
tree | 3f7b46cfa9b5c2045bfe3cb86b0decce5430aa71 | |
parent | 3137fb271ad5c5b50080de6c33171e58d99853ff [diff] [blame] |
Changed mbedtls_platform_memcpy back to memcpy for selftest and test functions
diff --git a/library/arc4.c b/library/arc4.c index e936fc5..eeebbdc 100644 --- a/library/arc4.c +++ b/library/arc4.c
@@ -169,7 +169,7 @@ if( verbose != 0 ) mbedtls_printf( " ARC4 test #%d: ", i + 1 ); - mbedtls_platform_memcpy( ibuf, arc4_test_pt[i], 8 ); + memcpy( ibuf, arc4_test_pt[i], 8 ); mbedtls_arc4_setup( &ctx, arc4_test_key[i], 8 ); mbedtls_arc4_crypt( &ctx, 8, ibuf, obuf );