Struct rustls::crypto::cipher::InboundOpaqueMessage

source ·
pub struct InboundOpaqueMessage<'a> {
    pub typ: ContentType,
    pub version: ProtocolVersion,
    pub payload: BorrowedPayload<'a>,
}
Expand description

A TLS frame, named TLSPlaintext in the standard.

This inbound type borrows its encrypted payload from a [MessageDeframer]. It is used for joining and is consumed by decryption.

Fields§

§typ: ContentType§version: ProtocolVersion§payload: BorrowedPayload<'a>

Implementations§

source§

impl<'a> InboundOpaqueMessage<'a>

source

pub fn new( typ: ContentType, version: ProtocolVersion, payload: &'a mut [u8], ) -> Self

Construct a new InboundOpaqueMessage from constituent fields.

payload is borrowed.

source

pub fn into_plain_message(self) -> InboundPlainMessage<'a>

Force conversion into a plaintext message.

This should only be used for messages that are known to be in plaintext. Otherwise, the InboundOpaqueMessage should be decrypted into a PlainMessage using a MessageDecrypter.

source

pub fn into_tls13_unpadded_message( self, ) -> Result<InboundPlainMessage<'a>, Error>

For TLS1.3 (only), checks the length msg.payload is valid and removes the padding.

Returns an error if the message (pre-unpadding) is too long, or the padding is invalid, or the message (post-unpadding) is too long.

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, U> TryFrom<U> for T
where 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 T
where 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.