From a602e1fb207efbfb801c97b15582948ca494ba81 Mon Sep 17 00:00:00 2001 From: xtaci Date: Wed, 17 Jul 2024 14:11:04 +0800 Subject: [PATCH] Update README.md --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index cb33ab7..66a427e 100644 --- a/README.md +++ b/README.md @@ -53,9 +53,8 @@ The permutation pad could be written in [Cycle notation](https://en.wikipedia.or ## Usage +Internal PRNG(NOT RECOMMENDED) ```golang -Internal PRNG: - func main() { seed := make([]byte, 32) io.ReadFull(rand.Reader, seed) @@ -70,9 +69,8 @@ func main() { } ``` +External PRNG(**RECOMMENDED**) ```golang -External PRNG: - func main() { seed := make([]byte, 32) io.ReadFull(rand.Reader, seed)