posts/plugins/login/vendor/robthree/twofactorauth/lib/Providers/Rng/CSRNGProvider.php

23 lines
363 B
PHP

<?php
namespace RobThree\Auth\Providers\Rng;
class CSRNGProvider implements IRNGProvider
{
/**
* {@inheritdoc}
*/
public function getRandomBytes($bytecount)
{
return random_bytes($bytecount); // PHP7+
}
/**
* {@inheritdoc}
*/
public function isCryptographicallySecure()
{
return true;
}
}