]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - noekeon/noekeon_prng.h
fixing E-Mail-Address & Copyright
[avr-crypto-lib.git] / noekeon / noekeon_prng.h
index ff9ca0363ffa206258ac962873564f89fa4257dc..4712734fbd918f6ede48de8ff37b3dcaa766f86c 100644 (file)
@@ -1,7 +1,7 @@
 /* noekeon_prng.h */
 /*
  *   This file is part of the AVR-Crypto-Lib.
- *   Copyright (C) 2006, 2007, 2008  Daniel Otte (daniel.otte@rub.de)
+ *   Copyright (C) 2006-2015 Daniel Otte (bg@nerilex.org)
  *
  *   This program is free software: you can redistribute it and/or modify
  *   it under the terms of the GNU General Public License as published by
 #include <stdint.h>
 
 uint8_t random8(void);
-void random_block(voiddest);
+void random_block(void *dest);
 void srandom32(uint32_t seed);
-void random_seed(const voidbuffer);
-void random_add(const voidbuffer);
+void random_seed(const void *buffer);
+void random_add(const void *buffer);
 
 #endif /* PRNG_H_*/