rlp.cr
a native library implementing rlp
purely for the crystal language. rlp
is ethereum's recursive length prefix used to encode arbitray data structures.
this library allows for rlp-encoding of:
- binary data (assumed encoded)
- boolean values (true, false)
- scalars (positive integers)
- string literals and characters
- arrays containing any of the the above
- nested arrays containing any of the above
this library allows for decoding of:
- rlp-encoded data in binary format
- rlp-encoded data in hexadecimal string format
note, that decoded data is always binary as per ethereum's design rationale:
"RLP does not attempt to define any specific data types such as booleans, floats, doubles or even integers; instead, it simply exists to store structure, in the form of nested arrays, and leaves it up to the protocol to determine the meaning of the arrays"
installation
add the rlp
library to your shard.yml
dependencies:
rlp:
github: q9f/rlp.cr
version: "~> 0.1"
usage
# import rlp
require "rlp"
this library exposes the following modules (in logical order):
Rlp
: core library exposingencode
anddecode
logicRlp::Util
: a collection of utilities to ease the conversion between data typesRlp::RecursiveArray
: is a data type alias allowing for arrays of unknown nesting depth
basic usage:
# rlp-encode a string
rlp = Rlp.encode("A cat with a short string.")
# => Bytes[154, 65, 32, 99, 97, 116, 32, 119, 105, 116, 104, 32, 97, 32, 115, 104, 111, 114, 116, 32, 115, 116, 114, 105, 110, 103, 46]
# (optionally) get a hex representation of the rlp-encoded data
hex = Rlp::Util.bin_to_hex rlp
# => "9a4120636174207769746820612073686f727420737472696e672e"
# decode the rlp data
bin = Rlp.decode hex
# => Bytes[65, 32, 99, 97, 116, 32, 119, 105, 116, 104, 32, 97, 32, 115, 104, 111, 114, 116, 32, 115, 116, 114, 105, 110, 103, 46]
# we expect a string, so we can try to convert it here
str = Rlp::Util.bin_to_str bin
# => "A cat with a short string."
documentation
generate a local copy with:
crystal docs
testing
the library is entirely specified through tests in ./spec
; run:
crystal spec --verbose
contribute
create a pull request, and make sure tests and linter passes.
this library with built with the help of the blog post by the mana team implementing rlp
in elixir and coinmonks' annotated version of the rlp
specification. ethereum classic's rlp
article allows for some sweet test cases.
license: apache license v2.0
contributors: @q9f