mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-01 17:10:02 +00:00
Update Random_Compat from 1.1.6 to 1.2.1.
Changes: https://github.com/paragonie/random_compat/compare/1.1.6...v1.2.1 See #35665. git-svn-id: https://develop.svn.wordpress.org/trunk@36886 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -48,12 +48,13 @@ function random_bytes($bytes)
|
||||
'random_bytes(): $bytes must be an integer'
|
||||
);
|
||||
}
|
||||
|
||||
if ($bytes < 1) {
|
||||
throw new Error(
|
||||
'Length must be greater than 0'
|
||||
);
|
||||
}
|
||||
$secure = true;
|
||||
|
||||
/**
|
||||
* $secure is passed by reference. If it's set to false, fail. Note
|
||||
* that this will only return false if this function fails to return
|
||||
@@ -61,12 +62,18 @@ function random_bytes($bytes)
|
||||
*
|
||||
* @ref https://github.com/paragonie/random_compat/issues/6#issuecomment-119564973
|
||||
*/
|
||||
$secure = true;
|
||||
$buf = openssl_random_pseudo_bytes($bytes, $secure);
|
||||
if ($buf !== false && $secure) {
|
||||
if (RandomCompat_strlen($buf) === $bytes) {
|
||||
return $buf;
|
||||
}
|
||||
if (
|
||||
$buf !== false
|
||||
&&
|
||||
$secure
|
||||
&&
|
||||
RandomCompat_strlen($buf) === $bytes
|
||||
) {
|
||||
return $buf;
|
||||
}
|
||||
|
||||
/**
|
||||
* If we reach here, PHP has failed us.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user