1 /* 2 * Copyright (c) 2023 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 /* 8 * This header exists only for backwards compatibility 9 * please use NHW_AES_ECB.h instead 10 */ 11 #ifndef _NRF_HW_MODEL_NRF_AES_ECB_H 12 #define _NRF_HW_MODEL_NRF_AES_ECB_H 13 14 #include "NHW_AES_ECB.h" 15 16 #ifdef __cplusplus 17 extern "C"{ 18 #endif 19 20 void nrf_aes_ecb_cheat_set_t_ecb(unsigned int new_t); 21 void nrf_aes_ecb_cheat_reset_t_ecb(void); 22 23 #ifdef __cplusplus 24 } 25 #endif 26 27 #endif 28