import { Commands, Options, DefaultValues } from './types'; export declare const IV_BLOCK_LENGTH = 16; /** * List of available commands * @type {({description: string, command: string}|{description: string, command: string})[]} */ export declare const COMMANDS: Commands; /** * Define the options for commander * @type {{ * version: {description: string, label: string}, * cipher: {description: string, label: string}, * help: {description: string, label: string}, * password: {description: string, label: string}, * list: {description: string, label: string}, * encoding: {description: string, label: string} * helpCommand: {description: string, label: string} * }} */ export declare const options: Options; /** * Default parameters * @type {{ENCODING: string, HASH_ALGORITHM: string, CIPHER_ALGORITHM: string, EXTENSION: string}} */ export declare const DEFAULT: DefaultValues; /** * Password special characters * https://www.owasp.org/index.php/Password_special_characters * @type {[*]} */ export declare const SPECIAL_CHARACTERS: string[]; export declare const SupportedCiphers: string[];