Merge pull request #176 from benpicco/riot

platform-specific.inc: add support for RIOT-OS
This commit is contained in:
Ken MacKay
2020-10-21 15:59:34 -07:00
committed by GitHub
+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_ */