1 /*
2  * Copyright (c) 2023 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef MOCKS_CRYPTO_H_
8 #define MOCKS_CRYPTO_H_
9 #include <stddef.h>
10 
11 #include <zephyr/fff.h>
12 #include <zephyr/kernel.h>
13 
14 /* List of fakes used by this unit tester */
15 #define CRYPTO_FFF_FAKES_LIST(FAKE) FAKE(bt_rand)
16 
17 DECLARE_FAKE_VALUE_FUNC(int, bt_rand, void *, size_t);
18 
19 #endif /* MOCKS_CRYPTO_H_ */
20