
#ifndef PD_RAND_H
#define PD_RAND_H

typedef int (*Entropy_f_t)(unsigned char * buf, int num);

void InitPDRandEntropySource(Entropy_f_t fptr);
int pd_rand(unsigned char * buf, int num);

#endif /* PD_RAND_H */
