183d3924cf
If the uuid configuration parameter is not set, wpa_supplicant generates an UUID automatically to allow WPS operations to proceed. This was previously always using an UUID generated from the MAC address. This commit adds an option to use a random UUID instead. The type of the automatically generated UUID is set with the auto_uuid parameter: 0 = based on MAC address (default; old behavior), 1 = random UUID. Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
19 lines
439 B
C
19 lines
439 B
C
/*
|
|
* Universally Unique IDentifier (UUID)
|
|
* Copyright (c) 2008, Jouni Malinen <j@w1.fi>
|
|
*
|
|
* This software may be distributed under the terms of the BSD license.
|
|
* See README for more details.
|
|
*/
|
|
|
|
#ifndef UUID_H
|
|
#define UUID_H
|
|
|
|
#define UUID_LEN 16
|
|
|
|
int uuid_str2bin(const char *str, u8 *bin);
|
|
int uuid_bin2str(const u8 *bin, char *str, size_t max_len);
|
|
int is_nil_uuid(const u8 *uuid);
|
|
int uuid_random(u8 *uuid);
|
|
|
|
#endif /* UUID_H */
|