mirror of
https://github.com/danog/phpseclib.git
synced 2024-12-04 02:28:06 +01:00
16 lines
414 B
PHP
16 lines
414 B
PHP
|
<?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_mcryptTest extends Unit_Crypt_AES_mcryptCase
|
||
|
{
|
||
|
static public function setUpBeforeClass()
|
||
|
{
|
||
|
parent::setUpBeforeClass();
|
||
|
|
||
|
self::ensureConstant('CRYPT_AES_MODE', CRYPT_AES_MODE_MCRYPT);
|
||
|
}
|
||
|
}
|