From 137727d2f89f7d423c67a934eeea7370e081cd9e Mon Sep 17 00:00:00 2001 From: Coda Hale Date: Tue, 20 Aug 2013 17:47:02 -0700 Subject: [PATCH] Small clarification. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index cb3e0ba..9ec0038 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ func main() { alg.Write([]byte("I am a potato.")) hash := alg.Sum(nil) + // Sign the message. You don't need a PRNG for this. r, s, _ := rfc6979.SignECDSA(k, hash, sha512.New) fmt.Printf("Signature: %X%X", r, s) }