Home
last modified time | relevance | path

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

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
DSymmetricKey.php1158 $ciphertext = $cipher->encrypt($plaintext);
1162 self::nullPad128($ciphertext) .
1164 self::len64($ciphertext)
1168 return $ciphertext;
1175 $ciphertext = $cipher->encrypt($plaintext);
1176 $this->newtag = $this->poly1305($ciphertext);
1177 return $ciphertext;
1197 $ciphertext = '';
1220 $ciphertext = substr($iv, $orig_pos) ^ $plaintext;
1221 $iv = substr_replace($iv, $ciphertext, $orig_pos, $i);
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
DSalsa20.php252 $ciphertext = $this->crypt($plaintext, self::ENCRYPT);
254 $this->newtag = $this->poly1305($ciphertext);
256 return $ciphertext;
267 * @param string $ciphertext
270 public function decrypt($ciphertext) argument
276 $newtag = $this->poly1305($ciphertext);
284 return $this->crypt($ciphertext, self::DECRYPT);
345 $ciphertext = '';
347 $ciphertext = $text ^ Strings::shift($buffer['ciphertext'], strlen($text));
348 $text = substr($text, strlen($ciphertext));
[all …]
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);
DRC4.php208 * @param string $ciphertext
211 public function decrypt($ciphertext) argument
214 return parent::decrypt($ciphertext);
216 return $this->crypt($ciphertext, self::DECRYPT);
DRC2.php435 * @param string $ciphertext
438 public function decrypt($ciphertext) argument
443 $result = parent::decrypt($ciphertext);
448 return parent::decrypt($ciphertext);
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));
136 $newciphertext = substr($ciphertext, 0, strlen($plaintext));
139 substr($ciphertext, strlen($plaintext)) :
149 * @param string $ciphertext
152 private function decrypt_with_libsodium($ciphertext) argument
[all …]
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/
DAsymmetricDecryptRequest.php25 public $ciphertext; variable in Google\\Service\\CloudKMS\\AsymmetricDecryptRequest
34 public function setCiphertext($ciphertext) argument
36 $this->ciphertext = $ciphertext;
43 return $this->ciphertext;
DDecryptRequest.php33 public $ciphertext; variable in Google\\Service\\CloudKMS\\DecryptRequest
70 public function setCiphertext($ciphertext) argument
72 $this->ciphertext = $ciphertext;
79 return $this->ciphertext;
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/
DSubtleAES.js38 async decrypt(ciphertext, password, legacy = false) { argument
39 const {salt, cipher} = this.parseOpenSSLCryptString(ciphertext);
66 async autodecrypt(ciphertext, password) { argument
68 return await this.decrypt(ciphertext, password);
72 return await this.decrypt(ciphertext, password, true);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
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/
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/dokucrypt3/
H A Dcrypto_low-level.js490 function rijndaelDecrypt(ciphertext, key, mode) { argument
497 if (!ciphertext || !key || typeof ciphertext == "string") { return; }
504 for (block=(ciphertext.length / bpb)-1; block>0; block--) {
506 decrypt(ciphertext.slice(block*bpb,(block+1)*bpb), expandedKey);
509 pt[(block-1)*bpb + i] = aBlock[i] ^ ciphertext[(block-1)*bpb + i];
518 pt = decrypt(ciphertext.slice(0, bpb), expandedKey).concat(pt);
/plugin/dokucrypt/
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/
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/
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… property
30 …(d);b=this._parse(b,d.format);return a.createDecryptor(c,d).finalize(b.ciphertext)},_parse:functio…
/plugin/datatables/assets/pdfmake/
Dpdfmake.js6230 decrypt: function decrypt(ciphertext, key, cfg) {
6231 return selectCipherStrategy(key).decrypt(cipher, ciphertext, key, cfg);
6611 var ciphertext = cipherParams.ciphertext;
6616 wordArray = WordArray.create([0x53616c74, 0x65645f5f]).concat(salt).concat(ciphertext);
6618 wordArray = ciphertext;
6639 var ciphertext = Base64.parse(openSSLStr);
6642 var ciphertextWords = ciphertext.words;
6651 ciphertext.sigBytes -= 16;
6654 ciphertext: ciphertext,
6696 var ciphertext = encryptor.finalize(message);
[all …]
Dpdfmake.min.js2ciphertext,o=r.salt;return(o?g.create([1398893684,1701076831]).concat(o).concat(i):i).toString(_)}…
/plugin/diagramsnet/lib/js/
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… property
127 …(d);b=this._parse(b,d.format);return a.createDecryptor(c,d).finalize(b.ciphertext)},_parse:functio…