diff --git a/keystore/keystore.go b/keystore/keystore.go index 6459b66..a8c355d 100644 --- a/keystore/keystore.go +++ b/keystore/keystore.go @@ -34,7 +34,7 @@ import ( "sync" "time" - "code.google.com/p/go.crypto/ripemd160" + "golang.org/x/crypto/ripemd160" "github.com/conformal/btcec" "github.com/conformal/btcnet" diff --git a/snacl/snacl.go b/snacl/snacl.go index 9a134e0..71d8103 100644 --- a/snacl/snacl.go +++ b/snacl/snacl.go @@ -7,8 +7,8 @@ import ( "errors" "io" - "code.google.com/p/go.crypto/nacl/secretbox" - "code.google.com/p/go.crypto/scrypt" + "golang.org/x/crypto/nacl/secretbox" + "golang.org/x/crypto/scrypt" "github.com/conformal/fastsha256" )