2014-08-14 15:03:01 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @author Andreas Fischer <bantu@phpbb.com>
|
2014-12-09 23:02:44 +00:00
|
|
|
* @copyright 2013 Andreas Fischer
|
2014-08-14 15:03:01 +00:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
|
|
*/
|
|
|
|
|
2014-12-17 00:16:54 +00:00
|
|
|
use phpseclib\Crypt\Base;
|
|
|
|
|
2014-08-14 15:03:01 +00:00
|
|
|
class Unit_Crypt_AES_InternalTest extends Unit_Crypt_AES_TestCase
|
|
|
|
{
|
2014-11-29 13:39:21 +00:00
|
|
|
protected function setUp()
|
2014-08-14 15:03:01 +00:00
|
|
|
{
|
2015-04-02 10:32:31 +00:00
|
|
|
$this->engine = Base::ENGINE_INTERNAL;
|
2014-08-14 15:03:01 +00:00
|
|
|
}
|
2014-08-14 15:31:57 +00:00
|
|
|
}
|