mirror of
https://github.com/RobThree/TwoFactorAuth.git
synced 2026-08-17 09:02:45 +00:00
10 lines
167 B
PHP
10 lines
167 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace Tests\Providers\Rng;
|
|
|
|
trait NeedsRngLengths
|
|
{
|
|
/** @var array */
|
|
protected $rngTestLengths = array(1, 16, 32, 256);
|
|
}
|