2014-08-14 17:03:01 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @author Andreas Fischer <bantu@phpbb.com>
|
|
|
|
* @copyright MMXIII Andreas Fischer
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
|
|
*/
|
|
|
|
|
2014-08-14 18:09:54 +02:00
|
|
|
class Unit_Crypt_AES_McryptTest extends Unit_Crypt_AES_TestCase
|
2014-08-14 17:03:01 +02:00
|
|
|
{
|
|
|
|
static public function setUpBeforeClass()
|
|
|
|
{
|
2014-08-15 16:23:55 +02:00
|
|
|
if (!extension_loaded('mcrypt')) {
|
|
|
|
self::markTestSkipped('mcrypt extension is not available.');
|
|
|
|
}
|
|
|
|
|
2014-10-16 00:59:48 +02:00
|
|
|
self::$engine = CRYPT_MODE_MCRYPT;
|
2014-08-14 17:03:01 +02:00
|
|
|
|
2014-10-16 00:59:48 +02:00
|
|
|
parent::setUpBeforeClass();
|
2014-08-14 17:03:01 +02:00
|
|
|
}
|
2014-08-14 17:31:57 +02:00
|
|
|
}
|