summaryrefslogtreecommitdiffstats
path: root/crypto/include/internal/aria.h
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/include/internal/aria.h')
-rw-r--r--crypto/include/internal/aria.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/crypto/include/internal/aria.h b/crypto/include/internal/aria.h
index 073827185a..e402b8eec8 100644
--- a/crypto/include/internal/aria.h
+++ b/crypto/include/internal/aria.h
@@ -25,10 +25,6 @@
# define ARIA_BLOCK_SIZE 16 /* Size of each encryption/decryption block */
# define ARIA_MAX_KEYS 17 /* Number of keys needed in the worst case */
-# ifdef __cplusplus
-extern "C" {
-# endif
-
typedef union {
unsigned char c[ARIA_BLOCK_SIZE];
unsigned int u[ARIA_BLOCK_SIZE / sizeof(unsigned int)];
@@ -51,8 +47,4 @@ int aria_set_decrypt_key(const unsigned char *userKey, const int bits,
void aria_encrypt(const unsigned char *in, unsigned char *out,
const ARIA_KEY *key);
-# ifdef __cplusplus
-}
-# endif
-
#endif