Skip to main content

TlsTranscript

Struct TlsTranscript 

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

A transcript of TLS records sent and received by the prover.

§Invariants

  • First record of TlsTranscript::sent or TlsTranscript::recv is the finished record.
  • Records are ordered but records which are not of type ContentType::ApplicationData can be missing.
  • Handshake related fields may be absent.
  • Plaintext of records may be absent.

Implementations§

Source§

impl TlsTranscript

Source

pub fn builder<'a>() -> TlsTranscriptBuilder<'a>

Returns a builder for TlsTranscript.

Source

pub fn time(&self) -> u64

Returns the start time of the connection.

Source

pub fn version(&self) -> TlsVersion

Returns the TLS protocol version.

Source

pub fn server_signature(&self) -> Option<&ServerSignature>

Returns the signature of the server.

Source

pub fn server_cert_chain(&self) -> Option<&[CertificateDer]>

Returns the certificate chain.

Source

pub fn certificate_binding(&self) -> &CertBinding

Returns the certificate binding.

Source

pub fn sent(&self) -> &[Record]

Returns the sent records.

Source

pub fn recv(&self) -> &[Record]

Returns the received records.

Source

pub fn client_finished(&self) -> &Record

Returns the client finished record.

Source

pub fn cf_vd(&self) -> Option<&[u8]>

Returns the client finished verify data.

Source

pub fn server_finished(&self) -> &Record

Returns the server finished record.

Source

pub fn sf_vd(&self) -> Option<&[u8]>

Returns the server finished verify data.

Source

pub fn cf_hash(&self) -> Option<[u8; 32]>

Returns the client finished hash.

Source

pub fn session_hash(&self) -> Option<[u8; 32]>

Returns the session hash.

The session hash is the SHA-256 digest over the handshake messages from ClientHello up to and including ClientKeyExchange (RFC 7627). It is used to derive the extended master secret.

Source

pub fn sf_hash(&self, cf_vd: &[u8; 12]) -> Option<[u8; 32]>

Returns the server finished hash given the client finished verify data.

Source

pub fn to_transcript(&self) -> Result<Transcript, TlsTranscriptError>

Returns the application data transcript.

Trait Implementations§

Source§

impl Clone for TlsTranscript

Source§

fn clone(&self) -> TlsTranscript

Returns a duplicate of the value. Read more
1.0.0 (const: unstable)§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for TlsTranscript

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for TlsTranscript

§

impl RefUnwindSafe for TlsTranscript

§

impl Send for TlsTranscript

§

impl Sync for TlsTranscript

§

impl Unpin for TlsTranscript

§

impl UnsafeUnpin for TlsTranscript

§

impl UnwindSafe for TlsTranscript

Blanket Implementations§

§

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

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

impl<T> CloneToUninit for T
where T: Clone,

§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
§

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

§

fn into(self) -> U

Calls U::from(self).

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

§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

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

§

type Error = Infallible

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

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

Performs the conversion.
§

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.
§

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

Performs the conversion.
Source§

impl<S, T> Upcast<T> for S
where T: UpcastFrom<S> + ?Sized, S: ?Sized,

Source§

fn upcast(&self) -> &T
where Self: ErasableGeneric, T: Sized + ErasableGeneric<Repr = Self::Repr>,

Perform a zero-cost type-safe upcast to a wider ref type within the Wasm bindgen generics type system. Read more
Source§

fn upcast_into(self) -> T
where Self: Sized + ErasableGeneric, T: Sized + ErasableGeneric<Repr = Self::Repr>,

Perform a zero-cost type-safe upcast to a wider type within the Wasm bindgen generics type system. Read more
§

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more