whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
SecureRandom
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/azjezz/psl/src/Psl/SecureRandom/int.php
<?php declare(strict_types=1); namespace Psl\SecureRandom; use Exception as PHPException; use Psl\Math; use Psl\Str; use function is_string; use function random_int; /** * Returns a cryptographically secure random integer in the given range. * * @throws Exception\InsufficientEntropyException If it was not possible to gather sufficient entropy. * @throws Exception\InvalidArgumentException If $min > $max. * * @psalm-external-mutation-free */ function int(int $min = Math\INT64_MIN, int $max = Math\INT64_MAX): int { if ($max < $min) { throw new Exception\InvalidArgumentException(Str\format('Expected $min (%d) to be less than or equal to $max (%d).', $min, $max)); } if ($min === $max) { return $min; } try { return random_int($min, $max); // @codeCoverageIgnoreStart } catch (PHPException $e) { $code = $e->getCode(); if (is_string($code)) { $code = Str\to_int($code) ?? 0; } throw new Exception\InsufficientEntropyException('Unable to gather sufficient entropy.', $code, $e); // @codeCoverageIgnoreEnd } }
Copyright ©2021 || Defacer Indonesia