pub struct ProverOutput {
pub session_key: SharedSecret,
pub confirm_p: Vec<u8>,
}Expand description
Output returned by the Prover after verifying confirmV.
Fields§
§session_key: SharedSecretThe shared session key.
confirm_p: Vec<u8>The Prover’s confirmation MAC to send to the Verifier.
Trait Implementations§
Source§impl Drop for ProverOutput
impl Drop for ProverOutput
Auto Trait Implementations§
impl Freeze for ProverOutput
impl RefUnwindSafe for ProverOutput
impl Send for ProverOutput
impl Sync for ProverOutput
impl Unpin for ProverOutput
impl UnsafeUnpin for ProverOutput
impl UnwindSafe for ProverOutput
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