node-ciphers
Version:
Lightweight AES and DES encryption library for Node.js, featuring flexible encoding, multiple cipher modes, and TypeScript support.
12 lines (10 loc) • 309 B
JavaScript
import { BaseDesEncryptAndDecrypt } from "./_internals/base/encrypt-and-decrypt.js";
//#region src/des/cfb8.ts
var Cfb8 = class extends BaseDesEncryptAndDecrypt {
constructor(key, encodingOptions) {
super(key, "cfb8", encodingOptions);
}
};
//#endregion
export { Cfb8 };
//# sourceMappingURL=cfb8.js.map