mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-15 09:54:10 +00:00
20 lines
365 B
PHP
20 lines
365 B
PHP
<?php
|
|
|
|
/**
|
|
* @author Andreas Fischer <bantu@phpbb.com>
|
|
* @copyright 2013 Andreas Fischer
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace phpseclib3\Tests\Unit\Crypt\AES;
|
|
|
|
class EvalTest extends TestCase
|
|
{
|
|
protected function setUp(): void
|
|
{
|
|
$this->engine = 'Eval';
|
|
}
|
|
}
|