commit | d49d2b6d4f73b375f1e9d2afcb6b3e46d8ddcdff | [log] [tgz] |
---|---|---|
author | Teppo Järvelin <teppo.jarvelin@arm.com> | Wed Oct 30 13:48:12 2019 +0200 |
committer | Teppo Järvelin <teppo.jarvelin@arm.com> | Wed Oct 30 14:07:04 2019 +0200 |
tree | 4a69ea63051f5d91b0c638cc7b9792f14bb90bd7 | |
parent | 6f4e030166ab27764f9217c56c298e83b93d141d [diff] [blame] |
Changed mbedtls_platform_memset/cpy/cmp in selftest functions back to original methods
diff --git a/library/ripemd160.c b/library/ripemd160.c index bdfad2c..3ef8e10 100644 --- a/library/ripemd160.c +++ b/library/ripemd160.c
@@ -520,7 +520,7 @@ int i, ret = 0; unsigned char output[20]; - mbedtls_platform_memset( output, 0, sizeof output ); + memset( output, 0, sizeof output ); for( i = 0; i < TESTS; i++ ) {