HeaderKey

Trait HeaderKey 

pub trait HeaderKey: Send + Sync {
    // Required methods
    fn decrypt(&self, pn_offset: usize, packet: &mut [u8]);
    fn encrypt(&self, pn_offset: usize, packet: &mut [u8]);
    fn sample_size(&self) -> usize;
}
Available on crate feature quic only.
Expand description

Keys used to protect packet headers

Required Methods§

fn decrypt(&self, pn_offset: usize, packet: &mut [u8])

Decrypt the given packet’s header

fn encrypt(&self, pn_offset: usize, packet: &mut [u8])

Encrypt the given packet’s header

fn sample_size(&self) -> usize

The sample size used for this key’s algorithm

Implementors§