1 2 3 4 5 6
//! NTS (Network Time Security) configuration types. //! //! Currently provides the [`NtsAeadsConfig`] type for specifying supported AEAD algorithms. #[derive(Debug, Clone, PartialEq)] pub struct NtsAeadsConfig { pub ids: Vec<u32> }