Defines the structure for when we interact with the AES methods in our underlying cryptographic library

interface AES {
    input: string;
    iterations?: number;
    password: string;
}

Properties

input: string
iterations?: number
password: string