blob: 502717fed0fc7c28d8e287577d385034268665b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
/*
* random.c
*
* Created on: Jun 10, 2015
* Author: tim
*/
//#include <softdevice_handler.h>
#include "nrf_soc.h"
#include "random.h"
#define APP_ERROR_CHECK(_err) if (_err != NRF_SUCCESS) return
void random_create(uint8_t* p_result, uint8_t length)
{
uint32_t err_code;
while (length)
{
uint8_t available = 0;
err_code = sd_rand_application_bytes_available_get(&available);
APP_ERROR_CHECK(err_code);
if (available)
{
available = available < length ? available : length;
err_code = sd_rand_application_vector_get(p_result, available);
APP_ERROR_CHECK(err_code);
p_result += available;
length -= available;
}
}
}
void randombytes(uint8_t* p_result, uint64_t length)
{
random_create(p_result, (uint8_t)length);
}
|