Justus Winter
Results
41
issues of
Justus Winter
In #154 I tried to use `Cipher::update_into` with CBC, without success. I also tried `Cipher::finish_into`, and that also fails: ```rust fn main() { let mut cipher = botan::Cipher::new( "AES-128/CBC", botan::CipherDirection::Encrypt).unwrap();...