diff options
author | zelig <viktor.tron@gmail.com> | 2014-06-29 23:08:33 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2014-06-29 23:08:33 +0800 |
commit | e3b911652dfba1475001137ba8b3687b9fec5331 (patch) | |
tree | ebc5d9088746338bbe3fb91703de3c5895a7833b /ethcrypto/crypto.go | |
parent | 5e50b50dc379ed1db48912538034414ff94f6531 (diff) | |
download | dexon-e3b911652dfba1475001137ba8b3687b9fec5331.tar.gz dexon-e3b911652dfba1475001137ba8b3687b9fec5331.tar.zst dexon-e3b911652dfba1475001137ba8b3687b9fec5331.zip |
move CreateAddress from ethutil/common to ethcrypto
Diffstat (limited to 'ethcrypto/crypto.go')
-rw-r--r-- | ethcrypto/crypto.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ethcrypto/crypto.go b/ethcrypto/crypto.go index 9c4013d6c..b341915eb 100644 --- a/ethcrypto/crypto.go +++ b/ethcrypto/crypto.go @@ -25,3 +25,10 @@ func Sha3Bin(data []byte) []byte { return d.Sum(nil) } + +// Creates an ethereum address given the bytes and the nonce +func CreateAddress(b []byte, nonce *big.Int) []byte { + addrBytes := append(b, nonce.Bytes()...) + + return Sha3Bin(addrBytes)[12:] +} |