aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-09-13 20:39:01 +0800
committerobscuren <geffobscura@gmail.com>2014-09-13 20:39:01 +0800
commit8ef17c2fb138ae254a0cc7ac509a7ab1177ee4ac (patch)
treea2d2e6ca7a9cabaf3d776df112452cc100853b20
parentccea5fa9481f86f007701bee8e8850e4fbb38ad5 (diff)
downloaddexon-8ef17c2fb138ae254a0cc7ac509a7ab1177ee4ac.tar
dexon-8ef17c2fb138ae254a0cc7ac509a7ab1177ee4ac.tar.gz
dexon-8ef17c2fb138ae254a0cc7ac509a7ab1177ee4ac.tar.bz2
dexon-8ef17c2fb138ae254a0cc7ac509a7ab1177ee4ac.tar.lz
dexon-8ef17c2fb138ae254a0cc7ac509a7ab1177ee4ac.tar.xz
dexon-8ef17c2fb138ae254a0cc7ac509a7ab1177ee4ac.tar.zst
dexon-8ef17c2fb138ae254a0cc7ac509a7ab1177ee4ac.zip
fi crypto
-rw-r--r--ethcrypto/crypto.go18
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)