mirror of
https://github.com/danog/phpseclib.git
synced 2024-12-02 09:38:06 +01:00
add unit test for primefield infinite loop
This commit is contained in:
parent
0f6e1c2218
commit
cee5587120
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…
Reference in New Issue
Block a user