Struct rustls::client::tls13::ExpectCertificateVerify
source · struct ExpectCertificateVerify {
config: Arc<ClientConfig>,
server_name: ServerName,
randoms: ConnectionRandoms,
suite: &'static Tls13CipherSuite,
transcript: HandshakeHash,
key_schedule: KeyScheduleHandshake,
server_cert: ServerCertDetails,
client_auth: Option<ClientAuthDetails>,
}
Fields§
§config: Arc<ClientConfig>
§server_name: ServerName
§randoms: ConnectionRandoms
§suite: &'static Tls13CipherSuite
§transcript: HandshakeHash
§key_schedule: KeyScheduleHandshake
§server_cert: ServerCertDetails
§client_auth: Option<ClientAuthDetails>
Trait Implementations§
source§impl State<ClientConnectionData> for ExpectCertificateVerify
impl State<ClientConnectionData> for ExpectCertificateVerify
fn handle( self: Box<Self>, cx: &mut Context<'_, ClientConnectionData>, m: Message, ) -> Result<Box<dyn State<ClientConnectionData>>, Error>
fn export_keying_material( &self, _output: &mut [u8], _label: &[u8], _context: Option<&[u8]>, ) -> Result<(), Error>
fn handle_decrypt_error(&self)
Auto Trait Implementations§
impl Freeze for ExpectCertificateVerify
impl !RefUnwindSafe for ExpectCertificateVerify
impl Send for ExpectCertificateVerify
impl Sync for ExpectCertificateVerify
impl Unpin for ExpectCertificateVerify
impl !UnwindSafe for ExpectCertificateVerify
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