Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

馃ア nit: RLP #236

Merged
merged 1 commit into from
Apr 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions docs/wiki/EL/RLP.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,6 @@ Recursive Length Prefix (RLP) is a fundamental data serialization technique used
- **Encoding**: The byte is encoded directly, unchanged.
- **Example**: Encoding the byte `0x2a` directly yields `0x2a`.

**Single Byte String Encoding**
- **Condition**: If the input is a single byte string.
- **Encoding**: The byte is encoded directly, unchanged.
- **Example**: Encoding the byte `0x74` directly yields `0x74`.
-
**Short String Encoding (1-55 bytes)**
- **Condition**: If the string (or byte array) length is between 1 and 55 bytes.
- **Encoding**: The output is the length of the string plus `0x80`, followed by the string itself.
Expand Down
Loading