blob: d80f6a12a19f4762e6e00a50e92f361ca1f85559 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef LI_RAND_H_
#define LI_RAND_H_
#include "first.h"
int li_rand_pseudo (void);
void li_rand_pseudo_bytes (unsigned char *buf, int num);
void li_rand_reseed (void);
int li_rand_bytes (unsigned char *buf, int num);
void li_rand_cleanup (void);
#endif
|