UNPKG

node-ciphers

Version:

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

11 lines (8 loc) 263 B
import { BaseAesEncryptAndDecrypt } from './base/encrypt-and-decrypt.mjs'; class Cbc extends BaseAesEncryptAndDecrypt { constructor(key, encodingOptions) { super(key, 'cbc', encodingOptions); } } export { Cbc }; //# sourceMappingURL=cbc.mjs.map