Skip to content

Commit 3ee0a76

Browse files
committedNov 23, 2022
Use lowercase for writing byte(s)
1 parent a03cccf commit 3ee0a76

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎04-Protocol-Security.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ These primitives are chosen so that Noise Encryption layer for Stratum V2 can be
3535

3636
#### 4.3.1.1 EC point encoding remarks
3737
Secp256k1 curve points, which includes Public Keys and ECDH results, are points with of X- and Y-coordinate, 32-bytes each. There are several possibilities how to serialize them:
38-
1. 64-byte full X- and Y-coordinate serialization for public keys (and ECDH results) and 96 Bytes for signatures.
38+
1. 64-byte full X- and Y-coordinate serialization for public keys (and ECDH results) and 96 bytes for signatures.
3939
2. 33-byte X-coordinate with 1 parity bit serialization for public keys and similarly 65-byte for signatures.
4040
3. 32-byte X-coordinate only with implicit Y-coordinate for public keys and 64-byte for signatures.
4141

@@ -185,7 +185,7 @@ Ephemeral public key message:
185185
| PUBKEY | Initiator's ephemeral public key |
186186
+---------------+------------------------------------------------------------------------------------------------------+
187187
188-
Message length: 32 Bytes
188+
Message length: 32 bytes
189189
```
190190

191191
#### 4.5.1.2 Responder
@@ -212,7 +212,7 @@ SIGNATURE_NOISE_MESSAGE
212212
| signature | SIGNATURE | Certificate signature |
213213
+-----------------+-----------+----------------------------------------------------------------------------------------+
214214
215-
Length: 74 Bytes
215+
Length: 74 bytes
216216
```
217217

218218

@@ -246,7 +246,7 @@ Message format of NX-handshake part 2
246246
| MAC | Message authentication code for SIGNATURE_NOISE_MESSAGE |
247247
+-------------------------+--------------------------------------------------------------------------------------------+
248248
249-
Message length: 170 Bytes
249+
Message length: 170 bytes
250250
```
251251

252252
#### 4.5.2.2 Initiator
@@ -256,7 +256,7 @@ Message length: 170 Bytes
256256
4. calls `MixKey(ECDH(e, re))`
257257
5. decrypts next 48 bytes with `DecryptAndHash()` and stores the results as `rs.public_key` which is **server's static public key** (note that 32 bytes is the public key and 16 bytes is MAC)
258258
6. calls `MixKey(ECDH(e, rs)`
259-
7. decrypts next 90 Bytes with `DecryptAndHash()` and deserialize plaintext into `SIGNATURE_NOISE_MESSAGE` (74 Bytes data + 16 Bytes MAC)
259+
7. decrypts next 90 bytes with `DecryptAndHash()` and deserialize plaintext into `SIGNATURE_NOISE_MESSAGE` (74 bytes data + 16 bytes MAC)
260260
9. return pair of CipherState objects, the first for encrypting transport messages from initiator to responder, and the second for messages in the other direction:
261261
1. sets `temp_k1, temp_k2 = HKDF(ck, zerolen, 2)`
262262
2. creates two new CipherState objects `c1` and `c2`

0 commit comments

Comments
 (0)
Please sign in to comment.