]> Cypherpunks repositories - gostls13.git/commitdiff
typo in hmac comment
authorRuss Cox <rsc@golang.org>
Sat, 23 May 2009 06:30:31 +0000 (23:30 -0700)
committerRuss Cox <rsc@golang.org>
Sat, 23 May 2009 06:30:31 +0000 (23:30 -0700)
R=r
DELTA=1  (0 added, 0 deleted, 1 changed)
OCL=29307
CL=29307

src/lib/crypto/hmac/hmac.go

index 0b9a08012d3ad394725e8e1a20f958f5638069ca..a3f47ccc9f01fe3428122ed297baa3ccd6cf14c2 100644 (file)
@@ -4,7 +4,7 @@
 
 // The hmac package implements the Keyed-Hash Message Authentication Code (HMAC)
 // as defined in U.S. Federal Information Processing Standards Publication 198.
-// An HMAC is a cryptographic hash attesting that uses a key to sign a message.
+// An HMAC is a cryptographic hash that uses a key to sign a message.
 // The receiver verifies the hash by recomputing it using the same key.
 package hmac