Simply let teken_stress use arc4random.
This makes it run quite a bit faster, since it makes system calls less often.
This commit is contained in:
parent
193a5b8d44
commit
e229f3cc32
@ -99,24 +99,14 @@ int
|
||||
main(int argc __unused, char *argv[] __unused)
|
||||
{
|
||||
teken_t t;
|
||||
int rnd;
|
||||
unsigned int i, iteration = 0;
|
||||
unsigned char buf[2048];
|
||||
|
||||
rnd = open("/dev/urandom", O_RDONLY);
|
||||
if (rnd < 0) {
|
||||
perror("/dev/urandom");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
teken_init(&t, &tf, NULL);
|
||||
|
||||
for (;;) {
|
||||
if (read(rnd, buf, sizeof buf) != sizeof buf) {
|
||||
perror("read");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
arc4random_buf(buf, sizeof buf);
|
||||
for (i = 0; i < sizeof buf; i++) {
|
||||
if (buf[i] >= 0x80)
|
||||
buf[i] =
|
||||
|
Loading…
Reference in New Issue
Block a user