chiark / gitweb /
correct hex() for 0 length outputs
[disorder] / lib / hex.c
1 /*
2  * This file is part of DisOrder
3  * Copyright (C) 2004, 2005 Richard Kettlewell
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18  * USA
19  */
20
21 #include <config.h>
22 #include "types.h"
23
24 #include <stdio.h>
25 #include <string.h>
26
27 #include "hex.h"
28 #include "mem.h"
29 #include "log.h"
30
31 char *hex(const uint8_t *ptr, size_t n) {
32   char *buf = xmalloc_noptr(n * 2 + 1), *p = buf;
33
34   while(n-- > 0)
35     p += sprintf(p, "%02x", (unsigned)*ptr++);
36   *p = 0;
37   return buf;
38 }
39
40 int unhexdigitq(int c) {
41   switch(c) {
42   case '0': return 0;
43   case '1': return 1;
44   case '2': return 2;
45   case '3': return 3;
46   case '4': return 4;
47   case '5': return 5;
48   case '6': return 6;
49   case '7': return 7;
50   case '8': return 8;
51   case '9': return 9;
52   case 'a': case 'A': return 10;
53   case 'b': case 'B': return 11;
54   case 'c': case 'C': return 12;
55   case 'd': case 'D': return 13;
56   case 'e': case 'E': return 14;
57   case 'f': case 'F': return 15;
58   default: return -1;
59   }
60 }
61
62 int unhexdigit(int c) {
63   int d;
64
65   if((d = unhexdigitq(c)) < 0) error(0, "invalid hex digit");
66   return d;
67 }
68
69 uint8_t *unhex(const char *s, size_t *np) {
70   size_t l;
71   uint8_t *buf, *p;
72   int d1, d2;
73
74   if((l = strlen(s)) & 1) {
75     error(0, "hex string has odd length");
76     return 0;
77   }
78   p = buf = xmalloc_noptr(l / 2);
79   while(*s) {
80     if((d1 = unhexdigit(*s++)) < 0) return 0;
81     if((d2 = unhexdigit(*s++)) < 0) return 0;
82     *p++ = d1 * 16 + d2;
83   }
84   if(np)
85     *np = l / 2;
86   return buf;
87 }
88
89 /*
90 Local Variables:
91 c-basic-offset:2
92 comment-column:40
93 End:
94 */