2014-08-14 10:03:01 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @author Andreas Fischer <bantu@phpbb.com>
|
2014-12-10 00:02:44 +01:00
|
|
|
* @copyright 2013 Andreas Fischer
|
2014-08-14 10:03:01 -05:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
|
|
*/
|
|
|
|
|
2014-08-14 11:09:54 -05:00
|
|
|
class Unit_Crypt_AES_McryptTest extends Unit_Crypt_AES_TestCase
|
2014-08-14 10:03:01 -05:00
|
|
|
{
|
2014-11-29 07:39:21 -06:00
|
|
|
protected function setUp()
|
2014-08-14 10:03:01 -05:00
|
|
|
{
|
2014-11-29 07:39:21 -06:00
|
|
|
$this->engine = CRYPT_MODE_MCRYPT;
|
2014-08-14 10:03:01 -05:00
|
|
|
}
|
2014-08-14 10:31:57 -05:00
|
|
|
}
|