node-ciphers
Version:
Lightweight AES and DES encryption library for Node.js, featuring flexible encoding, multiple cipher modes, and TypeScript support.
11 lines • 369 B
TypeScript
export declare const availableCiphers: readonly string[];
export declare const defaultEncodingOptions: {
readonly authTag: "hex";
readonly decryptInput: "hex";
readonly decryptOutput: "utf-8";
readonly encryptInput: "utf-8";
readonly encryptOutput: "hex";
readonly iv: "hex";
readonly key: "utf-8";
};
//# sourceMappingURL=constants.d.ts.map