2014-08-14 15:03:01 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @author Andreas Fischer <bantu@phpbb.com>
|
|
|
|
* @copyright MMXIII Andreas Fischer
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
|
|
*/
|
|
|
|
|
|
|
|
class Unit_Crypt_AES_InternalTest extends Unit_Crypt_AES_TestCase
|
|
|
|
{
|
|
|
|
static public function setUpBeforeClass()
|
|
|
|
{
|
|
|
|
parent::setUpBeforeClass();
|
|
|
|
|
|
|
|
self::ensureConstant('CRYPT_AES_MODE', CRYPT_AES_MODE_INTERNAL);
|
2014-08-14 16:27:27 +00:00
|
|
|
self::ensureConstant('CRYPT_RIJNDAEL_MODE', CRYPT_RIJNDAEL_MODE_INTERNAL);
|
2014-08-14 15:03:01 +00:00
|
|
|
}
|
2014-08-14 15:31:57 +00:00
|
|
|
}
|