diff options
author | obscuren <geffobscura@gmail.com> | 2014-09-13 20:39:01 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-09-13 20:39:01 +0800 |
commit | 8ef17c2fb138ae254a0cc7ac509a7ab1177ee4ac (patch) | |
tree | a2d2e6ca7a9cabaf3d776df112452cc100853b20 | |
parent | ccea5fa9481f86f007701bee8e8850e4fbb38ad5 (diff) | |
download | go-tangerine-8ef17c2fb138ae254a0cc7ac509a7ab1177ee4ac.tar go-tangerine-8ef17c2fb138ae254a0cc7ac509a7ab1177ee4ac.tar.gz go-tangerine-8ef17c2fb138ae254a0cc7ac509a7ab1177ee4ac.tar.bz2 go-tangerine-8ef17c2fb138ae254a0cc7ac509a7ab1177ee4ac.tar.lz go-tangerine-8ef17c2fb138ae254a0cc7ac509a7ab1177ee4ac.tar.xz go-tangerine-8ef17c2fb138ae254a0cc7ac509a7ab1177ee4ac.tar.zst go-tangerine-8ef17c2fb138ae254a0cc7ac509a7ab1177ee4ac.zip |
fi crypto
-rw-r--r-- | ethcrypto/crypto.go | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/ethcrypto/crypto.go b/ethcrypto/crypto.go index 19f8c9e55..1f500f2db 100644 --- a/ethcrypto/crypto.go +++ b/ethcrypto/crypto.go @@ -1,25 +1,11 @@ package ethcrypto import ( - "code.google.com/p/go.crypto/ripemd160" - "code.google.com/p/go.crypto/sha3" - "crypto/sha256" + //"code.google.com/p/go.crypto/sha3" "github.com/ethereum/eth-go/ethutil" + "github.com/obscuren/sha3" ) -func Sha256Bin(data []byte) []byte { - hash := sha256.Sum256(data) - - return hash[:] -} - -func Ripemd160(data []byte) []byte { - ripemd := ripemd160.New() - ripemd.Write(data) - - return ripemd.Sum(nil) -} - func Sha3Bin(data []byte) []byte { d := sha3.NewKeccak256() d.Write(data) |