mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-10 07:40:58 +00:00
38 lines
977 B
PHP
38 lines
977 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_PHP64Test extends Unit_Math_BigInteger_TestCase
|
|
{
|
|
public static function setUpBeforeClass()
|
|
{
|
|
if (!PHP64::isValidEngine()) {
|
|
self::markTestSkipped('64-bit integers are not available.');
|
|
}
|
|
PHP64::setModExpEngine('DefaultEngine');
|
|
}
|
|
|
|
public function getInstance($x = 0, $base = 10)
|
|
{
|
|
return new PHP64($x, $base);
|
|
}
|
|
|
|
public function testInternalRepresentation()
|
|
{
|
|
$x = new PHP64('FFFFFFFFFFFFFFFFC90FDA', 16);
|
|
$y = new PHP64("$x");
|
|
|
|
$this->assertSame(self::getVar($x, 'value'), self::getVar($y, 'value'));
|
|
}
|
|
|
|
public static function getStaticClass()
|
|
{
|
|
return 'phpseclib\Math\BigInteger\Engines\PHP64';
|
|
}
|
|
}
|