]> git.ipfire.org Git - thirdparty/hostap.git/blame - src/utils/uuid.h
tests: HE AP parameters
[thirdparty/hostap.git] / src / utils / uuid.h
CommitLineData
6fc6879b
JM
1/*
2 * Universally Unique IDentifier (UUID)
3 * Copyright (c) 2008, Jouni Malinen <j@w1.fi>
4 *
0f3d578e
JM
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
6fc6879b
JM
7 */
8
9#ifndef UUID_H
10#define UUID_H
11
12#define UUID_LEN 16
13
14int uuid_str2bin(const char *str, u8 *bin);
15int uuid_bin2str(const u8 *bin, char *str, size_t max_len);
f855f923 16int is_nil_uuid(const u8 *uuid);
183d3924 17int uuid_random(u8 *uuid);
6fc6879b
JM
18
19#endif /* UUID_H */