()
| 57 | } |
| 58 | |
| 59 | async handleDecrypt() { |
| 60 | this.setState({waiting: true}); |
| 61 | if (this.state.files.length > 0) { |
| 62 | await this.decryptFiles(this.state.files); |
| 63 | } |
| 64 | if (this.state.message !== '') { |
| 65 | await this.decryptMessage(this.state.message); |
| 66 | } |
| 67 | this.setState({waiting: false}); |
| 68 | } |
| 69 | |
| 70 | handleBack() { |
| 71 | this.setState({decrypted: []}); |
nothing calls this directly
no test coverage detected