platform-specific.inc: add support for RIOT-OS

This commit is contained in:
Benjamin Valentin
2020-10-20 18:11:54 +02:00
parent 51dfe37cea
commit 6a53a0fbde
+10
View File
@@ -66,6 +66,16 @@ static int default_RNG(uint8_t *dest, unsigned size) {
}
#define default_RNG_defined 1
#elif defined(RIOT_VERSION)
#include <random.h>
static int default_RNG(uint8_t *dest, unsigned size) {
random_bytes(dest, size);
return 1;
}
#define default_RNG_defined 1
#endif /* platform */
#endif /* _UECC_PLATFORM_SPECIFIC_H_ */