1UUID_GENERATE(3) Libuuid API UUID_GENERATE(3)
2
3
4
6 uuid_generate, uuid_generate_random, uuid_generate_time - create a new
7 unique UUID value
8
10 #include <uuid/uuid.h>
11
12 void uuid_generate(uuid_t out);
13 void uuid_generate_random(uuid_t out);
14 void uuid_generate_time(uuid_t out);
15
17 The uuid_generate function creates a new universally unique identifier
18 (UUID). The uuid will be generated based on high-quality randomness
19 from /dev/urandom, if available. If it is not available, then
20 uuid_generate will use an alternative algorithm which uses the current
21 time, the local ethernet MAC address (if available), and random data
22 generated using a pseudo-random generator.
23
24 The uuid_generate_random function forces the use of the all-random UUID
25 format, even if a high-quality random number generator (i.e.,
26 /dev/urandom) is not available, in which case a pseudo-random generator
27 will be subsituted. Note that the use of a pseudo-random generator may
28 compromise the uniqueness of UUIDs generated in this fashion.
29
30 The uuid_generate_time function forces the use of the alternative algo‐
31 rithm which uses the current time and the local ethernet MAC address
32 (if available). This algorithm used to be the default one used to gen‐
33 erate UUID, but because of the use of the ethernet MAC address, it can
34 leak information about when and where the UUID was generated. This can
35 cause privacy problems in some applications, so the uuid_generate func‐
36 tion only uses this algorithm if a high-quality source of randomness is
37 not available.
38
39 The UUID is 16 bytes (128 bits) long, which gives approximately
40 3.4x10^38 unique values (there are approximately 10^80 elemntary parti‐
41 cles in the universe according to Carl Sagan's Cosmos). The new UUID
42 can reasonably be considered unique among all UUIDs created on the
43 local system, and among UUIDs created on other systems in the past and
44 in the future.
45
47 The newly created UUID is returned in the memory location pointed to by
48 out.
49
51 OSF DCE 1.1
52
54 Theodore Y. Ts'o
55
57 libuuid is part of the util-linux-ng package since version 2.15.1 and
58 is available from ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
59
61 uuid(3), uuidgen(1), uuid_clear(3), uuid_compare(3), uuid_copy(3),
62 uuid_is_null(3), uuid_parse(3), uuid_time(3), uuid_unparse(3)
63
64
65
66util-linux-ng May 2009 UUID_GENERATE(3)