mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-10 06:24:38 +02:00
Initial commit of the FFXIV 1.0 lobby server.
This commit is contained in:
commit
c1e214175f
48 changed files with 55780 additions and 0 deletions
18
Blowfish/blowfish.h
Normal file
18
Blowfish/blowfish.h
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue