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) 267 B
import { BaseAesEncryptAndDecrypt } from './base/encrypt-and-decrypt.mjs'; class Cfb1 extends BaseAesEncryptAndDecrypt { constructor(key, encodingOptions) { super(key, 'cfb1', encodingOptions); } } export { Cfb1 }; //# sourceMappingURL=cfb1.mjs.map