Home
last modified time | relevance | path

Searched refs:passphrase (Results 1 – 7 of 7) sorted by relevance

/plugin/encryptedpasswords/script/
DEditorHandling.js44 const passphrase = await GUI.prompt(
46 LANG.plugins.encryptedpasswords.passphrase,
49 if (passphrase === null || passphrase === '') return;
53 form.prefix.value = await this.decryptSyntax(prefix, passphrase);
54 form.suffix.value = await this.decryptSyntax(suffix, passphrase);
55 form.wikitext.value = await this.decryptSyntax(text, passphrase);
69 async decryptSyntax(text, passphrase) { argument
77 const clear = await this.aes.autodecrypt(cipher, passphrase);
114 const passphrase = await GUI.prompt(
116 LANG.plugins.encryptedpasswords.passphrase,
[all …]
DPageHandling.js36 async showClear($element, passphrase) { argument
42 const clear = await this.aes.autodecrypt(cipher, passphrase);
63 const passphrase = await GUI.prompt(
65 LANG.plugins.encryptedpasswords.passphrase
67 if (passphrase === null || passphrase === '') return;
69 clear = await this.aes.autodecrypt(cipher, passphrase);
91 const passphrase = await GUI.prompt(
93 LANG.plugins.encryptedpasswords.passphrase
95 if (passphrase === null || passphrase === '') return;
98 self.showClear(jQuery(e), passphrase);
/plugin/crypto/
Dplugin.info.txt6 desc Encrypt a text with a passphrase
/plugin/authgooglesheets/vendor/firebase/php-jwt/
DREADME.md122 Example with a passphrase
129 // Your passphrase
130 $passphrase = '[YOUR_PASSPHRASE]';
132 // Your private key file with passphrase
134 $privateKeyFile = '/path/to/key-with-passphrase.pem';
139 $passphrase
/plugin/saml/phpsaml/extlib/xmlseclibs/
Dxmlseclibs.php60 public $passphrase = ""; variable in XMLSecurityKey
283 $this->key = openssl_get_privatekey($this->key, $this->passphrase);
/plugin/adfs/phpsaml/extlib/xmlseclibs/
Dxmlseclibs.php60 public $passphrase = ""; variable in XMLSecurityKey
283 $this->key = openssl_get_privatekey($this->key, $this->passphrase);
/plugin/xlsx2dw/packages/exceljs/
Dexceljs.js70110 password = buffer.passphrase;