Blowfish is simply the game encryption Conquer has chosen to use, however they switched to Cast lately.
Packet Sniff, means you're sniffing packets from the client/server, you need to sniff the packets in order to communicate with the client, because every from server -> client and client -> server is send in packets (bytes) through sockets. Conquer has their packets encrypted (Blowfish) and you need to decrypt them in order to get their structure etc.
Blowfish is simply the game encryption Conquer has chosen to use, however they switched to Cast lately.
Packet Sniff, means you're sniffing packets from the client/server, you need to sniff the packets in order to communicate with the client, because every from server -> client and client -> server is send in packets (bytes) through sockets. Conquer has their packets encrypted (Blowfish) and you need to decrypt them in order to get their structure etc.
well 1st of all i'd like to thank u very much for helping Then i couldnt understand so much all i understood is cryptography is a way of coding smthing and to make it work with any other Sources i should decryept it to have the Code and we can decrypt it using Blowfish or cast ...this process is called sniffing ..but i didnt get what u said about sockets..
well 1st of all i'd like to thank u very much for helping Then i couldnt understand so much all i understood is cryptography is a way of coding smthing and to make it work with any other Sources i should decryept it to have the Code and we can decrypt it using Blowfish or cast ...this process is called sniffing ..but i didnt get what u said about sockets..
It's used to protect data. Could be passwords, could be packets (Which it is in this case), could be messages that are secret, could be anything.
Sockets: Sockets are a form of communication between multipile applications and they normally go through a server.
Conquer uses the TCP type of sockets. With sockets you receive and send ALL the data, which is encrypted between BlowFish and Cast. BlowFish is a block cipher aka, an encryption. It finds the data and "scrambles" it so NOBODY can understand it without have your encryption to DEcrypt it. The server would DEcrypt/"un-scramble" the data so the server application can read it.