Fix cygwin build

(cherry picked from commit f1ef8c79db)
This commit is contained in:
Alexey Sokolov
2016-07-19 22:24:27 +01:00
parent dd58e369f8
commit aff7e25043
2 changed files with 12 additions and 6 deletions
+3 -3
View File
@@ -224,16 +224,16 @@ public:
~CBlowfish();
//! output must be freed
static unsigned char *MD5(const unsigned char *input, u_int ilen);
static unsigned char *MD5(const unsigned char *input, unsigned int ilen);
//! returns an md5 of the CString (not hex encoded)
static CString MD5(const CString & sInput, bool bHexEncode = false);
//! output must be the same size as input
void Crypt(unsigned char *input, unsigned char *output, u_int ibytes);
void Crypt(unsigned char *input, unsigned char *output, unsigned int ibytes);
//! must free result
unsigned char * Crypt(unsigned char *input, u_int ibytes);
unsigned char * Crypt(unsigned char *input, unsigned int ibytes);
CString Crypt(const CString & sData);
private: