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 from_slice(data: &[u8]) -> Result<Self, Error>
pub fn from_slice(data: &[u8]) -> Result<Self, Error>
Construct a new Signature from slice.
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 Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more