Home
last modified time | relevance | path

Searched refs:encrypt (Results 1 – 25 of 53) sorted by last modified time

123

/plugin/encryptedpasswords/script/
H A DEditorHandling.js78 text = text.replace(matches[i][0], `<encrypt>${clear}</encrypt>`);
88 * Event handler to encrypt all passwords
100 const re = new RegExp('<encrypt>.*?(<\/encrypt>)','s');
138 const re = new RegExp('<encrypt>(.*?)(<\/encrypt>)', 'gs');
144 const cipher = await this.aes.encrypt(clear, passphrase);
H A DSubtleAES.js14 * @param {String} password Password to use to encrypt plaintext
17 async encrypt(plaintext, password) { method in SubtleAES
23 const key = await crypto.subtle.importKey('raw', hash, alg, false, ['encrypt']);
25 const cipher = await crypto.subtle.encrypt(alg, key, new TextEncoder().encode(plaintext));
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js36984 var out = this._mode.encrypt(this, chunk);
37221 thing = this._mode.encrypt(this, chunk);
37234 chunk = this._mode.encrypt(this, chunk);
37431 exports.encrypt = function (self, block) {
37461 exports.encrypt = function (self, data, decrypt) {
37520 exports.encrypt = function (self, chunk, decrypt) {
37545 exports.encrypt = function (self, chunk, decrypt) {
37575 exports.encrypt = function (self, chunk) {
37602 exports.encrypt = function (self, block) {
37836 exports.encrypt = function (self, chunk) {
[all …]
/plugin/captcha/_test/
H A DHelperTest.php
/plugin/captcha/
H A Dhelper.php69 $secret = $this->encrypt($rand);
461 public function encrypt($data)
480 public function encrypt($data) global() function in helper_plugin_captcha
/plugin/dokucrypt2/
H A Dscript.js774 function encrypt(block, expandedKey) { function
972 ct = ct.concat(encrypt(aBlock, expandedKey));
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DChaCha20.php86 public function encrypt($plaintext) function in phpseclib3\\Crypt\\ChaCha20
94 return parent::encrypt($plaintext);
H A DRC4.php191 public function encrypt($plaintext) function in phpseclib3\\Crypt\\RC4
194 return parent::encrypt($plaintext);
H A DTripleDES.php293 public function encrypt($plaintext) function in phpseclib3\\Crypt\\TripleDES
300 return $this->des[2]->encrypt(
302 $this->des[0]->encrypt(
309 return parent::encrypt($plaintext);
325 $this->des[1]->encrypt(
H A DSalsa20.php167 $block = $c->encrypt(str_repeat("\0", 256));
250 public function encrypt($plaintext) function in phpseclib3\\Crypt\\Salsa20
H A DHash.php474 return $this->c->encrypt(str_repeat("\0", $numbytes));
511 $t = $c->encrypt("\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0");
H A DRC2.php415 public function encrypt($plaintext) function in phpseclib3\\Crypt\\RC2
420 $result = parent::encrypt($plaintext);
425 return parent::encrypt($plaintext);
H A DRandom.php184 $i = $crypto->encrypt(microtime()); // strlen(microtime()) == 21
185 $r = $crypto->encrypt($i ^ $v); // strlen($v) == 20
186 $v = $crypto->encrypt($r ^ $i); // strlen($r) == 20
H A DRijndael.php989 public function encrypt($plaintext) function in phpseclib3\\Crypt\\Rijndael
1009 return parent::encrypt($plaintext);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
H A DPKCS1.php205 chunk_split(Base64::encode($cipher->encrypt($key)), 64) .
H A DPKCS8.php597 $key = $crypto->encrypt($key);
H A DPuTTY.php358 $private = $crypto->encrypt($private);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DSymmetricKey.php1144 public function encrypt($plaintext) function in phpseclib3\\Crypt\\Common\\SymmetricKey
1167 $this->newtag = $cipher->encrypt($s);
1554 $newtag = $cipher->encrypt($s);
2809 $encrypt = $init_encrypt . '
2837 $encrypt = $init_encrypt . '
2913 $encrypt = $init_encrypt . '
3012 $encrypt = $init_encrypt . '
3058 $encrypt = $init_encrypt . '
3096 $encrypt = $init_encrypt . '
3169 $encrypt = $init_encrypt . '
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPublicKey.php465 public function encrypt($plaintext) function in phpseclib3\\Crypt\\RSA\\PublicKey
/plugin/authgooglesheets/vendor/google/apiclient-services/src/
H A DCloudKMS.php356 ],'encrypt' => [
357 'path' => 'v1/{+name}:encrypt',
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudKMS/Resource/
H A DProjectsLocationsKeyRingsCryptoKeys.php92 public function encrypt($name, EncryptRequest $postBody, $optParams = []) function in Google\\Service\\CloudKMS\\Resource\\ProjectsLocationsKeyRingsCryptoKeys
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php456 private $encrypt = false; variable in phpseclib3\\Net\\SSH2
1929 $this->encrypt = self::encryption_algorithm_to_crypt_instance($encrypt);
2027 if ($encrypt == 'arcfour128' || $encrypt == 'arcfour256') {
2028 $this->encrypt->encrypt(str_repeat("\0", 1536));
4198 if ($this->encrypt && $this->encrypt->usesNonce()) {
4206 case $this->encrypt && $this->encrypt->usesNonce():
4237 $packet = $temp . $this->encrypt->encrypt(substr($packet, 4));
4257 $this->encrypt->encrypt(str_repeat("\0", 32))
4261 $packet = $length . $this->encrypt->encrypt(substr($packet, 4));
4266 $this->encrypt->encrypt($packet);
[all …]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ClientProtocolHandler/
H A DClientStartTlsHandler.php48 $queue->encrypt();
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/
H A DLdapQueue.php65 public function encrypt()
68 $this->socket->encrypt(true);
61 public function encrypt() global() function in FreeDSx\\Ldap\\Protocol\\LdapQueue
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ServerProtocolHandler/
H A DServerStartTlsHandler.php80 $queue->encrypt();

123