phpseclib/tests/Unit/Crypt/AES/McryptTest.php

17 lines
360 B
PHP
Raw Normal View History

<?php
/**
* @author Andreas Fischer <bantu@phpbb.com>
* @copyright 2013 Andreas Fischer
* @license http://www.opensource.org/licenses/mit-license.html MIT License
*/
2014-12-17 00:16:54 +00:00
use phpseclib\Crypt\Base;
2014-08-14 16:09:54 +00:00
class Unit_Crypt_AES_McryptTest extends Unit_Crypt_AES_TestCase
{
protected function setUp()
{
$this->engine = Base::ENGINE_MCRYPT;
}
}