Home
last modified time | relevance | path

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

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DSymmetricKey.php1168 return $ciphertext;
1177 return $ciphertext;
1346 return $ciphertext;
1356 $ciphertext = '';
1508 return $ciphertext;
1614 $ciphertext = substr($ciphertext, $i);
1981 $ciphertext = '';
2013 return $ciphertext;
2049 return $ciphertext;
2074 $ciphertext = '';
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DSalsa20.php256 return $ciphertext;
267 * @param string $ciphertext
270 public function decrypt($ciphertext) argument
276 $newtag = $this->poly1305($ciphertext);
345 $ciphertext = '';
350 return $ciphertext;
385 $ciphertext .= openssl_encrypt(
401 return $ciphertext;
499 * @param string $ciphertext
502 protected function poly1305($ciphertext) argument
[all …]
H A DTripleDES.php317 * @param string $ciphertext
320 public function decrypt($ciphertext) argument
327 str_pad($ciphertext, (strlen($ciphertext) + 7) & 0xFFFFFFF8, "\0")
334 return parent::decrypt($ciphertext);
H A DRC4.php208 * @param string $ciphertext
211 public function decrypt($ciphertext) argument
214 return parent::decrypt($ciphertext);
216 return $this->crypt($ciphertext, self::DECRYPT);
H A DRC2.php435 * @param string $ciphertext
438 public function decrypt($ciphertext) argument
443 $result = parent::decrypt($ciphertext);
448 return parent::decrypt($ciphertext);
H A DChaCha20.php105 * @param string $ciphertext
108 public function decrypt($ciphertext) argument
113 return $this->decrypt_with_libsodium($ciphertext);
116 return parent::decrypt($ciphertext);
129 $ciphertext = strlen($this->nonce) == 8 ?
133 return substr($ciphertext, 0, strlen($plaintext));
139 substr($ciphertext, strlen($plaintext)) :
149 * @param string $ciphertext
152 private function decrypt_with_libsodium($ciphertext) argument
168 $newtag = $this->poly1305($ciphertext);
[all …]
H A DRijndael.php1018 * @param string $ciphertext
1021 public function decrypt($ciphertext) argument
1033 …$plaintext = sodium_crypto_aead_aes256gcm_decrypt($ciphertext . $this->oldtag, $this->aad, $this->…
1044 $ciphertext,
1059 return parent::decrypt($ciphertext);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudKMS/
H A DAsymmetricDecryptRequest.php25 public $ciphertext; variable in Google\\Service\\CloudKMS\\AsymmetricDecryptRequest
34 public function setCiphertext($ciphertext) argument
36 $this->ciphertext = $ciphertext;
43 return $this->ciphertext;
H A DDecryptRequest.php33 public $ciphertext; variable in Google\\Service\\CloudKMS\\DecryptRequest
70 public function setCiphertext($ciphertext) argument
72 $this->ciphertext = $ciphertext;
79 return $this->ciphertext;
H A DEncryptResponse.php25 public $ciphertext; variable in Google\\Service\\CloudKMS\\EncryptResponse
50 public function setCiphertext($ciphertext) argument
52 $this->ciphertext = $ciphertext;
59 return $this->ciphertext;
/plugin/encryptedpasswords/script/
H A DSubtleAES.js15 * @returns {Promise<String>} Encrypted ciphertext base64 encoded
31 * Decrypts OpenSSL ciphertext
33 * @param {String} ciphertext Base64 encoded ciphertext to be decrypted.
34 * @param {String} password Password to use to decrypt ciphertext
38 async decrypt(ciphertext, password, legacy = false) { argument
39 const {salt, cipher} = this.parseOpenSSLCryptString(ciphertext);
62 * @param {String} ciphertext Base64 encoded ciphertext to be decrypted.
63 * @param {String} password Password to use to decrypt ciphertext
66 autodecrypt(ciphertext, password) global() argument
[all...]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
H A DPKCS1.php154 $ciphertext = ASN1::extractBER($key);
155 if ($ciphertext === false) {
156 $ciphertext = $key;
161 $key = $crypto->decrypt($ciphertext);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPrivateKey.php453 * @param string $ciphertext
456 public function decrypt($ciphertext) argument
460 return $this->raw_encrypt($ciphertext);
462 return $this->rsaes_pkcs1_v1_5_decrypt($ciphertext);
465 return $this->rsaes_oaep_decrypt($ciphertext);
/plugin/dokucrypt/
H A Dscript.js917 function rijndaelDecrypt(ciphertext, key, mode) { argument
924 if (!ciphertext || !key || typeof ciphertext == "string") { return; }
931 for (block=(ciphertext.length / bpb)-1; block>0; block--) {
933 decrypt(ciphertext.slice(block*bpb,(block+1)*bpb), expandedKey);
936 pt[(block-1)*bpb + i] = aBlock[i] ^ ciphertext[(block-1)*bpb + i];
945 pt = decrypt(ciphertext.slice(0, bpb), expandedKey).concat(pt);
/plugin/dokucrypt2/
H A Dscript.js989 function rijndaelDecrypt(ciphertext, key, mode) { argument
996 if (!ciphertext || !key || typeof ciphertext == "string") { return; }
1003 for (block=(ciphertext.length / bpb)-1; block>0; block--) {
1005 decrypt(ciphertext.slice(block*bpb,(block+1)*bpb), expandedKey);
1008 pt[(block-1)*bpb + i] = aBlock[i] ^ ciphertext[(block-1)*bpb + i];
1017 pt = decrypt(ciphertext.slice(0, bpb), expandedKey).concat(pt);
/plugin/diagramsnet/lib/js/cryptojs/
H A Daes.min.js28 …ingify(this)}}),b=(p.format={}).OpenSSL={stringify:function(a){var b=a.ciphertext;a=a.salt;return(…
29ciphertext:a,salt:c})}},a=d.SerializableCipher=l.extend({cfg:l.extend({format:b}),encrypt:function…
30 …(d);b=this._parse(b,d.format);return a.createDecryptor(c,d).finalize(b.ciphertext)},_parse:functio…
/plugin/datatables/assets/pdfmake/build/
H A Dpdfmake.min.js
/plugin/diagramsnet/lib/js/
H A Dapp.min.js125 …ingify(this)}}),b=(p.format={}).OpenSSL={stringify:function(a){var b=a.ciphertext;a=a.salt;return(…
126ciphertext:a,salt:c})}},a=d.SerializableCipher=l.extend({cfg:l.extend({format:b}),encrypt:function…
127 …(d);b=this._parse(b,d.format);return a.createDecryptor(c,d).finalize(b.ciphertext)},_parse:functio…