aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/evp/m_null.c
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2001-09-02 20:05:27 +0000
committerBen Laurie <ben@openssl.org>2001-09-02 20:05:27 +0000
commit26188931147826e280c73ac2692081ce230885c6 (patch)
treecad4789b556b6ba313d41bd5c4a63f03b9a8a396 /crypto/evp/m_null.c
parent36026dfc0103b289b53b1ae9307cfd634b97afae (diff)
downloadopenssl-26188931147826e280c73ac2692081ce230885c6.tar.gz
Make MD functions take EVP_MD_CTX * instead of void *, add copy() function.
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 *),