pub struct WorSessionKeys {
pub wor_s_int_key: WorSIntKey,
pub wor_s_enc_key: WorSEncKey,
}Expand description
Relay (Wake-On-Radio) session keys derived from a RootWorSKey and
DevAddr.
Two keys per relay session: integrity (MIC) and encryption. Build with
WorKeys::session.
Fields§
§wor_s_int_key: WorSIntKeyWOR session integrity key.
wor_s_enc_key: WorSEncKeyWOR session encryption key.
Trait Implementations§
Source§impl Clone for WorSessionKeys
impl Clone for WorSessionKeys
Source§fn clone(&self) -> WorSessionKeys
fn clone(&self) -> WorSessionKeys
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for WorSessionKeys
impl RefUnwindSafe for WorSessionKeys
impl Send for WorSessionKeys
impl Sync for WorSessionKeys
impl Unpin for WorSessionKeys
impl UnsafeUnpin for WorSessionKeys
impl UnwindSafe for WorSessionKeys
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