What is a UUID? | UUID vs. GUID - Qpidi
top of page
  • Writer's pictureStrofl

What is a UUID? | UUID vs. GUID - Qpidi

In the realm of the internet and computing, the concept of universally unique identifiers (UUIDs) plays a pivotal role in distinguishing one entity from another. Much like a fingerprint is unique to an individual, a UUID provides a unique identity to various digital entities.


UUID
UUID

What is a UUID?

A UUID is a 128-bit value, an extraordinarily large number, that can be used to identify almost anything you can think of on the internet. This can range from databases, system instances, and primary keys to Bluetooth Profiles or objects with short lifetimes. The beauty of UUIDs lies in their near-perfect uniqueness, ensuring that any UUID you generate is almost certainly different from any other UUID, now and in the foreseeable future.


UUID vs GUID - Are They Different?

Initially, the term GUID (Globally Unique Identifier) was used by Microsoft as a variant of UUID. However, over time, UUID and GUID have become synonymous. Both serve the same purpose of uniquely identifying entities in a digital space.


How Are UUIDs Generated?

UUIDs are generated using sophisticated algorithms, but the process doesn't require any central issuing authority. Anyone can create a UUID using various free tools and websites. The standard format of a UUID is a sequence of hexadecimal digits, displayed in a 8-4-4-4-12 pattern, separated by hyphens.


Collisions in UUIDs

Although theoretically possible, the likelihood of generating duplicate UUIDs (known as a collision) is extremely low. It’s so rare that it's practically negligible for most practical applications.


Variants and Versions of UUIDs

UUIDs come in different variants and versions, each suited for specific purposes:

  1. Variant 0: Now obsolete.

  2. Variant 1: The most commonly used today.

  3. Variant 2: Reserved for Microsoft backward compatibility.

Among these, Variant 1 UUIDs have different versions:

  • Version 1: Incorporates the computer's MAC address and the current date and time. It offers uniqueness but can potentially reveal the time and place of creation.

  • Version 4: Generated completely at random, offering more anonymity but with a minimal chance of duplication.

Choosing the Right UUID Version

The choice between different UUID versions depends on your specific needs. Whether anonymity is a priority or if absolute uniqueness is more critical.


Creating UUIDs: A Practical Guide

Creating UUIDs is straightforward, especially with programming languages like Python, which offer built-in libraries to generate them.


Basic Python Code to Create UUIDs:

Here's a simple Python script to generate both UUID and GUID:

pythonCopy code
import uuid

# Generating a UUID (which is synonymous with GUID)
generated_uuid = uuid.uuid4()  # This generates a random UUID.print("Generated UUID:", generated_uuid)

# Generating a GUID
generated_guid = uuid.uuid4()
print("Generated GUID:", generated_guid)

This code snippet utilizes Python's uuid library to generate a random UUID (or GUID), specifically using the uuid4 function, which creates a version 4 UUID.


Create a Version 1 UUID Manually

Creating a UUID by hand, while theoretically possible, is not practical due to the complexity and the precision required to ensure uniqueness. UUIDs are typically 128-bit numbers, and manually calculating them would be both error-prone and time-consuming.


Step-by-Step Guide to Theoretically

I can outline the theoretical steps you would take if you were to create a UUID manually, especially a Version 1 UUID which is one of the more straightforward types.


1. Understand the UUID Structure

  • A Version 1 UUID is composed of:

    • 60 bits for the timestamp,

    • 48 bits for the computer's MAC address,

    • 14 bits for the unique clock sequence,

    • 6 bits for the version (which will be 0001 for Version 1).


2. Generate the Timestamp

  • Get the current date and time in UTC.

  • Calculate the number of 100-nanosecond intervals since the UUID epoch (00:00:00.00, 15 October 1582).

  • Convert this number into a 60-bit hexadecimal format.

3. Get the MAC Address

  • Find the MAC address of your computer's network card.

  • Convert the MAC address (usually in the form XX:XX:XX:XX:XX:XX) to a 48-bit hexadecimal number.

4. Generate the Clock Sequence

  • The clock sequence is a random or pseudo-random 14-bit number.

  • You could use a random number generator to get this value.

5. Assemble the UUID

  • Combine the time, MAC address, and clock sequence bits.

  • Insert the version number (0001 for Version 1) at the appropriate position (the 13th character from the left in the final UUID string).

6. Format the UUID

  • Arrange the bits into the 8-4-4-4-12 pattern.

  • Separate each group with hyphens.

  • Ensure all letters are in lowercase or uppercase consistently (UUIDs are case-insensitive).

7. Collision Checking (Optional but Recommended)

  • Ideally, check the generated UUID against a database of existing UUIDs to ensure it's unique (though this step is practically infeasible by hand).

Example

  • Let's say the timestamp is 1d8b6c2c2fb4, MAC address is 00:11:22:33:44:55, and clock sequence is 3ffd.

  • A Version 1 UUID might look something like this: 1d8b6c2c-2fb4-1000-3ffd-001122334455. Here, 1000 is the version number embedded within the UUID.


Conclusion

In the vast digital landscape, where unique identification is crucial, UUIDs and GUIDs serve as essential tools. Whether you're managing databases, developing software, or working with IoT devices, understanding and utilizing UUIDs will undoubtedly be a key part of your toolkit. Feel free to experiment with generating UUIDs using the Python code provided and adapt it to fit your specific needs.


 

References

69 views0 comments

Subscribe to Our Newsletter

Thanks for submitting!

  • Instagram
  • Facebook
  • Twitter
  • TikTok

© 2023 by Qpidi

bottom of page