Update uuid-insecurities.md for Typo

This commit is contained in:
Reyes Lee 2024-08-08 14:23:53 +08:00 committed by GitHub
parent 495183ab52
commit 346d3b6339
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -22,7 +22,7 @@ Universally Unique Identifiers (UUIDs) are **128-bit numbers used to uniquely id
UUIDs are designed to be unique and **hard to guess**. They are structured in a specific format, divided into five groups represented as 32 hexadecimal digits. There are different versions of UUIDs, each serving different purposes: UUIDs are designed to be unique and **hard to guess**. They are structured in a specific format, divided into five groups represented as 32 hexadecimal digits. There are different versions of UUIDs, each serving different purposes:
* **UUID v1** is time-based, incorporating the timestamp, clock sequence, and node ID (MAC address), but it can potentially expose system information. * **UUID v1** is time-based, incorporating the timestamp, clock sequence, and node ID (MAC address), but it can potentially expose system information.
* **UUID v2** is similar to v1 but includes modifications for local domains (not eidly used). * **UUID v2** is similar to v1 but includes modifications for local domains (not widely used).
* **UUID v3 and v5** generate UUIDs using hash values from namespace and name, with v3 using MD5 and v5 using SHA-1. * **UUID v3 and v5** generate UUIDs using hash values from namespace and name, with v3 using MD5 and v5 using SHA-1.
* **UUID v4** is generated almost entirely randomly, providing a high level of anonymity but with a slight risk of duplicates. * **UUID v4** is generated almost entirely randomly, providing a high level of anonymity but with a slight risk of duplicates.