pike.git/
src/
post_modules/
Nettle/
nettle.cmod
Branch:
Tag:
Non-build tags
All tags
No tags
2014-08-21
2014-08-21 20:54:11 by Martin Nilsson <nilsson@opera.com>
c9eefb0283fc5149d6159e43399218d17384a7b1 (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
8.0
Added void to zero argument functions.
270:
#define AES256_KEY_SIZE (256>>3) #endif
-
static void fortuna_generate()
+
static void fortuna_generate(
void
)
{ aes_encrypt(&THIS->aes_ctx, 16, THIS->data, THIS->ctr); INCREMENT(16, THIS->ctr); }
-
static void fortuna_rekey()
+
static void fortuna_rekey(
void
)
{ fortuna_generate(); MEMCPY(THIS->key, THIS->data, 16);