10 examples of 'golang hex' in Go

Every line of 'golang hex' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Go code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
195func hex(v interface{}) string {
196 return fmt.Sprintf("%x", v)
197}
519func (s *ExprContext) HEX() antlr.TerminalNode {
520 return s.GetToken(RParserHEX, 0)
521}
68func (h Hash) Hex() string { return strings.ToLower(hexutil.Encode(h[:])) }
134func (c Chroma) Hex() string {
135 return fmt.Sprintf("%X", c)
136}
177func (k *PublicKey) Hex() string {
178 enc := k.Encode()
179 h := hex.EncodeToString(enc)
180 return "0x" + h
181}
14func (a LocalAddress) Hex() string {
15 unchecksummed := hex.EncodeToString(a)
16 sha := sha3.New256()
17 sha.Write([]byte(unchecksummed))
18 hash := sha.Sum(nil)
19
20 result := []byte(unchecksummed)
21 for i := 0; i < len(result); i++ {
22 hashByte := hash[i/2]
23 if i%2 == 0 {
24 hashByte = hashByte >> 4
25 } else {
26 hashByte &= 0xf
27 }
28 if result[i] > '9' && hashByte > 7 {
29 result[i] -= 32
30 }
31 }
32 return string(result)
33}
34func (this UUID) HexEx() string {
35 x := [16]byte(this)
36 return fmt.Sprintf("%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",
37 x[0], x[1], x[2], x[3], x[4],
38 x[5], x[6],
39 x[7], x[8],
40 x[9], x[10], x[11], x[12], x[13], x[14], x[15])
41
42}
21func Hex(s string) (*big.Int, bool) {
22 return new(big.Int).SetString(stripliteral(s), 16)
23}
149func hex(r rune) byte {
150 switch {
151 case r >= '0' && r <= '9':
152 return byte(r - '0')
153 case r >= 'A' && r <= 'Z':
154 return byte(r-'A') + 10
155 case r >= 'a' && r <= 'z':
156 return byte(r-'a') + 10
157 default:
158 return 0
159 }
160}
87func (m *BigInt) GetHex() string {
88 if m != nil {
89 return m.Hex
90 }
91 return ""
92}

Related snippets