Struct ckb_crypto::secp::Signature
source · [−]pub struct Signature(_);
Expand description
RecoverableSignature compact serialize
Implementations
sourceimpl Signature
impl Signature
sourcepub fn r(&self) -> &[u8]ⓘNotable traits for &'_ [u8]impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
pub fn r(&self) -> &[u8]ⓘNotable traits for &'_ [u8]impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
Get a slice into the ‘r’ portion of the data.
sourcepub fn s(&self) -> &[u8]ⓘNotable traits for &'_ [u8]impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
pub fn s(&self) -> &[u8]ⓘNotable traits for &'_ [u8]impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
Get a slice into the ‘s’ portion of the data.
sourcepub fn from_compact(rec_id: RecoveryId, ret: [u8; 64]) -> Self
pub fn from_compact(rec_id: RecoveryId, ret: [u8; 64]) -> Self
Construct a new Signature from compact serialize slice and rec_id
sourcepub fn to_recoverable(&self) -> Result<RecoverableSignature, Error>
pub fn to_recoverable(&self) -> Result<RecoverableSignature, Error>
Converts compact signature to a recoverable signature
sourcepub fn recover(&self, message: &Message) -> Result<Pubkey, Error>
pub fn recover(&self, message: &Message) -> Result<Pubkey, Error>
Determines the public key for signature
sourcepub fn serialize_der(&self) -> Vec<u8>
pub fn serialize_der(&self) -> Vec<u8>
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more