UNPKG

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
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/cfb.d.ts declare class Cfb extends BaseAesEncryptAndDecrypt { constructor(key: BinaryLike, encodingOptions?: BaseCipherEncodingOptions); } //#endregion export { Cfb }; //# sourceMappingURL=cfb.d.ts.map