Merge branch '3.0'

This commit is contained in:
terrafrost 2023-03-05 11:09:48 -06:00
commit b9e27cd910
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
<?php
namespace phpseclib3\Tests\Unit\Math;
use phpseclib3\Math\BigInteger;
use phpseclib3\Math\PrimeField;
use phpseclib3\Tests\PhpseclibTestCase;
class PrimeFieldTest extends PhpseclibTestCase
{
public function testPrimeFieldWithCompositeNumbers()
{
$this->expectException('UnexpectedValueException');
$a = new BigInteger('65', 10);
$p = new BigInteger('126', 10); // 126 isn't a prime
$num = new PrimeField($p);
$num2 = $num->newInteger($a);
echo $num2->squareRoot();
}
}