Files
TwoFactorAuth/lib/Providers/Rng/IRNGProvider.php
T
2022-12-29 13:35:16 +01:00

13 lines
216 B
PHP

<?php
declare(strict_types=1);
namespace RobThree\Auth\Providers\Rng;
interface IRNGProvider
{
public function getRandomBytes(int $bytecount): string;
public function isCryptographicallySecure(): bool;
}