@bakesaled/cement
Version:
A library that encrypts and decrypt files or strings.
12 lines (11 loc) • 378 B
TypeScript
/// <reference types="node" />
import { HexBase64BinaryEncoding, Utf8AsciiBinaryEncoding } from 'crypto';
export declare const config: {
KEY_LENGTH: number;
IV_LENGTH: number;
BASE64_ENCODING: HexBase64BinaryEncoding;
UTF8_ENCODING: Utf8AsciiBinaryEncoding;
CIPHER_ALGORITHM: string;
UTF8_FILE_ENCODING: string;
FILE_EXTENSION: string;
};