mirror of
https://github.com/urbit/shrub.git
synced 2024-11-24 13:06:09 +03:00
9618f37965
git-subtree-dir: pkg/ent git-subtree-mainline:1207c204cb
git-subtree-split:31ac2913f1
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);
|