Use /dev/urandom instead of /dev/random

The usage of /dev/urandom is enough secure
This commit is contained in:
Lukas Reschke 2012-10-15 19:21:37 +02:00
parent e49d5a5f9a
commit 9faae4b71c
1 changed files with 4 additions and 4 deletions

View File

@ -571,8 +571,8 @@ class OC_Util {
}
}
// Try to use /dev/random
$fp = @file_get_contents('/dev/random', false, null, 0, $length);
// Try to use /dev/urandom
$fp = @file_get_contents('/dev/urandom', false, null, 0, $length);
if ($fp !== FALSE) {
$string = substr(bin2hex($fp), 0, $length);
return $string;
@ -605,8 +605,8 @@ class OC_Util {
}
}
// Check /dev/random
$fp = @file_get_contents('/dev/random', false, null, 0, 1);
// Check /dev/urandom
$fp = @file_get_contents('/dev/urandom', false, null, 0, 1);
if ($fp !== FALSE) {
return true;
}