summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2024-07-17 10:27:59 +0200
committerChristian Grothoff <christian@grothoff.org>2024-07-17 10:27:59 +0200
commit82f908c836a0cc3effa2eec200559fa984a5c2b6 (patch)
treeaefedf0755462b2617dbd61a2e14ae8f9f521d82
parentd7caaa4c21aa986cebf35e31b7891608f1c441b9 (diff)
downloadlsd0004-82f908c836a0cc3effa2eec200559fa984a5c2b6.tar.gz
lsd0004-82f908c836a0cc3effa2eec200559fa984a5c2b6.zip
consistency: we use ZERO, not NULL
-rw-r--r--draft-schanzen-r5n.xml21
1 files changed, 11 insertions, 10 deletions
diff --git a/draft-schanzen-r5n.xml b/draft-schanzen-r5n.xml
index 4b8e04c..cb4ccbd 100644
--- a/draft-schanzen-r5n.xml
+++ b/draft-schanzen-r5n.xml
@@ -1276,7 +1276,8 @@ ComputeOutDegree(REPL_LVL, HOPCOUNT, L2NSE):
1276 created the element. The signature is computed over the public keys of the 1276 created the element. The signature is computed over the public keys of the
1277 previous peer (from which the message was received) and next peer (the 1277 previous peer (from which the message was received) and next peer (the
1278 peer the message is send to). A new message has no previous peer and 1278 peer the message is send to). A new message has no previous peer and
1279 uses the <tt>NULL</tt> public key for the signature. 1279 uses all <tt>ZEROs</tt> (32 NULL-bytes) in the
1280 public key field when creating the signature.
1280 </t> 1281 </t>
1281 <t> 1282 <t>
1282 Assuming peer A sends a new <tt>PUT</tt> message to peer B, which forwards 1283 Assuming peer A sends a new <tt>PUT</tt> message to peer B, which forwards
@@ -1286,15 +1287,15 @@ ComputeOutDegree(REPL_LVL, HOPCOUNT, L2NSE):
1286 </t> 1287 </t>
1287 <figure anchor="figure_path" title="Example PATH"> 1288 <figure anchor="figure_path" title="Example PATH">
1288 <artwork name="" type="" align="left" alt=""><![CDATA[ 1289 <artwork name="" type="" align="left" alt=""><![CDATA[
1289+--------------------+-------+ 1290+---------------------+-------+
1290| Sig A( 0,Pub B) | Pub A | 1291| Sig A(ZEROs, Pub B) | Pub A |
1291+--------------------+-------+ 1292+---------------------+-------+
1292+--------------------+-------+ 1293+---------------------+-------+
1293| Sig B(Pub A,Pub C) | Pub B | 1294| Sig B(Pub A, Pub C) | Pub B |
1294+--------------------+-------+ 1295+---------------------+-------+
1295+--------------------+-------+ 1296+---------------------+-------+
1296| Sig C(Pub B,Pub D) | Pub C | 1297| Sig C(Pub B, Pub D) | Pub C |
1297+--------------------+-------+ 1298+---------------------+-------+
1298 ]]></artwork> 1299 ]]></artwork>
1299 </figure> 1300 </figure>
1300 <t> 1301 <t>