[][src]Struct btc_transaction_utils::InputSignatureRef

pub struct InputSignatureRef<'a>(_);

A borrowed equivalent of the InputSignature data type. It can be useful for checking incoming signatures from unauthorized sources.

Examples

extern crate btc_transaction_utils;
extern crate hex;
extern crate secp256k1;

use secp256k1::Secp256k1;
use btc_transaction_utils::InputSignatureRef;

fn main() {
    // Get a signature from the unknown source.
    let bytes = hex::decode(
        "304402201538279618a4626653775069b43d4315c7d2ff3000\
         8d339d0ed31ff41e628e71022028f3182fc39df28201ca4d7d\
         489aece7bc5bc6bfe05b09b6a9d3b70bf5f3743101",
    ).unwrap();
    // Try to decode it.
    let signature = InputSignatureRef::from_bytes(&bytes)
        .expect("Signature should be correct");
}

Methods

impl<'a> InputSignatureRef<'a>[src]

pub fn from_bytes(bytes: &'a [u8]) -> Result<InputSignatureRef<'a>, Error>[src]

Tries to construct input signature from the raw bytes.

pub fn content(&self) -> &[u8][src]

Returns the signature content in canonical form.

pub fn sighash_type(&self) -> SigHashType[src]

Returns a sighash type of the given input signature.

Trait Implementations

impl<'a> Copy for InputSignatureRef<'a>[src]

impl<'a> AsRef<[u8]> for InputSignatureRef<'a>[src]

impl<'a> PartialEq<InputSignatureRef<'a>> for InputSignatureRef<'a>[src]

impl<'a> From<&'a InputSignature> for InputSignatureRef<'a>[src]

impl<'a> From<InputSignatureRef<'a>> for Vec<u8>[src]

impl<'a> From<InputSignatureRef<'a>> for InputSignature[src]

impl<'a> Clone for InputSignatureRef<'a>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for InputSignatureRef<'a>[src]

Auto Trait Implementations

impl<'a> Send for InputSignatureRef<'a>

impl<'a> Sync for InputSignatureRef<'a>

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ToBase32 for T where
    T: AsRef<[u8]>, 

fn to_base32(&self) -> Vec<u5>

Convert base256 to base32, adds padding if necessary

impl<'f, T> CheckBase32 for T where
    T: AsRef<[u8]>, 

type Err = Error

Error type if conversion fails

impl<T> ToHex for T where
    T: AsRef<[u8]>, 
[src]