Trait drogue_tls::TlsCipherSuite[][src]

pub trait TlsCipherSuite {
    type Cipher: NewAead<KeySize = Self::KeyLen> + AeadInPlace<NonceSize = Self::IvLen>;
    type KeyLen: ArrayLength<u8>;
    type IvLen: ArrayLength<u8>;
    type Hash: Update + BlockInput + FixedOutput + Reset + Default + Clone;

    const CODE_POINT: u16;
}

Associated Types

Associated Constants

Implementors