You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
4. concatenate resulting header and payload ciphertext
307
307
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
+
308
316
*converting plaintext length to ciphertext length:
- 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
0 commit comments