1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
| #include "Header/TestDll.h" #include "Header/DataTpye.h" #include "cstdio"
char key[] = "Do_y0u_kn0w_d11!"; dword delta = 0x9e3779c8; int8_t ans[] = {122,21,-11,118,-96,65,-30,-72,-98,125,5,72,-46,30,25,-71,30,19,-76,-52,47,35,-3,-102,43,74,-29,117,-72,-44,-99,63,67,-46 ,125,41,-18,63,-90,60,20,-109,43,89,73,-80,-90,-81,};
qword __stdcall Add(qword x,qword y){ return x+y; } qword __stdcall Sub(qword x,qword y){ return x-y; } qword __stdcall Mul(qword x,qword y){ return x*y; }
qword __stdcall Div(qword x,qword y){ return x/y; }
qword __stdcall Xor(qword x,qword y){ return x^y; }
qword __stdcall Or(qword x,qword y){ return x|y; }
qword __stdcall And(qword x,qword y){ return x&y; }
qword __stdcall Not(qword x){ return !x; }
bool __stdcall CheckFlag(char* flag){ for (auto i = 0; *(flag+i); ++i) { if(*(flag+i) != ans[i])return false; } return true; } ---------------------------------------------------------------------------------------
#ifndef EXTERN_LIBRARY_TESTDLL_H #define EXTERN_LIBRARY_TESTDLL_H
#include "DataTpye.h" qword __stdcall Add(qword x,qword y); qword __stdcall Sub(qword x,qword y); qword __stdcall Mul(qword x,qword y); qword __stdcall Div(qword x,qword y); qword __stdcall Xor(qword x,qword y); qword __stdcall Or(qword x,qword y); qword __stdcall And(qword x,qword y); qword __stdcall Not(qword x); bool __stdcall CheckFlag(char* flag); #endif ----------------------------------------------------------------------------------------
EXPORTS
Add @1 NONAME Sub @2 NONAME Mul @3 NONAME Div @4 NONAME Xor @5 NONAME Or @6 NONAME And @7 NONAME Not @8 NONAME key @10 NONAME DATA delta @11 NONAME DATA CheckFlag @12 NONAME
|