xref: /optee_os/core/include/rng_support.h (revision dc0f4ec2074a459f7bf6279e19dd3a68f86468f1)
1 /* SPDX-License-Identifier: BSD-2-Clause */
2 /*
3  * Copyright (c) 2014, STMicroelectronics International N.V.
4  */
5 #ifndef __RNG_SUPPORT_H__
6 #define __RNG_SUPPORT_H__
7 
8 #include <stdint.h>
9 
10 uint8_t hw_get_random_byte(void);
11 
12 #endif /* __RNG_SUPPORT_H__ */
13