2017-09-17 18:45:03 +03:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2018-03-21 13:21:37 +02:00
|
|
|
#if defined(__linux__)
|
2017-09-17 17:18:17 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2017-09-24 16:33:01 +03:00
|
|
|
#include "../util.h"
|
2017-09-17 17:18:17 +03:00
|
|
|
|
|
|
|
const char *
|
|
|
|
entropy(void)
|
|
|
|
{
|
|
|
|
int num;
|
|
|
|
|
|
|
|
return (pscanf("/proc/sys/kernel/random/entropy_avail", "%d", &num) == 1) ?
|
|
|
|
bprintf("%d", num) : NULL;
|
|
|
|
}
|
2018-03-19 00:26:13 +02:00
|
|
|
#endif
|