mirror of
https://github.com/RobThree/TwoFactorAuth.git
synced 2026-08-18 03:31:49 +00:00
11 lines
190 B
PHP
11 lines
190 B
PHP
<?php
|
|
|
|
namespace RobThree\Auth\Providers\Rng;
|
|
|
|
interface IRNGProvider
|
|
{
|
|
public function getRandomBytes(int $bytecount): string;
|
|
|
|
public function isCryptographicallySecure(): bool;
|
|
}
|