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