mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-14 03:30:02 +00:00
18 lines
343 B
C
18 lines
343 B
C
#include <libopencm3/stm32/f2/rng.h>
|
|
#include "rand.h"
|
|
|
|
void init_rand(void) {
|
|
RNG_CR |= RNG_CR_IE | RNG_CR_RNGEN;
|
|
}
|
|
|
|
uint32_t random32(void) {
|
|
static uint32_t last = 0, new = 0;
|
|
while (new == last) {
|
|
if (((RNG_SR & (RNG_SR_SEIS | RNG_SR_CEIS)) == 0) && ((RNG_SR & RNG_SR_DRDY) > 0)) {
|
|
new = RNG_DR;
|
|
}
|
|
}
|
|
last = new;
|
|
return new;
|
|
}
|