]> Cypherpunks.ru repositories - goredo.git/blob - hash.go
Do not try to open non-existent .dep
[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 }