2015-07-07 00:54:22 +00:00
|
|
|
// Copyright 2014 The go-ethereum Authors
|
2015-07-22 16:48:40 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-07 00:54:22 +00:00
|
|
|
//
|
2015-07-23 16:35:11 +00:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
2015-07-07 00:54:22 +00:00
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
2015-07-22 16:48:40 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-07 00:54:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 16:48:40 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 00:54:22 +00:00
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
2015-07-22 16:48:40 +00:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 00:54:22 +00:00
|
|
|
|
2015-07-07 03:08:16 +00:00
|
|
|
// Package common contains various helper functions.
|
2015-03-16 10:27:38 +00:00
|
|
|
package common
|
2014-02-14 22:56:09 +00:00
|
|
|
|
|
|
|
import (
|
2014-06-29 14:56:40 +00:00
|
|
|
"encoding/hex"
|
2014-02-14 22:56:09 +00:00
|
|
|
)
|
|
|
|
|
2015-03-22 12:32:52 +00:00
|
|
|
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 {
|
2016-10-28 19:25:49 +00:00
|
|
|
if s[0:2] == "0x" || s[0:2] == "0X" {
|
2015-03-22 12:32:52 +00:00
|
|
|
s = s[2:]
|
|
|
|
}
|
|
|
|
if len(s)%2 == 1 {
|
|
|
|
s = "0" + s
|
|
|
|
}
|
|
|
|
return Hex2Bytes(s)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-04-29 10:36:27 +00:00
|
|
|
// Copy bytes
|
|
|
|
//
|
|
|
|
// Returns an exact copy of the provided bytes
|
|
|
|
func CopyBytes(b []byte) (copiedBytes []byte) {
|
|
|
|
copiedBytes = make([]byte, len(b))
|
|
|
|
copy(copiedBytes, b)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
2014-05-05 13:48:17 +00:00
|
|
|
|
2015-04-02 13:53:04 +00:00
|
|
|
func HasHexPrefix(str string) bool {
|
|
|
|
l := len(str)
|
|
|
|
return l >= 2 && str[0:2] == "0x"
|
|
|
|
}
|
|
|
|
|
2014-05-05 13:48:17 +00:00
|
|
|
func IsHex(str string) bool {
|
|
|
|
l := len(str)
|
|
|
|
return l >= 4 && l%2 == 0 && str[0:2] == "0x"
|
|
|
|
}
|
2014-05-28 11:14:56 +00:00
|
|
|
|
2014-06-29 14:56:40 +00:00
|
|
|
func Bytes2Hex(d []byte) string {
|
|
|
|
return hex.EncodeToString(d)
|
|
|
|
}
|
|
|
|
|
|
|
|
func Hex2Bytes(str string) []byte {
|
|
|
|
h, _ := hex.DecodeString(str)
|
2014-07-26 09:24:44 +00:00
|
|
|
|
2014-06-29 14:56:40 +00:00
|
|
|
return h
|
|
|
|
}
|
|
|
|
|
2015-04-03 15:37:59 +00:00
|
|
|
func Hex2BytesFixed(str string, flen int) []byte {
|
|
|
|
h, _ := hex.DecodeString(str)
|
|
|
|
if len(h) == flen {
|
|
|
|
return h
|
|
|
|
} else {
|
|
|
|
if len(h) > flen {
|
2017-01-06 14:52:03 +00:00
|
|
|
return h[len(h)-flen:]
|
2015-04-03 15:37:59 +00:00
|
|
|
} else {
|
|
|
|
hh := make([]byte, flen)
|
|
|
|
copy(hh[flen-len(h):flen], h[:])
|
|
|
|
return hh
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-01 21:59:37 +00:00
|
|
|
func RightPadBytes(slice []byte, l int) []byte {
|
2014-07-01 22:06:21 +00:00
|
|
|
if l < len(slice) {
|
2014-07-01 18:08:48 +00:00
|
|
|
return slice
|
|
|
|
}
|
|
|
|
|
|
|
|
padded := make([]byte, l)
|
|
|
|
copy(padded[0:len(slice)], slice)
|
|
|
|
|
|
|
|
return padded
|
|
|
|
}
|
|
|
|
|
2014-07-01 21:59:37 +00:00
|
|
|
func LeftPadBytes(slice []byte, l int) []byte {
|
2014-07-01 22:06:21 +00:00
|
|
|
if l < len(slice) {
|
2014-07-01 18:08:48 +00:00
|
|
|
return slice
|
|
|
|
}
|
|
|
|
|
|
|
|
padded := make([]byte, l)
|
|
|
|
copy(padded[l-len(slice):], slice)
|
|
|
|
|
|
|
|
return padded
|
|
|
|
}
|