Skip to content

Commit 46d168e

Browse files
committed
Add detailed description of every operation regarding noise-security layer
1 parent b607f00 commit 46d168e

File tree

2 files changed

+325
-67
lines changed

2 files changed

+325
-67
lines changed

03-Protocol-Overview.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,11 @@ Multibyte data types are always serialized as little-endian.
114114
| BYTES | LENGTH | Arbitrary sequence of LENGTH bytes. See description for how to |
115115
| | | calculate LENGTH. |
116116
+---------------+---------------------------------+--------------------------------------------------------------------+
117-
| PUBKEY | 32 | ED25519 public key |
117+
| MAC | 16 | Message Authentication Code produced with AE algorithm |
118118
+---------------+---------------------------------+--------------------------------------------------------------------+
119-
| SIGNATURE | 64 | ED25519 signature |
119+
| PUBKEY | 32 | X coordinate of Secp256k1 public key (see BIP 340) |
120+
+---------------+---------------------------------+--------------------------------------------------------------------+
121+
| SIGNATURE | 64 | Schnorr signature on Secp256k1 (see BIP 340) |
120122
+---------------+---------------------------------+--------------------------------------------------------------------+
121123
| SHORT_TX_ID | 6 | SipHash-2-4(TX_ID, k0, k1) where two most significant bytes are |
122124
| | | dropped from the SipHash output to make it 6 bytes. TX_ID is 32 |
@@ -125,6 +127,11 @@ Multibyte data types are always serialized as little-endian.
125127
| OPTION[T] | 1 + occupied ? size(T) : 0 | Alias for SEQ0_1[T]. Identical representation to SEQ0_255 but |
126128
| | | enforces the maximum size of 1
127129
+---------------+---------------------------------+--------------------------------------------------------------------+
130+
| SEQ0_32[T] | Fixed size T: | 1-byte length L, unsigned integer 8-bits, followed by a sequence |
131+
| | 1 + LENGTH * size(T) | of L elements of type T. Allowed range of length is 0 to 32. |
132+
| | Variable length T: | |
133+
| | 1 + seq.map(|x| x.length).sum() | |
134+
+---------------+---------------------------------+--------------------------------------------------------------------+
128135
| SEQ0_255[T] | Fixed size T: | 1-byte length L, unsigned integer 8-bits, followed by a sequence |
129136
| | 1 + LENGTH * size(T) | of L elements of type T. Allowed range of length is 0 to 255. |
130137
| | Variable length T: | |

0 commit comments

Comments
 (0)