| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/ |
| D | SymmetricKey.php | 1158 $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/ |
| D | Salsa20.php | 252 $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 …]
|
| D | TripleDES.php | 317 * @param string $ciphertext 320 public function decrypt($ciphertext) argument 327 str_pad($ciphertext, (strlen($ciphertext) + 7) & 0xFFFFFFF8, "\0") 334 return parent::decrypt($ciphertext);
|
| D | RC4.php | 208 * @param string $ciphertext 211 public function decrypt($ciphertext) argument 214 return parent::decrypt($ciphertext); 216 return $this->crypt($ciphertext, self::DECRYPT);
|
| D | RC2.php | 435 * @param string $ciphertext 438 public function decrypt($ciphertext) argument 443 $result = parent::decrypt($ciphertext); 448 return parent::decrypt($ciphertext);
|
| D | ChaCha20.php | 105 * @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 …]
|
| D | Rijndael.php | 1018 * @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/ |
| D | AsymmetricDecryptRequest.php | 25 public $ciphertext; variable in Google\\Service\\CloudKMS\\AsymmetricDecryptRequest 34 public function setCiphertext($ciphertext) argument 36 $this->ciphertext = $ciphertext; 43 return $this->ciphertext;
|
| D | DecryptRequest.php | 33 public $ciphertext; variable in Google\\Service\\CloudKMS\\DecryptRequest 70 public function setCiphertext($ciphertext) argument 72 $this->ciphertext = $ciphertext; 79 return $this->ciphertext;
|
| D | EncryptResponse.php | 25 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/ |
| D | SubtleAES.js | 38 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/ |
| D | PKCS1.php | 154 $ciphertext = ASN1::extractBER($key); 155 if ($ciphertext === false) { 156 $ciphertext = $key; 161 $key = $crypto->decrypt($ciphertext);
|
| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/ |
| D | PrivateKey.php | 453 * @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 D | crypto_low-level.js | 490 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/ |
| D | script.js | 917 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/ |
| D | script.js | 989 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/ |
| D | aes.min.js | 28 …ingify(this)}}),b=(p.format={}).OpenSSL={stringify:function(a){var b=a.ciphertext;a=a.salt;return(… 29 …ciphertext: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/ |
| D | pdfmake.js | 6230 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 …]
|
| D | pdfmake.min.js | 2 …ciphertext,o=r.salt;return(o?g.create([1398893684,1701076831]).concat(o).concat(i):i).toString(_)}…
|
| /plugin/diagramsnet/lib/js/ |
| D | app.min.js | 125 …ingify(this)}}),b=(p.format={}).OpenSSL={stringify:function(a){var b=a.ciphertext;a=a.salt;return(… 126 …ciphertext: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…
|