Home
last modified time | relevance | path

Searched refs:encrypt (Results 1 – 25 of 59) 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) argument
201 …$result = \stream_socket_enable_crypto($this->socket, $encrypt, $this->options['ssl_crypto_type']);
207 $encrypt ? 'enable' : 'disable',
211 $this->isEncrypted = $encrypt;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
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(
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
DRC4.php191 public function encrypt($plaintext) function in phpseclib3\\Crypt\\RC4
194 return parent::encrypt($plaintext);
DRC2.php415 public function encrypt($plaintext) function in phpseclib3\\Crypt\\RC2
420 $result = parent::encrypt($plaintext);
425 return parent::encrypt($plaintext);
DSalsa20.php167 $block = $c->encrypt(str_repeat("\0", 256));
250 public function encrypt($plaintext) function in phpseclib3\\Crypt\\Salsa20
/plugin/securelogin/
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…
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/Net/
DSSH2.php456 private $encrypt = false; variable in phpseclib3\\Net\\SSH2
1687 …$encrypt = self::array_intersect_first($c2s_encryption_algorithms, $this->encryption_algorithms_cl…
1688 $encryptKeyLength = $this->encryption_algorithm_to_key_size($encrypt);
1929 $this->encrypt = self::encryption_algorithm_to_crypt_instance($encrypt);
1930 if ($this->encrypt) {
1932 $this->encrypt->setPreferredEngine(self::$crypto_engine);
1934 if ($this->encrypt->getBlockLengthInBytes()) {
1935 $this->encrypt_block_size = $this->encrypt->getBlockLengthInBytes();
1937 $this->encrypt->disablePadding();
1939 if ($this->encrypt->usesIV()) {
[all …]
/plugin/encryptedpasswords/script/
DSubtleAES.js17 async encrypt(plaintext, password) { method in SubtleAES
25 const cipher = await crypto.subtle.encrypt(alg, key, new TextEncoder().encode(plaintext));
DEditorHandling.js144 const cipher = await this.aes.encrypt(clear, passphrase);
/plugin/captcha/_test/
DHelperTest.php34 $secret = $helper->encrypt($rand);
69 $INPUT->set($this->getInaccessibleProperty($helper, 'field_sec'), $helper->encrypt($rand));
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/
H A DLdapQueue.php65 public function encrypt() function in FreeDSx\\Ldap\\Protocol\\LdapQueue
68 $this->socket->encrypt(true);
/plugin/remoteinf/
Dplugin.info.txt6 desc send some encrypt inf to an other server
/plugin/dokucrypt3/
H A Ddokuwiki_plugin_page.wiki50 In order to encrypt some sensitive data, the user needs to add text like the following
59 The less-than (<) and greater-than(>) symbols, if included in the enclosed text to encrypt, will br…
85 …* Conflicts with Encrypted Passwords plugin (both plugins attempt to parse the <encrypt></encrypt>…
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
DSymmetricKey.php1144 public function encrypt($plaintext) function in phpseclib3\\Crypt\\Common\\SymmetricKey
1158 $ciphertext = $cipher->encrypt($plaintext);
1167 $this->newtag = $cipher->encrypt($s);
1175 $ciphertext = $cipher->encrypt($plaintext);
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 . '
[all …]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ClientProtocolHandler/
H A DClientStartTlsHandler.php48 $queue->encrypt();
/plugin/pgpinlinesupport/
DREADME.MD18 3) When editing a page press Mailvelope-Button and encrypt text
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/captcha/
Dhelper.php69 $secret = $this->encrypt($rand);
461 public function encrypt($data) function in helper_plugin_captcha
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
DPKCS1.php205 chunk_split(Base64::encode($cipher->encrypt($key)), 64) .
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudKMS/Resource/
DProjectsLocationsKeyRingsCryptoKeys.php92 public function encrypt($name, EncryptRequest $postBody, $optParams = []) function in Google\\Service\\CloudKMS\\Resource\\ProjectsLocationsKeyRingsCryptoKeys
/plugin/authgooglesheets/vendor/google/apiclient-services/src/
DCloudKMS.php356 ],'encrypt' => [
357 'path' => 'v1/{+name}:encrypt',

123