mirror of
https://github.com/phpseclib/phpseclib.git
synced 2025-01-29 18:18:39 +00:00
Merge branch '3.0'
This commit is contained in:
commit
b9e27cd910
23
tests/Unit/Math/PrimeFieldTest.php
Normal file
23
tests/Unit/Math/PrimeFieldTest.php
Normal 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();
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user