xref: /rk3399_ARM-atf/include/drivers/st/stm32_rng.h (revision 06f3c7058c42a9f1a9f7df75ea2de71a000855e8)
1 /*
2  * Copyright (c) 2022, STMicroelectronics - All Rights Reserved
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef STM32_RNG_H
8 #define STM32_RNG_H
9 
10 #include <stdint.h>
11 
12 int stm32_rng_read(uint8_t *out, uint32_t size);
13 int stm32_rng_init(void);
14 
15 #endif /* STM32_RNG_H */
16