mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-10 07:40:58 +00:00
17 lines
359 B
PHP
17 lines
359 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 phpseclib\Crypt\Common\BlockCipher;
|
|
|
|
class Unit_Crypt_AES_EvalTest extends Unit_Crypt_AES_TestCase
|
|
{
|
|
protected function setUp()
|
|
{
|
|
$this->engine = 'Eval';
|
|
}
|
|
}
|