vote up 3 vote down star
1

We need to generate a cryptographically random string to use as an authentication token, which will be tied to session data in the database. We are using PHP, which doesn't appear to have a suitable random number generator built-in. How can we generate a cryptographically secure random string of N length using php?

Also note, due to the nature of our application, shell_exec is off the table.

flag

Find your answer here: stackoverflow.com/questions/1182584/… – James Skidmore Oct 11 at 15:29

4 Answers

vote up 1 vote down check

what about uniqid? docs have an example of how it can be used for cookies/sessions.

link|flag
This seems to be the best approach - when combined with mt_rand as described in the manual. – Travis Oct 11 at 16:13
vote up 2 vote down

Depending on your platform, you may use /dev/urandom or CAPICOM. This is nicely summarized in this comment from Mark Seecof.

link|flag
Thanks - I do believe this is the best way, since /dev/urandom uses a variety of entropy sources, rather than just the system clock. In my case, however, we will not be able to use fopen in this manner because we're basically working in a sandboxed environment. – Travis Oct 11 at 15:44
vote up -1 vote down

Off the top of my head: take micro time, multiply it by microtime % 100 and do few randoms on sha1 of received result.

link|flag
1  
That won't be very secure. Don't use the system clock unless you want the output to be predictable. – Dan Dyer Oct 11 at 15:37
vote up -1 vote down

I think that you do not really need cryptographically secure random number for session handling. You can use built-in rand() function in for loop to get as much random symbols as you need. Or just stick to ol' trusty md5($salt.time().rand(10000).microtime())

link|flag

Your Answer

Get an OpenID
or

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