Fixed incorrect usage of openssl_random_pseudo_bytes in garbage.php
This commit is contained in:
parent
d9c320aee4
commit
858bfe61a1
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
|
||||||
header("Cache-Control: post-check=0, pre-check=0", false);
|
header("Cache-Control: post-check=0, pre-check=0", false);
|
||||||
header("Pragma: no-cache");
|
header("Pragma: no-cache");
|
||||||
// Generate data
|
// Generate data
|
||||||
$data=openssl_random_pseudo_bytes(1048576,false);
|
$data=openssl_random_pseudo_bytes(1048576);
|
||||||
// Deliver chunks of 1048576 bytes
|
// Deliver chunks of 1048576 bytes
|
||||||
while(1){
|
while(1){
|
||||||
echo $data;
|
echo $data;
|
||||||
|
|
Loading…
Reference in a new issue