phpseclib/tests/Unit/Crypt/AES/PurePHPTest.php
2022-07-02 16:26:15 -05:00

20 lines
367 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 PurePHPTest extends TestCase
{
protected function setUp(): void
{
$this->engine = 'PHP';
}
}