Struct retina_core::protocols::stream::ssh::SshDhResponse
source · pub struct SshDhResponse {
pub pubkey_and_certs: Vec<u8>,
pub f: Vec<u8>,
pub signature: Vec<u8>,
}
Expand description
A parsed Diffie-Hellman Key Exchange message sent by the server.
Fields§
§pubkey_and_certs: Vec<u8>
§f: Vec<u8>
§signature: Vec<u8>
Trait Implementations§
source§impl Debug for SshDhResponse
impl Debug for SshDhResponse
source§impl Default for SshDhResponse
impl Default for SshDhResponse
source§fn default() -> SshDhResponse
fn default() -> SshDhResponse
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SshDhResponse
impl RefUnwindSafe for SshDhResponse
impl Send for SshDhResponse
impl Sync for SshDhResponse
impl Unpin for SshDhResponse
impl UnwindSafe for SshDhResponse
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more