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
965 public function encrypt($plaintext) function in phpseclib3\\Crypt\\Rijndael985 return parent::encrypt($plaintext);
463 return $this->c->encrypt(str_repeat("\0", $numbytes));500 $t = $c->encrypt("\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0");
81 public function encrypt($plaintext) function in phpseclib3\\Crypt\\ChaCha2089 return parent::encrypt($plaintext);
432 private $encrypt = false; variable in phpseclib3\\Net\\SSH21731 …$encrypt = self::array_intersect_first($c2s_encryption_algorithms, $this->encryption_algorithms_cl…1732 …if (!$encrypt || ($encryptKeyLength = $this->encryption_algorithm_to_key_size($encrypt)) === null)…1957 $this->encrypt = self::encryption_algorithm_to_crypt_instance($encrypt);1958 if ($this->encrypt) {1960 $this->encrypt->setPreferredEngine(self::$crypto_engine);1962 if ($this->encrypt->getBlockLengthInBytes()) {1963 $this->encrypt_block_size = $this->encrypt->getBlockLengthInBytes();1965 $this->encrypt->disablePadding();1967 if ($this->encrypt->usesIV()) {[all …]
1146 public function encrypt($plaintext) function in phpseclib3\\Crypt\\Common\\SymmetricKey1160 $ciphertext = $cipher->encrypt($plaintext);1169 $this->newtag = $cipher->encrypt($s);1177 $ciphertext = $cipher->encrypt($plaintext);1555 $newtag = $cipher->encrypt($s);2787 $encrypt = $init_encrypt . '2815 $encrypt = $init_encrypt . '2891 $encrypt = $init_encrypt . '2990 $encrypt = $init_encrypt . '3036 $encrypt = $init_encrypt . '[all …]
192 chunk_split(Strings::base64_encode($cipher->encrypt($key)), 64) .
215 $paddedKey = $crypto->encrypt($paddedKey);
344 $private = $crypto->encrypt($private);
626 $key = $crypto->encrypt($key);
451 public function encrypt($plaintext) function in phpseclib3\\Crypt\\RSA\\PublicKey
476 return $cipher->encrypt($iv . $data);