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