mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-04 08:50:12 -05:00
Added verbose output for digest encryption algorithm and signature during verification
This commit is contained in:
parent
3a8e25e5bb
commit
e8f19a6efe
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user