2014-08-14 15:03:01 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @author Andreas Fischer <bantu@phpbb.com>
|
2014-12-09 23:02:44 +00:00
|
|
|
* @copyright 2013 Andreas Fischer
|
2014-08-14 15:03:01 +00:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
|
|
*/
|
|
|
|
|
2019-11-07 05:41:40 +00:00
|
|
|
use phpseclib3\Crypt\Common\BlockCipher;
|
2014-12-17 00:16:54 +00:00
|
|
|
|
2020-12-12 21:11:04 +00:00
|
|
|
class Unit_Crypt_AES_PurePHPTest extends Unit_Crypt_AES_TestCase
|
2014-08-14 15:03:01 +00:00
|
|
|
{
|
2014-11-29 13:39:21 +00:00
|
|
|
protected function setUp()
|
2014-08-14 15:03:01 +00:00
|
|
|
{
|
2017-06-28 03:34:36 +00:00
|
|
|
$this->engine = 'PHP';
|
2014-08-14 15:03:01 +00:00
|
|
|
}
|
2014-08-14 15:31:57 +00:00
|
|
|
}
|