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) 298 B
'use strict'; const encryptAndDecrypt = require('./base/encrypt-and-decrypt.cjs'); class Cfb8 extends encryptAndDecrypt.BaseAesEncryptAndDecrypt { constructor(key, encodingOptions) { super(key, 'cfb8', encodingOptions); } } exports.Cfb8 = Cfb8; //# sourceMappingURL=cfb8.cjs.map