Merge pull request #915 from ZakuroSoda/patch-1

Update uuid-insecurities.md for Typo
This commit is contained in:
SirBroccoli 2024-08-12 16:38:18 +02:00 committed by GitHub
commit 0e57ade27e
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:
* **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 v4** is generated almost entirely randomly, providing a high level of anonymity but with a slight risk of duplicates.