1

In python's UUID module, there are four namespace constants: NAMESPACE_DNS, NAMESPACE_URL, NAMESPACE_OID and NAMESPACE_X500.

Are the objects stored in these constants the same for everyone using python?

At home, I tried checking NAMESPACE_DNS and NAMESPACE_URL on two different computers and I got the exact same uuid for both, but I'm not sure I should take it as a given.

manoelpqueiroz
  • 575
  • 1
  • 7
  • 17

1 Answers1

2

These are the same for everyone. They're standardized values defined in RFC 4122, Appendix C.

user2357112
  • 260,549
  • 28
  • 431
  • 505