summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2020-01-08 12:50:56 +1000
committerPauli <paul.dale@oracle.com>2020-01-12 12:05:03 +1000
commitc52ec197aae43e624702a79cdbb73a1d2c7c9d09 (patch)
tree4da87386bab9ae7d947401575c9303d2c2b852d3 /include
parent33ee9ae059ac6f0ce1871da96116c6d582ec524b (diff)
whirlpool: fix preprocessor indentation
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/10779)
Diffstat (limited to 'include')
-rw-r--r--include/openssl/whrlpool.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/include/openssl/whrlpool.h b/include/openssl/whrlpool.h
index 83f34288e4..89adca6f73 100644
--- a/include/openssl/whrlpool.h
+++ b/include/openssl/whrlpool.h
@@ -16,18 +16,18 @@
# define HEADER_WHRLPOOL_H
# endif
-#include <openssl/opensslconf.h>
+# include <openssl/opensslconf.h>
# ifndef OPENSSL_NO_WHIRLPOOL
-# include <openssl/e_os2.h>
-# include <stddef.h>
-# ifdef __cplusplus
+# include <openssl/e_os2.h>
+# include <stddef.h>
+# ifdef __cplusplus
extern "C" {
-# endif
+# endif
-# define WHIRLPOOL_DIGEST_LENGTH (512/8)
-# define WHIRLPOOL_BBLOCK 512
-# define WHIRLPOOL_COUNTER (256/8)
+# define WHIRLPOOL_DIGEST_LENGTH (512/8)
+# define WHIRLPOOL_BBLOCK 512
+# define WHIRLPOOL_COUNTER (256/8)
typedef struct {
union {
@@ -46,9 +46,9 @@ void WHIRLPOOL_BitUpdate(WHIRLPOOL_CTX *c, const void *inp, size_t bits);
int WHIRLPOOL_Final(unsigned char *md, WHIRLPOOL_CTX *c);
unsigned char *WHIRLPOOL(const void *inp, size_t bytes, unsigned char *md);
-# ifdef __cplusplus
+# ifdef __cplusplus
}
-# endif
+# endif
# endif
#endif