mirror of
https://github.com/danog/phpseclib.git
synced 2024-12-13 09:37:37 +01:00
17 lines
377 B
PHP
17 lines
377 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 = BlockCipher::ENGINE_EVAL;
|
||
|
}
|
||
|
}
|