summaryrefslogtreecommitdiffstats
path: root/src/common/new_uuid.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-02-05general: Rename NewUUID to UUID, and remove the previous UUID implMorph1-188/+0
This completes the removal of the old UUID implementation.
2022-02-05common: uuid: Add AsU128()Morph1-0/+6
This copies the internal bytes of the UUID into a u128 for backwards compatibility. This should not be used.
2022-02-05common: Implement NewUUIDMorph1-0/+182
This is a fixed and revised implementation of UUID that uses an array of bytes as its internal representation of a UUID instead of a u128 (which was an array of 2 u64s). In addition to this, the generation of RFC 4122 Version 4 compliant UUIDs is also implemented.