Created
April 5, 2014 09:31
-
-
Save Duraiamuthan/9989619 to your computer and use it in GitHub Desktop.
UDID vs UUID vs GUID
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UUID: | |
It is the acronym of Universally Unique Identifier. | |
A sequence of 128 bits that can guarantee uniqueness across space and time, defined by RFC 4122. | |
GUID: | |
It is the acronym of Globally Unique Identifier | |
It is Microsoft's implementation of the UUID specification; often used interchangeably with UUID. | |
In dot net framework its called as Plain GUID and in sql server its called as newid | |
UDID: | |
It is the acronym of Unique Device Identifier | |
It is sequence of 40 hexadecimal characters that uniquely identify an iOS device |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment