]> Sergey Matveev's repositories - vors.git/blob - internal/cookie.go
Forgotten version raise
[vors.git] / internal / cookie.go
1 package internal
2
3 import "encoding/hex"
4
5 const CookieLen = 16
6
7 type Cookie [CookieLen]byte
8
9 func (c Cookie) String() string {
10         return hex.EncodeToString(c[:])
11 }