gitextract_e6ndeywn/ ├── .gitattributes ├── .github/ │ └── workflows/ │ ├── ci.yml │ └── psalm.yml ├── .gitignore ├── .scrutinizer.yml ├── CHANGELOG.md ├── LICENSE ├── RATIONALE.md ├── README.md ├── SECURITY.md ├── build-phar.sh ├── composer.json ├── dist/ │ ├── random_compat.phar.pubkey │ └── random_compat.phar.pubkey.asc ├── lib/ │ ├── byte_safe_strings.php │ ├── cast_to_int.php │ ├── error_polyfill.php │ ├── random.php │ ├── random_bytes_com_dotnet.php │ ├── random_bytes_dev_urandom.php │ ├── random_bytes_libsodium.php │ ├── random_bytes_libsodium_legacy.php │ ├── random_bytes_mcrypt.php │ └── random_int.php ├── other/ │ ├── build_phar.php │ ├── ide_stubs/ │ │ ├── COM.php │ │ ├── README.md │ │ ├── com_exception.php │ │ └── libsodium.php │ └── phpunit-shim.php ├── phpunit-autoload.php ├── phpunit.sh ├── phpunit.xml.dist ├── psalm-autoload.php ├── psalm.xml └── tests/ ├── full/ │ ├── DieHardTest.php │ └── StatTest.php ├── specific/ │ ├── capicom.php │ ├── dev_urandom.php │ ├── libsodium.php │ ├── libsodium_legacy.php │ └── mcrypt.php ├── unit/ │ ├── RandomBytesTest.php │ ├── RandomIntTest.php │ └── UtilityTest.php └── unit_with_basedir/ ├── RandomBytesTest.php ├── RandomIntTest.php └── UtilityTest.php