mirror of
https://github.com/RobThree/TwoFactorAuth.git
synced 2026-08-24 10:36:33 +00:00
13 lines
216 B
PHP
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;
|
|
}
|