diff options
author | Felix Lange <fjl@twurst.com> | 2015-02-17 20:05:58 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-02-17 20:05:58 +0800 |
commit | 119bea22aaf061d5b3e6a9abee9b1b95655b9fbe (patch) | |
tree | b4420225106756fac17bdbc8e148b399afbd6418 /crypto/crypto.go | |
parent | bb346a3ae1b6c250fdcb28b97280d3512a7fe219 (diff) | |
download | go-tangerine-119bea22aaf061d5b3e6a9abee9b1b95655b9fbe.tar.gz go-tangerine-119bea22aaf061d5b3e6a9abee9b1b95655b9fbe.tar.zst go-tangerine-119bea22aaf061d5b3e6a9abee9b1b95655b9fbe.zip |
crypto: switch to golang.org/x/crypto
code.google.com/p/go.crypto is deprecated and will cause
problems in future versions of Go.
Diffstat (limited to 'crypto/crypto.go')
-rw-r--r-- | crypto/crypto.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/crypto.go b/crypto/crypto.go index e59250eb2..90e2c8939 100644 --- a/crypto/crypto.go +++ b/crypto/crypto.go @@ -16,12 +16,12 @@ import ( "errors" "code.google.com/p/go-uuid/uuid" - "code.google.com/p/go.crypto/pbkdf2" - "code.google.com/p/go.crypto/ripemd160" "github.com/ethereum/go-ethereum/crypto/ecies" "github.com/ethereum/go-ethereum/crypto/secp256k1" "github.com/ethereum/go-ethereum/crypto/sha3" "github.com/ethereum/go-ethereum/ethutil" + "golang.org/x/crypto/pbkdf2" + "golang.org/x/crypto/ripemd160" ) func init() { |