Files
2026-01-01 10:54:18 +01:00

11 lines
160 B
PHP

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