Searched refs:encrypt (Results 1 – 16 of 16) sorted by relevance
277 public function encrypt($plaintext) function in phpseclib3\\Crypt\\TripleDES284 return $this->des[2]->encrypt(286 $this->des[0]->encrypt(293 return parent::encrypt($plaintext);308 $this->des[1]->encrypt(
183 $i = $crypto->encrypt(microtime()); // strlen(microtime()) == 21184 $r = $crypto->encrypt($i ^ $v); // strlen($v) == 20185 $v = $crypto->encrypt($r ^ $i); // strlen($r) == 20
167 public function encrypt($plaintext) function in phpseclib3\\Crypt\\RC4170 return parent::encrypt($plaintext);
391 public function encrypt($plaintext) function in phpseclib3\\Crypt\\RC2396 $result = parent::encrypt($plaintext);401 return parent::encrypt($plaintext);
161 $block = $c->encrypt(str_repeat("\0", 256));244 public function encrypt($plaintext) function in phpseclib3\\Crypt\\Salsa20
489 return $this->c->encrypt(str_repeat("\0", $numbytes));526 $t = $c->encrypt("\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0");1022 $l = $this->c->encrypt($constZero);1064 $x = $c->encrypt($y);1067 return $c->encrypt($y);
975 public function encrypt($plaintext) function in phpseclib3\\Crypt\\Rijndael995 return parent::encrypt($plaintext);
81 public function encrypt($plaintext) function in phpseclib3\\Crypt\\ChaCha2089 return parent::encrypt($plaintext);
432 private $encrypt = false; variable in phpseclib3\\Net\\SSH21736 …$encrypt = self::array_intersect_first($c2s_encryption_algorithms, $this->encryption_algorithms_cl…1737 …if (!$encrypt || ($encryptKeyLength = $this->encryption_algorithm_to_key_size($encrypt)) === null)…1962 $this->encrypt = self::encryption_algorithm_to_crypt_instance($encrypt);1963 if ($this->encrypt) {1965 $this->encrypt->setPreferredEngine(self::$crypto_engine);1967 if ($this->encrypt->getBlockLengthInBytes()) {1968 $this->encrypt_block_size = $this->encrypt->getBlockLengthInBytes();1970 $this->encrypt->disablePadding();1972 if ($this->encrypt->usesIV()) {[all …]
1151 public function encrypt($plaintext) function in phpseclib3\\Crypt\\Common\\SymmetricKey1165 $ciphertext = $cipher->encrypt($plaintext);1174 $this->newtag = $cipher->encrypt($s);1182 $ciphertext = $cipher->encrypt($plaintext);1560 $newtag = $cipher->encrypt($s);2792 $encrypt = $init_encrypt . '2820 $encrypt = $init_encrypt . '2896 $encrypt = $init_encrypt . '2995 $encrypt = $init_encrypt . '3041 $encrypt = $init_encrypt . '[all …]
192 chunk_split(Strings::base64_encode($cipher->encrypt($key)), 64) .
215 $paddedKey = $crypto->encrypt($paddedKey);
350 $private = $crypto->encrypt($private);
636 $key = $crypto->encrypt($key);
495 public function encrypt($plaintext) function in phpseclib3\\Crypt\\RSA\\PublicKey
478 return $cipher->encrypt($iv . $data);