(keyId)
| 22 | } |
| 23 | |
| 24 | removeKeysForId(keyId) { |
| 25 | let result = []; |
| 26 | result = result.concat(this.publicKeys.removeForId(keyId) || []); |
| 27 | result = result.concat(this.privateKeys.removeForId(keyId) || []); |
| 28 | return result.length ? result : null; |
| 29 | } |
| 30 | |
| 31 | getForAddress(email) { |
| 32 | const result = []; |