2016-10-13 07:10:10 +00:00
|
|
|
#ifndef LI_RAND_H_
|
|
|
|
#define LI_RAND_H_
|
|
|
|
#include "first.h"
|
|
|
|
|
2017-09-21 02:48:35 +00:00
|
|
|
int li_rand_pseudo (void);
|
|
|
|
void li_rand_pseudo_bytes (unsigned char *buf, int num);
|
2016-10-13 07:10:10 +00:00
|
|
|
void li_rand_reseed (void);
|
|
|
|
int li_rand_bytes (unsigned char *buf, int num);
|
|
|
|
void li_rand_cleanup (void);
|
|
|
|
|
|
|
|
#endif
|