for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Jose\Component\Core\Util\Ecc\Random;
use Jose\Component\Core\Util\Ecc\Math\MathAdapterFactory;
final class RandomGeneratorFactory
{
/**
* @return RandomNumberGenerator
*/
public static function getRandomGenerator()
return new RandomNumberGenerator(
MathAdapterFactory::getAdapter()
);
}