open_baseir
check.openssl_random_pseudo_bytes()
entirely. If you are using
random_compat in PHP on a Unix-like OS but cannot access
/dev/urandom
, version 1.3+ will throw an Exception
. If you want to
trust OpenSSL, feel free to write your own fallback code. e.g.try {
$bytes = random_bytes(32);
} catch (Exception $ex) {
$strong = false;
$bytes = openssl_random_pseudo_bytes(32, $strong);
if (!$strong) {
throw $ex;
}
}
sudo dnf upgrade --advisory=FEDORA-2016-e4a54efa7f
Please login to add feedback.
This update has been submitted for testing by siwinski.
This update has been pushed to testing.
This update has reached 7 days in testing and can be pushed to stable now if the maintainer wishes
This update has been submitted for stable by siwinski.
This update has been pushed to stable.