summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/evp/m_null.c
diff options
context:
space:
mode:
authorjsing <>2014-05-08 16:05:38 +0000
committerjsing <>2014-05-08 16:05:38 +0000
commit7779067b7b5b2153b20dc72d5116caaa3383df0c (patch)
treebccc71e2bc50ab48238241efca5212c0b3a7faa5 /src/lib/libcrypto/evp/m_null.c
parentb590070115ee73703baaa8c896eed6bb11a45b0e (diff)
downloadopenbsd-7779067b7b5b2153b20dc72d5116caaa3383df0c.tar.gz
openbsd-7779067b7b5b2153b20dc72d5116caaa3383df0c.tar.bz2
openbsd-7779067b7b5b2153b20dc72d5116caaa3383df0c.zip
More KNF.
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}