pub trait SignOp: Op { // Required method fn scheme(&self) -> Sign; // Provided method fn finish(&mut self) -> Result<Signature> { ... } }
Represents an ongoing signing operation.
Returns the signature scheme that this operation is using.
Finishes this signature operation and returns a new signature containing the result.