77 lines
1.4 KiB
PHP
77 lines
1.4 KiB
PHP
<html>
|
|
<body BGCOLOR="#00E0E0" link="#001fC0" vlink="#000080" text="#00000f">
|
|
|
|
<?
|
|
// Find Primes From $i to $x
|
|
|
|
|
|
// if they put they parameters the wrong way round...
|
|
|
|
if ( $i > $x ) {
|
|
$t = $i;
|
|
$i = $x;
|
|
$x = $t;
|
|
}
|
|
|
|
|
|
$max_search = 2000000001;
|
|
|
|
$counter = 0;
|
|
if ( $i < $max_search && $x < $max_search && $x > 0 && $i > 0 ) {
|
|
for($i;$i<=$x;$i++) {
|
|
$f=sqrt($i);
|
|
for($z=1;$z<=$f;$z++) {
|
|
$y=$i%$z;
|
|
if($y==0)
|
|
$l++;
|
|
if($l>=2)
|
|
break;
|
|
}
|
|
if ($l<=1){
|
|
echo "$i ";
|
|
$b++;
|
|
}
|
|
$l=0;
|
|
}
|
|
}
|
|
else {
|
|
printf(" Parameter(s) with incorrect value. Use Values between 1 and %d",$max_search);
|
|
}
|
|
|
|
|
|
?>
|
|
|
|
<h3> Choose the prime numbers to use and then Cut and paste into the form </h3>
|
|
|
|
<form enctype="multipart/form-data" method="post"
|
|
action="generate_key.php#MUL">
|
|
|
|
<input type="hidden" name=m value=<? echo $m ?>>
|
|
<input type="hidden" name=e value=<? echo $e ?>>
|
|
<input type="hidden" name=npublic value=<? echo $npublic ?>>
|
|
<input type="hidden" name=nprivate value=<? echo $nprivate ?>>
|
|
<table>
|
|
<tr>
|
|
<td>
|
|
<strong>p</strong>
|
|
</td>
|
|
<td>
|
|
<input type=text name="p" cols=80 value="<? echo $p ?>" colspan=2>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
<strong>q</strong>
|
|
</td>
|
|
<td>
|
|
<input type=text name="q" cols=80 value="<? echo $q ?>" colspan=2>
|
|
</td>
|
|
</tr>
|
|
<tr><td><input type="submit" name="submit" value="Next"> </td></tr>
|
|
</table>
|
|
|
|
</form>
|
|
</body>
|
|
</html>
|