mirror of
https://github.com/kmackay/micro-ecc.git
synced 2026-07-28 22:27:46 +00:00
Merge pull request #176 from benpicco/riot
platform-specific.inc: add support for RIOT-OS
This commit is contained in:
@@ -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_ */
|
||||
|
||||
Reference in New Issue
Block a user