I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit aa542b78 authored by jrandom's avatar jrandom Committed by zzz
Browse files

for implementation simplicity, include fragment size in the SessionConfirmed packets

parent 3f7d4637
No related branches found
No related tags found
No related merge requests found
<code>$Id: udp.html,v 1.9 2005/04/05 10:28:54 jrandom Exp $</code> <code>$Id: udp.html,v 1.10 2005/04/08 09:21:26 jrandom Exp $</code>
<h1>Secure Semireliable UDP (SSU)</h1> <h1>Secure Semireliable UDP (SSU)</h1>
<b>DRAFT</b> <b>DRAFT</b>
...@@ -192,8 +192,8 @@ around briefly, to address packet loss and reordering.</p> ...@@ -192,8 +192,8 @@ around briefly, to address packet loss and reordering.</p>
<li>1 byte identity fragment info:<pre> <li>1 byte identity fragment info:<pre>
bits 0-3: current identity fragment # bits 0-3: current identity fragment #
bits 4-7: total identity fragments</pre></li> bits 4-7: total identity fragments</pre></li>
<li>N byte fragment of Alice's identity, sent over a number <li>2 byte size of the current identity fragment</li>
of messages.</li> <li>that many byte fragment of Alice's identity.</li>
<li>on the last identity fragment, the signed on time is <li>on the last identity fragment, the signed on time is
included after the identity fragment, and the last 40 included after the identity fragment, and the last 40
bytes contain the DSA signature of the critical exchanged bytes contain the DSA signature of the critical exchanged
...@@ -207,8 +207,9 @@ bits 4-7: total identity fragments</pre></li> ...@@ -207,8 +207,9 @@ bits 4-7: total identity fragments</pre></li>
<pre> <pre>
<b>Fragment 1 through N-1</b> <b>Fragment 1 through N-1</b>
+----+----+----+----+----+----+----+----+ +----+----+----+----+----+----+----+----+
|info| fragment of Alice's full | |info| cursize | |
+----+ | +----+----+----+ |
| fragment of Alice's full |
| identity keys | | identity keys |
. . . . . .
| | | |
...@@ -216,8 +217,9 @@ bits 4-7: total identity fragments</pre></li> ...@@ -216,8 +217,9 @@ bits 4-7: total identity fragments</pre></li>
<b>Fragment N:</b> <b>Fragment N:</b>
+----+----+----+----+----+----+----+----+ +----+----+----+----+----+----+----+----+
|info| fragment of Alice's full | |info| cursize | |
+----+ | +----+----+----+ |
| fragment of Alice's full |
| identity keys | | identity keys |
. . . . . .
| | | |
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment