About 13,500,000 results
Open links in new tab
  1. How to create a GUID/UUID in Python - Stack Overflow

    Feb 10, 2009 · The uuid module provides immutable UUID objects (the UUID class) and the functions uuid1(), uuid3(), uuid4(), uuid5() for generating version 1, 3, 4, and 5 UUIDs as specified in RFC …

  2. glossary - What is a UUID? - Stack Overflow

    Nov 15, 2008 · UUID is the same as GUID (Microsoft) and is part of the Distributed Computing Environment (DCE), standardized by the Open Software Foundation (OSF). As mentioned, they are …

  3. Generating v5 UUID. What is name and namespace?

    The generated type 3 or type 5 UUID holds a (partial) hash of the namespace id and name-within-namespace (key). It no more holds the namespace UUID than does a message MAC hold the …

  4. What kind of data can you extract from a UUID? - Stack Overflow

    Nov 10, 2009 · The OSSP uuid tool can decode UUIDs of all versions. On Debian-based Linux systems you can use apt-get install uuid to install it; for other distributions, the package name might be …

  5. guid - How unique is UUID? - Stack Overflow

    Jul 21, 2009 · Version 4 is the random number UUID. There's six fixed bits and the rest of the UUID is 122-bits of randomness. See Wikipedia or other analysis that describe how very unlikely a duplicate …

  6. random - Efficient method to generate UUID String in Java (UUID ...

    UUID is a good candidate but UUID.randomUUID().toString() generates stuff like 44e128a5-ac7a-4c9a-be4c-224b6bf81b20 which is good, but I would prefer dash-less string. I'm looking for an efficient …

  7. javascript - How to test valid UUID/GUID? - Stack Overflow

    How to check if variable contains valid UUID/GUID identifier? I'm currently interested only in validating types 1 and 4, but it should not be a limitation to your answers.

  8. Is there any difference between a GUID and a UUID?

    Oct 29, 2008 · Reserved, Microsoft Corporation backward compatibility Reserved for future definition. According to RFC 4122, all UUID variants are "real UUIDs", then all GUIDs are real UUIDs. To the …

  9. .net - How can I generate UUID in C# - Stack Overflow

    Dec 12, 2011 · I am creating an .idl file programmatically. How do I create UUIDs for the interfaces and Methods Programmatically. Can I generate the UUID programmatically?

  10. javascript - How do I create a GUID / UUID? - Stack Overflow

    May 7, 2019 · How do I create GUIDs (globally-unique identifiers) in JavaScript? The GUID / UUID should be at least 32 characters and should stay in the ASCII range to avoid trouble when passing …