mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-10 01:30:19 +00:00
9 lines
187 B
C
9 lines
187 B
C
#ifndef __TREZORHAL_RNG_H__
|
|
#define __TREZORHAL_RNG_H__
|
|
|
|
void rng_init(void);
|
|
uint32_t rng_get(void);
|
|
uint32_t rng_read(const uint32_t previous, const uint32_t compare_previous);
|
|
|
|
#endif
|