pub struct ChildKeys {
pub encr_i: Vec<u8>,
pub integ_i: Vec<u8>,
pub encr_r: Vec<u8>,
pub integ_r: Vec<u8>,
}Expand description
ESP/AH CHILD SA keys, in the order KEYMAT provides them (RFC 7296 §2.17).
Fields§
§encr_i: Vec<u8>§integ_i: Vec<u8>§encr_r: Vec<u8>§integ_r: Vec<u8>Trait Implementations§
impl Eq for ChildKeys
impl StructuralPartialEq for ChildKeys
Auto Trait Implementations§
impl Freeze for ChildKeys
impl RefUnwindSafe for ChildKeys
impl Send for ChildKeys
impl Sync for ChildKeys
impl Unpin for ChildKeys
impl UnsafeUnpin for ChildKeys
impl UnwindSafe for ChildKeys
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