pub struct PresignOutput<C: CSCurve> {
pub big_r: C::AffinePoint,
pub k: C::Scalar,
pub sigma: C::Scalar,
}Expand description
The output of the presigning protocol.
This output is basically all the parts of the signature that we can perform without knowing the message.
Fields§
§big_r: C::AffinePointThe public nonce commitment.
k: C::ScalarOur share of the nonce value.
sigma: C::ScalarOur share of the sigma value.
Trait Implementations§
Source§impl<C: Clone + CSCurve> Clone for PresignOutput<C>
impl<C: Clone + CSCurve> Clone for PresignOutput<C>
Source§fn clone(&self) -> PresignOutput<C>
fn clone(&self) -> PresignOutput<C>
Returns a duplicate of the value. Read more
1.0.0 · 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<C> Freeze for PresignOutput<C>
impl<C> RefUnwindSafe for PresignOutput<C>where
<C as CurveArithmetic>::AffinePoint: RefUnwindSafe,
<C as CurveArithmetic>::Scalar: RefUnwindSafe,
impl<C> Send for PresignOutput<C>
impl<C> Sync for PresignOutput<C>
impl<C> Unpin for PresignOutput<C>
impl<C> UnwindSafe for PresignOutput<C>
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