Skip to content

Commit

Permalink
Another tweak to the verbiage when verifying MD5-based RSA key
Browse files Browse the repository at this point in the history
  • Loading branch information
micahsnyder committed Dec 16, 2024
1 parent f636b92 commit fa87545
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libclamav_rust/src/cvd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -468,8 +468,8 @@ impl CVD {
// Fall back to verifying with the MD5-based attached RSA digital signature
match self.verify_rsa_dsig() {
Ok(()) => {
debug!("CVD verified successfully with Talos MD5-based RSA digital signature");
Ok("Cisco Talos MD5-Based RSA Digital Signature".to_string())
debug!("CVD verified successfully with Legacy ClamAV RSA Public Key");
Ok("Legacy ClamAV RSA Public Key".to_string())
}
Err(e) => {
warn!(
Expand Down

0 comments on commit fa87545

Please sign in to comment.