mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-11 08:10:58 +00:00
15 lines
335 B
PHP
15 lines
335 B
PHP
|
<?php
|
||
|
/**
|
||
|
* @author Andreas Fischer <bantu@phpbb.com>
|
||
|
* @copyright MMXIII Andreas Fischer
|
||
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||
|
*/
|
||
|
|
||
|
class Unit_Crypt_AES_OpenSSLTest extends Unit_Crypt_AES_TestCase
|
||
|
{
|
||
|
protected function setUp()
|
||
|
{
|
||
|
$this->engine = CRYPT_MODE_OPENSSL;
|
||
|
}
|
||
|
}
|