Home
last modified time | relevance | path

Searched refs:plaintext (Results 1 – 25 of 94) sorted by relevance

1234

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
DSymmetricKey.php1141 * @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/
DDecryptResponse.php25 public $plaintext; variable in Google\\Service\\CloudKMS\\DecryptResponse
42 public function setPlaintext($plaintext) argument
44 $this->plaintext = $plaintext;
51 return $this->plaintext;
DAsymmetricDecryptResponse.php25 public $plaintext; variable in Google\\Service\\CloudKMS\\AsymmetricDecryptResponse
42 public function setPlaintext($plaintext) argument
44 $this->plaintext = $plaintext;
51 return $this->plaintext;
DEncryptRequest.php33 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 Dcrypto_high-level.js178 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 Dcrypto_low-level.js400 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 Ddokuwiki_plugin_page.wiki73 …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/
DRC4.php188 * @param string $plaintext
191 public function encrypt($plaintext) argument
194 return parent::encrypt($plaintext);
196 return $this->crypt($plaintext, self::ENCRYPT);
DRijndael.php986 * @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 …]
DTripleDES.php290 * @param string $plaintext
293 public function encrypt($plaintext) argument
303 $this->pad($plaintext)
309 return parent::encrypt($plaintext);
DRC2.php412 * @param string $plaintext
415 public function encrypt($plaintext) argument
420 $result = parent::encrypt($plaintext);
425 return parent::encrypt($plaintext);
DChaCha20.php83 * @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 …]
DSalsa20.php247 * @param string $plaintext
250 public function encrypt($plaintext) argument
252 $ciphertext = $this->crypt($plaintext, self::ENCRYPT);
/plugin/sqlraw/
Dtest2.php115 $mdTable[$rowPos][$colPos] = $cell->plaintext;
120 … $mdTable[$rowPos+$i][$colPos] = ($repeatContentIntoSpannedCells ? $cell->plaintext : "");
129 … $mdTable[$rowPos][$colPos] = ($repeatContentIntoSpannedCells ? $cell->plaintext : "");
Dsimple_html_dom.php1234 …$charset = mb_detect_encoding($this->root->plaintext . "ascii", $encoding_list = array( "UTF-8", "…
/plugin/dokucrypt/
Dscript.js381 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/
Dscript.js453 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/
DOpenSSL.php59 $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/
DPublicKey.php461 * @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/
DSubtleAES.js17 async encrypt(plaintext, password) { argument
25 const cipher = await crypto.subtle.encrypt(alg, key, new TextEncoder().encode(plaintext));
/plugin/codeprettify/code-prettify/styles/
Ddesert.css10 pre .pln { color: #fff } /* plaintext */
Dsunburst.css10 pre .pln, code .pln { color: #fff; } /* plaintext - white */
Ddoxy.css9 pre .pln, code .pln { color: #f0f0f0; } /* plaintext - white */
/plugin/authyubikey/
Dauth.php.org58 * plaintext password is correct
/plugin/zwidoku/files/
H A Ddoku.css2259 .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 …]

1234