1
0
mirror of https://github.com/danog/phpseclib.git synced 2024-12-12 17:17:26 +01:00
phpseclib/tests/Unit/Math/BigInteger/GMPTest.php

33 lines
769 B
PHP
Raw Normal View History

<?php
2022-02-17 03:25:59 +01:00
/**
* @author Andreas Fischer <bantu@phpbb.com>
* @copyright 2013 Andreas Fischer
* @license http://www.opensource.org/licenses/mit-license.html MIT License
*/
namespace phpseclib3\Tests\Unit\Math\BigInteger;
2022-01-30 16:34:42 +01:00
use phpseclib3\Math\BigInteger\Engines\GMP;
class GMPTest extends TestCase
{
2015-07-15 03:52:31 +02:00
public static function setUpBeforeClass()
{
if (!GMP::isValidEngine()) {
self::markTestSkipped('GNU Multiple Precision (GMP) extension is not available.');
}
GMP::setModExpEngine('DefaultEngine');
}
public function getInstance($x = 0, $base = 10)
{
return new GMP($x, $base);
}
public static function getStaticClass()
{
return 'phpseclib3\Math\BigInteger\Engines\GMP';
}
}