interface Decryptors {
    decrypt: ((ciphertext: IEncryptedPayload) => Promise<string>);
    encrypt: ((plaintext: string) => Promise<IEncryptedPayload>);
}

Properties

Properties

decrypt: ((ciphertext: IEncryptedPayload) => Promise<string>)
encrypt: ((plaintext: string) => Promise<IEncryptedPayload>)
""