decrypt abstract method

FutureOr<int> decrypt(
  1. Uint8List inp,
  2. int inpOff,
  3. int inpLength,
  4. Uint8List out,
  5. int outOff,
)

Decrypt the given bytes.

  • inp: the total encrypted bytes
  • inpOff: the byte offset to start decryption at
  • inpLength: the number of bytes (length) to decrypt
  • out: the buffer to write the decrypted output in
  • outOff: the byte offset to write the decrypted output to

returns the length of the new decrypted output

Implementation

FutureOr<int> decrypt(
    Uint8List inp, int inpOff, int inpLength, Uint8List out, int outOff);