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/camellia.c b/library/camellia.c index 58ae1a8..77a731b 100644 --- a/library/camellia.c +++ b/library/camellia.c
@@ -951,7 +951,7 @@ mbedtls_camellia_context ctx; - mbedtls_platform_memset( key, 0, 32 ); + memset( key, 0, 32 ); for( j = 0; j < 6; j++ ) { u = j >> 1;