lbcutil/hash160.go

24 lines
532 B
Go
Raw Normal View History

2017-02-16 17:07:38 +01:00
// Copyright (c) 2013-2017 The btcsuite developers
// Use of this source code is governed by an ISC
// license that can be found in the LICENSE file.
package lbcutil
import (
"crypto/sha256"
2014-07-03 02:29:48 +02:00
"hash"
2017-02-16 17:07:38 +01:00
"golang.org/x/crypto/ripemd160"
)
// Calculate the hash of hasher over buf.
func calcHash(buf []byte, hasher hash.Hash) []byte {
hasher.Write(buf)
return hasher.Sum(nil)
}
// Hash160 calculates the hash ripemd160(sha256(b)).
func Hash160(buf []byte) []byte {
return calcHash(calcHash(buf, sha256.New()), ripemd160.New())
}