good morning!!!!

Skip to content
Snippets Groups Projects
Commit 8ef17c2f authored by Jeffrey Wilcke's avatar Jeffrey Wilcke
Browse files

fi crypto

parent ccea5fa9
No related branches found
No related tags found
No related merge requests found
package ethcrypto package ethcrypto
import ( import (
"code.google.com/p/go.crypto/ripemd160" //"code.google.com/p/go.crypto/sha3"
"code.google.com/p/go.crypto/sha3"
"crypto/sha256"
"github.com/ethereum/eth-go/ethutil" "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 { func Sha3Bin(data []byte) []byte {
d := sha3.NewKeccak256() d := sha3.NewKeccak256()
d.Write(data) d.Write(data)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment