2014-11-29 14:39:21 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
|
2019-11-07 06:41:40 +01:00
|
|
|
use phpseclib3\Crypt\Common\BlockCipher;
|
2015-04-02 12:32:31 +02:00
|
|
|
|
2014-11-29 14:39:21 +01:00
|
|
|
class Unit_Crypt_AES_OpenSSLTest extends Unit_Crypt_AES_TestCase
|
|
|
|
{
|
|
|
|
protected function setUp()
|
|
|
|
{
|
2017-06-28 05:34:36 +02:00
|
|
|
$this->engine = 'OpenSSL';
|
2014-11-29 14:39:21 +01:00
|
|
|
}
|
|
|
|
}
|