X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=crypto%2Fevp%2Fm_dss.c;h=1c7105102d2909cc49d47b6e7084462a088d1a40;hp=3549b1699c0d9fa1775a6fa13954ef290eefb4da;hb=916e56208b8865ed30031a07cfcc9017fc6d298d;hpb=78414a6a897db42c9bcf06aa21c705811ab33921 diff --git a/crypto/evp/m_dss.c b/crypto/evp/m_dss.c index 3549b1699c..1c7105102d 100644 --- a/crypto/evp/m_dss.c +++ b/crypto/evp/m_dss.c @@ -58,25 +58,42 @@ #include #include "cryptlib.h" -#include "evp.h" -#include "objects.h" -#include "x509.h" +#include +#include +#include +#ifndef OPENSSL_NO_DSA +#include +#endif -static EVP_MD dsa_md= +#ifndef OPENSSL_NO_SHA + +static int init(EVP_MD_CTX *ctx) + { return SHA1_Init(ctx->md_data); } + +static int update(EVP_MD_CTX *ctx,const void *data,size_t count) + { return SHA1_Update(ctx->md_data,data,count); } + +static int final(EVP_MD_CTX *ctx,unsigned char *md) + { return SHA1_Final(md,ctx->md_data); } + +static const EVP_MD dsa_md= { NID_dsaWithSHA, NID_dsaWithSHA, SHA_DIGEST_LENGTH, - SHA1_Init, - SHA1_Update, - SHA1_Final, - EVP_PKEY_DSA_method, + EVP_MD_FLAG_PKEY_METHOD_SIGNATURE|EVP_MD_FLAG_PKEY_DIGEST, + init, + update, + final, + NULL, + NULL, + EVP_PKEY_NULL_method, SHA_CBLOCK, sizeof(EVP_MD *)+sizeof(SHA_CTX), }; -EVP_MD *EVP_dss() +const EVP_MD *EVP_dss(void) { return(&dsa_md); } - +#endif