Home
last modified time | relevance | path

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

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPrivateKey.php205 $sLen = $this->sLen !== null ? $this->sLen : $this->hLen;
208 if ($emLen < $this->hLen + $sLen + 2) {
212 $salt = Random::string($sLen);
215 $ps = str_repeat(chr(0), $emLen - $sLen - $this->hLen - 2);
474 ->withSaltLength($this->sLen)
H A DPublicKey.php232 $sLen = $this->sLen !== null ? $this->sLen : $this->hLen;
235 if ($emLen < $this->hLen + $sLen + 2) {
252 $temp = $emLen - $this->hLen - $sLen - 2;
558 ->withSaltLength($this->sLen)
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRSA.php172 protected $sLen; variable in phpseclib3\\Crypt\\RSA
805 * @param int $sLen
807 public function withSaltLength($sLen) argument
810 $new->sLen = $sLen;
820 return $this->sLen !== null ? $this->sLen : $this->hLen;