mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-17 13:12:05 +00:00
11 lines
200 B
C
11 lines
200 B
C
#ifndef TREZORHAL_RNG_H
|
|
#define TREZORHAL_RNG_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void rng_init(void);
|
|
uint32_t rng_read(const uint32_t previous, const uint32_t compare_previous);
|
|
uint32_t rng_get(void);
|
|
|
|
#endif
|