commit | a73c6bbfc58057a968e830ad4bfef59287a56812 | [log] [tgz] |
---|---|---|
author | Andrew Gerrand <adg@golang.org> | Mon Nov 10 08:50:25 2014 +1100 |
committer | Andrew Gerrand <adg@golang.org> | Mon Nov 10 08:50:25 2014 +1100 |
tree | 0e050bf093654bbaa0fd7fdd53b14ff5cbb45da9 | |
parent | 1a85842c9ed153459eaf94f2ff4c4e914c54410d [diff] [blame] |
go.crypto: use golang.org/x/... import paths LGTM=bradfitz R=rsc, bradfitz CC=golang-codereviews https://golang.org/cl/167190043
diff --git a/bcrypt/bcrypt.go b/bcrypt/bcrypt.go index 10b8d64..b8e18d7 100644 --- a/bcrypt/bcrypt.go +++ b/bcrypt/bcrypt.go
@@ -8,11 +8,11 @@ // The code is a port of Provos and Mazières's C implementation. import ( - "code.google.com/p/go.crypto/blowfish" "crypto/rand" "crypto/subtle" "errors" "fmt" + "golang.org/x/crypto/blowfish" "io" "strconv" )