summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2020-01-14 09:03:55 +1000
committerPauli <paul.dale@oracle.com>2020-01-16 07:07:27 +1000
commit26aae51347465764c755f0985bd1ac85d3f734e6 (patch)
treef89674f69f43698acd7955d75b0b9f48cdee430c /include
parenta8fca7284a98ca58804e17ade92fadd7a62056ae (diff)
rc5: fix preprocessor indentation
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/10834)
Diffstat (limited to 'include')
-rw-r--r--include/openssl/rc5.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/include/openssl/rc5.h b/include/openssl/rc5.h
index 53e23ff915..22bdeca237 100644
--- a/include/openssl/rc5.h
+++ b/include/openssl/rc5.h
@@ -19,25 +19,25 @@
# include <openssl/opensslconf.h>
# ifndef OPENSSL_NO_RC5
-# ifdef __cplusplus
+# ifdef __cplusplus
extern "C" {
-# endif
+# endif
-# define RC5_ENCRYPT 1
-# define RC5_DECRYPT 0
+# define RC5_ENCRYPT 1
+# define RC5_DECRYPT 0
-# define RC5_32_INT unsigned int
+# define RC5_32_INT unsigned int
-# define RC5_32_BLOCK 8
-# define RC5_32_KEY_LENGTH 16/* This is a default, max is 255 */
+# define RC5_32_BLOCK 8
+# define RC5_32_KEY_LENGTH 16/* This is a default, max is 255 */
/*
* This are the only values supported. Tweak the code if you want more The
* most supported modes will be RC5-32/12/16 RC5-32/16/8
*/
-# define RC5_8_ROUNDS 8
-# define RC5_12_ROUNDS 12
-# define RC5_16_ROUNDS 16
+# define RC5_8_ROUNDS 8
+# define RC5_12_ROUNDS 12
+# define RC5_16_ROUNDS 16
typedef struct rc5_key_st {
/* Number of rounds */
@@ -61,9 +61,9 @@ void RC5_32_ofb64_encrypt(const unsigned char *in, unsigned char *out,
long length, RC5_32_KEY *schedule,
unsigned char *ivec, int *num);
-# ifdef __cplusplus
+# ifdef __cplusplus
}
-# endif
+# endif
# endif
#endif