how to modify crypt key

Results 1 to 10 of 10
  1. #1
    Account Upgraded | Title Enabled! cyucyu is online now
    MemberRank
    Mar 2007 Join Date
    298Posts

    how to modify crypt key

    how to modify crypt key


  2. #2
    荷希 (糖糖姐姐) AsenDURE is offline
    MemberRank
    Mar 2012 Join Date
    MalaysiaLocation
    758Posts

    Re: how to modify crypt key

    CryptionRCC ?

    ransource > enginelib > Crypt.cpp

    Code:
    namespace CCrypt
    {
    	BOOL	bCryptRCC = TRUE;
    	BOOL	bEngineDebug = TRUE;
    
    	void  LoadSetting( const TCHAR *szRootPath )
    	{
    		CString strFileName = szRootPath;
    		strFileName += "\\GameSet.ini";
    
    		CIniLoader cFILE;
    
    		DWORD	dwKey = 0;
    			
    		if( cFILE.open( strFileName.GetString(), true) )
    		{
    			cFILE.SetUseErrorMsgBox( FALSE );
    
    			cFILE.getflag ( "GAME_SET", "dwCryptKey", 0, 1, dwKey );
    			cFILE.getflag ( "GAME_SET", "bEngineDebug", 0, 1, bEngineDebug );
    		}
    		else
    		{
    			CDebugSet::ToLogFile("CCrypt::LoadSetting Cant Load Setting File");
    		}
    		if ( dwKey == 7892756 )	bCryptRCC = FALSE;
    
    	}

  3. #3
    Account Upgraded | Title Enabled! caspian0 is offline
    MemberRank
    Jul 2012 Join Date
    1,321Posts

    Re: how to modify crypt key

    Quote Originally Posted by AsenDURE View Post
    CryptionRCC ?

    ransource > enginelib > Crypt.cpp

    Code:
    namespace CCrypt
    {
    	BOOL	bCryptRCC = TRUE;
    	BOOL	bEngineDebug = TRUE;
    
    	void  LoadSetting( const TCHAR *szRootPath )
    	{
    		CString strFileName = szRootPath;
    		strFileName += "\\GameSet.ini";
    
    		CIniLoader cFILE;
    
    		DWORD	dwKey = 0;
    			
    		if( cFILE.open( strFileName.GetString(), true) )
    		{
    			cFILE.SetUseErrorMsgBox( FALSE );
    
    			cFILE.getflag ( "GAME_SET", "dwCryptKey", 0, 1, dwKey );
    			cFILE.getflag ( "GAME_SET", "bEngineDebug", 0, 1, bEngineDebug );
    		}
    		else
    		{
    			CDebugSet::ToLogFile("CCrypt::LoadSetting Cant Load Setting File");
    		}
    		if ( dwKey == 7892756 )	bCryptRCC = FALSE;
    
    	}
    not changing..i can still decypt the original even if i change the key... hmp
    Last edited by caspian0; 11-12-13 at 07:43 AM.

  4. #4
    Account Upgraded | Title Enabled! cyucyu is online now
    MemberRank
    Mar 2007 Join Date
    298Posts

    Re: how to modify crypt key

    Yes, I also found the same problem.

    how to Change?

  5. #5
    Account Upgraded | Title Enabled! caspian0 is offline
    MemberRank
    Jul 2012 Join Date
    1,321Posts

    Re: how to modify crypt key

    Quote Originally Posted by cyucyu View Post
    Yes, I also found the same problem.

    how to Change?
    the only solution is to edit rjandael key... dont mind the crypt.rcc ..they cant change your files with editors if you change R key..

  6. #6
    Account Upgraded | Title Enabled! cyucyu is online now
    MemberRank
    Mar 2007 Join Date
    298Posts

    Re: how to modify crypt key

    Why people can change the crypt key?

  7. #7
    Account Upgraded | Title Enabled! caspian0 is offline
    MemberRank
    Jul 2012 Join Date
    1,321Posts

    Re: how to modify crypt key

    Quote Originally Posted by cyucyu View Post
    Why people can change the crypt key?
    dunno..but asendures tut is not working for me.. .crypt.rcc still same ..the only way is to change R-key...but its better also that our crypt.rcc has a unique encryption too..

  8. #8
    Account Upgraded | Title Enabled! SixTeam is offline
    MemberRank
    May 2013 Join Date
    City Banana'sLocation
    412Posts

    Re: how to modify crypt key

    you can change all or random-random numbers and letters
    ex:
    {
    EN = 17244896787,
    EN2 = 12348733,
    END = 4,
    /*
    EN = 0x5FFF2AAF,
    EN2 = 0x1AEDAA0A,
    END = 0x03,*/
    };
    {
    /*EN = 17244896787,
    EN2 = 12348733,
    END = 4,*/

    EN = 0x5FFF2AAF,
    EN2 = 0x1AEDAA0A,
    END = 0x03,
    };
    when I change and mess it all worked on me.

  9. #9
    Account Upgraded | Title Enabled! caspian0 is offline
    MemberRank
    Jul 2012 Join Date
    1,321Posts

    Re: how to modify crypt key

    Quote Originally Posted by SixTeam View Post
    you can change all or random-random numbers and letters
    ex:




    when I change and mess it all worked on me.
    i found this on .h ... this will be the codes to be change ? or do we still have to edit the codes from asendures tut...

  10. #10
    Account Upgraded | Title Enabled! caspian0 is offline
    MemberRank
    Jul 2012 Join Date
    1,321Posts

    Re: how to modify crypt key

    up here...



Advertisement