File "RandomNumberGeneratorInterface.php"
Full Path: /home/digidjwy/public_html/wp-content/plugins/mycryptocheckout/vendor/mdanter/ecc/src/Random/RandomNumberGeneratorInterface.php
File size: 273 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Mdanter\Ecc\Random;
interface RandomNumberGeneratorInterface
{
/**
* Generate a random number between 0 and the specified upper boundary.
*
* @param \GMP $max Upper boundary, inclusive
*/
public function generate(\GMP $max);
}