(options)
| 319 | } |
| 320 | |
| 321 | decryptMessage(options) { |
| 322 | options.unlockKey = async options => { |
| 323 | options.reason = 'PWD_DIALOG_REASON_DECRYPT'; |
| 324 | const result = await this.unlockKey(options); |
| 325 | return result; |
| 326 | }; |
| 327 | return decryptMessage(options); |
| 328 | } |
| 329 | |
| 330 | async initDecryptMessage() { |
| 331 | this.decryptMessageCtrl = await createController('decryptCont'); |
no test coverage detected