decrypt method
Decrypt the given bytes.
Implementation
@override
int decrypt(
Uint8List inp,
int inpOff,
int inpLength,
Uint8List out,
int outOff,
) {
final iv = inp.view(inpOff, 16);
return _cipher.decrypt(iv, inp, inpOff + 16, inpLength - 16, out, 0);
}