aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/evp/m_null.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/evp/m_null.c')
-rw-r--r--crypto/evp/m_null.c21
1 files changed, 13 insertions, 8 deletions
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 <openssl/objects.h>
#include <openssl/x509.h>
-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 *),