Submit
Path:
~
/
/
usr
/
local
/
psa
/
admin
/
plib
/
modules
/
wp-toolkit
/
vendor
/
hackzilla
/
password-generator
/
RandomGenerator
/
File Content:
Php5RandomGenerator.php
<?php namespace WPToolkitDependenciesIsolationPrefix\Hackzilla\PasswordGenerator\RandomGenerator; /** * Class Php5RandomGenerator. */ class Php5RandomGenerator implements RandomGeneratorInterface { /** * This function does not generate cryptographically secure values, and should not be used for cryptographic purposes. * However this is the best PHP5.3 offers. * * @param int $min * @param int $max * * @return int */ public function randomInteger($min, $max) { return \mt_rand($min, $max); } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
INFO
Name
Size
Permission
Action
NoRandomGenerator.php
428 bytes
0644
Php5RandomGenerator.php
564 bytes
0644
Php7RandomGenerator.php
567 bytes
0644
RandomGeneratorInterface.php
428 bytes
0644
N4ST4R_ID | Naxtarrr