2014-11-29 07:39:21 -06:00
|
|
|
<?php
|
2022-02-16 20:25:59 -06:00
|
|
|
|
2014-11-29 07:39:21 -06:00
|
|
|
/**
|
|
|
|
* @author Andreas Fischer <bantu@phpbb.com>
|
2015-04-02 05:32:31 -05:00
|
|
|
* @copyright 2013 Andreas Fischer
|
2014-11-29 07:39:21 -06: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;
|
2015-04-02 05:32:31 -05:00
|
|
|
|
2022-02-22 20:48:51 -06:00
|
|
|
class OpenSSLTest extends TestCase
|
2014-11-29 07:39:21 -06:00
|
|
|
{
|
|
|
|
protected function setUp()
|
|
|
|
{
|
2017-06-27 22:34:36 -05:00
|
|
|
$this->engine = 'OpenSSL';
|
2014-11-29 07:39:21 -06:00
|
|
|
}
|
|
|
|
}
|