diff options
author | 2014-05-08 16:05:38 +0000 | |
---|---|---|
committer | 2014-05-08 16:05:38 +0000 | |
commit | 0a220ba4f2349d4df68e000c28565763babccff1 (patch) | |
tree | cd89ed44620354376d1286222f8f7de14a1be391 /lib/libcrypto/evp/m_null.c | |
parent | KNF. (diff) | |
download | wireguard-openbsd-0a220ba4f2349d4df68e000c28565763babccff1.tar.xz wireguard-openbsd-0a220ba4f2349d4df68e000c28565763babccff1.zip |
More KNF.
Diffstat (limited to 'lib/libcrypto/evp/m_null.c')
-rw-r--r-- | lib/libcrypto/evp/m_null.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/libcrypto/evp/m_null.c b/lib/libcrypto/evp/m_null.c index f3c00ad5c8f..ad658e7045e 100644 --- a/lib/libcrypto/evp/m_null.c +++ b/lib/libcrypto/evp/m_null.c @@ -62,17 +62,20 @@ #include <openssl/objects.h> #include <openssl/x509.h> -static int init(EVP_MD_CTX *ctx) +static int +init(EVP_MD_CTX *ctx) { return 1; } -static int update(EVP_MD_CTX *ctx, const void *data, size_t count) +static int +update(EVP_MD_CTX *ctx, const void *data, size_t count) { return 1; } -static int final(EVP_MD_CTX *ctx, unsigned char *md) +static int +final(EVP_MD_CTX *ctx, unsigned char *md) { return 1; } |