I just have a question: when you use network sockets, and send a message over the internet, is it in readable form? IE. can anyone who the packets pass by just read the contents? Man I would hate to have to code encryption, that is perhaps the most boring thing ever.
Also how dangerous is it to be messing around with network programming without some kind of security training?
Network Socket Programming Encryption
Moderator: Coders of Rage
Network Socket Programming Encryption
"We got more information out of a German general with a game of chess or Ping-Pong than they do today, with their torture" --Henry Kolm
- dandymcgee
- ES Beta Backer
- Posts: 4709
- Joined: Tue Apr 29, 2008 3:24 pm
- Current Project: https://github.com/dbechrd/RicoTech
- Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
- Programming Language of Choice: C
- Location: San Francisco
- Contact:
Re: Network Socket Programming Encryption
Yes. The best way to secure your data is to send the packets over an encrypted connection such as SSL/TSL (ie. HTTPS), an SSH tunnel, or something similar. The alternative being encrypting any sensitive data before it gets sent into the pipe.Aspirer wrote:I just have a question: when you use network sockets, and send a message over the internet, is it in readable form? IE. can anyone who the packets pass by just read the contents?
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
Re: Network Socket Programming Encryption
How would one do that?
"We got more information out of a German general with a game of chess or Ping-Pong than they do today, with their torture" --Henry Kolm
- dandymcgee
- ES Beta Backer
- Posts: 4709
- Joined: Tue Apr 29, 2008 3:24 pm
- Current Project: https://github.com/dbechrd/RicoTech
- Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
- Programming Language of Choice: C
- Location: San Francisco
- Contact:
Re: Network Socket Programming Encryption
Aspirer wrote:How would one do that?
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
Re: Network Socket Programming Encryption
D'oh!
"We got more information out of a German general with a game of chess or Ping-Pong than they do today, with their torture" --Henry Kolm
- dandymcgee
- ES Beta Backer
- Posts: 4709
- Joined: Tue Apr 29, 2008 3:24 pm
- Current Project: https://github.com/dbechrd/RicoTech
- Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
- Programming Language of Choice: C
- Location: San Francisco
- Contact:
Re: Network Socket Programming Encryption
Feel free to post back if you have any specific questions.Aspirer wrote:D'oh!
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!