From: Bodo Möller Date: Thu, 16 May 2002 12:53:34 +0000 (+0000) Subject: fix EVP_dsa_sha macro X-Git-Tag: OpenSSL_0_9_7-beta1~45 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=855f0b4f2f56bc870ec606270136c551a7976845;p=oweals%2Fopenssl.git fix EVP_dsa_sha macro Submitted by: Nils Larsch --- diff --git a/CHANGES b/CHANGES index dd2f04ea80..500d3d481a 100644 --- a/CHANGES +++ b/CHANGES @@ -1613,7 +1613,12 @@ des-cbc 3624.96k 5258.21k 5530.91k 5624.30k 5628.26k *) Clean old EAY MD5 hack from e_os.h. [Richard Levitte] - Changes between 0.9.6c and 0.9.6d [XX xxx 2002] + Changes between 0.9.6d and 0.9.6e [XX xxx XXXX] + + *) Fix EVP_dsa_sha macro. + [Nils Larsch] + + Changes between 0.9.6c and 0.9.6d [9 May 2002] *) Fix crypto/asn1/a_sign.c so that 'parameters' is omitted (not encoded as NULL) with id-dsa-with-sha1. diff --git a/crypto/evp/evp.h b/crypto/evp/evp.h index 96123daadd..0d870d60be 100644 --- a/crypto/evp/evp.h +++ b/crypto/evp/evp.h @@ -184,7 +184,7 @@ typedef struct evp_pkey_md_st EVP_rsa_octet_string(),EVP_mdc2()) #define EVP_dsa_sha() \ EVP_PKEY_MD_add(NID_dsaWithSHA,\ - EVP_dsa(),EVP_mdc2()) + EVP_dsa(),EVP_sha()) #define EVP_dsa_sha1() \ EVP_PKEY_MD_add(NID_dsaWithSHA1,\ EVP_dsa(),EVP_sha1())