11 lines
160 B
PHP
11 lines
160 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace RobThree\Auth\Providers\Rng;
|
|
|
|
interface IRNGProvider
|
|
{
|
|
public function getRandomBytes(int $bytecount): string;
|
|
}
|