From 97dd6934b447929cb13d843417b60eba37c58e18 Mon Sep 17 00:00:00 2001 From: Las Zenow Date: Thu, 28 Jan 2016 17:14:43 -0500 Subject: [PATCH] Use the oficial golang.org/x/crypto lib --- README | 2 +- database/users.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README b/README index a65c336..ba0d61f 100644 --- a/README +++ b/README @@ -26,7 +26,7 @@ Yo also need to install go dependences: # go get gopkg.in/mgo.v2 gopkg.in/mgo.v2/bson github.com/gorilla/sessions \ github.com/gorilla/securecookie github.com/gorilla/mux \ github.com/nfnt/resize github.com/cihub/seelog \ - code.google.com/p/go.crypto/scrypt \ + golang.org/x/crypto/scrypt \ github.com/rainycape/cld2 == Installation == diff --git a/database/users.go b/database/users.go index 2cc3561..88ed291 100644 --- a/database/users.go +++ b/database/users.go @@ -7,7 +7,7 @@ import ( "crypto/rand" "errors" - "code.google.com/p/go.crypto/scrypt" + "golang.org/x/crypto/scrypt" "gopkg.in/mgo.v2" "gopkg.in/mgo.v2/bson" )