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

21 lines
412 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_EvalTest extends Unit_Crypt_AES_TestCase
{
protected function setUp()
{
$this->engine = 'Eval';
}
}
class EvalTest extends Unit_Crypt_AES_EvalTest
{
}