mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
22 lines
321 B
C
22 lines
321 B
C
#ifndef TRNG_H
|
|
#define TRNG_H
|
|
|
|
#include <hal_trng.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
u32 get_rand_internal(u8 *a, u32 bytes);
|
|
u32 get_rand_fast(u8 *rand, u32 bytes);
|
|
#ifndef AIC_TRNG_GENERATE_BY_HARDWARE
|
|
u32 get_rand_register(void);
|
|
#endif
|
|
u32 get_rand(u8 *rand, u32 bytes);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|