When used like in this example the cipher
is consumed by decrypt()
and thus seems to require the whole file to be in memory?
How would I apply the AES-CBC decryption to, for example, a reqwest::blocking::Body
, which implements std::io::Read
, without reading the whole body into memory at the same time?