UNPKG

node-ciphers

Version:

Lightweight AES and DES encryption library for Node.js, featuring flexible encoding, multiple cipher modes, and TypeScript support.

8 lines (7 loc) 324 B
import { BaseCipherEncodingOptions } from "./options.js"; //#region src/types/des.d.ts type DesCipherAlgorithm = `des${'' | '-ede3' | '-ede'}-${DesCipherMode}`; type DesCipherMode = 'cbc' | 'cfb1' | 'cfb8' | 'cfb' | 'ecb' | 'ofb'; //#endregion export { DesCipherAlgorithm, DesCipherMode }; //# sourceMappingURL=des.d.ts.map