/home/altere25/highwoodoutdoorpool.com/wp-includes/random_compat
NameSizeModeActions
byte_safe_strings.php59730644editdlrm
cast_to_int.php26300644editdlrm
error_polyfill.php16970644editdlrm
random.php76870644editdlrm
random_bytes_com_dotnet.php29030644editdlrm
random_bytes_dev_urandom.php54400644editdlrm
random_bytes_libsodium.php28360644editdlrm
random_bytes_libsodium_legacy.php28940644editdlrm
random_bytes_mcrypt.php25210644editdlrm
random_int.php62620644editdlrm
Edit: /home/altere25/highwoodoutdoorpool.com/wp-includes/random_compat/byte_safe_strings.php (5973B)
RandomCompat_strlen($binary_string)) { return ''; } return (string) mb_substr($binary_string, $start, $length, '8bit'); } } else { /** * substr() implementation that isn't brittle to mbstring.func_overload * * This version just uses the default substr() * * @param string $binary_string * @param int $start * @param int $length (optional) * * @throws TypeError * * @return string */ function RandomCompat_substr($binary_string, $start, $length = null) { if (!is_string($binary_string)) { throw new TypeError( 'RandomCompat_substr(): First argument should be a string' ); } if (!is_int($start)) { throw new TypeError( 'RandomCompat_substr(): Second argument should be an integer' ); } if ($length !== null) { if (!is_int($length)) { throw new TypeError( 'RandomCompat_substr(): Third argument should be an integer, or omitted' ); } return (string) substr($binary_string, $start, $length); } return (string) substr($binary_string, $start); } } }