Struct rustls::tls13::key_schedule::KeySchedule

source ·
struct KeySchedule {
    current: Prk,
    suite: &'static Tls13CipherSuite,
}
Expand description

This is the TLS1.3 key schedule. It stores the current secret and the type of hash. This isn’t used directly; but only through the typestates.

Fields§

§current: Prk§suite: &'static Tls13CipherSuite

Implementations§

source§

impl KeySchedule

source

fn new(suite: &'static Tls13CipherSuite, secret: &[u8]) -> Self

source

fn set_encrypter(&self, secret: &Prk, common: &mut CommonState)

source

fn set_decrypter(&self, secret: &Prk, common: &mut CommonState)

source

fn derive_decrypter(&self, secret: &Prk) -> Box<dyn MessageDecrypter>

source

fn algorithm(&self) -> Algorithm

source

fn new_with_empty_secret(suite: &'static Tls13CipherSuite) -> Self

source

fn input_empty(&mut self)

Input the empty secret.

source

fn input_secret(&mut self, secret: &[u8])

Input the given secret.

source

fn derive<T, L>(&self, key_type: L, kind: SecretKind, hs_hash: &[u8]) -> T
where T: for<'a> From<Okm<'a, L>>, L: KeyType,

Derive a secret of given kind, using current handshake hash hs_hash.

source

fn derive_logged_secret( &self, kind: SecretKind, hs_hash: &[u8], key_log: &dyn KeyLog, client_random: &[u8; 32], ) -> Prk

source

fn derive_for_empty_hash<T>(&self, kind: SecretKind) -> T
where T: for<'a> From<Okm<'a, Algorithm>>,

Derive a secret of given kind using the hash of the empty string for the handshake hash. Useful only for SecretKind::ResumptionPSKBinderKey and SecretKind::DerivedSecret.

source

fn sign_finish(&self, base_key: &Prk, hs_hash: &Digest) -> Tag

Sign the finished message consisting of hs_hash using a current traffic secret.

source

fn sign_verify_data(&self, base_key: &Prk, hs_hash: &Digest) -> Tag

Sign the finished message consisting of hs_hash using the key material base_key.

source

fn derive_next(&self, base_key: &Prk) -> Prk

Derive the next application traffic secret, returning it.

source

fn derive_ticket_psk(&self, rms: &Prk, nonce: &[u8]) -> Vec<u8>

Derive the PSK to use given a resumption_master_secret and ticket_nonce.

source

fn export_keying_material( &self, current_exporter_secret: &Prk, out: &mut [u8], label: &[u8], context: Option<&[u8]>, ) -> Result<(), Error>

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.