1
edit
Changes
→Progress
I decided to look at the application as if someone was to send a large amount of encrypted data in a large string. To encrypt the string, there is data dependency; encrypting "The Quick Brown Fox Jumped Over The Moon" could give an encrypted code of:
If you typed the same thing twice, you would get:
However, it would be possible take a large string, break it into several pieces, and encrypt each piece separately.
For example, if a string was to be broken up after each ".", each part of the large string would be encoded separately, and sent over the network along with a header that contained the strings order.
IE:
<pre>
encryptedPacket{
}
</pre>
The strings could be encoded parallely, and then again decoded parallely.