user377419
user377419

Reputation: 5009

I have an idea for a security protocol!

Ok guys, So I was watching inception yesterday and I had this idea. I dont know too much about network security or the internet really. So thats what you guys are for, tell me if this is secure or even possible.Its to send secure data over the web by the way.

My Ideas takes the data needed to be send and encrypts it. The data is then split up into little bits and send to the receiver in multiple sockets or connections. A final packet is then sent containing the encryption key. Once the receiver has gotten the information he can assemble the data and then decrypt it.

My idea is that if someone attempted to gather the packets as they were being sent if he only gets part of the data it becomes useless.

So Is this a even secure or has it been done before?

Upvotes: 2

Views: 183

Answers (4)

Otávio Décio
Otávio Décio

Reputation: 74290

One of the tenets of security is - don't do it yourself.

Upvotes: 3

Carlos
Carlos

Reputation: 6021

Data is already sent in this way. In modern TCP/IP networks, the packets do not necessarily travel along the same path to the destination.

Upvotes: 4

Anders Abel
Anders Abel

Reputation: 69280

Different sockets or connections will not cause the data to take different routes. An attacker being able to sniff some of the traffic will most probably be able to get it all. So unfortunately this approach won't have any significant security gains.

If you could make sure that different pieces of information needed to read the data (the data streams or the encryption key) are sent in completely different channels (e.g. the data over a DSL internet line and the key through a direct dial-up connection) you would have a security gain, but not to an extent that I would trust for really sensitive data.

Upvotes: 5

Georg Schölly
Georg Schölly

Reputation: 126165

As long as the receiver gets all of the data, someone intercepting the traffic can get all the data.

Upvotes: 3

Related Questions