]> Cypherpunks.ru repositories - goredo.git/blob - hash.go
Download link for 2.6.2 release
[goredo.git] / hash.go
1 package main
2
3 import (
4         "encoding/hex"
5 )
6
7 const HashLen = 32
8
9 type Hash string
10
11 func (h Hash) String() string {
12         return hex.EncodeToString([]byte(h))
13 }