-
Notifications
You must be signed in to change notification settings - Fork 0
/
hexutil.c
89 lines (72 loc) · 2.12 KB
/
hexutil.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
Copyright 2018 Intel Corporation
This software and the related documents are Intel copyrighted materials,
and your use of them is governed by the express license under which they
were provided to you (License). Unless the License provides otherwise,
you may not use, modify, copy, publish, distribute, disclose or transmit
this software or the related documents without Intel's prior written
permission.
This software and the related documents are provided as is, with no
express or implied warranties, other than those that are expressly stated
in the License.
*/
#include "hexutil.h"
#include <sys/types.h>
#include <stdlib.h>
#include <stdio.h>
static char *_hex_buffer= NULL;
static size_t _hex_buffer_size= 0;
int from_hexstring (unsigned char *dest, const void *vsrc, size_t len)
{
size_t i;
const unsigned char *src= (const unsigned char *) vsrc;
for (i= 0; i<len; ++i) {
unsigned int v;
#ifdef _WIN32
if ( sscanf_s(&src[i * 2], "%2xhh", &v) == 0 ) return 0;
#else
if ( sscanf(&src[i*2], "%2xhh", &v) == 0 ) return 0;
#endif
dest[i]= (unsigned char) v;
}
return 1;
}
void print_hexstring (FILE *fp, const void *vsrc, size_t len)
{
const unsigned char *sp= (const unsigned char *) vsrc;
size_t i;
for(i= 0; i< len; ++i) {
fprintf(fp, "%02x", sp[i]);
}
}
void print_hexstring_nl (FILE *fp, const void *src, size_t len)
{
print_hexstring(fp, src, len);
fprintf(fp, "\n");
}
/* Not thread-safe */
const char _hextable[]= "0123456789abcdef";
const char *hexstring (const void *vsrc, size_t len)
{
size_t i, bsz;
const unsigned char *src= (const unsigned char *) vsrc;
unsigned char *bp;
bsz= len*2+1; /* Make room for NULL byte */
if ( bsz >= _hex_buffer_size ) {
/* Allocate in 1K increments. Make room for the NULL byte. */
size_t newsz= 1024*(bsz/1024) + ((bsz%1024) ? 1024 : 0);
_hex_buffer_size= newsz;
_hex_buffer= (char *) realloc(_hex_buffer, newsz);
if ( _hex_buffer == NULL ) {
return "(out of memory)";
}
}
for(i= 0, bp= _hex_buffer; i< len; ++i) {
*bp= _hextable[src[i]>>4];
++bp;
*bp= _hextable[src[i]&0xf];
++bp;
}
_hex_buffer[len*2]= 0;
return (const char *) _hex_buffer;
}