Home
last modified time | relevance | path

Searched refs:emLen (Results 1 – 3 of 3) sorted by relevance

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRSA.php568 * @param int $emLen
572 protected function emsa_pkcs1_v1_5_encode($m, $emLen) argument
609 if ($emLen < $tLen + 11) {
613 $ps = str_repeat(chr(0xFF), $emLen - $tLen - 3);
632 * @param int $emLen
635 protected function emsa_pkcs1_v1_5_encode_without_null($m, $emLen) argument
669 if ($emLen < $tLen + 11) {
673 $ps = str_repeat(chr(0xFF), $emLen - $tLen - 3);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPublicKey.php238 $emLen = ($emBits + 7) >> 3; // ie. ceil($emBits / 8);
242 if ($emLen < $this->hLen + $sLen + 2) {
256 $dbMask = $this->mgf1($h, $emLen - $this->hLen - 1);
259 $temp = $emLen - $this->hLen - $sLen - 2;
H A DPrivateKey.php218 $emLen = ($emBits + 1) >> 3; // ie. ceil($emBits / 8)
222 if ($emLen < $this->hLen + $sLen + 2) {
229 $ps = str_repeat(chr(0), $emLen - $sLen - $this->hLen - 2);
231 $dbMask = $this->mgf1($h, $emLen - $this->hLen - 1); // ie. stlren($db)