mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-09 07:10:57 +00:00
22 lines
560 B
PHP
22 lines
560 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 Math_BigInteger_InternalOpenSSLTest extends Math_BigInteger_TestCase
|
||
|
{
|
||
|
static public function setUpBeforeClass()
|
||
|
{
|
||
|
if (!function_exists('openssl_public_encrypt'))
|
||
|
{
|
||
|
self::markTestSkipped('openssl_public_encrypt() function is not available.');
|
||
|
}
|
||
|
|
||
|
parent::setUpBeforeClass();
|
||
|
|
||
|
self::ensureConstant('MATH_BIGINTEGER_MODE', MATH_BIGINTEGER_MODE_INTERNAL);
|
||
|
}
|
||
|
}
|