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
|
|
|
|
*/
|
|
|
|
|
2019-11-06 23:41:40 -06:00
|
|
|
use phpseclib3\Crypt\Common\BlockCipher;
|
2014-12-16 16:16:54 -08:00
|
|
|
|
2020-12-12 15:11:04 -06:00
|
|
|
class Unit_Crypt_AES_PurePHPTest 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
|
|
|
{
|
2017-06-27 22:34:36 -05:00
|
|
|
$this->engine = 'PHP';
|
2014-08-14 10:03:01 -05:00
|
|
|
}
|
2014-08-14 10:31:57 -05:00
|
|
|
}
|