We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd1ce2c commit ea25001Copy full SHA for ea25001
1 file changed
backend/garbage.php
@@ -53,11 +53,7 @@ function sendHeaders()
53
$chunks = getChunkCount();
54
55
// Generate data
56
-if (function_exists('random_bytes')) {
57
- $data = random_bytes(1048576);
58
-} else {
59
- $data = openssl_random_pseudo_bytes(1048576);
60
-}
+$data = openssl_random_pseudo_bytes(1048576);
61
62
// Deliver chunks of 1048576 bytes
63
sendHeaders();
0 commit comments