I see these 2 acronyms thrown around, and I was wondering if there are any differences between a GUID and a UUID?
|
feedback
|
|
GUID is Microsoft's implementation of the UUID standard. Per Wikipedia:
| |||
|
feedback
|
|
Well a GUID (Globally Unique ID) is only unique for items on this planet, whereas a UUID (Universally Unique ID) should cover you anywhere terrestrial or extra-terrestrial | |||||||||||||||||||||
feedback
|
|
The simple answer is: they are the same thing. Treat them as a 16 byte (128 bits) value that is used as a unique value. In Microsoft-speak they are called GUIDs, but call them UUIDs when not using Microsoft-speak. Even the authors of the UUID specification and Microsoft claim they are synonyms:
But the correct answer depends on what the question means when it says "UUID"... Microsoft's claim implies that all UUIDs are GUIDs. But are all GUIDs real UUIDs? That is, is the set of all UUIDs just a proper subset of the set of all GUIDs, or is it the exact same set? Looking at the details of the RFC 4122, there are four different "variants" of UUIDs. This is mostly because such 16 byte identifiers were in use before those specifications were brought together in the creation of a UUID specification. From section 4.1.1 of RFC 4122, the four variants of UUID are:
According to RFC 4122, all UUID variants are "real UUIDs", then all GUIDs are real UUIDs. To the literal question "is there any difference between GUID and UUID" the answer is definitely no for RFC 4122 UUIDs -- they are the same. But not all GUIDs are variant 2 UUIDs (e.g. Microsoft COM has GUIDs which are variant 3 UUIDs). If the question was "is there any difference between GUID and variant 2 UUIDs", then the answer would be yes -- they can be different. Someone asking the question probably doesn't know about variants and they are actually thinking of variant 2 UUIDs when they say the word "UUID" (e.g. they vaguely know of the MAC address+time and the random number algorithms forms of UUID, which are both versions of variant 2). If you think that was confusing, read the ITU-T X.667 ISO/IEC 9834-8:2004 which is supposed to be aligned and fully technically compatible with RFC 4122. It has an extra sentence in Clause 11.2 that says, "All UUIDs conforming to this Recommendation | International Standard shall have variant bits with bit 7 of octet 7 set to 1 and bit 6 of octet 7 set to 0". Which means that only variant 2 UUID conform to that Standard (those two bit values mean variant 2). If that is true, then not all GUIDs are conforming ITU-T/ISO/IEC UUIDs, because conformant ITU-T/ISO/IEC UUIDs can only be variant 2 values. Therefore, the real answer also depends on which specification of UUID the question is asking about. There is no difference between GUID and IETF's UUIDs, but there is a difference between GUID and conforming ITU-T/ISO/IEC's UUIDs! | ||||
|
feedback
|
|
Not really. GUID is more Microsoft-centric whereas UUID is used more widely (e.g., as in the urn:uuid: URN scheme, and in CORBA). | |||
|
feedback
|