2021-02-26 16:16:17 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Safe;
|
|
|
|
|
|
|
|
use Safe\Exceptions\GmpException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @param \GMP|string|int $seed The seed to be set for the gmp_random,
|
|
|
|
* gmp_random_bits, and
|
|
|
|
* gmp_random_range functions.
|
|
|
|
*
|
2022-07-12 19:26:21 +00:00
|
|
|
* A GMP object, an integer or a numeric string.
|
2021-02-26 16:16:17 +00:00
|
|
|
* @throws GmpException
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
function gmp_random_seed($seed): void
|
|
|
|
{
|
|
|
|
error_clear_last();
|
|
|
|
$result = \gmp_random_seed($seed);
|
|
|
|
if ($result === false) {
|
|
|
|
throw GmpException::createFromPhpError();
|
|
|
|
}
|
|
|
|
}
|