2014-11-29 13:39:21 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @author Andreas Fischer <bantu@phpbb.com>
|
2015-04-02 10:32:31 +00:00
|
|
|
* @copyright 2013 Andreas Fischer
|
2014-11-29 13:39:21 +00:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
|
|
*/
|
|
|
|
|
2016-07-31 03:18:06 +00:00
|
|
|
use phpseclib\Crypt\Common\BlockCipher;
|
2015-04-02 10:32:31 +00:00
|
|
|
|
2014-11-29 13:39:21 +00:00
|
|
|
class Unit_Crypt_AES_OpenSSLTest extends Unit_Crypt_AES_TestCase
|
|
|
|
{
|
|
|
|
protected function setUp()
|
|
|
|
{
|
2016-07-31 03:18:06 +00:00
|
|
|
$this->engine = BlockCipher::ENGINE_OPENSSL;
|
2014-11-29 13:39:21 +00:00
|
|
|
}
|
|
|
|
}
|