UNPKG

node-ciphers

Version:

Lightweight AES and DES encryption library for Node.js, featuring flexible encoding, multiple cipher modes, and TypeScript support.

13 lines (9 loc) 293 B
'use strict'; const encryptAndDecrypt = require('./base/encrypt-and-decrypt.cjs'); class Ctr extends encryptAndDecrypt.BaseAesEncryptAndDecrypt { constructor(key, encodingOptions) { super(key, 'ctr', encodingOptions); } } exports.Ctr = Ctr; //# sourceMappingURL=ctr.cjs.map