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 Cfb extends encryptAndDecrypt.BaseDesEncryptAndDecrypt { constructor(key, encodingOptions) { super(key, 'cfb', encodingOptions); } } exports.Cfb = Cfb; //# sourceMappingURL=cfb.cjs.map