Home
last modified time | relevance | path

Searched refs:encrypt (Results 1 – 25 of 53) sorted by relevance

123

/plugin/pureldap/vendor/freedsx/socket/src/FreeDSx/Socket/
H A DSocket.php194 * @param bool $encrypt
198 public function encrypt(bool $encrypt)
201 $result = \stream_socket_enable_crypto($this->socket, $encrypt, $this->options['ssl_crypto_type']);
207 $encrypt ? 'enable' : 'disable',
211 $this->isEncrypted = $encrypt;
197 encrypt(bool $encrypt) global() argument
/plugin/securelogin/
H A Dsecurelogin.js23 …form.securelogin.value = encrypt("newpass="+esc(newpass.value)+"&passchk="+esc(passchk.value)+"&ol…
37 form.securelogin.value = encrypt("p="+esc(pass.value)+";"+sectok.value);
45 el.value = encrypt(esc(el.value));
56 …form.securelogin.value = encrypt("userpass="+esc(pass.value)+"&userpass2="+esc(pass2.value)+";"+se…
69 …form.securelogin.value = encrypt("userpass="+esc(pass.value)+"&userpass2="+esc(pass2.value)+";"+se…
H A DREADME.md5 …du/~tjw/jsbn/) on the client browser (before it leaves your computer) to encrypt the login passwor…
46 A wrong password will still fail. And Securelogin will still encrypt the password. The login will j…
83 But when you use this plugin, it will encrypt the password, which can only be decrypted on the serv…
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
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 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 DRC4.php191 public function encrypt($plaintext) function in phpseclib3\\Crypt\\RC4
194 return parent::encrypt($plaintext);
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 DSalsa20.php167 $block = $c->encrypt(str_repeat("\0", 256));
250 public function encrypt($plaintext) function in phpseclib3\\Crypt\\Salsa20
/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/encryptedpasswords/script/
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));
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);
/plugin/remoteinf/
H A Dplugin.info.txt6 desc send some encrypt inf to an other server
/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/captcha/_test/
H A DHelperTest.php
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ClientProtocolHandler/
H A DClientStartTlsHandler.php48 $queue->encrypt();
/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/pgpinlinesupport/
H A DREADME.MD18 3) When editing a page press Mailvelope-Button and encrypt text
H A DPlugin.txt35 - When editing a page press Mailvelope-Button and encrypt text
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ServerProtocolHandler/
H A DServerStartTlsHandler.php80 $queue->encrypt();
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Security/
H A DDigestMD5SecurityLayer.php78 $wrapped = $this->encrypt($data, $context);
172 protected function encrypt(string $data, SaslContext $context): string function in FreeDSx\\Sasl\\Security\\DigestMD5SecurityLayer
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
H A DPKCS1.php205 chunk_split(Base64::encode($cipher->encrypt($key)), 64) .
/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/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/authgooglesheets/vendor/google/apiclient-services/src/
H A DCloudKMS.php356 ],'encrypt' => [
357 'path' => 'v1/{+name}:encrypt',
/plugin/diagramsnet/lib/js/cryptojs/
H A Daes.min.js25 …FORM_MODE:2,_createHelper:function(e){return{encrypt:function(b,k,d){return("string"==typeof k?c:a…
29 …t:a,salt:c})}},a=d.SerializableCipher=l.extend({cfg:l.extend({format:b}),encrypt:function(a,b,c,d)…
30 …c,salt:d})}},c=d.PasswordBasedCipher=a.extend({cfg:a.cfg.extend({kdf:p}),encrypt:function(b,c,d,l)…
31 b.keySize,b.ivSize);l.iv=d.iv;b=a.encrypt.call(this,b,c,d.key,l);b.mixIn(d);return b},decrypt:funct…

123