mode-ofb.d.ts 324 B

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