crypto-es
Version:
A cryptography algorithms library compatible with ES6 and TypeScript
26 lines (24 loc) • 606 B
text/typescript
import { BlockCipherMode } from "./cipher-core.mjs";
//#region src/mode-cfb.d.ts
/**
* CFB Encryptor
*/
declare class CFBEncryptor extends BlockCipherMode {
processBlock(words: number[], offset: number): void;
}
/**
* CFB Decryptor
*/
declare class CFBDecryptor extends BlockCipherMode {
processBlock(words: number[], offset: number): void;
}
/**
* Cipher Feedback block mode.
*/
declare class CFB extends BlockCipherMode {
static readonly Encryptor: typeof CFBEncryptor;
static readonly Decryptor: typeof CFBDecryptor;
}
//#endregion
export { CFB };
//# sourceMappingURL=mode-cfb.d.mts.map