2016-12-08 09:20:19 -06:00
|
|
|
<?php
|
2022-02-16 20:25:59 -06:00
|
|
|
|
2016-12-08 09:20:19 -06:00
|
|
|
/**
|
|
|
|
* @author Andreas Fischer <bantu@phpbb.com>
|
|
|
|
* @copyright 2013 Andreas Fischer
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
|
|
*/
|
|
|
|
|
2022-06-04 10:31:21 -05:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2022-02-22 20:48:51 -06:00
|
|
|
namespace phpseclib3\Tests\Unit\Crypt\AES;
|
2016-12-08 09:20:19 -06:00
|
|
|
|
2022-02-22 20:48:51 -06:00
|
|
|
class EvalTest extends TestCase
|
2016-12-08 09:20:19 -06:00
|
|
|
{
|
2022-06-04 10:31:21 -05:00
|
|
|
protected function setUp(): void
|
2016-12-08 09:20:19 -06:00
|
|
|
{
|
2017-06-27 22:34:36 -05:00
|
|
|
$this->engine = 'Eval';
|
2016-12-08 09:20:19 -06:00
|
|
|
}
|
|
|
|
}
|