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

Properties

Properties

decrypt: ((ciphertext) => Promise<string>)

Type declaration

encrypt: ((plaintext) => Promise<IEncryptedPayload>)

Type declaration

Generated using TypeDoc