pub struct ClientSessionValue {
    pub version: ProtocolVersion,
    pub cipher_suite: CipherSuite,
    pub session_id: SessionID,
    pub ticket: PayloadU16,
    pub master_secret: PayloadU8,
    pub epoch: u64,
    pub lifetime: u32,
    pub age_add: u32,
    pub extended_ms: bool,
    pub max_early_data_size: u32,
    pub server_cert_chain: CertificatePayload,
}

Fields§

§version: ProtocolVersion§cipher_suite: CipherSuite§session_id: SessionID§ticket: PayloadU16§master_secret: PayloadU8§epoch: u64§lifetime: u32§age_add: u32§extended_ms: bool§max_early_data_size: u32§server_cert_chain: CertificatePayload

Implementations§

source§

impl ClientSessionValue

source

pub fn new( v: ProtocolVersion, cs: CipherSuite, sessid: &SessionID, ticket: Vec<u8>, ms: Vec<u8>, server_cert_chain: &CertificatePayload ) -> ClientSessionValue

source

pub fn set_extended_ms_used(&mut self)

source

pub fn set_times( &mut self, receipt_time_secs: u64, lifetime_secs: u32, age_add: u32 )

source

pub fn has_expired(&self, time_now: u64) -> bool

source

pub fn get_obfuscated_ticket_age(&self, time_now: u64) -> u32

source

pub fn take_ticket(&mut self) -> Vec<u8>

source

pub fn set_max_early_data_size(&mut self, sz: u32)

Trait Implementations§

source§

impl Codec for ClientSessionValue

source§

fn encode(&self, bytes: &mut Vec<u8>)

Encode yourself by appending onto bytes.
source§

fn read(r: &mut Reader<'_>) -> Option<ClientSessionValue>

Decode yourself by fiddling with the Reader. Return Some if it worked, None if not.
source§

fn get_encoding(&self) -> Vec<u8>

Convenience function to get the results of encode().
source§

fn read_bytes(bytes: &[u8]) -> Option<Self>

Read one of these from the front of bytes and return it.
source§

impl Debug for ClientSessionValue

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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, U> TryFrom<U> for Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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.