- A PRNGs that can use the TSC (Time Stamp Counter) from the x86 based host processor
- With BY_TIME 1 (Using the current raw time as seed)
sprng (time (NULL));
- With BY_RANDOM_FILE 1 (Using the pseudo random file from an unix env)
#if defined (__unix__)
int pseudo = 0;
int fd = open ("/dev/random", O_RDONLY);
read (fd, &pseudo, sizeof (int));
close (fd);
#endif
- With TSC (BY_TIME 0 && BY_RANDOM_FILE 0)
sprng (0);
make
make clean