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

17 lines
389 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_InternalTest extends Unit_Crypt_AES_TestCase
{
static public function setUpBeforeClass()
{
2014-10-15 22:59:48 +00:00
self::$engine = CRYPT_MODE_INTERNAL;
2014-10-15 22:59:48 +00:00
parent::setUpBeforeClass();
}
}