Struct secp256k1::recovery::RecoverableSignature [−][src]
An ECDSA signature with a recovery ID for pubkey recovery
Implementations
impl RecoverableSignature
[src][−]
pub fn from_compact(
data: &[u8],
recid: RecoveryId
) -> Result<RecoverableSignature, Error>
[src][−]
data: &[u8],
recid: RecoveryId
) -> Result<RecoverableSignature, Error>
Converts a compact-encoded byte slice to a signature. This representation is nonstandard and defined by the libsecp256k1 library.
pub fn as_ptr(&self) -> *const RecoverableSignature
[src][−]
Obtains a raw pointer suitable for use with FFI functions
pub fn as_mut_ptr(&mut self) -> *mut RecoverableSignature
[src][−]
Obtains a raw mutable pointer suitable for use with FFI functions
pub fn serialize_compact(&self) -> (RecoveryId, [u8; 64])
[src][−]
Serializes the recoverable signature in compact format
pub fn to_standard(&self) -> Signature
[src][−]
Converts a recoverable signature to a non-recoverable one (this is needed for verification
Trait Implementations
impl CPtr for RecoverableSignature
[src][+]
impl Clone for RecoverableSignature
[src][+]
impl Copy for RecoverableSignature
[src]
impl Debug for RecoverableSignature
[src][+]
impl Eq for RecoverableSignature
[src]
impl From<RecoverableSignature> for RecoverableSignature
[src][+]
fn from(sig: RecoverableSignature) -> RecoverableSignature
[src][−]
impl PartialEq<RecoverableSignature> for RecoverableSignature
[src][+]
impl StructuralEq for RecoverableSignature
[src]
impl StructuralPartialEq for RecoverableSignature
[src]
Auto Trait Implementations
impl RefUnwindSafe for RecoverableSignature
impl Send for RecoverableSignature
impl Sync for RecoverableSignature
impl Unpin for RecoverableSignature
impl UnwindSafe for RecoverableSignature
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,