我要计算ciphertext=m(pow)e mod(n)
我在 phpseclib 中看到了这个例子:
<?php
include('Math/BigInteger.php');
$a = new Math_BigInteger(5);
$b = new Math_BigInteger(3);
$c = new Math_BigInteger(4);
echo $a->powMod($b, $c); // outputs 1 (eg. 125 % (4 * 31))
?>
谁能解释一下echo $a->powMod($b, $c);
?