| 14 | } |
| 15 | |
| 16 | export interface Decryptor { |
| 17 | decrypt(data: Uint8Array[]): Promise<(any | null)[]>; |
| 18 | } |
| 19 | |
| 20 | export class SecretBoxEncryption implements Encryptor, Decryptor { |
| 21 | private readonly secretKey: Uint8Array; |
no outgoing calls
no test coverage detected