From bde67ec1e2b426a1f8667cafbd8581132afc57b8 Mon Sep 17 00:00:00 2001 From: olszomal Date: Mon, 6 Feb 2023 09:47:31 +0100 Subject: [PATCH] Use BIO_f_md instead of EVP_MD_CTX to calculate timestamp, page hash and leaf hash --- osslsigncode.c | 99 ++++++++++++++++++++++++++------------------------ 1 file changed, 51 insertions(+), 48 deletions(-) diff --git a/osslsigncode.c b/osslsigncode.c index 67b7127..fb6c243 100644 --- a/osslsigncode.c +++ b/osslsigncode.c @@ -860,9 +860,8 @@ static BIO *encode_rfc3161_request(PKCS7 *sig, const EVP_MD *md) { PKCS7_SIGNER_INFO *si; u_char mdbuf[EVP_MAX_MD_SIZE]; - EVP_MD_CTX *mdctx; TimeStampReq *req; - BIO *bout; + BIO *bout, *bhash; u_char *p; int len; STACK_OF(PKCS7_SIGNER_INFO) *signer_info = PKCS7_get_signer_info(sig); @@ -873,15 +872,16 @@ static BIO *encode_rfc3161_request(PKCS7 *sig, const EVP_MD *md) if (!si) return NULL; /* FAILED */ - mdctx = EVP_MD_CTX_new(); - if (!EVP_DigestInit(mdctx, md)) { - EVP_MD_CTX_free(mdctx); - printf("Unable to set up the digest context\n"); + bhash = BIO_new(BIO_f_md()); + if (!BIO_set_md(bhash, md)) { + printf("Unable to set the message digest of BIO\n"); + BIO_free_all(bhash); return NULL; /* FAILED */ } - EVP_DigestUpdate(mdctx, si->enc_digest->data, (size_t)si->enc_digest->length); - EVP_DigestFinal(mdctx, mdbuf, NULL); - EVP_MD_CTX_free(mdctx); + BIO_push(bhash, BIO_new(BIO_s_null())); + BIO_write(bhash, si->enc_digest->data, si->enc_digest->length); + BIO_gets(bhash, mdbuf, EVP_MD_size(md)); + BIO_free_all(bhash); req = TimeStampReq_new(); ASN1_INTEGER_set(req->version, 1); @@ -1569,7 +1569,7 @@ static u_char *pe_calc_page_hash(char *indata, uint32_t header_size, u_char *res, *zeroes; char *sections; const EVP_MD *md = EVP_get_digestbynid(phtype); - EVP_MD_CTX *mdctx; + BIO *bhash; /* NumberOfSections indicates the size of the section table, * which immediately follows the headers. */ @@ -1613,21 +1613,24 @@ static u_char *pe_calc_page_hash(char *indata, uint32_t header_size, pphlen = 4 + EVP_MD_size(md); phlen = pphlen * (3 + (int)nsections + (int)(sigpos / pagesize)); - mdctx = EVP_MD_CTX_new(); - if (!EVP_DigestInit(mdctx, md)) { - EVP_MD_CTX_free(mdctx); - printf("Unable to set up the digest context\n"); - return NULL; /* FAILED */ + bhash = BIO_new(BIO_f_md()); + if (!BIO_set_md(bhash, md)) { + printf("Unable to set the message digest of BIO\n"); + BIO_free_all(bhash); + return NULL; /* FAILED */ } res = OPENSSL_malloc((size_t)phlen); zeroes = OPENSSL_zalloc((size_t)pagesize); - EVP_DigestUpdate(mdctx, indata, header_size + 88); - EVP_DigestUpdate(mdctx, indata + header_size + 92, 60 + pe32plus*16); - EVP_DigestUpdate(mdctx, indata + header_size + 160 + pe32plus*16, + + BIO_push(bhash, BIO_new(BIO_s_null())); + BIO_write(bhash, indata, header_size + 88); + BIO_write(bhash, indata + header_size + 92, 60 + pe32plus*16); + BIO_write(bhash, indata + header_size + 160 + pe32plus*16, hdrsize - (header_size + 160 + pe32plus*16)); - EVP_DigestUpdate(mdctx, zeroes, pagesize - hdrsize); + BIO_write(bhash, zeroes, pagesize - hdrsize); memset(res, 0, 4); - EVP_DigestFinal(mdctx, res + 4, NULL); + BIO_gets(bhash, res + 4, EVP_MD_size(md)); + BIO_free_all(bhash); sections = indata + header_size + 24 + opthdr_size; for (i=0; imessageImprint->digestAlgorithm->algorithm); md = EVP_get_digestbynid(md_nid); - mdctx = EVP_MD_CTX_new(); - if (!EVP_DigestInit(mdctx, md)) { - EVP_MD_CTX_free(mdctx); - printf("Unable to set up the digest context\n"); - return 0; /* FAILED */ + bhash = BIO_new(BIO_f_md()); + if (!BIO_set_md(bhash, md)) { + printf("Unable to set the message digest of BIO\n"); + BIO_free_all(bhash); + return 0; /* FAILED */ } - EVP_DigestUpdate(mdctx, si->enc_digest->data, (size_t)si->enc_digest->length); - EVP_DigestFinal(mdctx, mdbuf, NULL); - EVP_MD_CTX_free(mdctx); + BIO_push(bhash, BIO_new(BIO_s_null())); + BIO_write(bhash, si->enc_digest->data, (size_t)si->enc_digest->length); + BIO_gets(bhash, mdbuf, EVP_MD_size(md)); + BIO_free_all(bhash); /* compare the provided hash against the computed hash */ hash = token->messageImprint->digest;