blob: 6ac064d11ec9e0128d4992ee72cb5efd6d25b121 [file] [log] [blame]
Yann Gautierf08879f2019-04-18 14:47:35 +02001/*
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
12int stm32_rng_read(uint8_t *out, uint32_t size);
13int stm32_rng_init(void);
14
15#endif /* STM32_RNG_H */