Home
last modified time | relevance | path

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

/plugin/encryptedpasswords/script/
H A DEditorHandling.js43 // ask for passphrase
44 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);
66 * @param {string} passphrase
69 async decryptSyntax(text, passphrase) {
68 decryptSyntax(text, passphrase) global() argument
135 encryptSyntax(text, passphrase) global() argument
[all...]
H A DPageHandling.js34 * @param {string} passphrase
36 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
[all...]
/plugin/crypto/
H A Dplugin.info.txt6 desc Encrypt a text with a passphrase
/plugin/authgooglesheets/vendor/firebase/php-jwt/
H A 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/adfs/phpsaml/extlib/xmlseclibs/
H A Dxmlseclibs.php60 public $passphrase = ""; variable in XMLSecurityKey
283 $this->key = openssl_get_privatekey($this->key, $this->passphrase);
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js70110 password = buffer.passphrase;