From: Dr. Stephen Henson Date: Tue, 2 Feb 2010 14:26:32 +0000 (+0000) Subject: tolerate broken CMS/PKCS7 implementations using signature OID instead of digest X-Git-Tag: OpenSSL_1_0_0~63 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=45acdd6f6dde19b4f6a2c5162c1019aff6670916;p=openssl tolerate broken CMS/PKCS7 implementations using signature OID instead of digest --- diff --git a/crypto/cms/cms_lib.c b/crypto/cms/cms_lib.c index 6c0d5c097c..d00fe0f87b 100644 --- a/crypto/cms/cms_lib.c +++ b/crypto/cms/cms_lib.c @@ -406,7 +406,11 @@ int cms_DigestAlgorithm_find_ctx(EVP_MD_CTX *mctx, BIO *chain, return 0; } BIO_get_md_ctx(chain, &mtmp); - if (EVP_MD_CTX_type(mtmp) == nid) + if (EVP_MD_CTX_type(mtmp) == nid + /* Workaround for broken implementations that use signature + * algorithm OID instead of digest. + */ + || EVP_MD_pkey_type(EVP_MD_CTX_md(mtmp)) == nid) { EVP_MD_CTX_copy_ex(mctx, mtmp); return 1;