2014-11-29 14:39:21 +01:00
|
|
|
<?php
|
2022-02-17 03:25:59 +01:00
|
|
|
|
2014-11-29 14:39:21 +01:00
|
|
|
/**
|
|
|
|
* @author Andreas Fischer <bantu@phpbb.com>
|
2015-04-02 12:32:31 +02:00
|
|
|
* @copyright 2013 Andreas Fischer
|
2014-11-29 14:39:21 +01:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
|
|
*/
|
|
|
|
|
2022-06-04 17:31:21 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2022-02-23 03:48:51 +01:00
|
|
|
namespace phpseclib3\Tests\Unit\Crypt\AES;
|
2015-04-02 12:32:31 +02:00
|
|
|
|
2022-02-23 03:48:51 +01:00
|
|
|
class OpenSSLTest extends TestCase
|
2014-11-29 14:39:21 +01:00
|
|
|
{
|
2022-06-04 17:31:21 +02:00
|
|
|
protected function setUp(): void
|
2014-11-29 14:39:21 +01:00
|
|
|
{
|
2017-06-28 05:34:36 +02:00
|
|
|
$this->engine = 'OpenSSL';
|
2014-11-29 14:39:21 +01:00
|
|
|
}
|
|
|
|
}
|