From 26188931147826e280c73ac2692081ce230885c6 Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Sun, 2 Sep 2001 20:05:27 +0000 Subject: Make MD functions take EVP_MD_CTX * instead of void *, add copy() function. --- crypto/evp/m_md5.c | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'crypto/evp/m_md5.c') diff --git a/crypto/evp/m_md5.c b/crypto/evp/m_md5.c index 3d3ec0f79b..69ec8aa027 100644 --- a/crypto/evp/m_md5.c +++ b/crypto/evp/m_md5.c @@ -64,14 +64,25 @@ #include #include +static int init(EVP_MD_CTX *ctx) + { return MD5_Init(ctx->md_data); } + +static int update(EVP_MD_CTX *ctx,const void *data,unsigned long count) + { return MD5_Update(ctx->md_data,data,count); } + +static int final(EVP_MD_CTX *ctx,unsigned char *md) + { return MD5_Final(md,ctx->md_data); } + static const EVP_MD md5_md= { NID_md5, NID_md5WithRSAEncryption, MD5_DIGEST_LENGTH, - MD5_Init, - MD5_Update, - MD5_Final, + 0, + init, + update, + final, + NULL, EVP_PKEY_RSA_method, MD5_CBLOCK, sizeof(EVP_MD *)+sizeof(MD5_CTX), -- cgit v1.2.3