GUID
From Just Solve the File Format Problem
(Difference between revisions)
(Created page with "{{FormatInfo |formattype=electronic |subcat=Binary Data }} A GUID (globally unique identifier) is an arbitrary 128-bit identifier. It is the Microsoft version of UUID....") |
(Changed primary category) |
||
Line 1: | Line 1: | ||
{{FormatInfo | {{FormatInfo | ||
|formattype=electronic | |formattype=electronic | ||
− | |subcat= | + | |subcat=Elements of File Formats |
}} | }} | ||
A [[GUID]] (globally unique identifier) is an arbitrary 128-bit identifier. It is the Microsoft version of [[UUID]]. | A [[GUID]] (globally unique identifier) is an arbitrary 128-bit identifier. It is the Microsoft version of [[UUID]]. | ||
Line 15: | Line 15: | ||
* [[Wikipedia:Globally unique identifier]] | * [[Wikipedia:Globally unique identifier]] | ||
+ | [[Category:Binary Data]] | ||
[[Category:Naming and numbering systems]] | [[Category:Naming and numbering systems]] | ||
[[Category:Microsoft]] | [[Category:Microsoft]] |
Revision as of 18:57, 4 December 2015
A GUID (globally unique identifier) is an arbitrary 128-bit identifier. It is the Microsoft version of UUID.
Format details
When written in standard text form, a GUID looks something like this:
{00010203-0405-0607-0809-0a0b0c0d0e0f}
In binary form, the first three fields are supposed to be stored using native endianness. Since Microsoft platforms usually use little-endian byte order, the above GUID would typically be stored as the following 16 bytes:
03 02 01 00 05 04 07 06 08 09 0a 0b 0c 0d 0e 0f