2023-09-01 15:40:21 +02:00
|
|
|
/* mbedtls_config.h modifier that defines mbedtls_platform_zeroize() to be
|
2023-09-01 14:55:39 +02:00
|
|
|
* memset(), so that the compile can check arguments for us.
|
|
|
|
* Used for testing.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* Copyright The Mbed TLS Contributors
|
2023-11-02 20:47:20 +01:00
|
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
2023-09-01 14:55:39 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
/* Define _ALT so we don't get the built-in implementation. The test code will
|
|
|
|
* also need to define MBEDTLS_TEST_DEFINES_ZEROIZE so we don't get the
|
|
|
|
* declaration. */
|
|
|
|
#define MBEDTLS_PLATFORM_ZEROIZE_ALT
|
|
|
|
|
|
|
|
#define mbedtls_platform_zeroize(buf, len) memset(buf, 0, len)
|