Why Is it better to use unreadable bytes for client server communication?

Posted by Alessa on Programmers See other posts from Programmers or by Alessa
Published on 2012-04-04T07:45:32Z Indexed on 2012/04/04 11:40 UTC
Read the original article Hit count: 237

Filed under:
|
|

I'm composing communication lyrics for client-server and what am I thinking about:

  • "authme username passord" (maybe encrytped)
  • "accept"
  • "get archive of H2O from 03.02.2005 to 20.12.2064"
  • transferring binary structure or "error descrtiption"

why I always need to do something like

  • 0x0FA52FD + CRC
  • 0x0D34423 + CRC
  • ...

I can see some secure reasons but I think it's not the real reason so why I can't use strings in client-server communication?

© Programmers or respective owner

Related posts about communication

Related posts about server