• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Copyright © 2023 Valve Corporation
2  *
3  * Permission is hereby granted, free of charge, to any person obtaining a
4  * copy of this software and associated documentation files (the "Software"),
5  * to deal in the Software without restriction, including without limitation
6  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
7  * and/or sell copies of the Software, and to permit persons to whom the
8  * Software is furnished to do so, subject to the following conditions:
9  *
10  * The above copyright notice and this permission notice (including the next
11  * paragraph) shall be included in all copies or substantial portions of the
12  * Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20  * DEALINGS IN THE SOFTWARE.
21  */
22 
23 #ifndef UTIL_HEX_H
24 #define UTIL_HEX_H
25 
26 #include <stdlib.h>
27 
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31 
32 /*
33  * Convert a binary buffer of length `len` to a hexadecimal string of length
34  * `len * 2 + 1` (including NUL terminator).
35  */
mesa_bytes_to_hex(char * buf,const unsigned char * binary,unsigned len)36 static inline char *mesa_bytes_to_hex(char *buf, const unsigned char *binary,
37                                       unsigned len) {
38   static const char hex_digits[] = "0123456789abcdef";
39   unsigned i;
40 
41   for (i = 0; i < len * 2; i += 2) {
42     buf[i] = hex_digits[binary[i >> 1] >> 4];
43     buf[i + 1] = hex_digits[binary[i >> 1] & 0x0f];
44   }
45   buf[i] = '\0';
46 
47   return buf;
48 }
49 
50 /*
51  * Read `len` pairs of hexadecimal digits from `hex` and write the values to
52  * `binary` as `len` bytes.
53  */
mesa_hex_to_bytes(unsigned char * buf,const char * hex,unsigned len)54 static inline void mesa_hex_to_bytes(unsigned char *buf, const char *hex,
55                                      unsigned len) {
56   for (unsigned i = 0; i < len; i++) {
57     char tmp[3];
58     tmp[0] = hex[i * 2];
59     tmp[1] = hex[(i * 2) + 1];
60     tmp[2] = '\0';
61     buf[i] = strtol(tmp, NULL, 16);
62   }
63 }
64 
65 #ifdef __cplusplus
66 }
67 #endif
68 
69 #endif