mirror of
https://github.com/urbit/shrub.git
synced 2024-12-01 14:42:02 +03:00
14 lines
269 B
C
14 lines
269 B
C
|
#pragma once
|
||
|
|
||
|
#include <stddef.h>
|
||
|
|
||
|
/*
|
||
|
Fills buf with high-quality entropy.
|
||
|
|
||
|
buflen is the number of bytes, no greater than 256.
|
||
|
|
||
|
Returns 0 on success. On failure, returns -1 and sets errno to
|
||
|
indicate the error.
|
||
|
*/
|
||
|
int ent_getentropy(void* buf, size_t buflen);
|