(email)
| 29 | } |
| 30 | |
| 31 | getForAddress(email) { |
| 32 | const result = []; |
| 33 | result.push(...this.publicKeys.getForAddress(email)); |
| 34 | result.push(...this.privateKeys.getForAddress(email)); |
| 35 | return result; |
| 36 | } |
| 37 | |
| 38 | getAllKeys() { |
| 39 | return this.publicKeys.keys.concat(this.privateKeys.keys); |
nothing calls this directly
no test coverage detected