diff --git a/.gitignore b/.gitignore index 779d97b..8d14da4 100644 --- a/.gitignore +++ b/.gitignore @@ -21,6 +21,7 @@ sessions/session_* templates/_local.tmpl xattr accounts/* +.idea node_modules build diff --git a/auth.go b/auth.go index d93ecd0..c9eb437 100644 --- a/auth.go +++ b/auth.go @@ -11,7 +11,7 @@ import ( "sync" "time" - "code.google.com/p/go.crypto/scrypt" + "golang.org/x/crypto/scrypt" "github.com/DHowett/ghostbin/account" "github.com/golang/glog" "github.com/golang/groupcache/lru" diff --git a/paste.go b/paste.go index 8bdcfd4..143f544 100644 --- a/paste.go +++ b/paste.go @@ -1,7 +1,7 @@ package main import ( - "code.google.com/p/go.crypto/scrypt" + "golang.org/x/crypto/scrypt" "crypto/aes" "crypto/cipher" "github.com/DHowett/go-xattr"