Commit 7f0b4a87 authored by Russ Cox's avatar Russ Cox Committed by Brad Fitzpatrick

crypto/dsa: adjust GenerateParameters comment

Fixes #13725.

Change-Id: I5fe46851b238fc9ab301da8f8fc37bd1b7871748
Reviewed-on: https://go-review.googlesource.com/18316Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
parent a8f8d550
...@@ -51,7 +51,7 @@ const ( ...@@ -51,7 +51,7 @@ const (
const numMRTests = 64 const numMRTests = 64
// GenerateParameters puts a random, valid set of DSA parameters into params. // GenerateParameters puts a random, valid set of DSA parameters into params.
// This function takes many seconds, even on fast machines. // This function can take many seconds, even on fast machines.
func GenerateParameters(params *Parameters, rand io.Reader, sizes ParameterSizes) (err error) { func GenerateParameters(params *Parameters, rand io.Reader, sizes ParameterSizes) (err error) {
// This function doesn't follow FIPS 186-3 exactly in that it doesn't // This function doesn't follow FIPS 186-3 exactly in that it doesn't
// use a verification seed to generate the primes. The verification // use a verification seed to generate the primes. The verification
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment