mode-cfb.d.ts 380 B

12345678910
  1. import { ModeOfOperation } from "./mode.js";
  2. export declare class CFB extends ModeOfOperation {
  3. #private;
  4. readonly segmentSize: number;
  5. constructor(key: Uint8Array, iv?: Uint8Array, segmentSize?: number);
  6. get iv(): Uint8Array;
  7. encrypt(plaintext: Uint8Array): Uint8Array;
  8. decrypt(ciphertext: Uint8Array): Uint8Array;
  9. }
  10. //# sourceMappingURL=mode-cfb.d.ts.map