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