mirror of
https://github.com/librespeed/speedtest.git
synced 2026-08-04 06:39:45 +00:00
Use random_bytes when available (#487)
This commit is contained in:
parent
2f19331378
commit
fa0ac8cd23
1 changed files with 5 additions and 1 deletions
|
|
@ -53,7 +53,11 @@ function sendHeaders()
|
|||
$chunks = getChunkCount();
|
||||
|
||||
// Generate data
|
||||
$data = openssl_random_pseudo_bytes(1048576);
|
||||
if (function_exists('random_bytes')) {
|
||||
$data = random_bytes(1048576);
|
||||
} else {
|
||||
$data = openssl_random_pseudo_bytes(1048576);
|
||||
}
|
||||
|
||||
// Deliver chunks of 1048576 bytes
|
||||
sendHeaders();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue