2014-08-14 10:03:01 -05:00
|
|
|
<?php
|
2022-02-16 20:25:59 -06:00
|
|
|
|
2014-08-14 10:03:01 -05:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
|
2022-02-22 20:48:51 -06:00
|
|
|
namespace phpseclib3\Tests\Unit\Crypt\AES;
|
2014-12-16 16:16:54 -08:00
|
|
|
|
2022-02-22 20:48:51 -06:00
|
|
|
class PurePHPTest extends 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
|
|
|
}
|