From 0c6665558a122bd7485fd4548801da54c520d7aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Catalinas=20Jim=C3=A9nez?= Date: Sun, 21 Feb 2016 22:45:08 +0000 Subject: [PATCH] crypto: Add backward compatible aliases for Sha3{,Hash}() --- crypto/crypto.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crypto/crypto.go b/crypto/crypto.go index f8e03acc5..a947d84d2 100644 --- a/crypto/crypto.go +++ b/crypto/crypto.go @@ -60,6 +60,10 @@ func Keccak256Hash(data ...[]byte) (h common.Hash) { return h } +// Deprecated: For backward compatibility as other packages depend on these +func Sha3(data ...[]byte) []byte { return Keccak256(data...) } +func Sha3Hash(data ...[]byte) common.Hash { return Keccak256Hash(data...) } + // Creates an ethereum address given the bytes and the nonce func CreateAddress(b common.Address, nonce uint64) common.Address { data, _ := rlp.EncodeToBytes([]interface{}{b, nonce})