diff options
author | obscuren <geffobscura@gmail.com> | 2015-01-22 07:25:00 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-01-22 07:25:00 +0800 |
commit | 6eaa404187953777e8dc866e4e3db089e4ad0501 (patch) | |
tree | 07f8900b56377b50bc1f26f04bdfbf6d2644a577 /crypto/crypto.go | |
parent | 0045ce4cde69af0dd4b2f77871f893b091250489 (diff) | |
download | dexon-6eaa404187953777e8dc866e4e3db089e4ad0501.tar dexon-6eaa404187953777e8dc866e4e3db089e4ad0501.tar.gz dexon-6eaa404187953777e8dc866e4e3db089e4ad0501.tar.bz2 dexon-6eaa404187953777e8dc866e4e3db089e4ad0501.tar.lz dexon-6eaa404187953777e8dc866e4e3db089e4ad0501.tar.xz dexon-6eaa404187953777e8dc866e4e3db089e4ad0501.tar.zst dexon-6eaa404187953777e8dc866e4e3db089e4ad0501.zip |
Moved sha3 from `obscuren`
Diffstat (limited to 'crypto/crypto.go')
-rw-r--r-- | crypto/crypto.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/crypto.go b/crypto/crypto.go index b8fd78fa2..2c5f30905 100644 --- a/crypto/crypto.go +++ b/crypto/crypto.go @@ -7,10 +7,10 @@ import ( "crypto/sha256" "code.google.com/p/go.crypto/ripemd160" + "github.com/ethereum/go-ethereum/crypto/sha3" "github.com/ethereum/go-ethereum/ethutil" "github.com/obscuren/ecies" "github.com/obscuren/secp256k1-go" - "github.com/obscuren/sha3" ) func init() { |