File ManagerCurrent Directory: wp-content/plugins/backwpup/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMathLinux appserver-0d5e4f1e-php-cc8da225320a42ba9b7d66cba40b1f03 6.6.123+ #1 SMP PREEMPT_DYNAMIC Wed Mar 11 09:04:28 UTC 2026 x86_64Edit File: BuiltIn.php <?php /** * Built-In BCMath Modular Exponentiation Engine * * PHP version 5 and 7 * * @author Jim Wigginton <terrafrost@php.net> * @copyright 2017 Jim Wigginton * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link http://pear.php.net/package/Math_BigInteger */ namespace phpseclib3\Math\BigInteger\Engines\BCMath; use phpseclib3\Math\BigInteger\Engines\BCMath; /** * Built-In BCMath Modular Exponentiation Engine * * @author Jim Wigginton <terrafrost@php.net> */ abstract class BuiltIn extends BCMath { /** * Performs modular exponentiation. * * @param BCMath $x * @param BCMath $e * @param BCMath $n * @return BCMath */ protected static function powModHelper(BCMath $x, BCMath $e, BCMath $n) { $temp = new BCMath(); $temp->value = bcpowmod($x->value, $e->value, $n->value); return $x->normalize($temp); } } Upload File Directory Listing NameTypeSizeActions.. (Parent Directory)DirBase.phpFile2.35 KB Rename | Delete | EditBuiltIn.phpFile943.00 B Rename | Delete | EditDefaultEngine.phpFile585.00 B Rename | Delete | EditOpenSSL.phpFile567.00 B Rename | Delete | EditReductionsDirectory Rename | Delete