| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/ |
| D | SymmetricKey.php | 1141 * @param string $plaintext 1144 public function encrypt($plaintext) argument 1147 $plaintext = $this->pad($plaintext); 1158 $ciphertext = $cipher->encrypt($plaintext); 1175 $ciphertext = $cipher->encrypt($plaintext); 1183 …return openssl_encrypt($plaintext, $this->cipher_name_openssl, $this->key, OPENSSL_RAW_DATA | OPEN… 1185 …return openssl_encrypt($plaintext, $this->cipher_name_openssl, $this->key, OPENSSL_RAW_DATA | OPEN… 1187 …$result = openssl_encrypt($plaintext, $this->cipher_name_openssl, $this->key, OPENSSL_RAW_DATA | O… 1193 … return $this->openssl_ctr_process($plaintext, $this->encryptIV, $this->enbuffer); 1205 $len = strlen($plaintext); [all …]
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudKMS/ |
| D | DecryptResponse.php | 25 public $plaintext; variable in Google\\Service\\CloudKMS\\DecryptResponse 42 public function setPlaintext($plaintext) argument 44 $this->plaintext = $plaintext; 51 return $this->plaintext;
|
| D | AsymmetricDecryptResponse.php | 25 public $plaintext; variable in Google\\Service\\CloudKMS\\AsymmetricDecryptResponse 42 public function setPlaintext($plaintext) argument 44 $this->plaintext = $plaintext; 51 return $this->plaintext;
|
| D | EncryptRequest.php | 33 public $plaintext; variable in Google\\Service\\CloudKMS\\EncryptRequest 70 public function setPlaintext($plaintext) argument 72 $this->plaintext = $plaintext; 79 return $this->plaintext;
|
| /plugin/dokucrypt3/ |
| H A D | crypto_high-level.js | 178 var plaintext = encode_utf8(ptext); 183 for (i = 0; i < plaintext.length; i++) { 184 md5_update(plaintext.charCodeAt(i)); 194 i = plaintext.length; 213 var ct = rijndaelEncrypt(header + plaintext, key, "CBC"); 234 var i,plaintext=""; 238 plaintext+=String.fromCharCode(result[i]); 252 return(decode_utf8(plaintext));
|
| H A D | crypto_low-level.js | 400 function formatPlaintext(plaintext) { argument 405 if ((!((typeof plaintext == "object") && 406 ((typeof (plaintext[0])) == "number"))) && 407 ((typeof plaintext == "string") || plaintext.indexOf)) { 408 plaintext = plaintext.split(""); 410 for (i=0; i<plaintext.length; i++) { 411 plaintext[i] = plaintext[i].charCodeAt(0) & 0xFF; 415 i = plaintext.length % bpb; 417 plaintext = plaintext.concat(getRandomBytes(bpb - i)); 420 return plaintext; [all …]
|
| H A D | dokuwiki_plugin_page.wiki | 73 …be decrypted to the 'SECRET' form showed above, and the use can edit in plaintext. Submits or dra…
|
| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
| D | RC4.php | 188 * @param string $plaintext 191 public function encrypt($plaintext) argument 194 return parent::encrypt($plaintext); 196 return $this->crypt($plaintext, self::ENCRYPT);
|
| D | Rijndael.php | 986 * @param string $plaintext 989 public function encrypt($plaintext) argument 995 …$this->newtag = sodium_crypto_aead_aes256gcm_encrypt($plaintext, $this->aad, $this->nonce, $this->… 996 return Strings::shift($this->newtag, strlen($plaintext)); 999 $plaintext, 1009 return parent::encrypt($plaintext); 1033 …$plaintext = sodium_crypto_aead_aes256gcm_decrypt($ciphertext . $this->oldtag, $this->aad, $this->… 1034 if ($plaintext === false) { 1038 return $plaintext; 1043 $plaintext = openssl_decrypt( [all …]
|
| D | TripleDES.php | 290 * @param string $plaintext 293 public function encrypt($plaintext) argument 303 $this->pad($plaintext) 309 return parent::encrypt($plaintext);
|
| D | RC2.php | 412 * @param string $plaintext 415 public function encrypt($plaintext) argument 420 $result = parent::encrypt($plaintext); 425 return parent::encrypt($plaintext);
|
| D | ChaCha20.php | 83 * @param string $plaintext 86 public function encrypt($plaintext) argument 91 return $this->encrypt_with_libsodium($plaintext); 94 return parent::encrypt($plaintext); 123 * @param string $plaintext 126 private function encrypt_with_libsodium($plaintext) argument 128 $params = [$plaintext, $this->aad, $this->nonce, $this->key]; 133 return substr($ciphertext, 0, strlen($plaintext)); 136 $newciphertext = substr($ciphertext, 0, strlen($plaintext)); 139 substr($ciphertext, strlen($plaintext)) : [all …]
|
| D | Salsa20.php | 247 * @param string $plaintext 250 public function encrypt($plaintext) argument 252 $ciphertext = $this->crypt($plaintext, self::ENCRYPT);
|
| /plugin/sqlraw/ |
| D | test2.php | 115 $mdTable[$rowPos][$colPos] = $cell->plaintext; 120 … $mdTable[$rowPos+$i][$colPos] = ($repeatContentIntoSpannedCells ? $cell->plaintext : ""); 129 … $mdTable[$rowPos][$colPos] = ($repeatContentIntoSpannedCells ? $cell->plaintext : "");
|
| D | simple_html_dom.php | 1234 …$charset = mb_detect_encoding($this->root->plaintext . "ascii", $encoding_list = array( "UTF-8", "…
|
| /plugin/dokucrypt/ |
| D | script.js | 381 var plaintext = encode_utf8(ptext); 386 for (i = 0; i < plaintext.length; i++) { 387 md5_update(plaintext.charCodeAt(i)); 397 i = plaintext.length; 416 var ct = rijndaelEncrypt(header + plaintext, key, "CBC"); 437 var i,plaintext=""; 441 plaintext+=String.fromCharCode(result[i]); 455 return(decode_utf8(plaintext)); 827 function formatPlaintext(plaintext) { argument 832 if ((!((typeof plaintext == "object") && [all …]
|
| /plugin/dokucrypt2/ |
| D | script.js | 453 var plaintext = encode_utf8(ptext); 458 for (i = 0; i < plaintext.length; i++) { 459 md5_update(plaintext.charCodeAt(i)); 469 i = plaintext.length; 488 var ct = rijndaelEncrypt(header + plaintext, key, "CBC"); 509 var i,plaintext=""; 513 plaintext+=String.fromCharCode(result[i]); 527 return(decode_utf8(plaintext)); 899 function formatPlaintext(plaintext) { argument 904 if ((!((typeof plaintext == "object") && [all …]
|
| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/ |
| D | OpenSSL.php | 59 $plaintext = str_pad($x->toBytes(), $n->getLengthInBytes(), "\0", STR_PAD_LEFT); 65 if (!openssl_public_encrypt($plaintext, $result, $key, OPENSSL_NO_PADDING)) {
|
| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/ |
| D | PublicKey.php | 461 * @param string $plaintext 465 public function encrypt($plaintext) argument 469 return $this->raw_encrypt($plaintext); 471 return $this->rsaes_pkcs1_v1_5_encrypt($plaintext); 474 return $this->rsaes_oaep_encrypt($plaintext);
|
| /plugin/encryptedpasswords/script/ |
| D | SubtleAES.js | 17 async encrypt(plaintext, password) { argument 25 const cipher = await crypto.subtle.encrypt(alg, key, new TextEncoder().encode(plaintext));
|
| /plugin/codeprettify/code-prettify/styles/ |
| D | desert.css | 10 pre .pln { color: #fff } /* plaintext */
|
| D | sunburst.css | 10 pre .pln, code .pln { color: #fff; } /* plaintext - white */
|
| D | doxy.css | 9 pre .pln, code .pln { color: #f0f0f0; } /* plaintext - white */
|
| /plugin/authyubikey/ |
| D | auth.php.org | 58 * plaintext password is correct
|
| /plugin/zwidoku/files/ |
| H A D | doku.css | 2259 .form-control-plaintext { 2272 .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { 2589 .form-inline .form-control-plaintext { 4034 .input-group > .form-control-plaintext, 4035 .doku_form .no > .form-control-plaintext, 4078 .input-group > .form-control-plaintext + .form-control, 4079 #dw__login .input-group > .form-control-plaintext + input, 4080 #config__manager td .input-group > .form-control-plaintext + input.edit, 4081 .search-results-form fieldset .input-group > .form-control-plaintext + input, 4082 .doku_form .no .input-group > .form-control-plaintext + #qsearch__in, [all …]
|