Failed to install golang.org/x/crypto/bcrypt
I found temporary solution.
Library golang.org/x/crypto/bcrypt has mirror on github.
Create folder src/golang.org/x/
into you GOPATH
.
mkdir -p $GOPATH/src/golang.org/x/
Then clone crypto from github.
cd $GOPATH/src/golang.org/x/
git clone [email protected]:golang/crypto.git
I resolved it by using command:
go get golang.org/x/crypto/bcrypt