Home
last modified time | relevance | path

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

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
DRSA.php171 protected $sLen; variable in phpseclib3\\Crypt\\RSA
783 * @param int $sLen
785 public function withSaltLength($sLen) argument
788 $new->sLen = $sLen;
798 return $this->sLen !== null ? $this->sLen : $this->hLen;
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
DPublicKey.php231 $sLen = $this->sLen !== null ? $this->sLen : $this->hLen;
234 if ($emLen < $this->hLen + $sLen + 2) {
251 $temp = $emLen - $this->hLen - $sLen - 2;
509 ->withSaltLength($this->sLen)
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);
464 ->withSaltLength($this->sLen)