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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(net): add Framed ECIES implementation #80

Merged
merged 15 commits into from
Oct 16, 2022
Prev Previous commit
Next Next commit
add hex-literal and proptest to dev-dependencies
 * adds std feature to reth-rlp
Rjected committed Oct 15, 2022
commit fc89dd6419216fab0c98d8ec0a69da6a3bd06be5
81 changes: 80 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion crates/net/ecies/Cargo.toml
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ repository = "https://github.com/foundry-rs/reth"
readme = "README.md"

[dependencies]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are all of these deps required?

reth-rlp = { path = "../../common/rlp", features = ["derive", "ethereum-types"] }
reth-rlp = { path = "../../common/rlp", features = ["derive", "ethereum-types", "std"] }
reth-primitives = { path = "../../primitives" }
anyhow = "1.0.65"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Eyre

byteorder = "1.4.3"
@@ -32,3 +32,7 @@ generic-array = "0.14.6"
cipher = { version = "0.4.3", features = ["block-padding"] }
typenum = "1.15.0"
rand = "0.8.5"

[dev-dependencies]
hex-literal = "0.3.4"
proptest = "1.0.0"