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
|
|
|
|
{
|
|
|
|
static public function setUpBeforeClass()
|
|
|
|
{
|
|
|
|
parent::setUpBeforeClass();
|
|
|
|
|
2014-12-17 00:16:54 +00:00
|
|
|
self::ensureConstant('CRYPT_AES_MODE', Base::ENGINE_INTERNAL);
|
|
|
|
self::ensureConstant('CRYPT_RIJNDAEL_MODE', Base::ENGINE_INTERNAL);
|
2014-08-14 15:03:01 +00:00
|
|
|
}
|
2014-08-14 15:31:57 +00:00
|
|
|
}
|