diff --git a/src/utils/decrypt.rs b/src/utils/decrypt.rs index 87a4baf..9074c76 100644 --- a/src/utils/decrypt.rs +++ b/src/utils/decrypt.rs @@ -26,5 +26,7 @@ pub async fn decrypt_file( let decrypted_data = cipher.decrypt_vec(&mut buffer) .map_err(|e| HttpError::server_error(e.to_string()))?; + + Ok(decrypted_data) } \ No newline at end of file