@@ -114,9 +114,11 @@ Multibyte data types are always serialized as little-endian.
114
114
| BYTES | LENGTH | Arbitrary sequence of LENGTH bytes. See description for how to |
115
115
| | | calculate LENGTH. |
116
116
+---------------+---------------------------------+--------------------------------------------------------------------+
117
- | PUBKEY | 32 | ED25519 public key |
117
+ | MAC | 16 | Message Authentication Code produced with AE algorithm |
118
118
+---------------+---------------------------------+--------------------------------------------------------------------+
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) |
120
122
+---------------+---------------------------------+--------------------------------------------------------------------+
121
123
| SHORT_TX_ID | 6 | SipHash-2-4(TX_ID, k0, k1) where two most significant bytes are |
122
124
| | | 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.
125
127
| OPTION[T] | 1 + occupied ? size(T) : 0 | Alias for SEQ0_1[T]. Identical representation to SEQ0_255 but |
126
128
| | | enforces the maximum size of 1
127
129
+---------------+---------------------------------+--------------------------------------------------------------------+
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
+ +---------------+---------------------------------+--------------------------------------------------------------------+
128
135
| SEQ0_255[T] | Fixed size T: | 1-byte length L, unsigned integer 8-bits, followed by a sequence |
129
136
| | 1 + LENGTH * size(T) | of L elements of type T. Allowed range of length is 0 to 255. |
130
137
| | Variable length T: | |
0 commit comments