UNPKG

node-ciphers

Version:

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

5 lines (3 loc) 247 B
export type { BaseCipherEncodingOptions as DesCipherEncodingOptions } from './options'; export type DesCipherAlgorithm = `des${'' | '-ede3' | '-ede'}-${DesCipherMode}`; export type DesCipherMode = 'cbc' | 'cfb1' | 'cfb8' | 'cfb' | 'ecb' | 'ofb';