Move ToHex/FromHex into bytes

This commit is contained in:
Taylor Gerring
2015-03-22 13:32:52 +01:00
parent 9682a3ef3e
commit 08b21acff1
4 changed files with 43 additions and 42 deletions

View File

@ -9,6 +9,28 @@ import (
"strings"
)
func ToHex(b []byte) string {
hex := Bytes2Hex(b)
// Prefer output of "0x0" instead of "0x"
if len(hex) == 0 {
hex = "0"
}
return "0x" + hex
}
func FromHex(s string) []byte {
if len(s) > 1 {
if s[0:2] == "0x" {
s = s[2:]
}
if len(s)%2 == 1 {
s = "0" + s
}
return Hex2Bytes(s)
}
return nil
}
type Bytes []byte
func (self Bytes) String() string {