pub struct Signature {
pub h: Vec<u8>,
pub z: BigInt,
}Expand description
An object containing the necessary fields for Schnorr signatures.
Fields§
§h: Vec<u8>keyed hash of signed message
z: BigIntpublic nonce
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Signature
impl Send for Signature
impl Sync for Signature
impl Unpin for Signature
impl UnwindSafe for Signature
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