mirror of
https://github.com/danog/tgseclib.git
synced 2024-12-02 17:48:00 +01:00
63 lines
1.4 KiB
PHP
63 lines
1.4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* PHP Power of Two Modular Exponentiation Engine
|
|
*
|
|
* PHP version 5 and 7
|
|
*
|
|
* @category Math
|
|
* @package BigInteger
|
|
* @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 phpseclib\Math\BigInteger\Engines\PHP\Reductions;
|
|
|
|
use phpseclib\Math\BigInteger\Engines\PHP\Base;
|
|
|
|
/**
|
|
* PHP Power Of Two Modular Exponentiation Engine
|
|
*
|
|
* @package PHP
|
|
* @author Jim Wigginton <terrafrost@php.net>
|
|
* @access public
|
|
*/
|
|
abstract class PowerOfTwo extends Base
|
|
{
|
|
/**
|
|
* Prepare a number for use in Montgomery Modular Reductions
|
|
*
|
|
* @param array $x
|
|
* @param array $n
|
|
* @param string $class
|
|
* @return array
|
|
*/
|
|
protected static function prepareReduce(array $x, array $n, $class)
|
|
{
|
|
return self::reduce($x, $n, $class);
|
|
}
|
|
|
|
/**
|
|
* Power Of Two Reduction
|
|
*
|
|
* @param array $x
|
|
* @param array $n
|
|
* @param string $class
|
|
* @return array
|
|
*/
|
|
protected static function reduce(array $x, array $n, $class)
|
|
{
|
|
$lhs = new $class();
|
|
$lhs->value = $x;
|
|
$rhs = new $class();
|
|
$rhs->value = $n;
|
|
|
|
$temp = new $class();
|
|
$temp->value = [1];
|
|
|
|
$result = $lhs->bitwise_and($rhs->subtract($temp));
|
|
return $result->value;
|
|
}
|
|
} |