pub struct DirectionalKeys {
pub header: HeaderProtectionKey,
pub packet: PacketKey,
}
Expand description
Keys used to communicate in a single direction
Fields§
§header: HeaderProtectionKey
Encrypts or decrypts a packet’s headers
packet: PacketKey
Encrypts or decrypts the payload of a packet
Implementations§
source§impl DirectionalKeys
impl DirectionalKeys
pub fn new(suite: &'static Tls13CipherSuite, secret: &Prk) -> Self
Auto Trait Implementations§
impl Freeze for DirectionalKeys
impl RefUnwindSafe for DirectionalKeys
impl Send for DirectionalKeys
impl Sync for DirectionalKeys
impl Unpin for DirectionalKeys
impl UnwindSafe for DirectionalKeys
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<Tail, T> Prepend<T> for Tail
impl<Tail, T> Prepend<T> for Tail
§type PreprendResult = Tail
type PreprendResult = Tail
The Resulting [
TupleList
], of an [Prepend::prepend()
] call,
including the prepended entry.