(options)
| 310 | } |
| 311 | |
| 312 | decryptFile(options) { |
| 313 | options.unlockKey = async options => { |
| 314 | options.reason = 'PWD_DIALOG_REASON_DECRYPT'; |
| 315 | const result = await this.unlockKey(options); |
| 316 | return result; |
| 317 | }; |
| 318 | return decryptFile(options); |
| 319 | } |
| 320 | |
| 321 | decryptMessage(options) { |
| 322 | options.unlockKey = async options => { |
no test coverage detected