UNPKG

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
import { BaseAesEncryptAndDecrypt } from "./_internals/base/encrypt-and-decrypt.js"; //#region src/aes/ctr.ts var Ctr = class extends BaseAesEncryptAndDecrypt { constructor(key, encodingOptions) { super(key, "ctr", encodingOptions); } }; //#endregion export { Ctr }; //# sourceMappingURL=ctr.js.map