pub struct Spake2PlusOutput {
pub session_key: SharedSecret,
}Expand description
Output of a completed SPAKE2+ protocol run.
Fields§
§session_key: SharedSecretThe shared session key (K_shared).
Trait Implementations§
Source§impl Drop for Spake2PlusOutput
impl Drop for Spake2PlusOutput
Auto Trait Implementations§
impl Freeze for Spake2PlusOutput
impl RefUnwindSafe for Spake2PlusOutput
impl Send for Spake2PlusOutput
impl Sync for Spake2PlusOutput
impl Unpin for Spake2PlusOutput
impl UnsafeUnpin for Spake2PlusOutput
impl UnwindSafe for Spake2PlusOutput
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