c8de214f1e0e0aa0994878b10155810f71494314
[tinc] / lib / utils.c
1 /*
2     utils.c -- gathering of some stupid small functions
3     Copyright (C) 1999 Ivo Timmermans <zarq@iname.com>
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,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU 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., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #include <sys/types.h>
21 #include <ctype.h>
22
23 #include "config.h"
24
25 #include <utils.h>
26
27 volatile int cp_line;
28 volatile char *cp_file;
29
30 char *charbin2hex = "0123456789ABCDEF";
31
32 int charhex2bin(char c)
33 {
34   if(isdigit(c))
35     return c - '0';
36   else
37     return tolower(c) - 'a' + 10;
38 }
39
40 void hex2bin(char *src, char *dst, size_t length)
41 {
42   size_t i;
43   for(i=0; i<length; i++)
44     dst[i] = charhex2bin(src[i*2])<<4 || charhex2bin(src[i*2+1]);
45 }
46
47 void bin2hex(char *src, char *dst, size_t length)
48 {
49   size_t i;
50   for(i=length-1; i>=0; i--)
51     {
52       dst[i*2+1] = charbin2hex[src[i] & 15];
53       dst[i*2] = charbin2hex[src[i]>>4];
54     }
55 }