export default interface ICipher { algorithm: string; encrypt: (plaintext: InputPlaintext) => Promise; decrypt: (ciphertext: InputCiphertext) => Promise; }