mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-06 05:27:52 +00:00
23 lines
616 B
PHP
23 lines
616 B
PHP
<?php
|
|
/**
|
|
* @author Andreas Fischer <bantu@phpbb.com>
|
|
* @copyright 2013 Andreas Fischer
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
*/
|
|
|
|
use \phpseclib\Math\BigInteger\Engines\PHP64;
|
|
|
|
class Unit_Math_BigInteger_PHP64OpenSSLTest extends Unit_Math_BigInteger_PHP64Test
|
|
{
|
|
public static function setUpBeforeClass()
|
|
{
|
|
parent::setUpBeforeClass();
|
|
|
|
try {
|
|
PHP64::setModExpEngine('OpenSSL');
|
|
} catch (BadConfigurationException $e) {
|
|
self::markTestSkipped('openssl_public_encrypt() function is not available.');
|
|
}
|
|
}
|
|
}
|