27 lines
591 B
Go
27 lines
591 B
Go
|
package utils
|
||
|
|
||
|
import "encoding/hex"
|
||
|
|
||
|
// FromHex returns the bytes represented by the hexadecimal string s.
|
||
|
// s may be prefixed with "0x".
|
||
|
func FromHex(s string) []byte {
|
||
|
if has0xPrefix(s) {
|
||
|
s = s[2:]
|
||
|
}
|
||
|
if len(s)%2 == 1 {
|
||
|
s = "0" + s
|
||
|
}
|
||
|
return Hex2Bytes(s)
|
||
|
}
|
||
|
|
||
|
// has0xPrefix validates str begins with '0x' or '0X'.
|
||
|
func has0xPrefix(str string) bool {
|
||
|
return len(str) >= 2 && str[0] == '0' && (str[1] == 'x' || str[1] == 'X')
|
||
|
}
|
||
|
|
||
|
// Hex2Bytes returns the bytes represented by the hexadecimal string str.
|
||
|
func Hex2Bytes(str string) []byte {
|
||
|
h, _ := hex.DecodeString(str)
|
||
|
return h
|
||
|
}
|