blob: 52d4b0833e2d8d9434f046a710fea627dc040a07 [file] [log] [blame]
Tom Cosgroveb2fafa52023-09-01 14:40:21 +01001/* mbedtls_config.h modifier that defines mbedtls_platform_zeroize() to be
Tom Cosgrove7eced7d2023-09-01 13:55:39 +01002 * memset(), so that the compile can check arguments for us.
3 * Used for testing.
4 */
5/*
6 * Copyright The Mbed TLS Contributors
Dave Rodgman16799db2023-11-02 19:47:20 +00007 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
Tom Cosgrove7eced7d2023-09-01 13:55:39 +01008 */
9
Tom Cosgrove7eced7d2023-09-01 13:55:39 +010010#include <string.h>
11
12/* Define _ALT so we don't get the built-in implementation. The test code will
13 * also need to define MBEDTLS_TEST_DEFINES_ZEROIZE so we don't get the
14 * declaration. */
15#define MBEDTLS_PLATFORM_ZEROIZE_ALT
16
17#define mbedtls_platform_zeroize(buf, len) memset(buf, 0, len)