2014-08-14 17:03:01 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @author Andreas Fischer <bantu@phpbb.com>
|
2014-12-10 00:02:44 +01:00
|
|
|
* @copyright 2013 Andreas Fischer
|
2014-08-14 17:03:01 +02:00
|
|
|
* @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
|
|
|
{
|
2014-11-29 14:39:21 +01:00
|
|
|
protected function setUp()
|
2014-08-14 17:03:01 +02:00
|
|
|
{
|
2014-12-13 21:34:48 +01:00
|
|
|
$this->engine = CRYPT_ENGINE_MCRYPT;
|
2014-08-14 17:03:01 +02:00
|
|
|
}
|
2014-08-14 17:31:57 +02:00
|
|
|
}
|