mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-06 05:27:52 +00:00
17 lines
362 B
PHP
17 lines
362 B
PHP
<?php
|
|
/**
|
|
* @author Andreas Fischer <bantu@phpbb.com>
|
|
* @copyright 2013 Andreas Fischer
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
*/
|
|
|
|
use phpseclib3\Crypt\Common\BlockCipher;
|
|
|
|
class Unit_Crypt_AES_PurePHPTest extends Unit_Crypt_AES_TestCase
|
|
{
|
|
protected function setUp()
|
|
{
|
|
$this->engine = 'PHP';
|
|
}
|
|
}
|