/src/mbedtls/library/psa_crypto_client.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * PSA crypto client code |
3 | | */ |
4 | | /* |
5 | | * Copyright The Mbed TLS Contributors |
6 | | * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later |
7 | | */ |
8 | | |
9 | | #include "common.h" |
10 | | #include "psa/crypto.h" |
11 | | |
12 | | #if defined(MBEDTLS_PSA_CRYPTO_CLIENT) |
13 | | |
14 | | #include <string.h> |
15 | | #include "mbedtls/platform.h" |
16 | | |
17 | | void psa_reset_key_attributes(psa_key_attributes_t *attributes) |
18 | 0 | { |
19 | 0 | memset(attributes, 0, sizeof(*attributes)); |
20 | 0 | } |
21 | | |
22 | | #endif /* MBEDTLS_PSA_CRYPTO_CLIENT */ |