(hash: string, keyId: string)
| 15 | private keyId: string |
| 16 | |
| 17 | constructor(hash: string, keyId: string) { |
| 18 | this.password = hash |
| 19 | this.keyId = keyId |
| 20 | } |
| 21 | |
| 22 | getEncryptedString(data: string): string { |
| 23 | if (!this.password) { |
nothing calls this directly
no outgoing calls
no test coverage detected