Reduce amount of macro magic. Use the same special characters as nroff
[netbsd-mini2440.git] / dist / wpa / src / utils / uuid.c
blobb1fd2347f2e14e9e2c6886b29e8e289f7b8c2e00
1 /*
2 * Universally Unique IDentifier (UUID)
3 * Copyright (c) 2008, Jouni Malinen <j@w1.fi>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * Alternatively, this software may be distributed under the terms of BSD
10 * license.
12 * See README and COPYING for more details.
15 #include "includes.h"
17 #include "common.h"
18 #include "uuid.h"
20 int uuid_str2bin(const char *str, u8 *bin)
22 const char *pos;
23 u8 *opos;
25 pos = str;
26 opos = bin;
28 if (hexstr2bin(pos, opos, 4))
29 return -1;
30 pos += 8;
31 opos += 4;
33 if (*pos++ != '-' || hexstr2bin(pos, opos, 2))
34 return -1;
35 pos += 4;
36 opos += 2;
38 if (*pos++ != '-' || hexstr2bin(pos, opos, 2))
39 return -1;
40 pos += 4;
41 opos += 2;
43 if (*pos++ != '-' || hexstr2bin(pos, opos, 2))
44 return -1;
45 pos += 4;
46 opos += 2;
48 if (*pos++ != '-' || hexstr2bin(pos, opos, 6))
49 return -1;
51 return 0;
55 int uuid_bin2str(const u8 *bin, char *str, size_t max_len)
57 int len;
58 len = os_snprintf(str, max_len, "%02x%02x%02x%02x-%02x%02x-%02x%02x-"
59 "%02x%02x-%02x%02x%02x%02x%02x%02x",
60 bin[0], bin[1], bin[2], bin[3],
61 bin[4], bin[5], bin[6], bin[7],
62 bin[8], bin[9], bin[10], bin[11],
63 bin[12], bin[13], bin[14], bin[15]);
64 if (len < 0 || (size_t) len >= max_len)
65 return -1;
66 return 0;