1 /*
2  * Copyright (c) 2021 Demant
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 #include <zephyr/types.h>
7 #include <zephyr/ztest.h>
8 #include "hal/ecb.h"
9 
ecb_encrypt(uint8_t const * const key_le,uint8_t const * const clear_text_le,uint8_t * const cipher_text_le,uint8_t * const cipher_text_be)10 __attribute__((weak)) void ecb_encrypt(uint8_t const *const key_le,
11 				       uint8_t const *const clear_text_le,
12 				       uint8_t *const cipher_text_le, uint8_t *const cipher_text_be)
13 {
14 }
15