Skip to main content

TlsClientHandler

Struct TlsClientHandler 

Source
pub struct TlsClientHandler { /* private fields */ }
Expand description

TLS client handler for OpenVPN connections (client-side)

Implementations§

Source§

impl TlsClientHandler

Source

pub fn new( config: Arc<ClientConfig>, server_name: ServerName<'static>, ) -> Result<Self>

Create a new TLS client handler with client configuration

Source

pub fn process_incoming(&mut self, data: &[u8]) -> Result<()>

Process incoming TLS data from control channel

Source

pub fn process_tls_records(&mut self, records: Vec<Bytes>) -> Result<()>

Process incoming TLS records (already extracted from control channel)

Source

pub fn get_outgoing(&mut self) -> Result<Option<Bytes>>

Get data to send on control channel

Source

pub fn is_handshake_complete(&self) -> bool

Check if handshake is complete

Source

pub fn is_handshaking(&self) -> bool

Check if we’re still handshaking

Source

pub fn wants_write(&self) -> bool

Check if there’s data waiting to be written

Source

pub fn read_plaintext(&mut self, buf: &mut [u8]) -> Result<usize>

Read decrypted application data

Source

pub fn write_plaintext(&mut self, data: &[u8]) -> Result<usize>

Write plaintext data (will be encrypted)

Source

pub fn export_keying_material( &self, output: &mut [u8], label: &[u8], context: Option<&[u8]>, ) -> Result<()>

Export keying material from the TLS session (RFC 5705)

Source

pub fn cipher_suite(&self) -> Option<&'static str>

Get negotiated cipher suite name

Source

pub fn protocol_version(&self) -> Option<&'static str>

Get negotiated TLS protocol version

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V