Struct ckb_crypto::secp::Signature [−][src]
pub struct Signature(_);
Expand description
RecoverableSignature compact serialize
Implementations
impl Signature
[src]
impl Signature
[src]pub fn from_compact(rec_id: RecoveryId, ret: [u8; 64]) -> Self
[src]
pub fn from_compact(rec_id: RecoveryId, ret: [u8; 64]) -> Self
[src]Construct a new Signature from compact serialize slice and rec_id
pub fn to_recoverable(&self) -> Result<RecoverableSignature, Error>
[src]
pub fn to_recoverable(&self) -> Result<RecoverableSignature, Error>
[src]Converts compact signature to a recoverable signature
pub fn recover(&self, message: &Message) -> Result<Pubkey, Error>
[src]
pub fn recover(&self, message: &Message) -> Result<Pubkey, Error>
[src]Determines the public key for signature
pub fn serialize_der(&self) -> Vec<u8>
[src]
pub fn serialize_der(&self) -> Vec<u8>
[src]Serializes the signature in DER format
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
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,