blob: 7d05a812c268b183b1277745495d447e85257e6c (
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
|
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include "dev/net.h"
int getentropy(unsigned char *b, size_t sz) {
unsigned char type;
unsigned char *buffer;
uint16_t len;
int rv;
buffer = eos_net_alloc();
type = EOS_NET_MTYPE_RNG;
len = sizeof(uint16_t);
buffer[0] = sz >> 8;
buffer[1] = sz;
rv = eos_net_xchg(&type, buffer, &len);
if (rv || (len != sz)) rv = -1;
if (!rv) memcpy(b, buffer, sz);
eos_net_free(buffer, 1);
return rv;
}
|