VvebOIDC/plugins/two-factor-auth/system/lib/Providers/Rng/IRNGProvider.php

11 lines
160 B
PHP

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