/* csp.h */ #include #include #include #include #include #include #include #include #include #include #include #include #include #ifdef _WIN64 #define ALIGNMENT_BOUNDARY 7 #else #define ALIGNMENT_BOUNDARY 3 #endif #ifdef _DEBUG #include // #define BreakPoint #define BreakPoint _CrtDbgBreak(); #define EntryPoint // #define EntryPoint BreakPoint #ifndef ASSERT #define ASSERT _ASSERTE #endif #else // _DEBUG #define BreakPoint #define EntryPoint #ifndef ASSERT #define ASSERT #endif #endif // _DEBUG // Specify which algorithms are supported #define CSP_USE_SHA1 #define CSP_USE_MD5 #define CSP_USE_RC4 #define CSP_USE_RC2 #define CSP_USE_MAC #define CSP_USE_DES40 #define CSP_USE_DES #define CSP_USE_3DES #define CSP_USE_SSL3 // Special definitions #define RC_MAXSALTSIZE 256 #define RC2_DEFEFFSIZE 40 #define RC2_MINEFFSIZE 40 #define RC2_BLOCKLEN 8 #define RC_DEFSALTSIZE 11 #define RC2_WEAK_MAXEFFSIZE 56 #define RC2_STRONG_MAXEFFSIZE 128 /*********************************/ /* Definitions */ /*********************************/ /*********************************/ /* Structure Definitions */ /*********************************/ #define CALG_DES40 CALG_CYLINK_MEK typedef struct _dhSharedNumber { BYTE *shared; DWORD len; } dhSharedNumber;