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) • 304 B
JavaScript
import { BaseDesEncryptAndDecrypt } from "./_internals/base/encrypt-and-decrypt.js";
//#region src/des/ofb.ts
var Ofb = class extends BaseDesEncryptAndDecrypt {
constructor(key, encodingOptions) {
super(key, "ofb", encodingOptions);
}
};
//#endregion
export { Ofb };
//# sourceMappingURL=ofb.js.map