From 2780ac962ec75f548acb616dd810515e528ac0b1 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Wed, 17 Aug 2016 00:06:57 +0200 Subject: Linux: fix various compilation issues under Linux. --- src/Crypto/GostCipher.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'src/Crypto/GostCipher.h') diff --git a/src/Crypto/GostCipher.h b/src/Crypto/GostCipher.h index 35c6537c..40962073 100644 --- a/src/Crypto/GostCipher.h +++ b/src/Crypto/GostCipher.h @@ -12,6 +12,12 @@ #ifndef GOST_CIPHER_H #define GOST_CIPHER_H +#include "Common/Tcdefs.h" + +#ifdef __cplusplus +extern "C" { +#endif + //In unsigned chars #define GOST_KEYSIZE 32 #define GOST_BLOCKSIZE 8 @@ -27,7 +33,6 @@ #define rotl32(b, shift) ((b << shift) | (b >> (32 - shift))) #endif -typedef unsigned char byte; #ifdef GST_WINDOWS_BOOT typedef int gst_word; typedef long gst_dword; @@ -57,5 +62,9 @@ void gost_set_key(const byte *key, gost_kds *ks); #define GOST_KS (0) #endif +#ifdef __cplusplus +} +#endif + #endif -- cgit v1.2.3