node-ciphers
Version:
Lightweight AES and DES encryption library for Node.js, featuring flexible encoding, multiple cipher modes, and TypeScript support.
12 lines (11 loc) • 442 B
TypeScript
import { BaseCipherEncodingOptions } from "../types/options.js";
import "../types/index.js";
import { BaseAesEncryptAndDecrypt } from "./_internals/base/encrypt-and-decrypt.js";
import { BinaryLike } from "node:crypto";
//#region src/aes/cbc.d.ts
declare class Cbc extends BaseAesEncryptAndDecrypt {
constructor(key: BinaryLike, encodingOptions?: BaseCipherEncodingOptions);
}
//#endregion
export { Cbc };
//# sourceMappingURL=cbc.d.ts.map