Files
TwoFactorAuth/lib/Providers/Rng/IRNGProvider.php
T
Nicolas CARPi aeb4b00c60 first batch
2022-12-07 22:28:52 +01:00

11 lines
190 B
PHP

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