diff options
author | David Timber <mieabby@gmail.com> | 2020-09-14 15:47:30 +0930 |
---|---|---|
committer | David Timber <mieabby@gmail.com> | 2020-09-14 15:47:30 +0930 |
commit | f7f7332afafd4f965c5ef1d45cc1c7da9275c6ef (patch) | |
tree | 53b8e96d2d070215f0c6ee133cdba58ca93a4138 /src/rnd.h | |
parent | c4160ed41717260b5941e2729c444b8ec051d5f0 (diff) |
* Add "--enable-static" configure option
* Change "PRNE_DEBUG" macro use
* Add "PRNE_VERBOSE"
* Impl "recon"
* Add "inet.h" for Internet Protocol stuff
* Changes regarding "PRNE_RND_WELL512_SEEDLEN"
* Add prne_own_realloc() for objects with multiple array memebers
* Add prne_add_timespec()
Diffstat (limited to 'src/rnd.h')
-rw-r--r-- | src/rnd.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,6 +3,7 @@ #include <stddef.h> #include <stdbool.h> +#define PRNE_RND_WELL512_SEEDLEN 64 struct prne_rnd { void *ctx; @@ -22,5 +23,4 @@ bool prne_rnd (prne_rnd_t *p, uint8_t *buf, const size_t len); */ bool prne_rnd_alloc_well512 ( prne_rnd_t *p, - const uint8_t *is, - const size_t is_len); + const uint8_t *is); |