diff --git a/dbrandom.c b/dbrandom.c index cf280f4..02e7803 100644 --- a/dbrandom.c +++ b/dbrandom.c @@ -141,7 +141,7 @@ out: return ret; } -void addrandom(char * buf, unsigned int len) +void addrandom(unsigned char * buf, unsigned int len) { hash_state hs; diff --git a/dbrandom.h b/dbrandom.h index 3434f69..6e262f3 100644 --- a/dbrandom.h +++ b/dbrandom.h @@ -29,7 +29,7 @@ void seedrandom(); void genrandom(unsigned char* buf, unsigned int len); -void addrandom(char * buf, unsigned int len); +void addrandom(unsigned char * buf, unsigned int len); void gen_random_mpint(mp_int *max, mp_int *rand); #endif /* DROPBEAR_RANDOM_H_ */