mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-10-31 20:39:48 +00:00
15 lines
202 B
C
15 lines
202 B
C
/*
|
|
* Copyright (c) Pavol Rusnak, SatoshiLabs
|
|
*
|
|
* Licensed under TREZOR License
|
|
* see LICENSE file for details
|
|
*/
|
|
|
|
#include "rand.h"
|
|
#include "rng.h"
|
|
|
|
uint32_t random32(void)
|
|
{
|
|
return rng_get();
|
|
}
|