seed_fuzz() prototype

--HG--
branch : fuzz
This commit is contained in:
Matt Johnston 2017-05-21 18:53:44 +08:00
parent 18ea116827
commit 50bde9976b
2 changed files with 3 additions and 1 deletions

View File

@ -31,5 +31,8 @@ void seedrandom(void);
void genrandom(unsigned char* buf, unsigned int len); void genrandom(unsigned char* buf, unsigned int len);
void addrandom(unsigned char * buf, unsigned int len); void addrandom(unsigned char * buf, unsigned int len);
void gen_random_mpint(mp_int *max, mp_int *rand); void gen_random_mpint(mp_int *max, mp_int *rand);
#ifdef DROPBEAR_FUZZ
void seedfuzz(void);
#endif
#endif /* DROPBEAR_RANDOM_H_ */ #endif /* DROPBEAR_RANDOM_H_ */

View File

@ -1,5 +1,4 @@
#include "fuzz.h" #include "fuzz.h"
#include "dbrandom.h"
#include "session.h" #include "session.h"
#include "fuzz-wrapfd.h" #include "fuzz-wrapfd.h"
#include "debug.h" #include "debug.h"