Use the oficial golang.org/x/crypto lib

This commit is contained in:
Las Zenow 2016-01-28 17:14:43 -05:00
parent fb43f2b83a
commit 97dd6934b4
2 changed files with 2 additions and 2 deletions

2
README
View file

@ -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 ==

View file

@ -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"
)