aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-11-11 12:00:15 -0800
committerRuss Cox <rsc@golang.org>2009-11-11 12:00:15 -0800
commit364e564e3d3a3b037d163b81f9a53b4ac3625f34 (patch)
tree3360fa374c464a2ccb943683bd8fecf72a42be55
parentd8134e73c7a8beab367ac19ae0115772edde7df6 (diff)
downloadgo-364e564e3d3a3b037d163b81f9a53b4ac3625f34.tar.gz
go-364e564e3d3a3b037d163b81f9a53b4ac3625f34.zip
use fully qualified names for hash interfaces
Fixes #38. R=r1, r https://golang.org/cl/152072
-rw-r--r--src/pkg/crypto/md5/md5.go2
-rw-r--r--src/pkg/crypto/sha1/sha1.go2
-rw-r--r--src/pkg/hash/adler32/adler32.go2
-rw-r--r--src/pkg/hash/crc32/crc32.go4
4 files changed, 5 insertions, 5 deletions
diff --git a/src/pkg/crypto/md5/md5.go b/src/pkg/crypto/md5/md5.go
index 5194ccd7cc..209cd5973a 100644
--- a/src/pkg/crypto/md5/md5.go
+++ b/src/pkg/crypto/md5/md5.go
@@ -38,7 +38,7 @@ func (d *digest) Reset() {
d.len = 0;
}
-// New returns a Hash computing the SHA1 checksum.
+// New returns a hash.Hash computing the SHA1 checksum.
func New() hash.Hash {
d := new(digest);
d.Reset();
diff --git a/src/pkg/crypto/sha1/sha1.go b/src/pkg/crypto/sha1/sha1.go
index 3201a2faad..6569f5aef1 100644
--- a/src/pkg/crypto/sha1/sha1.go
+++ b/src/pkg/crypto/sha1/sha1.go
@@ -40,7 +40,7 @@ func (d *digest) Reset() {
d.len = 0;
}
-// New returns a Hash computing the SHA1 checksum.
+// New returns a new hash.Hash computing the SHA1 checksum.
func New() hash.Hash {
d := new(digest);
d.Reset();
diff --git a/src/pkg/hash/adler32/adler32.go b/src/pkg/hash/adler32/adler32.go
index 673d5edd47..ec7c6dc304 100644
--- a/src/pkg/hash/adler32/adler32.go
+++ b/src/pkg/hash/adler32/adler32.go
@@ -32,7 +32,7 @@ type digest struct {
func (d *digest) Reset() { d.a, d.b = 1, 0 }
-// New returns a new Hash32 computing the Adler-32 checksum.
+// New returns a new hash.Hash32 computing the Adler-32 checksum.
func New() hash.Hash32 {
d := new(digest);
d.Reset();
diff --git a/src/pkg/hash/crc32/crc32.go b/src/pkg/hash/crc32/crc32.go
index 57297abce8..9330f98124 100644
--- a/src/pkg/hash/crc32/crc32.go
+++ b/src/pkg/hash/crc32/crc32.go
@@ -60,11 +60,11 @@ type digest struct {
tab *Table;
}
-// New creates a new Hash computing the CRC-32 checksum
+// New creates a new hash.Hash32 computing the CRC-32 checksum
// using the polynomial represented by the Table.
func New(tab *Table) hash.Hash32 { return &digest{0, tab} }
-// NewIEEE creates a new Hash computing the CRC-32 checksum
+// NewIEEE creates a new hash.Hash32 computing the CRC-32 checksum
// using the IEEE polynomial.
func NewIEEE() hash.Hash32 { return New(IEEETable) }