UNPKG

node-ciphers

Version:

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

13 lines (9 loc) 293 B
'use strict'; const encryptAndDecrypt = require('./base/encrypt-and-decrypt.cjs'); class Cbc extends encryptAndDecrypt.BaseDesEncryptAndDecrypt { constructor(key, encodingOptions) { super(key, 'cbc', encodingOptions); } } exports.Cbc = Cbc; //# sourceMappingURL=cbc.cjs.map