| /plugin/pureldap/vendor/freedsx/socket/src/FreeDSx/Socket/ |
| H A D | Socket.php | 194 * @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/ |
| D | TripleDES.php | 293 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(
|
| D | Random.php | 184 $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
|
| D | RC4.php | 191 public function encrypt($plaintext) function in phpseclib3\\Crypt\\RC4 194 return parent::encrypt($plaintext);
|
| D | RC2.php | 415 public function encrypt($plaintext) function in phpseclib3\\Crypt\\RC2 420 $result = parent::encrypt($plaintext); 425 return parent::encrypt($plaintext);
|
| D | Salsa20.php | 167 $block = $c->encrypt(str_repeat("\0", 256)); 250 public function encrypt($plaintext) function in phpseclib3\\Crypt\\Salsa20
|
| /plugin/securelogin/ |
| D | securelogin.js | 23 …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…
|
| D | README.md | 5 …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/ |
| D | SSH2.php | 456 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/ |
| D | SubtleAES.js | 17 async encrypt(plaintext, password) { method in SubtleAES 25 const cipher = await crypto.subtle.encrypt(alg, key, new TextEncoder().encode(plaintext));
|
| D | EditorHandling.js | 144 const cipher = await this.aes.encrypt(clear, passphrase);
|
| /plugin/captcha/_test/ |
| D | HelperTest.php | 34 $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 D | LdapQueue.php | 65 public function encrypt() function in FreeDSx\\Ldap\\Protocol\\LdapQueue 68 $this->socket->encrypt(true);
|
| /plugin/remoteinf/ |
| D | plugin.info.txt | 6 desc send some encrypt inf to an other server
|
| /plugin/dokucrypt3/ |
| H A D | dokuwiki_plugin_page.wiki | 50 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/ |
| D | SymmetricKey.php | 1144 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 D | ClientStartTlsHandler.php | 48 $queue->encrypt();
|
| /plugin/pgpinlinesupport/ |
| D | README.MD | 18 3) When editing a page press Mailvelope-Button and encrypt text
|
| D | Plugin.txt | 35 - When editing a page press Mailvelope-Button and encrypt text
|
| /plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ServerProtocolHandler/ |
| H A D | ServerStartTlsHandler.php | 80 $queue->encrypt();
|
| /plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Security/ |
| H A D | DigestMD5SecurityLayer.php | 78 $wrapped = $this->encrypt($data, $context); 172 protected function encrypt(string $data, SaslContext $context): string function in FreeDSx\\Sasl\\Security\\DigestMD5SecurityLayer
|
| /plugin/captcha/ |
| D | helper.php | 69 $secret = $this->encrypt($rand); 461 public function encrypt($data) function in helper_plugin_captcha
|
| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/ |
| D | PKCS1.php | 205 chunk_split(Base64::encode($cipher->encrypt($key)), 64) .
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudKMS/Resource/ |
| D | ProjectsLocationsKeyRingsCryptoKeys.php | 92 public function encrypt($name, EncryptRequest $postBody, $optParams = []) function in Google\\Service\\CloudKMS\\Resource\\ProjectsLocationsKeyRingsCryptoKeys
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/ |
| D | CloudKMS.php | 356 ],'encrypt' => [ 357 'path' => 'v1/{+name}:encrypt',
|