summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/evp/m_null.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/evp/m_null.c')
-rw-r--r--src/lib/libcrypto/evp/m_null.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/lib/libcrypto/evp/m_null.c b/src/lib/libcrypto/evp/m_null.c
index f3c00ad5c8..ad658e7045 100644
--- a/src/lib/libcrypto/evp/m_null.c
+++ b/src/lib/libcrypto/evp/m_null.c
@@ -62,17 +62,20 @@
62#include <openssl/objects.h> 62#include <openssl/objects.h>
63#include <openssl/x509.h> 63#include <openssl/x509.h>
64 64
65static int init(EVP_MD_CTX *ctx) 65static int
66init(EVP_MD_CTX *ctx)
66{ 67{
67 return 1; 68 return 1;
68} 69}
69 70
70static int update(EVP_MD_CTX *ctx, const void *data, size_t count) 71static int
72update(EVP_MD_CTX *ctx, const void *data, size_t count)
71{ 73{
72 return 1; 74 return 1;
73} 75}
74 76
75static int final(EVP_MD_CTX *ctx, unsigned char *md) 77static int
78final(EVP_MD_CTX *ctx, unsigned char *md)
76{ 79{
77 return 1; 80 return 1;
78} 81}