1
0
mirror of https://github.com/phpseclib/phpseclib.git synced 2025-01-25 08:08:39 +00:00

15 lines
337 B
PHP
Raw Normal View History

<?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_ENGINE_OPENSSL;
}
}