diff options
author | Glenn Strauss <gstrauss@gluelogic.com> | 2017-09-20 22:48:35 -0400 |
---|---|---|
committer | Glenn Strauss <gstrauss@gluelogic.com> | 2017-09-20 22:48:35 -0400 |
commit | 6e171bd4b98128e215ad8f13702bd1183cb30edb (patch) | |
tree | 79ef6bd6c957dad86484e989a59dcaae008240db /src/rand.h | |
parent | 2bed2c14afbf6c2d3222b96ef2f8f13421ef8ce5 (diff) | |
download | lighttpd-git-6e171bd4b98128e215ad8f13702bd1183cb30edb.tar.gz |
[core] adjust li_rand_pseudo* interfaces
Diffstat (limited to 'src/rand.h')
-rw-r--r-- | src/rand.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,7 +2,8 @@ #define LI_RAND_H_ #include "first.h" -int li_rand_pseudo_bytes (void); +int li_rand_pseudo (void); +void li_rand_pseudo_bytes (unsigned char *buf, int num); void li_rand_reseed (void); int li_rand_bytes (unsigned char *buf, int num); void li_rand_cleanup (void); |