Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[SOLVED]AES key for .bin files with version 20101117

(oO (||||) (||||) Oo)
Loyal Member
Joined
Aug 6, 2009
Messages
2,132
Reaction score
429
Looking for AES aKey for .bin files with version 20101117
Key is defined in AESFile.h

Code:
const unsigned char aKey[][MAX_KEY_LENGTH] = 
{
    "",
    "E76B2413958B00E193A1",
};

Found what I was looking for

The aes key for bin files with version 20101117 is "A15H3825287T19G082K8" (without the quotation marks).

Change your AESFile.h file to look something like

Code:
// BinÆÄÀÏ Çì´õ¹öÁ¯Á¤º¸¸¦ ÀúÀåÇÏ´Â ¹è¿­const DWORD dwVersion[] = 
{
	20040308,
	20090506,
	20101117
};


// Çì´õ¹öÁ¯¿¡ ´ëÀÀÇÏ´Â Å°°ªÀ» ÀúÀåÇÏ´Â ¹è¿­
const unsigned char aKey[][MAX_KEY_LENGTH] = 
{
	"",
	"E76B2413958B00E193A1",
	"A15H3825287T19G082K8",
};

Note. Mod can move this to release section if he or she so desires.
 
Last edited:
Newbie Spellweaver
Joined
Mar 3, 2013
Messages
55
Reaction score
3
[CC]Header\AESFile.h(21) : error C2447: '{' : missing function header (old-style formal list?)

i get that error.. what does mean? i was done change all aesfile.h

edit--------------------------------------------------------------------

Code:
// BinÆÄÀÏ Çì´õ¹öÁ¯Á¤º¸¸¦ ÀúÀåÇÏ´Â ¹è¿­const DWORD dwVersion[] = 
{
    20040308,
    20090506,
    20101117[COLOR=#ff0000],[/COLOR]        
};


// Çì´õ¹öÁ¯¿¡ ´ëÀÀÇÏ´Â Å°°ªÀ» ÀúÀåÇÏ´Â ¹è¿­
const unsigned char aKey[][MAX_KEY_LENGTH] = 
{
    "",
    "E76B2413958B00E193A1",
    "A15H3825287T19G082K8",
};
i add coma and working fine without error ,

should I aply again to agent , distribute and map server? ( recompile)
 
Last edited:
Joined
Mar 12, 2011
Messages
962
Reaction score
589
[CC]Header\AESFile.h(21) : error C2447: '{' : missing function header (old-style formal list?)

i get that error.. what does mean? i was done change all aesfile.h

edit--------------------------------------------------------------------

Code:
// BinÆÄÀÏ Çì´õ¹öÁ¯Á¤º¸¸¦ ÀúÀåÇÏ´Â ¹è¿­const DWORD dwVersion[] = 
{
    20040308,
    20090506,
    20101117[COLOR=#ff0000],[/COLOR]        
};


// Çì´õ¹öÁ¯¿¡ ´ëÀÀÇÏ´Â Å°°ªÀ» ÀúÀåÇÏ´Â ¹è¿­
const unsigned char aKey[][MAX_KEY_LENGTH] = 
{
    "",
    "E76B2413958B00E193A1",
    "A15H3825287T19G082K8",
};
i add coma and working fine without error ,

should I aply again to agent , distribute and map server? ( recompile)

its better to recompile them..to avoid error..
 
(oO (||||) (||||) Oo)
Loyal Member
Joined
Aug 6, 2009
Messages
2,132
Reaction score
429
You don't really have to add this to your source. If you do then client, server, tools, etc will be able to open and use bin files that re encrypted with newer key.
You can actually add your own key and then pack/encrypt your main exe file.
 
Skilled Illusionist
Joined
Mar 10, 2007
Messages
319
Reaction score
9
"E76B2413958B00E193A1", "A15H3825287T19G082K8",

Both KEY can not be changed else? I put two KEY changes, recompile MapServer.exe not run.
 
Newbie Spellweaver
Joined
Jul 10, 2011
Messages
58
Reaction score
29
"E76B2413958B00E193A1", "A15H3825287T19G082K8",

Both KEY can not be changed else? I put two KEY changes, recompile MapServer.exe not run.

sure you can replace with what word you want, i have try that. but 1 problem, you must convert all bin file to txt and convert back to bin with packing tool (with same key as map and client file). better don't replace it but add new line :p~
 
Back
Top