├── LICENSE ├── 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 /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/random_compat/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/random_compat/HEAD/composer.json -------------------------------------------------------------------------------- /dist/random_compat.phar.pubkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/random_compat/HEAD/dist/random_compat.phar.pubkey -------------------------------------------------------------------------------- /dist/random_compat.phar.pubkey.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/random_compat/HEAD/dist/random_compat.phar.pubkey.asc -------------------------------------------------------------------------------- /lib/byte_safe_strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/random_compat/HEAD/lib/byte_safe_strings.php -------------------------------------------------------------------------------- /lib/cast_to_int.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/random_compat/HEAD/lib/cast_to_int.php -------------------------------------------------------------------------------- /lib/error_polyfill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/random_compat/HEAD/lib/error_polyfill.php -------------------------------------------------------------------------------- /lib/random.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/random_compat/HEAD/lib/random.php -------------------------------------------------------------------------------- /lib/random_bytes_com_dotnet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/random_compat/HEAD/lib/random_bytes_com_dotnet.php -------------------------------------------------------------------------------- /lib/random_bytes_dev_urandom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/random_compat/HEAD/lib/random_bytes_dev_urandom.php -------------------------------------------------------------------------------- /lib/random_bytes_libsodium.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/random_compat/HEAD/lib/random_bytes_libsodium.php -------------------------------------------------------------------------------- /lib/random_bytes_libsodium_legacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/random_compat/HEAD/lib/random_bytes_libsodium_legacy.php -------------------------------------------------------------------------------- /lib/random_bytes_mcrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/random_compat/HEAD/lib/random_bytes_mcrypt.php -------------------------------------------------------------------------------- /lib/random_int.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/random_compat/HEAD/lib/random_int.php --------------------------------------------------------------------------------