package main import ( "encoding/hex" ) const HashLen = 32 type Hash string func (h Hash) String() string { return hex.EncodeToString([]byte(h)) }