mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-02-15 01:14:59 -05:00
46 lines
1.0 KiB
Rust
46 lines
1.0 KiB
Rust
#![warn(missing_docs, unreachable_pub, unused_crate_dependencies)]
|
|
#![deny(unused_must_use, rust_2018_idioms)]
|
|
#![doc(test(
|
|
no_crate_inject,
|
|
attr(deny(warnings, rust_2018_idioms), allow(dead_code, unused_variables))
|
|
))]
|
|
|
|
//! RLPx ECIES framed transport protocol.
|
|
|
|
pub mod algorithm;
|
|
pub mod mac;
|
|
pub mod stream;
|
|
pub mod util;
|
|
|
|
mod error;
|
|
pub use error::ECIESError;
|
|
|
|
mod codec;
|
|
|
|
use reth_primitives::{
|
|
bytes::{Bytes, BytesMut},
|
|
H512 as PeerId,
|
|
};
|
|
|
|
/// Raw egress values for an ECIES protocol
|
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
|
pub enum EgressECIESValue {
|
|
/// The AUTH message being sent out
|
|
Auth,
|
|
/// The ACK message being sent out
|
|
Ack,
|
|
/// The message being sent out (wrapped bytes)
|
|
Message(Bytes),
|
|
}
|
|
|
|
/// Raw ingress values for an ECIES protocol
|
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
|
pub enum IngressECIESValue {
|
|
/// Receiving a message from a [`PeerId`]
|
|
AuthReceive(PeerId),
|
|
/// Receiving an ACK message
|
|
Ack,
|
|
/// Receiving a message
|
|
Message(BytesMut),
|
|
}
|