Revert "Use random_bytes when available (#487)"

This reverts commit fa0ac8cd23.
This commit is contained in:
Yuping Zuo 2024-05-05 22:25:19 +08:00 committed by GitHub
parent dd1ce2cb88
commit ea25001e42
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -53,11 +53,7 @@ function sendHeaders()
$chunks = getChunkCount();
// Generate data
if (function_exists('random_bytes')) {
$data = random_bytes(1048576);
} else {
$data = openssl_random_pseudo_bytes(1048576);
}
$data = openssl_random_pseudo_bytes(1048576);
// Deliver chunks of 1048576 bytes
sendHeaders();