From e8f19a6efeb2b622c190e1821ef38bce3453acf3 Mon Sep 17 00:00:00 2001 From: olszomal Date: Tue, 31 Dec 2024 13:20:07 +0100 Subject: [PATCH] Added verbose output for digest encryption algorithm and signature during verification --- osslsigncode.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/osslsigncode.c b/osslsigncode.c index 70a2a2f..2203a26 100644 --- a/osslsigncode.c +++ b/osslsigncode.c @@ -2799,6 +2799,15 @@ static time_t time_t_timestamp_get_attributes(CMS_ContentInfo **timestamp, PKCS7 } } } + + /* Signature */ + if (verbose) { + md_nid = OBJ_obj2nid(si->digest_enc_alg->algorithm); + printf("\nDigest encryption algorithm: %s\n", + (md_nid == NID_undef) ? "UNKNOWN" : OBJ_nid2sn(md_nid)); + print_hash("Signature", "", ASN1_STRING_get0_data(si->enc_digest), ASN1_STRING_length(si->enc_digest)); + } + return time; }