Re: [PHP-DEV] [RFC] Deprecation of uniqid()

2018-05-12 Thread Alice Wonder
On 05/12/2018 03:46 PM, Yasuo Ohgaki wrote: On Fri, May 11, 2018 at 9:34 PM, Alice Wonder mailto:al...@librelamp.com>> wrote: slightly better if block if($more_entropy) { sodium_increment($nonce); $x = hexdec(substr(bin2hex($nonce),0,12)); $return = $return . substr($x

Re: [PHP-DEV] [RFC] Deprecation of uniqid()

2018-05-12 Thread Yasuo Ohgaki
On Fri, May 11, 2018 at 9:34 PM, Alice Wonder wrote: > slightly better if block > > if($more_entropy) { > sodium_increment($nonce); > $x = hexdec(substr(bin2hex($nonce),0,12)); > $return = $return . substr($x, 2, 1) . '.' . substr($x, -8); > } > > Obvious patterns in the "more entropy" but