torrent/metainfo/hash.go

59 lines
894 B
Go
Raw Normal View History

package metainfo
2016-05-02 01:21:03 +00:00
import (
2016-05-03 11:34:20 +00:00
"crypto/sha1"
2016-05-02 01:21:03 +00:00
"encoding/hex"
"fmt"
)
const HashSize = 20
// 20-byte SHA1 hash used for info and pieces.
type Hash [HashSize]byte
func (h Hash) Bytes() []byte {
return h[:]
}
func (h Hash) AsString() string {
return string(h[:])
}
func (h Hash) String() string {
return h.HexString()
}
func (h Hash) HexString() string {
return fmt.Sprintf("%x", h[:])
}
2016-05-02 01:21:03 +00:00
func (h *Hash) FromHexString(s string) (err error) {
if len(s) != 2*HashSize {
2016-05-02 01:21:03 +00:00
err = fmt.Errorf("hash hex string has bad length: %d", len(s))
return
}
n, err := hex.Decode(h[:], []byte(s))
if err != nil {
return
}
if n != HashSize {
2016-05-02 01:21:03 +00:00
panic(n)
}
return
}
2016-05-03 11:34:20 +00:00
2016-06-20 16:35:53 +00:00
func NewHashFromHex(s string) (h Hash) {
err := h.FromHexString(s)
if err != nil {
panic(err)
}
2016-06-20 16:35:53 +00:00
return
}
2016-05-03 11:34:20 +00:00
func HashBytes(b []byte) (ret Hash) {
hasher := sha1.New()
hasher.Write(b)
copy(ret[:], hasher.Sum(nil))
return
}