Home
last modified time | relevance | path

Searched refs:ciphertext (Results 1 – 6 of 6) sorted by relevance

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBase.php
H A DRC4.php165 * @return string $ciphertext
183 * @param string $ciphertext
186 public function decrypt($ciphertext)
189 return parent::decrypt($ciphertext);
191 return $this->crypt($ciphertext, self::DECRYPT);
249 decrypt($ciphertext) global() argument
H A DTripleDES.php300 * @param string $ciphertext
303 public function decrypt($ciphertext)
310 str_pad($ciphertext, (strlen($ciphertext) + 7) & 0xFFFFFFF8, "\0")
317 return parent::decrypt($ciphertext);
322 decrypt($ciphertext) global() argument
H A DRC2.php389 * @return string $ciphertext
410 * @param string $ciphertext
413 public function decrypt($ciphertext)
418 $result = parent::decrypt($ciphertext);
423 return parent::decrypt($ciphertext);
419 decrypt($ciphertext) global() argument
H A DRSA.php18 * $ciphertext = $public->encrypt($plaintext);
20 * echo $private->decrypt($ciphertext);
3235 decrypt($ciphertext) global() argument
/dokuwiki/inc/
H A Dauth.php434 * @return string The ciphertext
447 for unique but necessarily random IVs. The resulting ciphertext is
448 compatible to ciphertext that was created using a "normal" IV.
454 * Decrypt the given AES ciphertext
458 * @param string $ciphertext The encrypted data
462 function auth_decrypt($ciphertext, $secret)
464 $iv = substr($ciphertext, 0, 16);
470 return $cipher->decrypt(substr($ciphertext, 16));
390 auth_decrypt($ciphertext, $secret) global() argument