aboutsummaryrefslogtreecommitdiff
path: root/include/openssl/hmac.h
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2020-01-14 10:49:28 +1000
committerPauli <paul.dale@oracle.com>2020-01-29 19:49:23 +1000
commitfd4d283e7527cb711a4ff42d5ddcbc40828077f5 (patch)
treec7551cdc98d6e4ea350e7d94ec54a78576ff6bde /include/openssl/hmac.h
parenta6d572e60120e0ffb42aece17a085f0fed1b8f6f (diff)
downloadopenssl-fd4d283e7527cb711a4ff42d5ddcbc40828077f5.zip
openssl-fd4d283e7527cb711a4ff42d5ddcbc40828077f5.tar.gz
openssl-fd4d283e7527cb711a4ff42d5ddcbc40828077f5.tar.bz2
hmac: preprocessor indentation fixes
Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/10836)
Diffstat (limited to 'include/openssl/hmac.h')
-rw-r--r--include/openssl/hmac.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/openssl/hmac.h b/include/openssl/hmac.h
index 2f80038..e06c204 100644
--- a/include/openssl/hmac.h
+++ b/include/openssl/hmac.h
@@ -24,9 +24,9 @@
# define HMAC_MAX_MD_CBLOCK 128 /* Deprecated */
# endif
-#ifdef __cplusplus
+# ifdef __cplusplus
extern "C" {
-#endif
+# endif
size_t HMAC_size(const HMAC_CTX *e);
HMAC_CTX *HMAC_CTX_new(void);
@@ -50,8 +50,8 @@ __owur int HMAC_CTX_copy(HMAC_CTX *dctx, HMAC_CTX *sctx);
void HMAC_CTX_set_flags(HMAC_CTX *ctx, unsigned long flags);
const EVP_MD *HMAC_CTX_get_md(const HMAC_CTX *ctx);
-#ifdef __cplusplus
+# ifdef __cplusplus
}
-#endif
+# endif
#endif