From 7ce16172cefc508f99e294c202781ed99801cfe4 Mon Sep 17 00:00:00 2001 From: Branislav Jansik <branislav.jansik@vsb.cz> Date: Tue, 2 Feb 2021 16:35:03 +0100 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4317ee8..de5081f 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ## Intro Random data generator. -Random data are hardware generated by reading the on-chip hardware random data generator which has been seeded by an on-chip entropy source via the [rdrand instruction](https://software.intel.com/content/www/us/en/develop/blogs/find-out-about-intels-new-rdrand-instruction.html). Alternatively, random data are generated by the permuted congruential generator (PCG) pseudorandom number generation algorithm. The PCG code uses [minimal PCG implementation](https://www.pcg-random.org/download.html). +Random data are hardware generated by reading the on-chip hardware random data generator which has been seeded by an on-chip entropy source via the [rdrand instruction](https://software.intel.com/content/www/us/en/develop/blogs/find-out-about-intels-new-rdrand-instruction.html). Alternatively, pseudorandom data are generated by the permuted congruential generator (PCG) pseudorandom number generation algorithm. The PCG code uses [minimal PCG implementation](https://www.pcg-random.org/download.html). ## Source -- GitLab