mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-09 15:20:58 +00:00
Merge pull request #353 from terrafrost/biginteger-function-exists
BigInteger: "be less overly clever loading Crypt/Random" * terrafrost/biginteger-function-exists: BigInteger: "be less overly clever loading Crypt/Random"
This commit is contained in:
commit
eb12b347b7
@ -3066,8 +3066,7 @@ class Math_BigInteger
|
|||||||
*/
|
*/
|
||||||
function _random_number_helper($size)
|
function _random_number_helper($size)
|
||||||
{
|
{
|
||||||
$crypt_random = function_exists('crypt_random_string') || (!class_exists('Crypt_Random') && function_exists('crypt_random_string'));
|
if (function_exists('crypt_random_string')) {
|
||||||
if ($crypt_random) {
|
|
||||||
$random = crypt_random_string($size);
|
$random = crypt_random_string($size);
|
||||||
} else {
|
} else {
|
||||||
$random = '';
|
$random = '';
|
||||||
|
Loading…
Reference in New Issue
Block a user