Home
last modified time | relevance | path

Searched refs:bitwise_xor (Results 1 – 6 of 6) sorted by last modified time

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP32.php229 public function bitwise_xor(PHP32 $x) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP32
H A DPHP64.php233 public function bitwise_xor(PHP64 $x) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP64
H A DBCMath.php354 public function bitwise_xor(BCMath $x) function in phpseclib3\\Math\\BigInteger\\Engines\\BCMath
H A DGMP.php377 public function bitwise_xor(GMP $x) function in phpseclib3\\Math\\BigInteger\\Engines\\GMP
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DHash.php1389 $s0 = $temp[0]->bitwise_xor($temp[1]);
1390 $s0 = $s0->bitwise_xor($temp[2]);
1396 $s1 = $temp[0]->bitwise_xor($temp[1]);
1397 $s1 = $s1->bitwise_xor($temp[2]);
1421 $s0 = $temp[0]->bitwise_xor($temp[1]);
1422 $s0 = $s0->bitwise_xor($temp[2]);
1428 $maj = $temp[0]->bitwise_xor($temp[1]);
1429 $maj = $maj->bitwise_xor($temp[2]);
1437 $s1 = $temp[0]->bitwise_xor($temp[1]);
1438 $s1 = $s1->bitwise_xor($temp[2]);
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php555 public function bitwise_xor(BigInteger $x) function in phpseclib3\\Math\\BigInteger
557 return new static($this->value->bitwise_xor($x->value));