aboutsummaryrefslogtreecommitdiffstats
path: root/common/bytes.go
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-03-22 20:32:52 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-03-22 20:32:52 +0800
commit08b21acff1ca397e775e926e0f9a96deaa9820fd (patch)
treec7d0c97159b8d54ac04bc03c2e3b8f85b3c4e241 /common/bytes.go
parent9682a3ef3ec72a871708a9bba1133fa59b58ccb5 (diff)
downloadgo-tangerine-08b21acff1ca397e775e926e0f9a96deaa9820fd.tar
go-tangerine-08b21acff1ca397e775e926e0f9a96deaa9820fd.tar.gz
go-tangerine-08b21acff1ca397e775e926e0f9a96deaa9820fd.tar.bz2
go-tangerine-08b21acff1ca397e775e926e0f9a96deaa9820fd.tar.lz
go-tangerine-08b21acff1ca397e775e926e0f9a96deaa9820fd.tar.xz
go-tangerine-08b21acff1ca397e775e926e0f9a96deaa9820fd.tar.zst
go-tangerine-08b21acff1ca397e775e926e0f9a96deaa9820fd.zip
Move ToHex/FromHex into bytes
Diffstat (limited to 'common/bytes.go')
-rw-r--r--common/bytes.go22
1 files changed, 22 insertions, 0 deletions
diff --git a/common/bytes.go b/common/bytes.go
index 5e553d23c..2d885ac74 100644
--- a/common/bytes.go
+++ b/common/bytes.go
@@ -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 {