Use the oficial golang.org/x/crypto lib
This commit is contained in:
parent
fb43f2b83a
commit
97dd6934b4
2 changed files with 2 additions and 2 deletions
2
README
2
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 ==
|
||||
|
|
|
@ -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"
|
||||
)
|
||||
|
|
Reference in a new issue