summaryrefslogtreecommitdiffstats
path: root/src/common/uuid.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-3/+2
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
2022-02-10common: uuid: Use sizeof(u64) instead of 8 in Hash()Morph1-5/+5
2022-02-05common: uuid: Return an invalid UUID if conversion from string failsMorph1-14/+39
The string constructor of UUID states: Should the input string not meet the above requirements, an assert will be triggered and an invalid UUID is set instead.
2022-02-05general: Rename NewUUID to UUID, and remove the previous UUID implMorph1-42/+143
This completes the removal of the old UUID implementation.
2021-08-04common: uuid: Add hex string to UUID constructorMorph1-0/+54
This allows for easily converting a hex string into a Common::UUID, which is backed by a 128 bit unsigned integer.
2021-07-27common: uuid: Return a lower-case hex string in FormatMorph1-1/+1
2019-04-25mii_manager: Cleanup and optimizationZach Hilman1-1/+1
2019-04-25common: Extract UUID to its own classZach Hilman1-0/+33
Since the Mii database uses UUIDs very similar to the Accounts database, it makes no sense to not share code between them.