Home
last modified time | relevance | path

Searched refs:iv (Results 1 – 10 of 10) sorted by path

/dokuwiki/inc/
H A Dauth.php439 $iv = auth_randombytes(16);
442 $cipher->setIV($iv);
450 return $cipher->encrypt($iv . $data);
464 $iv = substr($ciphertext, 0, 16);
467 $cipher->setIV($iv);
/dokuwiki/inc/lang/fi/
H A Dmailtext.txt
H A Dregistermail.txt
H A Dsubscr_single.txt
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBase.php
H A DRC4.php195 setIV($iv) global() argument
H A DRSA.php
H A DRandom.php138 $iv = sha1($seed . 'C', true);
167 $crypto->setIV(substr($iv, 0, $crypto->getBlockLength() >> 3));
H A DTripleDES.php193 * @param string $iv
195 public function setIV($iv)
197 parent::setIV($iv);
199 $this->des[0]->setIV($iv);
200 $this->des[1]->setIV($iv);
201 $this->des[2]->setIV($iv);
212 setIV($iv) global() argument
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php1920 $iv = $kexHash->hash($keyBytes . $this->exchange_hash . 'A' . $this->session_id);
1921 while ($this->encrypt_block_size > strlen($iv)) {
1922 $iv .= $kexHash->hash($keyBytes . $this->exchange_hash . $iv);
1924 $this->encrypt->setIV(substr($iv, 0, $this->encrypt_block_size));
1965 $iv = $kexHash->hash($keyBytes . $this->exchange_hash . 'B' . $this->session_id);
1966 while ($this->decrypt_block_size > strlen($iv)) {
1967 $iv .= $kexHash->hash($keyBytes . $this->exchange_hash . $iv);
1969 $this->decrypt->setIV(substr($iv,
[all...]