pub struct ClientRSAParams {
pub encrypted_pms: Vec<u8>,
}Expand description
Stores the encrypted premaster secret sent by the client in a ClientKeyExchange message in an RSA handshake.
Fields§
§encrypted_pms: Vec<u8>Trait Implementations§
Source§impl Debug for ClientRSAParams
impl Debug for ClientRSAParams
Source§impl Default for ClientRSAParams
impl Default for ClientRSAParams
Source§fn default() -> ClientRSAParams
fn default() -> ClientRSAParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ClientRSAParams
impl RefUnwindSafe for ClientRSAParams
impl Send for ClientRSAParams
impl Sync for ClientRSAParams
impl Unpin for ClientRSAParams
impl UnsafeUnpin for ClientRSAParams
impl UnwindSafe for ClientRSAParams
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