2016-12-08 15:20:19 +00:00
|
|
|
<?php
|
2022-02-17 02:25:59 +00:00
|
|
|
|
2016-12-08 15:20:19 +00: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 15:31:21 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2022-02-23 02:48:51 +00:00
|
|
|
namespace phpseclib3\Tests\Unit\Crypt\AES;
|
2016-12-08 15:20:19 +00:00
|
|
|
|
2022-02-23 02:48:51 +00:00
|
|
|
class EvalTest extends TestCase
|
2016-12-08 15:20:19 +00:00
|
|
|
{
|
2022-06-04 15:31:21 +00:00
|
|
|
protected function setUp(): void
|
2016-12-08 15:20:19 +00:00
|
|
|
{
|
2017-06-28 03:34:36 +00:00
|
|
|
$this->engine = 'Eval';
|
2016-12-08 15:20:19 +00:00
|
|
|
}
|
|
|
|
}
|