summaryrefslogtreecommitdiff
path: root/src/crypto
diff options
context:
space:
mode:
authorAndrew Gerrand <adg@golang.org>2014-11-10 09:15:57 +1100
committerAndrew Gerrand <adg@golang.org>2014-11-10 09:15:57 +1100
commit395a8eb5f4e4e10220a8a728a2124cf1521f70d3 (patch)
tree0403ff97a90c22c99f946ba4f3cf1672f8496947 /src/crypto
parent00f9c7b0d78e148c2010d0487c8bdb761bd8b147 (diff)
downloadgo-395a8eb5f4e4e10220a8a728a2124cf1521f70d3.tar.gz
all: use golang.org/x/... import paths
LGTM=rsc, r R=r, rsc CC=golang-codereview, golang-codereviews https://codereview.appspot.com/168050043
Diffstat (limited to 'src/crypto')
-rw-r--r--src/crypto/crypto.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/crypto/crypto.go b/src/crypto/crypto.go
index 5a91baca0..59b23e93f 100644
--- a/src/crypto/crypto.go
+++ b/src/crypto/crypto.go
@@ -21,7 +21,7 @@ func (h Hash) HashFunc() Hash {
}
const (
- MD4 Hash = 1 + iota // import code.google.com/p/go.crypto/md4
+ MD4 Hash = 1 + iota // import golang.org/x/crypto/md4
MD5 // import crypto/md5
SHA1 // import crypto/sha1
SHA224 // import crypto/sha256
@@ -29,11 +29,11 @@ const (
SHA384 // import crypto/sha512
SHA512 // import crypto/sha512
MD5SHA1 // no implementation; MD5+SHA1 used for TLS RSA
- RIPEMD160 // import code.google.com/p/go.crypto/ripemd160
- SHA3_224 // import code.google.com/p/go.crypto/sha3
- SHA3_256 // import code.google.com/p/go.crypto/sha3
- SHA3_384 // import code.google.com/p/go.crypto/sha3
- SHA3_512 // import code.google.com/p/go.crypto/sha3
+ RIPEMD160 // import golang.org/x/crypto/ripemd160
+ SHA3_224 // import golang.org/x/crypto/sha3
+ SHA3_256 // import golang.org/x/crypto/sha3
+ SHA3_384 // import golang.org/x/crypto/sha3
+ SHA3_512 // import golang.org/x/crypto/sha3
maxHash
)