phpseclib/tests/Unit/Crypt/AES/PurePHPTest.php
2020-12-12 19:22:36 -06:00

21 lines
420 B
PHP

<?php
/**
* @author Andreas Fischer <bantu@phpbb.com>
* @copyright 2013 Andreas Fischer
* @license http://www.opensource.org/licenses/mit-license.html MIT License
*/
use phpseclib3\Crypt\Common\BlockCipher;
class Unit_Crypt_AES_PurePHPTest extends Unit_Crypt_AES_TestCase
{
protected function setUp()
{
$this->engine = 'PHP';
}
}
class PurePHPTest extends Unit_Crypt_AES_PurePHPTest
{
}