Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
xtaci authored Jul 17, 2024
1 parent b08d054 commit a602e1f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -70,9 +69,8 @@ func main() {
}
```

External PRNG(**RECOMMENDED**)
```golang
External PRNG:

func main() {
seed := make([]byte, 32)
io.ReadFull(rand.Reader, seed)
Expand Down

0 comments on commit a602e1f

Please sign in to comment.