1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-11 10:29:01 +00:00
trezor-firmware/embed/trezorhal/rng.h
2017-10-15 19:34:16 +02:00

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