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 16, 2024
1 parent 8fa93ca commit d27b207
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ func main() {
seed := make([]byte, 32)
io.ReadFull(rand.Reader, seed)

qpp := NewQPP(seed, 1024)
qpp := NewQPP(seed, 977) // a prime number of pads

msg := make([]byte, 65536)
io.ReadFull(rand.Reader, msg)
Expand All @@ -81,7 +81,7 @@ func main() {
seed := make([]byte, 32)
io.ReadFull(rand.Reader, seed)

qpp := NewQPP(seed, 1024)
qpp := NewQPP(seed, 977)

msg := make([]byte, 65536)
io.ReadFull(rand.Reader, msg)
Expand Down

0 comments on commit d27b207

Please sign in to comment.