node-ciphers
Version:
Lightweight AES and DES encryption library for Node.js, featuring flexible encoding, multiple cipher modes, and TypeScript support.
7 lines • 349 B
TypeScript
import type { BinaryLike } from 'node:crypto';
import type { DesCipherEncodingOptions } from '../types';
import { BaseDesEncryptAndDecrypt } from './base/encrypt-and-decrypt';
export declare class Cfb extends BaseDesEncryptAndDecrypt {
constructor(key: BinaryLike, encodingOptions?: DesCipherEncodingOptions);
}
//# sourceMappingURL=cfb.d.ts.map