vote up 2 vote down star

I've got a bunch of servers running this Linux app. I'd like for them to be able to generate a GUID with a low probability of collision. I'm sure I could just pull 128 bytes out of /dev/urandom and that would probably be fine, but is there a simple & easy way to generate a GUID that is more equivalent to the Win32 one? Specifically, one that takes into account space (well, MAC address), time, and randomness? I don't want to call off the box for it, I just want something like CreateGuid()

flag

47% accept rate

5 Answers

vote up 4 vote down check

This Internet Draft describes one type of UUID in great details and I have used a similar approach with great success when I needed a UUID implementation and could not link to an existing library for architectural reasons.

This article provides a good overview.

link|flag
From looking at that second link, I found libuuid (linux.die.net/man/3/libuuid), which seems to be exactly what I need. Thanks! – twk Sep 30 '08 at 17:02
I am glad I was able to help. – David Segonds Sep 30 '08 at 17:04
vote up 1 vote down

Look here: http://stackoverflow.com/questions/87127/guid-behind-the-scenes

P.S. This is not a duplicate question - the best answer would point to a publicly available source.

link|flag
vote up 1 vote down

If you are going to use something then an Internet standard would be a good idea:
Check out RFC (Request For Comment).

The one I know that is specific to GUID is: RFC 4122

link|flag
vote up 6 vote down

There is libuuid.

link|flag
It would be wonderful if there were a non-LGPL (and non-GPL) library. – jeffamaphone Oct 27 at 16:04
vote up -1 vote down

There is a Boost version available.

http://www.boostpro.com/vault/index.php?action=downloadfile&filename=uuid_v11.zip&directory=&PHPSESSID=69e18b945f686398b963710fd52f143a

link|flag
It would be useful if down-voters would leave a comment. Sigh. – Rob Oct 27 at 19:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.