aboutsummaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-05-22 23:30:31 -0700
committerRuss Cox <rsc@golang.org>2009-05-22 23:30:31 -0700
commit224b89cafabbaa993b6883ab4db39e6e07a06beb (patch)
treee5b43a3575b5919e2dc477098ed1416fcbb5d84b /src/lib
parent4beac9985b41601a9b50e60356f87ebff35b3e5f (diff)
downloadgo-224b89cafabbaa993b6883ab4db39e6e07a06beb.tar.xz
typo in hmac comment
R=r DELTA=1 (0 added, 0 deleted, 1 changed) OCL=29307 CL=29307
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/crypto/hmac/hmac.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/crypto/hmac/hmac.go b/src/lib/crypto/hmac/hmac.go
index 0b9a08012d..a3f47ccc9f 100644
--- a/src/lib/crypto/hmac/hmac.go
+++ b/src/lib/crypto/hmac/hmac.go
@@ -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