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/cbc.ts
var Cbc = class extends BaseDesEncryptAndDecrypt {
constructor(key, encodingOptions) {
super(key, "cbc", encodingOptions);
}
};
//#endregion
export { Cbc };
//# sourceMappingURL=cbc.js.map