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;
}

Required Associated Types

Required Associated Constants

Implementors