2013-01-12 01:57:21 +00:00
|
|
|
<?php
|
2022-02-17 02:25:59 +00:00
|
|
|
|
2013-01-12 01:57:21 +00:00
|
|
|
/**
|
2014-02-15 18:57:49 +00:00
|
|
|
* @author Andreas Fischer <bantu@phpbb.com>
|
2014-12-09 23:02:44 +00:00
|
|
|
* @copyright 2013 Andreas Fischer
|
2014-02-15 18:57:49 +00:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2013-01-12 01:57:21 +00:00
|
|
|
*/
|
|
|
|
|
2022-02-23 02:48:51 +00:00
|
|
|
namespace phpseclib3\Tests\Unit\Math\BigInteger;
|
|
|
|
|
2022-01-30 15:34:42 +00:00
|
|
|
use phpseclib3\Math\BigInteger\Engines\BCMath;
|
2017-06-25 16:02:54 +00:00
|
|
|
|
2022-02-23 02:48:51 +00:00
|
|
|
class BCMathTest extends TestCase
|
2013-01-12 01:57:21 +00:00
|
|
|
{
|
2015-07-15 01:52:31 +00:00
|
|
|
public static function setUpBeforeClass()
|
2014-02-15 18:57:49 +00:00
|
|
|
{
|
2017-06-25 16:02:54 +00:00
|
|
|
if (!BCMath::isValidEngine()) {
|
2014-02-15 18:57:49 +00:00
|
|
|
self::markTestSkipped('BCMath extension is not available.');
|
|
|
|
}
|
2017-06-25 16:02:54 +00:00
|
|
|
BCMath::setModExpEngine('DefaultEngine');
|
|
|
|
}
|
2013-01-12 02:07:41 +00:00
|
|
|
|
2017-06-25 16:02:54 +00:00
|
|
|
public function getInstance($x = 0, $base = 10)
|
|
|
|
{
|
|
|
|
return new BCMath($x, $base);
|
|
|
|
}
|
2013-01-12 20:22:01 +00:00
|
|
|
|
2017-06-25 16:02:54 +00:00
|
|
|
public static function getStaticClass()
|
|
|
|
{
|
2019-11-07 05:41:40 +00:00
|
|
|
return 'phpseclib3\Math\BigInteger\Engines\BCMath';
|
2014-02-15 18:57:49 +00:00
|
|
|
}
|
2013-01-12 01:57:21 +00:00
|
|
|
}
|