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
|
|
|
|
*/
|
|
|
|
|
2016-07-31 05:18:06 +02:00
|
|
|
use phpseclib\Crypt\Common\BlockCipher;
|
2014-12-17 01:16:54 +01:00
|
|
|
|
2014-08-14 17:03:01 +02:00
|
|
|
class Unit_Crypt_AES_InternalTest extends Unit_Crypt_AES_TestCase
|
|
|
|
{
|
2014-11-29 14:39:21 +01:00
|
|
|
protected function setUp()
|
2014-08-14 17:03:01 +02:00
|
|
|
{
|
2017-06-28 05:34:36 +02:00
|
|
|
$this->engine = 'PHP';
|
2014-08-14 17:03:01 +02:00
|
|
|
}
|
2014-08-14 17:31:57 +02:00
|
|
|
}
|