diff --git a/proxmox-subscription/src/sign.rs b/proxmox-subscription/src/sign.rs index 923cd41e..50ee352b 100644 --- a/proxmox-subscription/src/sign.rs +++ b/proxmox-subscription/src/sign.rs @@ -82,7 +82,7 @@ impl SignedResponse { match key.verify(&canonical, &self.signature) { Ok(()) => Ok(self.blobs), - Err(_) => todo!(), + Err(err) => bail!("Failed to verify response signature - {err}"), } } }