Removed Reset

This commit is contained in:
obscuren 2014-02-16 20:30:50 +01:00
parent c95a27e394
commit f1d6f1bd17
1 changed files with 0 additions and 1 deletions

View File

@ -27,7 +27,6 @@ func Ripemd160(data []byte) []byte {
func Sha3Bin(data []byte) []byte {
d := sha3.NewKeccak256()
d.Reset()
d.Write(data)
return d.Sum(nil)