Initial commit of the FFXIV 1.0 lobby server.

This commit is contained in:
Filip Maj 2015-08-26 13:38:58 -04:00
commit c1e214175f
48 changed files with 55780 additions and 0 deletions

18
Blowfish/blowfish.h Normal file
View file

@ -0,0 +1,18 @@
#include "cbasetypes.h"
#define MAXKEYBYTES 56 /* 448 bits */
#define little_endian 1 /* Eg: Intel */
//#define big_endian 1 /* Eg: Motorola */
#ifdef __cplusplus
extern "C"
{
#endif
int16 opensubkeyfile(void);
uint32 F(uint32 x);
__declspec(dllexport) void blowfish_encipher(uint32 *xl, uint32 *xr, uint32 * P);
__declspec(dllexport) void blowfish_decipher(uint32 *xl, uint32 *xr, uint32 * P);
__declspec(dllexport) short initializeBlowfish(char key[], int16 keybytes, uint32 * P);
#ifdef __cplusplus
}
#endif