decrypt_ciphertext_stream

Function decrypt_ciphertext_stream 

Source
pub fn decrypt_ciphertext_stream<R, W>(
    input_reader: R,
    output_writer: W,
    initial_vector: &Iv16,
    encryption_key: &Aes256Key,
    config: StreamConfig,
) -> Result<(), AescryptError>
where R: Read, W: Write,