Lines Matching defs:passphrase
34 * @param {string} passphrase
36 async showClear($element, passphrase) {
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);