Is there a no-throw api for AES128? Currently, I am using CryptoPP::StreamTransformationFilter for AES128 which may throw CryptoPP::InvalidCiphertext. This is not an error of course, it is expected behavior but our coding guidelines prefer no-throw api's. All throws (even catched throws) are logged in our application and we want to keep this to a minimum.Thanks,