pub trait PreSignSetupMessage: ProtocolParticipant {
// Required methods
fn keyshare(&self) -> &Keyshare;
fn chain_path(&self) -> &DerivationPath;
// Provided method
fn presignature_extra(&self) -> &[u8] ⓘ { ... }
}
Expand description
A setup message for sign::pre_signature()
Required Methods§
A shared reference to a Keyshare.
Sourcefn chain_path(&self) -> &DerivationPath
fn chain_path(&self) -> &DerivationPath
Key chain path for this signature
Provided Methods§
Sourcefn presignature_extra(&self) -> &[u8] ⓘ
fn presignature_extra(&self) -> &[u8] ⓘ
Additional data to incorpatate into resulting PreSignature.