Skip to content

Commit 32947b8

Browse files
committed
bug: make corrections to point number 2 in the decryption section
1 parent 164f148 commit 32947b8

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

04-Protocol-Security.md

+8-9
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,14 @@ Stratum Message header and stratum message payload are processed separately.
305305
5. `EncryptWithAd([], payload)` - variable length encrypted message
306306
4. concatenate resulting header and payload ciphertext
307307

308+
- Note: The `message_length` (payload_length) in the encrypted Stratum message header always reflects the plaintext payload size. The size of the encrypted payload is implicitly understood to be message_length + MAC size for each block. This simplifies the decryption process and ensures clarity in interpreting frame data.
309+
310+
#### Decrypting stratum message
311+
1. read exactly 22 bytes and decrypt into stratum frame or fail
312+
2.The value `frame.message_length` should first be converted to the ciphertext length, and then that amount of data should be read and decrypted into plaintext payload. If decryption fails, the process stops
313+
3. deserialize plaintext payload into stratum message given by `frame.extension_type` and `frame.message_type` or fail
314+
315+
308316
*converting plaintext length to ciphertext length:
309317
```c
310318
#define MAX_CT_LEN 65535
@@ -322,15 +330,6 @@ uint pt_len_to_ct_len(uint pt_len) {
322330
```
323331
324332
325-
- Note: The `message_length` (payload_length) in the encrypted Stratum message header always reflects the plaintext payload size. The size of the encrypted payload is implicitly understood to be message_length + MAC size for each block. This simplifies the decryption process and ensures clarity in interpreting frame data.
326-
327-
#### Decrypting stratum message
328-
1. read exactly 22 bytes and decrypt into stratum frame or fail
329-
2.The value `frame.message_length` should first be converted to the ciphertext length, and then that amount of data should be read and decrypted into plaintext payload. If decryption fails, the process stops
330-
3. deserialize plaintext payload into stratum message given by `frame.extension_type` and `frame.message_type` or fail
331-
332-
333-
334333
#### Encrypted stratum message frame layout
335334
```
336335
+--------------------------------------------------+-------------------------------------------------------------------+

0 commit comments

Comments
 (0)