/* * Copyright (c) 2021-2022, Arm Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ #ifndef STUB_CRYPTO_CALLER_PURGE_KEY_H #define STUB_CRYPTO_CALLER_PURGE_KEY_H #include #include #ifdef __cplusplus extern "C" { #endif static inline psa_status_t crypto_caller_purge_key(struct service_client *context, psa_key_id_t key) { (void)context; (void)key; return PSA_ERROR_NOT_SUPPORTED; } #ifdef __cplusplus } #endif #endif /* STUB_CRYPTO_CALLER_PURGE_KEY_H */