Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This question isn't really a problem looking for a solution, it's more just a matter of simple curiosity. The PHP uniqid function has a more entropy flag, to make the output "more unique". This got me wondering, just how likely is it for this function to produce the same result more than once when more_entropy is true, versus when it isn't. In other words, how unique is uniqid when more_entropy is enabled, versus when it is disabled? Are there any drawbacks to having more_entropy enabled all the time?

share|improve this question
2  
If you want something that's always unique, you'd need to implement a GUID. Pretty much anything else will eventually collide since there's only so much entropy in the function. For example, uniqid with more_entropy set gives only about 92 bits of entropy (23 hexbits). To understand why that's not good for uniqueness, see The Birthday Problem... – ircmaxell Nov 1 '10 at 15:16
@ircmaxell thanks for pointing out The Birthday Problem, it's quite interesting. It should be definitely mentioned in the answer. – Petr Peller Oct 26 '11 at 15:11
2  
uniqid() isn't a hash function so The Birthday Problem doesn't apply to it. It does have its vulnerabilities though. – sudopeople Nov 6 '12 at 1:16

4 Answers

up vote 10 down vote accepted

Setting more-entropy to true generates a more unique value, however the execution time is longer (though to a tiny degree).

You can 'endlessly' strive for uniqueness, up to a point, and enhance using any number of encryption routines, adding salts and the like- it depends on the purpose.

I'd recommend looking at the comments on the main PHP topic, notably:

http://www.php.net/manual/en/function.uniqid.php#96898

http://www.php.net/manual/en/function.uniqid.php#96549

http://www.php.net/manual/en/function.uniqid.php#95001

What I'd recommend is working out why you need uniqueness, is it for security (i.e. to add to an encryption/scrambling routine)? Also, How unique does it need to be? Finally, look at the speed consideration. Suitability will change with the underlying considerations.

share|improve this answer
The most important lesson with those function comments is that uuid by itself is a very dangerous identifier to pass as a cookie/client-readable ID, but as a local/protected unique ID it has some good uses, namely speed. 2.5 cents. – DrPerdix Nov 1 '10 at 15:26

From the discussions about the function on the PHP manual site:

As others below note, without prefix and without "added entropy", this function simply returns the UNIX timestamp with added microsecond counter as a hex number; it's more or less just microtime(), in hexit form.

[...]

Also worth to note is that since microtime() only works on systems that have gettimeofday() > present, which Windows natively DOES NOT, uniqid() might yield just the single-second-resolution UNIX timestamp in a Windows environment.

In other words without "more_entropy", the function is absolutely horrible and should never be used, period. Accoding to the documentation, the flag will use a "combined linear congruential generator" to "add entropy". Well, that's a pretty weak RNG. So I'd skip this function entirely and use something based on mt_rand with a good seed for things that are not security-relevant, and SHA-256 for things that are.

share|improve this answer

Things are only unique if you check that they don't exist already. It doesn't matter what function you use to generate a 'random' string, or ID - if you don't double check that it isn't a duplicate, then there's always that chance.. ;)

While uniqid is based on the current time, the cautionary note above still applies - it just depends on where you will be using these "unique IDs". The clue to all this is where it says "more unique". Unique is unique is unique. How you can have something which is more or less unique, is a bit confusing to me!

Checking as above, and combining all this stuff will let you end up with something approaching uniqueness, but its all relative to where the keys will be used and the context. Hope that helps!

share|improve this answer
3  
There is a huge difference between "chance of getting a collision is one in ten thousand" and "change of getting a collision is less than every single user of the program getting hit by lightning simultaneously". A 128 bit value generated by a good RNG with a good seed is so close to being "really" unique that it does not matter, considering the incredibly high costs of getting something provably (and unpredictably) unique. – Michael Borgwardt Nov 1 '10 at 15:20
Just to further your point @Michael: For 128 bits, you'd need everybody in the US (300 million) to generate 1 million numbers per second for just about a day to get a 50% chance of a collision... For 512 bits, you'd need every body on earth (7 billion people) to generate 1 trillion numbers per second each for the next 10^47 years just to have a 50% chance of a collision... So yes, with a high big enough upper bound on the random number AND a good enough RNG, you can simulate uniqueness with only randomness... – ircmaxell Nov 1 '10 at 15:35
To put that time in perspective (10^47 years), it's the time it would take to reach the edge of the observable universe traveling at about 1 trillionth of an inch per hour (0.00000000000001 inches per hour)... (traveling at 55 miles per hour, it would take only about 10^23 years to reach the edge of the universe)... – ircmaxell Nov 1 '10 at 15:56
I completely agree, with your ideal world examples as above. The chances are minimal. However, randomness is not perfect in the implementations referred to in the original question, and I maintain, the domain where it this unique number is being used is important. If you had 1000 servers each doing 'unique' ID's based on microtimes, and assuming they were unique "just because", then at some point, you may well get burnt. Disregarding any quirks in code.. bugs, or whatever. The difference here is between reality and theory, and that's why we check ;) – danp Nov 1 '10 at 15:58
2  
"The principle of generating small amounts of finite improbability by simply hooking the logic circuits of a Bambleweeny 57 Sub- Meson Brain to an atomic vector plotter suspended in a strong Brownian Motion producer (say a nice hot cup of tea) were of course well understood." – danp Nov 1 '10 at 15:58

Without the more_unique flag, it returns the unix timestamp with a microsecond counter, therefore if two calls get made at the same microsecond then they will return the same 'unique' id.

From there it is a question of how likely that is. The answer is, not very, but not to a discountable degree. If you need a unique id and you generate them often (or work with data generated elsewhere), don't count on it to be absolutely unique.

share|improve this answer
2  
believe it or not, it actually calls usleep(1) to make sure that never happens! – Eli Jul 22 '11 at 21:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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