decryption/encryption key
does someone know how to calculate the decryption key depending on the encryption key or enc key depending on dec key?
For example:
Code:
deckey[1] = 9CD4AFA4
enckey[1] = 65F4AFA4
DWORD LoadXOR[4]={0x3F08A79B, 0xE25CC287, 0x93D27AB9, 0x20DEA7BF};
deckey[1] = LoadXor[1] ^ fromfile[1]
...
the loadxor keys are the same in server/client but the enc algorithm is different than dec algorithm so the deckey and enckey are different too and i need to calculate them knowing one of them(enc or dec key).
Is there any algorithm to find them?
Re: decryption/encryption key
the keys are same "C->S & S->C" only encryption changes
Edited:
i`m not shore - long time since coding mu left :)
but there was some small changes - if u encrypt as a server (its same as encrypt as a client) only difference is that server xor encrypted data with simply 32 bytes xor function after C3 encription :)