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_null.c | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) (limited to 'crypto/evp/m_null.c') diff --git a/crypto/evp/m_null.c b/crypto/evp/m_null.c index 8952709330..fa3a0301d9 100644 --- a/crypto/evp/m_null.c +++ b/crypto/evp/m_null.c @@ -62,20 +62,25 @@ #include #include -static int function(void) - { - return 1; - } +static int init(EVP_MD_CTX *ctx) + { return 1; } + +static int update(EVP_MD_CTX *ctx,const void *data,unsigned long count) + { return 1; } + +static int final(EVP_MD_CTX *ctx,unsigned char *md) + { return 1; } static const EVP_MD null_md= { NID_undef, NID_undef, 0, - function, - function, - function, - + 0, + init, + update, + final, + NULL, EVP_PKEY_NULL_method, 0, sizeof(EVP_MD *), -- cgit v1.2.3