mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
cms: remove most references to EVP_sha1()
Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14881)
This commit is contained in:
parent
192d500878
commit
27344bb82a
@ -169,6 +169,10 @@ CMS_ContentInfo *CMS_digest_create_ex(BIO *in, const EVP_MD *md,
|
||||
{
|
||||
CMS_ContentInfo *cms;
|
||||
|
||||
/*
|
||||
* Because the EVP_MD is cached and can be a legacy algorithm, we
|
||||
* cannot fetch the algorithm if it isn't supplied.
|
||||
*/
|
||||
if (md == NULL)
|
||||
md = EVP_sha1();
|
||||
cms = ossl_cms_DigestedData_create(md, ctx, propq);
|
||||
|
Loading…
x
Reference in New Issue
Block a user